:root{
    --primary-color: #0a5baa;
    --secondary-color: #292c30;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box !important;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

::selection{
    background: var(--primary-color);
    color: #fff;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Mazzard' !important;
}

.post, .page{
    margin-bottom: 0 !important;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}

a,.btn,button{
    outline: none !important;
    display: inline-block;
}

span,b,strong,i{
    display: inline-block;
}

p span,
p strong{
    display: inline;
}

p{
    line-height: 1.8;
    margin-bottom: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  display: none;
  background-color: #333;
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.button{
    display: inline-block;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 17px 25px;
    border-radius: 30px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}

.button:hover{
    background: transparent;
    color: var(--primary-color);
}

.main-heading{
    font-size: 40px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.main-heading span{
    font-weight: 600;
    color: var(--secondary-color);
}

.sub-heading{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 30px;
    text-transform: capitalize;
    color: var(--secondary-color);
}

/* HOMEPAGE BANNER */

.homepage-banner{
    padding: 150px 0;
    background: url(../../../../uploads/2025/07/banner-homepage.webp) no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.search-packages-banner,
.summary-page{
    padding: 100px 0;
}

.homepage-banner .banner-heading{
    margin: 60px auto 40px;
}

.homepage-banner .content p{
    font-size: 24px;
    font-weight: 400;
    width: 100%;
    max-width: 600px;
}

.homepage-banner .content p strong{
    font-weight: 600;
}

.our-features .row{
    /*row-gap: 40px;*/
}

.our-features .feature{
    text-align: center;
    padding: 0 10px 20px;
}

.our-features .feature .feature-title{
    font-weight: 400;
    font-size: 30px;
    line-height: 1.4;
    margin: 15px auto;
}

.our-features .feature .feature-title span{
    font-weight: 600;
    display: block;
}

section.padding-v{
    padding: 100px 0;
}

.about-us li:not(:last-child){
    margin-bottom: 10px;
}

.about-us .image-wrapper{
    transform: scale(1.1) ;
}

.our-locations{
    background: #ebf2f7;
}

.our-locations .location{
    padding: 30px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

.our-locations .location img{
    border-radius: 12px;
}

.our-locations .location-title{
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 25px auto 5px;
}

.our-locations .location p{
    margin-bottom: 0;
}

.our-locations .location img{
    width: 100%;
}

/* INNER PAGES */

.textual-banner{
    padding: 100px 0 150px;
    text-align: center;
    background: url(../../../../uploads/2025/07/textual-banner.webp) no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.textual-banner .navbar-brand{
    margin-bottom: 90px;
}

.banner-heading{
    font-size: 50px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: -3px;
}

.banner-heading span{
    color: #000;
    font-weight: 600;
    letter-spacing: 0;
}

.textual-content{
    padding: 70px 8px;
    color: var(--secondary-color);
}

.textual-content .main-heading{
    font-weight: 500;
    margin-top: 30px;
    font-size: 36px;
}

.textual-content ul{
    padding-left: 20px;
    margin-bottom: 20px;
}

.textual-content ul li::marker{
    color: var(--primary-color);
}

.textual-content ul li:not(:last-child){
    margin-bottom: 10px;
}

.textual-content p strong,
.textual-content p a,
.textual-content li strong,
.textual-content li a{
    color: var(--primary-color);
    font-weight: 500;
}

/* FOOTER */

.site-footer{
    background: url(../../../../uploads/2025/07/footer-background.webp) no-repeat;
    background-position: bottom center;
    background-size: cover;
    color: #fff;
}

.site-footer .parent-row{
    padding: 100px 0;
}

.site-footer .logo{
    filter: brightness(0) invert(1);
    margin-bottom: 50px;
}

.site-footer .content p{
    width: 100%;
    max-width: 350px;
}

.site-footer .footer-heading{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 75px;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.site-footer .copyrights{
    border-top: 2px solid #457cb1;
    padding: 15px 0;
    text-align: center;
}

.site-footer ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.site-footer li{
    margin-bottom: 10px;
    font-weight: 400;
}

.site-footer a{
    color: #fff;
    text-decoration: none;
}

.policies-paragraph{
    text-align: center;
    color: #fff;
    margin: 20px auto 0;
}

.policies-paragraph a{
    cursor: pointer;
    font-weight: 400;
}

.policies-paragraph a:hover{
    text-decoration: underline !important;
}

.my-popup .modal-content{
    border-radius: 20px;
}

.my-popup .modal-body{
    position: relative;
    padding: 25px;
}

.my-popup .modal-body .btn-close{
    opacity: 1;
    box-shadow: none;
    position: absolute;
    top: 25px;
    right: 25px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--primary-color);
    color: #fff;
    border-radius: 40px;
    border: 2px solid var(--primary-color);
}

.my-popup .modal-body .btn-close:hover{
    background: #fff;
    color: var(--primary-color);
}

.my-popup h1{
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    padding-right: 25px;
}

.my-popup h2{
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.my-popup h3{
    font-size: 17px;
    font-weight: 500;
    margin: 0 auto 15px;
}

.my-popup p,
.my-popup li{
    font-size: 14px;
    margin-bottom: 10px;
}

.my-popup a{
    color: var(--primary-color);
}

@media only screen and (max-width: 1400px){
    .homepage-banner{
        padding: 80px 0;
    }
    .homepage-banner .content p {
        font-size: 22px;
        max-width: 470px;
    }
    .about-us .image-wrapper{
        transform: scale(1);
    }
}

@media only screen and (max-width: 1300px){
    .textual-banner {
        padding: 100px 0 120px;
        
    }
    .banner-heading {
        font-size: 44px;
    }
    .site-footer .parent-row {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 1200px){
    .site-footer a img{
        width:100%;
        max-width:150px
    }
    .site-footer .logo {
        margin-bottom: 30px;
    }
    .site-footer .content p{
        max-width: 100%;
    }
    .site-footer .footer-heading{
        margin-top: 45px;
        margin-bottom: 25px;
    }
    .search-packages-banner,
    .summary-page{
        padding: 80px 0;
    }
    .our-features .feature .feature-title{
        font-size: 26px;
    }
}

@media only screen and (max-width: 991px){
    .textual-banner {
        padding: 70px 0;
    }
    .textual-banner .navbar-brand {
        margin-bottom: 50px;
    }
    .textual-banner .navbar-brand img{
        width:100%;
        max-width:150px
    }
    .banner-heading {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .sub-heading {
        font-size: 24px;
    }
    .main-heading {
        font-size: 30px;
    }
    .homepage-banner .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 30px;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    .homepage-banner .banner-heading {
        margin: 40px auto;
    }
    .homepage-banner .content p{
        max-width: 100%;
        font-size: 18px;
    }
    section.padding-v {
        padding: 60px 0;
    }
    .our-locations .location{
        padding: 30px 0 0;
    }
}

@media only screen and (max-width: 767px){
    .homepage-main section{
        padding-left: 8px;
        padding-right: 8px;
    }
    .our-features .feature{
        padding: 0 0 20px;
    }
}

@media only screen and (max-width: 575px){
    .site-footer .parent-row,
    .textual-content{
        padding: 50px 8px;
    }
    p,a, li{
        font-size: 14px;
    }
    .site-footer .footer-heading{
        font-size: 20px;
    }
    .homepage-banner,
    .search-packages-banner,
    .summary-page{
        padding: 40px 0;
    }
    .our-features .feature .feature-title,
    .our-locations .location-title{
        font-size: 22px;
    }
}

@media only screen and (max-width: 425px){}