@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

body {
    font-family: 'DM Sans', sans-serif;
    color: rgb(0, 0, 0);
    font-weight: 400;
}

.hover-underline {
    display: inline-block;
    position: relative;
    color: #1D3D6F;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 6px;
    left: 0;
    background-color: #1D3D6F;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

a,
a:link,
a:visited,
a:active {
    text-decoration: none;
}

.nav-link,
.nav-link:hover {
    color: #1D3D6F;
    font-weight: 700;
    font-size: 18px;
}

a:hover {
    color: #1D3D6F;
}

.flex {
    display: flex;
}

footer {
    background-color: #1D3D6F;
    color: rgb(255, 255, 255);
}

.footer-row {
    display: flex;
}

footer h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}

footer h2 {
    font-size: 18px;
    font-weight: 400;

}

.footer-row h2 {
    margin: 0;
    padding-left: 2rem;
}

.contact a,
.contact a:link,
.contact a:visited,
.contact a:hover,
.contact a:active {
    color: #fff;
}

footer .btn-primary {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 700;
}

.btn-footer1 {
    border: 2px;
    border-color: #fff;
    background-color: #fff;
    color: #1D3D6F;
    border-style: solid;
}

.btn-footer2 {
    border: 2px;
    border-color: #fff;
    background-color: #1D3D6F;
    color: #fff;
    border-style: solid;
}

.social-logo {
    max-height: 40px;
}

.modal-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1D3D6F;
}

.btn:hover,
.btn:active {
    background-color: #efd3d3 !important;
    border-color: #efd3d3 !important;
    color: #1D3D6F !important;
}

.pink-footer {
    background-color: #efd3d3;
}

.pink-footer a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #1D3D6F;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    color: #1D3D6F;
}

.wa-chat-box-poweredby {
    display: none;
}

.cky-consent-container {
    z-index: 99999999 !important;
}

.description,
.title {
    color: #1D3D6F;
}

.title {
    font-size: 24px;
    font-weight: 700;
}

.description a {
    text-decoration: none;
    color: #1D3D6F;
}

.footer-icon-request {
    font-size: 22px;
    color: #efd3d3;
}

.btn-portal {
    background: #1D3D6F;
    color: #ffff !important;
    border-radius: 10px;
    margin-left: 10px;
}

.btn-portal:hover {
    background: #efd3d3;
    color: #1D3D6F !important;
}

@media (max-width: 1199px) {
    .no-img-mobile {
        display: none;
    }

    .full-width {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .social-icons {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        justify-content: center;
    }

    .nav {
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .nav {
        flex-direction: column;
        text-align: center;
    }

    .padding-mobile {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .no-mobile {
        display: none;
    }

    .no-tb-padding-mobile {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (min-width: 576px) {
    .no-padding {
        padding: 0;
    }

    .padding-no-mobile {
        padding-left: 2rem;
    }

    .margin-bottom-no-mobile {
        margin-bottom: 2rem;
    }
}