.site-inner>.wrap {
    max-width: 100%;
}

.octane-background {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.octane-background img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* hero */

.hero-flex {
    display: flex;
}

.hero-left {
    position: relative;
    background: var(--style-main);
    width: 60%;
}

.hero-left img {
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 40px 40px 0px;
    height: 100%;
}

.hero-title, .hero-text {
    max-width: 800px;
    width: 100%;
    margin: 0px;
}

.hero-title {
    color: #fff;
    font-size: 120px;
    line-height: 1;
    font-weight: 400;
    text-wrap: balance;
}

.hero-text {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

hr {
    border-top: 3px solid white;
    width: 70%;
    margin-right: auto;
    margin-top: 40px;
}



/* tabs */

.hero-right {
    flex-grow: 1;
}

#tabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 40px;
    gap: 20px;
    margin: auto;
    margin-bottom: 30px;
    height: 100%;
}

#tabs::before, #tabs::after {
    content: none;
}

.tablinks {
    background: white;
    border-radius: 0px;
    box-shadow: var(--shadow);
    transition: .3s;
    width: 180px;
    height: 150px;
    padding: 10px;
    position: relative;
}

.tablinks img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.tabs-title {
    margin: 0px;
    font-weight: bold;
    font-size: 18px;
    text-transform: capitalize;
}

.tablinks:hover {
    transform: scale(1.05);
}

.tablinks:active::before, .tablinks:focus::before, .tablinks:focus-visible::before, .tablinks.active::before {
    content: "";
    height: 30%;
    width: auto;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -10px;
    left: -10px;
    background: transparent;
    border-left: 10px solid var(--style-main);
    border-top: 10px solid var(--style-main);
}

.tablinks:active::after, .tablinks:focus::after, .tablinks:focus-visible::after, .tablinks.active::after {
    content: "";
    height: 30%;
    width: auto;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: transparent;
    border-bottom: 10px solid var(--style-main);
    border-right: 10px solid var(--style-main);
}

.tablinks.active img {
    filter: brightness(1000%) saturate(0%);
}

.tablinks.active {
    background: var(--style-sec);
}

.tablinks.active .tabs-title {
    color: var(--style-main);
}


.tabcontent {
    display: none;
    padding: 40px 20px;
}

.tabcontent:first-of-type {
    display: block;
}

.tabcontent .wpcp-slide-image, .tabcontent .wpcp-slide-image img {
    aspect-ratio: 5 / 3!important;
    object-fit: cover;
}


#wpcpro-wrapper-4405 #sp-wp-carousel-pro-id-4405.wpcp-carousel-section.sp-wpcp-4405 .wpcpro-row [class*="wpcpro-col-"] {
    display: flex!important;
}

.wpcpro-col-xl-4 {
    flex-grow: 1!important;
    display: flex!important;
}

.wpcp-single-item {
    width: 100%!important;
    height: 100%!important;
}

.wpcpro-row {
    align-items: initial!important;
}

.wpcp-all-captions a {
    color: var(--style-main)!important;
}




@media(max-width: 1920px) {
    .hero-title,  .hero-text {
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 100px;
        line-height: 85px;
    }
}

@media(max-width: 1350px) {
    .hero-left {
        flex-grow: 1;
    }
    
    .hero-right {
        width: auto;
    }
}

@media(max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content hr {
        margin-inline: auto;
    }

    .hero-title {
        font-size: 70px;
        line-height: 60px;
    }

    #tabs {
        flex-direction: row;
        padding: 10px;
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 50px;
        line-height: 50px;
        max-width: 400px;
    }

    .hero-text {
        font-size: 18px;
    }

    .tablinks img {
        width: 50px;
        height: 50px;
    }

    .tablinks {
        width: 33.3%;
        height: auto;
    }

    .tablinks:active::before, .tablinks:focus::before, .tablinks:focus-visible::before, .tablinks.active::before {
        height: 30px;
        left: -7px;
        top: -7px;
        border-left: 7px solid var(--style-main);
        border-top: 7px solid var(--style-main);
    }

    .tablinks:active::after, .tablinks:focus::after, .tablinks:focus-visible::after, .tablinks.active::after {
        height: 30px;
        right: -7px;
        bottom: -7px;
        border-right: 7px solid var(--style-main);
        border-bottom: 7px solid var(--style-main);
    }
    
}

@media(max-width: 500px) {
    .hero-title {
        font-size: 35px;
        line-height: 1;
    }
    
    #tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tablinks {
        width: 47%;
    }

    .tabs-title {
        font-size: 16px;
    }
}