.shared-amenities {
    background-color: $color-secondary;
    padding: 80px 0;
    position: relative;

    @media screen and (max-width:768px) {
        padding: 56px 0 136px 0;
    }

    h2 {
        font-weight: 700;
        color: $color-text-white;
        font-family: $font-family-sora;
        margin-bottom: 16px;
    }

    p {
        font-size: 18px;
        font-weight: 500;
        color: $color-text-white;
        opacity: 0.8;
        margin-bottom: 0;

        @media screen and (max-width:768px) {
            font-size: 16px;
        }
    }

    .btn-blue-share {
        float: right;
        color: $light-blue;
        border: 1px solid $light-blue;

        @media screen and (max-width:768px) {
            float: left;
            position: absolute;
            bottom: 56px;
            left: 12px;
        }

        svg {
            path {
                stroke: $light-blue;
            }
        }

        &:hover {
            color: #ffffff;
            border: 1px solid $color-primary;

            svg {
                path {
                    stroke: #ffffff;
                }
            }
        }
    }

    .swiper-amenities-wrap {
        position: relative;

        .mySwiper {
            margin-top: 72px;
            margin-bottom: 50px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);

            @media screen and (max-width:768px) {
                margin-bottom: 32px;
                margin-top: 32px;
            }

            .swiper-wrapper {
                .swiper-slide {
                    width: auto !important;
                    margin-right: 54px;

                    @media screen and (max-width:768px) {
                        margin-right: 36px;
                    }

                    h5 {
                        font-size: 18px;
                        font-weight: 600;
                        color: $color-text-white;
                        opacity: 0.8;
                        font-family: $font-family-sora;
                        margin-bottom: 16px;
                        cursor: pointer;

                        @media screen and (max-width:768px) {
                            font-size: 16px;
                            margin-bottom: 8px;
                        }
                    }

                    &.swiper-slide-thumb-active {
                        &:after {
                            content: "";
                            width: 100%;
                            height: 2px;
                            background-color: #f5b840;
                            position: absolute;
                            bottom: 0;
                        }

                        h5 {
                            color: #f5b840;
                            opacity: 1;
                        }
                    }
                }
            }
        }

        .mySwiper2 {
            .swiper-wrapper {
                .swiper-slide {
                    .slide-flex {
                        display: flex;
                        flex-direction: row;
                        align-items: center;

                        @media screen and (max-width:768px) {
                            flex-direction: column;
                        }

                        .slide-item {
                            .img {
                                width: 540px;
                                height: 368px;
                                @media screen and (max-width:1023px){
                                    width: auto;
                                    height: 430px;
                                }

                                @media screen and (max-width:767px) {
                                    width: auto;
                                    height: 216px;
                                }

                                img {
                                    width: 100%;
                                    height: 100%;
                                    border-radius: 8px;
                                }
                            }

                            .contents {
                                margin-left: 30px;

                                @media screen and (max-width:768px) {
                                    margin-left: 0;
                                }

                                h5 {
                                    font-size: 20px;
                                    font-weight: 700;
                                    color: $color-text-white;
                                    font-family: $font-family-sora;
                                    line-height: 1.5;
                                    margin-bottom: 16px;

                                    @media screen and (max-width:768px) {
                                        margin-top: 24px;
                                    }
                                }

                                p {
                                    font-size: 18px;
                                    font-weight: 500;
                                    opacity: 0.8;
                                    color: $color-text-white;

                                    @media screen and (max-width:768px) {
                                        font-size: 16px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 32px;
            height: 32px;
            top: 18px;

            &:after {
                content: "";
                background-image: url(../../../assets/img/enterprise/arrow-circle-white.svg);
                font-family: none;
                width: 100%;
                height: 100%;
            }

            @media screen and (max-width:768px) {
                display: none;
            }
        }

        .swiper-button-next {
            right: -56px;
        }

        .swiper-button-prev {
            left: -56px;

            &:after {
                transform: rotate(180deg);
            }
        }
    }
}


.aurbis-testimonial {
    padding: 0 0 80px 0;
    background-color: $color-secondary;

    @media screen and (max-width:768px) {
        padding: 0 0 56px 0;
    }

    .testimonial-wrapper {
        padding: 2px;
        background: linear-gradient(50deg, rgba(255, 255, 255, 0.2), transparent), linear-gradient(180deg, rgba(239, 239, 239, 0.1), transparent);
        border-radius: 24px;

        @media screen and (max-width:767px) {
            border-radius: 8px;
        }

        .testimonial-bg {
            position: relative;
            background: #10284b;
            border-radius: 24px;

            @media screen and (max-width:767px) {
                border-radius: 8px;
            }

            .img-bg {
                width: 100%;
                height: 476px;
                border-radius: 24px;
                mix-blend-mode: overlay;
                -webkit-backdrop-filter: blur(140px);
                backdrop-filter: blur(140px);
                background-image: linear-gradient(131deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);

                @media screen and (max-width:1023px){
                    height: 500px;
                }
                @media screen and (max-width:767px) {
                    height: 636px;
                    border-radius: 8px;
                }

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .testimonial-swiper-wrap {
                position: absolute;
                top: 0;
                width: 100%;
                padding: 56px 94px;

                @media screen and (max-width:768px) {
                    padding: 56px 13px 66px 13px;
                }

                .mySwiper {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

                    @media screen and (max-width:768px) {
                        border-bottom: 0;
                    }

                    .swiper-wrapper {
                        .swiper-slide {
                            width: auto;

                            .img {
                                width: 180px;
                                height: 66px;
                                margin-bottom: 24px;

                                @media screen and (max-width:768px) {
                                    margin: 0 auto 0 auto;
                                }

                                img {
                                    width: 100%;
                                    height: 100%;
                                }
                            }

                            &.swiper-slide-thumb-active {
                                border-bottom: 2px solid #f5b840;

                                @media screen and (max-width:768px) {
                                    border-bottom: 0;
                                }

                                .img {
                                    @media screen and (max-width:768px) {
                                        border-bottom: 2px solid #f5b840;
                                    }
                                }
                            }
                        }
                    }
                }

                .mySwiper2 {
                    .swiper-wrapper {
                        .swiper-slide {
                            .testimonial-contents {
                                .description {
                                    font-size: 20px;
                                    font-weight: 500;
                                    opacity: 0.8;
                                    color: $color-grey;
                                    margin: 46px 0 48px 0;

                                    @media screen and (max-width:768px) {
                                        font-size: 16px;
                                        margin: 24px 0 40px 0;
                                        text-align: center;
                                    }
                                }

                                .testimonial-tag {
                                    display: flex;
                                    flex-direction: row;
                                    align-items: center;

                                    @media screen and (max-width:768px) {
                                        flex-direction: column;
                                        text-align: center;
                                    }

                                    .img {
                                        width: 88px;
                                        height: 88px;

                                        img {
                                            width: 100%;
                                            height: 100%;
                                        }
                                    }

                                    .title {
                                        margin-left: 16px;

                                        h6 {
                                            font-size: 18px;
                                            font-weight: 600;
                                            color: $color-text-white;
                                            margin-bottom: 6px;

                                            @media screen and (max-width:768px) {
                                                margin: 16px 0;
                                            }
                                        }

                                        p {
                                            font-size: 16px;
                                            font-weight: 500;
                                            color: $color-grey;
                                            margin-bottom: 0;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .swiper-pagination {
                    display: none;

                    @media screen and (max-width:768px) {
                        display: block;
                    }
                }

                .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background: #8da0b9;
                    opacity: 1;
                }

                .swiper-pagination-bullet-active {
                    width: 18px;
                    height: 18px;
                    background-image: linear-gradient(to bottom, #0031d4 0%, #4badf7 100%);
                    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                }
            }
        }
    }
}