/* Tabs */
.sec-tab .tabbed-content>ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;

    flex-grow: 1;
    text-align: center;
    margin: 0;
    background-color: var(--c-secondary);

    border: 1px solid rgba(123, 123, 123, .5);
}
.sec-tab .tabbed-content>ul>li.active {
    background-color: var(--c-primary);
}
.sec-tab .tabbed-content>ul>li a {
    font-family: "Genos", sans-serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 600;
    color: var(--c-white);
    
    width: 100%;
    justify-content: center;
}
.sec-tab .tab-panels {
    padding: 0;
}
.sec-tab .tab-panels .panel {
    background: url('/wp-content/themes/flatsome-child/assets/images/bg-home-tab-panel.webp');
    background-repeat: no-repeat;
    background-size: cover
}

.coming-soon {
    min-height: 533px;
    align-items: center;
}

/* SVG Icon */
.sec-tab .tabbed-content > ul > li.active a svg path,
.sec-tab .tabbed-content>ul>li.active a svg polygon {
    fill: white;
}
.sec-tab .tabbed-content > ul > li a svg {
    margin-right: 15px;
}

@media only screen and (max-width: 1024px) {

    /* Hero Text */
    .elevate-acc p {
        font-size: 28px;
    }

    /* Tabs */
    .sec-tab .tabbed-content > ul > li a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 849px) {

    /* Hero Image */
    .hero-image img {
        object-position: 110% 100%;
        object-fit: cover !important;
        aspect-ratio: 1;
    }

    /* Tabs */
    .sec-tab .tabbed-content > ul > li {
        flex-basis: 50%;
        height: 50px;
    }

    /* SVG Icon */
    .sec-tab .tabbed-content > ul > li a svg {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }

    .coming-soon {
        min-height: 330px;
    }
}

@media only screen and (max-width: 480px) {

    /* Hero Text */
    .elevate-acc p {
        font-size: 21px;
    }
}