@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --lifelinkrdarkBlue: #003cae;
    --topbarColor: #000928;
    --menu-text-color-hover: #BC0137;
    --barlowFont: "Barlow", serif;
    --content-width: min(100%, 1320px);
    --light-red: #f4dfe4;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
}


body {
    font-family: var(--barlowFont);
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

.br_mobile_hidden {
    display: block;
}


/*? Top Bar Css START */
.top-bar {
    background-color: var(--topbarColor);
    color: white;
    font-size: 14px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-weight: 500;
    position: fixed;
    margin-right: 24px;
    width: 100%;
    z-index: 999;
}

.top_inner {
    background-color: var(--topbarColor);
    color: white;
    font-size: 14px;
    padding: 8px 75px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    font-weight: 500;
    position: fixed;
    /* max-width: var(--content-width); */
    /* max-width: min(100%, 1230px, 1140px); */
    margin: auto;
    width: 100%;
    z-index: 999;
}



.top-bar .left-links {
    display: flex;
    gap: 10px;
}

.top-bar .left-links a {
    padding: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--barlowFont);
    transition: all .3s ease;
    text-wrap-mode: nowrap;
}

.top-bar .left-links a:hover {
    color: #bc0137;
}

.top-bar .right-message {
    font-size: 16px;
    /* width: 54.12%; */
    text-wrap-mode: nowrap;
}

.top-bar .right-message a {
    color: yellow;
    font-weight: 700;
    text-decoration: none;
}
.footer .footer-container{
    padding-inline: 20px;
}

/*! Top Bar Css  ENDS */


/*? NAVBAR Css  START */

.menu-opener {
    display: none;
}

.nav-bar {
    display: flex;
    position: fixed;
    margin-top: 60px;
    z-index: 999;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* background-color: #F2F2F2; */
    background-color: #fff;
    padding: 0px 24px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.nav-bar .logo {
    display: flex;
    align-items: center;
}

.nav-bar .logo img {
    /* width: 300px; */
    width: 170px;
}

.nav-bar .menu {
    display: flex;
    gap: 27px;
    align-items: center;
    margin-bottom: 1.5px;
}

.pc-menu .pc-li {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar .menu a {
    text-decoration: none;
    color: #160647;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--barlowFont);

}

.dropdown-toggle {
    text-decoration: none;
    color: #160647;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer;
}


.mobile-menu .dropdown .dropdown-menu {
    box-shadow: none;
}

.mobile-menu .dropdown .dropdown-menu li a {
    color: #160647;
    font-size: 18px;
}


.mobile-menu .dropdown .dropdown-menu {
    display: block;
    overflow: visible;
    top: 101%;
    left: 12px;
    background-color: #fff;
    list-style: none;
    padding: 10px;
    padding-left: 20px;
    z-index: 10;
    transform: translateY(15px);
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out, visibility 0s 0.2s;
}


.nav-bar .menu a:hover {
    /* color: #00b3ff; */
    color: var(--menu-text-color-hover);
}

.nav-bar .menu a.active {
    /* color: #00b3ff; */
    color: var(--menu-text-color-hover);
}

.nav-bar .menu .dropdown {
    position: relative;
}


.nav-bar .menu .dropdown-menu a {
    display: block;
    padding: 1px 10px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}


.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6.5px;
    align-items: center;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    text-decoration: none;
    padding: 8px 12px;
    color: #000;
    display: inline-block;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    margin-top: 70px;
    padding-top: 20px;
    height: 100%;
    border-top: 1px solid #e9e9e9;
}

/* Dropdown menu */
.menu .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    display: block;
    position: absolute;
    width: 295px;
    top: 101%;
    left: 12px;
    background-color: #fff;
    box-shadow: 0 0px 0px 1px rgb(173 173 173 / 20%);
    list-style: none;
    padding: 10px;
    padding-top: 20px;
    padding-left: 20px;
    z-index: 10;
    transform: translateY(15px);
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out, visibility 0s 0.2s;
    /* Add visibility delay */
}

.menu .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out, visibility 0s 0s;
    /* Remove visibility delay */
}



.menu .dropdown-menu li {
    padding: 5px 0;
}

.menu .dropdown-menu li a {
    display: block;
    padding: 5px 10px;
    color: #000;
}


.features-down-icon {
    display: inline-block;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.nav-bar .menu .dropdown-menu a:hover {
    background-color: #fff;
    /* color: #00b3ff; */
    color: var(--menu-text-color-hover);
}

.nav-bar .menu .button {
    /* background-color: var(--lifelinkrdarkBlue); */
    background-color: var(--menu-text-color-hover);
    color: white;
    height: 40px;
    width: 190px;
    /* padding: 14px 20px; */
    border-radius: 35px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 99;
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-bar .menu .button:hover {
    /* background-color: #00b3ff; */
    background-color: var(--menu-text-color-hover);
    color: #fff;
    transition: .2s ease-in-out;
}


.free-trial-btn {
    padding-left: 7px;
}

.pc-li {
    list-style: none;
}

.button {
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    background: #007bff;
    border-radius: 35px;
    transition: background 0.3s;

}

.button:hover {
    background: #0056b3;
}

.button .text {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    /* border-radius: 35px; */
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.button .text:nth-child(1) {
    transform: translate(-50%, -50%);
}

.button .text:nth-child(2) {
    transform: translate(-50%, 150%);
    opacity: 0;
}

.button:hover .text:nth-child(1) {
    transform: translate(-50%, -150%);
    opacity: 0;
}

.button:hover .text:nth-child(2) {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/*! NAVBAR Css  Ends */



/*? Footer Css  */

.footer {
    /* background-color: #4055b2; */
    background-color: #FFF8F8;
    color: white;
    padding: 64px 0px;
    font-family: "Karla", sans-serif;
    padding-bottom: 0px;
}

footer.footer {
    margin-top: auto;
}


.footer .footer-container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 21px;
}

.footer .footer-column h3 {
    font-size: 23px;
    font-weight: 700;
    line-height: 29px;
    /* color: #FFFFFF; */
    color: #000927;
    margin-bottom: 20px;
    /* font-family: "Karla", sans-serif; */
    font-family: "Nunito", Sans-serif;

}

.footer .footer-column ul {
    list-style: none;
}

.footer .footer-column ul li {
    margin-bottom: 0px;
    font-size: 17px;
}

.footer .footer-column ul li a {
    text-decoration: none;
    /* color: white; */
    color: #666666;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    /* font-family: "Karla", sans-serif; */
    font-family: var(--barlowFont);

}

.footer .footer-column ul li a:hover {
    /* color: #3694ff; */
    color: #b82f52;
    transition: .1s ease-in-out;
}

.footer .bottom-footer {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #d9d9d9;
    background-color: #f4f4f4 !important;
    padding-inline: 20px;
    padding-block: 15px;
}

.footer .bottom-footer p {
    color: #666666 !important;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Nunito", Sans-serif;
}

.footer .bottom-footer a {
    /* color: #ffffff; */
    color: #b82f52;
    text-decoration: none;
    font-size: 10px;
    margin: 0 1px;

}


.footer .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer .logo-container img {
    max-height: 60px;
}

.footer .logo-container .logo_engmates {
    width: 280px;
}

.links-footer-bottom {
    /* color: #fff; */
    font-size: 12px;
    text-align: left;
    line-height: 26px;
    max-width: 820px;
}



/*? Extra Css :--  */

.popUpCalendly {
    flex-direction: column;
}

.popUpCalendly .headings {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popUpCalendly .headings h1 {
    margin: 15px 0;
    margin-top: 7px;
    color: #160647;
    text-align: center;
    font-size: 40px;

}

.popUpCalendly .headings h3 {
    color: var(--menu-text-color-hover);
}

.popUpCalendly .headings p {
    color: #160646a6;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 28px;
    width: 55%;
}

.back-strip {
    position: relative;
}

.back-strip::after {
    content: '';
    position: absolute;
    background: #00b3ff;
    height: 35%;
    width: 100%;
    z-index: -1;
    left: 0;
    bottom: 2px;

}

#snowfall {
    position: sticky;
    top: 0;
    left: 0;
    color: #ffffff47;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    /* Behind all content */
}


#snowfall canvas {
    filter: blur(1px) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}



/*? Responsive Code  */

@media (max-width:1350px) {
    .nav-bar {
        padding: 0px 70px;
    }

    .top_inner{
        padding: 8px 30px;
    }
}

@media (max-width: 1250px) {
    .nav-bar {
        padding: 0px 45px;
    }

    .top-bar .left-links {
        display: none;
    }

    .top-bar .top_inner{
        justify-content: center;
    }
    .top-bar {
        justify-content: center;
    }

    /* .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    } */

}

@media (max-width: 1050px) {


    .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-bar {
        padding: 0px 30px;
    }

}


@media (max-width: 991px) {


    .popUpCalendly {
        margin-top: 120px !important;
    }

    .nav-bar {
        margin-top: 0px;
    }

    .footer .bottom-footer {
        flex-direction: column;

    }

    footer .logo-container {
        flex-direction: column;

    }

    .nav-bar .menu ul.pc-menu {
        display: none;
    }

    .menu-opener {
        display: block;
        font-size: 30px;
        color: #160647;
        cursor: pointer;

    }

    .nav-bar {
        display: flex;
        padding: 17px 17px;
        align-items: center;
    }

    .top-bar {
        display: none;
    }

    .menu ul {
        list-style: none;
        padding: 0 22px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
        height: 100vh;
        background: #fff;
    }

    .popUpCalendly {
        margin-left: 12px;
        margin-right: 12px;
    }

}

@media (max-width: 768px) {

    .popup_cal_time-slots-section {
        height: fit-content !important;
    }

    .popUpCalendly .headings p {
        width: 80%;
    }

    .nav-bar {
        align-items: center;
        padding-left: 15px;
    }

    .popUpCalendly {
        margin-top: 120px !important;
    }

    .menu .dropdown-menu {
        max-height: 350px;
        overflow: auto;
    }

    .nav-bar .logo img {
        width: 200px;
    }

    .nav-bar .menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .top-bar .left-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 769px) {

    .footer {
        background-color: #FFF8F8;
        color: white;
        padding: 40px 20px;
        padding-inline: 0px;
        padding-bottom: 0px;
    }

    .footer .footer-container {
        grid-template-columns: repeat(1, 1fr);
        padding-inline: 20px;
    }

    .footer .logo-container {
        margin-top: 20px;
        gap: 25px;
    }



    .menu .dropdown-menu {
        width: 300px;
    }

    .br_mobile_hidden {
        display: none;
    }
}

@media (max-width: 576px) {

    .popUpCalendly .headings p {
        width: 90%;
    }

    .popUpCalendly .headings h1 {
        font-size: 26px;
    }
}