@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SF-Pro.ttf') format('truetype');
    font-display: swap;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'SF Pro', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.header,
.footer {
    text-align: center;
}

.header {
    margin-top: 20px;
}

.footer {
    margin-bottom: 0px;
}

.footer p {
    color: #B5B5B5;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.container {
    flex: 1;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.logo {
    width: 183.15px;
    height: 83.023px;
}

h1.page-title {
    text-align: center;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, rgba(21, 33, 89, 0.90) 0%, rgba(8, 103, 147, 0.90) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    h1.page-title {
        font-size: 65px;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    p.description {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-top: 60px;
    }

    .hidden-sm {
        display: none;
    }
}

h2 {
    color: rgba(51, 51, 51, 0.90);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 80px;
    margin-bottom: 20px;
}

.mt-20px {
    margin-top: 20px !important;
}

p.description {
    color: #333;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.aiko-links-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}

.aiko-link {
    border-radius: 35px;
    border: 2px solid #5FAFBC;
    background: #FFF;
    box-shadow: 0px 1px 10.1px 0px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 30px;
    justify-content: flex-start;
    width: 200px;
    min-width: 150px;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.aiko-link:hover {
    background-color: #E0F7FA;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.35);
}

.aiko-link:active {
    background-color: #B2EBF2;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.aiko-link span {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 510;
    line-height: 31.2px;
}

.aiko-link img {
    height: auto;
    max-width: 100px;
    aspect-ratio: 1 / 1;
    object-fit: cover;}

.aiko-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.aiko-chat-content {
    padding-top: 18px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #17235B;
    border-radius: 30px;
    display: flex;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.3);
}

.aiko-divider {
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    margin: 40px 0;
}

@media (min-width: 768px) {
    p.description {
        max-width: 792px;
        margin-left: auto;
        margin-right: auto;
    }

    .aiko-links-container {
        flex-direction: row;
        gap: 25px;
    }

    .aiko-link span {
        font-size: 28px;
        line-height: 36.4px;
    }

    .aiko-chat-content {
        width: 600px;
        padding-top: 47px;
        padding-bottom: 0px;
        padding-left: 45px;
        padding-right: 45px;
    }
}