body {

    .swiper {
        padding: 0 0 30px;

        .swiper-pagination {
            text-align: center;

            .swiper-pagination-bullet {
                background: var(--bs-text-color);
            }

            .swiper-pagination-bullet-active {
                background: var(--bs-tertiary);
            }
        }
    }

    .contact {
        .contact-infos {
            background-color: rgba(var(--bs-text-color-rgb), 0.1);
            border-radius: 20px 20px 0 0;
            padding: 15px;
            height: 100%;
            @media (min-width: 992px) {
                border-radius: 20px 0 0 20px;
                padding: 10px;
            }

            .contact-infos-category {
                opacity: 0.8;
                margin-bottom: 0.25rem;
                text-transform: uppercase;
                font-size: 0.8rem;
            }

            .contact-infos-phone, .contact-infos-mail {
                a {
                    color: var(--bs-text-color) !important;
                    transition: 0.3s ease-in-out;

                    &:hover, :focus {
                        color: var(--bs-tertiary) !important;
                    }
                }
            }
        }

        .contact-infos-logo {
            max-height: 95px;
            max-width: 95px;
            width: 100%;
            background-color: var(--bs-text-color);
            border-radius: 22px;
            overflow: hidden;
        }

        .contact-offers {
            position: relative;

            &:before {
                content: '';
                position: absolute;
                border-top: 4px solid rgba(var(--bs-text-color-rgb), 0.1);
                border-radius: 50rem;
                top: 50%;
                left: 0;
                right: 0;
                z-index: -1;
            }

            .contact-offers-item {
                background-color: rgba(var(--bs-secondary-rgb), 0.3);
                border-radius: 20px;
                padding: 10px;
                height: 100%;
                display: flex;
                flex-direction: column;
                outline: none;
                transition: 0.3s;

                /*&:hover {*/
                /*    box-shadow: 0 20px 45px 0 rgba(255, 255, 255, 0.1);*/
                /*    transform: translateY(-10px);*/
                /*}*/

                .contact-offers-item-title {
                    text-align: center;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    font-size: 0.9rem;
                    font-weight: bold;
                    margin-bottom: 10px;
                }

                .contact-offers-item-price {
                    background-color: var(--bs-tertiary);
                    padding: 15px 10px;
                    text-align: center;
                    border-radius: 10px 10px 0 0;
                    @media (min-width: 992px) {
                        padding: 20px;
                    }
                }

                .contact-offers-item-content {
                    background-color: var(--bs-text-color);
                    padding: 10px;
                    text-align: center;
                    border-radius: 0 0 10px 10px;
                    font-weight: bold;
                    flex-grow: 1;
                    --bs-list-group-border-color: var(--bs-secondary);

                    @media (min-width: 992px) {
                        padding: 20px;
                    }

                    .list-group-item {
                        background-color: transparent !important;
                    }

                    .list-group {
                        --bs-list-group-color: var(--bs-secondary);
                        --bs-list-group-border-color: rgba(var(--bs-secondary-rgb), 0.1);
                        font-size: 0.9rem;
                    }
                }
            }
        }

        .contact-form {
            padding: 15px;
            border: 4px solid rgba(var(--bs-text-color-rgb), 0.1);
            border-radius: 0 0 20px 20px;
            height: 100%;
            @media (min-width: 992px) {
                border-radius: 0 20px 20px 0;
                padding: 30px;
            }
            @media (min-width: 1200px) {
                padding: 45px;
            }
        }
    }
}
