
.main-footer {
    width: 100%;
    background-color: #19284E;
    display: flex;
    justify-content: space-between;
    padding: 60px;
    box-sizing: border-box;

}

.footer-content-first {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content-first strong {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 10px;

}


.footer-content-second {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-address {
    display: flex;
    align-items: center;

}

.footer-address span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    padding: 0;
}

.footer-address p {
    margin: 0;
    padding: 0;
    margin-left: 8px;
    margin-right: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);

}

.footer-email {
    display: flex;
    align-items: center;

}

.footer-email span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    padding: 0;
}

.footer-email p {
    margin: 0;
    padding: 0;
    margin-left: 8px;
    margin-right: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
}

.footer-right span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.footer-right p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
    .main-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;


        padding: clamp(20px, 5vw, 40px);
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-content-second {
        align-items: start;
        text-align: center;
        margin: 40px 0;
    }

    .footer-address,
    .footer-email {
        justify-content: center;
    }

    .footer-address {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 4px;
    }

    .footer-address span {
        margin: 0 0 5px;
    }

    .footer-address p {
        margin: 0 0 015px;
    }
}