/*Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,700&display=swap');


/* font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #021832;
    --secondary-color: #caa169;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;
    --bg-background: #8c0001;


    /* Text Style  */

    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswal', sans-serif;
    --primary-text: #021832;
    --secondary-text: #caa169;
    --text-white: #fff;
    --text-black: #151515;
    --text-grey: #e4e4e4;
    --text-dark: #8c0001;
}

body{
    font-family: var(--primary-font);
    background: var(--bg-color);
}

a{
    text-decoration: none;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}


section{
    padding: 3.125rem 0;
}

.main-btn{
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
    border: 0.0625rem solid var(--primary-color);
    padding: .375rem 1.875rem;
    border-radius: 3.125rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.main-btn:hover{
    background-color: var(--bg-background);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

h1{
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(secondary-font);
}

h3{
    margin-bottom: 1.875rem;
    line-height: 2.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--text-dark);
    font-family: var(--secondary-font);
}

h3 span{
    color: var(--text-dark);
}

h5{
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 500;
    font-family: var(--secondary-font);
}

h6{
    font-size: .875rem;
        color: var(--text-dark);
        margin-bottom: .9370rem;
        text-transform: uppercase;
        font-weight: 300;
        font-family: var(--secondary-font);
}

p{
    font-size: 1rem;
    color: var(--text-black);
    line-height: 1.620;
}

.section-title::after{
    content: '';
    background-image: url('../images/title-icon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin-top: .05rem;
    height: .9375rem;
}


/*NAVBAR CSS START HERE*/
.header_wrapper .navbar{
    /* padding: .9375rem 0; */
    background-color: var(--bg-background);
    -webkit-box-shadow: 0.5rem .375rem -0.375rem rgb(0 0 0 /40%);
    box-shadow: 0.5rem .375rem -0.375rem rgb(0 0 0 /40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}

.header_wrapper .navbar-toggler{
    border: 0;
    color: var(--primary-text);
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus{
    box-shadow: none;
}

.header_wrapper .nav-item{
    margin: 0.25rem; 
}

.header_wrapper .nav-item .nav-link{
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    display: inline-block;
}

.header_wrapper .nav-item .nav-link:hover,
.header_wrapper .nav-item .nav-link.active{
    color: var(--secondary-text);
}
.navbar.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--bg-background);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown{
    0%{
        top: -30%;
    }
    50%{
        top: -15%;
    }
    100%{
        top: 0;
    }
}

/*NAVBAR CSS END HERE*/




/*BANNER CSS START HERE*/

.hero_slider{
    padding-top: 0;
}

/* .banner_wrapper{
    height: 25.625rem;
    
    
}
.banner_wrapper .swiper{
    width: 100%;
    height: 100%;
    
}

.banner_wrapper .swiper-slide{
    width: 100%;
    height: 100%;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_wrapper .swiper-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0.5;
    z-index: 0;

}
.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet{
    width: .9375rem;
    height: .9375rem;
    background-color: var(--secondary-color);
    border: 0.0625rem solid var(--bg-white);
}

.banner_wrapper .swiper .slide-caption{
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.banner_wrapper .swiper .slide-caption p{
    max-width: 37.5rem;
    margin: 0 auto;
    color: var(--text-white);
} */

/*ABOUT CSS START HERE*/

#about img{
    max-width: 100%;
    height: auto;
}
/*ABOUT CSS END HERE*/
/*ROOMS CSS START HERE*/

.rooms_wrapper .room-items{
    position: relative;
    overflow: hidden;
}
.rooms_wrapper .room-items img{
    width: 100%;
    transition: all 400ms ease-in 0s;
}

.rooms_wrapper .room-items:hover img{
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
}

.rooms_wrapper .room-items::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;
}

.rooms_wrapper .room-items:hover::before{
    opacity: 0.6;
}
.rooms_wrapper .room-item-wrap{
    position: absolute;
    left: 1.875rem;
    right: 1.875rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.rooms_wrapper .room-item-wrap .room-content{
    border: .125rem solid var(--bg-white);
    padding:0;
    text-align: center;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
    transition: all 500ms ease-in 0s;
    opacity: 0;

}

.rooms_wrapper .room-item-wrap:hover .room-content{
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

/*Services*/

/*SPECIFICATIONS CSS START HERE */

.single_speci_hover{
    
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    will-change: transform;
    
    
}

.circle_image{
padding: 0.125rem 2.5rem 0.5rem;
}

.single_speci{
    box-shadow: 0 3px 20px 0px rgb(0 0 0 /12%);
    border-radius: 1.5rem;
    padding: 0.875rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.single_speci::before{
    position: absolute;
    content: '';
    width: 0.063rem;
    height: 0.125rem;
    top: 0rem;
    left: 0rem;
    border-radius: 50%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.single_speci:hover:before{
    width: 100%;
    background: var(--bg-background);
}

.single_speci_hover:hover{
    box-shadow: 0 2rem 5rem rgb(0 0 0 /12%);
}

/* .moreText{
    display: none;
} */

.read-more-btn{
    padding: 0.125rem 0.75rem;
    background-color: var(--bg-background);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: .896rem;
    cursor: pointer;
}
.hide{
    display: none;
}
/* .text.show-more .moreText{
    display: inline;
} */

#services .nav-pills{
   border: 0;
   justify-content: center;
}

#services .nav-pills .nav-link{
    display: block;
    padding: 0 1.875rem;
    border: 0.0625rem;
    border-radius: 1.25rem;
    background-color: var(--bg-background);
    color: var(--bg-white);
    height: 2.25rem;
    margin: 0.625rem;
    line-height: 2.125rem;
    text-transform: uppercase;
}


/*CONTACT US CSS START HERE */
.contact .info li span{
    font-size: 1.5rem;
    margin-top: 1rem;
    color: var(--bg-background);
}
.contact .info li p{
    font-size: 1rem;
    display: inline-block;
    margin: 0.75rem 0;
    color: var(--bg-background);
}
.contact .form-group{
    margin-bottom: 1.5rem;
}
.contact .form-control{
    height: 2.75rem;
    padding: 0.375rem 1.1875rem;
    font-size: 1rem;
    box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 /12%);
}

/*CONTACT US CSS END HERE */


/*SPECIFICATIONS CSS END HERE */

/*FOOTER CSS START HERE*/

.footer_wrapper{
    background-color: var(--bg-background);
}

.footer_wrapper h5{
    color: var(--text-white);
    margin-bottom: 1.2rem;
}

.footer_wrapper ul li{
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .cntact-info li a{
    color: var(--secondary-color);
}

.footer_wrapper .link-widget li a,
.footer_wrapper p{
    color: var(--text-white);
    font-size: .875rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease-out 0s;

}

.footer_wrapper .link-widget li a:before{
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover{
    color: var(--secondary-color);
    margin-left: .625rem;
}


.footer_wrapper .social-network a{
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height: 2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-grey);
    color: var(--text-grey);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-0.1875rem);
    box-shadow: 0 .625rem rgb(0, 0, 0 / 10%);

}

.footer_wrapper .form-control:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section{
    background-color: var(--primary-color);
    padding: 1.25rem 0 .3125rem;
    text-align: center;


}

.footer_wrapper .copyright-section a{
    color: var(--secondary-color);
}


/*ARROW UP*/

#scrollUp{
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 2.813rem;
    width: 2.5rem;
    border-radius: 0.25rem;
    text-align: center;
    cursor: pointer;
    z-index: 500;
    display: none;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background: var(--bg-background);
}
#scrollUp span{
    line-height:  2.625rem;
}

#scrollUp.scrollActive{
    display: block;
}

.whatsd{
    position: fixed;
    bottom: 3%;
    left: 2%;
    z-index: 2;
    
  }
  .whatsd img{
    width: 2.813rem;
    height: 2.813rem;
  }