.contacts {
    .content {
        background: var(--c-dark);
        padding: 40px 40px 40px 60px;
        border-radius: 40px;
        margin-top: 60px;
        display: grid;
        grid-template-columns: 2fr 3fr;
        .info {
            display: flex;
            flex-direction: column;
            padding-bottom: 50px;
            h3 {
                font-family: var(--font-main);
                font-size: 30px;
                font-weight: var(--fw-regular);
                margin-bottom: 10px;
                margin-top: 40px;
            }
            p {
                font-size: 18px;
                margin-bottom: 10px;
            }
            a {
                font-size: 18px;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    font-size: 20px;
                    font-family: icon;
                    color: var(--c-primary);
                    margin-right: 10px;
                }
                &.phone {
                    &::before {
                        content: '\e901';
                    }
                }
                &.mail {
                    &::before {
                        content: '\e900';
                    }
                }
                &.tg {
                    &::before {
                        content: '\e904';
                    }
                }
                &.vb {
                    &::before {
                        content: '\e902';
                    }
                }
            }
            .touch, .call, .text {
                display: contents;
            }
        }
        .map {
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
        }
    }
}
@media screen and (max-width: 1759px) {
    .contacts {
        .content {
            margin-top: 40px;
            .info {
                h3 {
                    font-size: 26px;
                }
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .contacts {
        .content {
            padding: 40px;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            .map {
                min-height: 500px;
            }
            .info {
                h3 {
                    font-size: 22px;
                }
                p {
                    font-size: 16px;
                    margin-bottom: 6px;
                }
                a {
                    font-size: 16px;
                    &::before {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .contacts {
        .content {
            padding: 40px 20px 20px;
            gap: 0;
            grid-template-columns: 1fr;
            .map {
                min-height: 300px;
                border-radius: 10px;
                overflow: hidden;
                > div {
                    overflow: hidden;
                    > a.adr {
                        opacity: 0;
                    }
                }
            }
            .info {
                h3 {
                    font-size: 18px;
                    margin-top: 30px;
                    &:first-child {
                        margin-top: 0;
                    }
                }
                p {
                    font-size: 16px;
                    margin-bottom: 6px;
                }
                a {
                    &::before {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}