@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Oswald', sans-serif;
    text-transform: capitalize;
}

span,
input,
textarea,
p,
ul{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
button{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

a:hover{
    color: inherit;
}

body{
    overflow-x: hidden;
    background: #FBF9FF;
    font-family: 'Poppins', sans-serif;
}

main{
    overflow: hidden;
}

a,
button,
input,
textarea:focus{
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.form-group input[type=number]{
  -moz-appearance: textfield;
}

/*Key Frames Here*/
@keyframes scale1{
    0%{
        transform: scale(1)
}

    100%{
        transform: scale(1.1)
}
}
@keyframes discoveryGlow{
  0%{
    box-shadow: 0 0 5px #859293, 0 0 15px #859293;
}

  50%{
    box-shadow: 0 0 15px #859293, 0 0 15px #859293, 0 0 15px #859293;
}

  100%{
    box-shadow: 0 0 5px #859293, 0 0 15px #859293;
}
}
/*Key Frames Here*/

/*Website Custom Style Css For Single Items Start Here*/

/*Heading & Para Style Css*/
h1{
    font-size: 70px;
    line-height: 76px;
    font-weight: 600;
}
h2{
    font-size: 60px;
    line-height: 68px;
    font-weight: 400;
}
h3{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
}
h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}
h5{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}
h6{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0 0 10px;
}
p.head-para{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 10px;
    text-transform: uppercase;
}
li{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0 0 5px;
}
/*Heading & Para Style Css*/

/*Buttons Style Css*/
.website-main-buttons{
    margin: 30px 0 0;
    display: flex;
    align-items: center;
}
.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn{
    font-size: 14px;
    font-weight: 700;
    width: 185px;
    height: 50px;
    line-height: 30px;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 10px 0 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
/*Buttons Style Css*/

/*Website Custom Style Css For Single Items End Here*/

/*Header Css Start Here*/
header{
    background: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all .3s ease-in-out;
}
header.sticky{
    background: #212529;
    box-shadow: 0 0 20px -5px #b2b2b2;
}
header nav.navbar{
    padding: 10px 30px;
    align-items: center;
}
header nav.navbar .navbar-brand{
    padding: 0px 0;
    margin: 0;
}
header nav.navbar .navbar-brand .logo{
    width: 250px;
    margin: 0;
    transition: all 0.5s ease-in-out;
    display: block;
}
header .navbar-toggler{
    background-color: #fff;
    display: none;
}
header .navbar-toggler:focus{
    box-shadow: none;
}
header .navbar-expand-lg .navbar-collapse{
    justify-content: end;
    flex-direction: column;
    align-items: end;
    margin: 0 20px;
}
header .navbar-collapse .navbar-top-nav{
    display: flex;
    align-items: center;
    margin: 0 10px 0 0;
    background: #4d4d45;
    padding: 10px 5px;
    border-radius: 10px;
}
header .navbar-top-nav a.link-anchor{
    color: #F0F2F3;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0 15px;
}
header .navbar-top-nav .top-nav-contact{
    margin: 0 15px;
}
.navbar-top-nav .top-nav-contact .top-contact-number{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-top-nav .top-nav-contact .top-contact-number span{
    font-size: 18px;
    font-weight: 700;
    color: #ac7e08;
    display: block;
    margin: 0 5px 0 0;
    text-transform: capitalize;
}
.navbar-top-nav .top-nav-contact .top-contact-number a{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: block;
    transition: all .3s ease-in-out;
    animation: scale1 .3s alternate infinite ease-in
}
.navbar-top-nav .top-nav-contact .top-contact-number a:hover{
    color: #ac7e08;
}
header .navbar-top-nav .top-nav-email{
    margin: 0 15px;
    display: flex;
    align-items: center;
}
.navbar-top-nav .top-nav-email i{
    color: #ac7e08;
    margin: 0 10px 0 0;
}
.navbar-top-nav .top-nav-email a{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: block;
    transition: all .3s ease-in-out;
    animation: scale1 .3s alternate infinite ease-in
}
.navbar-top-nav .top-nav-email a:hover{
    color: #ac7e08;
}
header .navbar-collapse .navbar-main-nav{
    display: flex;
    align-items: center;
}
header .navbar-main-nav ul.navbar-nav{
    width: 100%;
    justify-content: center;
    margin: 0 10px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    margin: 0 15px 0;
}
header .navbar-main-nav ul.navbar-nav li.nav-item a.nav-link{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 20px 0px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
header .navbar-main-nav ul.navbar-nav li.nav-item a.nav-link:hover{
    color: #d39b0a;
}
header .navbar-main-nav ul.navbar-nav li.nav-item.dropdown{
    position: relative;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle::after{
    content: "";
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 5px;
    display: block;
}
header .navbar-nav .nav-item ul.dropdown-menu{
    background: #ffffff;
    top: 40px;
    left: 0;
    border: none;
    border-radius: 0px;
    box-shadow: 0 5px 20px -10px #d39b0a;
    padding: 0px 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    display: flex;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
header .navbar-nav .nav-item ul.dropdown-menu li{
    padding: 0;
    margin: 0;
    width: 100%;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    color: #212529;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f4f3f56b;
    border-radius: 0;
    padding: 12px 12px;
    margin: 0;
    text-align: left;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 18px;
    color: #ac7e08;
    margin: 0 10px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:focus, 
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:hover{
    background: radial-gradient(#ac7e0840, #d39b0a2b);
}
header nav.navbar .navbar-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
header.sticky nav.navbar .navbar-buttons{
    padding: 0;
}
header nav.navbar .navbar-buttons button.popup-btn{
    background: #d39b0a;
    color: #fff;
    border: 2px solid #d39b0a;
    font-size: 16px;
    font-weight: 700;
    width: 230px;
    height: 50px;
    line-height: 30px;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 10px 0 0;
    text-transform: capitalize;
    text-shadow: 0 10px 10px #d39b0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
header nav.navbar .navbar-buttons button.popup-btn:hover{
    transform: scale(1.1);
}
/*Header Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Css Start Here*/
section.banner-main-sec{
    background: #212529;
    position: relative;
    z-index: 1;
}
.banner-main-sec .bg-video{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 98vh;
    object-fit: cover;
}
.banner-main-sec .video-overlay{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 40%);
    width: 100%;
    height: 98vh;
    display: block;
    z-index: 1;
}
.banner-main-sec .banner-absol-cont{
    position: absolute;
    top: 25%;
    z-index: 2;
}
.banner-main-sec .banner-inner-content{}
.banner-inner-content h1{
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    position: relative;
    background: -webkit-linear-gradient(#ac7e08, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-inner-content h1 span{
    color: #ac7e08;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    display: block;
    margin: 0 0 10px;
}
.banner-inner-content h1::after{
    content: "";
    width: 75px;
    height: 5px;
    background: #ac7e08;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 30px 0;
    display: block;
}
.banner-inner-content p{
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}
.banner-inner-content .website-main-buttons button.popup-btn{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    color: #fff;
    border: none;
    font-size: 16px;
    width: 220px;
}
.banner-inner-content .website-main-buttons button.popup-btn:hover{
    background: linear-gradient( 80deg, #d39b0a, #ac7e08);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.banner-inner-content .website-main-buttons a.call-btn{
    background: #fff;
    color: #d39b0a;
    width: 220px;
}
.banner-inner-content .website-main-buttons a.call-btn:hover{
    background: #d39b0a;
    color: #fff;
    transform: scale(1.1);
}
.banner-inner-content .website-main-buttons a.call-btn i.fa-whatsapp{
    background: #00e676;
    color: #fff;
    border-radius: 100%;
    font-size: 26px;
    margin-right: 5px;
    padding: 5px;
}
/*Banner Editing Form Css Start*/
.banner-editing-form{
    background: #ffffffad;
    width: 75%;
    padding: 20px 30px;
    margin: 0 auto;
    border: 1px solid #efefef;
    border-radius: 20px;
    box-shadow: 0 3px 10px -6px #000000;
}
.banner-editing-form h4{
    color: #ac7e08;
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 20px;
    text-align: center;
}
.banner-editing-form form{}
.banner-editing-form form .form-group{
    margin: 0 0 10px;
    text-align: center;
}
.banner-editing-form form .form-group input{
    background: #ffffff0d;
    color: #181223;
    font-size: 16px;
    width: 100%;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 10px 8px;
}
.banner-editing-form form .form-group input::placeholder{
    color: #181223a1;
}
.banner-editing-form form .form-group textarea{
    background: #ffffff0d;
    color: #181223;
    border: 1px solid #fff;
    font-size: 16px;
    width: 100%;
    height: 100px;
    padding: 10px 10px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    resize: none;
}
.banner-editing-form form .form-group textarea::placeholder{
    color: #181223a1;
}
.banner-editing-form form .form-group button.submit-btn{
    background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    width: 150px;
    height: 50px;
    line-height: 28px;
    border: none;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 auto;
    outline: none;
    text-transform: uppercase;
    text-shadow: 0 10px 10px #d39b0a;
    transition: all .3s ease-in-out;
}
.banner-editing-form form .form-group button.submit-btn:hover{
    background: #f8f9fa;
    color: #d39b0a;
    transform: scale(1.1);
}
/*Banner Editing Form Css End*/
/*Banner Main Section Css End Here*/

/*Banner Down Brands Section Css Start Here*/
section.bandown-brands-wrap{
    background: #111;
    padding: 30px 0;
}
.bandown-brands-item .slick-arrow{
    top: 25%;
    left: inherit;
    position: absolute;
    background: none;
    border: none;
    font-size: 0;
    z-index: 9;
}
.bandown-brands-item .slick-prev{
    right: -50px;
}
.bandown-brands-item .slick-prev::before{
     content: '\f104';
}
.bandown-brands-item .slick-next{
    right: -75px;
}
.bandown-brands-item .slick-next::before{
    content: '\f105';
}
.bandown-brands-item .slick-prev::before,
.bandown-brands-item .slick-next::before{
    font-family: 'Font Awesome 6 Pro';
    font-size: 20px;
    background: transparent;
    color: #ac7e08;
    font-weight: 600;
    display: block;
    opacity: 1;
}
.bandown-brands-item .brands-item-img{
    margin: 0 10px;
}
.brands-item-img img{
    height: 50px;
    object-fit: scale-down;
    margin: 0 auto;
    filter: invert(0) brightness(1) grayscale(1);
}
/*Banner Down Brands Section Css End Here*/

/*Main Info Section Css Start Here*/
section.main-info-wrap{
    background: #4d4d45;
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.main-info-content h2{
    color: #ac7e08;
    margin: 0 0 20px;
}
.main-info-content span{
    font-family: 'Oswald', sans-serif;
    color: #ac7e08;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 20px;
    display: block;
}
.main-info-content p{
    color: #fff;
}
.main-info-content ul{
    display: grid;
    justify-content: center;
}
.main-info-content ul li{
    color: #212529;
    margin: 0 0 25px;
}
.main-info-content ul li i{
    color: #d39b0a;
    font-weight: 600;
    margin: 0 10px 0 0;
}
/*Main Info Section Css End Here*/

/*Counter Satisfy Section Css Start Here*/
section.counter-satisfy-wrap{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    padding: 20px 0 20px;
    margin: 0;
}
.counter-satisfy-wrap .counter-satisfy-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.counter-satisfy-inner .counter-satisfy-box{
    text-align: center;
    background: #ac7e08;
    margin: 0 10px;
    width: 25%;
    padding: 20px 20px;
    border-radius: 20px;
}
.counter-satisfy-box .counter-box-head h4{
    color: #fff;
    font-size: 40px;
    line-height: 46px;
    margin: 0 0 10px;
}
.counter-satisfy-box p{
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
/*Counter Satisfy Section Css End Here*/

/*Service Info Section Css Start Here*/
section.service-info-wrap{
    padding: 50px 0 ;
    background: #4d4d45;
}
.service-info-wrap .service-info-head{
    text-align: center;
    margin: 0 0 50px;
}
.service-info-head h2{
    color: #ac7e08;
    font-weight: 700;
    margin: 0 0 10px;
}
.service-info-head p.head-para{
    color: #fff;
}
.service-info-wrap .service-info-inner{
    margin: 0 0 30px;
}
.service-info-inner .service-info-bg{
    background: url(../images/service-info/service-img-bg1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: grid;
    align-items: center;
}
.service-info-inner .service-info-bg.service-info-bg2{
    background: url(../images/service-info/service-img-bg2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.service-info-bg .service-info-content{
    padding: 20px 20px;
}
.service-info-bg.service-info-bg2 .service-info-content{
    margin: 0 auto;
}
.service-info-content h3{
    color: #fff;
    margin: 0 0 20px;
}
.service-info-content p{
    color: #fdfdfd;
    margin: 0 0 15px;
}
.service-info-content .heading-three{
    font-size: 34px;
    line-height: 42px;
    margin: 0;
}
.service-info-content span.short-heading{
    font-family: 'Oswald', sans-serif;
    color: #ac7e08;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 10px;
    display: block;
}
.service-info-content .website-main-buttons{
    margin: 30px 0 20px;
}
.service-info-content .website-main-buttons a.read-more-btn{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    color: #fff;
}
.service-info-content .website-main-buttons a.read-more-btn:hover{
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.service-info-content .website-main-buttons a.call-btn{
    background: #fff;
    color: #d39b0a;
}
.service-info-content .website-main-buttons a.call-btn:hover{
    background: #d39b0a;
    color: #fff;
    transform: scale(1.1);
}
.service-info-img img{
    width: 100%;
    border: 10px double #d39b0a;
    border-radius: 0 0 50px 0px;
}
/*Service Info Section Css End Here*/

/*Our Portfolio Section Css Start Here*/
section.our-portfolio-wrap{
    background: #4d4d45;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.our-portfolio-wrap .our-portfolio-head{
    width: 90%;
    margin: 0 auto 50px;
    text-align: center;
}
.our-portfolio-head .heading-two{
    color: #ac7e08;
    margin: 0 0 10px;
}
.our-portfolio-head p{
    color: #fff;
}
.our-portfolio-inner .our-portfolio-buttons{
    margin: 0 0 30px;
}
.our-portfolio-buttons ul.nav-pills{
    justify-content: center;
    align-items: center;
}
.our-portfolio-buttons ul.nav-pills li.nav-item{
    margin: 0 10px 10px;
}
.our-portfolio-buttons ul.nav-pills li.nav-item button.nav-link{
    background: transparent;
    color: #fff;
    border: 2px solid transparent;
    border-bottom: 2px solid #ac7e08;
    font-size: 16px;
    font-weight: 600;
    width: 150px;
    height: 45px;
    line-height: 25px;
    border-radius: 0;
    padding: 10px 10px;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}  
.our-portfolio-buttons ul.nav-pills li.nav-item button.nav-link.active,
.our-portfolio-buttons ul.nav-pills li.nav-item button.nav-link:hover{
    background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
}
.our-portfolio-tabitem .portfolio-tabitem-books{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.portfolio-tabitem-books .portfolio-books-box{
    text-align: center;
    margin: 0 10px 20px;
}
.portfolio-books-box a{
    width: 200px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.portfolio-books-box a::after{
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    background: #0000009c;
    color: #fff;
    font-size: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}
.portfolio-books-box a:hover::after{
    transform: scale(1);
}
/*Our Portfolio Section Css End Here*/

/*Testimonials Reviews Section Css Start Here*/
section.testi-reviews-wrap{
    background: #212529;
    padding: 50px 0;
}
.testi-reviews-inner .testi-reviews-head{
    text-align: center;
    margin: 0 0 50px;
}
.testi-reviews-head h2{
    color: #ac7e08;
    font-weight: 700;
    margin: 0 0 10px;
}
.testi-reviews-head p.head-para{
    color: #fff;
    text-transform: uppercase;
}
.testi-reviews-slider .owl-dots{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0px;
    display: flex;
    justify-content: center;
}
.testi-reviews-slider .owl-theme .owl-dots .owl-dot span{
    margin: 5px 5px;
    background: #fff;
}
.testi-reviews-slider .owl-dots .owl-dot.active span,
.testi-reviews-slider .owl-dots .owl-dot:hover span{
    background: #d39b0a;
}
.testi-reviews-slider .testi-reviews-item{
    text-align: center;
}
.testi-reviews-item .reviews-item-img{
    margin: 0 0 10px;
}
.reviews-item-img img{
    border-radius: 50%;
    width: 80px !important;
    height: 80px;
    margin: 0 auto;
}
.reviews-item-img span.short-name{
    background: #fff;
    color: #212529;
    font-size: 34px;
    font-weight: 500;
    padding: 5px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.testi-reviews-item .rating-stars{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}
.testi-reviews-item .rating-stars img{
    width: 20px;
    height: 20px;
    margin: 0 2px 0;
}
.testi-reviews-item .reviews-item-content{
    margin: 0 0 50px;
    position: relative;
    z-index: 1;
}
.reviews-item-content .reviews-item-para{
    background: #d39b0a;
    padding: 20px 20px;
    margin: 0 auto 20px;
    width: 100%;
    overflow-y: auto;
    min-height: 300px;
    max-height: 300px;
    position: relative;
    z-index: 1;
    display: grid
;
    justify-content: center;
    align-items: center;
}
.reviews-item-para::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0);
    border-radius: 0px;
}
.reviews-item-para::-webkit-scrollbar{
    width: 3px;
    background: #b2b2b2;
    border-radius: 0px;
}
.reviews-item-para::-webkit-scrollbar-thumb{
    background-color: #121212;
    border-radius: 0px;
}
.reviews-item-content .reviews-item-para h4{
    color: #fff;
    margin: 0 0 20px;
}
.reviews-item-content .reviews-item-para p{
    color: #fdfdfd;
}
.testi-reviews-item .reviews-item-content h5{
    color: #ac7e08;
    margin: 0 0 10px;
}
/*Testimonials Reviews Section Css End Here*/

/*CTA Banner Section Css Start Here*/
section.cta-banner-wrap{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.cta-banner-wrap .cta-banner-content{}
.cta-banner-content .heading-three{
  color: #fff;
  margin: 0 0 10px;
}
.cta-banner-content p{
  color: #fff;
}
.cta-banner-content .website-main-buttons button.popup-btn{
    background: #ac7e08;
    color: #fff;
    border: 2px solid #ac7e08;
}
.cta-banner-content .website-main-buttons button.popup-btn:hover{
    background: #ac7e08;
    transform: scale(1.1);
}
.cta-banner-content .website-main-buttons a.call-btn{
  background: #fff;
  color: #d39b0a;
}
.cta-banner-content .website-main-buttons a.call-btn:hover{
  background: #d39b0a;
  color: #fff;
  transform: scale(1.1);
}
.cta-banner-wrap .cta-banner-img{
  position: relative;
  text-align: center;
}
.cta-banner-wrap .cta-banner-img img{
    position: absolute;
    bottom: -155px;
    left: 0px;
    right: 0;
    width: 85%;
    margin: 0 auto;
}
/*CTA Banner Section Css End Here*/

/*FAQS Section Css Start Here*/
section.faqs-sec-wrap{
    background: #4d4d45;
    padding: 50px 0;
}
.faqs-sec-wrap .faqs-sec-head{
    width: 90%;
    margin: 0 auto 50px;
    text-align: center;
}
.faqs-sec-head h3{
    color: #ac7e08;
    margin: 0 0 10px;
}
.faqs-sec-head p{
    color: #fff;
    margin: 0 0 10px;
}
.faqs-sec-item .accordion .accordion-item{
    margin: 0 0 0px;
    border-radius: 0px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fdfdfd;
}
.faqs-sec-item .accordion-item .accordion-header button.accordion-button{
    font-family: 'Oswald', sans-serif;
    background: transparent;
    color: #fdfdfd;
    font-size: 24px;
    line-height: 30px;
    box-shadow: none;
    border-radius: 0px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    margin: 0;
}
.faqs-sec-item
.accordion-item
.accordion-header
.accordion-button:not(.collapsed){
    color: #d39b0a;
}
.faqs-sec-item .accordion-item .accordion-header .accordion-button::after{
    content: "\2b";
    background-image: none;
    background: transparent;
    color: #fdfdfd;
    font-size: 24px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 0px;
    text-align: center;
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
}
.faqs-sec-item
.accordion-item
.accordion-header
.accordion-button:not(.collapsed)::after{
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    color: #d39b0a;
    font-size: 20px;
    transform: rotate(0deg);
}
.faqs-sec-item .accordion-item .accordion-collapse .accordion-body{
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 10px 10px;
    border-radius: 0px;
}
/*FAQS Section Css End Here*/

/*Footer Contact Form Section Css Start Here*/
section.footer-contact-wrap{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.footer-contact-wrap .footer-contact-form-head{
    text-align: center;
    margin: 0 0 50px;
}
.footer-contact-form-head h3{
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
}
.footer-contact-form-head p.head-para{
    color: #fff;
}
.footer-contact-form form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-form .form-group{
    margin: 0 5px 0;
}
.footer-contact-form .form-group input{
    background: #fff;
    border: 1px solid #8e8e8e;
    padding: 10px 20px;
    border-radius: 6px;
    width: 100%;
    height: 50px;
    line-height: 30px;
    color: #121212;
    font-size: 16px;
}
.footer-contact-form .form-group input::placeholder{
    color: #8e8e8e;
    font-size: 16px;
}
.footer-contact-form .form-group button.submit-btn{
   background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    width: 150px;
    height: 50px;
    line-height: 28px;
    border: none;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 0px 0 0;
    outline: none;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.footer-contact-form .form-group button.submit-btn:hover{
    background: #f8f9fa;
    color: #d39b0a;transform: scale(1.1);
}
/*Footer Contact Form Section Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css End Here -----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------ Service Page Main Css Start Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Css Start Here */
section.service-banner-wrap{
    background: url(../images/service-page/service-banner-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 150px 0 75px;
}
.service-banner-wrap::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #121212;
    width: 100%;
    opacity: 0.8;
    z-index: -1;
}
.service-banner-wrap .service-banner-content{}
.service-banner-content h1{
    font-size: 46px;
    line-height: 54px;
    font-weight: 200;
    color: #fff;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.service-banner-content h1 span{
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 36px;
    display: block;
    margin: 0 0 10px;
}
.service-banner-content h4{
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    color: #ac7e08;
    margin: 0 0 0px;
    text-transform: uppercase;
    position: relative;
}
.service-banner-content h4::after{
    content: "";
    width: 75px;
    height: 5px;
    background: #ac7e08;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 20px 0;
    display: block;
}
.service-banner-content p{
    color: #fff;
}
.service-banner-content .website-main-buttons button.popup-btn{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);
    color: #fff;
    border: none;
    width: 175px;
}
.service-banner-content .website-main-buttons button.popup-btn:hover{
    background: linear-gradient(80deg, #ac7e08, #d39b0a);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.service-banner-bg.about-banner-bg{
    background: url(../images/service-page/bespoke-img012.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.service-banner-wrap.contact-banner-bg{
    background: url(../images/contact-banner-bg.webp);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
}
/* Service Banner Section Css End Here */

/**************************************************************************
 ------------------ Service Page Main Css End Here ------------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------ Service Detail Page Css Start Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Detail Banner Section Css Start Here */
section.serv-detailbanner-wrap{
    background: url(../images/service-page/service-banner.webp);
    background-repeat: no-repeat;
    background-position: 100% 65%;
    background-size: cover;
    padding: 200px 0 150px;
    position: relative;
    z-index: 1;
}
section.serv-detailbanner-wrap.service-children-bg{
    background: url(../images/service-page/childrens-banner.webp);
    background-repeat: no-repeat;
    background-position: 100% 65%;
    background-size: cover;
}
.serv-detailbanner-wrap::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #121212;
    width: 100%;
    opacity: 0.7;
    z-index: -1;
}
.serv-detailbanner-content h1{
    font-size: 60px;
    line-height: 68px;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    position: relative;
}
.serv-detailbanner-content h1::after{
    content: "";
    width: 100px;
    height: 5px;
    background: #ac7e08;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 15px 0;
    display: block;
}
.serv-detailbanner-content p{
    color: #fff;
}
.serv-detailbanner-wrap.pricing-banner-bg{
    background: url(../images/pricing-banner-bg.webp);
    background-repeat: no-repeat;
    background-position: 100% 65%;
    background-size: cover;
}
/* Service Detail Banner Section Css End Here */

/* Service Detail Info Section Css Start Here */
section.service-detailinfo-wrap{
    padding: 50px 0;
    background: #212529;
}
.service-detailinfo-wrap .service-detailinfo-inner{}
.service-detailinfo-inner .service-detailinfo-content{}
.service-detailinfo-content .service-detailinfo-head{
    margin: 0 0 30px;
}
.service-detailinfo-head h2{
    color: #ac7e08;
    font-weight: 700;
    margin: 0 0 10px;
}
.service-detailinfo-head span{
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 10px;
    display: block;
    text-transform: uppercase;
}
.service-detailinfo-content p{
    color: #fff;
    margin: 0 0 15px;
}
.service-detailinfo-content .website-main-buttons{
    margin: 20px 0;
}
.service-detailinfo-content .website-main-buttons button.popup-btn{
   background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    color: #fff;
    border: none;
    width: 200px;
}
.service-detailinfo-content .website-main-buttons button.popup-btn:hover{
    background: linear-gradient(80deg, #ac7e08, #d39b0a);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.service-detailinfo-inner .service-detailinfo-img{}
.service-detailinfo-img img{
    width: 100%;
}

.service-detail-video{
  position: relative;
}
.service-detail-video .detail-video-card{
    margin: 20px;
}
.detail-video-card .video-card-main{
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.service-detail-video .video-element{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Service Detail Info Section Css End Here */

/* Service CTA Section Css Start Here */
section.service-cta-wrap{
    background: url(../images/review-banner-bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.service-cta-wrap::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #121212;
    width: 100%;
    opacity: 0.7;
    z-index: -1;
}
.service-cta-wrap .service-cta-content{
    width: 90%;
}
.service-cta-content h2{
    color: #fdfdfd;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.service-cta-content p{
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
}
.service-cta-content .website-main-buttons{
    margin: 0;
}
.service-cta-content .website-main-buttons button.popup-btn{
    background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    border: none;
}
.service-cta-content .website-main-buttons button.popup-btn:hover{
    background: linear-gradient(80deg, #ac7e08, #d39b0a);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.service-cta-content .website-main-buttons a.call-btn{
    background: #fff;
    color: #d39b0a;
}
.service-cta-content .website-main-buttons a.call-btn:hover{
    background: #d39b0a;
    color: #fff;
    transform: scale(1.1);
}
/* Service CTA Section Css End Here */

/**************************************************************************
 ------------------ Service Detail Page Css End Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------- Review Main Page Css Start Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Review Banner Section Css Start Here*/
section.review-banner-sec{
    background-image: url(../images/review-banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 200px 0 150px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.review-banner-content h1{
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    background: -webkit-linear-gradient(#ac7e08, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.review-banner-content p{
    color: #fff;
}
.review-banner-content .website-main-buttons a.call-btn{
    background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    border: none;
}
.review-banner-content .website-main-buttons a.call-btn:hover{
    background: linear-gradient(80deg, #ac7e08, #d39b0a);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.review-banner-content .website-main-buttons button.popup-btn{
    background: #fff;
    color: #d39b0a;
    border: 2px solid #fff;
}
.review-banner-content .website-main-buttons button.popup-btn:hover{
    background: #d39b0a;
    color: #fff;
    transform: scale(1.1);
}
.review-banner-sec .review-banner-img{
    text-align: center;
}
.review-banner-img img{
    width: 90%;
    height: 100%;
}
/*Review Banner Section Css End Here*/

/*Reviews Social Media Section Css Start Here*/
section.reviews-socialmedia-wrap{
    background: #fff;
    padding: 50px 0;
}
.reviews-socialmedia-wrap .reviews-socialmedia-head{
    text-align: center;
    margin: 0 0 30px;
}
.reviews-socialmedia-head h2{
    color: #121212;
    margin: 0 0 20px;
}
.reviews-socialmedia-head p{
    color: #121212;
    font-weight: 500;
}
.reviews-socialmedia-wrap .reviews-socialmedia-inner{}
.reviews-socialmedia-inner .reviews-socialmedia-items{}
.reviews-socialmedia-items .reviews-tabscontent-box{
    background: linear-gradient(80deg, #ac7e08, #d39b0a);
    border-radius: 20px 20px;
    box-shadow: 0 5px 20px -15px #0A2840;
    padding: 30px 30px;
    margin: 10px 0px;
    transition: all .3s ease-in-out;
}
.reviews-tabscontent-box:hover{
    background: radial-gradient(#ac7e08, #d39b0a);
    transform: scale(0.9);
}
.reviews-tabscontent-box .reviews-tabscontent-head{
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb{
    margin: 0 20px 0 0;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb img{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    box-shadow: 0 2px 20px -10px #000000;
}
.reviews-tabscontent-head .reviews-tabscontent-text{}
.reviews-tabscontent-text h4{
    color: #fff;
    margin: 0 0 5px;
    font-weight: 500;
}
.reviews-tabscontent-text .reviews-tabscontent-ratings{
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.reviews-tabscontent-ratings .ratings-stars-img{
    display: flex;
    align-items: center;
    line-height: 0;
}
.reviews-tabscontent-ratings .ratings-stars-img img{
   width: 18px;
    height: 18px;
    margin: 0 2px 0 0;
}
.reviews-socialmedia-items .reviews-tabscontent-para p{
    color: #fff;
    min-height: 150px;
    max-height: 150px;
}
/*Reviews Social Media Section Css End Here*/

/**************************************************************************
 --------------------- Review Main Page Css End Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------- Packages Main Page Css Start Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Css Start Here */
section.packages-bundle-wrap{
    background: #212529;
    padding: 50px 0;
}
.packages-bundle-wrap .packages-bundle-inner{
    margin: 0 0 50px;
}
.packages-bundle-inner .packages-bundle-box{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);
    padding: 20px 20px;
    transition: all .3s ease-in-out;
    position: relative;
}
.packages-bundle-box .package-badge{
    position: absolute;
    top: -50px;
    right: 0;
}
.packages-bundle-box .package-badge img{
    width: 100px;
    height: 100px;
}
.packages-bundle-box .packages-bundlebox-head{
    padding: 0 0 10px;
    margin: 0 0 10px;
}
.packages-bundlebox-head h3{
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}
.packages-bundlebox-head h3 span{
    color: #fff;
    font-size: 28px;
    display: block;
}
.packages-bundlebox-head p{
    color: #fdfdfd;
    min-height: 100px;
    max-height: 100px;
    overflow-y: auto;
}
.packages-bundlebox-head h5{
    background: #4d4d45;
    padding: 10px;
    text-align: center;
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    color: #d39b0a;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 10px;
}
.packages-bundlebox-head h5 b{
    color: #fff;
    font-size: 50px;
}
.packages-bundlebox-head h5 span{
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0px 0 0 15px;
}
.packages-bundlebox-head h5 span strong{
    text-decoration: line-through;
    font-weight: 300;
}
.packages-bundle-box ul.packages-bundle-list{
    list-style: disc;
    padding: 0 10px 0 30px;
    min-height: 350px;
    max-height: 350px;
    overflow-y: scroll;
    margin: 0 0 20px;
}
.packages-bundle-box ul.packages-bundle-list::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.packages-bundle-box ul.packages-bundle-list::-webkit-scrollbar{
    width: 10px;
    background: transparent;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.packages-bundle-box ul.packages-bundle-list::-webkit-scrollbar-thumb{
    background-color: #fff;
    border-radius: 10px;
}
ul.packages-bundle-list li{
    color: #212529;
    font-size: 14px;
    line-height: 20px;
    border-bottom: none;
    margin: 5px 0px 5px -20px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
}
ul.packages-bundle-list li::marker{
    color: #fff;
    font-size: 20px;
    transition: all .3s ease-in-out;
}
.packages-bundle-wrap .packages-bundle-box:hover ul.packages-bundle-list li::marker{
    color: #ac7e08;
}
ul.packages-bundle-list li.text-p{
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    border-bottom: none;
    list-style: disc;
    margin: 5px 0px 5px -20px;
    padding: 0;
}
.packages-bundle-box .packages-bundle-buttons{}
.packages-bundle-buttons ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 20px;
}
.packages-bundle-buttons ul li{
    margin: 0 10px 0;
}
.packages-bundle-buttons ul li button{
   background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    width: 130px;
    height: 40px;
    line-height: 18px;
    border-radius: 5px 5px;
    padding: 10px 10px;
    text-transform: uppercase;
    text-shadow: 0 10px 10px #d39b0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.packages-bundle-buttons ul li button:hover{
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
    transform: scale(1.1);
}
.packages-bundle-buttons a.call-btn{
    background: #ac7e08;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    line-height: 20px;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 20px;
    text-transform: uppercase;
    text-shadow: 0 10px 10px #d39b0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.packages-bundle-buttons a.call-btn:hover{
    transform: scale(1.1);
}
/* Packages Bundle Section Css End Here */

/**************************************************************************
 ------------------- Packages Main Page Css End Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------------- About Main Page Css Start Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* About Info Section Css Start Here */
section.about-info-wrap{
    background: #4d4d45;
    padding: 30px 0;
}
.about-info-wrap .about-info-head{
    padding: 50px 20px;
    border: 5px double #ac7e08;
    text-align: center;
}
.about-info-head h2{
    background: #ac7e08;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.about-info-wrap .about-info-content{}
.about-info-content p{
    color: #fff;
}
/* About Info Section Css End Here */

/**************************************************************************
 ---------------------- About Main Page Css End Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------------- Contact Main Page Css Start Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Css Start Here */
section.contactus-form-wrap{
    background: #212529;
    padding: 100px 0;
    position: relative;
}
.contactus-form-wrap .contctus-info-left{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);
    width: 100%;
    height: 100%;
}
.contctus-info-left .contactus-info-head{
    width: 65%;
    padding: 0px 0 15px;
    margin: 0px 75px 25px auto;
    border-bottom: 2px solid #fff;
}
.contactus-info-head h2{
    background-color: #1a1a1a;
    padding: 20px 10px;
    color: #fff;
    font-weight: 700;
    width: 80%;
    position: relative;
    margin: 0 0 0px;
    top: -50px;
}
.contactus-info-head p{
    color: #fff;
    margin: 0 0 10px;
}
.contctus-info-left ul.contactus-info-list{
    width: 65%;
    margin: 0 75px 30px auto;
}
ul.contactus-info-list li{
    margin: 0 0 10px;
}
ul.contactus-info-list li span{
    color: #000;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 1px;
    font-weight: 700;
    display: block;
}
ul.contactus-info-list li a{
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all .3s ease-in-out;
}
ul.contactus-info-list li a:hover{
    color: #000;
}
ul.contactus-info-list li p{
    color: #fff;
    width: 75%;
}
ul.contactus-info-list li p span{
    color: #000;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 1px;
    font-weight: 700;
    display: block;
}
.contactus-form-wrap .contactus-form-inner{
    width: 75%;
    margin: -50px 50px 0 0;
}
.contactus-form-inner .contactus-form-head{
    margin: 0 0 30px;
}
.contactus-form-head h2{
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
}
.contactus-form-head p{
    color: #fff;
    margin: 0 0 10px;
}
.contactus-form-inner form{
    width: 75%;
}
.contactus-form-inner form .form-group{
    margin: 0 0 20px;
}
.contactus-form-inner form .form-group input{
    background: #fff;
    border: 1px solid #8e8e8e;
    padding: 10px 20px;
    border-radius: 0;
    width: 100%;
    height: 50px;
    line-height: 30px;
    color: #121212;
    font-size: 16px;
}
.contactus-form-inner form .form-group input::placeholder{
    color: #8e8e8e;
    font-size: 16px;
}
.contactus-form-inner form .form-group textarea{
    background: #fff;
    border: 1px solid #8e8e8e;
    padding: 10px 20px;
    border-radius: 0;
    width: 100%;
    height: 150px;
    resize: none;
    color: #121212;
    font-size: 16px;
}
.contactus-form-inner form .form-group textarea::placeholder{
    color: #8e8e8e;
    font-size: 16px;
}
.contactus-form-inner form .form-group button.submit-btn{
   background: linear-gradient(80deg, #d39b0a, #ac7e08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    width: 150px;
    height: 50px;
    line-height: 28px;
    border: none;
    border-radius: 5px 5px;
    padding: 10px 10px;
    margin: 0 0px 0 0;
    outline: none;
    text-transform: uppercase;
    text-shadow: 0 10px 10px #d39b0a;
    transition: all .3s ease-in-out;
}
.contactus-form-inner form .form-group button.submit-btn:hover{
    background: #f8f9fa;
    color: #d39b0a;
    transform: scale(1.1);
}
/* Contact Us Form Section Css End Here */

/**************************************************************************
 ---------------------- Contact Main Page Css End Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Css Start Here */
footer.footer-main-sec{
    background: #4d4d45;
}
.footer-main-sec .footer-top{
    padding: 50px 0 20px 0;
}
.footer-top .footer-logo-area img{
    width: 100%;
}
.footer-links-area h4{
    color: #ac7e08;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}
.footer-links-area ul.footer-nav-links{
    display: flex;
    min-height: 250px;
    max-height: 250px;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 20px 0 0;
}
.footer-links-area ul.footer-nav-links li{
    margin: 0 10px 15px;
}
.footer-links-area ul.footer-nav-links a{
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    display: block;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.footer-links-area ul.footer-nav-links a:hover{
    color: #ac7e08;
}
.footer-top .footer-disclaimer-area{}
.footer-top .footer-disclaimer-area h4{
    color: #ac7e08;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}
.footer-top .footer-disclaimer-area p{
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 10px;
}
.footer-top .footer-disclaimer-area ul.social-list{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.footer-disclaimer-area ul.social-list li{
    margin: 0 10px 0 0;
}
.footer-disclaimer-area ul.social-list li a{
    display: block;
    font-size: 32px;
    color: #d39b0a;
    transition: all .3s ease-in;
}
.footer-disclaimer-area ul.social-list li a:hover{
    color: #fff;
    transform: scale(1.1);
}
.footer-top .footer-info-area{
    margin: 20px 0 0;
}
.footer-info-area ul.footer-info{
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
}
ul.footer-info li{
    background: linear-gradient(90deg,rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);;
    padding: 15px 15px;
    width: 100%;
    margin: 0 10px 0;
    border-radius: 10px;
    text-align: center;
}
ul.footer-info li h4{
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
}
ul.footer-info li a{
    color: #fdfdfd;
    font-size: 16px;
    display: inline-block;
    transition: all .3s ease-in-out;
    animation: scale1 .3s alternate infinite ease-in;
}
ul.footer-info li a:hover{
    color: #000;
}
ul.footer-info li p{
    color: #fdfdfd;
    font-size: 16px;
    margin: 0;
}
ul.footer-info li img{
    filter: invert(1);
}
.footer-main-sec .footer-bottom{
    background: #212529;
    padding: 20px 0;
}
.footer-copyright p{
    color: #fff;
    margin: 0;
}
.footer-bottom-links ul{
    display: flex;
    align-items: center;
    justify-content: end;
}
.footer-bottom-links ul li{
    margin: 0 20px 0 0;
}
.footer-bottom-links ul li a{
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    display: block;
    transition: all .3s ease-in-out;
}
.footer-bottom-links ul li a:hover{
    color: #ac7e08;
}
/* Footer Css End Here */

@media only screen and (min-width: 1400px) and (max-width: 1599px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 58px;
    line-height: 64px;
}
h2{
    font-size: 52px;
    line-height: 60px;
}
h3{
    font-size: 42px;
    line-height: 48px;
}
/*Heading & Para Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Service Info Section Responsive Css Start Here*/
.service-info-wrap .service-info-inner{
    margin: 0 0 20px;
}
.service-info-bg .service-info-content{
    margin: 0 0 20px;
}
.service-info-bg.service-info-bg2 .service-info-content{
    margin: 0 auto 20px;
}
.service-info-content::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar{
    width: 10px;
    background: transparent;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar-thumb{
    background-color: #d39b0a;
    border-radius: 10px;
}
/*Service Info Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 52px;
    line-height: 60px;
}
h2{
    font-size: 42px;
    line-height: 50px;
}
h3{
    font-size: 36px;
    line-height: 44px;
}
/*Heading & Para Style Responsive Css*/

/*Buttons Style Responsive Css*/
.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn{
    padding: 10px 10px;
    margin: 0 10px 0 0;
}
/*Buttons Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/*Header Responsive Css Start Here*/
header nav.navbar .navbar-brand .logo{
    width: 210px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    margin: 0 10px 0;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    font-size: 13px;
    padding: 10px 5px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 16px;
    margin: 0 5px;
}
header nav.navbar .navbar-buttons button.popup-btn{
    width: 200px;
    padding: 10px 5px;
}
/*Header Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Service Info Section Responsive Css Start Here*/
.service-info-wrap .service-info-inner{
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 30px;
}
.service-info-inner .service-info-bg{
    height: inherit;
}
.service-info-bg .service-info-content{
    padding: 0 20px;
    margin: 0 0 20px;
    width: 90%;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.service-info-bg.service-info-bg2 .service-info-content{
    margin: 0 auto 20px;
}
.service-info-content::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar{
    width: 10px;
    background: transparent;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar-thumb{
    background-color: #d39b0a;
    border-radius: 10px;
}
/*Service Info Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
.service-banner-wrap .service-banner-bg{
    height: 100vh;
}
.service-banner-wrap .service-banner-content{
    height: 100vh;
}
.service-banner-content h1{
    font-size: 42px;
    line-height: 50px;
}
.service-banner-content h1 span{
    font-size: 28px;
    line-height: 34px;
}
.service-banner-content h4{
    font-size: 36px;
    line-height: 44px;
    margin: 0;
}
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Review Main Page Responsive Css Start Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Reviews Social Media Section Responsive Css Start Here*/
.reviews-socialmedia-items .reviews-tabscontent-box{
    padding: 20px 20px;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb{
    margin: 0 10px 0 0;
}
.reviews-socialmedia-items .reviews-tabscontent-para p{
    min-height: 175px;
    max-height: 175px;
}
/*Reviews Social Media Section Responsive Css End Here*/

/**************************************************************************
 --------------- Review Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------- Packages Main Page Responsive Css Start Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Responsive Css Start Here */
.packages-bundle-box .package-badge img{
    width: 75px;
    height: 75px;
}
.packages-bundlebox-head h3{    
    font-size: 30px;
    line-height: 36px;
}
.packages-bundle-buttons ul{
    margin: 0 0 20px;
}
.packages-bundle-buttons ul li{
    margin: 0 5px 0;
}
.packages-bundle-buttons a.call-btn{
    margin: 0 auto;
}
/* Packages Bundle Section Responsive Css End Here */

/**************************************************************************
 ------------- Packages Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- Contact Main Page Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Responsive Css Start Here */
.contctus-info-left .contactus-info-head{
    width: 75%;
    margin: 0 auto 50px;
}
.contactus-info-head h2{
    width: 70%;
}
.contctus-info-left ul.contactus-info-list{
    width: 75%;
    margin: 0 auto 50px;
}
/* Contact Us Form Section Responsive Css End Here */

/**************************************************************************
 ----------------- Contact Main Page Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Responsive Css Start Here */
.footer-links-area ul.footer-nav-links{
    min-height: 300px;
    max-height: 300px;
}
/* Footer Responsive Css End Here */
}

@media only screen and (min-width: 992px) and (max-width: 1199px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 46px;
    line-height: 54px;
}
h2{
    font-size: 42px;
    line-height: 50px;
}
h3{
    font-size: 36px;
    line-height: 44px;
}
/*Heading & Para Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/*Header Responsive Css Start Here*/
header nav.navbar{
    padding: 10px 20px;
}
header nav.navbar .navbar-brand .logo{
    width: 175px;
}
header .navbar-expand-lg .navbar-collapse{
    margin: 0 10px;
}
header .navbar-collapse .navbar-top-nav{
    margin: 0;
}
header .navbar-top-nav a.link-anchor{
    font-size: 14px;
    line-height: 20px;
    margin: 0px 10px;
}
header .navbar-top-nav .top-nav-contact{
    margin: 0 10px;
}
.navbar-top-nav .top-nav-contact .top-contact-number span{
    font-size: 16px;
}
header .navbar-top-nav .top-nav-email{
    margin: 0 10px;
}
header .navbar-main-nav ul.navbar-nav{
    margin: 0 5px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    margin: 0 5px 0;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    font-size: 12px;
    padding: 10px 5px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 16px;
    margin: 0 5px;
}
header nav.navbar .navbar-buttons button.popup-btn{
    width: 200px;
    padding: 10px 5px;
    margin: 0;
}
/*Header Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Responsive Css Start Here*/
.banner-main-sec .banner-absol-cont{ 
    left: 0;
}
.banner-main-sec .banner-inner-content{
    width: 90%;
    margin: 0 20px 20px;
}
.banner-inner-content p{
    font-size: 14px;
    line-height: 22px;
}
.banner-inner-content .website-main-buttons button.popup-btn{
    font-size: 14px;
    width: 200px;
}
/*Banner Editing Form Css Start*/
.banner-editing-form{
    width: 90%;
}
/*Banner Editing Form Css End*/
/*Banner Main Section Responsive Css End Here*/

/*Service Info Section Responsive Css Start Here*/
.service-info-wrap .service-info-inner{
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 30px;
}
.service-info-inner .service-info-bg{
    height: inherit;
}
.service-info-bg .service-info-content{
    padding: 0 20px;
    margin: 0 0 20px;
    width: 90%;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.service-info-bg.service-info-bg2 .service-info-content{
    margin: 0 auto 20px;
}
.service-info-content::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar{
    width: 10px;
    background: transparent;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
}
.service-info-content::-webkit-scrollbar-thumb{
    background-color: #d39b0a;
    border-radius: 10px;
}
/*Service Info Section Responsive Css End Here*/

/*CTA Banner Section Responsive Css Start Here*/
.cta-banner-wrap .cta-banner-img img{
    bottom: -170px;
    width: 45%;
}
.cta-banner-wrap.book-cta-child .cta-banner-img img{
    width: 60%;
}
/*CTA Banner Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
.service-banner-wrap .service-banner-bg{
    height: 100vh;
}
.service-banner-wrap .service-banner-content{
    height: 100vh;
}
.service-banner-content h1{
    font-size: 36px;
    line-height: 44px;
}
.service-banner-content h1 span{
    font-size: 24px;
    line-height: 30px;
}
.service-banner-content h4{
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Review Main Page Responsive Css Start Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Reviews Social Media Section Responsive Css Start Here*/
.reviews-socialmedia-items .reviews-tabscontent-box{
    padding: 20px 20px;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb{
    margin: 0 10px 0 0;
}
.reviews-socialmedia-items .reviews-tabscontent-para p{
    min-height: 175px;
    max-height: 175px;
}
/*Reviews Social Media Section Responsive Css End Here*/

/**************************************************************************
 --------------- Review Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------- Packages Main Page Responsive Css Start Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Responsive Css Start Here */
.packages-bundle-inner .packages-bundle-box{
    padding: 20px 10px;
}
.packages-bundle-box .package-badge img{
    width: 75px;
    height: 75px;
}
.packages-bundlebox-head h3{    
    font-size: 24px;
    line-height: 30px;
}
.packages-bundlebox-head h5{
    font-size: 30px;
    line-height: 36px;
}
.packages-bundlebox-head h5 span{
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0 0 10px;
}
.packages-bundle-buttons ul{
    margin: 0 0 20px;
}
.packages-bundle-buttons ul li{
    margin: 0 5px 0;
}
.packages-bundle-buttons a.call-btn{
    font-size: 14px;
    margin: 0 auto;
}
/* Packages Bundle Section Responsive Css End Here */

/**************************************************************************
 ------------- Packages Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- Contact Main Page Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Responsive Css Start Here */
.contctus-info-left .contactus-info-head{
    width: 75%;
    margin: 0 auto 50px;
}
.contactus-info-head h2{
    width: 70%;
}
.contctus-info-left ul.contactus-info-list{
    width: 75%;
    margin: 0 auto 50px;
}
.contactus-form-inner form{
    width: 100%;
}
/* Contact Us Form Section Responsive Css End Here */

/**************************************************************************
 ----------------- Contact Main Page Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Responsive Css Start Here */
.footer-links-area ul.footer-nav-links{
    min-height: 300px;
    max-height: 300px;
}
/* Footer Responsive Css End Here */
}

@media only screen and (min-width: 768px) and (max-width: 991px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 42px;
    line-height: 50px;
}
h2{
    font-size: 38px;
    line-height: 46px;
}
h3{
    font-size: 36px;
    line-height: 44px;
}
h4{
    font-size: 22px;
    line-height: 28px;
}
/*Heading & Para Style Responsive Css*/

/*Buttons Style Responsive Css*/
.website-main-buttons{
    margin: 20px 0 0;
}
/*Buttons Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/*Header Responsive Css Start Here*/
header nav.navbar{
    padding: 10px 20px;
    align-items: center;
}
header nav.navbar .navbar-brand .logo{
    width: 175px;
}
header .navbar-toggler{
    display: block;
}
header .navbar-expand-lg .navbar-collapse{
    margin: 10px 0 0;
    background: #121212;
    width: 100%;
}
header .navbar-collapse .navbar-top-nav{
    display: none;
}
header .navbar-collapse .navbar-main-nav{
    flex-direction: column;
}
header .navbar-main-nav ul.navbar-nav{
    margin: 0;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    border-bottom: 1px solid #fff;
}
header .navbar-main-nav ul.navbar-nav li.nav-item a.nav-link{
    padding: 10px 0px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item.dropdown{
    position: relative;
}
header .navbar-nav .nav-item ul.dropdown-menu{
    position: unset;
    top: 0;
    width: 100%;
    box-shadow: none;
    padding: unset;
    opacity: 0;
    visibility: unset;
    transform: inherit;
    display: none;
    min-height: 300px;
    max-height: 300px;
    overflow-y: auto;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
}
header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu{
    display: block;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    display: none;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show{
    display: block;
}
header .navbar-nav .nav-item ul.dropdown-menu li{
    border-right: none;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    font-size: 14px;
    padding: 10px 6px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 16px;
    margin: 0 5px;
}
header.sticky nav.navbar .navbar-buttons{
    padding: 10px 0;
}
header nav.navbar .navbar-buttons button.popup-btn{
    margin: 0;
}

/* Custom Menu Area Responsive Css Start */
header .navbar-main-nav .custom-menu-area{
    display: none;
}
/* Custom Menu Area Responsive Css End */

/*Header Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Responsive Css Start Here*/

.banner-main-sec .banner-absol-cont{ 
    left: 0;
}
.banner-main-sec .banner-inner-content{
    width: 90%;
    margin: 0 20px 20px;
}
.banner-inner-content p{
    font-size: 14px;
    line-height: 22px;
}
.banner-inner-content .website-main-buttons button.popup-btn{
    font-size: 14px;
    width: 200px;
}
/*Banner Editing Form Css Start*/
.banner-editing-form{
    width: 90%;
}
/*Banner Editing Form Css End*/
/*Banner Main Section Responsive Css End Here*/

/*Banner Down Brands Section Responsive Css Start Here*/
.brands-item-img img{
    width: 120px;
}
/*Banner Down Brands Section Responsive Css End Here*/

/*Main Info Section Responsive Css Start Here*/
section.main-info-wrap{
    padding: 30px 0 30px;
}
.main-info-content span{
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px
}
.main-info-content ul{
    justify-content: left;
}
/*Main Info Section Responsive Css End Here*/

/*Counter Satisfy Section Responsive Css Start Here*/
section.counter-satisfy-wrap{
    padding: 30px 0 30px;
}
/*Counter Satisfy Section Responsive Css End Here*/

/*Service Info Section Responsive Css Start Here*/
section.service-info-wrap{
    padding: 30px 0;
}
.service-info-wrap .service-info-head{
    margin: 0 0 30px;
}
.service-info-wrap .service-info-inner{
    min-height: inherit;
    max-height: inherit;
}
.service-info-inner .service-info-bg{
    height: inherit;
}
.service-info-bg .service-info-content{
    width: 100%;
}
.service-info-inner .service-info-img{
    margin: 0 0 20px;
}
.service-info-inner .order-one{
    order: 1;
}
.service-info-inner .order-two{
    order: 2;
}
/*Service Info Section Responsive Css End Here*/

/*Testimonials Reviews Section Responsive Css Start Here*/
section.testi-reviews-wrap{
    padding: 30px 0;
}
.testi-reviews-inner .testi-reviews-head{
    margin: 0 0 30px;
}
/*Testimonials Reviews Section Responsive Css End Here*/

/*CTA Banner Section Responsive Css Start Here*/
.cta-banner-wrap .cta-banner-img img{
    bottom: inherit;
    width: 100%;
    position: inherit;
}
/*CTA Banner Section Responsive Css End Here*/

/*Footer Contact Form Section Responsive Css Start Here*/
section.footer-contact-wrap{
    padding: 30px 0;
}
.footer-contact-wrap .footer-contact-form-head{
    margin: 0 0 30px;
}
/*Footer Contact Form Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
.service-banner-wrap .service-banner-bg{
    display: none;
}
.service-banner-content h1{
    font-size: 36px;
    line-height: 44px;
}
.service-banner-content h1 span{
    font-size: 24px;
    line-height: 30px;
}
.service-banner-content h4{
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ----------- Service Detail Page Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Detail Info Section Responsive Css Start Here */
section.service-detailinfo-wrap{
    padding: 30px 0;
}
.service-detailinfo-inner .service-detailinfo-content{
    text-align: center;
}
.service-detailinfo-content .website-main-buttons button.popup-btn{
    margin: 20px auto;
}
/* Service Detail Info Section Responsive Css End Here */

/* Service CTA Section Responsive Css Start Here */
section.service-cta-wrap{
    padding: 30px 0;
}
.service-cta-wrap .service-cta-content{
    width: 100%;
}
/* Service CTA Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Detail Page Responsive Css End Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Review Main Page Responsive Css Start Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Review Banner Section Responsive Css Start Here*/
section.review-banner-sec{
    padding: 125px 0 75px;
}
.review-banner-sec .review-banner-content{
    text-align:center;
}
.review-banner-content .website-main-buttons{
    justify-content: center;
}
.review-banner-img img{
    width: 60%;
}
/*Review Banner Section Responsive Css End Here*/

/**************************************************************************
 --------------- Review Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------- Packages Main Page Responsive Css Start Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Responsive Css Start Here */
section.packages-bundle-wrap{
    padding: 30px 0;
}
.packages-bundle-inner .packages-bundle-box{
    border-bottom: 2px solid #ac7e08;
}
.packages-bundle-box .package-badge{
    top: -15px;
    right: -15px;
}
.packages-bundle-box .package-badge img{
    width: 75px;
    height: 75px;
}
.packages-bundlebox-head h3{    
    font-size: 24px;
    line-height: 30px;
}
.packages-bundlebox-head h5{
    font-size: 30px;
    line-height: 36px;
}
.packages-bundlebox-head h5 span{
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0 0 10px;
}
ul.packages-bundle-list li.text-p{
    font-size: 14px;
    line-height: 20px;
}
.packages-bundle-buttons ul{
    margin: 0 0 20px;
}
.packages-bundle-buttons ul li{
    margin: 0 5px 0;
}
.packages-bundle-buttons a.call-btn{
    font-size: 14px;
    width: 75%;
    margin: 0 auto;
}
/* Packages Bundle Section Responsive Css End Here */

/**************************************************************************
 ------------- Packages Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- Contact Main Page Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Responsive Css Start Here */
section.contactus-form-wrap{
    padding: 50px 0 30px;
}
.contctus-info-left .contactus-info-head{
    margin: 0 auto 50px;
    text-align: center;
}
.contactus-info-head h2{
    margin: 0 auto 30px;
    top: -30px;
    width: 60%;
}
.contctus-info-left ul.contactus-info-list{
    margin: 0 auto 50px;
    text-align: center;
}
ul.contactus-info-list li p{
    width: 100%;
    margin: 0 auto;
}
.contactus-form-wrap .contactus-form-inner{
    width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}
.contactus-form-inner form{
    width: 100%;
}
/* Contact Us Form Section Responsive Css End Here */

/**************************************************************************
 ----------------- Contact Main Page Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Responsive Css Start Here */
.footer-links-area ul.footer-nav-links{
    min-height: 450px;
    max-height: 450px;
}
/* Footer Responsive Css End Here */
}

@media only screen and (min-width: 576px) and (max-width: 767px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 36px;
    line-height: 44px;
}
h2{
    font-size: 32px;
    line-height: 40px;
}
h3{
    font-size: 32px;
    line-height: 40px;
}
h4{
    font-size: 20px;
    line-height: 26px;
}
p{
    font-size: 14px;
    line-height: 20px;
}
li{
    font-size: 14px;
    line-height: 20px;
}
/*Heading & Para Style Responsive Css*/

/*Buttons Style Responsive Css*/
.website-main-buttons{
    margin: 20px 0 0;
    justify-content: center;
}
.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn{
    padding: 10px 5px;
    margin: 0;
}
/*Buttons Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/*Header Responsive Css Start Here*/
header nav.navbar{
    padding: 10px 10px;
    align-items: center;
}
header nav.navbar .navbar-brand .logo{
    width: 175px;
}
header .navbar-toggler{
    display: block;
}
header .navbar-expand-lg .navbar-collapse{
    margin: 10px 0 0;
    background: #121212;
    width: 100%;
}
header .navbar-collapse .navbar-top-nav{
    display: none;
}
header .navbar-collapse .navbar-main-nav{
    flex-direction: column;
}
header .navbar-main-nav ul.navbar-nav{
    margin: 0;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    border-bottom: 1px solid #fff;
}
header .navbar-main-nav ul.navbar-nav li.nav-item a.nav-link{
    padding: 10px 0px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item.dropdown{
    position: relative;
}
header .navbar-nav .nav-item ul.dropdown-menu{
    position: unset;
    top: 0;
    width: 100%;
    box-shadow: none;
    padding: unset;
    opacity: 0;
    visibility: unset;
    transform: inherit;
    display: none;
    min-height: 300px;
    max-height: 300px;
    overflow-y: auto;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
}
header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu{
    display: block;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    display: none;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show{
    display: block;
}
header .navbar-nav .nav-item ul.dropdown-menu li{
    border-right: none;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    font-size: 13px;
    padding: 10px 6px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 16px;
    margin: 0 5px;
}
header.sticky nav.navbar .navbar-buttons{
    padding: 10px 0;
}
header nav.navbar .navbar-buttons button.popup-btn{
    margin: 0;
}

/* Custom Menu Area Responsive Css Start */
header .navbar-main-nav .custom-menu-area{
    display: none;
}
/* Custom Menu Area Responsive Css End */

/*Header Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Responsive Css Start Here*/
.banner-main-sec .bg-video{
    height: 140vh;
}
.banner-main-sec .video-overlay{
    height: 140vh;
}
.banner-main-sec .banner-absol-cont{
    top: 12%;  
    left: 0;
}
.banner-main-sec .banner-inner-content{
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
}
.banner-inner-content h1::after{
    margin: 20px auto;
}
.banner-inner-content p{
    font-size: 14px;
    line-height: 22px;
}
.banner-inner-content .website-main-buttons button.popup-btn{
    font-size: 14px;
    width: 200px;
}
/*Banner Editing Form Css Start*/
.banner-editing-form{
    width: 90%;
}
/*Banner Editing Form Css End*/
/*Banner Main Section Responsive Css End Here*/

/*Banner Down Brands Section Responsive Css Start Here*/
.bandown-brands-item .slick-prev{
    right: inherit;
    left: -25px;
}
.bandown-brands-item .slick-next{
    right: -25px;
}
.brands-item-img img{
    width: 120px;
}
/*Banner Down Brands Section Responsive Css End Here*/

/*Main Info Section Responsive Css Start Here*/
section.main-info-wrap{
    padding: 30px 0 30px;
}
.main-info-inner .main-info-content{
    text-align: center;
    margin: 0 0 20px;
}
.main-info-content span{
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px
}
.main-info-content ul{
    text-align: left;
}
.main-info-content ul li{
    margin: 0 0 10px;
}
/*Main Info Section Responsive Css End Here*/

/*Counter Satisfy Section Responsive Css Start Here*/
.counter-satisfy-wrap .counter-satisfy-inner{
    justify-content: center;
    flex-wrap: wrap;
}
.counter-satisfy-inner .counter-satisfy-box{
    margin: 0 5px 10px;
    width: 45%;
}
/*Counter Satisfy Section Responsive Css End Here*/

/*Service Info Section Responsive Css Start Here*/
section.service-info-wrap{
    padding: 30px 0;
}
.service-info-wrap .service-info-head{
    margin: 0 0 30px;
}   
.service-info-bg .service-info-content{
    text-align: center;
    padding: 0 20px;
    width: 100%;
}
.service-info-inner .service-info-img{
    margin: 0 0 20px;
}
.service-info-inner .order-one{
    order: 1;
}
.service-info-inner .order-two{
    order: 2;
}
/*Service Info Section Responsive Css End Here*/

/*Testimonials Reviews Section Responsive Css Start Here*/
section.testi-reviews-wrap{
    padding: 30px 0;
}
.testi-reviews-inner .testi-reviews-head{
    margin: 0 0 30px;
}
/*Testimonials Reviews Section Responsive Css End Here*/

/*CTA Banner Section Responsive Css Start Here*/
.cta-banner-wrap .cta-banner-content{
    text-align:center;
}
.cta-banner-content .website-main-buttons{
    flex-wrap: wrap;
    gap: 10px;
}
.cta-banner-wrap .cta-banner-img img{
    position: inherit;
    bottom: 0;
    width: 60%;
    margin: 0 auto 20px;
}
/*CTA Banner Section Responsive Css End Here*/

/*FAQS Section Responsive Css Start Here*/
section.faqs-sec-wrap{
    padding: 30px 0;
}
.faqs-sec-wrap .faqs-sec-head{
    width: 100%;
    margin: 0 auto 30px;
}
.faqs-sec-item .accordion-item .accordion-header button.accordion-button{
    font-size: 20px;
    line-height: 26px;
}
.faqs-sec-item .accordion-item .accordion-collapse .accordion-body{
    font-size: 16px;
    line-height: 22px;
}
/*FAQS Section Responsive Css End Here*/

/*Footer Contact Form Section Responsive Css Start Here*/
section.footer-contact-wrap{
    padding: 30px 0;
}
.footer-contact-wrap .footer-contact-form-head{
    margin: 0 0 30px;
}
.footer-contact-form form{
    flex-direction: column;
}
.footer-contact-form .form-group{
    margin: 0 auto 10px;
    width: 75%;
    text-align: center;
}
.footer-contact-form .form-group button.submit-btn{
    margin: 0 auto;
}
/*Footer Contact Form Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
.service-banner-wrap .service-banner-content{
    text-align: center;
}
.service-banner-content h1{
    font-size: 36px;
    line-height: 44px;
}
.service-banner-content h1 span{
    font-size: 24px;
    line-height: 30px;
}
.service-banner-content h4{
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}
.service-banner-content h4::after{
    margin: 20px auto;
}
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ----------- Service Detail Page Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Detail Banner Section Responsive Css Start Here */
.serv-detailbanner-wrap .serv-detailbanner-content{
    text-align: center;
}
.serv-detailbanner-content h1{
    font-size: 42px;
    line-height: 50px;
}
.serv-detailbanner-content h1::after{
    margin: 15px auto;
}
/* Service Detail Banner Section Responsive Css End Here */

/* Service Detail Info Section Responsive Css Start Here */
section.service-detailinfo-wrap{
    padding: 30px 0;
}
.service-detailinfo-inner .service-detailinfo-content{
    text-align: center;
}
/* Service Detail Info Section Responsive Css End Here */

/* Service CTA Section Responsive Css Start Here */
section.service-cta-wrap{
    padding: 30px 0;
}
.service-cta-wrap .service-cta-content{
    width: 100%;
    text-align: center;
}
.service-cta-content h2{
    font-size: 26px;
    line-height: 32px;
}
/* Service CTA Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Detail Page Responsive Css End Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------- Packages Main Page Responsive Css Start Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Responsive Css Start Here */
section.packages-bundle-wrap{
    padding: 30px 0;
}
.packages-bundle-inner .packages-bundle-box{
    border-bottom: 2px solid #ac7e08;
}
.packages-bundle-box .package-badge{
    top: -15px;
    right: -15px;
}
.packages-bundle-box .package-badge img{
    width: 75px;
    height: 75px;
}
.packages-bundlebox-head h3{    
    font-size: 24px;
    line-height: 30px;
}
.packages-bundlebox-head h5{
    font-size: 30px;
    line-height: 36px;
}
.packages-bundlebox-head h5 span{
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0 0 10px;
}
ul.packages-bundle-list li.text-p{
    font-size: 14px;
    line-height: 20px;
}
.packages-bundle-buttons ul{
    margin: 0 0 20px;
}
.packages-bundle-buttons ul li{
    margin: 0 5px 0;
}
.packages-bundle-buttons a.call-btn{
    font-size: 14px;
    margin: 0 10px 0;
}
/* Packages Bundle Section Responsive Css End Here */

/**************************************************************************
 ------------- Packages Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- About Main Page Responsive Css Start Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

/* About Info Section Responsive Css Start Here */
.about-info-wrap .about-info-head{
    width: 75%;
    margin: 0 auto 20px;
}
.about-info-wrap .about-info-content{
    text-align: center;
}
/* About Info Section Responsive Css End Here */

/**************************************************************************
 ----------------- About Main Page Responsive Css End Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- Contact Main Page Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Responsive Css Start Here */
section.contactus-form-wrap{
    padding: 50px 0 30px;
}
.contctus-info-left .contactus-info-head{
    width: 60%;
    margin: 0 auto 50px;
    text-align: center;
}
.contactus-info-head h2{
    margin: 0 auto 30px;
    top: -30px;
}
.contctus-info-left ul.contactus-info-list{
    width: 60%;
    margin: 0 auto 50px;
    text-align: center;
}
ul.contactus-info-list li a{
    font-size: 14px;
    line-height: 20px;
}
ul.contactus-info-list li p{
    width: 100%;
    margin: 0 auto;
}
.contactus-form-wrap .contactus-form-inner{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}
.contactus-form-inner form{
    width: 100%;
}
/* Contact Us Form Section Responsive Css End Here */

/**************************************************************************
 ----------------- Contact Main Page Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Responsive Css Start Here */
.footer-top .footer-links-area{
    text-align: center;
}
.footer-links-area ul.footer-nav-links{
    flex-wrap: inherit;
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 20px;
}
.footer-top .footer-disclaimer-area{
    text-align: center;
}
.footer-top .footer-disclaimer-area ul.social-list{
    justify-content: center;
}
.footer-info-area h3{
    font-size: 22px;
    line-height: 28px;
}
.footer-info-area ul.footer-info{
    flex-direction: column;
    justify-content: center;
}
ul.footer-info li{
    margin: 0 0 10px;
}
ul.footer-info li h4{
    font-size: 20px;
    line-height: 26px;
}
ul.footer-info li a{
    font-size: 14px;
}
ul.footer-info li p{
    font-size: 14px;
}
.footer-bottom .footer-copyright{
    text-align: center;
    margin: 0 0 10px;
}
.footer-bottom-links ul{
    justify-content: center;
}
.footer-bottom-links ul li{
    margin: 0 10px 0 0;
}
/* Footer Responsive Css End Here */
}

@media only screen and (min-width: 300px) and (max-width: 575px){

/*Website Custom Style Responsive Css For Single Items Start Here*/

/*Heading & Para Style Responsive Css*/
h1{
    font-size: 30px;
    line-height: 38px;
}
h2{
    font-size: 32px;
    line-height: 40px;
}
h3{
    font-size: 32px;
    line-height: 40px;
}
h4{
    font-size: 20px;
    line-height: 26px;
}
p{
    font-size: 14px;
    line-height: 20px;
}
li{
    font-size: 14px;
    line-height: 20px;
}
/*Heading & Para Style Responsive Css*/

/*Buttons Style Responsive Css*/
.website-main-buttons{
    margin: 20px 0 0;
    justify-content: center;
}
.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn{
    padding: 10px 5px;
    margin: 0 auto 0;
}
/*Buttons Style Responsive Css*/

/*Website Custom Style Responsive Css For Single Items End Here*/

/*Header Responsive Css Start Here*/
header nav.navbar{
    padding: 10px 10px;
    align-items: center;
}
header nav.navbar .navbar-brand .logo{
    width: 175px;
}
header .navbar-toggler{
    display: block;
}
header .navbar-expand-lg .navbar-collapse{
    margin: 10px 0 0;
    background: #121212;
    width: 100%;
}
header .navbar-collapse .navbar-top-nav{
    display: none;
}
header .navbar-collapse .navbar-main-nav{
    flex-direction: column;
}
header .navbar-main-nav ul.navbar-nav{
    margin: 0;
}
header .navbar-main-nav ul.navbar-nav li.nav-item{
    border-bottom: 1px solid #fff;
}
header .navbar-main-nav ul.navbar-nav li.nav-item a.nav-link{
    padding: 10px 0px;
}
header .navbar-main-nav ul.navbar-nav li.nav-item.dropdown{
    position: relative;
}
header .navbar-nav .nav-item ul.dropdown-menu{
    position: unset;
    top: 0;
    width: 100%;
    box-shadow: none;
    padding: unset;
    opacity: 0;
    visibility: unset;
    transform: inherit;
    display: none;
    min-height: 300px;
    max-height: 300px;
    overflow-y: auto;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
}
header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu{
    display: block;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu{
    display: none;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show{
    display: block;
}
header .navbar-nav .nav-item ul.dropdown-menu li{
    border-right: none;
}
header .navbar-nav .nav-item ul.dropdown-menu li a{
    font-size: 13px;
    padding: 10px 6px;
}
header .navbar-nav .nav-item ul.dropdown-menu li a i{
    font-size: 16px;
    margin: 0 5px;
}
header.sticky nav.navbar .navbar-buttons{
    padding: 10px 0;
}
header nav.navbar .navbar-buttons button.popup-btn{
    margin: 0;
}

/* Custom Menu Area Responsive Css Start */
header .navbar-main-nav .custom-menu-area{
    display: none;
}
/* Custom Menu Area Responsive Css End */

/*Header Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Responsive Css Start Here*/
.banner-main-sec .bg-video{
    height: 165vh;
}
.banner-main-sec .video-overlay{
    height: 165vh;
}
.banner-main-sec .banner-absol-cont{
    top: 12%;  
}
.banner-main-sec .banner-inner-content{
    margin: 0 0 20px;
    text-align: center;
}
.banner-inner-content h1::after{
    margin: 20px auto;
}
.banner-inner-content p{
    font-size: 14px;
    line-height: 22px;
}
.banner-inner-content .website-main-buttons button.popup-btn{
    font-size: 14px;
    width: 200px;
}
/*Banner Editing Form Css Start*/
.banner-editing-form{
    width: 90%;
}
/*Banner Editing Form Css End*/
/*Banner Main Section Responsive Css End Here*/

/*Banner Down Brands Section Responsive Css Start Here*/
.bandown-brands-item .slick-arrow{
    display: none;
}
.brands-item-img img{
    width: 100px;
}
/*Banner Down Brands Section Responsive Css End Here*/

/*Main Info Section Responsive Css Start Here*/
section.main-info-wrap{
    padding: 30px 0 30px;
}
.main-info-inner .main-info-content{
    text-align: center;
    margin: 0 0 20px;
}
.main-info-content span{
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px
}
.main-info-content ul{
    text-align: left;
}
.main-info-content ul li{
    margin: 0 0 10px;
}
/*Main Info Section Responsive Css End Here*/

/*Counter Satisfy Section Responsive Css Start Here*/
.counter-satisfy-wrap .counter-satisfy-inner{
    justify-content: center;
    flex-wrap: wrap;
}
.counter-satisfy-inner .counter-satisfy-box{
    margin: 0 5px 10px;
    padding: 20px 10px;
    width: 46%;
}
/*Counter Satisfy Section Responsive Css End Here*/

/*Service Info Section Responsive Css Start Here*/
section.service-info-wrap{
    padding: 30px 0;
}
.service-info-wrap .service-info-head{
    margin: 0 0 30px;
}
.service-info-bg .service-info-content{
    text-align: center;
    padding: 0 20px;
    width: 100%;
}
.service-info-inner .service-info-img{
    margin: 0 0 20px;
}
.service-info-inner .order-one{
    order: 1;
}
.service-info-inner .order-two{
    order: 2;
}
/*Service Info Section Responsive Css End Here*/

/*Testimonials Reviews Section Responsive Css Start Here*/
section.testi-reviews-wrap{
    padding: 30px 0;
}
.testi-reviews-wrap .testi-reviews-inner{
    padding: 40px 20px;
}
.testi-reviews-inner .testi-reviews-head{
    margin: 0 0 30px;
}
/*Testimonials Reviews Section Responsive Css End Here*/

/*CTA Banner Section Responsive Css Start Here*/
.cta-banner-wrap .cta-banner-content{
    text-align:center;
}
.cta-banner-content .website-main-buttons{
    flex-wrap: wrap;
    gap: 10px;
}
.cta-banner-wrap .cta-banner-img img{
    position: inherit;
    bottom: inherit;
    width: 75%;
    margin: 0 auto 20px;
}
/*CTA Banner Section Responsive Css End Here*/

/*FAQS Section Responsive Css Start Here*/
section.faqs-sec-wrap{
    padding: 30px 0;
}
.faqs-sec-wrap .faqs-sec-head{
    width: 100%;
    margin: 0 auto 30px;
}
.faqs-sec-item .accordion-item .accordion-header button.accordion-button{
    font-size: 20px;
    line-height: 26px;
}
.faqs-sec-item .accordion-item .accordion-collapse .accordion-body{
    font-size: 16px;
    line-height: 22px;
}
/*FAQS Section Responsive Css End Here*/

/*Footer Contact Form Section Responsive Css Start Here*/
section.footer-contact-wrap{
    padding: 30px 0;
}
.footer-contact-wrap .footer-contact-form-head{
    margin: 0 0 30px;
}
.footer-contact-form form{
    flex-direction: column;
}
.footer-contact-form .form-group{
    margin: 0 auto 10px;
    width: 90%;
    text-align: center;
}
.footer-contact-form .form-group button.submit-btn{
    margin: 0 auto;
}
/*Footer Contact Form Section Responsive Css End Here*/

/**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------- Service Page Main Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Banner Section Responsive Css Start Here */
.service-banner-wrap .service-banner-content{
    text-align: center;
}
.service-banner-content h1{
    font-size: 36px;
    line-height: 44px;
}
.service-banner-content h1 span{
    font-size: 24px;
    line-height: 30px;
}
.service-banner-content h4{
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}
.service-banner-content h4::after{
    margin: 20px auto;
}
/* Service Banner Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Page Main Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ----------- Service Detail Page Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Service Detail Banner Section Responsive Css Start Here */
.serv-detailbanner-wrap .serv-detailbanner-content{
    text-align: center;
}
.serv-detailbanner-content h1{
    font-size: 42px;
    line-height: 50px;
}
.serv-detailbanner-content h1::after{
    margin: 15px auto;
}
/* Service Detail Banner Section Responsive Css End Here */

/* Service Detail Info Section Responsive Css Start Here */
section.service-detailinfo-wrap{
    padding: 30px 0;
}
.service-detailinfo-inner .service-detailinfo-content{
    text-align: center;
}
/* Service Detail Info Section Responsive Css End Here */

/* Service CTA Section Responsive Css Start Here */
section.service-cta-wrap{
    padding: 30px 0;
}
.service-cta-wrap .service-cta-content{
    width: 100%;
    text-align: center;
}
.service-cta-content h2{
    font-size: 26px;
    line-height: 32px;
}
/* Service CTA Section Responsive Css End Here */

/**************************************************************************
 ------------- Service Detail Page Responsive Css End Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------- Packages Main Page Responsive Css Start Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Packages Bundle Section Responsive Css Start Here */
section.packages-bundle-wrap{
    padding: 30px 0;
}
.packages-bundle-inner .packages-bundle-box{
    border-bottom: 2px solid #ac7e08;
}
.packages-bundle-box .package-badge{
    top: -15px;
    right: -15px;
}
.packages-bundle-box .package-badge img{
    width: 75px;
    height: 75px;
}
.packages-bundlebox-head h3{    
    font-size: 24px;
    line-height: 30px;
}
.packages-bundlebox-head h5{
    font-size: 30px;
    line-height: 36px;
}
.packages-bundlebox-head h5 span{
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0 0 10px;
}
ul.packages-bundle-list li.text-p{
    font-size: 14px;
    line-height: 20px;
}
.packages-bundle-buttons ul{
    flex-direction: column;
    margin: 0;
}
.packages-bundle-buttons ul li{
    margin: 0 5px 10px;
}
.packages-bundle-buttons a.call-btn{
    font-size: 14px;
    margin: 0;
}
/* Packages Bundle Section Responsive Css End Here */

/**************************************************************************
 ------------- Packages Main Page Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- About Main Page Responsive Css Start Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

/* About Info Section Responsive Css Start Here */
.about-info-wrap .about-info-head{
    margin: 0 0 20px;
}
.about-info-wrap .about-info-content{
    text-align: center;
}
/* About Info Section Responsive Css End Here */

/**************************************************************************
 ----------------- About Main Page Responsive Css End Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ---------------- Contact Main Page Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Contact Us Form Section Responsive Css Start Here */
section.contactus-form-wrap{
    padding: 50px 0 30px;
}
.contctus-info-left .contactus-info-head{
    width: 85%;
    margin: 0 auto 50px;
    text-align: center;
}
.contactus-info-head h2{
    width: 90%;
    margin: 0 auto 30px;
    top: -30px;
}
.contctus-info-left ul.contactus-info-list{
    width: 85%;
    margin: 0 auto 50px;
    text-align: center;
}
ul.contactus-info-list li a{
    font-size: 14px;
    line-height: 20px;
}
ul.contactus-info-list li p{
    width: 90%;
    margin: 0 auto;
}
.contactus-form-wrap .contactus-form-inner{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}
.contactus-form-inner form{
    width: 100%;
}
/* Contact Us Form Section Responsive Css End Here */

/**************************************************************************
 ----------------- Contact Main Page Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Responsive Css Start Here */
.footer-top .footer-links-area{
    text-align: center;
}
.footer-links-area ul.footer-nav-links{
    flex-wrap: inherit;
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 20px;
}
.footer-top .footer-disclaimer-area{
    text-align: center;
}
.footer-top .footer-disclaimer-area ul.social-list{
    justify-content: center;
}
.footer-info-area h3{
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}
.footer-info-area ul.footer-info{
    flex-direction: column;
    justify-content: center;
}
ul.footer-info li{
    padding: 10px 5px;
    margin: 0 0 10px;
}
ul.footer-info li h4{
    font-size: 20px;
    line-height: 26px;
}
ul.footer-info li a{
    font-size: 14px;
}
ul.footer-info li p{
    font-size: 14px;
}
.footer-bottom .footer-copyright{
    text-align: center;
    margin: 0 0 10px;
}
.footer-bottom-links ul{
    justify-content: center;
}
.footer-bottom-links ul li{
    margin: 0 10px 0 0;
}
/* Footer Responsive Css End Here */
}
