@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body * {
    font-family: "Raleway", sans-serif;
}

body {
    background-color: #141419;
}

.page {
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1170px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.header {
    margin-top: 75px;
    position: relative;
    z-index: 9;
}

.header__wrap {}

.menu {
    display: flex;
    justify-content: space-between;
}

.menu__nav {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.menuNav__link {
    color: #cccccc;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: 500ms all;
    padding-bottom: 4px;
}

.menuNav__link:after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #faa032;
    transform: translateX(-101%);
    transition: 500ms all;
}

.menuNav__link:hover {
    color: #faa032;
}

.menuNav__link:hover::after {
    transform: initial;
}

.menuNav__link.active {
    color: #faa032;
}


.menuNav__link.active::after {
    transform: initial;
}

.active {}

.menuNav__link2 {
    color: #00ffa5;
    font-weight: bold;
}

.menu__btnWrap {
    max-width: 210px;
    width: 100%;
}

.menu__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    background-image: -moz-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -webkit-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -ms-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    border-radius: 30px;
    color: #141419;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 500ms all;
    position: relative;
    overflow: hidden;
}

.menu__btn span {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    text-transform: inherit;
    position: relative;
    z-index: 1;
}

.menu__btn:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    background-image: -webkit-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    background-image: -ms-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    transition: 500ms all;
    opacity: 0;
}

.menu__btn:hover::after {
    opacity: 1;
}

.sliderSection {
    min-height: 100vh;
    margin-top: -186px;
    overflow: hidden;
    position: relative;
}

.slider__bg {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.icon-1 {
    position: absolute;
    bottom: 0;
    left: -15%;
}

.icon-2 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    animation: moveUpDown 4s ease-in-out infinite;
    /* animation-delay: 1s; */
}

.icon-3 {
    position: absolute;
    top: 0;
    right: -15%;
}

.icon-4 {
    position: absolute;
    z-index: 1;
    top: 60px;
    right: -6%;
    animation: moveUpDown2 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-60px) rotateZ(5deg);
    }

    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

@keyframes moveUpDown2 {
    0% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(60px) rotateZ(-5deg);
    }

    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

.slider__logoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
}

.slider__logo {}

.logo {}

.logo__link {
    display: flex;
    animation: rotateLeftRight 5s ease-in-out infinite;
    animation-delay: 3s;
}

.logoLink__img {
    transition: 500ms all;
}

.header__right {
    display: flex;
    justify-content: flex-end;
    gap: 100px;
    flex: 1;
    transition: 500ms all;
}

@keyframes rotateLeftRight {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.sliderSwiper {
    height: 100vh;
}

.sliderContent {
    position: relative;
}

.sliderBlock {}

.sliderBlock__wrap {
    height: 100%;
    display: flex;
    justify-content: center;
}

.sliderBlock__title {
    color: #fefefe;
    font-size: 50px;
    line-height: 140%;
}

.sliderBlock__title b {
    font-weight: bold;
}

.sliderBlock1 {
    background: url(../img/slider-bg-1.webp);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sliderBlock__wrap-end {
    align-items: flex-end;
}

.sliderBlock__wrap-end .sliderBlock__titleWrap {
    margin-bottom: 200px;
}

.sliderContent__pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 20px !important;
    height: 20px !important;
    background-color: #faa032 !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background-color: #00ffa5 !important;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sliderBlock2 {
    background: url(../img/slider-bg-2.webp);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sliderBlock__btnWrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
}

.sliderBlock__btn {
    display: flex;
    opacity: 0.7;
    transition: 500ms all;
}

.sliderBlock3 {
    background: url(../img/slider-bg-3.webp);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sliderBlock__wrap-end2 .sliderBlock__titleWrap {
    margin-bottom: 320px;
}

.sliderBlock4 {
    background: url(../img/slider-bg-4.webp);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.amg {
    padding: 70px 0 230px;
    background: url(../img/amg-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-color: #262626;
}

.amg__content {}

.amg__wrap {}

.amg__header {
    display: flex;
    justify-content: center;
}

.amgHeader__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    line-height: 140%;
}

.amg__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 135px;
    margin-top: 45px;
}

.amg__point {
    max-width: 300px;
    width: 100%;
}

.amgPoint__iconWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.amgPoint__icon {}

.amgPoint__titleWrap {
    margin-top: 10px;
}

.amgPoint__title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 140%;
    text-align: center;
}

.amgPoint__textWrap {
    margin-top: 20px;
}

.amgPoint__text {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    text-align: justify;
}

.advantages {
    margin: -160px 0 60px;
}

.advantages__block {}

.advantages__header {
    display: flex;
    justify-content: center;
}

.amgHeader__title {}

.advantages__content {
    margin-top: 50px;
}

.yellowBlock {
    border-radius: 30px;
    background-image: -moz-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    box-shadow: 0px 0px 70px 0px rgba(0, 255, 165, 0.25);
    padding: 60px 70px;
    overflow: hidden;
    position: relative;
}

.yellowBlock::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/logo-bg.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.yellowBlock__textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.yellowBlock__text {
    color: #262626;
    font-size: 26px;
    font-weight: 500;
    line-height: 140%;
    position: relative;
}

.yellowBlock__text::after {
    content: "";
    clear: both;
    position: absolute;
    top: 15px;
    left: -15px;
    width: 6px;
    height: 6px;
    background-color: #262626;
    border-radius: 50%;
}

.yellowBlock__text span {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 7px;
}

.yellowBlock__ml {
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.robo-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: scaleImg 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes scaleImg {
    0% {
        transform: scale(1);
    }


    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.aboutUs {
    background: url(../img/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 190px;
    background-color: #262626;
}

.wwd {
    display: flex;
    gap: 160px;
    align-items: center;
}

.wwd__left {}

.wwd__imgWrap {
    position: relative;
}

.wwd__img1 {
    position: relative;
    z-index: 1;
    animation: rotatetImg 7s ease-in-out infinite;
}


.wwd__img2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    animation: leftRightImg 5s ease-in-out infinite;
}

.wwd__right {
    flex: 1;
}

.wwd__header {}

.wwdHeader__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
}

.wwdHeader__subTitle {
    color: #cccccc;
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
    margin-top: 20px;
}

.wwdHeader__subTitle span {
    font-weight: 900;
}

.wwd__points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
    margin-top: 70px;
}

.wwd__point {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.wwdPoint__imgWrap {
    display: flex;
}

.wwdPoint__img {}

.wwdPoint__textWrap {}

.swwdPoint__text {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

@keyframes leftRightImg {
    0% {
        transform: translate(0, -50%);
    }


    50% {
        transform: translate(-20px, -50%);
    }

    100% {
        transform: translate(0, -50%);
    }
}

@keyframes rotatetImg {
    0% {
        transform: rotateY(0deg);
    }


    25% {
        transform: rotateY(-20deg);
    }

    50% {
        transform: rotateY(0deg);
    }

    75% {
        transform: rotateY(20deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.ourClients {
    margin-top: 100px;
    display: flex;
}

.ourClients__left {
    max-width: 400px;
    width: 100%;
}

.ourClients__titleWrap {}

.ourClients__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
}

.ourClients__textWrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

.ourClients__text {
    color: #cccccc;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}

.ourClients__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.greenBlock {
    max-width: 670px;
    width: 100%;
    border-radius: 30px;
    background-image: -moz-linear-gradient(0deg, rgb(25, 150, 109) 0%, rgb(0, 255, 172) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(25, 150, 109) 0%, rgb(0, 255, 172) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(25, 150, 109) 0%, rgb(0, 255, 172) 100%);
    box-shadow: 0px 50px 70px 0px rgba(0, 11, 40, 0.24);
    padding: 40px 35px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.greenBlock__icon {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: greenBlock 5s ease-in-out infinite;
}

.greenBlock__textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 470px;
    width: 100%;
}

.greenBlock__text {
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}

.greenBlock__text-yellow {
    color: #feec73;
    font-weight: bold;
}

.text-underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

@keyframes greenBlock {
    0% {
        transform: initial;
    }


    50% {
        transform: translate(10px, 10px);
    }

    100% {
        transform: initial;
    }
}

.technologies {
    margin-top: -90px;
}

.technologies__header {
    display: flex;
    justify-content: center;
}

.technologies__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0px 0px 25px rgba(255, 255, 255, 0.7);
}

.technologies__points {
    background-color: #ffd500;
    position: relative;
    margin-top: 50px;
}

.technologies__points:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/technologies-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
}

.technologies__points .container {
    position: relative;
    z-index: 1;
}

.technologiesPoints__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 65px 0;
}

.technologiesPoint {
    display: flex;
    align-items: center;
    gap: 20px;
}

.technologiesPoint__iconWrap {
    width: 53px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.technologiesPoint__icon {}

.technologiesPoint__labelWrap {}

.technologiesPoint__label {
    color: #262626;
    font-size: 28px;
    font-weight: bold;
}

.workCost {
    background: url(../img/work-cost-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 100px 0;
    background-color: #262626;
    background-size: cover;
}

.workCost__header {
    display: flex;
    justify-content: center;
}

.workCost__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
}

.workCost__blocks {
    margin-top: 75px;
    display: flex;
    gap: 30px;
}

.workCost__block {
    flex: 1;
}

.workCost__block.green {
    background-color: #77cf07;
    border-radius: 30px;
    padding: 8px;
}

.workCostBlock__textWrap {
    border: 1px solid #2b2c2b;
    border-radius: 20px;
    background-color: #bae783;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.workCostBlock__text {
    color: #262626;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
}

.workCostBlock__text b {
    font-weight: bold;
}

.workCostBlock__line {
    height: 2px;
    background-color: #718755;
    max-width: 214px;
    width: 100%;
}

.workCost__block.yellow {
    background-color: #ffba00;
    border-radius: 30px;
    padding: 8px;
}

.workCostBlock__points {
    border: 1px solid #2b2c2b;
    border-radius: 20px;
    background-color: #f0d384;
    padding: 40px 42px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.workCostBlock__point {
    color: #262626;
    font-size: 22px;
    font-weight: bold;
    line-height: 140%;
    position: relative;
}

.workCostBlock__point:after {
    content: "";
    clear: both;
    position: absolute;
    top: 12px;
    left: -15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #262626;
}

.workCost__textWrap {
    margin-top: 70px;
    text-align: center;
}

.workCost__text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%;
}

.newsletter {
    background: url(../img/newsletter-bg.webp);
    padding: 130px 0;
    background-color: #000;
    background-repeat: no-repeat;
}

.newsletter__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.newsletter__titleWrap {
    text-align: center;
}

.newsletter__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
}

.newsletter__form {
    height: 62px;
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.newsletterForm__input {
    flex: 1;
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border: 1px solid transparent;
    padding: 0 45px;
    box-sizing: border-box;
    transition: 500ms all;
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}

.newsletterForm__input:focus {
    outline: none;
}

.newsletterForm__btn {
    width: 185px;
    border: 1px solid transparent;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-image: -moz-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -webkit-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -ms-linear-gradient(135deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    transition: 500ms all;
    position: relative;
    overflow: hidden;
}

.newsletter__textWrap {}

.newsletter__text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 140%;
}

.newsletterForm__btn-text {
    position: relative;
    z-index: 1;
    color: #141419;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletterForm__btn:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    background-image: -webkit-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    background-image: -ms-linear-gradient(135deg, rgb(0, 255, 172) 0%, rgb(25, 150, 109) 100%);
    transition: 500ms all;
    opacity: 0;
    border: 1px solid transparent;
}

.newsletterForm__btn:hover::after {
    opacity: 1;
    cursor: pointer;
}

.footer {
    padding: 90px 0;
    background-color: #1a1a1a;
}

.footer__content {
    display: flex;
    gap: 100px;
}

.footer__info {
    max-width: 370px;
    width: 100%;
}

.footer__logoWrap {
    display: flex;
}

.footer__logo {
    display: flex;
}

.footer__logo-img {}

.footer__textWrap {
    margin-top: 40px;
    max-width: 270px;
    width: 100%;
}

.footer__text {
    color: #b2b2b2;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
}

.footer__copyright {
    margin-top: 45px;
}

.footerCopyright__text {
    color: #b2b2b2;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

.footerCopyright__text b {
    font-weight: 900;
}

.footer__menu {}

.footerMenu__titleWrap {}

.footerMenu__title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.footerMenu__nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footerMenuNav__link {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
    transition: 500ms all;
}

.footerMenuNav__link-green {
    color: #00ffa5;
    font-weight: bold;
}

.footer__socials {}

.footerSocials__content {
    margin-top: 20px;
    display: flex;
    gap: 30px;
}

.footerSocials__link {
    display: flex;
}

.footerSocials__link svg {
    fill: #999999;
    max-width: 20px;
    transition: 500ms all;
}

.header.fixed {
    position: fixed;
    width: calc(100% - 1px);
    margin: 0;
    padding: 10px 0;
    top: 0px;
    left: -1px;
    z-index: 9;
    animation: scrollMenu 1s ease-in-out;
}

.header.fixed::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #252525;
    opacity: 0.96;
    border-radius: 10px;
    border: 1px solid #197a43;
    box-shadow: 1px 1px 11px #197a43;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.header.fixed .logoLink__img {
    max-width: 50px;
}

.header.fixed .header__right {
    align-items: center;
}

.header.fixed .container {
    position: relative;
    z-index: 1;
}

@keyframes scrollMenu {
    0% {
        transform: translateY(-120%);
    }


    100% {
        transform: translateY(0%);
    }
}

.footerSocials__link:hover svg {
    fill: #fec800;
}

.footerMenuNav__link:hover {
    color: #fec800;
}

.burgerMenu {
    display: none;
}

.gamification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 14;
    max-width: 1170px;
    width: calc(100% - 40px);
    visibility: hidden;
    opacity: 0;
    transition: 500ms all;
}

.gamification.active {
    visibility: visible;
    opacity: 1;
}

.gamification__header {
    margin-bottom: 60px;
    position: relative;
}

.gamificationHeader__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.gamification__contentWrap {
    background-image: -moz-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(255, 222, 0) 0%, rgb(255, 186, 0) 100%);
    border-radius: 20px;
    overflow-y: scroll;
    max-height: 80vh;
    -ms-overflow-style: none;
    position: relative;
}

.gamification__contentWrap::-webkit-scrollbar {
    display: none;
}

.gamification__content {
    padding: 55px 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gamification__title {
    color: #262626;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.gamification__text {
    color: #262626;
    font-size: 24px;
    line-height: 140%;
}

.gamification__text-redLine {
    text-indent: 30px;
}

.gamification__text b {
    font-weight: bold;
}

.gamification__text i {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gamification__title i {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-center {
    text-align: center;
}

.gamification__centrBlock {
    margin: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gamification__btnWrap {
    display: flex;
    justify-content: center;
}

.gamification__btn {
    background: none;
    border: none;
    transition: 500ms all;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #262626;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.gamification__btn:hover {
    text-decoration: none;
}

.popup-active {
    position: relative;
}

.popup-active:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #232323;
    opacity: 0.8;
    z-index: 10;
}

.close__popup {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    background: no-repeat;
    border: 3px solid #ffd600;
    border-radius: 50%;
    color: #ffd600;
    font-size: 90px;
    font-weight: 500;
    transform: rotate(45deg);
    cursor: pointer;
    transition: 500ms all;
    padding: 0;
}

.close__popup:focus {
    outline: none;
}

.close__popup:hover {
    border-color: #ff0e00;
    color: #ff0e00;
}

.rulesSection {
    margin: 70px 0;
}

.rules__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rules__h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 140%;
    margin-bottom: 20px;
}

.rules__p {
    color: #b2b2b2;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.rules__h2 {
    color: #b2b2b2;
    font-size: 20px;
    font-weight: bold;
    line-height: 140%;
}

.rules__content a {
    color: #faa032;
    transition: 500ms all;
}

.rules__content a:hover {
    color: #00ffa5;
}

.rules__ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 50px;
}

.rules__li {
    position: relative;
}

.rules__li:after {
    content: "";
    clear: both;
    position: absolute;
    top: 8px;
    left: -16px;
    width: 6px;
    height: 6px;
    background-color: #b2b2b2;
    border-radius: 50%;
}

@media(max-width: 1600px) {
    .icon-2 {
        max-width: 330px;
    }

    .icon-1 {
        max-width: 550px;
    }

    .icon-4 {
        max-width: 340px;
    }

    .icon-3 {
        max-width: 560px;
    }

    .sliderContent__pagination {
        bottom: 30px;
    }

    .slider__logo {
        max-width: 480px;
    }

    .sliderBlock__wrap-end .sliderBlock__titleWrap {
        margin-bottom: 150px;
    }

    .sliderBlock__title {
        font-size: 45px;
    }

    .sliderBlock__btnWrap {
        margin-top: 50px;
    }
}



@media(max-width: 1500px) {
    .sliderBlock__wrap {
        max-width: 530px;
        width: 100%;
        margin: 0 auto;
    }

    .sliderBlock__title {
        font-size: 40px;
    }

    .sliderBlock__title br {
        display: none;
    }

    .sliderBlock4 .sliderBlock__titleWrap {
        margin-bottom: 110px;
    }

    .amg__points {
        gap: 50px;
    }

    .yellowBlock__text {
        font-size: 20px;
    }

    .robo-icon {
        max-width: 290px;
    }

    .technologiesPoint__label {
        font-size: 24px;
    }

    .gamification__text {
        font-size: 20px;
    }

    .gamification__content {
        gap: 20px;
    }

    .gamification__centrBlock {
        gap: 20px;
    }

    .gamification__btn {
        font-size: 20px;
    }

    .gamificationHeader__title {
        font-size: 30px;
    }

    .gamification__header {
        margin-bottom: 50px;
    }
}

@media(max-width: 1200px) {
    .header__right {
        gap: 30px;
    }

    .icon-2 {
        max-width: 210px;
    }

    .icon-1 {
        max-width: 390px;
    }

    .icon-4 {
        max-width: 260px;
    }

    .icon-3 {
        max-width: 410px;
    }

    .sliderBlock__title {
        font-size: 30px;
    }

    .sliderBlock__wrap-end .sliderBlock__titleWrap {
        margin-bottom: 40%;
    }

    .amgHeader__title {
        font-size: 30px;
    }

    .amg {
        padding: 50px 0 200px;
    }

    .yellowBlock__text {
        font-size: 18px;
    }

    .yellowBlock::after {
        background-size: 90%;
    }

    .yellowBlock {
        padding: 30px 50px;
    }

    .robo-icon {
        max-width: 240px;
    }

    .yellowBlock__ml {
        margin-left: 230px;
    }

    .wwd__img1 {
        max-width: 300px;
    }

    .wwd__img2 {
        max-width: 260px;
    }

    .wwdHeader__title {
        font-size: 30px;
    }

    .wwdHeader__subTitle {
        font-size: 24px;
    }

    .wwd {
        gap: 110px;
    }

    .wwdPoint__img {
        max-height: 40px;
    }

    .wwd__points {
        gap: 60px;
        margin-top: 50px;
    }

    .ourClients {
        margin-top: 60px;
        gap: 50px;
        flex-direction: column;
    }

    .ourClients__title {
        font-size: 30px;
    }

    .ourClients__text {
        font-size: 20px;
    }

    .ourClients__textWrap {
        gap: 20px;
        margin-top: 50px;
    }

    .ourClients__left {
        max-width: initial;
    }

    .ourClients__right {
        justify-content: center;
    }

    .aboutUs {
        padding: 60px 0 130px;
    }

    .technologies__title {
        font-size: 30px;
    }

    .technologiesPoint__label {
        font-size: 18px;
    }

    .technologiesPoint__icon {
        max-width: 40px;
    }

    .technologies__points:after {
        background-size: cover;
    }

    .workCost {
        padding: 50px 0;
    }

    .workCost__title {
        font-size: 30px;
    }

    .workCost__blocks {
        margin-top: 50px;
    }

    .workCostBlock__text {
        font-size: 18px;
    }

    .workCostBlock__point {
        font-size: 18px;
    }

    .workCost__text {
        font-size: 20px;
    }

    .workCost__textWrap {
        margin-top: 50px;
    }

    .newsletter {
        padding: 70px 0;
    }

    .newsletter__title {
        font-size: 30px;
    }

    .newsletter__content {
        gap: 30px;
    }

    .footerCopyright__text {
        font-size: 14px;
    }

    .footer__copyright {
        margin-top: 25px;
    }

    .footerMenu__nav {
        gap: 30px;
    }

    .footerSocials__content {
        gap: 20px;
    }

    footer {
        padding: 70px 0;
    }

    .close__popup {
        width: 40px;
        height: 40px;
        font-size: 60px;
    }

    .gamificationHeader__title {
        font-size: 22px;
    }

    .gamification__header {
        margin-bottom: 30px;
    }

    .gamification__content {
        padding: 40px 30px;
    }

    .gamification__title {
        font-size: 18px;
    }

    .gamification__text {
        font-size: 18px;
    }

    .gamification__content {
        gap: 10px;
    }

    .gamification__centrBlock {
        margin: 0 30px;
        gap: 10px;
    }

    .gamification__btn {
        font-size: 18px;
    }
}

@media(max-width: 1024px) {
    .header__right {
        display: none;
    }

    .burgerMenu {
        display: flex;
        width: 50px;
        height: 50px;
        position: relative;
    }

    .burgerMenu__btn {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        width: 50px;
        background: no-repeat;
        border: none;
    }

    .burgerMenu__btn:before,
    .burgerMenu__btn:after,
    .burgerMenu__btn div {
        background: #fff;
        content: "";
        display: block;
        height: 6px;
        border-radius: 3px;
        margin: 7px 0;
        transition: 0.5s;
    }

    .page.open .burgerMenu__btn:before {
        transform: translateY(14px) rotate(135deg);
    }

    .page.open .burgerMenu__btn:after {
        transform: translateY(-12px) rotate(-135deg);
    }

    .page.open .burgerMenu__btn div {
        transform: scale(0);
    }

    .header {
        margin-top: 30px;
    }

    .logoLink__img {
        max-width: 70px;
    }

    .sliderSection {
        margin-top: -100px;
    }

    .slider__bg {
        display: none;
    }

    .sliderBlock__wrap {
        align-items: center;
    }

    .sliderBlock__titleWrap {
        margin: 0 !important;
    }

    .sliderBlock {
        position: relative;
    }

    .sliderBlock:after {
        content: "";
        clear: both;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #275238;
        opacity: 0.5;
    }

    .sliderBlock__wrap {
        position: relative;
        z-index: 1;
    }

    .swiper-pagination {
        gap: 20px;
    }

    .amgHeader__title {
        font-size: 26px;
    }

    .wwd {
        flex-direction: column;
        gap: 60px;
    }

    .wwdHeader__title {
        font-size: 26px;
    }

    .wwdHeader__subTitle {
        font-size: 20px;
        margin-top: 10px;
    }

    .wwd__points {
        gap: 40px;
    }

    .wwd__img1 {
        max-width: 190px;
    }

    .wwd__img2 {
        max-width: 160px;
        left: 90px;
    }

    .ourClients {
        margin-top: 30px;
    }

    .ourClients__title {
        font-size: 26px;
    }

    .ourClients__textWrap {
        gap: 15px;
        margin-top: 30px;
    }

    .ourClients__text {
        font-size: 18px;
    }

    .ourClients {
        gap: 30px;
    }

    .technologies__title {
        font-size: 26px;
    }

    .technologies__points {
        margin-top: 30px;
    }

    .technologiesPoints__content {
        padding: 50px 0;
    }

    .technologiesPoint__label {
        font-size: 16px;
    }

    .workCost__title {
        font-size: 26px;
    }

    .workCost {
        padding: 50px 0;
    }

    .workCost__blocks {
        margin-top: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .workCostBlock__textWrap {
        padding: 30px 25px;
    }

    .workCostBlock__textWrap {
        gap: 20px;
    }

    .workCostBlock__points {
        padding: 30px;
        gap: 15px;
    }

    .workCost__text {
        font-size: 16px;
    }

    .workCost__textWrap {
        margin-top: 30px;
    }

    .newsletter {
        padding: 50px 0;
    }

    .newsletter__title {
        font-size: 26px;
    }

    .footer__content {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .footer__info {
        max-width: initial;
    }

    .footer__textWrap {
        max-width: initial;
    }

    .footer__textWrap {
        margin-top: 20px;
    }

    .footerMenu__nav {
        gap: 20px;
    }

    .footer {
        padding: 50px 0;
    }

    .header__right {
        display: flex;
        position: fixed;
        width: 300px;
        height: 100vh;
        top: 0;
        left: 0;
        background-color: rgb(37 37 37 / 96%);
        border-radius: 10px;
        border: 1px solid #197a43;
        box-shadow: 1px 1px 11px #197a43;
        align-items: center;
        justify-content: center;
        z-index: 10;
        flex-direction: column;
        transition: 500ms all;
        transform: translateX(-102%);
    }

    .menu__nav {
        flex-direction: column;
        align-items: center;
    }

    .page.open .header__right {
        transform: initial;
    }

    .page.open:after {
        content: "";
        clear: both;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        z-index: 8;
        opacity: 0.7;
    }

    .rules__h1 {
        font-size: 26px;
    }

    .rulesSection {
        margin: 50px 0;
    }

    .rules__p {
        font-size: 14px;
    }

    .rules__content, .rules__ul {
        gap: 15px;
    }

    .rules__ul {
        margin-left: 30px;
    }

    .rules__h1 {
        margin-bottom: 10px;
    }

    .rules__h2 {
        font-size: 18px;
    }
}

@media(max-width: 768px) {
    .yellowBlock__ml {
        margin-left: 0;
    }

    .robo-icon {
        opacity: 0.3;
    }

    .yellowBlock::after {
        content: none;
    }

    .yellowBlock__text {
        font-size: 16px;
    }

    .advantages__content {
        margin-top: 30px;
    }

    .greenBlock__icon {
        opacity: 0.3;
        max-width: 200px;
    }

    .ourClients__text {
        font-size: 16px;
    }

    .technologiesPoints__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .workCostBlock__text {
        font-size: 16px;
    }

    .workCostBlock__point {
        font-size: 16px;
    }

    .workCostBlock__point:after {
        top: 8px;
        left: -12px;
        width: 4px;
        height: 4px;
    }

    .workCost__text br {
        display: none;
    }

    .newsletterForm__btn {
        width: 155px;
    }

    .newsletterForm__input {
        padding: 0 30px;
    }

    .newsletter__text br {
        display: none;
    }

    .gamification__title {
        font-size: 16px;
    }

    .gamification__text {
        font-size: 16px;
    }

    .gamification__centrBlock {
        margin: 0 20px;
    }

    .gamification__btn {
        font-size: 16px;
    }
}

@media(max-width: 576px) {
    .sliderBlock__title {
        font-size: 18px;
    }

    .sliderBlock__wrap {
        width: calc(100% - 20px);
    }

    .sliderBlock__title {
        text-align: center;
    }

    .amgHeader__title {
        font-size: 20px;
    }

    .amg {
        padding: 30px 0 140px;
    }

    .container {
        width: calc(100% - 40px);
    }

    .amg__points {
        margin-top: 30px;
    }

    .amg__points {
        gap: 30px;
    }

    .advantages {
        margin: -110px 0 30px;
    }

    .yellowBlock__text {
        font-size: 14px;
    }

    .yellowBlock__text::after {
        top: 8px;
        left: -12px;
        width: 4px;
        height: 4px;
    }

    .wwdHeader__title {
        font-size: 20px;
    }

    .wwdHeader__subTitle {
        font-size: 16px;
    }

    .wwd__points {
        margin-top: 30px;
    }

    .wwdPoint__img {
        max-height: 30px;
    }

    .swwdPoint__text {
        font-size: 14px;
    }

    .wwd__points {
        gap: 30px;
    }

    .ourClients {
        margin-top: 50px;
    }

    .ourClients__title {
        font-size: 20px;
    }

    .ourClients__textWrap {
        margin-top: 10px;
    }

    .ourClients__text {
        font-size: 14px;
    }

    .ourClients__textWrap {
        gap: 10px;
    }

    .ourClients {
        gap: 20px;
    }

    .greenBlock__text {
        font-size: 14px;
    }

    .greenBlock__text br {
        display: none;
    }

    .greenBlock__textWrap {
        position: relative;
        z-index: 1;
    }

    .technologies__title {
        font-size: 20px;
    }

    .aboutUs {
        padding: 60px 0 120px;
    }

    .technologiesPoints__content {
        padding: 30px 0;
    }

    .technologiesPoint__label {
        font-size: 14px;
    }

    .workCost__title {
        font-size: 20px;
    }

    .workCost {
        padding: 30px 0;
    }

    .workCostBlock__text {
        font-size: 14px;
    }

    .workCostBlock__textWrap {
        gap: 15px;
    }

    .workCostBlock__point {
        font-size: 14px;
    }

    .workCost__text {
        font-size: 14px;
    }

    .newsletter__form {
        height: 52px;
    }

    .newsletterForm__btn {
        width: 105px;
    }

    .newsletterForm__btn-text {
        font-size: 11px;
    }

    .newsletterForm__input {
        font-size: 12px;
    }

    .newsletter__title {
        font-size: 20px;
    }

    .newsletter__content {
        gap: 20px;
    }

    .newsletter {
        padding: 30px 0;
    }

    .header__right {
        width: 240px;
    }

    .gamificationHeader__title {
        font-size: 18px;
    }

    .close__popup {
        width: 30px;
        height: 30px;
        font-size: 40px;
        top: -15px;
    }

    .gamification__header {
        margin-bottom: 10px;
    }

    .gamification__text {
        font-size: 14px;
    }

    .gamification__title {
        font-size: 14px;
        line-height: 140%;
    }

    .gamification__content {
        padding: 20px 20px;
    }

    .gamification__text-redLine {
        text-indent: 10px;
    }

    .gamification__btn {
        font-size: 14px;
    }

    .rules__h1 {
        font-size: 20px;
    }

    .rules__h2 {
        font-size: 16px;
    }
}