/*==================================
    SAB BE SPECIAL
==================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
}

.container{
width:95%;
max-width:1600px;
margin:auto;
}

/*======================
HEADER
=======================*/

.top-header{

background:#fff;

padding:22px 0;

}

.header-flex{

display:flex;

align-items:center;

justify-content:space-between;

gap:35px;

}

.logo img{

width:130px;

display:block;

}

/*======================
SEARCH
=======================*/

.search-box{

flex:1;

}

.search-box form{

display:flex;

}

.search-box input{

width:100%;

height:58px;

border:2px solid #c79b2d;

border-right:none;

padding:0 25px;

font-size:16px;

outline:none;

border-radius:40px 0 0 40px;

}

.search-box button{

width:72px;

border:none;

background:#c79b2d;

color:#fff;

font-size:22px;

cursor:pointer;

border-radius:0 40px 40px 0;

}

/*======================
RIGHT HEADER
=======================*/

.right-header{

display:flex;

align-items:center;

gap:18px;

}

.btn-gold{

display:flex;

align-items:center;

gap:10px;

padding:14px 22px;

border:2px solid #c79b2d;

border-radius:8px;

text-decoration:none;

color:#b8860b;

font-size:15px;

font-weight:600;

transition:.3s;

}

.btn-gold:hover{

background:#c79b2d;

color:#fff;

}

.call-box{

display:flex;

align-items:center;

gap:10px;

}

.call-box small{

display:block;

font-size:13px;

}

.call-box strong{

font-size:16px;

}

.account{

display:flex;

align-items:center;

gap:8px;

font-size:16px;

font-weight:600;

}

/*======================
MENU
=======================*/

.main-nav{

background:#111;

border-bottom:3px solid #c79b2d;

}

.menu{

display:flex;

list-style:none;

}

.menu li{

flex:1;

border-right:1px solid rgba(255,255,255,.12);

}

.menu li:last-child{

border-right:none;

}

.menu li a{

height:72px;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

color:#fff;

text-decoration:none;

font-size:16px;

font-weight:500;

transition:.3s;

padding:0 10px;

text-align:center;

}

.menu li a:hover{

background:#c79b2d;

}

/*======================
HERO
=======================*/

.hero-section{

height:650px;

background:#fff;

}

/*======================
RESPONSIVE
=======================*/

@media(max-width:1200px){

.header-flex{

flex-wrap:wrap;

}

.search-box{

order:3;

width:100%;

}

.right-header{

flex-wrap:wrap;

}

.menu{

flex-wrap:wrap;

}

.menu li{

width:50%;

flex:none;

}

}

@media(max-width:768px){

.logo img{

width:100px;

}

.search-box input{

height:50px;

}

.search-box button{

width:60px;

}

.menu{

display:block;

}

.menu li{

width:100%;

border-right:none;

border-bottom:1px solid rgba(255,255,255,.1);

}

.menu li a{

height:60px;

}

.btn-gold{

padding:10px 15px;

font-size:14px;

}

.call-box{

display:none;

}

.account{

display:none;

}
/*=========================
HERO SECTION
==========================*/

.hero-section{
    height:700px;
    background:url("../images/banner.jpg") center center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    width:100%;
    height:100%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:600px;
    margin-left:100px;
}

.hero-content h1{
    font-size:54px;
    font-weight:700;
    color:#222;
    line-height:65px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#444;
    line-height:32px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#c79b2d;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
}

.hero-btn:hover{
    background:#a87e20;
}

.welcome-section{
    padding:80px 0;
    text-align:center;
}

.welcome-section h2{
    font-size:42px;
    margin-bottom:15px;
}

.welcome-section p{
    font-size:18px;
    color:#666;
}

}