/*

Theme Name: Grogubrains

*/


/* 
========================== Table of contents ======================= 

1. General css (Reset code)
2. Home Page
    2.1. General css (Reset code)
    2.2. Header
    2.3. First Screen
    2.4. Mission section
    2.5. Directions section
    2.6. Services section
    2.7. Technologies section
    2.8. Why We Section
    2.9. Form Section
    2.10. Footer
    2.11. Cookies popup
2. Privacy Policy Page
3. Custom scroll animations
4. BI Solutions Page
5. Devops Solutions Page
6. Technical pages (404, thank you page, no internet connection)
7. Adaptive

*/


/* ================================ General css (Reset code) =========================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    padding: 0;
    margin: 0
}

:root {
    --bg-dark-bg: #1E2239;
    --btn-color: #635AFF;
    --text-primary-text-for-dark: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    background-color: #020202;
    color: #DADADA;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

input {
    outline: none;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 16px;
}


/* ========================================== Header ========================================== */

body.lock {
    overflow: hidden;
}

header#header {
    position: relative;
    z-index: 11;
}

.header__wrapper {
    margin-top: 16px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 16px 24px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(to right, #01BE9D 0%, #01BE9D00 5%, #01BE9D00 56%, #01BE9D 79%) border-box;

}

.header__logo {
    position: relative;
    z-index: 11;
}

.header__logo a {
    display: block;
}

.header__logo a img {
    display: block;
}

.header__button {
    border-radius: 8px;
    background-color: rgba(242, 242, 242, 0.10);
    padding: 14px 29px 14px 28px;
    margin-left: 80px;
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    transition: all .4s ease;
}

.header__button:hover {
    background-color: #262626;
}

.header__info {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
}

.nav__list-item {
    margin-right: 40px;
}

.nav__list-item:nth-last-child(1) {
    margin-right: 0;
}

.nav__list-item a {
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    transition: all .4s ease;
}

.nav__list-item a:hover {
    color: #A070FF;
}

.header__burger {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 11;
}

.header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #01BE9D;
    height: 2px;
    top: 9px;
    transition: .4s;
    border-radius: 1px;
}

.header__burger::before,
.header__burger::after {
    content: '';
    background-color: #01BE9D;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: .4s;
    border-radius: 1px;
}

.header__burger::before {
    top: 0;
}

.header__burger::after {
    bottom: 0;
}

.header__burger.active span {
    transform: scale(0);
}

.header__burger.active::before {
    transform: rotate(45deg);
    top: 9px;
}

.header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.h2-title {
    color: var(--Gray-6, #F2F2F2);
    text-align: center;
    font-family: Open Sans;
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}


/* ============================================== First Screen =============================================== */

.sectionFirstScreen {
    background-image: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-bg.png');
    background-size: cover;
    position: relative;
}

.fs__circle-block {
    background-image: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-circle.png');
    background-repeat: no-repeat;
    background-size: contain;
    min-width: calc(100% - 32px);
    min-height: 100%;
    left: 16px;
    position: absolute;
    background-position: center;
    z-index: 2;
}

.fs__shadow {
    background: linear-gradient(293deg, #030202 26.69%, rgba(3, 2, 2, 0.81) 43.64%, rgba(3, 2, 2, 0.17) 70.12%, rgba(3, 2, 2, 0.17) 75.75%);
    background: linear-gradient(293deg, #030202 26.69%, rgba(3, 2, 2, 0.81) 43.64%, rgba(3, 2, 2, 0.17) 70.12%, rgba(3, 2, 2, 0.17) 75.75%);
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    z-index: 3;
}

.fs__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 52px);
    margin: 35px 0;
    position: relative;
    z-index: 4;

}

.fs__info {
    max-width: 1056px;
    width: 100%;
    text-align: center;
    margin: 17% auto 12%;
}

.fs__h1-title {
    color: var(--White-smoke, #F2F2F2);
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-weight: 700;
    line-height: 110%;
    /* 52.8px */
    text-transform: capitalize;
}

.fs__h1-title span {
    color: #AE86FD;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
    /* 26.4px */
    display: block;
    text-transform: initial;
    margin-top: 20px;
}

.fs__text {
    color: #E7E7E7;
    text-align: center;
    font-family: Open Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    max-width: 590px;
    margin-top: 29px;
    margin: 29px auto 0;
}

.fs__contact-btn {
    display: inline-block;
    border-radius: 8px;
    padding: 14px 28px;
    background: #7F3EFF;
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    margin: auto;
    text-align: center;
    margin-top: 29px;
    transition: all .4s ease;
}

.fs__contact-btn:hover {
    background-color: #8F57FF;
}

.fs__scroll-text {
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 1.19px;
    margin-top: 8px;
}

.fs__scroll-icon {
    width: 34px;
    height: 54px;
    border: 1px solid #D9D9D9;
    margin: auto;
    border-radius: 30px;
    position: relative;
}

.fs__scroll-icon-circle {
    width: 6px;
    height: 6px;
    background-color: #D9D9D9;
    position: absolute;
    border-radius: 50%;
    top: 9px;
    left: calc(50% - 3px);
    animation: scrollAnim 1.7s linear infinite;
}

@keyframes scrollAnim {
    0% {
        top: 9px;
        opacity: 1;
    }

    25% {
        top: 18px;
        opacity: 1;
    }

    50% {
        top: 27px;
        opacity: 1;
    }

    75% {
        top: 36px;
        opacity: 1;
    }

    100% {
        top: 36px;
        opacity: 0;
    }
}

/* ========================================== Mission section ======================================== */

section.sectionMission {
    padding: 120px 0;
}

.mission-wrapper {
    --angle: 129deg;
    max-width: 605px;
    padding: 24px;
    margin: auto;
    text-align: center;
    border-radius: 16px;
    border: 1px solid transparent;
    position: relative;
    background-color: #020202;
    overflow: hidden;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 14%, #01BE9D00 56%, #01BE9D00, #01BE9D00) border-box;
    animation: missionBorder 3s linear infinite;
    animation-direction: alternate;
}

@keyframes missionBorder {
    to {
        --angle: 309deg;
    }
}



.mission-text {
    color: #D7D7D7;
    font-family: Open Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 12px;
}

.mission-text span {
    color: #7F3EFF;
    font-weight: 600;
}

/* ============================================ Directions section ========================================= */

.directionItem {
    border-top: 1px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(116deg, #7F3EFF 16%, #526cdca3 40%, #01BE9D00 100%) border-box;
    position: relative;
}

.directionItem::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(14, 14, 14, 1) 0%, rgba(127, 62, 255, 0.05) 10%);
    opacity: 0;
    transition: .5s ease;
    z-index: 1;
}

.directionItem__arrow {
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0;
    transform: translate(0, -10px);
    transition: .5s ease;
}

.directionItem:hover:before {
    opacity: 1;
}

.directionItem:hover .directionItem__arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.directionItem:nth-last-child(1) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(116deg, #7F3EFF 16%, #526cdca3 40%, #01BE9D00 100%) border-box;
    border-bottom: 1px solid transparent;
}

.directionItem__info {
    padding: 40px;
    position: relative;
    z-index: 2;
    display: block;
}

.directionItem__num {
    color: var(--Mint, #01BE9D);
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 24px;
}

.directionItem__title {
    color: var(--Gray-6, #F2F2F2);
    font-family: Open Sans;
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    /* 57.6px */
    margin-bottom: 24px;
}

.directionItem__text {
    color: #DADADA;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    max-width: 665px;
}

/* ============================================== Services section ============================================= */

.sectionServices {
    padding: 120px 0;
}

.services__h2-title {
    margin-bottom: 48px;
}

.services__items-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services__item {
    border-radius: 16px;
    border: 1px solid transparent;
    padding: 24px;
    flex-basis: 32.108%;
    margin-bottom: 32px;
}

.services__item:nth-child(1) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(116deg, #01BE9D 31%, #01BE9D00 72%) border-box;
}

.services__item:nth-child(2) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(189deg, #01BE9D 0%, #01BE9D00 59%) border-box
}

.services__item:nth-child(3) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(242deg, #01BE9D 0%, #01BE9D00 45%) border-box;
}

.services__item:nth-child(4) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(116deg, #01BE9D 20%, #01BE9D00 66%) border-box;
}

.services__item:nth-child(5) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(188deg, #01BE9D 14%, #01BE9D00 55%) border-box;
}

.services__item:nth-child(4),
.services__item:nth-child(5) {
    margin-bottom: 0;
    flex-basis: 49.081%;
}

.services__item-img {
    margin-bottom: 24px;
}

.services__item-title {
    color: var(--Gray-6, #F2F2F2);
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 24px;
}

.services__item-text {
    color: #DADADA;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

/* ================================================= Technologies section ========================================= */

.sectionTechnologies {
    padding: 160px 0;
}

.sectionTechnologies__info {
    margin: 55px 0 55px 0;
}

.sectionTechnologies__h2-title {
    margin-bottom: 24px;
}

.sectionTechnologies__text {
    color: #DADADA;
    text-align: center;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    max-width: 665px;
    margin: auto;
}

.sectionTechnologies .container {
    overflow: hidden;
}

.sectionTechnologies__wrap {
    margin: auto;
}

.sectionTechnologies__items-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
    margin-bottom: 40px;
}

.sectionTechnologies__items {
    flex-shrink: 0;
    display: flex;
    gap: 40px;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
}

.sectionTechnologies__item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.1s ease-in-out;
    width: 100px;
}

.sectionTechnologies__marquee {
    animation: scroll 40s linear infinite;
}

.sectionTechnologies__reverce {
    animation-direction: reverse;
    margin-bottom: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 20px));
    }
}


/* ============================================== Why We Section ====================================== */

.sectionWhyWe {
    padding: 120px 0;
}

.sectionWhyWe__h2-title {
    margin-bottom: 48px;
}

.whyWe__items-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.whyWe__item {
    border-radius: 16px;
    border: 1px solid transparent;
    padding: 24px;
    flex-basis: 49.081%;
    margin-bottom: 32px;
}

.whyWe__item:nth-child(1) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(146deg, #7F3EFF 31%, #7f3eff00 85%) border-box;
}

.whyWe__item:nth-child(2) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(234deg, #7F3EFF 31%, #7f3eff00 85%) border-box;
}

.whyWe__item:nth-child(3) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #7F3EFF 31%, #7f3eff00 85%) border-box;
}

.whyWe__item:nth-child(4) {
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(45deg, #7F3EFF 31%, #7f3eff00 85%) border-box;
}

.whyWe__item-num {
    color: var(--Mint, #01BE9D);
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 24px;
}

.whyWe__item-title {
    color: var(--Gray-6, #F2F2F2);
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 24px;
}

.whyWe__item-text {
    color: #DADADA;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

/* ============================================= Form Section ======================================== */

.sectionForm {
    padding: 100px 0;
}

.sectionForm__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(146deg, #01BE9D 30%, #01BE9D00 56%, #01BE9D00, #01BE9D00) border-box;
}

.sectionForm__block-info {
    flex-basis: 41.417%;
}

.sectionForm__block-form {
    flex-basis: 52.125%;
}

.sectionForm__h2-title {
    color: var(--Gray-6, #F2F2F2);
    font-family: Open Sans;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 43.2px */
    text-align: left;
    margin-bottom: 24px;
}

.sectionForm__block-info-text {
    color: #DADADA;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.form__inputs-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.form__inputs-left {
    flex-basis: 48.218%;
}

.form__inputs-right {
    flex-basis: 50.425%;
}

.form__input-item {
    margin-bottom: 10px;
}

.form__input-item:nth-last-child(1) {
    margin-bottom: 0px;
}

.form__input {
    width: 100%;
    border-radius: 8px;
    background: #1A1A1A;
    padding: 14px 24px;
    color: #F2F2F2;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input::placeholder {
    color: #B5B5B5;
}

.form__inputs-right .form__input-item {
    height: 100%;
    position: relative;
}

.form__input#formMessage {
    height: 100%;
    resize: vertical;
    outline: none;
    display: block;
    min-height: 100%;
}

.agree-text {
    color: #DADADA;
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
}

input#formAgreement {
    display: none;
}

label.checkbox__label:before {
    content: '';
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    top: 4px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid var(--black-50, #E5E5E5);
    margin-right: 8px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

label.checkbox__label {
    display: inline-flex;
    width: 100%;
}

.checkbox__input:checked+.checkbox__label::before {
    background-image: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/checkbox.svg');
    border: none;
}

.form__privacy-link {
    color: var(--Mint, #01BE9D);
    text-decoration-line: underline;
}

.form__button {
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    border-radius: 8px;
    background: #7F3EFF;
    width: 100%;
    padding: 14px;
    flex-basis: 50.425%;
    transition: all .4s ease;
}

.form__button:hover {
    background-color: #8F57FF;
}

.form__button:disabled,
.form__button.inactive {
    background-color: #a29caf;
    cursor: default;
}

.form__bottom-wrapper {
    display: flex;
    justify-content: space-between;
}

.form__privacy-block {
    flex-basis: 48.128%;
}

.form__error-message-block {
    margin-bottom: 10px;
}

.form__error-msg {
    display: none;
    align-items: center;
    color: var(--Red, #EB5757);
    font-family: Open Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 18px */
}

.form__error-empty-name.form__error-msg.active,
.form__error-empty-email.form__error-msg.active,
.form__error-valid-email.form__error-msg.active {
    display: flex;
}

.form__error-empty-msg.form__error-msg.active {
    display: flex;
    position: absolute;
    bottom: 8px;
    right: 12px;
}

.form__error-msg svg {
    margin-right: 6px;
}


/* ================================================== Footer =========================================== */

footer#footer {
    padding: 80px 0 113px;
    background-image: linear-gradient(180deg, #020202, #7f3eff33, #020202);
}

.footer__top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    display: block;
}

.footer_top-info-block {
    display: flex;
}

.footer_top-links-title {
    color: var(--White-smoke, #F2F2F2);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
}

a.footer_top-link {
    color: var(--White-smoke, #F2F2F2);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    display: block;
    margin-top: 12px;
}

.footer_top-links {
    margin-right: 54px;
}

.footer_top-adress {
    color: var(--White-smoke, #F2F2F2);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.footer__line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(1, 190, 157, 0.00) 8.09%, #7F3EFF 43.11%, #01BE9D 62.99%, rgba(1, 190, 157, 0.00) 98.96%);
    margin: 32px 0;
}

.footer__bottom-wrapper {
    display: flex;
    justify-content: space-between;
}

.copyrights-text {
    color: #7C7C7C;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
}

.footer__bottom-link-item {
    color: var(--White-smoke, #F2F2F2);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    position: relative;
    margin-right: 25px;
}

.footer__bottom-link-item:nth-last-child(1) {
    margin-right: 0;
}

.footer__bottom-link-item:nth-last-child(1)::before {
    content: none;
}

.footer__bottom-link-item:before {
    content: '';
    right: -13px;
    top: 4px;
    width: 1px;
    height: 12px;
    background: #D9D9D9;
    position: absolute;
}

/* ============================================= Cookies popup ====================================== */

.cookies-popup {
    border-radius: 16px;
    border: 1px solid #303030;
    background: linear-gradient(0deg, #1A1A1A 0%, #1A1A1A 100%), linear-gradient(108deg, rgba(127, 62, 255, 0.00) -0.02%, #141414 64.32%, #141414 98.02%);
    padding: 24px;
    max-width: 331px;
    position: fixed;
    bottom: -100%;
    z-index: 9;
    transition: all 1s ease;
    /* transition-delay: 8s; */
}

.cookies-popup.show {
    /* bottom: 10px; */
    animation: cookiesPop 1s linear;
    animation-delay: 8s;
    animation-fill-mode: forwards;
}

@keyframes cookiesPop {
    to {
        bottom: 10px;
    }
}

.cookies__header {
    display: flex;
    align-items: center;
}

.cookies-title {
    color: var(--White-smoke, #F2F2F2);
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 112.5% */
    letter-spacing: 0.32px;
    margin-left: 8px;
}

.cookies__info-text {
    color: #A6A6A6;
    font-family: DM Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    margin: 12px 0;
}

.cookies__info-text a {
    color: var(--Mint, #01BE9D);
    text-decoration: underline;
}

.cookies__btn-reject {
    border-radius: 8px;
    border: 1px solid var(--Electric-violet, #7F3EFF);
    color: var(--White-smoke, #F2F2F2);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
    padding: 12px 14px;
    flex-basis: calc(50% - 4px);
    transition: all .5s ease;
}

.cookies__btn-reject:hover {
    border-color: #A070FF;
}

.cookies__btn-accept {
    border-radius: 8px;
    background: var(--Electric-violet, #7F3EFF);
    padding: 12px 14px;
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
    flex-basis: calc(50% - 4px);
    transition: all .5s ease;
}

.cookies__btn-accept:hover {
    background: #8F57FF;
}

.cookies__btns-block {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.cookies__close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
}

/* ============================================= Privacy Policy Page ================================ */

.privacy__section {
    padding: 80px 0;
    font-weight: 400;
}

.privacy__wrapper {
    max-width: 915px;
    margin: auto;
}

.privacy__section h1 {
    color: var(--White-smoke, #F2F2F2);
    font-size: 48px;
    line-height: 120%; /* 57.6px */
    margin-bottom: 20px;
}

.privacy__section h2 {
    color: #E7E7E7;
    font-size: 36px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 16px;
}

.privacy__section h3 {
    color: #E7E7E7;
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 16px;
}

.privacy__section p {
    margin-bottom: 32px;
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.privacy__section a {
    color: var(--Mint, #01BE9D);
    text-decoration: underline;
}

.privacy__section ul {
    list-style: disc;
    padding: 0 0 0 20px;
    margin-bottom: 32px;
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

p.notice {
    color: #AE86FD;
    font-size: 16px;
    line-height: 150%; /* 24px */
}

.disclaimer {
    color: #7F3EFF;
}

.privacy__planet-img {
    position: fixed;
    z-index: -1;
    top: -20px;
    right: -40px;
}

/* ============================================= Custom scroll animations ========================== */

@media(min-width: 1025px) {

    .fs__circle-block.animated {
        scale: 0;
        transition: all 2s ease;
    }
    .fs__circle-block.animated.start-animation {
        scale: 1;
    }

    .fs__h1-title.animated {
        opacity: 0;
        transform: translateY(50px);
        transition: 1s ease;
        transition-delay: 1.8s;
    }
    .fs__h1-title.animated.start-animation {
        opacity: 1;
        transform: translateY(0);
    }

    .fs__text.animated {
        opacity: 0;
        transform: translateY(50px);
        transition: 1s ease;
        transition-delay: 2.5s;
    }
    .fs__text.animated.start-animation {
        opacity: 1;
        transform: translateY(0);
    }

    .fs__contact-btn.animated {
        opacity: 0;
        transform: translateY(50px);
        transition: 1s ease;
        transition-delay: 3s;
    }
    .fs__contact-btn.animated.start-animation {
        opacity: 1;
        transform: translateY(0);
    }

    .fs__scroll-block.animated {
        opacity: 0;
        transition: 1s ease;
        transition-delay: 5s;
    }
    .fs__scroll-block.animated.start-animation {
        opacity: 1;
    }

    .header__wrapper.animated {
        opacity: 0;
        transition: 1s ease;
        transition-delay: 4s;
    }
    .header__wrapper.animated.start-animation {
        opacity: 1;
    }




    .animated__h2 {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all 1s ease;
    }
    .animated__h2.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }


    .animated__item {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all 1s ease;
    }
    .animated__item.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }

    @property --angle {
        syntax: '<angle>';
        initial-value: 0deg;
        inherits: false;
    }

    .services__item:nth-child(1) {
        --angle: 275deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 31%, #01BE9D00 72%) border-box;
    }    
    .services__item.animated__item.start-animation:nth-child(1) {
        animation: services__item1 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes services__item1 {
        to {
            --angle: 116deg;
        }
    }

    /*  */


    .services__item:nth-child(2) {
        --angle: 15deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 0%, #01BE9D00 59%) border-box
    }
    .services__item.animated__item.start-animation:nth-child(2) {
        animation: services__item2 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes services__item2 {
        to {
            --angle: 189deg;
        }
    }
    .services__item:nth-child(3) {
        --angle: 70deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 0%, #01BE9D00 45%) border-box;
    }
    .services__item.animated__item.start-animation:nth-child(3) {
        animation: services__item3 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes services__item3 {
        to {
            --angle: 242deg;
        }
    }
    .services__item:nth-child(4) {
        --angle: 323deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 20%, #01BE9D00 66%) border-box;
    }
    .services__item.animated__item.start-animation:nth-child(4) {
        animation: services__item4 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes services__item4 {
        to {
            --angle: 116deg;
        }
    }
    .services__item:nth-child(5) {
        --angle: 26deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 14%, #01BE9D00 55%) border-box;
    }
    .services__item.animated__item.start-animation:nth-child(5) {
        animation: services__item5 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes services__item5 {
        to {
            --angle: 188deg;
        }
    }


    .whyWe__item:nth-child(1) {
        --angle: 326deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #7F3EFF 31%, #7f3eff00 85%) border-box;
    }
    .whyWe__item.animated__item.start-animation:nth-child(1) {
        animation: whyWe__item1 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes whyWe__item1 {
        to {
            --angle: 146deg;
        }
    }

    .whyWe__item:nth-child(2) {
        --angle: 54deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #7F3EFF 31%, #7f3eff00 85%) border-box;
    }
    .whyWe__item.animated__item.start-animation:nth-child(2) {
        animation: whyWe__item2 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes whyWe__item2 {
        to {
            --angle: 234deg;
        }
    }
    
    .whyWe__item:nth-child(3) {
        --angle: 270deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #7F3EFF 31%, #7f3eff00 85%) border-box;
    }
    .whyWe__item.animated__item.start-animation:nth-child(3) {
        animation: whyWe__item3 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes whyWe__item3 {
        to {
            --angle: 90deg;
        }
    }
    
    .whyWe__item:nth-child(4) {
        --angle: 225deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #7F3EFF 31%, #7f3eff00 85%) border-box;
    }
    .whyWe__item.animated__item.start-animation:nth-child(4) {
        animation: whyWe__item4 2s linear;
        animation-fill-mode: forwards;
    }
    @keyframes whyWe__item4 {
        to {
            --angle: 45deg;
        }
    }


    .animated__form {
        opacity: 0;
        transform: translate(0, 40px);
        transition: .5s ease;
        animation: animated__form 3s linear;
        animation-fill-mode: forwards;
        --angle: 344deg;
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(var(--angle), #01BE9D 30%, #01BE9D00 56%, #01BE9D00, #01BE9D00) border-box;
    }
    .animated__form.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }
    @keyframes animated__form {
        to {
            --angle: 146deg;
        }
    }


    .animated__subtitle {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all 1s ease;
    }
    .animated__subtitle.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }


    .bi_timeline__item:nth-child(1) .bi_timeline__item-num.animated {
        transform: scale(0);
        transition: all .5s ease;
    }
    .bi_timeline__item:nth-child(1) .bi_timeline__item-num.animated.start-animation {
        transform: scale(1);
    }
    .bi_timeline__item:nth-child(1) .bi_timeline__item-info.animated {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all .5s ease;
        transition-delay: .5s;
    } 
    .bi_timeline__item:nth-child(1) .bi_timeline__item-info.animated.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }
    .bi_timeline__item:nth-child(1) .bi_timeline__item-line.animated {
        transform: translateX(-100%);
        transition: all .5s ease;
        transition-delay: 1s;
        opacity: 0;
    }
    .bi_timeline__item:nth-child(1) .bi_timeline__item-line.animated.start-animation {
        transform: translateX(0);
        opacity: 1;
    }

    .bi_timeline__item:nth-child(2) .bi_timeline__item-num.animated {
        transform: scale(0);
        transition: all .5s ease;
        transition-delay: 1.5s;
    }
    .bi_timeline__item:nth-child(2) .bi_timeline__item-num.animated.start-animation {
        transform: scale(1);
    }
    .bi_timeline__item:nth-child(2) .bi_timeline__item-info.animated {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all .5s ease;
        transition-delay: 2s;
    } 
    .bi_timeline__item:nth-child(2) .bi_timeline__item-info.animated.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }
    .bi_timeline__item:nth-child(2) .bi_timeline__item-line.animated {
        transform: translateX(-100%);
        transition: all .5s ease;
        transition-delay: 2.5s;
        opacity: 0;
    }
    .bi_timeline__item:nth-child(2) .bi_timeline__item-line.animated.start-animation {
        transform: translateX(0);
        opacity: 1;
    }

    .bi_timeline__item:nth-child(3) .bi_timeline__item-num.animated {
        transform: scale(0);
        transition: all .5s ease;
        transition-delay: 3s;
    }
    .bi_timeline__item:nth-child(3) .bi_timeline__item-num.animated.start-animation {
        transform: scale(1);
    }
    .bi_timeline__item:nth-child(3) .bi_timeline__item-info.animated {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all .5s ease;
        transition-delay: 3.5s;
    } 
    .bi_timeline__item:nth-child(3) .bi_timeline__item-info.animated.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }
    .bi_timeline__item:nth-child(3) .bi_timeline__item-line.animated {
        transform: translateX(-100%);
        transition: all .5s ease;
        transition-delay: 4s;
        opacity: 0;
    }
    .bi_timeline__item:nth-child(3) .bi_timeline__item-line.animated.start-animation {
        transform: translateX(0);
        opacity: 1;
    }

    .bi_timeline__item:nth-child(4) .bi_timeline__item-num.animated {
        transform: scale(0);
        transition: all .5s ease;
        transition-delay: 4.5s;
    }
    .bi_timeline__item:nth-child(4) .bi_timeline__item-num.animated.start-animation {
        transform: scale(1);
    }
    .bi_timeline__item:nth-child(4) .bi_timeline__item-info.animated {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all .5s ease;
        transition-delay: 5s;
    } 
    .bi_timeline__item:nth-child(4) .bi_timeline__item-info.animated.start-animation {
        opacity: 1;
        transform: translate(0, 0);
    }
    .bi_timeline__item:nth-child(4) .bi_timeline__item-line.animated {
        transform: translateX(-100%);
        transition: all .5s ease;
        transition-delay: 5.5s;
        opacity: 0;
    }
    .bi_timeline__item:nth-child(4) .bi_timeline__item-line.animated.start-animation {
        transform: translateX(0);
        opacity: 1;
    }

    .fs__circle-block.bi_fs__circle-block.planet-circle__animated,
    .fs__circle-block.devops_fs__circle-block.planet-circle__animated {
        transition: all 2s ease;
        transform: scale(0.9);
    }
    .fs__circle-block.bi_fs__circle-block.planet-circle__animated.start-animation,
    .fs__circle-block.devops_fs__circle-block.planet-circle__animated.start-animation {
        transform: scale(1);
    }

    .tab.animated {
        opacity: 0;
        transform: translate(0px, 40px);
        transition: all 1s ease;
    }
    .tab.animated.start-animation {
        opacity: 1;
        transform: translate(0px, 0px);
    }

}

@media(min-width: 1200px) {
    .bi_technologies__item.animated {
        opacity: 0;
        transition: all .5s ease;
        transform: translateX(-164px);        
    }
    .bi_technologies__item.animated.start-animation {
        opacity: 1;
        transform: translateX(-144px);        
    }
    .bi_technologies__item.animated:nth-child(7) {
        transform: translateX(-168px);
        transition-delay: .5s;     
    }
    .bi_technologies__item.animated.start-animation:nth-child(7) {
        transform: translateX(-144px);
    }
    .bi_technologies__item.animated:nth-child(6) {
        transform: translateX(-144px);
        transition-delay: 1s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(6) {
        transform: translateX(-120px);
    }
    .bi_technologies__item.animated:nth-child(5) {
        transform: translateX(-120px);
        transition-delay: 1.5s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(5) {
        transform: translateX(-96px);
    }
    .bi_technologies__item.animated:nth-child(4) {
        transform: translateX(-96px);
        transition-delay: 2s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(4) {
        transform: translateX(-72px);
    }
    .bi_technologies__item.animated:nth-child(3) {
        transform: translateX(-72px);
        transition-delay: 2.5s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(3) {
        transform: translateX(-48px);
    }
    .bi_technologies__item.animated:nth-child(2) {
        transform: translateX(-48px);
        transition-delay: 3s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(2) {
        transform: translateX(-24px);
    }
    .bi_technologies__item.animated:nth-child(1) {
        transform: translateX(-24px);
        transition-delay: 3.5s;
    }
    .bi_technologies__item.animated.start-animation:nth-child(1) {
        transform: translateX(-0px);
    }

}

/* ========================================== BI Solutions Page ===================================== */

.fs__contact-btn.fs__contact-btn-green {
    background-color: #01B293;
}
.fs__circle-block.bi_fs__circle-block,
.fs__circle-block.devops_fs__circle-block {
    background-image: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-violet-circle.png');
}

section.bi_services {
    padding: 120px 0;
}
.bi__simple-text,
.bi_timeline__item-text,
.devops__simple-text {
    color: #DADADA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.services__subtitle {
    text-align: center;
    max-width: 665px;
    margin: 24px auto 0;
}
.bi_services__items-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    gap: 22px;
}
.bi_services__items-wrapper .services__item {
    flex-basis: calc(50% - 11px);
}

.bi_timeline {
    padding: 120px 0;
}
.bi_timeline__items-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
}
.bi_timeline__item {
    flex-basis: 25%;
    position: relative;
}
.bi_timeline__item-line {
    position: absolute;
    content: '';
    top: 41px;
    left: 82px;
    width: calc(100% - 82px);
    height: 1px;
    background: linear-gradient(90deg, #01BE9D 8.09%, #01BE9D 45.01%, #7F3EFF 61.1%, rgba(1, 190, 157, 0.00) 98.96%);
}
.bi_timeline__item-num {
    width: 82px;
    height: 82px;
    color: var(--Mint, #01BE9D);
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    padding: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(112deg, #7F3EFF 10%, #01BE9D00 75%) border-box;
}
.bi_timeline__item-info {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(225deg, #7F3EFF00 79%, #7F3EFF 100%, #01BE9D00 100%) border-box;
    height: calc(100% - 94px);

}
.bi_timeline__item-title {
    color: var(--Gray-6, #F2F2F2);
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 24px;
}



.bi_technologies {
    padding: 120px 0;
}
.bi_technologies__items-wrapper {
    display: flex;
    margin-top: 48px;
}
.bi_technologies__item {
    padding: 32px;
    border-radius: 16px;
    min-width: 192px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(118deg, #7F3EFF00 24%, #7F3EFF 115%) border-box;
}
.bi_technologies__item:nth-child(1) {
    z-index: 7;
}
.bi_technologies__item:nth-child(2) {
    transform: translateX(-24px);
    z-index: 6;
}
.bi_technologies__item:nth-child(3) {
    transform: translateX(-48px);
    z-index: 5;
}
.bi_technologies__item:nth-child(4) {
    transform: translateX(-72px);
    z-index: 4;
}
.bi_technologies__item:nth-child(5) {
    transform: translateX(-96px);
    z-index: 3;
}
.bi_technologies__item:nth-child(6) {
    transform: translateX(-120px);
    z-index: 2;
}
.bi_technologies__item:nth-child(7) {
    transform: translateX(-144px);
    z-index: 1;
}
.bi_technologies__item-name {
    color: #DDD;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px; /* 112.5% */
    letter-spacing: 0.32px;
    margin-top: 24px;
    text-align: center;
}

.sec_reviews {
    padding: 120px 0;
}
.sec_reviews__h2-title {
    max-width: 665px;
    margin: 0 auto 24px;
}
.sec_reviews__subtitle {
    max-width: 665px;
    margin: 0 auto 48px;
    text-align: center;
}
.reviews_container {
    max-width: calc(100% - ((100% - 1232px)/2));
    width: 100%;
    padding: 0px 0px 0px 16px;
    margin-left: auto;
}
.reviews__swiper-slide {
    padding: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 16px;
    background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(306deg, #7F3EFF00 18%, #7F3EFF 94%) border-box;
}
.reviews__item-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
.reviews__item-name {
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    margin-bottom: 8px;
}
.reviews__item-position {
    color: var(--Electric-violet, #7F3EFF);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
}
.reviews__item-text {
    color: #DADADA;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-top: 24px;
}
.reviews-swiper__navi-container.container {
    margin-left: 0;
}
.reviews-swiper__navi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.reviews__swiper-pagination.swiper-pagination {
    position: relative;
    width: fit-content;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #01BE9D;
}
span.swiper-pagination-bullet {
    background-color: #01BE9D;
}
.reviews__swiper-button-prev.swiper-button-prev,
.reviews__swiper-button-next.swiper-button-next {
    position: relative;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/slider-right.svg');
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/slider-left.svg');
}

/* ========================================== Devops Solutions Page ===================================== */

.devops__sectionFirstScreen .fs__text {
    max-width: 632px;
}

.devops__sectionServices .services__h2-title {
    margin-bottom: 0;
}
.devops__sectionServices .services__subtitle {
    margin-top: 24px;
    max-width: 792px;
}
.devops__sectionServices .services__items-wrapper {
    margin-top: 96px;
}


.devopsTechnSec {
    padding: 120px 0;
}
.tab {
    display: flex;
    flex-direction: column;
  }
.tab-nav > input[type="radio"] {
    display: none;
}
.tab-content {
    display: none;
}
#content-1:has(~ .tab-nav > #tab-btn-1:checked),
#content-2:has(~ .tab-nav > #tab-btn-2:checked),
#content-3:has(~ .tab-nav > #tab-btn-3:checked),
#content-4:has(~ .tab-nav > #tab-btn-4:checked),
#content-5:has(~ .tab-nav > #tab-btn-5:checked),
#content-6:has(~ .tab-nav > #tab-btn-6:checked),
#content-7:has(~ .tab-nav > #tab-btn-7:checked),
#content-8:has(~ .tab-nav > #tab-btn-8:checked),
#content-9:has(~ .tab-nav > #tab-btn-9:checked),
#content-10:has(~ .tab-nav > #tab-btn-10:checked),
#content-11:has(~ .tab-nav > #tab-btn-11:checked),
#content-12:has(~ .tab-nav > #tab-btn-12:checked),
#content-13:has(~ .tab-nav > #tab-btn-13:checked),
#content-14:has(~ .tab-nav > #tab-btn-14:checked),
#content-15:has(~ .tab-nav > #tab-btn-15:checked) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
    order: -1;
    justify-content: center;
    gap: 8px;
}
.tab-nav > label {
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(157deg, #7F3EFF00 24%, #7F3EFF 115%) border-box;
    display: inline-block;
    padding: 14px 20px;
    color: var(--White-smoke, #F2F2F2);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
    transition: all .5s ease;
    cursor: pointer;
}
.tab-nav > input[type="radio"]:checked + label {
    background: var(--Electric-violet, #7F3EFF);
}
.tab-content__item {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(157deg, #7F3EFF00 24%, #7F3EFF 115%) border-box;
    flex-basis: 27%;
    text-align: center;
}
.tab-content__item-name {
    color: #DDD;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
    margin-top: 24px;
}


/* ============================ Technical pages (404, thank you page, no internet connection) ============================ */

.header-no-menu__button {
    border-radius: 8px;
    background-color: rgba(242, 242, 242, 0.10);
    padding: 14px 29px 14px 28px;
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    transition: all .4s ease;
}
.errorSection {
    background-image: url(https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-bg.png);
    height: calc(100vh - 97.8px);
    position: relative;
}
.errorSection:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(352deg, #030202 21.98%, rgba(3, 2, 2, 0.17) 67.2%, rgba(3, 2, 2, 0.17) 73.07%);
    z-index: 2;
}
.errorSection .container {
    height: 100%;
}
.error__content-wrapper {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error__visual-block {
    position: absolute;
    z-index: 1;
}
.error__visual-block img {
    display: block;
}
.error__info-block {
    margin: auto;
    max-width: 682px;
    z-index: 3;
    text-align: center;
}
.error__top-title,
.thanks__top-title {
    color: #AE86FD;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
}
.error__title,
.thanks__title {
    color: var(--White-smoke, #F2F2F2);
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-weight: 700;
    line-height: 110%; /* 52.8px */
    margin-top: 12px;
}
.error__text,
.thanks__text {
    color: #E7E7E7;
    text-align: center;
    font-family: Open Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
    max-width: 590px;
    margin-top: 24px;
}
.error__btn,
.thanks__btn {
    display: inline-block;
    border-radius: 8px;
    padding: 14px 28px;
    background: #7F3EFF;
    color: var(--Gray-6, #F2F2F2);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    text-align: center;
    margin-top: 24px;
    transition: all .4s ease;
}

/* thanks page */
.thanksSection {
    background-image: url(https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-bg.png);
    height: calc(100vh - 97.8px);
    position: relative;
    overflow: hidden;
}
.thanksSection:before {
    position: absolute;
    bottom: -68%;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}
.thanksSection:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(323deg, #030202 31.82%, rgba(3, 2, 2, 0.17) 60.97%, rgba(3, 2, 2, 0.17) 64.75%);
    top: 0;
    z-index: 2;
}
.thanksSection .container {
    height: 100%;
}
.thanks__info-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(0, -50px);
    position: relative;
    z-index: 3;
}


/* ============================================= Adaptive =========================================== */

/* ============================================= 1440 =============================================== */

@media(max-width: 1439px) {
    .bi_technologies__item {
        min-width: 187px;
    }
}

/* ============================================= 1199 =============================================== */

@media(max-width: 1199px) {
    .bi_services,
    .bi_timeline,
    .bi_technologies,
    .sec_reviews {
        padding: 120px 0 60px;
    }

    .bi_technologies__items-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .bi_technologies__item {
        min-width: auto;
    }
    .bi_technologies__item:nth-child(2) {
        transform: translateX(0);
    }
    .bi_technologies__item:nth-child(3) {
        transform: translateX(0);
    }
    .bi_technologies__item:nth-child(4) {
        transform: translateX(0);
    }
    .bi_technologies__item:nth-child(5) {
        transform: translateX(0);
    }
    .bi_technologies__item:nth-child(6) {
        transform: translateX(0);
    }
    .bi_technologies__item:nth-child(7) {
        transform: translateX(0);
    }

    .reviews_container {
        max-width: 1232px;
        margin: 0 auto;
        padding: 0 16px;
    }

    /* home page 1199 */
    .sectionTechnologies {
        padding: 120px 0 60px;
    }

    /* devops solutions page 1199 */
    .sectionServices,
    .devopsTechnSec,
    .sectionWhyWe {
        padding: 120px 0 60px;
    }

}



/* ============================================= 1024 =============================================== */

@media(max-width: 1024px) {
    .header__burger {
        display: block;
    }
    header#header {
        background-color: #020202;
    }
    header#header:before {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 80%;
        content: '';
        background-image: linear-gradient(90deg, #7F3EFF, #01be9d00);
    }
    .header__wrapper {
        background: none;
        padding: 20px 0;
        margin-top: 0;
    }
    .header__nav-mob-shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(293deg, #030202 26.69%, rgba(3, 2, 2, 0.81) 43.64%, rgba(3, 2, 2, 0.17) 70.12%, rgba(3, 2, 2, 0.17) 75.75%);
        z-index: -1;
    }
    .header__nav-mob-planet {
        position: absolute;
        top: 40px;
        left: 0;
        width: calc(100% - 32px);
        left: 16px;
        height: calc(100% - 40px);
        background-image: url('https://grogubrains.io/wp-content/themes/grogubrains/assets/img/fs-circle.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }
    nav.nav {
        margin: auto;
        transform: translate(-100%, -20%);
        scale: 0;
        transition: 1s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__info.active nav.nav {
        scale: 1;
        transform: translateX(0%);
    }
    .header__info {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 87px);
        /* height: 100vh; */
        background-color: black;
        transform: translateX(100%);
        transition: all 1s ease;
        display: flex;
        flex-direction: column;
    }
    .header__info.active {
        transform: translateX(0);
        z-index: 10;
        overflow-y: scroll;
        padding: 110px 0 80px;
    }
    .nav__list {
        flex-direction: column;
        text-align: center;
    }
    .nav__list-item {
        margin: 0 0 40px 0;
    }
    .nav__list-item a {
        font-size: 24px;
    }
    .nav__list-item:nth-last-child(1) {
        margin-bottom: 0;
    }
    .header__button {
        margin: 0;
        border-radius: 8px;
        background: #7F3EFF;
        text-align: center;
        scale: 0;
        transition: 1s;
        display: inline-block;
        margin-top: 20px;
    }
    .header__info.active .header__button {
        scale: 1;
    }


    .privacy__planet-img {
        display: none;
    }

    /* 1024 BI SOLUTIONS */

    .bi_timeline__items-wrapper {
        flex-wrap: wrap;
        gap: 48px;
    }
    .bi_timeline__item {
        flex-basis: calc(48% - 24px);
    }
}

/* =============================================== 991 ================================================= */

@media(max-width: 991px) {
    .services__item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .services__item-img {
        margin-bottom: 12px;
    }
    .sectionTechnologies {
        padding: 60px 0;
    }


    .sectionForm__block {
        flex-direction: column;
        padding: 24px;
    }
    .sectionForm__block-info {
        margin-bottom: 32px;
    }


    .footer__logo {
        width: 250px;
    }


    /* 991 b--solutions */

}

/* =============================================== 767 ================================================= */

@media(max-width: 767px) {

    .header__button {
        width: calc(100% - 32px);
    }
    nav.nav {
        transform: translateY(-40%);
    }
    .header__info.active nav.nav {
        transform: translateY(-40%);
    }
    .header__nav-mob-planet {
        background-position: center 20%;
    }
    .header__logo {
        max-width: 133px;
    }
    .header__wrapper {
        padding: 17px 0;
    }


    .h2-title {
        font-size: 32px;
    }


    .fs__h1-title {
        font-size: 32px;
    }
    .fs__h1-title span {
        font-size: 18px;
        margin-top: 12px;
    }
    .fs__text {
        font-size: 16px;
        margin-top: 20px;    
    }
    .fs__contact-btn {
        margin-top: 32px;
    }
    .fs__wrapper {
        min-height: calc(100vh - 198px);
        justify-content: space-between;
        margin: 35px 0 80px;
    }
    .fs__info {
        margin: 12px auto 12px;
    }
    .fs__circle-block {
        background-position-y: bottom;
    }


    section.sectionMission {
        padding: 96px 0;
    }
    .mission-text {
        font-size: 16px;
    }
    .mission-text br {
        display: none;
    }


    .directionItem__info {
        padding: 40px 0;
    }
    .directionItem__title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .directionItem__text {
        font-size: 14px;
    }
    .directionItem::before {
        opacity: 1;
    }
    .directionItem__arrow {
        opacity: 1;
        top: 24px;
        right: 0;
        transform: translate(0, 0);
    }
    


    .sectionServices {
        padding: 120px 0 60px;
    }
    .services__h2-title {
        margin-bottom: 24px;
    }
    .services__item,
    .services__item:nth-child(4),
    .services__item:nth-child(5) {
        flex-basis: 100%;
        margin-bottom: 12px;
    }
    .services__item:nth-last-child(1) {
        margin-bottom: 0;
    }
    .services__item:nth-child(2) {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(292deg, #01BE9D 0%, #01BE9D00 59%) border-box;
    }
    .services__item:nth-child(3) {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(79deg, #01BE9D 0%, #01BE9D00 45%) border-box;
    }
    .services__item:nth-child(4) {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(304deg, #01BE9D 20%, #01BE9D00 66%) border-box;
    }
    .services__item:nth-child(5) {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(36deg, #01BE9D 14%, #01BE9D00 55%) border-box;
    }


    .sectionTechnologies__items,
    .sectionTechnologies__items-wrap {
        gap: 20px;
    }
    .sectionTechnologies__item {
        width: 45px;
    }
    .sectionTechnologies__text {
        font-size: 14px;
    }


    .sectionWhyWe {
        padding: 60px 0;
    }
    .sectionWhyWe__h2-title {
        margin-bottom: 24px;
    }
    .whyWe__item {
        flex-basis: 100%;
        margin-bottom: 12px;
    }
    .whyWe__item:nth-last-child(1) {
        margin-bottom: 0;
    }
    .whyWe__item:nth-child(4) {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(328deg, #7F3EFF 31%, #7f3eff00 85%) border-box;
    }
    .whyWe__item-num {
        margin-bottom: 12px;
    }
    .whyWe__item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .whyWe__item-text {
        font-size: 14px;
    }


    .sectionForm {
        padding: 60px 0 48px;
    }
    .sectionForm__block {
        background: linear-gradient(#020202, #020202) padding-box, linear-gradient(100deg, #01BE9D 30%, #01BE9D00 56%, #01BE9D00, #01BE9D00) border-box;
    }
    .form__inputs-wrapper {
        flex-direction: column;
        margin-bottom: 23px;
    }
    .form__inputs-left .form__input-item:nth-last-child(1) {
        margin-bottom: 10px;
    }
    .form__bottom-wrapper {
        flex-direction: column;
    }
    .form__input#formMessage {
        min-height: 104px;
    }
    .form__privacy-block {
        margin-bottom: 23px;
    }
    label.checkbox__label:before {
        top: 0;
    }


    footer#footer {
        padding: 82px 0 34px;
    }
    .footer__top-wrapper {
        flex-direction: column;
    }
    .footer__logo {
        margin-bottom: 40px;
    }
    .footer_top-info-block {
        flex-direction: column;
        text-align: center;
    }
    .footer_top-links {
        margin: 0 0 40px 0;
    }
    .footer__line {
        margin: 40px 0;
    }
    .footer__bottom-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }
    .footer__bottom-links {
        margin-bottom: 12px;
    }


    .cookies-popup {
        max-width: calc(100% - 32px);
    }


    .privacy__section {
        padding: 40px 0 0;
    }
    .privacy__section h1 {
        font-size: 32px;
    }
    .privacy__section h2 {
        font-size: 28px;
    }
    .privacy__section h3 {
        font-size: 20px;
    }
    .privacy__section p {
        font-size: 14px;
    }
    .privacy__section ul {
        font-size: 14px;
    }

    /* 767 bi solutions */
    section.bi_services {
        padding-top: 96px;
    }
    .bi_services__items-wrapper {
        flex-wrap: wrap;
    }
    .bi_services__items-wrapper .services__item {
        flex-basis: 100%;
    }

    .bi_timeline,
    .bi_technologies,
    .sec_reviews {
        padding: 60px 0;
    }
    .bi_timeline__item {
        flex-basis: 100%;
        display: flex;
        justify-content: space-between;
        gap: 4px;
    }
    .bi_timeline__item-num {
        flex-basis: 82px;
    }
    .bi_timeline__item-info {
        height: auto;
        flex-basis: calc(100% - 86px);
        background: linear-gradient(#020202, #020202f2) padding-box, linear-gradient(50deg, #7F3EFF00 79%, #7F3EFF 100%, #01BE9D00 100%) border-box;
    }
    .bi_timeline__item-line {
        width: 1px;
        height: 100%;
        left: 41px;
        z-index: -1;
        background: linear-gradient(180deg, #01BE9D 8.09%, #01BE9D 45.01%, #7F3EFF 61.1%, rgba(1, 190, 157, 0.00) 98.96%);
    }
    .bi_timeline__item:nth-last-child(1) .bi_timeline__item-line {
        display: none;
    } 

    .bi_technologies__items-wrapper {
        row-gap: 16px;
        justify-content: space-between;
    }
    .bi_technologies__item {
        padding: 20px;
        flex-basis: 47%;
    }
    .bi_technologies__item-name {
        font-size: 14px;
    }

    /* devops solution 767 */

    .devops__sectionServices .services__subtitle br {
        display: none;
    }
    .devops__sectionServices .services__items-wrapper {
        margin-top: 24px;
    }

    .devops__sectionServices {
        padding-top: 96px;
    }
    .devopsTechnSec {
        padding: 60px 0;
    }
    .tab-nav {
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: flex-start;
        margin: 24px -15px 0 -15px;
    }
    .tab-nav > label {
        text-wrap: nowrap;
        white-space: nowrap;
    }
    #content-1:has(~ .tab-nav > #tab-btn-1:checked),
    #content-2:has(~ .tab-nav > #tab-btn-2:checked),
    #content-3:has(~ .tab-nav > #tab-btn-3:checked),
    #content-4:has(~ .tab-nav > #tab-btn-4:checked),
    #content-5:has(~ .tab-nav > #tab-btn-5:checked),
    #content-6:has(~ .tab-nav > #tab-btn-6:checked),
    #content-7:has(~ .tab-nav > #tab-btn-7:checked),
    #content-8:has(~ .tab-nav > #tab-btn-8:checked),
    #content-9:has(~ .tab-nav > #tab-btn-9:checked),
    #content-10:has(~ .tab-nav > #tab-btn-10:checked),
    #content-11:has(~ .tab-nav > #tab-btn-11:checked),
    #content-12:has(~ .tab-nav > #tab-btn-12:checked),
    #content-13:has(~ .tab-nav > #tab-btn-13:checked),
    #content-14:has(~ .tab-nav > #tab-btn-14:checked),
    #content-15:has(~ .tab-nav > #tab-btn-15:checked) {
        justify-content: space-around;
        gap: 12px 0;
        margin-top: 24px;
    }
    .tab-content__item {
        flex-basis: 32.3%;
        max-width: 32.3%;
        padding: 15px 10px;
    }
    .tab-content__item-name {
        font-size: 12px;
    }
    .tab-content__item-name span {
        display: none;
    }

    /* error page 767 */
    .header-no-menu__button {
        padding: 12px 16px;
        font-size: 14px;
    }
    .errorSection {
        height: calc(100vh - 76px);
    }
    .error__content-wrapper {
        z-index: 3;
    }
    .error__info-block {
        transform: translate(0, -80px);
    }
    .error__top-title,
    .thanks__top-title {
        font-size: 18px;
    }
    .error__title,
    .thanks__title {
        font-size: 32px;
    }
    .error__text,
    .thanks__text {
        margin-top: 20px;
        font-size: 16px;
    }
    .error__visual-block {
        bottom: 60px;
    }
    .error__visual-block::before {
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        background: linear-gradient(355deg, #030202 11.04%, rgba(3, 2, 2, 0.17) 58.56%, rgba(3, 2, 2, 0.17) 60.48%);
    }
    .errorSection:before {
        background: none;
    }


    /* thanks page 767 */
    .thanksSection {
        height: calc(100vh - 76px);
    }
    .thanksSection:before {
        bottom: -50%;
    }
    .thanksSection:after {
        background: linear-gradient(323deg, #030202 6.82%, rgba(3, 2, 2, 0.17) 60.97%, rgba(3, 2, 2, 0.17) 64.75%);
    }
    .thanks__info-block {
        transform: translate(0, -100px);
    }

}