.ind-hero {
    position: relative;
    color: #000;
    background: #000;
    width: 100%;
    height: auto;
    aspect-ratio: 1720/800;
    overflow: hidden;
    border-radius: 30px;
}
@media (max-width: 1720px) {
    .ind-hero {
        aspect-ratio: 1720/940;
    }
}
@media (max-width: 1200px) {
    .ind-hero {
        aspect-ratio: auto;
        background: transparent;
        border-radius: 0;
    }
}
.ind-hero-inner {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1200px) {
    .ind-hero-inner {
        position: relative;
        height: 520px;
        background: #000;
        overflow: hidden;
        border-radius: 20px;
    }
}
@media (max-width: 640px) {
    .ind-hero-inner {
        height: 420px;
    }
}
.ind-hero-inner:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 1800px;
    height: 574px;
    background: linear-gradient(250deg, #019ACE 28.92%, #01CE7F 50.56%);
    filter: blur(300px);
}
.ind-hero-select {
    position: absolute;
    z-index: 15;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
    width: 540px;
    height: auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}
@media (max-width: 1860px) {
    .ind-hero-select {
        right: 50px;
    }
}
@media (max-width: 1720px) {
    .ind-hero-select {
        width: 480px;
        padding: 30px;
    }
}
@media (max-width: 1200px) {
    .ind-hero-select {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        transform: none;
        padding: 0 0 20px;
    }
}
.ind-hero-select__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 1860px) {
    .ind-hero-select__content {
        gap: 16px;
    }
}
h2.ind-hero-select__title {
    width: 100%;
    font-size: 26px;
    line-height: 1;
    text-align: center;
}
.ind-hero-select__hovers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 1200px) {
    .ind-hero-select__hovers {
        justify-content: center;
    }
}
.ind-hero-select__hover {
    width: calc(33% - 7px);
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 20px;
    border-radius: 20px;
    border: 1px solid #DBDBDB;
    transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}
@media (max-width: 1860px) {
    .ind-hero-select__hover {
        aspect-ratio: 7/6;
    }
}
@media (max-width: 1720px) {
    .ind-hero-select__hover {
        aspect-ratio: 10/9;
    }
}
@media (max-width: 1200px) {
    .ind-hero-select__hover {
        width: calc(20% - 8px);
        aspect-ratio: auto;
        padding: 0 10px 15px;
    }
}
@media (max-width: 640px) {
    .ind-hero-select__hover {
        width: calc(33.33% - 7px);
    }
}
.ind-hero-select__hover:hover {
    background: #feed1b;
    border-color: #feed1b;
}
.ind-hero-select__hover h3 {
    font-size: 17px;
    line-height: 1;
    text-align: center;
}
@media (max-width: 1200px) {
    .ind-hero-select__hover img {
        width: 52px;
    }
    .ind-hero-select__hover h3 {
        font-size: 15px;
    }
}
.ind-hero-select__hover h3,
.ind-hero-select__hover img {
    pointer-events: none;
}
.ind-hero-select__cta {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1200px) {
    .ind-hero-select__cta {
        display: none;
    }
}
.ind-hero-bg {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
    width: calc(100% - 200px);
    height: 80%;
}
@media (max-width: 1720px) {
    .ind-hero-bg {
        left: 100px;
    }
}
@media (max-width: 1200px) {
    .ind-hero-bg {
        width: 90%;
        height: 90%;
    }
}
.ind-hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    z-index: 1;
    filter: blur(30px);
    transform: translateX(80px);
    transition: opacity 600ms ease-in-out, filter 600ms ease-in-out, transform 600ms ease-in-out;
    border-radius: 10px !important;
}
@media (max-width: 1200px) {
    .ind-hero-bg img {
        top: 50%;
        left: 60%;
        transform: translate(calc(-50% + 60px),-50%);
        width: auto;
        height: auto;
        max-width: 90%;
        max-height: 98%;
        object-fit: contain;
        object-position: center center;
    }
}
.ind-hero-bg img.active {
    opacity: 1;
    z-index: 5;
    filter: blur(0);
    transform: translateX(0);
}
@media (max-width: 1200px) {
    .ind-hero-bg img.active {
        transform: translate(-50%,-50%);
    }
}
.ind-hero-bg img.def {
    transition-delay: 300ms !important;
}
.ind-hero-bg img.def.active {
    filter: blur(30px) !important;
}
.ind-hero-img {
    position: absolute;
    z-index: 10;
    left: 120px;
    bottom: 60px;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-80px);
    transition: opacity 600ms ease-in-out, filter 600ms ease-in-out, transform 600ms ease-in-out;
    transition-delay: 100ms;
    max-height: 90%;
}
@media (min-width: 768px) {
    .ind-hero-img {
        max-width: 40%;
    }
}
@media (max-width: 1720px) {
    .ind-hero-img {
        left: 60px;
    }
}
@media (max-width: 1200px) {
    .ind-hero-img {
        max-width: 50%;
    }
}
@media (max-width: 640px) {
    .ind-hero-img {
        max-width: 70%;
        left: 30px;
        bottom: 30px;
    }
}
.ind-hero-img.active {
    opacity: 1;
    z-index: 11;
    filter: blur(0);
    transform: translateX(0);
}
.ind-hero-img img {
    display: block;
    border-radius: 0 !important;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}
@media (max-width: 1720px) {
    .ind-hero-img img {
        display: block;
        max-height: 400px;
    }
}
@media (max-width: 640px) {
    .ind-hero-img img {
        max-height: 360px;
    }
}
