/* CSS Document */
/*=================================================
    Tolottama Beauty Parlor
    Bootstrap 4 Custom Styles
==================================================*/

/*==========================
Google Font
===========================*/

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #555;
    background: #faf9f4;
    overflow-x: hidden;
    line-height: 1.8;
}

/*==========================
Variables
===========================*/

:root {

    --primary:#6b1735;

    --secondary:#8ba54b;

    --light:#faf9f4;

    --dark:#333333;

    --white:#ffffff;

    --border:#ececec;

}

/*==========================
Reset
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{

    max-width:100%;

    display:block;

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

a{

    text-decoration:none !important;

    transition:.4s;

}

section{

    padding:30px 0;

}

h1,h2,h3,h4,h5,h6{

    font-family:'Cormorant Garamond',serif;

    color:var(--primary);

    font-weight:700;

}

p{

    color:#666;

}

/*==========================
Section Title
===========================*/

.section-title{

    margin-bottom:45px;

}

.section-title h5{

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:18px;

}

.section-title h2{

    font-size:48px;

    margin-top:10px;

}

/*==========================
Buttons
===========================*/

.btn-main{

    background:var(--primary);

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    border:2px solid var(--primary);

}

.btn-main:hover{

    background:var(--secondary);

    border-color:var(--secondary);

    color:#fff;

}

.btn-outline-main{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

}

.btn-outline-main:hover{

    background:var(--primary);

    color:#fff;

}

.btn-book{

    background:var(--primary);

    color:#fff !important;

    border-radius:50px;

    padding:10px 30px;

}

.btn-book:hover{

    background:var(--secondary);

}

/*==================================================
            TOP BAR
===================================================*/

.top-bar{

    background:#651a39;

    padding:10px 0;

    position:relative;

    z-index:999;

    font-size:14px;

}

.top-contact{

    display:flex;

    align-items:center;

}

.top-contact a{

    color:#ffffff;

    font-weight:400;

    transition:.3s;

}

.top-contact a:hover{

    color:#d9e7a9;

}

.top-contact i{

    color:#8ca64a;

    margin-right:8px;

}

.top-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

.top-social a{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    margin-left:10px;

    transition:.35s;

}

.top-social a:hover{

    background:#8ca64a;

    color:#fff;

    transform:translateY(-3px);

}

/*==================================================
            MAIN HEADER
===================================================*/

.main-header{

    position:sticky;

    top:0;

    background:#ffffff;

    z-index:9999;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.35s;

}

.main-header.sticky{

    padding:0;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/*==================================================
            NAVBAR
===================================================*/

.navbar{

    padding:18px 0;

}

.navbar-brand{

    padding:0;

}

.navbar-brand img{

    height:95px;

    transition:.35s;

}

.main-header.sticky .navbar-brand img{

    height:75px;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-item{

    margin-left:18px;

}

.navbar-nav .nav-link{

    position:relative;

    color:#333333 !important;

    font-size:15px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.4px;

    padding:10px 0;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#651a39 !important;

}

.navbar-nav .active .nav-link{

    color:#651a39 !important;

}

/* Underline Animation */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#8ca64a;

    transition:.35s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .active .nav-link::after{

    width:100%;

}

/*==================================================
        APPOINTMENT BUTTON
===================================================*/

.appointment-btn{

    background:#651a39;

    color:#ffffff;

    padding:14px 32px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    display:inline-block;

    transition:.35s;

    box-shadow:0 12px 28px rgba(101,26,57,.22);

}

.appointment-btn:hover{

    background:#8ca64a;

    color:#ffffff;

    transform:translateY(-3px);

}

/*==================================================
        FLOATING SOCIAL
===================================================*/

.floating-social{

    position:fixed;

    left:30px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    z-index:999;

}

.floating-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#651a39;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:8px 0;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.floating-social a:hover{

    background:#8ca64a;

    transform:translateX(6px);

}

/*==================================================
        MOBILE MENU
===================================================*/

.navbar-toggler{

    border:none;

    padding:8px 10px;

}

.navbar-toggler:focus{

    outline:none;

    box-shadow:none;

}

.navbar-collapse{

    transition:.35s;

}

/*==================================================
        RESPONSIVE
===================================================*/

@media (max-width:991px){

.top-contact{

    justify-content:center;

}

.top-social{

    justify-content:center;

    margin-top:12px;

}

.navbar{

    padding:12px 0;

}

.navbar-brand img{

    height:70px;

}

.navbar-collapse{

    background:#ffffff;

    margin-top:20px;

    padding:20px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.navbar-nav{

    align-items:flex-start;

}

.navbar-nav .nav-item{

    margin:0;

    width:100%;

}

.navbar-nav .nav-link{

    padding:14px 0;

    border-bottom:1px solid #f2f2f2;

}

.appointment-btn{

    margin-top:20px;

    width:100%;

    text-align:center;

}

.floating-social{

    display:none;

}

}

@media (max-width:767px){

.top-bar{

    display:none;

}

.navbar-brand img{

    height:60px;

}

}

/*==================================================
            HERO SECTION
===================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    min-height:730px;

    background:#fbf9ef;

    display:flex;

    align-items:center;

    z-index:1;

}

/*-----------------------------------
Background Watercolor Texture
-----------------------------------*/

.hero-section::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:url("../images/background/watercolor.png") center center no-repeat;

    background-size:cover;

    opacity:.12;

    z-index:-3;

}

/*-----------------------------------
Soft Gradient
-----------------------------------*/

.hero-section::after{

    content:"";

    position:absolute;

    width:850px;

    height:850px;

    right:-260px;

    top:-250px;

    background:#edf4dd;

    border-radius:50%;

    filter:blur(10px);

    opacity:.75;

    z-index:-2;

}

/*==================================================
            Decorative Leaves
===================================================*/

.hero-shape{

    position:absolute;

    z-index:0;

    pointer-events:none;

}

.hero-shape img{

    width:100%;

    display:block;

}

.hero-shape-1{

    width:220px;

    left:-40px;

    top:120px;

    opacity:.18;

}

.hero-shape-2{

    width:260px;

    right:40px;

    bottom:80px;

    opacity:.16;

}

/*==================================================
            Background Circle
===================================================*/

.hero-circle{

    position:absolute;

    width:720px;

    height:720px;

    border-radius:50%;

    background:#eef3df;

    right:-140px;

    top:90px;

    z-index:-1;

}

/*==================================================
            Hero Content
===================================================*/

.hero-content{

    position:relative;

    z-index:5;

}

.hero-subtitle{

    display:inline-block;

    font-size:18px;

    color:#8ca64a;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:25px;

    font-weight:600;

}

.hero-content h1{

    font-family: "Style Script", cursive;
  font-weight: 400;
  font-style: normal;

    font-size:78px;

    line-height:1.05;

    color:#641b39;

    margin-bottom:30px;


}

.hero-content h1 span{

    font-family:'Cormorant Garamond',serif;
	color:#8ca64a;
	padding-left:30px;

}

.hero-content p{

    font-size:18px;

    line-height:34px;

    color:#666;

    max-width:560px;

    margin-bottom:40px;

}

/*==================================================
                Hero Buttons
===================================================*/

.hero-btn{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

}

.btn-main{

    background:#651a39;

    color:#fff;

    padding:16px 42px;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(101,26,57,.22);

}

.btn-main:hover{

    background:#8ca64a;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-main{

    border:2px solid #651a39;

    color:#651a39;

    padding:16px 42px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.btn-outline-main:hover{

    background:#651a39;

    color:#fff;

}

/*==================================================
            Feature Icons
===================================================*/

.hero-feature{

    margin-top:60px;

}

.feature-box{

    text-align:center;

    transition:.35s;

}

.feature-box i{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#8ca64a;

    margin:auto;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box h6{

    margin-top:18px;

    font-size:18px;

    color:#641b39;

    font-weight:600;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box:hover i{

    background:#651a39;

    color:#fff;

}
/*==================================================
            HERO IMAGE AREA
===================================================*/

.hero-image-wrapper{

    position:relative;

    width:100%;

    max-width:620px;

    margin-left:auto;

    z-index:5;

}

/* Organic Background Circle */

.hero-image-wrapper::before{

    content:"";

    position:absolute;

    width:560px;

    height:560px;

    background:#edf4dd;

    border-radius:50%;

    top:30px;

    left:30px;

    z-index:-2;

}

/* Decorative Border */

.image-border{

    position:absolute;

    width:500px;

    height:620px;

    border:4px solid #651a39;

    border-radius:60% 40% 55% 45% / 45% 60% 40% 55%;

    top:20px;

    left:35px;

    transform:rotate(-8deg);

    z-index:-1;

    opacity:.18;

}

/* Main Hero Image */

.hero-image{

    position:relative;

    width:520px;

    height:650px;

    margin:auto;

    overflow:hidden;

    border-radius:45% 55% 40% 60% / 40% 45% 55% 60%;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

    background:#fff;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.hero-image:hover img{

    transform:scale(1.05);

}

/*==================================================
            EXPERIENCE BADGE
===================================================*/

.experience-box{

    position:absolute;

    left:-30px;

    bottom:80px;

    width:150px;

    height:150px;

    background:#651a39;

    color:#fff;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

    animation:floatBadge 4s ease-in-out infinite;

}

.experience-box h2{

    font-size:46px;

    color:#fff;

    line-height:1;

    margin-bottom:6px;

}

.experience-box p{

    color:#fff;

    font-size:15px;

    line-height:22px;

    margin:0;

}

/*==================================================
            RATING CARD
===================================================*/

.rating-box{

    position:absolute;

    right:-10px;

    top:90px;

    width:180px;

    background:#ffffff;

    border-radius:18px;

    padding:18px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    text-align:center;

    animation:floatBadge 5s ease-in-out infinite;

}

.rating-box i{

    color:#f7b500;

    font-size:22px;

}

.rating-box span{

    display:block;

    margin-top:8px;

    font-size:28px;

    color:#651a39;

    font-weight:700;

}

.rating-box small{

    color:#777;

    font-size:13px;

}

/*==================================================
            FLOATING ANIMATION
===================================================*/

@keyframes floatBadge{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
            HERO BOTTOM SVG
===================================================*/

.hero-bottom{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    line-height:0;

}

.hero-bottom svg{

    width:100%;

    height:120px;

    display:block;

}

/*==================================================
            RESPONSIVE
===================================================*/

@media (max-width:1199px){

.hero-content h1{

    font-size:64px;

}

.hero-image{

    width:460px;

    height:580px;

}

.image-border{

    width:445px;

    height:560px;

}

.hero-image-wrapper::before{

    width:500px;

    height:500px;

}

}

@media (max-width:991px){

.hero-section{

    padding:90px 0 60px;

    min-height:auto;

    text-align:center;

}

.hero-content{

    margin-bottom:60px;

}

.hero-content p{

    margin-left:auto;

    margin-right:auto;

}

.hero-btn{

    justify-content:center;

}

.hero-feature{

    margin-top:40px;

}

.hero-image-wrapper{

    max-width:500px;

    margin:auto;

}

.hero-image{

    width:420px;

    height:520px;

}

.image-border{

    width:405px;

    height:500px;

    left:20px;

}

.experience-box{

    left:0;

}

.rating-box{

    right:0;

}

}

@media (max-width:767px){

.hero-content h1{

    font-size:46px;

}

.hero-subtitle{

    font-size:16px;

    letter-spacing:3px;

}

.hero-image{

    width:340px;

    height:430px;

}

.image-border{

    width:325px;

    height:410px;

}

.hero-image-wrapper::before{

    width:380px;

    height:380px;

}

.experience-box{

    width:110px;

    height:110px;

}

.experience-box h2{

    font-size:30px;

}

.rating-box{

    width:140px;

    padding:14px;

}

.rating-box span{

    font-size:22px;

}

}

@media (max-width:575px){

.hero-section{

    padding:70px 0;

}

.hero-content h1{

    font-size:36px;

}

.hero-content p{

    font-size:16px;

    line-height:30px;

}

.hero-btn .btn{

    width:100%;

    margin-bottom:15px;

}

.hero-image{

    width:290px;

    height:360px;

}

.image-border{

    width:275px;

    height:345px;

}

.hero-image-wrapper::before{

    width:320px;

    height:320px;

}

.experience-box{

    display:none;

}

.rating-box{

    right:50%;

    transform:translateX(50%);

    top:auto;

    bottom:-20px;

}

.hero-feature{

    display:none;

}

}

/*==========================
About Section
===========================*/

.about-home{

    background:#fff;

}

.about-home img{

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.about-home p{

    margin-bottom:20px;

}

/*==========================
Counter Section
===========================*/

.counter-section{

    background:var(--primary);

    color:#fff;

}

.counter-box{

    padding:35px 20px;

}

.counter-box h2{

    color:#fff;

    font-size:58px;

    margin-bottom:10px;

}

.counter-box p{

    color:#fff;

    font-size:18px;

    margin:0;

}

/*==========================
Utility Classes
===========================*/

.bg-primary-custom{

    background:var(--primary);

}

.bg-secondary-custom{

    background:var(--secondary);

}

.text-primary-custom{

    color:var(--primary);

}

.text-secondary-custom{

    color:var(--secondary);

}

.rounded-xl{

    border-radius:25px;

}

.shadow-lg-custom{

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=================================================
                AWARDS SECTION
=================================================*/

#awards{

    background:#f9f9f4;

}

#awards .card{

    border:none;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

#awards .card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

#awards .card img{

    height:280px;

    width:100%;

    object-fit:cover;

}

#awards .card-body{

    padding:25px;

    background:#fff;

}

#awards h5{

    color:var(--primary);

    font-size:24px;

    margin-bottom:8px;

}

#awards small{

    color:var(--secondary);

    font-size:15px;

}

/*=================================================
            CERTIFICATION
=================================================*/

#certification{

    background:#fff;

}

#certification img{

    width:100%;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

#certification img:hover{

    transform:scale(1.05);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

/*=================================================
            SPECIALITIES
=================================================*/

#specialities{

    background:#f6f6ef;

}

#specialities .card{

    border:none;

    border-radius:20px;

    transition:.4s;

    overflow:hidden;

    padding:20px;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

#specialities .card:hover{

    background:var(--primary);

    transform:translateY(-12px);

}

#specialities .card:hover h4,

#specialities .card:hover p,

#specialities .card:hover i{

    color:#fff!important;

}

#specialities i{

    color:var(--secondary);

    transition:.4s;

}

#specialities h4{

    margin-top:20px;

    font-size:28px;

}

#specialities p{

    margin-top:15px;

}

/*=================================================
                NEWS SECTION
=================================================*/

#news{

    background:#fff;

}

#news img{

    width:100%;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

#news img:hover{

    transform:scale(1.04);

}

/*=================================================
                GALLERY
=================================================*/

#gallery{

    background:#f8f8f2;

}

#gallery .col-lg-3{

    overflow:hidden;

}

#gallery img{

    width:100%;

    border-radius:18px;

    transition:.5s;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

#gallery img:hover{

    transform:scale(1.08);

}

/*=================================================
            IMAGE HOVER EFFECT
=================================================*/

.hover-overlay{

    position:relative;

    overflow:hidden;

    border-radius:18px;

}

.hover-overlay img{

    transition:.5s;

}

.hover-overlay::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(107,23,53,.55);

    opacity:0;

    transition:.4s;

    z-index:2;

}

.hover-overlay:hover::before{

    opacity:1;

}

.hover-overlay:hover img{

    transform:scale(1.1);

}

/*=================================================
                ICON BOX
=================================================*/

.icon-box{

    width:85px;

    height:85px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:32px;

    transition:.4s;

}

.icon-box:hover{

    background:var(--primary);

    transform:rotate(360deg);

}

/*=================================================
            CARD ANIMATION
=================================================*/

.card{

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

/*=================================================
                SECTION SPACING
=================================================*/

.py-100{

    padding:100px 0;

}

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

/*=================================================
                CONTACT SECTION
=================================================*/

#contact{

    background:#ffffff;

}

#contact h2{

    font-size:42px;

    margin-bottom:30px;

}

#contact .card{

    border:none;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    margin-bottom:25px;

}

#contact .card:hover{

    transform:translateY(-8px);

}

#contact .card-body{

    padding:30px;

}

#contact .card h5{

    font-size:26px;

    color:var(--primary);

}

#contact .card p{

    margin-bottom:8px;

}

/*=================================================
                CONTACT FORM
=================================================*/

form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-control{

    border-radius:12px;

    height:55px;

    border:1px solid #ddd;

    box-shadow:none;

    font-size:15px;

}

textarea.form-control{

    height:160px;

    resize:none;

}

.form-control:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 0.15rem rgba(139,165,75,.2);

}

/*=================================================
                FOOTER
=================================================*/

footer{

    background:var(--primary);

    color:#fff;

}

footer h4{

    color:#fff;

    margin-bottom:25px;

}

footer p{

    color:#e5e5e5;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#eee;

    transition:.3s;

}

footer ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

footer hr{

    border-color:rgba(255,255,255,.15);

}

footer .text-center{

    color:#ddd;

}

/*=================================================
            SOCIAL ICONS
=================================================*/

footer .fab{

    width:42px;

    height:42px;

    line-height:42px;

    text-align:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    transition:.4s;

}

footer .fab:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-4px);

}

/*=================================================
            WHATSAPP BUTTON
=================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:90px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

    color:#fff;

}

/*=================================================
            SCROLL TOP
=================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:20px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}

.scroll-top:hover{

    background:var(--secondary);

}

/*=================================================
                PRELOADER
=================================================*/

.preloader{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    width:70px;

    height:70px;

    border:8px solid #eee;

    border-top:8px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{


    0%{

        transform:rotate(0);

    }

    100%{

        transform:rotate(360deg);

    }

}

/*=================================================
            CUSTOM SCROLLBAR
=================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/*=================================================
            ANIMATIONS
=================================================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom{

    transition:.4s;

}

.zoom:hover{

    transform:scale(1.05);

}

/*=================================================
            RESPONSIVE
=================================================*/

@media(max-width:1199px){

.hero-content h1{

    font-size:58px;

}

.section-title h2{

    font-size:42px;

}

}

@media(max-width:991px){

section{

    padding:70px 0;

}

.navbar{

    padding:12px 0;

}

.navbar-nav{

    background:#fff;

    margin-top:15px;

    padding:15px;

    border-radius:12px;

}

.hero-section{

    min-height:auto;

    padding:80px 0;

    text-align:center;

}

.hero-content h1{

    font-size:48px;

}

.hero-image{

    margin-top:40px;

}

.floating-badge{

    right:15px;

    bottom:20px;

    width:110px;

    height:110px;

    font-size:14px;

}

.section-title h2{

    font-size:36px;

}

}

@media(max-width:767px){

.top-bar{

    display:none;

}

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:16px;

}

.section-title h2{

    font-size:30px;

}

.counter-box{

    margin-bottom:30px;

}

footer{

    text-align:center;

}

footer .fab{

    margin-bottom:10px;

}

form{

    margin-top:35px;

    padding:25px;

}

#contact h2{

    font-size:32px;

}

}

@media(max-width:575px){

.hero-content h1{

    font-size:32px;

}

.btn-main,

.btn-outline-main{

    display:block;

    width:100%;

    margin-bottom:15px;

}

.navbar-brand img{

    height:55px;

}

.hero-image img{

    border-radius:20px;

}

.floating-badge{

    display:none;

}

}

/*=================================================
            END OF FILE
=================================================*/

