/* CSS Document */

body{

font-family:'Poppins',sans-serif;

background:#111;

color:#fff;

overflow-x:hidden;

}

/*======================
Header
======================*/

.main-header{

background:rgba(0,0,0,.60);

transition:.4s;

padding:10px 0;

backdrop-filter:blur(8px);

}

.logo{

height:65px;

}

.navbar-nav .nav-link{

color:#fff!important;

margin:0 12px;

font-size:14px;

font-weight:500;

letter-spacing:.5px;

}

.navbar-nav .nav-link:hover{

color:#c79a4b!important;

}

.enroll-btn{

background:#c79a4b;

color:#fff;

padding:10px 22px;

border-radius:3px;

font-size:14px;

font-weight:600;

}

.enroll-btn:hover{

background:#ad7d29;

color:#fff;

}

/*=========================================
HERO SLIDER
=========================================*/

.hero-section{
    position:relative;
    overflow:hidden;
}

.hero-slide{
    position:relative;
    width:100%;
    height:80vh;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.60);
    z-index:1;
}

.hero-section .container{
    position:relative;
    z-index:2;
}

/*----------------------------------
Hero Content
-----------------------------------*/

.hero-subtitle{
    font-family:'Cinzel',serif;
    font-size:24px;
    font-weight:500;
    color:#fff;
    letter-spacing:5px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.hero-title{
    font-family:'Cinzel',serif;
    font-size:110px;
    font-weight:700;
    color:#c79a4b;
    line-height:1;
    margin-bottom:10px;
    text-transform:uppercase;
}

.gold-line{
    width:260px;
    height:2px;
    background:#c79a4b;
    margin:25px 0;
}

.hero-text{
    font-size:22px;
    line-height:38px;
    max-width:620px;
    color:#f5f5f5;
    margin-bottom:40px;
}

/*----------------------------------
Buttons
-----------------------------------*/

.hero-btn{
    background:#c79a4b;
    color:#fff;
    padding:15px 38px;
    border-radius:30px;
    font-weight:600;
    text-transform:uppercase;
    transition:.4s;
    margin-right:15px;
}

.hero-btn:hover{
    background:#b98935;
    color:#fff;
}

.hero-outline{
    border:2px solid #c79a4b;
    color:#fff;
    padding:14px 35px;
    border-radius:30px;
    font-weight:600;
    text-transform:uppercase;
    transition:.4s;
}

.hero-outline:hover{
    background:#c79a4b;
    color:#fff;
}

/*----------------------------------
Carousel Controls
-----------------------------------*/

.carousel-control-prev,
.carousel-control-next{
    width:70px;
    opacity:1;
    z-index:20;
}

.carousel-control-prev{
    justify-content:flex-start;
    padding-left:20px;
}

.carousel-control-next{
    justify-content:flex-end;
    padding-right:20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(199,154,75,.95);
    background-size:18px;
    transition:.4s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{
    background-color:#111;
}

/*----------------------------------
Carousel Animation
-----------------------------------*/

.carousel-fade .carousel-item{
    opacity:0;
    transition:opacity .9s ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right{
    opacity:1;
}

.carousel-item{
    transition:transform .8s ease-in-out;
}

/*----------------------------------
Responsive
-----------------------------------*/

@media (max-width:991px){

.hero-slide{
    height:90vh;
}

.hero-subtitle{
    font-size:18px;
    letter-spacing:3px;
}

.hero-title{
    font-size:70px;
}

.hero-text{
    font-size:18px;
    line-height:32px;
}

.hero-btn,
.hero-outline{
    padding:12px 25px;
    font-size:14px;
    margin-bottom:10px;
}

.gold-line{
    width:180px;
}

}

@media (max-width:767px){

.hero-slide{
    height:85vh;
    text-align:center;
}

.hero-title{
    font-size:48px;
}

.hero-subtitle{
    font-size:15px;
    letter-spacing:2px;
}

.hero-text{
    font-size:16px;
    line-height:28px;
    margin:0 auto 30px;
}

.gold-line{
    margin:20px auto;
    width:120px;
}

.hero-btn,
.hero-outline{
    display:block;
    width:100%;
    margin:10px 0;
}

.carousel-control-prev,
.carousel-control-next{
    width:45px;
}

.carousel-control-prev{
    padding-left:5px;
}

.carousel-control-next{
    padding-right:5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:40px;
    height:40px;
}

}

/*=================================================
FEATURE SECTION
==================================================*/

.features-section{

    background:#f9f6ef;

    border-top:1px solid #e5d8bc;

    border-bottom:1px solid #e5d8bc;

}

.feature-box{

    text-align:center;

    padding:35px 15px;

    transition:.35s;

    border-right:1px solid #e7dcc7;

    min-height:180px;

    background:#fdfaf4;

}

.feature-box:last-child{

    border-right:none;

}

.feature-box:hover{

    background:#fff;

    transform:translateY(-8px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:auto;

    border:2px solid #c79a4b;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    transition:.3s;

}

.feature-box:hover .feature-icon{

    background:#c79a4b;

    color:#fff;

}

.feature-icon i{

    font-size:28px;

    color:#c79a4b;

    transition:.3s;

}

.feature-box:hover i{

    color:#fff;

}

.feature-box h6{

    font-family:'Cinzel';

    color:#222;

    font-size:16px;

    margin-bottom:5px;

    font-weight:700;

}

.feature-box p{

    color:#555;

    font-size:13px;

    letter-spacing:1px;

    margin:0;

    text-transform:uppercase;

}

/*==========================================
WELCOME SECTION
===========================================*/

.welcome-section{

    background:#fcfaf5;

}

.welcome-image{

    position:relative;

}

.welcome-image img{

    width:100%;

    border-radius:10px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.section-small-title{

    font-family:'Cinzel';

    color:#9d7b42;

    letter-spacing:3px;

    font-size:15px;

}

.section-title{

    font-family:'Cinzel';

    font-size:52px;

    color:#222;

    line-height:1.2;

    margin:10px 0 20px;

    text-transform:uppercase;

}

.mini-divider{

    width:90px;

    height:3px;

    background:#c79a4b;

    margin-bottom:25px;

}

.welcome-text{

    color:#555;

    line-height:32px;

    font-size:16px;

    margin-bottom:35px;

}

.know-btn{

    background:#111;

    color:#fff;

    padding:14px 30px;

    border-radius:3px;

    transition:.3s;

    font-weight:600;

}

.know-btn:hover{

    background:#c79a4b;

    color:#fff;

}

.stats-box{

    background:#fff;

    border:1px solid #e9dcc6;

    border-radius:8px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.stat-item{

    padding:35px 20px;

    text-align:center;

    border-right:1px solid #eee;

    border-bottom:1px solid #eee;

    transition:.35s;

}

.stat-item:nth-child(2),

.stat-item:nth-child(4){

    border-right:none;

}

.stat-item:nth-child(3),

.stat-item:nth-child(4){

    border-bottom:none;

}

.stat-item:hover{

    background:#fcf5ea;

}

.stat-item i{

    color:#c79a4b;

    font-size:36px;

    margin-bottom:15px;

}

.stat-item h2{

    color:#222;

    font-family:'Cinzel';

    font-size:40px;

    margin-bottom:10px;

}

.stat-item p{

    color:#555;

    margin:0;

    font-size:15px;

}

/*==================================
PROGRAM SECTION
==================================*/

.program-section{

    background:#faf7f0;

    position:relative;

}

.section-heading{

    position:relative;

}

.section-heading span{

    font-family:'Cinzel',serif;

    font-size:42px;

    color:#222;

    font-weight:600;

    text-transform:uppercase;

    display:inline-block;

    position:relative;

    padding:0 30px;

}

.section-heading span:before,

.section-heading span:after{

    content:'';

    position:absolute;

    top:50%;

    width:90px;

    height:2px;

    background:#c79a4b;

}

.section-heading span:before{

    right:100%;

}

.section-heading span:after{

    left:100%;

}

.program-card{

    background:#fff;

    border:1px solid #eadcc3;

    border-radius:10px;

    padding:40px 35px;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.program-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.program-card.featured{

    background:#111;

    color:#fff;

}

.program-card.featured h4,

.program-card.featured li{

    color:#fff;

}

.program-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#c79a4b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.program-card h4{

    font-family:'Cinzel';

    font-size:24px;

    margin-bottom:20px;

    color:#222;

}

.program-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.program-card ul li{

    position:relative;

    padding-left:22px;

    margin-bottom:12px;

    color:#555;

}

.program-card ul li:before{

    content:"•";

    position:absolute;

    left:0;

    color:#c79a4b;

    font-size:20px;

}

.program-btn{

    display:inline-block;

    border:1px solid #c79a4b;

    color:#222;

    padding:12px 24px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.program-btn:hover{

    background:#c79a4b;

    color:#fff;

    text-decoration:none;

}

.program-btn.gold{

    background:#c79a4b;

    color:#fff;

}

.program-btn.gold:hover{

    background:#b5883d;

}

/*==================================
COACH SECTION
==================================*/

.coach-section{

    background:#ffffff;

}

.section-subtitle{

    color:#777;

    max-width:650px;

    margin:15px auto 0;

    font-size:16px;

}

.coach-card{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    border:1px solid #eadcc3;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.coach-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.coach-image{

    position:relative;

    overflow:hidden;

}

.coach-image img{

    width:100%;

    transition:.4s;

}

.coach-card:hover img{

    transform:scale(1.08);

}

.rating{

    position:absolute;

    top:15px;

    right:15px;

    background:#c79a4b;

    color:#fff;

    padding:6px 12px;

    font-size:12px;

    border-radius:30px;

    font-weight:600;

}

.coach-info{

    padding:25px;

    text-align:center;

}

.coach-info h4{

    font-family:'Cinzel';

    font-size:22px;

    margin-bottom:8px;

    color:#222;

}

.coach-info p{

    color:#888;

    margin-bottom:18px;

}

.coach-social a{

    width:38px;

    height:38px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:1px solid #c79a4b;

    color:#c79a4b;

    margin:0 4px;

    border-radius:50%;

    transition:.3s;

}

.coach-social a:hover{

    background:#c79a4b;

    color:#fff;

}

.view-coach-btn{

    background:#111;

    color:#fff;

    padding:14px 34px;

    font-weight:600;

}

.view-coach-btn:hover{

    background:#c79a4b;

    color:#fff;

}

/*==================================
TOURNAMENT SECTION
==================================*/

.tournament-section{

    background:#faf7f0;

}

.tournament-card{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.tournament-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.tournament-image{

    position:relative;

    overflow:hidden;

}

.tournament-image img{

    width:100%;

    transition:.4s;

}

.tournament-card:hover img{

    transform:scale(1.08);

}

.event-date{

    position:absolute;

    top:20px;

    left:20px;

    width:70px;

    background:#c79a4b;

    color:#fff;

    text-align:center;

    border-radius:8px;

    padding:10px 0;

}

.event-date h3{

    margin:0;

    font-size:30px;

    font-weight:700;

}

.event-date span{

    font-size:14px;

    letter-spacing:1px;

}

.tournament-body{

    padding:30px;

}

.tournament-body h4{

    font-family:'Cinzel';

    color:#222;

    margin-bottom:20px;

}

.tournament-body p{

    color:#666;

    margin-bottom:12px;

}

.tournament-body i{

    color:#c79a4b;

    width:24px;

}

.register-btn{

    background:#111;

    color:#fff;

    margin-top:20px;

    padding:12px;

    font-weight:600;

    transition:.3s;

}

.register-btn:hover{

    background:#c79a4b;

    color:#fff;

}

/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{

    position:relative;

    padding:90px 0;

    background:url('../images/testimonial-bg.png') center center;

    background-size:cover;

}

.testimonial-overlay{

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:rgba(0,0,0,.75);

}

.testimonial-section .container{

    position:relative;

    z-index:2;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:10px;

    margin:15px;

    box-shadow:0 10px 35px rgba(0,0,0,.2);

}

.stars{

    color:#d4af37;

    margin-bottom:20px;

    font-size:18px;

}

.testimonial-card p{

    color:#555;

    line-height:30px;

    min-height:130px;

}

.client{

    display:flex;

    align-items:center;

    margin-top:25px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    margin-right:15px;

    object-fit:cover;

}

.client h5{

    margin:0;

    font-family:'Cinzel';

    color:#222;

}

.client span{

    color:#777;

    font-size:14px;

}

/*=========================================
FOOTER
=========================================*/

.footer{

background:#111;

padding:20px 0 25px;

color:#ddd;

}

.footer-logo{

height:70px;

margin-bottom:20px;

}

.footer-text{

line-height:30px;

color:#bbb;

}

.footer h5{

font-family:'Cinzel';

color:#fff;

margin-bottom:25px;

}

.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer ul li{

margin-bottom:12px;

}

.footer ul li a{

color:#bbb;

transition:.3s;

}

.footer ul li a:hover{

color:#c79a4b;

text-decoration:none;

padding-left:5px;

}

.contact-list li{

position:relative;

padding-left:30px;

line-height:28px;

}

.contact-list i{

position:absolute;

left:0;

top:6px;

color:#c79a4b;

}

.footer-social{

margin-top:25px;

}

.footer-social a{

display:inline-flex;

align-items:center;

justify-content:center;

width:42px;

height:42px;

border:1px solid #555;

border-radius:50%;

color:#fff;

margin-right:10px;

transition:.3s;

}

.footer-social a:hover{

background:#c79a4b;

border-color:#c79a4b;

}

.footer hr{

border-color:#333;

margin:45px 0;

}

.newsletter h4{

color:#fff;

font-family:'Cinzel';

}

.newsletter p{

color:#aaa;

}

.newsletter-form{

display:flex;

}

.newsletter-form input{

flex:1;

height:52px;

border:none;

padding:0 18px;

}

.newsletter-form button{

background:#c79a4b;

border:none;

color:#fff;

padding:0 35px;

font-weight:600;

cursor:pointer;

}

.newsletter-form button:hover{

background:#b88934;

}

.copyright{

font-size:14px;

color:#999;

}

/*=========================================
BACK TO TOP
=========================================*/

.back-top{

position:fixed;

right:30px;

bottom:30px;

width:48px;

height:48px;

background:#c79a4b;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

z-index:999;

transition:.3s;

}

.back-top:hover{

background:#fff;

color:#111;

text-decoration:none;

}


/*==========================
Sticky Navbar
==========================*/

.sticky{

background:#111 !important;

box-shadow:0 8px 25px rgba(0,0,0,.3);

padding:5px 0;

}

/*==========================
Preloader
==========================*/

#preloader{

position:fixed;

left:0;

top:0;

right:0;

bottom:0;

background:#111;

z-index:99999;

display:flex;

align-items:center;

justify-content:center;

}

.loader{

width:100px;

height:100px;

border-radius:50%;

border:3px solid #c79a4b;

display:flex;

align-items:center;

justify-content:center;

animation:spin 2s linear infinite;

}

.loader i{

font-size:42px;

color:#c79a4b;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*==========================
WhatsApp
==========================*/

.whatsapp{

position:fixed;

left:25px;

bottom:30px;

width:58px;

height:58px;

border-radius:50%;

background:#25d366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.whatsapp:hover{

color:#fff;

transform:scale(1.1);

}

/*==========================
Call
==========================*/

.call-btn{

position:fixed;

left:25px;

bottom:100px;

width:58px;

height:58px;

border-radius:50%;

background:#c79a4b;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.call-btn:hover{

color:#fff;

transform:scale(1.1);

}

/*==========================
Background Animation
==========================*/

.hero-section:before{

content:'?';

position:absolute;

right:8%;

top:20%;

font-size:220px;

color:rgba(255,255,255,.05);

animation:float 7s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}
.navbar-nav .nav-link{

position:relative;

}

.navbar-nav .nav-link:after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#c79a4b;

transition:.3s;

}

.navbar-nav .nav-link:hover:after,

.navbar-nav .active .nav-link:after{

width:100%;

}

/*=========================================
INNER PAGE BANNER
=========================================*/

.inner-banner{
    position:relative;
    margin-top:88px;
    background:url("../images/about-banner.jpg") center center/cover no-repeat;
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.inner-banner .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75));
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    font-family:'Cinzel',serif;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.breadcrumb{
    background:none;
    margin:0;
    padding:0;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#ffffff;
    font-size:15px;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#d4af37;
}

.breadcrumb-item.active{
    color:#d4af37;
}

.banner-content i{
    color:#d4af37;
}

/* Responsive */

@media(max-width:991px){

.inner-banner{
    height:180px;
}

.banner-title{
    font-size:30px;
}

}

@media(max-width:767px){

.inner-banner{
    height:150px;
    margin-top:72px;
}

.banner-title{
    font-size:24px;
    letter-spacing:1px;
}

.breadcrumb-item{
    font-size:13px;
}

}

/*=========================================
VISION SECTION
=========================================*/

.vision-section{
    padding:80px 0;
}

.vision-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    height:100%;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.vision-card:hover{
    background:#111;
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.vision-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-right:15px;
    background:#c79a4b;
    color:#fff;
    transition:.4s;
}

.vision-card h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#111;
    transition:.4s;
}

.vision-card p{
    margin:0;
    margin-top:10px;
    line-height:1.9;
    color:#666;
    transition:.4s;
}

/* Hover Effect */

.vision-card:hover h4,
.vision-card:hover p{
    color:#fff;
}

.vision-card:hover .vision-icon{
    background:#fff;
    color:#c79a4b;
}

.welcome-list{
    list-style:disc;
    padding-left:20px;
    margin-top:20px;
}

.welcome-list li{
    color:#000 !important;
    font-size:16px;
    font-weight:500;
    margin-bottom:10px;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.choose-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    height:100%;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.choose-card:hover{
    background:#111;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.choose-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.4s;
}

.choose-icon i{
    font-size:24px;
    color:#000;
    transition:.4s;
}

.choose-card h5{
    margin:0;
    font-size:21px;
    font-weight:700;
    color:#000;
    transition:.4s;
}

.choose-card p{
    margin:0;
    color:#000;
    line-height:1.8;
    font-size:15px;
    transition:.4s;
}

.choose-card:hover h5,
.choose-card:hover p{
    color:#fff;
}

.choose-card:hover .choose-icon{
    background:#fff;
}

.choose-card:hover .choose-icon i{
    color:#c79a4b;
}

.gallery-btn{
    border:none;
    padding:10px 25px;
    margin:5px;
    border-radius:30px;
    background:#fff;
    color:#000;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.gallery-btn:hover,
.gallery-btn.active{
    background:#c79a4b;
    color:#fff;
}

.gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
}

.gallery-item{
    overflow:hidden;
}

.gallery-item:hover .gallery-img{
    transform:scale(1.08);
}

/*=========================================
CONTACT FORM
=========================================*/

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.contact-form-box h3{
    color:#111;
    font-weight:700;
    margin-bottom:25px;
}

.contact-form-box .form-control{
    height:50px;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:none;
    padding:12px 15px;
    font-size:15px;
}

.contact-form-box textarea.form-control{
    height:auto;
    resize:none;
}

.contact-form-box .form-control:focus{
    border-color:#c79a4b;
    box-shadow:0 0 0 0.2rem rgba(199,154,75,.15);
}

.contact-btn{
    background:#111;
    color:#fff;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#c79a4b;
    color:#fff;
}

/*=========================================
MAP SECTION
=========================================*/

.map-section{
    background:#f8f9fa;
}

.map-box{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.map-box iframe{
    display:block;
    width:100%;
    height:450px;
    border:0;
}

@media (max-width:768px){

    .map-box iframe{
        height:300px;
    }

}

/*=========================================
FAQ SECTION
=========================================*/

.faq-card{
    border:none;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-card .card-header{
    background:#fff;
    border:none;
    padding:0;
}

.faq-card .btn-link{
    width:100%;
    text-align:left;
    color:#111;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
    padding:20px 25px;
    display:flex;
    align-items:center;
}

.faq-card .btn-link:hover{
    text-decoration:none;
    color:#c79a4b;
}

.faq-card .btn-link i{
    color:#c79a4b;
    font-size:20px;
}

.faq-card .card-body{
    background:#fff;
    color:#666;
    font-size:15px;
    line-height:1.9;
    padding:20px 25px;
    border-top:1px solid #eee;
}

.faq-card .btn-link:focus{
    box-shadow:none;
}

.faq-card .card-header button[aria-expanded="true"]{
    background:#111;
    color:#fff;
}

.faq-card .card-header button[aria-expanded="true"] i{
    color:#c79a4b;
}