.tabs {
    .banner-heading {
        @media screen and (max-width: 768px) {
            margin-bottom: 0;
        }
    }
    .nav-tabs {
        border-bottom: none;
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        margin-bottom: 2px;

        @media screen and (max-width: 768px) {
            display: none;
        }
        &:before {
            content: '';
            width: 100%;
            height: 2px;
            background: var(--gradient-white);
            position: absolute;
            bottom: -2px;
            left: 0;
        }
        .nav-item {
            .nav-link {
                position: relative;
                width: 280px;
                padding: 25px 10px;
                font-size: 1.25rem;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: var(--color-white);
                background: transparent;
                border: none;
                line-height: 1.2;

                @media screen and (max-width: 1500px) {
                    width: auto;
                    padding: 25px 20px;
                    font-size: 1.125rem;
                }
                @media screen and (max-width: 1024px) {
                    padding: 25px 15px;
                    font-size: 1rem;
                }
                &:before {
                    content: '';
                    max-width: 150px;
                    width: 100%;
                    height: 4px;
                    background: var(--gradient-red);
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    opacity: 0;
                    transition: .3s ease-in-out;
                }
                &.active {
                    font-weight: 800;

                    &:before {
                        opacity: 1;
                    }
                }
            }
        }
    }
    .container {
        max-width: 1500px;
    }
    .tab-content {
        margin-top: var(--spacing-4);

        @media screen and (max-width: 768px) {
            display: none;
        }
        .tab-image {
            img {
                width: 100%;
                height: auto;
            }
        }
        .tab-content-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;

            .letter-image {
                margin-bottom: var(--spacing-3);
            }
            .tab-heading {
                margin-bottom: var(--spacing-5);
            }
            .tab-text {
                margin-bottom: -1rem;
            }
        }
    }
    .tabs-mobile {
        display: none;
        background-color: var(--color-light-blue);
        padding: 50px 0px;

        @media screen and (max-width: 768px) {
            display: block;
        }
        @media screen and (max-width: 576px) {
            padding: 30px 0px 40px;
        }
        .tabs-slider {
            padding-bottom: 30px;

            .swiper-slide {
                background: var(--gradient-blue);
            }
            .slide-title {
                padding: 20px;
                display: flex;
                justify-content: center;
                align-items: center;

                .letter-image {
                    width: 24px;
                    height: 24px;
                    margin-right: 10px;

                    img {
                        display: block;
                        width: 24px;
                        height: 24px;
                    }
                }
                .slide-heading {
                    font-size: 1.125rem;
                    font-weight: 800;
                    letter-spacing: .1rem;
                    text-transform: uppercase;
                    margin-bottom: 0;
                }
            }
            .slide-image {
                position: relative;

                &:after {
                    content: '';
                    width: 100%;
                    height: 2px;
                    background: var(--gradient-white);
                    position: absolute;
                    bottom: -2px;
                    left: 0;
                }
                img {
                    width: 100%;
                    height: auto;
                }
            }
            .slide-text {
                padding: 30px;
                margin-bottom: -1rem;

                @media screen and (max-width: 576px) {
                    padding: 25px 20px;
                }
            }
            .swiper-navigation {
                .swiper-pagination {
                    bottom: 0px;

                    .swiper-pagination-bullet {
                        font-size: 0;
                        background: #809EBE;
                        opacity: .5;
                        transition: .2s ease-in-out;

                        &.swiper-pagination-bullet-active {
                            background: var(--color-white);
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}