.white {
    color: #fff;
}
.ghost {
    color: #f9f9f9;
}
.white-dirty {
    color: #f9f9f9cc;
}
.ghost-dirty {
    color: #f9f9f9b3;
}
.green {
    color: #4ac18e;
}
.coral-green {
    background: linear-gradient(90deg, #68ecff 2.12%, #4ac18e 50%);
    background: -webkit-linear-gradient(90deg, #68ecff 2.12%, #4ac18e 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.green-coral {
    background: linear-gradient(34deg, #4ac18e 20%, #68ecff 90%);
    background: -webkit-linear-gradient(34deg, #4ac18e 20%, #68ecff 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.coral-green-horizontal {
    background: linear-gradient(180deg, #68ecff 2.12%, #4ac18e 30%);
    background: -webkit-linear-gradient(180deg, #68ecff 2.12%, #4ac18e 70%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.sp-shadow {
    box-shadow: 0 0 60px 0 #000;
}

.hidden {
    display: none;
}
.desktop-visible {
    display: block;
}
.mobile-visible {
    display: none;
}
@media (max-width: 767px) {
    .desktop-visible {
        display: none;
    }
    .mobile-visible {
        display: block;
    }
}

.page.data-sheets {
    background-color: #1F2232;
    background-image: url(../../../../assets/images/template/data-sheets/body-grid.svg);
    background-repeat: repeat;
}
.data-sheets .container {
    max-width: 1210px;
}

.sp-partner .sp-partner__list-btn {
    display: flex;
    width: 100%;
    flex-flow: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 17px;
    position: relative;
    z-index: 1;
    justify-content: center;
}
.sp-partner .sp-partner__list-btn .list-btn__link {
    border: 1px solid #49bd8c;
    border-radius: 4px;
    padding: 12px 15px;
    height: 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.sp-partner .sp-partner__list-btn .btn-green:hover {
    padding: 12px 14px;
    color: #292c3d;
    border-color: rgb(59, 172, 124);
    background-color: rgb(59, 172, 124);
}
.sp-partner .sp-partner__list-btn .list-btn__link.btn-bg.btn-bg-green {
    background: #4ac18e;
    border-radius: 4px;
    color: #292c3d;
}
.sp-partner .sp-partner__list-btn .list-btn__link.btn-bg:hover {
    background: #6BD7A9;
    border-color: #49bd8c;
    box-shadow: none;
}
.sp-partner .sp-partner__list-btn .list-btn__link.btn-bg-green:hover {
    background: #68d3a5;
    border: 1px solid #9de8c8;
    box-shadow: 0 0 4px rgba(74, 193, 142, 0.7),
        0 0 16px rgba(74, 193, 142, 0.7);
}
@media (max-width: 767px) {
    .sp-partner .list-btn__link {
        min-width: 140px;
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .sp-partner .sp-partner__list-btn {
        flex-direction: column;
    }
    .sp-partner .sp-partner__list-btn .list-btn__link {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    .sp-partner .sp-partner__list-btn .list-btn__link:last-child {
        margin-bottom: 0;
    }
}


section h2 {
    font-size: 56px;
    line-height: 1.2;
}
@media (max-width: 1199px) {
    section h2 {
        font-size: 48px;
    }
}
@media (max-width: 991px) {
    section h2 {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    section h2 {
        font-size: 36px;
        text-align: center;
    }
}

.ellipse {
    position: absolute;
    width: 920px;
    height: 920px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.75;
}
.ellipse-green {
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(26, 255, 157, 0.3) 0%,
        rgba(26, 255, 157, 0) 100%
    );
    background: -webkit-radial-gradient(
        50% 50% at 50% 50%,
        rgba(26, 255, 157, 0.3) 0%,
        rgba(26, 255, 157, 0) 100%
    );
}
.ellipse-blue {
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(104, 236, 255, 0.3) 0%,
        rgba(104, 236, 255, 0) 100%
    );
    background: -webkit-radial-gradient(
        50% 50% at 50% 50%,
        rgba(104, 236, 255, 0.3) 0%,
        rgba(104, 236, 255, 0) 100%
    );
}
@media (max-width: 991px) {
    .ellipse {
        width: 750px;
        height: 750px;
    }
}
@media (max-width: 767px) {
    .ellipse {
        width: 580px;
        height: 580px;
    }
}