body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 250px;
    background-color: #6699CC;
    gap: 36px;

    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: white;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 32px;
    padding-left: 63px;
    padding-right: 63px;
    border-radius: 50%;
}

.footer-logo-image {
    width: 135px;
    height: 45px;
}

.footer-link-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;

    @media (max-width: 720px) {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
}

.footer-link, .footer-link:hover, .footer-link:active, .footer-link:visited {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 16px;
    color: white;
}

.footer-credits-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 23px;
}

.footer-vardi-logo {
    width: 112px;
    height: 72px;
}

.footer-akeon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.footer-akeon-logo {
    width: 89px;
    height: 54px;
}

.footer-akeon-text {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    opacity: 50%;
    color: white;
    letter-spacing: 0;
    line-height: 100%;
}

.footer-copyrights-container {
    width: 995px;
    display: flex;
    flex-direction: row;
    gap: 174px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 24px;
    @media (max-width: 720px) {
        width: auto;
        flex-direction: column-reverse;
        gap: 18px;
        align-items: flex-start;
    }
}

.footer-last-links-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;    
    align-items: center;
    gap: 12px;

    @media (max-width: 720px) {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background-color: white;
    padding: 24px;
    gap: 24px;
    box-shadow:
        0 8px 8px -4px rgba(10, 13, 18, 0.03),
        0 20px 24px -4px rgba(10, 13, 18, 0.08);
    @media (max-width: 720px) {
        width: 360px;
        border-radius: 12px 12px 0 0;
        top: auto;
        bottom: 0;
        opacity: 1;
        transform: translate(-50%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-title {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 18px;
    line-height: 28px;
    color: black;
}

.modal-text {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    color: #535862;
    letter-spacing: 0;
}

.modal-button {
    width: 100%;
    border-radius: 8px;
    background-color: #6699CC;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.footer-link, .footer-link:hover, .footer-link:active, .footer-link:visited {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 16px;
    color: white;
    white-space: nowrap;
}