@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,800;1,600&amp;display=swap');

:root {
    --white: #fff;
    --black: #000;
    --theme-color: #f8c304;
    --btn-gradient: linear-gradient(267.57deg, #f8c304 -3.55%, #f8c304 100.02%);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    overflow-x: hidden !important;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

/*
h1,
h2,
h3,
h4,
h5,
h6
{
  font-family: "Playfair Display", serif;
} */

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.filter-img{
filter: brightness(0) saturate(100%) invert(43%) sepia(29%) saturate(695%) hue-rotate(147deg) brightness(97%) contrast(99%);
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    transition: 0.3s ease-in-out;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 0px;
    background: #fff;
}


/* ===== FORM CONTAINER ===== */
.banner-form {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 2px 2px 10px #ccc;
    position: relative;
}

/* ===== FORM TITLE ===== */
.banner-form-title {
    font-size: 30px !important;
    color: #000 !important;
    font-weight: bold;
    text-transform: capitalize !important;
    font-family: 'Poppins', sans-serif !important;
}

.banner-form-title span {
    font-size: 40px !important;
    color: #f2d711;
    font-family: 'Poppins', sans-serif !important;
}

/* ===== INPUT FIELDS ===== */
.input-control {
    width: 100%;
    margin: 7px 0;
    padding: 16px 15px;
    border: 0px !important;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    border-radius: 5px;
    outline: none;
}

textarea.input-control {
    height: 100px;
    resize: none;
}

/* ===== CHECKBOX TEXT ===== */
.chota_fnt {
    font-size: 10px;
    margin: 15px 0;
    color: #070f30;
    line-height: 15px;
    display: block;
}

.chota_fnt a {
    color: #070f30;
    text-decoration: underline;
}

/* ===== BUTTON ===== */
#register {
    width: 100%;
    padding: 10px;
    background: #f8b830;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

#register:hover {
    background: #000;
    color: #fff;
}

/* ===== BLINKING BADGE ===== */
.blinking-badge {
    position: absolute;
    top: -33px;
    right: -33px;
    width: 100px;
    height: 100px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Blink Text */
.blinking-badge .txt {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px){
    .banner-form {
        padding: 25px 15px;
    }

    .banner-form-title {
        font-size: 22px;
    }

    .banner-form-title span {
        font-size: 28px;
    }

    .blinking-badge {
        width: 70px;
        height: 70px;
        font-size: 14px;
        top: -20px;
        right: -20px;
    }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAV LINKS */
ul.navLinks {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navLinks li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.navLinks li a h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #000;
}

.navLinks li a h4 span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
}

.span-heading{
   color: #3a7c92 !important;
}

/* THEME BUTTON */
.themeBtn {
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 1rem; 
    font-weight: 500; 
    padding: 0.5em 1em; 
    text-transform: uppercase; 
    background: var(--btn-gradient);
    border-radius: 30px; 
    color: #000 !important;
    border: 1px solid transparent;
}

.themeBtn:hover {
    background: #3a7c92 !important;
    color: #fff !important;
}

@media screen and (max-width: 480px) {
    /* Hide quote button */
    .quoteBtn {
        display: none;
    }

    header {
    position: fixed; 
    top: 1px !important;
    width: 100%;
    z-index: 9999;
}


    .navLinks li a h4,
    .navLinks li a h4 span {
        display: none;
    }

    .themeBtn {
    gap: 0.5rem; 
    font-size: 12px !important; 
    font-weight: 500; 
    padding:8px 13px !important; 
    text-transform: uppercase; 
    background: var(--btn-gradient);
    border-radius: 30px; 
    color: #fff !important;
    border: 1px solid transparent;
}


    ul.navLinks {
        gap: 1rem;
    }

    .navLinks li a i {
        font-size: 1.5rem;
        cursor: pointer;
        color:#000;
    }

.mainbanner {
    position: relative;
    background-color: #3a7c92 !important;
    height: 700px !important;
}

.mainbanner .overlay {
    position: absolute;
    top: 130px !important;
    left: 0;
    right: 0;
    bottom: 0;  
}

}

.menuToggle {
    display: none;
}


.bannerImg{
   height: 820px !important;
}

/*Main slider CSS Start*/
.mainbanner {
    position: relative;
    background-color: #3a7c92;

}

.mainbanner .overlay {
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    bottom: 0;
   
}

.mainbanner .overlay h2 {
    font-size: 3.0625rem;
    font-weight: bold;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    text-align: left;
    text-transform: uppercase;
}

.mainbanner .overlay h2 span {
    color: var(--theme-color);
}

.banner-contnt ul li {
    color: #FFF;
    position: relative;
    padding-left: 1rem;
}

.banner-contnt ul li::before {
    content: '';
    position: absolute;
    background: var(--theme-color);
    width: 7px;
    height: 2px;
    top: 0.6rem;
    left: 0;
}

.banner-contnt ul {
    margin: 1.5rem 0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #3a7c92;
  padding: 16px 0px 0px 0px;        
  display: flex;            
  justify-content: center;   
  align-items: center;       
  box-sizing: border-box;
}

/* Marquee Text */
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;        
  animation: scroll-left 20s linear infinite;
  font-size: 16px;             
  font-weight: 500;           
  color: #fff;
  line-height: 1.2;
  transform: translateX(100%);
}

/* Marquee Animation */
@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.sticky-slider a {
    display: block;
    width: 100%;
   
    top: 0; 
    text-transform: uppercase;
    font-weight: 600 !important;
    border: 0;
    cursor: pointer;
    color: #fff !important;
    padding: 12px 0;
    letter-spacing: 2px;
    font-size: 17px;
    margin: auto;
    border-radius: 0;
    transition: 0.2s linear;
    left: 0;
    right: 0;
    z-index: 99999;
    text-align: center;
    background-color: #f8c304; 
    animation: blinkingBackground 1.2s infinite;
}


@keyframes blinkingBackground {
    0%, 50%, 100% {
        background-color: #f8c304; 
    }
    25%, 75% {
        background-color: #e6b800; 
    }
}

.banner-one {
    position: absolute;
    right: 7rem;
    top: 0;
}

.banner-contnt {
    margin-top: 5rem;
}

.secheading {
    font-size: 3.625rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    text-align: left;
    text-transform: capitalize;
}

.secheading span {
    color: var(--theme-color);
}

.logoSec{
    background: #fff !important;
    padding: 3rem 0;
}


.aboutContnt ul li {
    font-size: 1rem;
    padding: 5px 0;
}

.aboutContnt {
    display: flex;
    gap: 7rem;
    margin: 2rem 0;
}

.aboutContnt ul li i {
    color: #387d92;
    padding-right: 0.5rem;
}

.aboutSec figure img {
    border-radius: 9PX;
}

.btnSec {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}


.helpingSec figure img {
    margin: -8rem 0;
}

.helpingSec p {
    width: 80%;
}

.what-we-do ul li h4 {
    font-size: 1rem;
    margin: 1rem 0;
    font-weight: 600;
}

.what-we-do ul li {
    text-align: center;
    background: #f1f1f1;
    display: inline-block;
    border-radius: 13px;
    transition: all 0.4s ease;
    margin: 1rem 0;
    width: 240px;
    height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.what-we-do ul li:hover {
    background: #387d92;
}

.what-we-do ul li:hover h4 {
    color: #fff !important;
}

.what-we-do ul li:hover img {
    filter: brightness(0) invert(1);
}

.what-we-do ul {
    display: flex;
    justify-content: space-between;
    /* flex-flow: wrap; */
}

.bookSec figure img {
    margin: 1rem 0;
}

.bestSale {
    background:#3a7c92 ;
    padding: 0;
    margin: 5rem 0;
}
.bestSale .secheading,.bestSale p{
    color: var(--white);
}

.bestSale .themeBtn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff !important;
}

.bestSale .themeBtn:hover {
    background: #f8c304 !important;
    border-color: #f8c304;
    color: #fff;
}

.testimonialSec h6 {
    color: var(--theme-color);
    text-align: center;
}

.testimonialSec h2 {
    text-align: center;
}

.reviewBox {
    text-align: center;
    margin: 3rem 2rem;
}

.reviewBox p {
    font-style: italic;
    margin: 2rem 0;
}

.reviewBox i {
    position: absolute;
    top: 12rem;
    z-index: -1;
    font-size: 5rem;
    left: 18rem;
    color: #ffc82221;
}

.contactSec input, .contactSec textarea {
    width: 100%;
    height: 3.5rem;
    padding-left: 1rem;
    color: #000;
    margin: 0.5rem 0;
    border-radius: 7px;
    border: none;
    background: #e9ebed;
}

.contactSec textarea {
    height: 120px;
    padding: 1rem;
}

.contactSec .contactBg {
    position: absolute;
    right: 0;
    top: -50px;
}

.contactSec {
    padding: 6rem 0 15rem;
}

footer ul li,footer ul li a, footer p{
    color: #fff;
}
footer p {
    margin: 0;
}
footer a {
    text-transform: capitalize;
}
footer ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

footer p span {
    color: #3a7c92 !important;
}

footer {
    background: #0d0402;
    padding: 2rem 0;
}

.serBox {
    background: #f1f1f1;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 460px;
}

.serBox p{
}

.serBox:hover * {
    color: var(--black);
}

.serBox:hover {
    background: #3a7c92;
}

.serBox:hover h4,
.serBox:hover p {
    color: #fff;
}

.serBox:hover img {
    filter: invert(76%) sepia(99%) saturate(2%) hue-rotate(150deg) brightness(114%) contrast(100%);
}

.serBox h4 {
    font-size: 1.3rem;
}

.serBox img {
    margin: 2rem 0;
}

.packBox h4 {
    font-size: 1.8rem;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.packBox p {
    font-size: 0.8rem;
}

.packBox h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme-color);
    gap: 0;
    display: flex;
    align-items: center;
}

.packBox h2 span {
    color: #ffffff4d;
    font-size: 2rem;
}

.packBox h2 span small {
    font-size: 1.478rem;
    display: block;
    font-weight: 700;
    text-align: center;
    color: #8b8989d1 !important;
}
.packBox:hover h2 span small{
    color: #ffffff !important;
}

div#popupform {
    /* padding: 0;
    max-width: 400px;
    background: transparent; */
}

.modal-body {
    padding: 0;
}

.popup-content {
    padding: 30px 30px 20px 30px;
    background: var(--theme-color);
    border-radius: 12px;
}


.popup-content .form-control {
    height: 40px;
    margin-bottom: 10px;
    font-size: 13px;
}

.popup-content textarea.form-control {
    height: 100px;
    resize: none;
}

.popup-content ::placeholder {
    color: #000;
}

.popup-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--black);
}

.popup-content h2 + p {
    color: var(--black);
}

.popup-content .btn {
    width: 100%;
}

.fancybox-slide--html .fancybox-close-small {
    background: #fff;
    opacity: 1;
    height: 25px;
    width: 25px;
    padding: 0;
    top: 10px;
    right: 10px;
    border-radius: 3px;
    box-shadow: 0 5px 15px #00000057;
}

.fancybox-button svg {
    width: 25px;
    height: 25px;
}

.our-author .seal {
    top: 40px;
    right: -10px;
}

.info-banner ul li {
    display: block;
    color: #000;
    font-size: 20px;
    margin-bottom: 11px;
    position: relative;
    padding-left: 19px;
}

.info-banner ul li:before {
    background: #f9e110;
    position: absolute;
    left: 0;
    content: "";
    padding: 5px;
    border-radius: 50px;
    top: 10px;
}

.info-banner ul {
    margin: 0 0 30px;
}

footer a.tel {
    position: relative;
    font-size: 33px;
    color: #fff;
    font-weight: 600;
    margin-left: 30px;
    top: 6px;
}

footer a.tel img {
    vertical-align: sub;
}

input.required.error, textarea.required.error, select.required.error {
    border-bottom: red 2px solid !important;
}

label.error {
    display: none !important;
}

header ul li i {
    font-size: 27px;
}

.popup-content .btn {
    background: black;
    color: white;
}

.black_friday {
    width: 250px;
    height: 152px;
    background: url("../images/webp/black-friday-bg.html");
    color: #fff;
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #fff;
    border-radius: 15px;
    box-shadow: 0 0 1px 2px #58eaff, 0 0 1px 2px #58eaff inset;
    filter: drop-shadow(0px 0px 5px #58eaff);
    z-index: 999;
    cursor: pointer;
    animation: 1s linear infinite bf-animate
}

@keyframes bf-animate {

    0%,
    100% {
        filter: drop-shadow(0px 0px 5px #58eaff);
        transform: translateY(-5px)
    }

    50% {
        filter: drop-shadow(0px 0px 5px #e50b48);
        box-shadow: 0 0 1px 2px #e50b48, 0 0 1px 2px #e50b48 inset;
        border-color: #000;
        transform: translateY(0)
    }

    80% {
        filter: drop-shadow(0px 0px 5px #e50b48);
        box-shadow: 0 0 1px 2px #e50b48, 0 0 1px 2px #e50b48 inset;
        border-color: #000
    }
}

.black_friday h2 {
    font-size: 25px !important;
    -webkit-text-stroke: 1.5px #56575b;
    text-shadow: 1px 2px 15px #56575b;
    filter: drop-shadow(0px 0px 25px #56575b);
    font-weight: 500;
    color: #fff;
    font-family: Yantramanav, sans-serif
}

.black_friday h2 span {
    padding-left: 5px;
    -webkit-text-stroke: 1px #e50b48;
    text-shadow: 1px 2px 15px #e50b48;
    filter: drop-shadow(0px 0px 25px #e50b48);
    color: #fff;
    font-family: Yantramanav, sans-serif
}

.black_friday .black_friday_top {
    width: 80px;
    height: 34px;
    background: 0 0;
    color: #fff;
    border: 2px solid #fcffeb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 1px 2px #eabb17, 0 0 1px 2px #eabb17 inset;
    filter: drop-shadow(0px 0px 5px #e70046);
    margin-bottom: 5px;
    animation: 1s linear infinite bf-animate-2
}

@keyframes bf-animate-2 {

    0%,
    100% {
        filter: drop-shadow(0px 0px 5px #eabb17)
    }

    50% {
        filter: drop-shadow(0px 0px 5px #e50b48);
        box-shadow: 0 0 1px 2px #e50b48, 0 0 1px 2px #e50b48 inset;
        border-color: #000;
        transform: translateX(0)
    }

    80% {
        filter: drop-shadow(0px 0px 5px #e50b48);
        box-shadow: 0 0 1px 2px #e50b48, 0 0 1px 2px #e50b48 inset;
        border-color: #000
    }
}

.black_friday .black_friday_top p {
    font-size: 20px !important;
    margin-bottom: 0;
    color: #fff;
    font-family: Yantramanav, sans-serif;
    padding: 0
}

.black_friday #veteran-countdown {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    margin-top: 6px;
    padding: 5px 0;
    border: 2px solid #fff;
    border-right: 0;
    border-left: 0;
    border-radius: 6px
}

.black_friday #veteran-countdown .veteran-counter,
.cta-sec-2 .hd-txt,
.get-in-touch,
.industry-sec .hd-txt h2,
.modaL_order2 #countdown .labels {
    text-align: center
}

.black_friday #veteran-countdown .veteran-counter span.ping {
    font-size: 18px !important;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-family: Yantramanav, sans-serif
}

@keyframes ping {
    0% {
        filter: drop-shadow(1px 1px 10px #e50b48)
    }

    50% {
        filter: unset
    }

    100% {
        filter: drop-shadow(1px 1px 10px #fff)
    }
}

.black_friday #veteran-countdown .veteran-counter span::before {
    content: attr(b);
    display: block;
    text-shadow: 0 0 12px rgb(238 238 238 / 50%), 0 0 32px rgb(238 238 238 / 30%), 0 24px 48px rgb(238 238 238 / 10%), 0 -24px 48px rgb(238 238 238 / 10%)
}

.black_friday #veteran-countdown .veteran-counter b {
    font-size: 14px !important;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0
}

@media screen and (max-width: 1024px) {
    .black_friday {
        width: 200px;
        height: 129px
    }

    .black_friday .black_friday_top {
        width: 72px;
        height: 30px
    }

    .black_friday .black_friday_top p {
        font-size: 18px !important
    }

    .black_friday h2 {
        font-size: 22px !important
    }
}

#mins-text,
#secs-text,
.footer-nav2 li:first-child:before,
.packages-sec .pack-wrap .bdarea ul li.heading:before {
    display: none
}

.countdown {
    display: block;
    width: 65%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin-top: 6px;
    padding: 5px 0;
    border: 2px solid #fff;
    border-right: 0;
    border-left: 0;
    border-radius: 6px;
    animation: 1s linear infinite bf-animate-2
}

.swal-overlay {
    z-index: 99999999;
}

.packBox {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f1f1f1;
}

.packBox ul li {
    padding: 5px 0;
    padding-left: 1rem;
    position: relative;
}

.packBox ul li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
}

.packBox ul li i {
    color: var(--theme-color);
    margin-right: 1rem;
}

.packBox h2 sup {
    top: -0.3em;
    font-size: 2.5rem;
}

.packBox h2 span {
    position: relative;
    color: #000000;
    font-size: 2rem;
    margin-left: 2rem;
}

.packBox h2 span:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    background: #ff2f2f85;
    transform: rotate(169deg);
    height: 3px;
}
.packBox:hover h2 span:before{
    color: #f0ff23b5;
}

.btnsubmit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.btnsubmit .themeBtn {
    flex-shrink: 0;
    font-size: 0.9rem;
    padding: 1rem 1rem;
}

.consultancy {
    margin-left: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: 0.9rem;
    width: 195px;
    font-weight: 500;
    flex-shrink: 0;
}

.consultancy img {
    margin-right: 0.6rem;
    filter: brightness(0.5);
}

.packBox:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.packBox:hover * {
    color: var(--black);
}

.packBox:hover .themeBtn {
    background: var(--black);
    color: var(--theme-color);
}

.packBox:hover .consultancy img {
    filter: invert(1);
}


.slimScrollBar {
    background: var(--theme-color) !important;
}

.packBox:hover .slimScrollBar {
    background-color: var(--white) !important;
}


.info-contact-banner {
    background: #fff;
    height: 510px;
    width: 456px;
    padding-top: 80px;
    padding: 30px 40px 0;
    position: relative;
    z-index: 1;
    float: right;
}

.info-contact-banner h6 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

.info-contact-banner h4 {
    color: #f8c304;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 39px;
}

.info-contact-banner h4 {
    animation: blink1 1s cubic-bezier(0.4, 0, 1, 1) infinite;
}


.info-contact-banner p {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.info-contact-banner h4 strong {
    font-size: 32px;
    font-weight: 500;
    display: block;
    text-align: center;
}

.info-contact-banner
.form-control {
    border-radius: 0;
    font-size: 12px;
    color: #a3a3a3;
    font-weight: 500;
    margin: 0 0 7px;
    height: 41px;
    border: 0;
    background-color: #f1f1f1;
}

.info-contact-banner textarea.form-control {
    resize: none;
    height: 90px;
}

.seal {
    position: absolute;
    top: -40px;
    right: -30px;
}

.info-contact-banner .themeBtn:hover {
    color: #000;
}

/* .info-contact-banner .themeBtn {
  border-radius: 4px;
  font-size: 1rem;
} */

.packageSec {
    padding-top: 0;
}

.bookSec {
    padding-bottom: 0;
}
.bookSec p {
    color: #212529;
}


/* Popup */
.halloween-popup h2,
ul {
    padding: 0 !important
}

.halloween-popup h2,
.halloween-popup h3 {
    font-size: 24px !important;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal {
    background: rgba(0, 0, 0, .6);
    z-index: 9999999 !important
}

.halloween-popup {
    width: 970px;
    height: 519px;
        background: url(../images/background-popup-3.png) center left / cover no-repeat #000;
    border-radius: 10px;
    padding: 3rem;
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    animation: 1.2s linear infinite filter-shadow;
    overflow: hidden
}

.services-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* each checkbox box */
.service-item {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;        
    padding: 4px 10px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

/* checkbox size small */
.service-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
}


.form-step select.form-control {
    height: auto !important;     
    padding: 10px 14px !important; 
    font-size: 14px;
    line-height: 1.4;
}


.step2-wrap {
    max-width: 520px;
    margin: auto;
}

/* ===== Select Fields ===== */
.step2-wrap .form-control {
    height: 42px;
    padding: 0 12px;
    margin: 10px 0px !important;
    font-size: 14px;
    border-radius: 6px;
}

/* ===== Services Title ===== */
.services-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: #000;
}

/* ===== Checkbox Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* checkbox style */
.services-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f7f7f7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.services-grid input {
    width: 16px;
    height: 16px;
}

@keyframes filter-shadow {

    0%,
    100% {
        filter: unset
    }

    50% {
        filter: drop-shadow(2px 4px 6px black)
    }
}

.halloween-popup::before {
    left: -29%
}

.halloween-popup::after {
    right: -25px
}

.halloween-circle,
.halloween-circle .halloween-circle-home {
    animation: 1.2s linear infinite filter-shadow;
    position: absolute
}

@keyframes halloween-bad {

    0%,
    100% {
        transform: translateY(0);
        filter: unset
    }

    50% {
        transform: translateY(-10px);
        filter: drop-shadow(2px 4px 6px black)
    }
}

.halloween-circle {
    top: 9px;
    left: 75px;
    width: 470px;
    height: 497px;
    background: url(../images/ballon.html) 0 0/contain no-repeat;
    text-align: center
}

.halloween-circle .halloween-circle-home {
    width: 311px;
    height: 507px;
    object-fit: contain;
    top: -2px;
    left: 35%;
    transform: translateX(-50%)
}

.halloween-popup-inner {
    width: 40%;
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 33
}

.fancybox-close-small.close,
.halloween-popup h2,
.halloween-popup h3,
.halloween-popup input,
.halloween-popup textarea {
    font-family: Poppins, sans-serif !important
}

.halloween-popup h2 {
    margin: 0 !important
}

.halloween-popup h3 {
    /* background: hsl(0deg 0% 0% / 80%); */
    padding: 15px !important;
    text-align: center;
    animation: blink1 1s cubic-bezier(0.4, 0, 1, 1) infinite;

}

.halloween-popup h3 span {
    padding: 10px;
    border-radius: 8px;
    display: block;
    background: var(--white)
}

.halloween-popup h3 span {
    font-weight: 800;
    letter-spacing: 2px
}

.halloween-popup .validate-halloween-popup {
    width: 60%;
    margin-top: 2rem
}


.halloween-popup .validate-halloween-popup {
    width: 60%;
    margin-top: 2rem
}

.ftr-social li a,
.halloween-popup .validate-halloween-popup ul,
.leftinner .checklist,
.p0,
.single-review-slider-nav {
    padding: 0
}

.address-main ul li a,
.addressnav li a,
.footer-nav li a:hover,
.ftr-social2 li a:hover span,
.get-in-touch p a:hover,
.halloween-popup .validate-halloween-popup ul li i {
    color: #fff
}

.halloween-popup input,
.halloween-popup-inner .halloween_btn {
    font-family: Poppins, sans-serif;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px
}

.form-div-btn input,
.form-st {
    font-family: poppins
}

.halloween-popup input:focus {
    border: 1px solid #f26722;
    outline: #f26722
}

.form-div-btn,
.halloween-popup .halloween-filed,
.process-box,
.process-sec .row,
.why-choose-img {
    position: relative
}

.halloween-popup div#form2::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 8px;
    background: url("../images/halloween-email.html") 0 0/contain no-repeat;
    width: 25px;
    height: 25px;
    animation: 1.4s linear infinite halloween-user
}

.halloween-popup div#form3::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 8px;
    background: url("../images/halloween-phone.html") 0 0/contain no-repeat;
    width: 35px;
    height: 35px;
    animation: 1.4s linear infinite halloween-user
}

@keyframes halloween-user {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.1);
        opacity: 0
    }
}

.halloween-popup .halloween-filed input {
    font-size: 14px;
    margin: 5px 0;
    padding: 0 21px
}

.halloween-popup .halloween-filed input::placeholder {
    color: #000
}

.halloween-popup-inner .halloween_btn {
    margin-top: 10px;
    background-color: var(--theme-color);
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    transition: .6s linear
}

.halloween-popup-inner .halloween_btn:hover {
    background-color: #fff;
    border: 3px solid var(--theme-color);
    color: #000
}

.halloween-popup-inner .halloween_btn:hover::after {
    animation: 1.3s linear forwards halloween-cap
}

@keyframes halloween-cap {
    0% {
        transform: rotateY(180deg)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}


.txt {
    width: 100% !important;
    margin: 10px 0 0 !important;
    padding: 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 7px !important;
    resize: none !important;
    height: 100px !important;
}


@media screen and (max-width: 1200px) {
    .halloween-popup {
        width: 800px;
        height: 470px
    }

    .halloween-circle {
        left: -20px;
        width: 400px;
        height: 400px
    }

    .halloween-circle .halloween-circle-home {
        width: 300px;
        height: 460px;
        top: -60px
    }

    .halloween-popup::before {
        width: 600px;
        height: 470px;
        bottom: -25px;
        left: -90px
    }

    .halloween-popup::after {
        width: 450px;
        height: 530px;
        bottom: -30px;
        right: -20px
    }

    .halloween-popup h3 {
        font-size: 22px !important
    }
}

@media screen and (max-width: 992px) {
    .halloween-popup {
        width: 620px;
        height: 360px
    }

    .halloween-circle {
        left: -20px;
        width: 330px;
        height: 330px
    }

    .halloween-circle .halloween-circle-home {
        width: 250px;
        height: 390px
    }

    .halloween-popup::before {
        width: 420px;
        height: 325px;
        bottom: -25px;
        left: -70px
    }

    .halloween-popup::after {
        width: 340px;
        height: 400px;
        bottom: -30px;
        right: -20px
    }

    .halloween-popup h2,
    .halloween-popup h3 {
        font-size: 16px !important
    }

    .halloween-popup .halloween-filed input {
        padding-left: 45px;
        font-size: 14px
    }
}

@media screen and (max-width: 767px) {
    .black_friday {
        width: 159px;
        height: 122px
    }

    .black_friday h2 {
        font-size: 20px !important
    }

    .black_friday #veteran-countdown .veteran-counter span.ping {
        font-size: 16px !important
    }

    .black_friday .black_friday_top {
        width: 60px;
        height: 28px
    }

    .halloween-popup {
        width: 450px;
        height: 300px;
        padding: 20px
    }

    .halloween-popup::before {
        width: 330px;
        height: 250px;
        left: 15%;
        bottom: 0;
        z-index: -1
    }

    .halloween-popup::after {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .4);
        animation: unset;
        border-radius: 10px
    }

    .halloween-circle {
        width: 260px;
        height: 260px;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -2
    }

    .halloween-circle .halloween-circle-home {
        width: 200px;
        height: 300px;
        top: -40px
    }

    .halloween-popup-inner .halloween_btn::after {
        width: 55px;
        height: 48px
    }

    .halloween-popup h2,
    .halloween-popup h3 {
        font-size: 16px !important;
    }

    .halloween-popup-inner {
        width: 70%;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center
    }

    .halloween-popup .halloween-filed {
        width: 80%;
        margin: 0 auto
    }
}

@media screen and (max-width: 576px) {
    .halloween-popup {
        width: 300px;
        padding: 0
    }

    .halloween-popup::before {
        width: 100%;
        height: 250px;
        left: 0
    }

    .halloween-popup-inner {
        width: 100%;
        top: 15%;
        padding: 20px
    }

    .halloween-popup .halloween-filed {
        width: 100%;
        margin: 0 auto
    }

    .halloween-popup .halloween-filed input {
        padding-left: 35px
    }

    .halloween-popup div#form1::before,
    .halloween-popup div#form2::before,
    .halloween-popup div#form3::before {
        top: 10px;
        width: 25px;
        height: 25px
    }

    .halloween-popup-inner .halloween_btn {
        font-size: 18px;
        letter-spacing: 2px
    }

}

@media only screen and (min-width: 300px) and (max-width: 519px) {

    .halloween-popup,
    .modal-content {
        height: auto !important
    }

    .halloween-popup::after,
    .halloween-popup::before {
        content: inherit
    }

    .halloween-popup {
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important
    }

    .halloween-popup-inner {
        transform: none;
        left: 0 !important;
        transform: translateX(0) !important;
        top: 0 !important;
        position: relative !important;
        z-index: 9 !important
    }

}


@keyframes blink1 {
    0%, 100% {
        color: #387d92;
    }
    50% {
        color: #000000;
    }
}


body.setone .sweet-alert {
    z-index: 100000;
}