/*********************
START: HERO SINGLE BLOGS
*********************/
/* tab--navigation */
.tab--navigation__container{
    position: relative;
    background-color: var(--primary-color);
}

.tab--navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    position: relative;
    width: 100%;
}

.tab--navigation__btn {
    font-weight: 600;
    border: none;
    padding-inline: 10px;
    padding-block: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--gray-color-2);
}

.tab--navigation__btn:not(:last-child){
    margin-inline-end: 1rem;
}

.tab--navigation__btn p {
    padding-block: 1rem;
}

.tab--navigation__btn.active {
    color: var(--secondary-color);
}

.tab--navigation__btn.active p {
    border-bottom: 4px solid var(--secondary-color);
}


/* tab--content__container */
.tab--content__container{
    margin-block-start: 4rem;
}

.tab--content__items{
    position: relative;
}

.tab--content__items:nth-child(even){
    background-color: var(--primary-color);
    padding-block: 2rem;
    margin-block: 10rem;
}

/* bg */
.tab--content__items:nth-child(even)::after,
.tab--content__items:nth-child(even)::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.tab--content__items:nth-child(even)::after,
.tab--content__items:nth-child(even)::before {
    height: 150px;
}

.tab--content__items:nth-child(even)::before {
    top: -147px;
    background-image: url("/assets/img/rectangle-top.svg");
}

.tab--content__items:nth-child(even)::after {
    bottom: -147px;
    transform: rotateX(180deg);
    background-image: url("/assets/img/rectangle-top.svg");
}

.tab--content__items:nth-child(odd){
    background-color: var(--bassLight-color);
}

/* threeBox complex */
.tab--content__items > div> div{
    display: flex;
    justify-content: space-between;
}

.tab--content__items >  div > div > div{
    width: 31%;
}

.tab--content__items >  div > div > div img{
    width: 100%;
}

.tab--content__items >  div > div > div a img{
    height: auto;
    width: 100%;
    aspect-ratio: 4/2.7;
    object-fit: cover;
    border-radius: var(--border-radius15);
}


.tab--content__items >  div > div > div a h4{
    margin-block: 1.25rem;
    font-weight: 600;
    font-size: var(--text-xl);    
}

.tab--content__items >  div > div > div a p{
    line-height: var(--line-height160);
}

.tab--content {
    animation: fading 2s;
}

@keyframes fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*********************
END: HERO SINGLE BLOGS
*********************/



/*********************
START: BLOGS
*********************/


/*********************
END: BLOGS
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}


@media screen and (min-width: 1321px) and (max-width: 1439px) {}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 992px) {}

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

@media screen and (max-width: 576px) {}

@media screen and (max-width: 425px) {}

/*********************
END: MEDIA
*********************/