.contacts {
    position: relative;
    overflow: hidden;
    max-height: 930px;
    background-color: var(--theme-color);
}

.contact__inner {
    padding-top: var(--block-offset);
    padding-bottom: var(--block-offset);
}

.contact__item {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 15px rgba(31, 229, 180, 0.15);
    box-shadow: 0px 0px 15px rgba(31, 229, 180, 0.15);
    border-radius: 14px;
    max-width: 580px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px;
}

.contact__item--column .contact__info {
    margin-top: auto;
}

.contact__text {
    font-size: 20px;
    line-height: 28px;
    padding: 10px 0 14px 0;
    color: var(--title-color);
    font-weight: 500;
    text-align: center;
}

.contact__text span,
.contact__text a {
    color: #FF7C33;
    font-weight: 500;
}

.contact__text.pb10 {
    padding-bottom: 10px;
}

.contact__text:nth-last-child(1) {
    margin-top: auto;
    padding-bottom: 0;
}

.contact__text span.green {
    color: #1fe5b4;
    font-weight: 400;
    display: block;
}

.contact__box {
    margin: auto 0;
}

.footer_social_block {
    display: flex;
    flex-direction: row;
}

.contact_icons {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    align-self: start;
}

.contact_icon_text {
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
    max-width: 350px;
}

.social_icons,
.social_text {
    display: flex;
    align-items: center;
}

.social_icons {
    margin: 0 6px;
}

.social_text + .social_text {
    margin-top: 6px;
}

.social_icons-divider {
    height: 1px;
    background-color: var(--theme-color-opacity-40);
    width: 56%;
    margin: 7px 0 16px;
}

.contact_icon {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact_icon--youtube {
    background-size: 85%;
}

.contact_icon_link {
    color: #FF7C33;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    margin-left: 10px;
}

.footer_download_buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.footer_download_button {
    width: 164px;
    height: 60px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 14px;
    transition: 0.2s;
}

.footer_download_button:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.footer_download_button + .footer_download_button {
    margin-left: 8px;
}

.copyright__text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    padding-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact__item {
        padding: 16px;
    }

    .contact__item + .contact__item {
        margin-top: 12px;
    }

    .contact__text {
        font-size: 17px;
        line-height: 25px;
        padding: 6px 0 14px 0;
    }
}

@media (max-width: 500px) {
    .contact__text {
        font-size: 14px;
        line-height: 22px;
    }

    .contact__info {
        max-width: 100%;
    }
}

@media (max-width: 330px) {
    .footer_download_button {
        width: 120px;
        height: 47px;
        background-size: contain;
    }

    .contact_icon {
        width: 40px;
    }
    .social_icons {
        margin: 0 3px;
    }
    .social_icons-divider {
        margin-bottom: 10px;
    }

    .contact_icon_text {
        font-size: 13px;
    }
    .contact_icon_link {
        font-size: 14px;
    }
    .copyright__text {
        font-size: 12px;
    }
}