/* Tab Menu 1 ------------------------------------*/
.tab-menu1 {
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    @include xl {
        gap: 24px
    }
    @include xs {
        gap: 15px
    }
    .tab-btn {
        @include equal-size(180px);
        background-color: $smoke-color;
        border: 1px solid $border-color;
        border-radius: 99px;
        font-size: 24px;
        font-weight: 800;
        color: $title-color;
        position: relative;
        z-index: 2;
        @include md {
            @include equal-size(140px);
        }
        &:after {
            content: '\f073';
            font-family: $icon-font;
            font-weight: 900;
            font-size: 22px;
            @include equal-size(60px);
            line-height: 50px;
            background-color: $theme-color;
            border-radius: 99px;
            border: 4px solid $white-color;
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            color: $white-color;
            @include md {
                top: -12px;
                left: -12px;
            }
        }
        &:before {
            content: '';
            @include equal-size(55px);
            background-image: $gr-bg1;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: 0.4s ease-in-out;
            border-radius: 99px;
            @include md {
                top: -10px;
                left: -10px;
            }
        }
        .date {
            display: block;
            font-size: 16px;
            font-weight: 400;
            margin-top: 8px;
            color: $body-color;
            transition: 0.4s ease-in-out;
            @include md {
                margin-top: 3px;
            }
        }
        &.active {
            border-color: transparent;
            color: $white-color;
            &:before {
                @include equal-size(100%);
                top: 0;
                left: 0;
                z-index: -1;
            }
            &:after {
                background-image: $gr-bg1;
            }
            .date {
                color: $white-color;
            }
        }
    }
}

/* Tab Menu 2 ------------------------------------*/
.tab-menu2 {
    gap: 10px;
    justify-content: center;
    @include lg {
        margin-top: -15px;
    }
    .tab-btn {
        font-family: $title-font;
        font-size: 16px;
        font-weight: 600;
        background-color: $smoke-color;
        border-radius: 99px;
        border: none;
        padding: 6px 35px;
        color: $title-color;
        position: relative;
        z-index: 2;
        overflow: hidden;
        &:before {
            content: '';
            @include equal-size(20px);
            background-image: $gr-bg1;
            position: absolute;
            top: 0;
            left: 0;
            transition: 0.3s ease-in-out;
            border-radius: 99px;
            z-index: -1;
        }
        @include sm {
            padding: 6px 30px;
        }
        @media (max-width: 350px) {
            padding: 6px 20px;
        }
        .date {
            display: block;
            font-size: 13px;
            font-weight: 400;
            margin-top: -4px;
            color: $body-color;
            transition: 0.4s ease-in-out;
        }
        &.active {
            border-color: transparent;
            color: $white-color;
            &:before {
                @include equal-size(100%);
            }
            .date {
                color: $white-color;
            }
        }
    }
}