.contact {
    &__title {
        text-align: center;
    }
    &__subtitle {
        text-align: center;margin-top: 24px;
    }
    &__link {
        text-align: center;margin-top: 24px;
    }

    &__head {
        margin-bottom: 60px;

        @media (--viewport-ms-max) {
            margin-bottom: 40px;
        }
    }

    &__body {
        position: relative;

        /*@media (--viewport-xs-max) {
            margin-right: -19px;
            margin-left: -20px;
        } Lo quito porque provoca un bug en mobile en la modal */

        &::before,
        &::after {
            position: absolute;
            left: 0;
            display: block;
            width: 100%;
            height: 1px;
            background-color: var(--color-secondary-light);
            content: '';
        }

        &.no-top-border {
            &::before {
                height: 0;
            }
        }

        &::before {
            top: 0;
        }

        &::after {
            bottom: 0;
        }
    }

    &__list {
        padding: 40px 0;

        @media (--viewport-ms-min) {
            padding: 60px 80px;
        }

        @media (--viewport-sm-min) {
            padding: 60px 0;
        }

        &>.row {
            justify-content: center;
        }
    }

    &__item {
        padding: 20px 0;
        text-align: center;

        &-link {
            margin-top: 20px;
        }

        &-desc {
            margin-top: 5px;

            @media (--viewport-sm-min) {
                margin-top: 5px;
            }

            &:last-of-type {
                margin-top: 20px;

                @media (--viewport-sm-min) {
                    margin-top: 20px;
                }
            }
        }

        &-lightbox {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
    }

    &__pic {
        max-width: 54px;
        margin: 0 auto 10px;

        @media (--viewport-ms-min) {
            margin-bottom: 20px;
        }
    }

    &__img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    .button{
        display: flex;
        justify-content: center;
        margin-top: 60px;
        @media (--viewport-xs-min) {
            margin-top: 40px;
        }
    }
}
