.contact-page{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact{
    position: relative;
    padding: 80px 0 40px;
    background-color: #F5F7F7;
    min-height: 540px;
    flex: 1;
    overflow: hidden;
}

.contact-title{
    font-weight: 500;
    font-size: 44px;
    line-height: 46px;
    margin-bottom: 42px;
    color: #262626;
}

.contact-links{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link a{
    font-weight: 500;
    font-size: 24px;
    color: #262626;
    transition: color 300ms;
}

.contact-link a:hover{
    color: #939393;
}

.contact-address{
    margin-top: 42px;
    font-size: 16px;
    line-height: 140%;
    max-width: 356px;
}

.contact-socials{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 12px;
}

.contact-socials-group{
    display: flex;
    gap: 12px;
}

.contact-social{
    flex: none;
}

.contact-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 300ms;
}

.contact-social a:hover{
    opacity: 0.7;
}

.contact-map{
    background-color: #fff;
    position: absolute;
    inset: 0 0 0 auto;
    width: 50vw;
}

.contact-map-loader{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    inset: 0;
}

@media screen and (max-width: 1279px){
    .contact {
        padding: 64px 0 64px;
        min-height: 300px;
    }

    .contact-title {
        font-size: 36px;
        line-height: 105%;
        margin-bottom: 20px;
    }

    .contact-links {
        gap: 12px;
    }

    .contact-link a {
        font-size: 20px;
    }

    .contact-address {
        margin-top: 20px;
        font-size: 14px;
        line-height: 130%;
        max-width: 320px;
    }

    .contact-socials{
        margin-top: 20px;
    }
}

@media screen and (max-width: 1024px){
    .contact-map{
        position: relative;
        width: 100%;
        height: 300px;
    }

    .contact{
        padding: 0;
        min-height: auto;
    }

    .contact-content{
        padding: 64px 0;
    }
}

@media screen and (max-width: 767px){
    .contact-content {
        padding: 54px 0;
    }

    .contact-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .contact-link a {
        font-size: 18px;
    }

    .contact-map {
        height: 270px;
    }
}

@media screen and (max-width: 428px){
    .contact-socials{
        gap: 8px;
    }

    .contact-socials-group{
        gap: 8px;
    }
}