@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #343534;
    --white: #fff;
    --yellow: #DFB04A;
    --green: #777F6B;
    --light-grey: #E4E2DB;
    --darkgrey: #5F5F5F;
    --body-font: "Montserrat", sans-serif;
    --heading-font: "Marcellus", serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.7;
    font-family: var(--body-font);
    font-weight: 500;
}
p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn, .email-subscribers input[type="submit"] {
    height: 46px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.64px;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-family: var(--heading-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 45px;
    position: relative;
    overflow: hidden;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,193,7, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(255,193,7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7, 0); }
}
.btn-primary, .email-subscribers input[type="submit"]{
    background: var(--yellow);
    color: var(--white);
    border: none;
    animation: pulse 2s infinite;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
    box-shadow: none;
}
.btn-outline{
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}
.section-heading{
    margin-bottom: 42px;
    max-width: 80%;
}
.section-heading h6 img, .about-text h6 img{
    height: 20px;
    width: 20px;
    object-fit: contain;
    animation: rotation linear 4s infinite;
}
.form-control, .email-subscribers input[type="email"]{
    height: 40px !important;
    font-size: 13px;
    border-radius: 45px;
    width: 100%;
    background: #F5F5F5;
    border: 1px solid transparent;
    padding: 0 12px;
    color: var(--darkgrey);
    font-weight: 500;
}
.form-control::placeholder{
    color: var(--darkgrey);
    text-transform: uppercase;
    font-size: 11px;
}
textarea {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    background: #F5F5F5;
    border: 1px solid transparent;
    padding: 12px 12px;
}
.form-control:focus, textarea:focus{
    border-color: var(--light-grey) !important;
    background: #F5F5F5;
    box-shadow: none;
    outline: none;
}
.contact-form  label{
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin: 0 0 4px 12px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: #c4c4c4;
    color: var(--green);
    height: 40px;
    width: 40px;
    position: absolute;
    top: 45%;
    left: -48px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -48px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    background: linear-gradient(90deg, #3f4439, var(--green));
    color: var(--white);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid var(--green);
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s ease-in-out;
}
.owl-carousel button.owl-dot.active{
    background: var(--green);
    width: 24px;
}


/* Header  */
.myHeader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.myHeader::before{
    content: "";
    width: 100%;
    height: 80px;
    background: var(--green);
    position: absolute;
    top: 0;
    left: 0;
}
.top-header {
    margin: -9px 0 11px;
}
.top-header .con-box .bi{
    color: orange;
    background: transparent;
    display: inline-block;
    border: none !important;
}
.top-header .con-box span{
    font-size: 13px;
}
.top-header .con-box:not(:last-child){
    margin-right:20px;
}
.navbar-collapse, .nav-text{
    margin-top: -40px;
}
.navbar-brand img {
    height: 124px;
    width: auto;
}
/* .myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-grey);
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.myHeader.fixed::before{
    background: var(--light-grey);
}
.myHeader.fixed .navbar-brand img {
    height: 80px;
}
.myHeader.fixed .navbar-collapse, .myHeader.fixed .nav-text{
    margin-top: 0px;
} */
.navbar-nav .nav-item .nav-link{
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: var(--white);
    position: relative;
    transition: 0.4s ease-in-out;
}
/* .myHeader.fixed .navbar-nav .nav-item .nav-link{
    color: var(--black);
} */
.navbar-nav .nav-item{
    margin: 0 20px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav .nav-item.active .nav-link, .navbar-nav .nav-item:hover .nav-link{
    color: var(--yellow);
}

/* Banner  */
.banner{
    background: #E4E2DB36;
    padding: 40px 0px;
    margin-top: 80px;
}
.banner::before{
    content: "";
    width: 20%;
    height: 60%;
    background: url(../images/leaves.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
}
.banner-slider{
    width: 58%;
    margin-left: auto;
    margin-right: 20px;
}
.banner-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding-top: 75%;
    z-index: -1;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
}
.banner-wrapper{
    position: absolute;
    top:48%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 0;
}
.banner-text{
    max-width: 34%;
}
.banner-text h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 28px;
}
.banner-text p{
    font-size: 13px;
    color: var(--darkgrey);
    font-weight: 500;
}
.banner-slider .owl-dots {
    position: absolute;
    top: 50%;
    left: -67%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.banner-slider.owl-carousel button.owl-dot.active{
    width: 8px;
    height: 42px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.svg-text{
    font-family: var(--heading-font);
    font-size: 11px;
}
.banner-circle {
    width: fit-content;
    top: 70%;
    left: 36%;
    animation: rotation linear 7s infinite;
    z-index: 2;
}
.banner-circle::before {
    content: "";
    width: 120px;
    height: 120px;
    border: 28px solid #e4e2dbab;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Slider  */
.slider-marque{
    background: var(--light-grey);
    padding: 40px 0;
}
.slider-marque li{
    color: var(--green);
    font-size: 24px;
    font-family: var(--heading-font);
    padding: 0 80px 0 60px;
    position: relative;
}
.slider-marque li::before {
    content: "\F589";
    font-size: 28px;
    color: var(--green);
    font-family: 'Bootstrap-icons';
    position: absolute;
    right: 0;
}


/* Service  */
.serv-img{
    padding-top: 80%;
    border-radius: 20px;
    overflow: hidden;
}
.serv-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.service-box:hover img{
    transform: scale(1.1);
}
.service-box h3{
    font-size: 22px;
    line-height: 1.4;
    font-family: var(--heading-font);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.3s ease-in-out;
}
.service-box:hover h3{
    color: var(--green);
}
.serv-desc, .desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}


/* About start  */
.about-img{
    position:relative;
    padding-top: 108%;
    border-radius: 200px 0 0;
    overflow: hidden;
}
.about-img img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.about-text{
    padding-left: 40px;
}
.ab-home.about .about-text{
    padding: 40px 0 40px 40px;
}
.about-text h6, .section-heading h6, .testimonials h6{
    font-size: 14px;
    color: var(--yellow);
    font-family: var(--heading-font);
    font-weight: 600;
    text-transform: capitalize;
}
.about-text h2, .section-heading h2{
    font-size: 40px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black);
    font-family: var(--heading-font);
    position: relative;
}
.about-text h2 strong, .section-heading h2 strong{
    font-weight: 400;
    display: block;
}
.about-text h4{
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--green);
    margin: 20px 0 12px;
}
.about-text h6{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.about-text h6 span{
    background: var(--white);
    padding-left: 12px;
}
.about-text h6::after {
    content: "";
    width: 82%;
    height: 1px;
    background: var(--yellow);
    position: absolute;
    top: 46%;
    left: 26px;
    z-index: -1;
}
.about-text .btn-primary{
    background: var(--green);
    border-color: var(--green);
    animation: none;
}
.about-text ul, .about-text ol{
    padding-left: 20px;
}
.stat-column{
    background: var(--yellow);
    margin-left: -32%;
    padding: 40px 60px;
    color: var(--white);
    font-size: 18px;
    font-family: var(--heading-font);
    text-align: center;
}
.stat-column li strong{
    display: block;
    font-size: 32px;
    font-weight: 400;
}
.stat-column li:not(:last-child){
    border-right: 1px solid var(--white);
    padding-right: 80px;
}


/* Approach  */
.approach{
    background-size: cover !important;
    z-index: 1;
}
.approach::before, .mid-banner::before, .footer-top::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #e4e2dbd4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.approach-box{
    background: var(--green);
    border-radius: 20px;
    padding: 40px 18px;
    outline: 1px dashed var(--green);
    outline-offset: 4px;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.approach-box:hover{
    transform: scale(1.1);
}
.approach .section-heading h6{
    color: var(--green);
}
.approach .section-heading h6 img{
    filter: brightness(0) saturate(100%) invert(56%) sepia(8%) saturate(681%) hue-rotate(42deg) brightness(85%) contrast(87%);
}
.approach-box h3, .approach-box p{
    color: var(--white);
}
.approach-box h3{
    font-size: 22px;
    font-family: var(--heading-font);
    margin-top: 40px;
}
.approach-icon img{
    height:84px;
    width: 84px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: 0.3s ease-in-out;
}


/* Team */
.team-img{
  position: relative;
  padding-top: 120%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.team-img img{
  position: absolute;
  top: 0;
  left: 0;
}
.team-img::before{
    content: "";
    width: 100%;
    height: 0%;
    background: linear-gradient(0deg, #000, #00000000);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 1;
}
.team-img:hover::before{
  height: 100%;
}
.team-box h3{
  font-size: 20px;
  margin: 20px 0 4px;
}
.team-box h3 a{
    color: var(--black);
  font-family: var(--heading-font);
}
.team-box p{
    color: var(--green);
}
.meet-text{
    max-width: 28%;
}
.team-wrap{
    position: absolute;
    top: 160px;
}
.team-img .btn.btn-outline {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
}
.team-img:hover .btn.btn-outline{
    opacity: 1;
}
.team-slider.owl-carousel .owl-dots {
    text-align: left;
    margin-top: 0;
}



/* Point of Contact  */
.susan-img{
    max-width: 75%;
    padding-top: 100%;
    position: relative;
    margin-left: auto;
    margin-top: 120px;
}
.susan-img img{
    border-radius: 160px 160px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}
.susan-img::before{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    bottom: -40px;
    left: 0;
}
.point-contact::before {
    content: "";
    height: 100%;
    width: 320px;
    background: var(--yellow);
    border-radius: 160px 160px 0 0;
    position: absolute;
    left: 7%;
    bottom: 0;
}
.point-bottom{
    background: var(--light-grey);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -100px;
}


/* Why Us  */
.icon-box h5{
    font-size: 20px;
    color: var(--black);
    font-family: var(--heading-font);
}
.icon-box p{
    line-height: 1.4;
    color: var(--green);
} 
.icon-box{
    padding-left: 100px;
    margin-top: 32px;
}
.icon-box .list-icon{
    height: 75px;
    width: 75px;
    border: 1px solid var(--green);
    border-radius: 50%;
    padding: 15px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0) saturate(100%) invert(56%) sepia(8%) saturate(681%) hue-rotate(42deg) brightness(85%) contrast(87%);
}
.whyus-image.about-img{
    padding-top: 97%;
    border-radius: 0 200px 0 0;
}

/* Middle Banner  */
.mid-banner{
    padding: 60px 0;
    background-size: cover !important;
    z-index: 1;
}
.mid-banner::before{
    background: #00000086;
}
.quotation-box{
    border: 1px solid var(--white);
    padding: 80px 120px;
}
.quotation-box h2, .quotation-box p{
    color: var(--white);
    font-family: var(--heading-font);
}
.quotation-box p{
    font-size: 16px;
}


/* Locations  */
.location .serv-img{
    padding-top: 60%;
}
.location .service-box h3{
    font-size: 28px;
    margin: 12px 0 4px 0 ;
}
.location .service-box h3 a{
    font-family: var(--heading-font);
    color: var(--green);
}
.location .service-box h3:hover a{
    color: var(--yellow);
}
.location .service-box p{
    font-size: 15px;
    color: var(--darkgrey);
}


/* Contact  */
.contact .about-text{
    padding: 0 0 98px 40px;
}
.loc-map{
    border-radius: 0 200px 0 0;
    overflow: hidden;
}


/* Footer  */
.footer-top {
    background-size: cover;
    z-index: 1;
}
.footer-top::before{
    background: #777f6bcc;
}
.footer-top h6,  .footer-top h2, .footer-top p{
    color: var(--white);
    margin-bottom: 0;
    font-weight: 400;
}
.email-subscribers{
    display: flex;
    max-width: 48%;
    margin: 0 auto;
}
.es-form-field-container{
    display: flex;
}
.es-form-field-container .gjs-row:nth-child(2){
    flex-grow: 1;
}
.emaillist{
    width: 100%;
}
.email-subscribers .form-control, .email-subscribers input[type="email"]{
    height: 46px;
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    cursor: pointer;
    margin-right: 12px;
}
.email-subscribers .form-control::placeholder, .email-subscribers input::placeholder{
    color: var(--white);
}
.email-subscribers input[type="submit"]{
    margin-left: 12px;
}


/* Footer Main  */
.footer-logo img{
    height: 168px;
    width: auto;
}
.main-footer{
    background: var(--light-grey);
}
.footer-row{
    padding: 40px 0;
}
.main-footer h3{
    font-size: 24px;
    font-family: var(--heading-font);
    text-transform: capitalize;
    color: var(--green);
}
.myFooter .navbar-nav li a{
    font-size: 14px !important;
    font-family: var(--body-font) !important;
    color: var(--darkgrey) !important;
    font-weight: 500 !important;
    padding: 4px 0 !important;
}
.myFooter .navbar-nav li a:hover, .myFooter .navbar-nav li.active a{
    color: var(--green) !important;
}
.myFooter .navbar-nav li{
    background: transparent !important;
    margin: 0;
}
.myFooter .con-box{
    margin-bottom: 20px;
}
.con-box .bi, .social-list li .bi{
    color: var(--green); font-size: 18px;
    margin-right: 10px;
}
.social-list li:not(:last-child){
    margin-right: 12px;
}
.social-list li:hover .bi{
    color: var(--yellow);
}
.social-list li .bi{
    font-size: 24px;
}
.con-box, .con-box a{
    font-size: 14px;
    line-height: 1.4;
    color: var(--black);
    word-break: break-all;
}
.myFooter hr{
    background: var(--green);
    margin-top: 0;
}
.copyright{
    padding: 0 0 20px 0;
}
.copyright p, .main-footer p{
    color: var(--darkgrey);
    margin-bottom: 0;
}
.copyright p a{
    color: var(--green);
}


/* Inner Pages  */
.inner-banner {
    padding: 120px 0;
    margin-top: 78px;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: #00000086;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h2 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 36px;
}
.inner-banner .breadcrumb{
    background: transparent;
    justify-content: center;
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}
.inner-banner .breadcrumb-item a{
    color: var(--white);
    text-decoration: underline !important;
}
.inner-banner .breadcrumb-item{
    color: var(--white);
}

/* About Page  */
.about-cms .about-img {
    padding-top: 84%;
    border-radius: 20px;
}
.about-cms .ab-wrap:nth-child(even) .ab-row{
    flex-direction: row-reverse;
}
.about-cms .ab-wrap:not(:last-child){
    margin-bottom: 80px;
}
.about-cms .ab-wrap:nth-child(even) .about-text{
    padding: 0 40px 0 0;
}
/* Testimonials  */
.test-box{
    background: var(--light-grey);
    /* padding: 40px 32px; */
    padding: 12px;
    width: 100%;
    z-index: 1;
}
.test-box .stars .bi{
    color: #FFCE1B;
    margin: 0 2px;
}
.test-box p{
    color: var(--darkgrey);
    font-weight: 500;
}
.test-box img.quote{
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(8%) saturate(681%) hue-rotate(42deg) brightness(85%) contrast(87%);
}
.test-box h4{
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--brown);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.test-box h5{
    font-size: 14px;
    color: var(--darkgrey);
}
.cust-img{
    height: 84px;
    width: 75px;
    margin-right: 20px;
    border-radius: 0 0 0 40px;
    overflow: hidden;
    border: 1px solid var(--white);
}
.testimonial-slider .owl-item.active.center .test-box{
    background: var(--green) !important;
}
.testimonial-slider .owl-item.active.center .test-box img.quote{
    filter: brightness(0) invert(1);
} 
.testimonial-slider .owl-item.active.center .test-box h4, .testimonial-slider .owl-item.active.center .test-box h5, .testimonial-slider .owl-item.active.center .test-box p{
    color: var(--white);
}
.ab-pg-point{
    margin-top: 98px;
}

/* Contact Page  */
.contact-info{
    width: 100%;
    border: 1px solid #e5dfdb;
    padding: 40px;
    height: 100%;
    background: linear-gradient(0deg, var(--white), var(--white));
    transition: 0.3s ease-in-out;
}
.contact-details .contact-info .bi{
    font-size: 42px;
    color: var(--yellow) !important;
}
.contact-details .contact-info h5{
    color: var(--black);
    font-family: var(--subheading-font);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
}
.contact-details .contact-info a, .contact-details .contact-info span{
    font-size: 16px;
    font-weight: 500;
    color: var(--darkgrey);
    font-family: var(--body-font);
    word-wrap: break-word;
}
.contact-info:hover{  
    background: var(--green);
    border-color: transparent;
}
.contact-info:hover span, .contact-info:hover h5{
    color: var(--white);
}

/* Service Category Page  */
.serv-cat{
    font-size: 13px;
    color: #bdbdbd;
}
.serv-cat span{
    padding: 8px 20px; 
    background: #777F6B1b;
    border-radius: 42px;
    color: var(--green);
}

/* Blog Page  */
.blog-img{
    padding-right: 40%;
    position: relative;
}
.blog-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.blog-info h5{
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
}
.blog-title {
    font-size: 24px;
    font-family: var(--heading-font);
    color: var(--black);
}
.blog-text {
    padding: 20px;
}
.blog-row{
    row-gap: 20px;
}
.blog-cms-img{
    padding-top: 60%;
}
.other-blogs .desc{
    -webkit-line-clamp: 2;
}
.other-blogs .blog-text {
    padding: 8px;
}  
.other-blogs ul li:not(:last-child){
    margin-bottom: 20px;
}
.other-blogs h4{
    font-family: var(--heading-font);
    color: var(--green);
    margin-bottom: 12px;
}
.bl-cat{
    color: var(--green);
}

/* Offer Popup  */
.offer-popup{
    width: 500px;
    background: var(--white);
    outline: 4px solid #c2c2c25e;
    padding: 4px;
}
.offer-popup::before{
    width: 40%;
    height: 68%;
    z-index: 9999;
}
.offer-popup .popup-text{
    background: var(--white);
    padding: 48px 24px;
    text-align: center;
    border: 1px solid var(--yellow);
    margin-right: 4px;
}
.offer-popup h4{                                                                                                          
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
}
.offer-popup h2{
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}
.offer-popup h2 strong{
    color: var(--green);
    font-size: 32px;
    font-weight: 800;
    display: block;
}
.popup-text .btn{
    margin-top: 18px;
}
.popup-cancel {
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 99999;
}
.popup-cancel .bi{
    color: var(--black);
}
.popup-cancel:hover{
    background: red;
}
.popup-cancel:hover .bi{
    color: var(--white);
}
.offer-popup .owl-carousel.popup-slider .owl-nav button.owl-prev {
    left: 8px;
}
.offer-popup .owl-carousel.popup-slider .owl-nav button.owl-next {
    left: auto;
    right: 8px;
}
.offer-popup .owl-carousel .owl-nav button.owl-next, .offer-popup .owl-carousel .owl-nav button.owl-prev {
    background: var(--light-grey);
    color: var(--green);
    border-radius: 50%;
    opacity: 0;
}
.offer-popup:hover .owl-carousel .owl-nav button.owl-next, .offer-popup:hover .owl-carousel .owl-nav button.owl-prev{
    opacity: 1;
}
 
.corner-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1050;
  display: none; /* hidden by default */
}