/* .contacts {
    --Contacts-Horisontal-Padding: 240px;
    padding: 104px var(--Contacts-Horisontal-Padding) 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex-wrap: wrap;
    gap: 48px;

    .contacts-title {
        font-size: 40px;
        line-height: 56px;
        font-weight: 700;
    }

    .contacts-list {
        display: flex;
        flex-direction: row-reverse;
        align-self: stretch;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-start;
        align-content: flex-start;
        gap: 16px;
        width: 100%;

        .contact-item {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px;
            border-radius: 40px;
            border: 2px solid #EFEFF7;
            min-width: 200px;
            max-width: 332px;
            height: 152px;
            flex: 1 0 0;
            color: var( --Colors-Main-Dark);

            .contact-title {
                display: flex;
                align-items: center;

                .contact-icon {
                    width: 40px;
                    height: 40px;
                }
            }

            .contact-address {
                display: flex;
                flex-direction: column;
                gap: 8px;

                .contact-address-name {
                    font-size: 20px;
                    line-height: 28px;
                    font-weight: 700;
                }

                .contact-address-location {
                    font-size: 14px;
                    line-height: 20px;
                    font-weight: 600;
                    color: #7A7887;
                }
            }

            .contact-link-block {
                .contact-link-title {
                    font-size: 16px;
                    line-height: 24px;
                    font-weight: 700;
                }

                .contact-link {
                    font-size: 16px;
                    line-height: 24px;
                    font-weight: 700;
                    color: var(--Colors-Violet-500);
                    text-decoration: none;
                }
            }
        }
    }

    @media screen and (max-width: 1840px) {
        --Contacts-Horisontal-Padding: 200px;
    }

    @media screen and (max-width: 1740px) {
        --Contacts-Horisontal-Padding: 160px;
    }

    @media screen and (max-width: 1680px) {
        --Contacts-Horisontal-Padding: 120px;
    }

    @media screen and (max-width: 1580px) {
        --Contacts-Horisontal-Padding: 80px;
    }

    @media screen and (max-width: 1360px) {
        --Contacts-Horisontal-Padding: 72px;
    }

    @media screen and (max-width: 1200px) {
        --Contacts-Horisontal-Padding: 56px;
    }

    @media screen and (max-width: 1180px) {
        --Contacts-Horisontal-Padding: 40px;
    }

    @media screen and (max-width: 1024px) {
        padding-bottom: 96px;
    }

    @media screen and (max-width: 1140px) {
        .contacts-list {
            .contact-item {
                min-width: 292px;
                max-width: 552px;
            }
        }
    }

    @media screen and (max-width: 1000px) {
        .contacts-list {
            .contact-item {
                min-width: 284px;
            }
        }
    }

    @media screen and (max-width: 768px) {
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 80px;

        .contacts-list {
            .contact-item {
                max-width: 638px;
            }
        }
    }

    @media screen and (max-width: 720px) {
        --Contacts-Horisontal-Padding: 30px;
    }

    @media screen and (max-width: 700px) {
        --Contacts-Horisontal-Padding: 20px;
    }

    @media screen and (max-width: 400px) {
        padding-top: 64px;
        padding-bottom: 64px;
    }
} */

.contacts {
    --Contacts-Horisontal-Padding: 240px;
    padding: 104px var(--Contacts-Horisontal-Padding) 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex-wrap: wrap;
    gap: 48px;
}
.contacts .contacts-title {
    font-size: 40px;
    line-height: 56px;
    font-weight: 700;
}
.contacts .contacts-list {
    display: flex;
    flex-direction: row-reverse;
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    width: 100%;
}
.contacts .contacts-list .contact-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 40px;
    border: 2px solid #efeff7;
    min-width: 200px;
    max-width: 332px;
    height: 152px;
    flex: 1 0 0;
    color: var(--Colors-Main-Dark);
}
.contacts .contacts-list .contact-item .contact-title {
    display: flex;
    align-items: center;
}
.contacts .contacts-list .contact-item .contact-title .contact-icon {
    width: 40px;
    height: 40px;
}
.contacts .contacts-list .contact-item .contact-address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contacts .contacts-list .contact-item .contact-address .contact-address-name {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}
.contacts .contacts-list .contact-item .contact-address .contact-address-location {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #7a7887;
}
.contacts .contacts-list .contact-item .contact-link-block .contact-link-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.contacts .contacts-list .contact-item .contact-link-block .contact-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--Colors-Violet-500);
    text-decoration: none;
}
@media screen and (max-width: 1840px) {
    .contacts {
        --Contacts-Horisontal-Padding: 200px;
   }
}
@media screen and (max-width: 1740px) {
    .contacts {
        --Contacts-Horisontal-Padding: 160px;
   }
}
@media screen and (max-width: 1680px) {
    .contacts {
        --Contacts-Horisontal-Padding: 120px;
   }
}
@media screen and (max-width: 1580px) {
    .contacts {
        --Contacts-Horisontal-Padding: 80px;
   }
}
@media screen and (max-width: 1360px) {
    .contacts {
        --Contacts-Horisontal-Padding: 72px;
   }
}
@media screen and (max-width: 1200px) {
    .contacts {
        --Contacts-Horisontal-Padding: 56px;
   }
}
@media screen and (max-width: 1180px) {
    .contacts {
        --Contacts-Horisontal-Padding: 40px;
   }
}
@media screen and (max-width: 1024px) {
    .contacts {
        padding-bottom: 96px;
   }
}
@media screen and (max-width: 1140px) {
    .contacts .contacts-list .contact-item {
        min-width: 292px;
        max-width: 552px;
   }
}
@media screen and (max-width: 1000px) {
    .contacts .contacts-list .contact-item {
        min-width: 284px;
   }
}
@media screen and (max-width: 768px) {
    .contacts {
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 80px;
   }
    .contacts .contacts-list .contact-item {
        max-width: 638px;
   }
}
@media screen and (max-width: 720px) {
    .contacts {
        --Contacts-Horisontal-Padding: 30px;
   }
}
@media screen and (max-width: 700px) {
    .contacts {
        --Contacts-Horisontal-Padding: 20px;
   }
}
@media screen and (max-width: 400px) {
    .contacts {
        padding-top: 64px;
        padding-bottom: 64px;
   }
}
