
.borehole-img {
    width: 30rem;
    height: 30rem;
    background-image: url("../img/borehole/borehole-main-1.webp");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    animation: liquid 8s linear infinite alternate;
    border: none;
    filter: grayscale(1);
}

/* Borehole Card */
.card-info {
    display: none;
}
.card-info:first-child {
    display: block;
}
.bore-card {
    border-radius: 24px;
    border: 1px solid #D7D7D7;
    background: #F6F5F5;
    padding: 40px 60px;
    height: 80vh;
}
.bore-card.image {
    padding: 40px 16px;
}
.bore-card.image img {
    width: 100%;
    height: 100%;
}
.bore-card .card-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}
.bore-card .card-tabs .btn-bore {
    color: var(--text-accent);
    background-color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    opacity: 0.4;
}
.bore-card .card-tabs .btn-bore.active {
    opacity: 1;
}

.bore-card .card-info .icon {
    border-radius: 50%;
    background: var(--color-white);
    margin-bottom: 24px;
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
}
.bore-card .card-info h3 {
    color: var(--text-accent);
    font-size: 24px;
    font-weight: 600;
}
.bore-card .card-info p {
    color: var(--colors-text, #333);
    font-size: 18px;
    line-height: 150%;
    margin-top: 8px;
}

.what_is_that {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 3em;
    padding: 7rem;
    padding-top: 15rem;
}

.what_is_that__wrapper {
    display: flex;
    align-items: center;
    column-gap: 4rem;
}

.what_is_that__textblock {
    border: 0.5px solid #858585;;
    border-radius: 24px;
    padding: 7.75rem 10rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    justify-content: space-between;

}

.what_is_that__subtext {
    color: #858585;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    word-wrap: break-word
}

.what_is_that__images {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
}

.what_is_that__image1 {
    width: 30rem;
    height: 20rem;
    border: 0.5px solid #858585;
    border-radius: 24px;
    background-image: url('../img/wit1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.what_is_that__image2 {
    width: 30rem;
    height: 20rem;
    border: 0.5px solid #858585;;
    border-radius: 24px;
    background-image: url('../img/wit2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1280px) {
    .what_is_that__textblock {
        border: 0.5px solid #858585;;
        border-radius: 24px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        justify-content: space-between;

    }
}

@media (max-width: 1024px) {
    .what_is_that__images {
        flex-direction: row;
        column-gap: 1rem;
    }

    .what_is_that__wrapper {
        flex-direction: column-reverse;
        row-gap: 2rem;
    }
}

@media (max-width: 768px) {

    .what_is_that__wrapper {
        flex-direction: column-reverse;
        row-gap: 2rem;
    }

    .what_is_that__images {
        flex-direction: column;
        align-items: center;
        row-gap: 1rem;
    }

    .what_is_that__image1 {
        width: 25rem;
    }

    .what_is_that__image2 {
        width: 25rem;
    }

    .what_is_that__textblock {
        padding: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .bore-card {
        padding: 24px;
        height: auto;
    }
    .bore-card .card-tabs .btn-bore.active {
        opacity: 1;
        color: var(--primary-color);
    }
    .bore-card .card-tabs {
        /* overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start; */
        margin-bottom: 24px;
    }
    .bore-card .card-tabs .btn-bore {
        font-size: 16px;
        padding: 4px 16px;
    }
    .bore-card .card-tabs .btn-bore svg {
        width: 20px;
        height: 20px;
    }
    .bore-card.image {
        margin-top: 32px;
    }
    .advantages .title-main {
        margin-top: 64px;
    }
    .borehole-img {
        width: 100%;
        height: 300px;
        margin-top: 32px;
    }
}
@keyframes liquid {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%
    }
}