@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-SemiBoldItalic.woff2') format('woff2'),
        url('./Font/Aileron-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-BoldItalic.woff2') format('woff2'),
        url('./Font/Aileron-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-LightItalic.woff2') format('woff2'),
        url('./Font/Aileron-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-BlackItalic.woff2') format('woff2'),
        url('./Font/Aileron-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-HeavyItalic.woff2') format('woff2'),
        url('./Font/Aileron-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Thin.woff2') format('woff2'),
        url('./Font/Aileron-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Black.woff2') format('woff2'),
        url('./Font/Aileron-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-ThinItalic.woff2') format('woff2'),
        url('./Font/Aileron-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-UltraLightItalic.woff2') format('woff2'),
        url('./Font/Aileron-UltraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Regular.woff2') format('woff2'),
        url('./Font/Aileron-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Light.woff2') format('woff2'),
        url('./Font/Aileron-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Bold.woff2') format('woff2'),
        url('./Font/Aileron-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Heavy.woff2') format('woff2'),
        url('./Font/Aileron-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-UltraLight.woff2') format('woff2'),
        url('./Font/Aileron-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-SemiBold.woff2') format('woff2'),
        url('./Font/Aileron-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('./Font/Aileron-Italic.woff2') format('woff2'),
        url('./Font/Aileron-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #00B493;
    --secondary-color: #CCE5FB;
    --blue-color: #027BEE;
    --blue-hover-color: #0160b9;
    --heading-bg: #A3E2BE;
}

body {
    font-family: 'Aileron';
    background: #ECEFF4;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0px 10px 10px #8C9ABF29;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 2px 20px;
    background: #00b493;
    color: #fff;
}

.copyright {
    margin-right: 5px
}

.version-txt {
    transform: translateY(18%);
}

.top-navbar,
nav {
    width: 100%;
    background: #fff;

}

.top-navbar {
    background: var(--primary-color);
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.navbtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbtn a {
    margin-right: 8px;
    border-radius: 4px;
    background: #fff;
    border: none;
    text-decoration: none;
    color: #000;
    width: 25px;
    text-align: center;
    height: 24px;
    padding: 2px 3px;
}

.navbtn a:hover {
    background: #000;
    color: #fff;
}

.logo-container {
    display: flex;
    align-items: center;

}

.logo-heading {
    margin-left: 12px;
}

.bottom-navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px
}

.logo img {
    width: 60px;
    margin-top: -4px;
}

.logo-heading h4 {
    font-size: 18px;
    color: #0C1A41;
    font-weight: bold;
    text-align: left;
    font-family: Aileron;
    margin-top: 0;
    margin-bottom: 5px;
}

.logo-heading h5 {
    font-size: 15px;
    text-align: left;
    font-weight: 600;
    color: #8F949D;
    margin-top: 0;
    margin-bottom: 0;
}

.login .btn {
    text-decoration: none;
    border: 1px solid gray;
    padding: 10px 20px;
    font-size: 20px;
    background: var(--blue-color);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    line-height: normal;

}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

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

.login i {
    margin-left: 5px;
    font-size: 20px;
    cursor: pointer;
}

.login i:hover {
    display: inline-block;
    animation: shake 0.5s ease-in-out 0.5s;
}

.swiper-container {
    position: relative;
    min-width: 360px !important;
    border-radius: 10px;
    overflow: hidden;
    flex: 4;
    height: 540px;
}

.swiper-button-disabled {
    opacity: .3;
    cursor: not-allowed;
}

.landing-text{
    position: absolute;
    bottom: 10%;
    color: #fff;
    text-align: center;
    background: #0000008e;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.mySwiper {
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    /* object-fit: cover; */
    position: relative;
    height: 100%;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-content {
    background: #FFFFFFD9;
    position: absolute;
    top: 70%;
    padding: 0px 15px;
    border-radius: 8px;
    max-width: 568px;
    transform: translateY(-50%);
    left: 22%;
}

.swiper-content h1 {
    font-size: 56px;
    font-weight: bold;
    color: #0C1A41;
    text-align: left;
}

.swiper-content h3 {
    font-size: 40px;
    color: #0C1A41;
}

.E-service-container {
    width: 100%;
    background: var(--heading-bg);
    padding: 25px 10px;

}

.E-service {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.left-side-container,
.right-side-container,
.our-service-container {
    padding: 10px 15px;
    background: #FFFFFF;
    border: 1px solid #F2F4F8;
    box-shadow: 0px 10px 10px #8C9ABF29;
    border-radius: 8px;
    min-width: 330px;
    flex: 1;
}


.E-service-container h3 {
    font-size: 20px;
    text-align: left;
    color: #0C1A41;
    font-weight: bold;
    position: relative;
}

.highlight-list {
    width: 100%;
    height: 310px;
    overflow-y: auto;
}

.highlight-list ul {
    list-style: none;
}

.highlight-list ul li {
    border: 1px solid #F2F4F8;
    padding: 5px 15px;
    line-height: normal;
    background: #F2F4F8;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #0C1A41;
    font-size: 16px;
    text-align: left;
    border: none;

}

.highlight-list ul li p {
    color: #00B493;
}

.highlight-list ul li p span {
    margin-left: 5px;
}

.E-service-container h3::after {
    content: "";
    width: 4px;
    height: 20px;
    background: #00B493;
    position: absolute;
    top: 7%;
    border-radius: 3px;
    left: -16px;
    right: 0px;
}

.E-services-logo {
    display: grid;
    justify-items: center;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
}

.image-box {
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
    color: #fff;
}

.image-box img {
    width: 100%;
}

.our-service-container {
    /* width: 100%; */
    background: #FFFFFF;
}

.service-heading {
    text-align: center;
    margin-bottom: 40px;
}

.service-heading h1 {
    font-size: 32px;
    color: #0C1A41;
    font-weight: bold;
    position: relative;
}

.service-image {
    margin: auto;
}

.service-heading h1::after {
    content: " ";
    width: 131px;
    height: 4px;
    background: var(--blue-color);
    position: absolute;
    left: 50%;
    top: 115%;
    border-radius: 2px;
    transform: translateX(-50%);
}

.our-service-logo {
    display: grid;
    justify-items: center;
    align-items: start;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
}
.our-service-logo img{
    width: 100%;
}
.tab {
    flex-direction: column;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    filter: drop-shadow(0px 0px 10px #00000029);
}

.tab.active {
    position: relative;
}

.tab.active::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    background: #00B493;
    top: 133%;
}

.tab.active::before {
    content: "";
    position: absolute;
    border: 8px solid transparent;
    border-top: 8px solid #00B493;
    top: 134%;
}

.image-heading {
    font-size: 16px;
    color: #0C1A41;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.our_service {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
}

.our-left-side {
    width: 50%;
    padding-right: 30px;
    min-width: 360px;
}

.our-right-side {
    width: 50%;

}

.our-left-side h3 {
    font-size: 29px;
    color: #0C1A41;
    font-weight: bold;
    text-align: left;
    line-height: 40px;
}

.our-right-side p {
    text-align: left;
    font-size: 15px;
    color: #8F949D;
    line-height: 30px;
}

.links-container {
    width: 100%;
    background: #CCE5FB;

}

.links-container h1::after {
    background: #B35AFF;
}

.links-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.links a{
    margin-bottom: 10px;
}

.inner-box {
    background: #fff;
    box-shadow: 0px 10px 10px #8C9ABF29;
    border-radius: 8px;
    opacity: 1;
    border: 1px solid #F2F4F8;
    padding: 20px;
    min-width: 260px;
    margin-bottom: 20px;
    flex: 1;
}

.box-image {
    text-align: center;
    width: 100%;
    height: 40%;
    margin-bottom: 25px;
}

.box-image img {
    height: 100%;
}

.links h2 {
    text-align: center;
    color: #0C1A41;
    font-size: 24px;
    font-weight: bold;
}

.links a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 7px 10px;
    font-weight: 700;
}

.our-service-container.about h1::after {

    background: #F2B705;

}

.About-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.about-image {
    text-align: right;
    overflow: hidden;
    max-height: 500px;
    border-radius: 10px;
}
.about-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.about-content {
    /* width: 50%; */
    text-align: center;
    margin-left: 30px;
}

.about-content p {
    font-size: 16px;
    color: #0C1A41;
    line-height: 27px;
}

.about-content ol{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
}
.about-content li{
    border-width: 1px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-wrap: nowrap;
    border-radius: 8px;
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
}

.partners-container {
    width: 100%;
    padding: 70px 0;
    background: var(--secondary-color);
}

.partner-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-logo a {
    padding: 10px;
    background: #fff;
    width: 170px;
    height: 118px;
    text-align: center;
    box-shadow: 0px 10px 10px #7090B03D;
    border: 1;
    border-radius: 8px;
    opacity: 1;
    display: flex;
    justify-content: center;
}

.partner-logo img {
    object-fit: contain;
    width: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 30px;
    flex-wrap: wrap;

}

.footer-left p,
.footer-right p,
.footer-middle p {
    margin: 0 !important;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600px;
}

.footer-right p img {
    width: 30px;
    margin-left: 3px;
}

.footer-right p a,
.footer-left p a {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.link-list-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    gap: 5px;
}

.custom-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    /* background: var(--primary-color); */
    right: 10px;
    padding: 8px;
    font-size: 40px;
    /* border-radius: 8px; */
    border-bottom-left-radius: 8px;
    color: #fff;
    font-weight: normal;
}

.login a {
    color: #fff;
    text-decoration: none;

}

.custom-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    /* background: var(--primary-color); */
    color: #fff;
    z-index: 10;
    padding: 8px;
    font-size: 40px;
    /* border-radius: 8px; */
    border-bottom-right-radius: 8px;
}

@media screen and (max-width:630px) {
    .logo-heading {
        display: none;
    }

    .bottom-navbar {
        padding: 10px 0;
    }
}

@media screen and (max-width:532px) {
    .swiper-content {
        margin-right: 15px;
        top: 80%;
    }

}


@media screen and (max-width:1000px) {
    .our_service {
        flex-wrap: wrap;
    }

    .our-left-side,
    .our-right-side {
        width: 100%;
    }

    .About-container {
        flex-wrap: wrap;
    }

    .about-image,
    .about-content {
        width: 100%;
        margin-bottom: 15px
    }

    .about-content {
        margin: 0;
    }

    .about-image img {
        width: 100%;
    }

    .about-content p {
        width: 100%;
    }
}

@media screen and (max-width:370px) {
    .partner-logo {
        width: 100%;
    }

}

@media screen and (max-width:470px) {
    .tab {
        width: 50%;
    }

    .swiper-content h3 {
        font-size: 25px;
    }

    .swiper-content h1 {
        font-size: 40px;
    }

    .our_service {
        display: none;
    }

}

.flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10px;
    gap: 10px;
}

.login-area {
    padding: 20px;
    background: #FFFFFF;
    width: 22%;
    height: max-content;
    min-width: 355px;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    height: 540px;
}

.error,
.errorMessage {
    color: red;
}

#LoginForm_password,
#LoginForm_username {
    padding-left: 30px !important;
}

.captcha img {
    border: 1px solid #D9DFEA;
    border-radius: 5px;
    padding-top: 5px;
}

#login-form input {
    border: 1px solid #D9DFEA;
    border-radius: 5px;
    padding: 10px;
    color: #0C1A41;
    font-weight: 500;
    position: relative;
}

.userIcon {
    position: absolute;
    z-index: 11;
    top: 22px;
    left: 10px;
    font-size: 18px !important;
    transform: translateY(-50%);
    color: #5F6368;
    filter: invert(0);
}

.eye-icon {
    position: absolute;
    z-index: 11;
    right: 10px;
    top: 22px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #5F6368;
    filter: invert(0);
    cursor: pointer;
}

.bg-layout {
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    margin: 50px auto;
    border: 1px solid gray;
    padding: 20px;
    box-shadow: 0px 0px 20px #00000029;
    border-radius: 16px;
    border: none;
}

.input-control input {
    border: 1px solid #D9DFEA;
    border-radius: 5px;
    padding: 20px 7px;
    color: #0C1A41;
    font-weight: 500;
    position: relative;
}
#optid {
    display: none;
}
.forgot-heading {
    text-align: center;
}

.forgot-heading h2 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: bold;
}

.passicon {
    position: absolute;
    z-index: 11;
    top: 22px;
    left: 10px;
    font-size: 20px !important;
    transform: translateY(-50%);
    color: #5F6368;
}

input[type='text'],
input[type='password'] {
    width: 100%;
}

input[type='text']:focus,
input[type='password']:focus {
    outline-color: var(--primary-color);
    border-color: var(--primary-color);
    outline: none !important;
}

.bg-overlay {
    width: 22%;
    background: #1c191996;
    height: max-content;
    min-width: 360px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.295);
    overflow: hidden;
}

.input-control {
    margin-bottom: 10px;
    position: relative;
}

.login-heading {
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}

.login-heading h2 {
    font-size: 40px;
    font-weight: bold;
    color: #00b493;
}

.login-heading h5 {
    font-size: 20px;
    font-weight: bold;
    color: #0C1A41;
}

#login-form input:focus {
    border: 1px solid var(--blue-color)
}

.btn {
    border-radius: 5px;
    font-weight: 600;
    background: var(--blue-color);
    color: #fff;
}

.btn:hover {
    background: #0c5da9;
    color: #fff;

}

.sign-mid h1 {
    text-decoration: none;
    font-size: 16px;
    text-align: center;
}

.modal-backdrop {
    z-index: 999 !important;
}

.modal-dialog {
    z-index: 11 !important;
}

.close-btn {
    color: #aaa;
    font-size: 45px;
    text-align: right;
    line-height: 27px;
    cursor: pointer;

    &:hover {
        color: var(--blue-color);
    }
}

.closeLoginAnimate {
    animation: fadeoutLogin .3s forwards;
}

@keyframes fadeoutLogin {
    0% {
        opacity: 1;
        top: 0;
    }

    100% {
        opacity: 0;
        top: -50px;
    }
}

/* Chat Window */
.chatbot-icon {
    transition: all .4s;
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    filter: drop-shadow(0px 0px 10px rgba(29, 28, 28, 0.274));
}

.chatbot-icon img {
    width: 100%;
    border-radius: 50%;
    background-color: #fff;
}

.tooltipChat{
    display: none;
    position: absolute;
    right: 106%;
    background: #fff;
    padding: 7px;
    border-radius: 5px;
    width: max-content;
    box-shadow: 0px 0px 10px #00000036;
}
.chatbot-icon:hover .tooltipChat{
    display: block;
}

.chatbot-container {
    position: fixed;
    width: 350px;
    bottom: 50px;
    right: 37px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    transform: scale(0);
    /* Initially hidden */
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    /* Smooth transition */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.chat-header {
    background-color: var(--primary-color);
    padding: 15px;
    color: white;
    text-align: left;
    position: relative;
}

.chat-header h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.chat-header .close-btn,
.chat-header .refresh-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transform: translateY(-50%);
}

.chat-header .refresh-btn {
    right: 42px;
}

.chat-box {
    height: 400px;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 2px solid #eee;
    /*background: #f9f9f9;*/
    background: linear-gradient(60deg, rgb(213, 247, 225) 0%, rgb(220, 226, 228) 100%);
}

.chat-input {
    display: flex;
    padding: 10px;
    position: relative;
    height: 56px;
}

.chat-input .fa-bars {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 7px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.chat-input input {
    flex: 1;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    /*padding-left: 42px;*/
}

.chat-input button {
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}

.suggetions ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.suggetions ul li {
    width: max-content;
    padding: 5px;
    background: var(--primary-color);
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
}

.chat-input button:hover {
    background-color: #008c72;
}

.message {
    margin-bottom: 10px;
}
.message.user {
    text-align: right;
}

.message.bot {
    text-align: left;
}

.message span {
    display: inline-block;
    padding: 5px 7px;
    border-radius: 5px;
    max-width: 90%;
    font-size: 13px;
}

.input-control input:focus+i {
    color: var(--blue-color) !important;
}

.message.user span {
    background-color: var(--primary-color);
    color: white;
}

.message.bot span {
    background-color: #fff;
}
/*.chatbot-table {
    background: #fff;
    border-radius: 5px; 
}
.chatbot-table th{
    background: var(--secondary-color);
}

.chatbot-table td, .chatbot-table th{
    padding: 2px;
    text-align: center;
    font-size: 11px;
}*/
.right-content-as h4 {
    font-family: 'Cairo', sans-serif;
    color: #0c1a41;
    font-weight: bold;
    font-size: 20px;
    text-align: center;

}

.right-content-as p {
    text-align: center;
    font-size: 16px;
    color: #9398a0;
    font-weight: 600;

}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 25px;
}

.nav-link a {
    text-decoration: none;
    font-size: 16px;
    color: #8F949D;
    font-weight: 600;
}

.nav-link a:hover {
    color: var(--primary-color)
}
@media screen and (max-width: 729px) {
    .flex-container{
        height: auto;
    }
    .swiper-container {
        height: fit-content;
    }
}

#signupModalCenter .signup_opt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#signupModalCenter .modal-header h5{
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}