@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Oswald', sans-serif;
}

body{
    color: #000000;
    font-family: 'Heebo', sans-serif;
    font-size: 17px !important;
    line-height: 29px;
}

/*=================Top Header ===========*/

.top-header{
    padding:10px 0;
    background-color: #e0ba67;
}
.top-header h3{
    text-align: center;
    color: #000;
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    padding: 0;
    margin: 0;
}

/* ============Second header ==============*/
.logo{
    width: 200px;
}
.logo img{
    /*filter: brightness(0);*/
    width: 100%;
}
.header{
    box-shadow: 0px 3px 6px #e7e7e7;
    /*background-color: #fff;*/
    /* padding: 15px 0; */
    position: relative;
background-image: url(../img/menu-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-bottom: 1px solid #444;
background-position: 94% bottom;
}
.navbar{
    
}
.navbar ul{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    padding: 15px 0;
}
.navbar ul li{
    margin: 0 15px;
}
.navbar ul li a{
    font-size: 15.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.5s all;
}
.navbar ul li a:hover{
  color:rgb(155, 88, 5);
}

/*=============banner Box==============*/

.hero{
    position: relative;
    height: 75vh;
}
.hero img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: relative;
}
.hero::after{
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background-color:#0000007a;
 z-index: 11;
}
.text-banner-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
}
.text-banner-box h2{
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.btnbox{
    display: inline-block;
    padding: 8px 20px;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s all;
}
.btnbox:hover{
    background-color: #B78D35;
     padding-right:30px; 
}
.btnbox i{
  transform: translateX(0px);
  transition: 0.5s all;
  font-size:14px;
}
.btnbox:hover i{
  transform: translateX(10px);   
}

.navbar .btnbox{
   background-color: #B78D35; 
   color:#fff !important;
}


.navbar .btnbox:hover{
   background-color: #000; 
   color:#fff !important;
   padding-right:20px !important;
}


/*=========== About Us============*/
.about-us{
    padding-top: 50px;
    padding-bottom: 20px;
    text-align: center;
}
.about-us h3{
    font-size: 40px;
    color: #000;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.about-us .btnbox{
    margin-top: 5px;
}
.img-popular{
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.5s all;
    border-radius: 25px;
}
.img-popular img{
    transition: 0.5s all;
   
    overflow: hidden;

}
.img-popular:hover  img{
    transform: scale(1.10);
}
.img-popularr::after{
    transition: 0.5s all;
}
.img-popular:hover::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(90deg,rgba(33,37,41,.9)40%,rgba(0,0,0,0)100%);
    width: 100%;
    height: 100%;
    
}

.content-popular-box{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 30px 0 30px;
    color: #fff;
    opacity: 0;
    transition: 0.5s all;
    z-index: 99;
}
.content-popular-box h3,.content-popular-box p , .content-popular-box .btnbox{
margin-bottom: 10px;
transform: translateY(100%);
transition: all 0.5s linear;
}
.img-popular:hover .content-popular-box h3,.img-popular:hover .content-popular-box p,.img-popular:hover .content-popular-box .btnbox {

    transform: translateY(0);
    }


.img-popular:hover .content-popular-box{
    opacity: 1;
    bottom: 20px
}
.popular .btnbox{
    margin-top: 5px;
    font-size: 14px;
}
.banner-bg{
    width: 100%;
    height: 100%;  
}
.banner-bg img{
    width: 100%;
    height: 100%;
}

/*========Service Area==========*/

.service-box-main h3{
    font-size: 25px;
    letter-spacing: 0.5;
    margin-top: 15px;
}

.service-box-main a {
  width: 100px;
  display: inline-block;
  overflow: hidden;
}
.service-box-main a i{
     transform: translateX(-100px);
     transition: 0.5s all;
}
.service-box-main:hover a i{
    transform: translateX(0px);    
}
/*==============Footer=============*/

.subscribe{
    /*background-color: #e6e0e0;*/
      position: relative;
    background-image: url(../img/bg-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.subscribe .form-control{
    padding: 12px 70px 12px 25px;
    border-radius: 50px;
    border-color: #5a5a5a;
    color: #000;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
    border-color: #5a5a5a;
}
.form-control::placeholder{
    color: #000;
}
.input-col{
    position: relative;
}
.btn-send{
    position: absolute;
    width: 60px;
    height: 49px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #090909;
    box-shadow: none;
    border-radius: 0 50px 50px 0;
}
.btn-send:hover{
    background-color: #636060; 
}
.btn-send i{
    color: #fff;
}

.footer-list ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-list ul li{
    margin: 0 10px;

}
.footer-list ul li a{
font-weight: 600;
font-size: 18px;
}

.copyright p{
    color: #222222;
    font-weight: 500;
    font-size: 17px;
}
.social-media ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;   
}

.social-media ul li a{
    display: block;
    margin: 0 10px;
    height: 40px;
    width: 40px;
    line-height: 40px;
   background-color: #000;
   border-radius: 50px;

}
.social-media ul li i{
    color:#fff;
    font-size: 14px;
}
.social-media ul li a:hover{
    background-color: #B78D35;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #B78D35;
}
.scrolltop{
    width: 45px;
    height: 45px;
    /*background-color: #000000;*/
    line-height: 45px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    position: fixed;
    bottom:25px;
   transition: 0.5s all;
    right: -100px;
     border: 1px solid #000;
     z-index:99999999;

}
.scrolltop i{
    color: #000;
    font-size: 16px;
}
.actiovtop{
    right: 25px;
}

.menu-icon{
    display: none;
}

#stycky{
}

.sticky-fixed{
    top: 0;
    position: fixed;
    width: 100%;
   border-color: #fff0;
    z-index: 99999999;
}
.closed{
    display: none;
}

/*=========Loader==========*/
.loader{
    width:100%;
    height:100%;
    position:fixed;
    background-color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 99999999999999;
}
.loaderof{
    display:none;
}


/*==============About Us page===================*/
.banner-about{
    position: relative;
    background-image: url(../img/about-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-about{
    display: block;
    padding-top: 95px;
    padding-bottom: 90px;
    z-index: 2;
    text-align: center;
}
.about-page-banner h2{
    font-weight:700;
    font-size:50px;
    color: #fff;
    padding:25px 0;
}
.about-box{
    padding:75px 0 50px 0;
}
.about-content h5{
    color:#B78D35;
    font-size:16px;
    padding:20px 0;
}

.about-content h3{
  font-size:50px; 
  padding-bottom:25px;
  letter-spacing: 1px;
}

.about-content ul{
    padding-left:5px;
}
.about-content ul li{
    margin-top:8px;
    font-weight: 500;
    /*list-style: circle;*/
}

.about-content ul li i{
    padding-right:8px;
    font-size:15px;
    color:#B78D35;
}


/*============Our Services===============*/
.services-box{
    padding:50px 0px 30px 0;
    padding-top: 105px;
}
.ser-content h4{
    padding-bottom:15px;
    font-size:38px;
    
}#service-2 {
  padding-top: 99px !important;
}

.ser-content ul li{
    margin-top:5px;
}
.ser-content ul li i{
    font-size:14px;
    padding-right:10px;
    color:#B78D35;
}
.ser-img img{
border-radius: 10px;
}

/*===========Contact Us =================*/
.contact-box{
  padding:50px 0px 30px 0;  
}
.location {
  box-shadow: 1px 1px 10px #ddd0d0;
  padding:40px 20px;
  text-align: center;
  background-color: #F5F5F5;
  min-height: 284px;
}
.con-icons {
    padding:0px 0 10px 0;
}
.con-icons i {
  font-size: 59px;
  color: #B78D35;
}
.location h2{
    font-size:25px;
    padding:10px 0;
}

.form-box{
    /*box-shadow:1px 2px 10px #ccc;*/
    background: whitesmoke;
    padding:30px;
}
.contact-form {
  margin-top: -67px;
}
.form-box .form-control {
  padding: 12px 12px;
  border-radius: 0;
  margin-top:15px;
  border: 1px solid #939393;
}

.form-box .btn.btn-primary {
  border-radius: 0;
  background: #b78d35;
  border-color: #b78d35;
  margin-top: 11px;
  width: 100%;
  padding: 12px;
}
.form-right{
    width:100%;
    height:100%;
}
.form-right img{
    width:100%;
    height:100%;
    object-fit: cover;
    box-shadow:1px 2px 10px #ccc;
}

.container.form-area {
  box-shadow: 2px 5px 10px #ccc;
}

.form-box {
    position: relative;
    background-image: url(../img/cont-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*=====Blogs Page=============*/
.blogs {
  box-shadow: 1px 2px 10px #ccc;
  transition: 0.5s all;
  border-radius: 5px;
  overflow:hidden;
  
}
.blog-content{
    padding:20px;
}

.blog-content h3{
    font-size:22px;
    font-weight:500;
    padding-bottom:8px;
   line-height:32px;
}

.blog-content .btnbox{
    margin-top:10px;
   padding: 6px 20px;
   transition: 0.5s all;
}

.blog-content .btnbox i{
  font-size: 13px;
transform: translateX(0px);
transition: 0.5s all;
}
.blog-content .btnbox:hover{
   padding-right:30px; 
}
.blog-content .btnbox:hover i{
 transform: translateX(10px);   
}
.blog-img{
    overflow:hidden;
    transition: 0.5s all;
}
.blog-img img{
   transition: 0.5s all; 
}
.blogs:hover .blog-img img{
   transform: scale(1.1);
}

.blog-content ul{
    display:flex;
    padding:5px 0;
}
.blog-content ul li{
    margin-right:15px;
    font-size:13px;
}
.blog-content ul li i{
    padding-right:5px;
    font-size:13px;
}


/* responsive box*/
@media only screen and (max-width:1200px) {
    .text-banner-box {
      padding: 25px;
        width: 100%;
    }
    section.popular.my-5.px-5 {
    padding: 0 !important;
}
}

@media only screen and (max-width:990px) {
    .menu-icon{
        display: block;
    }
    .navbar {
        display: none;
        position: absolute;
        height: 100vh;
        background: rgb(0 0 0 / 48%);
        z-index: 999999999;
        width: 100%;
        right: 0;
        top: 0;
    }
    .navbar ul {
        flex-direction: column;
        align-items: start;
        justify-content: right;
        padding-top: 45px;
        padding-left: 25px;
        width: 50%;
       background-color: #000;
       height: 100vh;
       margin-left: auto;
       margin-top: -15px;
    }
    .navbar ul li{
        margin-top: 25px;
    }
    .navbar ul li a{
        color: #fff;

    }
    .closed{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background-color: #fff;
        text-align: center;
        line-height: 50px;
        cursor: pointer;
    }
    .closed i{
        font-size: 18px;
    }
    .navbar{
        right: -100%;
        transition: 0.5s all;
    }
    .activemenu{
        display: block;
        right:0;
     
    }
 
.banner-about {
    padding-top:45px;
    padding-bottom: 45px;
}.hero {
    position: relative;
    height: 49vh;
}

  }

@media only screen and (max-width:768px) {
    section.popular.my-5.px-5 {
        padding: 0 !important;
    }
    .text-banner-box{
        width: 100%;
        padding: 20px;
    }
    .about-us h3 {
        font-size: 31px;
    }
    .text-banner-box h2 {
        font-size: 54px;
    }
    .navbar ul {
        width: 55%;
  }
  .about-content h3 {
    font-size: 41px;
}
.hero {
    position: relative;
    height: 49vh;
}
}


  @media only screen and (max-width:425px) {
  .footer-list ul li a {
    font-weight: 600;
    font-size: 14px;
}
.copyright p {
    color: #222222;
    font-weight: 500;
    font-size: 15px;
}
.navbar ul {
    width: 70%;
}
.content-popular-box h3, .content-popular-box p, .content-popular-box .btnbox {
    margin-bottom: 10px;
}
.img-popular:hover .content-popular-box {
    opacity: 1;
    bottom: 0px;
}
.content-popular-box p{
  font-size:14px;
  line-height: 22px;
}
.banner-bg img {
    width:100%;
    height: 100%;
}

  }