@font-face {
    font-family: "JetBrains"; /* A name you choose for your font */
    src: url('/public/fonts/variable/JetBrainsMono-Italic[wght].ttf') format('truetype-variations');
    font-weight: 100 200 300 400 500 600 700 800 900; /* Define the weight (e.g., normal, bold, 400, 700) */
    font-style: italic; /* Define the style (e.g., normal, italic) */
}
@font-face {
    font-family: "JetBrains"; /* A name you choose for your font */
    src: url('/public/fonts/variable/JetBrainsMono[wght].ttf') format('truetype-variations');
    font-weight: 100 200 300 400 500 600 700 800 900; /* Define the weight (e.g., normal, bold, 400, 700) */
    font-style: normal; /* Define the style (e.g., normal, italic) */
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/public/fonts/webfonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aXo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/public/fonts/webfonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w9aXpsog.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}


.reveal{
    position: relative;
    transition: all 0.75s ease-in-out;
}
.reveal:not(.reveal--visible).reveal--from-center{
    opacity: 0;
}
.reveal:not(.reveal--visible).reveal--from-top{
    transform: translateY(-25%);
    opacity: 0;
}
.reveal:not(.reveal--visible).reveal--from-bottom{
    transform: translateY(25%);
    opacity: 0;
}
.reveal:not(.reveal--visible).reveal--from-left{
    transform: translateX(-25%);
    opacity: 0;
}
.reveal:not(.reveal--visible).reveal--from-right{
    transform: translateX(25%);
    opacity: 0;
}

body > .wrapper{
    overflow: hidden;
}


:root{
    --border-color: #333333;
    --border-width: 3px;
    --default-timing: 0.5s;
    --default-transition: all var(--default-timing) ease-in-out;

    --default-border: 3px solid #333333;

    --fl-gradient:linear-gradient(90deg,rgba(232, 215, 249, 1) 0%, rgba(116, 163, 255, 1) 48%, rgba(62, 49, 131, 1) 100%);
    --fl-gradient-2:linear-gradient(180deg,rgba(232, 215, 249, 1) 0%, rgba(116, 163, 255, 1) 48%, rgba(62, 49, 131, 1) 100%);
    --p-gradient:linear-gradient(90deg,rgba(56, 192, 137, 1) 0%, rgba(3, 167, 100, 1) 48%, rgba(0, 101, 60, 1) 100%);
    --p-gradient-inverse:linear-gradient(90deg, rgba(0, 101, 60, 1) 0%, rgba(3, 167, 100, 1) 52%,rgba(56, 192, 137, 1) 100%);
    --small-gap: 20px;
    --large-gap: 40px;
    --mid-gap: 32px;
    --padding: 37px;
}


@media screen and (max-width: 1312px) {
    :root{
        --small-gap: 15px;
        --large-gap: 20px;
        --mid-gap: 18px;
        --default-border: 2px solid #333333;
        --border-width: 2px;
        --padding: 23px;
    }
}
@media screen and (max-width: 720px) {
    :root{
        --small-gap: 10px;
        --large-gap: 10px;
        --mid-gap: 10px;
        --default-border: 1px solid #333333;
        --border-width: 1px;
        --padding: 9px;
    }
}

.cookie-accept{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    background: black;
    border-top: 2px solid rgba(56, 192, 137, 1);
    padding: 40px calc((100vw - 1380px) / 2);
    box-sizing: border-box;

    z-index: 9999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
    line-height: 1.1em;
    text-align: center;
    transition: var(--default-transition);
}
.tab-1 .cookie-accept{
    border-color: rgba(116, 163, 255, 1);
}
.cookie-accept:not(.active){
    display: none;
}

    .cookie-accept .btns{
        display: flex;
        flex-direction: row;
        gap: 20px;
        text-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    .cookie-accept .btns > *{
        width: 100%;
        height: 3em;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 1em 2em;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
    }
    .cookie-accept .btns > *::before,
    .cookie-accept .btns > *::after{
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: var(--fl-gradient);
        opacity: 0;
        transition: var(--default-transition);
    }
    .cookie-accept .btns > *::after{
        background: var(--p-gradient);
    }
    .tab-1 .cookie-accept .btns > *::before{
        opacity: 1;
    }
    .tab-3 .cookie-accept .btns > *::after{
        opacity: 1;
    }
@media screen and (max-width: 1380px) {
    .cookie-accept{
        padding: 40px calc((100vw - 740px) / 2);
    }
}
@media screen and (max-width: 740px) {
    .cookie-accept{
        padding: 40px 20px;
        font-size: 1.5em;
        flex-direction: column;
    }
}

body.preload *{
    animation-duration: 0s !important;
    -webkit-animation-duration: 0s !important;
}
body{
    margin: 0px;
    background: #000000;
    color: #ffffff99;
    padding-top: var(--large-gap);
    padding-bottom: var(--large-gap);
    font-size: 25px;
    font-family: "JetBrains";
    position: relative;
    font-weight: 400;
    line-height: 1em;
    overflow-x: hidden;
}
body .background{
    position: absolute;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
}
body .background > div{
    position: absolute;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--default-transition);
}
body .background > div:nth-child(1){
    background: url(/public/img/background_fl.svg);
    background-repeat: repeat-y;
    background-size: 100% auto;
}
body .background > div:nth-child(3){
    background: url(/public/img/background_p.svg);
    background-repeat: repeat-y;
    background-size: 100% auto;
}
body.tab-1 .background > div:nth-child(1){
    opacity: 1;
}
body.tab-3 .background > div:nth-child(3){
    opacity: 1;
}
h1, h2, h3, h4, h5, h6{
    color: #ffffff;
    font-weight: 800;
    line-height: 1em;
    font-style: italic;
    margin: 0px;
    text-transform: uppercase;
}

h1{
    font-size: 80px;
}
h2{
    font-size: 60px;
}
h3{
    font-size: 50px;
}
h4{
    font-size: 30px;
}



img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.container{
    width: calc(100vw - 20px);
    max-width: 1312px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1312px){
    body{
        font-size: 16px;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 25px;
    }
    h4{
        font-size: 15px;
    }
    .container{
        max-width: 720px;
    }
}
@media screen and (max-width: 720px){
    body{
        font-size: 8px;
    }
    h1{
        font-size: 17px;
    }
    h2{
        font-size: 17px;
    }
    h3{
        font-size: 15px;
    }
    h4{
        font-size: 10px;
    }
    .container{
        max-width: 351px;
    }
}


body > .wrapper,
body{
    display: flex;
    flex-direction: column;
    gap: var(--small-gap);
}

header{
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: var(--large-gap);
}

@media screen and (min-width: 1312px) {
    header{
        height: 100px;
    }
}

header > *{
    border: var(--default-border);
    box-sizing: border-box;
    padding: 20px 40px;
}
header > *:nth-child(2){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--large-gap);
}
header > *:nth-child(2) > a{
    width: 50px;
    height: 50px;
}
header > *:nth-child(2) > a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
header > *:nth-child(1){
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
header > *:nth-child(1) > *:nth-child(1){
    position: relative;
    width: 57px;
    height: 51px;
}
header > *:nth-child(1) > *:nth-child(1) > img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 25px;
    object-fit: contain;
}
header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    width: 100%;
    height: 100%;
    position: absolute;
}
header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: var(--default-transition);
}

header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transition: var(--default-transition);
}
header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    transform: rotate(180deg);
}
.tab-1 header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(1){
    opacity: 1;
}
.tab-3 header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    opacity: 1;
}
.tab-1 header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transform: rotate(0deg);
}
.tab-3 header > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transform: rotate(-180deg);
}

@media screen and (max-width: 1312px) {
    header{
        grid-template-columns: 1fr 200px;
    }
    header > *:nth-child(2){
        gap: 20px;
    }
    header > *{
        padding: 10px 20px;
    }
    header > *:nth-child(2) > a{
        width: 38px;
        height: 38px;
    }
    header > *:nth-child(1) > *:nth-child(1){
        width: calc(57px * 0.75);
        height: calc(51px * 0.75);
    }
    header > *:nth-child(1) > *:nth-child(1) > img{
        width: calc(26px * 0.75);
        height: calc(25px * 0.75);
    }
    header > *:nth-child(1) > img:nth-child(2){
        height: calc(25px * 1);
    }
}
@media screen and (max-width: 720px){
    header{
        grid-template-columns: 1fr 1fr;
    }
    header > *:nth-child(2){
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    header > *:nth-child(1){
        justify-content: center;
        gap: 5px;
    }
    header > *:nth-child(1) > *:nth-child(1){
        width: 23px;
        height: 21px;
    }
    header > *:nth-child(1) > *:nth-child(1) > img{
        width: 11px;
        height: 10px;
    }
    header > *:nth-child(1) > img:nth-child(2){
        height: 12.42px;
        width: 56.33px;
    }
    header > *:nth-child(2) > a{
        width: 21px;
        height: 21px;
    }
    header > *{
        padding: 15px 20px;
    }
}


footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--large-gap);
    border: var(--default-border);
    box-sizing: border-box;
    padding: 20px 40px;
}
@media screen and (min-width: 1312px) {
    footer{
        height: 100px;
    }
}

footer > *:nth-child(2){
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: "Montserrat";
    letter-spacing: 0.02em;
}

footer > *:nth-child(1){
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
footer > *:nth-child(1) > *:nth-child(1){
    position: relative;
    width: 57px;
    height: 51px;
}
footer > *:nth-child(1) > *:nth-child(1) > img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 25px;
    object-fit: contain;
}
footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    width: 100%;
    height: 100%;
    position: absolute;
}
footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: var(--default-transition);
}

footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transition: var(--default-transition);
}
footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    transform: rotate(180deg);
}
.tab-1 footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(1){
    opacity: 1;
}
.tab-3 footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    opacity: 1;
}
.tab-1 footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transform: rotate(0deg);
}
.tab-3 footer > *:nth-child(1) > *:nth-child(1) > *:nth-child(2){
    transform: rotate(-180deg);
}

@media screen and (max-width: 1312px) {
    footer > *:nth-child(1) > *:nth-child(1){
        width: calc(57px * 0.75);
        height: calc(51px * 0.75);
    }
    footer > *:nth-child(1) > *:nth-child(1) > img{
        width: calc(26px * 0.75);
        height: calc(25px * 0.75);
    }
    footer > *:nth-child(1) > img:nth-child(2){
        height: calc(25px * 1);
    }
    footer > *:nth-child(2){
        font-size: 12px;
    }
}
@media screen and (max-width: 720px){
    footer > *:nth-child(2){
        font-size: 8px;
    }
    footer{
        padding: 15px 20px;
    }
    footer > *:nth-child(1){
        justify-content: center;
        gap: 5px;
    }
    footer > *:nth-child(1) > *:nth-child(1){
        width: 23px;
        height: 21px;
    }
    footer > *:nth-child(1) > *:nth-child(1) > img{
        width: 11px;
        height: 10px;
    }
    footer > *:nth-child(1) > img:nth-child(2){
        height: 12.42px;
        width: 56.33px;
    }
    
}

.banner{
    padding: var(--padding);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    border: var(--default-border);
    text-align: center;
}
@media screen and (min-width: 1312px) {
    .banner{
        height: 533px;
    }
}
.banner > *:nth-child(1){
    position: relative;
    width: 120px;
    height: 106px;
}
.banner > *:nth-child(1) > img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 51px;
    object-fit: contain;
}
.banner > *:nth-child(1) > *:nth-child(2){
    width: 100%;
    height: 100%;
    position: absolute;
}
.banner > *:nth-child(1) > *:nth-child(2) > img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;

    transition: var(--default-transition);
}
.banner > *:nth-child(1) > *:nth-child(2){
    transition: var(--default-transition);
}
.banner > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    transform: rotate(180deg);
}

.tab-1 .banner > *:nth-child(1) > *:nth-child(2) > img:nth-child(1){
    opacity: 1;
}
.tab-3 .banner > *:nth-child(1) > *:nth-child(2) > img:nth-child(3){
    opacity: 1;
}
.tab-1 .banner > *:nth-child(1) > *:nth-child(2){
    transform: rotate(0deg);
}
.tab-3 .banner > *:nth-child(1) > *:nth-child(2){
    transform: rotate(-180deg);
}

.banner h2{
    text-transform: uppercase;
    margin: 0px;
}
.banner span{
    max-width: 776px;
}

@media screen and (min-width: 720px) {
    .banner br{
        display: none;
    }
}

@media screen and (max-width: 1312px) {
    .banner{
        gap: 15px;
    }
    .banner span{
        max-width: 580px;
    }
    .banner h2{
        max-width: 436px;
    }
    .banner > *:nth-child(1){
        width: calc(120px * 0.66);
        height: calc(106px * 0.66);
    }
    .banner > *:nth-child(1) > img{
        width: calc(54px * 0.66);
        height: calc(51px * 0.66);
    }
}
@media screen and (max-width: 720px) {
    .banner > *:nth-child(1){
        width: 30px;
        height: 26px;
    }
    .banner > *:nth-child(1) > img{
        width: 13px;
        height: 12px;
    }
    .banner{
        padding: 10px 20px;
        min-height: 189px;
    }
    .banner span{
        font-size: 10px;
        line-height: 1em;
    }
}

.tabs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--small-gap);

    /* position: fixed;
    top: 20px;
    z-index: 99; */
}
.tabs > div:nth-child(2){
    display: none;
}
.tabs > div{
    border: var(--default-border);
    color: white;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 110px;
    transition: var(--default-transition);
    cursor: pointer;
}
.tabs > div.active{
    border-color: transparent;
}
.tabs > div::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(var(--border-width) * -1);
    left: calc(var(--border-width) * -1);
    width: calc(100% + var(--border-width) + var(--border-width));
    height: calc(100% + var(--border-width) + var(--border-width));
    background: var(--fl-gradient);
    opacity: 0;
    transition: var(--default-transition);
}
.tabs > div:nth-child(1):before{
    background: var(--fl-gradient-2);
}
.tabs > div:nth-child(2):before{
    background: var(--fl-gradient);
}
.tabs > div:nth-child(3):before{
    background: var(--p-gradient);
}
.tabs > div.active::before{
    opacity: 1;
}

@media screen and (max-width: 1312px){
    .tabs > div{
        font-size: 16px;
        height: 80px;
    }
}
@media screen and (max-width: 720px){
    .tabs > div{
        font-size: 10px;
        height: 50px;
        padding: 0px 10px;
        line-height: 1.1em;
    }
}

.tab-title{
    box-sizing: border-box;
    padding: var(--padding);
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    gap: var(--small-gap);
    align-items: center;

    border: var(--default-border);
}
@media screen and (min-width: 1312px) {
    .tab-title{
        height: 485px;
    }
}
.tab-title > div:nth-child(odd) img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.tab-title > div:nth-child(2){
    position: relative;
}
.tab-title > div:nth-child(2) > div{
    display: flex;
    flex-direction: column;
    gap: var(--small-gap);
    text-align: center;
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
}
.tab-title > div:nth-child(2) > div span{
    font-size: 30px;
    line-height: 1em;
}
.tab-title > div:nth-child(2) > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-title > div:nth-child(2) > div:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-2 .tab-title > div:nth-child(2) > div:nth-child(2){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-title > div:nth-child(2) > div:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
@keyframes rotateX_from_bot {
    0%{
        transform: translateY(50%) rotateX(90deg);
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateY(0%) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes rotateX_from_top {
    0%{
        transform: translateY(-50%) rotateX(-90deg);
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateY(0%) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes rotateY_from_left {
    0%{
        transform: translateX(50%) rotateY(90deg);
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateX(0%) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes rotateY_from_right {
    0%{
        transform: translateX(-50%) rotateY(-90deg);
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: translateX(0%) rotateY(0deg);
        opacity: 1;
    }
}


@media screen and (max-width: 1312px){
    .tab-title{
        grid-template-columns: 1fr 350px 1fr;
    }
    .tab-title > div:nth-child(2) > div span{
        font-size: 20px;
    }
}
@media screen and (max-width: 720px){
    .tab-title{
        grid-template-columns: 1fr 155px 1fr;
        min-height: 120px;
    }
    .tab-title > div:nth-child(2) > div span{
        font-size: 1em;
        line-height: 1em;
    }
}

.title-plate{
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.title-plate > span{
    border-radius: 4px;
    height: 34px;
    padding: 0px 8px;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: "Montserrat";
    letter-spacing: 0.02em;
}
.title-plate > span:not(:nth-child(1)){
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.title-plate > span:nth-child(1){
    background: #617CE9;
}
.title-plate > span:nth-child(3){
    background: var(--p-gradient-inverse);
}
.tab-1 .title-plate > span:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .title-plate > span:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}


@media screen and (max-width: 1312px){
    .title-plate > span{
        font-size: 16px;
    }
}
@media screen and (max-width: 720px){
    .title-plate > span{
        font-size: 9px;
        height: 16px;
        padding: 0px 5px;
        border-radius: 2px;
    }
    
}

.tab-description{
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
}
.tab-description > div:nth-child(2){
    position: relative;
    width: 100%;
}
.tab-description > div:nth-child(2) > h3{
    display: block;
    width: 100%;
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
    text-align: center;
}
.tab-description > div:nth-child(2) > h3:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-description > div:nth-child(2) > h3:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-description > div:nth-child(2) > h3:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
@media screen and (max-width: 400px) {
    .tab-description > div:nth-child(2){
        max-width: 232px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tab-description > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--mid-gap);
}
.tab-description > div:nth-child(3) > div{
    position: relative;
    height: 456px;
}
.tab-description > div:nth-child(3) > div > div{
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    
    animation: rotateY_from_left var(--default-timing) ease-in-out 0s 1 reverse forwards;
}
.tab-description > div:nth-child(3) > div > div > span:nth-child(3){
    min-height: 100px;
}
.tab-description > div:nth-child(3) > div > div img{
    height: 150px;
    width: auto;
}
.tab-description > div:nth-child(3) > div > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-description > div:nth-child(3) > div > div:nth-child(1){
    animation: rotateY_from_right var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-description > div:nth-child(3) > div > div:nth-child(3){
    animation: rotateY_from_right var(--default-timing) ease-in-out 0s 1 normal forwards;
}

@media screen and (max-width: 1312px){
    .tab-description > div:nth-child(3) > div > div img{
        height: 70px;
    }
    .tab-description > div:nth-child(3) > div{
        height: 306px;
    }
    .tab-description > div:nth-child(3) > div > div > span:nth-child(3){
        min-height: 80px;
    }
}
@media screen and (max-width: 720px){
    .tab-description > div:nth-child(3) > div > div img{
        height: 37px;
    }
    
    .tab-description > div:nth-child(3) > div{
        transition: var(--default-transition);
    }
    .tab-1 .tab-description > div:nth-child(3) > div{
        height: 119px;
    }
    .tab-3 .tab-description > div:nth-child(3) > div{
        height: 127px;
    }
    .tab-description > div:nth-child(3) > div > div:nth-child(1) > span:nth-child(3){
        min-height: 32px;
    }
    .tab-description > div:nth-child(3) > div > div:nth-child(3) > span:nth-child(3){
        min-height: 40px;
    }
}

.tab-hit{
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
}
.tab-hit > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--mid-gap);
    width: 100%;
}
.tab-hit > div:nth-child(3) > div{
    height: 506px;
    position: relative;
}
.tab-hit > div:nth-child(3) > div > div{
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
}
.tab-hit > div:nth-child(3) > div > div > span:nth-child(1){
    border-radius: 4px;
    min-height: 34px;
    width: 80px;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: "Montserrat";
    letter-spacing: 0.02em;
}
@media screen and (max-width: 1312px) {
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(1){
        width: 77px;
    }
}
@media screen and (max-width: 720px) {
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(1){
        border-radius: 2px;
        width: 27px;
    }
}
.tab-hit > div:nth-child(3) > div > div:nth-child(1) > span:nth-child(1){
    background: #617CE9;
}
.tab-hit > div:nth-child(3) > div > div:nth-child(3) > span:nth-child(1){
    background: var(--p-gradient-inverse);
    font-weight: 600;
}
.tab-hit > div:nth-child(3) > div > div > span:nth-child(3){
    min-height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tab-hit.tab-exclusive > div:nth-child(3) > div > div > span:nth-child(3){
    min-height: 150px;
}
.tab-hit > div:nth-child(3) > div > div > h4{
    min-height: 137px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tab-1 .tab-hit > div:nth-child(3) > div > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-3 .tab-hit > div:nth-child(3) > div > div:not(:nth-child(3)){
    position: absolute;
    top: 0px;
    left: 0px;
}
/* .tab-hit > div:nth-child(3) > div:nth-child(2) > div{
    animation-delay: 0.2s!important;
}
.tab-hit > div:nth-child(3) > div:nth-child(3) > div{
    animation-delay: 0.2s!important;
} */
.tab-1 .tab-hit > div:nth-child(3) > div > div:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-hit > div:nth-child(3) > div > div:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-hit > div:nth-child(3) > div:not(:nth-child(3))::before{
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    left: calc(100% + 16px);
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    transition: var(--default-transition);
    background: url(/public/img/img_hit_arrow_fl.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.tab-3 .tab-hit > div:nth-child(3) > div:not(:nth-child(3))::before{
    background: url(/public/img/img_hit_arrow_p.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.tab-hit > div:nth-child(4){
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: var(--padding);
    box-sizing: border-box;
}

.tab-hit.tab-exclusive > div:nth-child(3) > div > div > span:nth-child(1){
    width: fit-content;
    padding: 0px 5px;
}
.tab-hit.tab-exclusive > div:nth-child(3) > div{
    height: 481px;
}
@media screen and (max-width: 1312px) {
    .tab-hit > div:nth-child(3) > div,
    .tab-hit.tab-exclusive > div:nth-child(3) > div{
        height: 306px;
    }
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(3){
        min-height: 100px;
    }
    .tab-hit > div:nth-child(3) > div > div > h4{
        min-height: 57px;
    }
    .tab-hit > div:nth-child(3) > div:not(:nth-child(3))::before{
        left: calc(100% + 9px);
        width: 55px;
        height: 55px;
    }
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(1){
        font-size: 16px;
    }
}
@media screen and (max-width: 720px) {
    .tab-hit > div:nth-child(4){
        gap: 10px;
    }
    .tab-hit > div:nth-child(3) > div{
        height: 114px;
        transition: var(--default-transition);
    }
    .tab-3 .tab-hit > div:nth-child(3) > div{
        height: 130px;
    }
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(3){
        min-height: 56px;
        justify-content: start;
    }
    .tab-hit > div:nth-child(3) > div > div:nth-child(1) > span:nth-child(3){
        min-height: 40px;
    }
    .tab-hit > div:nth-child(3) > div > div > h4{
        min-height: 20px;
    }
    .tab-hit > div:nth-child(3) > div:not(:nth-child(3))::before{
        left: calc(100% + 5px);
        width: 18px;
        height: 18px;
    }
    .tab-hit.tab-exclusive > div:nth-child(3) > div{
        height: 481px;
    }
    .tab-hit > div:nth-child(3) > div > div > span:nth-child(1){
        font-size: 5px;
        min-height: 14px;
    }
    .tab-hit.tab-exclusive > div:nth-child(3) > div > div > h4{
        min-height: 30px;
    }
    .tab-hit.tab-exclusive > div:nth-child(3) > div > div > span:nth-child(3){
        min-height: 56px;
    }
    .tab-hit.tab-exclusive > div:nth-child(3) > div{
        height: 140px;
    }
}

.tab-gain{
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
}
.tab-gain > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--mid-gap);
}
.tab-gain > div:nth-child(3) > div{
    position: relative;
    height: 237px;
}
.tab-gain > div:nth-child(3) > div > div{
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
    text-align: start;
}
.tab-gain > div:nth-child(3) > div > div > div{
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--small-gap);
    align-items: center;
}
.tab-gain > div:nth-child(3) > div > div > div img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}
.tab-gain > div:nth-child(3) > div > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-gain > div:nth-child(3) > div > div:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-gain > div:nth-child(3) > div > div:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}

@media screen and (max-width: 1312px) {
    .tab-gain > div:nth-child(3) > div{
        height: 187px;
    }
    .tab-gain > div:nth-child(3) > div > div > div{
        grid-template-columns: 45px 1fr;
    }
    .tab-gain > div:nth-child(3) > div > div > div img{
        height: 45px;
        width: 45px;
    }
}
@media screen and (max-width: 720px) {
    .tab-gain > div:nth-child(3) > div{
        height: 74px;
    }
    .tab-gain > div:nth-child(3) > div > div > div{
        grid-template-columns: 20px 1fr;
        gap: 5px;
    }
    .tab-gain > div:nth-child(3) > div > div > div img{
        height: 20px;
        width: 20px;
    }
}

.tab-hit.tab-exclusive > div:nth-child(3) > div > div{
    animation: none!important;
}
.tab-hit.tab-exclusive{
    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
    transition: var(--default-transition);
    max-height: 0px;
    margin-bottom: -101px;
}
.tab-3 .tab-hit.tab-exclusive{
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
    max-height: 100vw;
    margin-bottom: 0px;
}
@media screen and (max-width: 1312px) {
    .tab-hit.tab-exclusive{
        margin-bottom: -65px;
    }
    .tab-3 .tab-hit.tab-exclusive{
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 720px) {
    .tab-hit.tab-exclusive{
        margin-bottom: -31px;
    }
    .tab-3 .tab-hit.tab-exclusive{
        margin-bottom: 0px;
    }
}

.tab-versatility{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-versatility > div:nth-child(3){
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--small-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-versatility > div:nth-child(3) > span{
    font-size: 22px;
    height: 1em;
}
.tab-versatility > div:nth-child(3) > div{
    display: none;
}
.tab-versatility > div:nth-child(4){
    display: grid;
    grid-template-columns: 431px 1fr 431px;
    min-height: 314px;
    gap: var(--large-gap);
}
.tab-versatility > div:nth-child(4) > div:nth-child(odd){
    position: relative;
}
.tab-versatility > div:nth-child(4) > div:nth-child(odd) > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    height: 100%;
    width: 100%;

    animation: rotateX_from_top var(--default-timing) ease-in-out 0s 1 reverse forwards;
}
.tab-versatility > div:nth-child(4) > div:nth-child(odd) > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-versatility > div:nth-child(4) > div:nth-child(odd) > div:nth-child(1){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-versatility > div:nth-child(4) > div:nth-child(odd) > div:nth-child(3){
    animation: rotateX_from_bot var(--default-timing) ease-in-out 0s 1 normal forwards;
}

@media screen and (min-width: 1312px) {
    .tab-versatility > div:nth-child(4) > div:nth-child(odd),
    .tab-versatility > div:nth-child(4) > div:nth-child(odd) > div{
        gap: unset;
    }
    .tab-versatility > div:nth-child(4) > div:nth-child(odd) h4{
        font-size: 25px;
    }
    .tab-versatility > div:nth-child(4) > div:nth-child(odd) span{
        font-size: 22px;
    }
}
.tab-versatility > div:nth-child(4) > div:nth-child(2){
    position: relative;
}
.tab-versatility > div:nth-child(4) > div:nth-child(2) img,
.tab-versatility > div:nth-child(3) > div img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0;
    transition: var(--default-transition);
}
.tab-versatility > div:nth-child(4) > div:nth-child(2) img:not(:nth-child(1)),
.tab-versatility > div:nth-child(3) > div img:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
}
.tab-1 .tab-versatility > div:nth-child(4) > div:nth-child(2) img:nth-child(1),
.tab-1 .tab-versatility > div:nth-child(3) > div img:nth-child(1){
    opacity: 1;
}
.tab-3 .tab-versatility > div:nth-child(4) > div:nth-child(2) img:nth-child(3),
.tab-3 .tab-versatility > div:nth-child(3) > div img:nth-child(3){
    opacity: 1;
}
@media screen and (max-width: 1312px) {
    .tab-versatility > div:nth-child(4){
        grid-template-columns: 1fr 1fr;
    }
    .tab-versatility > div:nth-child(4) > div:nth-child(2){
        display: none;
    }
    .tab-versatility > div:nth-child(4){
        min-height: 184px;
    }
    .tab-versatility > div:nth-child(3) > span{
        font-size: 1em;
        height: auto;
    }
    .tab-versatility > div:nth-child(3){
        position: relative;
        width: calc(100% - 100px - var(--large-gap));
        margin-right: auto;
    }
    .tab-versatility > div:nth-child(3) > div{
        position: absolute;
        width: 100px;
        height: 100px;
        left: calc(100% + var(--large-gap));
        top: 50%;
        transform: translateY(-50%);
        display: block;
    }
}
@media screen and (max-width: 1312px) {
    .tab-versatility > div:nth-child(4){
        grid-template-columns: 1fr 1fr;
    }
    .tab-versatility > div:nth-child(4){
        min-height: 90px;
    }
    .tab-versatility > div:nth-child(3) > span{
        font-size: 1em;
    }
    .tab-versatility > div:nth-child(3){
        position: relative;
        width: calc(100% - 51px - var(--large-gap));
        margin-right: auto;
        text-align: start;
        align-items: start;
    }
    .tab-versatility > div:nth-child(3) > div{
        position: absolute;
        width: 51px;
        height: 56px;
        left: calc(100% + var(--large-gap));
        top: 50%;
        transform: translateY(-50%);
        display: block;
    }
}

.tab-partnership{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-partnership > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--mid-gap);
}
.tab-partnership > div:nth-child(3) > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    text-align: start;
}
.tab-partnership > div:nth-child(3) > div span{
    display: flex;
    flex-direction: row;
    align-items: end;
}
@media screen and (min-width: 1312px) {
    .tab-partnership > div:nth-child(3) > div span{
        min-height: 87px;
    }
}

.tab-cases{
    position: relative;
}
.tab-cases > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    animation: rotateY_from_left var(--default-timing) ease-in-out 0s 1 reverse forwards;
}
.tab-cases > div:not(:nth-child(1)){
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.tab-1 .tab-cases > div:nth-child(1){
    animation: rotateY_from_right var(--default-timing) ease-in-out 0s 1 normal forwards;
}
.tab-3 .tab-cases > div:nth-child(3){
    animation: rotateY_from_right var(--default-timing) ease-in-out 0s 1 normal forwards;
}

.tab-cases > div:nth-child(1) > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--mid-gap)
}
.tab-cases > div:nth-child(1) > div:nth-child(3) > a{
    display: block;
}
.tab-cases > div:nth-child(1) > div:nth-child(3) > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-sizing: border-box;
    border: var(--default-border);
    object-fit: cover;
    object-position: center;
}
@media screen and (min-width: 1312px) {
    .tab-cases > div:nth-child(1) > div:nth-child(3) > a{
        height: 506px;
    }
}
@media screen and (max-width: 720px) {
    .tab-cases > div:nth-child(1) > div:nth-child(3) > a{
        height: 125px;
    }
}

.tab-cases > div:nth-child(3) > span:nth-child(3){
    font-size: 20px;
    line-height: 1em;
}
.tab-cases > div:nth-child(3) > div:nth-child(4){
    display: grid;
    grid-template-columns: 750px 462px;
    grid-template-rows: 1fr;
    gap: 20px;
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1){
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: left;
    gap: 20px;
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: left;
    gap: 10px;
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) span{
    font-size: 19px;
    line-height: 1em;
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) h4{
    margin-bottom: 9px;
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > a{
    display: block;
    width: 100%;
    height: 446px;
}
.tab-cases > div:nth-child(3) > div:nth-child(4) > a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FF6A13;
    object-position: center;
    box-sizing: border-box;
    border: var(--default-border);
}
@media screen and (max-width: 1312px) {
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) span{
        font-size: 1em;
        line-height: 1em;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) h4{
        margin-bottom: 5px;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) h4:not(:nth-child(1)){
        margin-top: 5px;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1){
        gap: 5px;
    }
    
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1){
        position: relative;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2){
        position: absolute;
        width: calc(100% + 262px + var(--mid-gap));
        top: calc(100% + var(--mid-gap));
        left: 0px;
        padding: var(--padding);
        box-sizing: border-box;
        border: var(--default-border);
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4){
        grid-template-columns: 1fr 262px;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > a{
        height: 282px;
    }
    .tab-cases > div:not(:nth-child(1)){
        min-height: 0px;
    }
    .tab-cases > div:nth-child(3),
    .tab-cases{
        transition: var(--default-transition);
    }
    .tab-cases{
        min-height: 400px;
    }
    .tab-3 .tab-cases > div:nth-child(3){
        padding-bottom: calc(170px + var(--mid-gap) + var(--mid-gap) + var(--padding));
    }
    .tab-3 .tab-cases{
        min-height: 670px;
    }
}

@media screen and (max-width: 720px) {
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) > div{
        gap: 5px;
    }
    .tab-cases > div:nth-child(3) > span:nth-child(3){
        font-size: 8px;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2){
        position: absolute;
        width: calc(100% + 103px + var(--mid-gap));
        top: calc(100% + var(--mid-gap));
        left: 0px;
        padding: var(--padding);
        box-sizing: border-box;
        border: var(--default-border);
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4){
        grid-template-columns: 1fr 103px;
        gap: 10px;
    }
    .tab-cases > div:nth-child(3) > div:nth-child(4) > a{
        height: 100%;
    }
    .tab-cases > div:not(:nth-child(1)){
        min-height: 0px;
    }
    .tab-cases > div:nth-child(3),
    .tab-cases{
        transition: var(--default-transition);
    }
    .tab-cases{
        min-height: 196px;
    }
    .tab-3 .tab-cases > div:nth-child(3){
        padding-bottom: calc(85px + var(--mid-gap) + var(--padding));
    }
    .tab-3 .tab-cases{
        min-height: 309px;
    }
}

.tab-offer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-offer > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 368px;
    gap: var(--mid-gap);
}
.tab-offer > div:nth-child(3) > div:nth-child(1){
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    padding-left: 15px;
    box-sizing: border-box;
    gap: var(--mid-gap)
}
.tab-offer > div:nth-child(3) > div:nth-child(1) > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
    position: relative;
}
.tab-offer > div:nth-child(3) > div:nth-child(1) > div::before,
.tab-offer > div:nth-child(3) > div:nth-child(1) > div::after{
    content: "";
    height: calc(100% + var(--border-width) + var(--border-width));
    width: 15px;
    right: calc(100% + var(--border-width));
    bottom: calc(var(--border-width) * -1);
    position: absolute;
    transition: var(--default-transition);
}
.tab-offer > div:nth-child(3) > div:nth-child(1) > div::before{
    background: var(--fl-gradient);
}
.tab-offer > div:nth-child(3) > div:nth-child(1) > div::after{
    background: var(--p-gradient);
}

.tab-2 .tab-offer > div:nth-child(3) > div:nth-child(1) > div::before,
.tab-1 .tab-offer > div:nth-child(3) > div:nth-child(1) > div::after{
        height: 0px;
        bottom: 100%;
}

.tab-offer > div:nth-child(3) > div:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: var(--mid-gap);
}
.tab-offer > div:nth-child(3) > div:nth-child(2) > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: var(--default-border);
    background: var(--fl-gradient-2);
    color: white;
    font-weight: bold;
    height: 105px;
    box-sizing: border-box;
    cursor: pointer;
}
.tab-3 .tab-offer > div:nth-child(3) > div:nth-child(2) > a{
    background: var(--p-gradient);
}
.tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1){
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: var(--padding);
    box-sizing: border-box;
    border: var(--default-border);
}
.tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: var(--large-gap);
    padding: 24.5px 0px;
    box-sizing: border-box;
}
.tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div a{
    display: block;
    width: 80px;
    height: 80px;
}
.tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 1312px) {
    .tab-offer > div:nth-child(3){
        grid-template-columns: 1fr 228px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div a{
        height: 60px;
        width: 60px;
    }
}
@media screen and (max-width: 720px) {
    .tab-offer > div:nth-child(3){
        grid-template-columns: 1fr;
        width: 100%;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div a{
        height: 60px;
        width: 60px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(1) > div::before,
    .tab-offer > div:nth-child(3) > div:nth-child(1) > div::after{
        width: 4px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(1){
        padding-left: 4px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1){
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 9px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div{
        flex-direction: row;
        gap: 30px;
        padding: 0px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div a{
        width: 21px;
        height: 21px;
    }
    .tab-offer > div:nth-child(3) > div:nth-child(2) > a{
        height: 30px;
        line-height: 10px;
        font-size: 10px;
    }
}

@media screen and (max-width: 370px) {
    .tab-1 .tab-description > div:nth-child(3) > div{
        height: 129px;
    }
    .tab-3 .tab-description > div:nth-child(3) > div{
        height: 139px;
    }
    h4{
        font-size: 9px;
    }
    .tab-3 .tab-hit > div:nth-child(3) > div{
        height: 140px;
    }
    .tab-3 .tab-cases{
        height: 314px;
    }
}
@media screen and (max-width: 365px) {
    .tab-hit > div:nth-child(3) > div{
        height: 124px;
    }
    .tab-3 .tab-hit > div:nth-child(3) > div{
        height: 150px;
    }
    .tab-3 .tab-cases{
        height: 324px;
    }
}
@media screen and (max-width: 356px){
    .tab-3 .tab-cases{
        height: 334px;
    }
}
@media screen and (max-width: 350px){
    h4{
        font-size: 8px;
    }
    .tab-3 .tab-hit > div:nth-child(3) > div{
        height: 160px;
    }
    .tab-hit > div:nth-child(3) > div{
        height: 134px;
    }
    .tab-hit > div:nth-child(3) > div > div > h4{
        margin-bottom: auto;
    }
}
@media screen and (max-width: 335px){
    .tab-3 .tab-hit > div:nth-child(3) > div{
        height: 170px;
    }
}
@media screen and (max-width: 327px){
    .tab-3 .tab-cases{
        height: 344px;
    }
}