h1,
h2,
h3 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

p,
a,
li,
strong,
span,
b {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300;
}

.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
    background-image: none !important;
}

@media screen and (max-height: 1024px) {

    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

@media screen and (max-height: 640px) {

    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

@media screen and (max-width: 640px) {
    .section_box {
        margin-top: 0px;
    }

    .banner,
    .banner-2 {
        height: 40vh !important;
    }
}

.animate-left-right {
    animation: animate-left-right 1s ease-in-out;
}

@keyframes animate-left-right {
    0% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* Fixed Button Style */
.apply-btn {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(50%);
    background: var(--e-global-color-accent);
    color: white;
    padding: 15px 6px;
    font-weight: 300;
    writing-mode: vertical-lr;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    z-index: 999;
    -webkit-transform: rotate(-180deg);
}

/* Background Blur Effect */
.blur {
    filter: blur(5px);
    position: relative;
    pointer-events: none;
    overflow: hidden;
}

.btn-primary_2 {
    background-color: var(--e-global-color-primary) !important;
}

.social-sidebar {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-sidebar li {
    margin: 10px 0;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: #888;
    outline: 1px solid #888;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.social-sidebar a:hover {
    background: #888;
    color: #fff !important;
}

.scrolabel-content strong {
    font-weight: bolder;
}

.scrolabel-content p strong {
    font-weight: bolder;
}

.scrolabel-content ul,
.scrolabel-content li,
.scrolabel-content p,
.scrolabel-content strong {
    white-space: unset !important;
}


img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px
}

.banner {
    height: 73vh;
    position: relative;
    overflow: hidden;
}



.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 2;
    max-width: 700px;
    color: white;

    padding: 20px;
    border-radius: 10px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-content h1,
.banner-content h2 {
    color: #fff !important;
    font-size: 40px !important;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px) {
    .banner {
        background: url('../images/blog_banner.jpg') no-repeat center right / cover;
    }

    .banner-content {
        top: 65%;
        left: 10px;
    }

    .banner-content h1 {
        font-size: 24px !important;
    }

}

@media screen and (max-width: 500px) {
    .social-sidebar {
        display: none;
    }

    .main p {
        line-height: 1.2;
        font-weight: 400;
        font-size: 14px;
    }

    .content li {
        font-size: 14px;
    }
}



.newpopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff3;
    padding: 20px;
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    z-index: 999;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.newpopup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: url('../images/popup_image.webp') center center no-repeat;
    background-size: cover;
    z-index: 999;
}

.newpopup .form-section {
    padding: 20px;
    height: 95vh;
    width: 600px;
    background-color: #fff;
    z-index: 1000;
    margin-right: 100px;
    box-shadow: .1rem .1rem 10px rgba(0, 0, 0, 0.5)
}

.newpopup .form-section form {
    display: flex;
    flex-direction: column;
    padding: 50px 10px;
    position: relative;
}

.newpopup .form-section form input,
.newpopup .form-section form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important
}

.newpopup .form-section form input {
    border-radius: 5px !important
}

.newpopup form button {
    background: var(--e-global-color-accent);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: -20px;
    background: transparent !important;
    color: #000 !important;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 40px !important;
}

.form-section h3 {
    font-weight: 100;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-size: 20px;

}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.tel-input {
    width: 80% !important;
}


@media screen and (max-width : 1000px) {
    .newpopup {
        top: 0%;
        left: 0%;
        width: 100vw;
        transform: translate(0%, 0%);
        align-items: center;
        justify-content: center;
    }

    .newpopup::after {
        content: "";
        display: none;
    }

    .newpopup .form-section {
        min-height: 70vh;
        padding-top: 40px;
        height: max-content;
        width: 95%;
        justify-content: flex-end;
        border: 1px solid #000;
        margin-right: 0px;
    }

    .tel-input {
        width: 60% !important;
    }

    .close-btn {
        position: absolute;
        top: -52px;
        right: -25px;
        background: transparent !important;
        color: #000 !important;
        padding: 5px 10px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        font-size: 40px !important;
    }

    .alert button {
        background-color: transparent !important;
        color: #000;
        font-size: 24px !important;
    }


}


@media screen and (max-width: 450px) {
    .newpopup .form-section form {
        padding: 0;
    }

    .newpopup .form-section {
        min-height: 96vh;
        width: 100%;
    }
}

.phone-group {
    display: flex;
    align-items: center;
    width: 100%;
    /* max-width: 350px; */
    border: 1px solid #ccc;
    border-radius: 5px !important;
    height: 42px;
}

.country-code {
    width: 70px;
    text-align: center;
    border-right: 1px solid #ccc;
    font-size: 14px;
    color: #555;
}

.phone-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 14px;
}

.phone-group:focus-within {
    border-color: #0d6efd;
}

.submit-btn.disabled {
    color: #a51c30 !important;
    ;
    background-color: #fff;
    border: 1px solid #a51c30;
    cursor: not-allowed !important;
}