*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Euclid Flex';
    font-style: normal;
    font-weight: 400;
}

body {
    position: relative;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    display: none;
}

body::-webkit-scrollbar-thumb {
    background: #000000;
}

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    background-color: unset;
}

input {
    outline: none;
    border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

textarea {
    outline: none;
    border: none;
    resize: vertical;
}

img {
    max-width: 100%;
}

/* Reuseble styles */
.container {
    max-width: 1410px;
    margin: 0 auto;
}

.main {
    padding-bottom: 250px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    padding: 18px 32px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #000000;
}

.btn__content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-black {
    font-weight: 500;
    background: #000000;
    color: #FFFFFF;
}

.btn-black:hover {
    background: #2B3E42;
}

.btn-white {
    background: #F5F5F7;
    border: 2px solid #000000;
}

.btn-white:hover {
    background: #000000;
    color: #FFFFFF;
}

.btn:active .btn__content {
    opacity: 0.5;
}

.colored {
    font: inherit;
    color: #AAF35B;
}

/* firstScreen section */
.firstScreen {
    position: relative;
    background: #F5F5F7;
    padding-bottom: 232px;
    margin-bottom: 100px;
}

@media (min-width: 1150px) {
    @media screen and (min-height: 930px) and (max-height: 1100px) {
        .firstScreen {
            height: 100vh;
            padding-bottom: 0;
        }
    }
}

.header {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    max-width: 196px;
    width: 100%;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.header__menu-item {
    position: relative;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;

    color: #FFFFFF;
    cursor: pointer;
}

.header__menu-item:nth-child(n+2) {
    padding-left: 30px;
    margin-left: 30px;
}

.header__menu-item:nth-child(n+2)::before {
    content: "";
    left: 0;
    top: calc(50% - (6px / 2));
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.header__menu-link {
    cursor: pointer;
}

.header__burger {
    position: relative;
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 33px;
    cursor: pointer;
}

.header__burger-icon {
    width: 100%;
    height: 3px;
    background: #000000;
}

.header__burger-icon::before,
.header__burger-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000000;
}

.header__burger-icon::before {
    transform: translateY(-12px);
}

.header__burger-icon::after {
    transform: translateY(12px);
}

.header__burger.active .header__burger-icon::after {
    transform: rotate(-45deg) translate(35px, 35px);
    background: #989898;
}

.header__burger.active .header__burger-icon::before {
    transform: rotate(45deg) translate(35px, -35px);
    background: #989898;
}

.header__burger.active .header__burger-icon {
    transform: translateX(-50px);
    background: transparent;
}

.firstScreen__container {
    max-width: calc(50% - 55px);
    margin-right: auto;
    width: 100%;
    padding-top: 60px;
}

.firstScreen__title {
    font-size: 50px;
    line-height: 70px;

    color: #000000;

    margin-bottom: 30px;
}

.firstScreen__line {
    max-width: 89px;
    width: 100%;
    margin-bottom: 30px;
}

.firstScreen__subtitle {
    max-width: 570px;
    width: 100%;
    font-size: 20px;
    line-height: 30px;

    color: #2B3E42;

    margin-bottom: 50px;
}

.firstScreen__buttons {
    display: flex;
    align-items: center;
}

.btn-tell-us {
    padding: 20px 44.5px;
    margin-right: 30px;
}

.btn-tell-us .btn-black__content {
    display: flex;
}

.btn-tell-us__text {
    margin-right: 20px;
}

.firstScreen__background-dark {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #000000;
}

.firstScreen__background-dark-container {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.firstScreen__background-dark-w {
    width: calc(100% - 126px);
}

.firstScreen__woman {
    position: absolute;
    bottom: 0;
    left: -105px;
}

.firstScreen__icon {
    max-width: 200px;
    width: 100%;
    position: absolute;
    bottom: -45px;
    left: calc(50% - (200px / 2));
}

/* we-turn section */
.we-turn {
    padding: 100px 0;
}

.we-turn__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 30px;
}

.we-turn__text {
    max-width: 690px;
    width: 100%;
}

.we-turn__title {
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;

    color: #000000;

    margin-bottom: 40px;
}

.we-turn__line {
    max-width: 89px;
    width: 100%;
    margin-bottom: 40px;
}

.we-turn__description {
    max-width: 570px;
    width: 100%;
    font-size: 18px;
    line-height: 28px;

    color: #2B3E42;
}

.we-turn__description:nth-of-type(n+2) {
    margin-top: 20px;
}


.we-turn__images {
    min-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.we-turn__images-item {
    border-radius: 30px;
}

/* our-info section */
.our-info {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.our-info__container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 30px;
    background: #F5F5F7;
    border-radius: 50px;
    padding: 100px 0 100px 50px !important;
}

.slick-list {
    right: 0;
}

.our-info__title {
    min-width: 450px;
    max-width: 450px;
    width: 100%;
}

.our-info__title-item {
    max-width: 450px;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;

    color: #000000;
}

.slider-flex-wrapper {
    flex: 1;
    min-width: 100%;
}

.our-info__slider {
    cursor: pointer;
}

.our-info__slider-item {
    /* max-width: 338px; */
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 22px;
    background: #FFFFFF;
    border: 2px solid rgba(43, 62, 66, 0.15);
    border-radius: 30px;
    padding: 25px 25px 10px;
    margin-right: 30px;
}

.our-info__slider-item-title {
    max-width: 170px;
    width: 100%;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;

    color: #000000;
}

.our-info__slider-item-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.our-info__slider-item-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
}

.our-info__slider-item-number {
    font-weight: 700;
    font-size: 50px;
    line-height: 70px;

    color: #AAF35B;
}

/* we-do section */
.we-do {
    padding: 100px 0;
}

.we-do__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 30px;
}

.we-do__title {
    position: sticky;
    top: 10px;
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;

    color: #000000;
}

.we-do__list {
    max-width: calc(100% - 480px);
    width: 100%;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.we-do__list-1,
.we-do__list-2 {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    width: 100%;
}

.we-do__list-item {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    padding: 40px 40px 0;
}

.we-do__list-item.mob {
    display: none;
}

.we-do__list-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 25px;
}

.we-do__list-item-description {
    max-width: 340px;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

.we-do__list-item.black {
    background: #000000;
}

.we-do__list-item.black .we-do__list-item-title,
.we-do__list-item.black .we-do__list-item-description {
    color: #FFFFFF;
}

.we-do__list-item.green {
    background: #BBFA78;
}

.we-do__list-item.white {
    background: #F5F5F7;
}

.we-do__list-item-image {
    max-width: 240px;
    width: 100%;
    margin-left: calc(100% - 200px);
}

/* traffic-sources section */
.traffic-sources {
    padding: 100px 0;
}

.traffic-sources__container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.traffic-sources__title {
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;

    color: #000000;
}

.traffic-sources__wrapper {
    max-width: 930px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 2px solid #2B3E42;
    border-radius: 30px;

    background-image: url(../images/traffic-sources-bg.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.traffic-sources__item {
    position: relative;
    min-height: 360px;
    padding: 40px 40px 0;
}

.traffic-sources__item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;

    color: #000000;

    margin-bottom: 25px;
}

.traffic-sources__item-description {
    font-size: 18px;
    line-height: 28px;

    color: #2B3E42;

    padding-bottom: 40px;
}

/* tell-us section */
.tell-us {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.tell-us__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 100px;
    background: #BBFA78;
    border-radius: 60px;
    padding: 100px 120px;
}

.tell-us__title {
    max-width: 670px;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;

    color: #000000;
}

@media (max-width: 1430px) {
    .container {
        padding: 0 16px;
    }

    .tell-us__container {
        column-gap: 30px
    }
}

@media (max-width: 1320px) {
    .firstScreen__background-dark {
        overflow: hidden;
    }

    .firstScreen__background-dark-container {
        display: block;
        width: 1040px;
        left: calc(50% - (1040px / 2));
        top: 140px;
    }

    .firstScreen__background-dark-w {
        max-width: 1040px;
        width: 100%;
    }

    .firstScreen__woman {
        max-width: unset;
        right: 0;
        left: unset;
    }

    .we-do__list {
        max-width: calc(100% - 300px);
    }
}

@media (max-width: 1250px) {
    .firstScreen__buttons {
        align-items: unset;
        flex-direction: column;
        row-gap: 30px;
    }

    .btn-tell-us {
        margin-right: 0;
    }

    .traffic-sources__wrapper {
        background-position: 50% 70%;
    }

    .tell-us__container {
        flex-direction: column;
        align-items: center;
        row-gap: 50px;
    }

    .tell-us__title {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 1165px) {
    .we-turn__container {
        align-items: unset;
        flex-direction: column;
        row-gap: 40px;
    }

    .we-turn__text {
        max-width: 100%;
    }

    .we-turn__images-item {
        width: 100%;
    }
}

@media (max-width: 1130px) {
    .header {
        padding: 30px 0 60px;
    }

    .firstScreen {
        padding-bottom: 170px;
    }

    .firstScreen__container {
        max-width: calc(50% - 10px);
        padding-top: 0;
    }

    .firstScreen__title {
        font-size: 40px;
        line-height: 60px;
    }

    .firstScreen__icon {
        bottom: -70px;
    }

    .firstScreen {
        margin-bottom: 50px;
    }

    .we-turn {
        padding: 50px 0;
    }

    .our-info {
        padding: 50px 0;
    }

    .our-info__container {
        column-gap: 20px;
        padding: 60px 0 60px 30px !important;
    }

    .our-info__title {
        max-width: 328px;
        min-width: 328px;
    }

    .our-info__title-item {
        max-width: 328px;
    }

    .we-do {
        padding: 50px 0;
    }

    .we-do__container {
        flex-direction: column;
        align-items: center;
        row-gap: 50px;
    }

    .we-do__title {
        position: relative;
        top: unset;
    }

    .we-do__list {
        max-width: 100%;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .we-do__list-item {
        padding: 30px 30px 0;
    }

    .we-do__list-item-image {
        margin-left: calc(100% - 210px);
    }

    .traffic-sources {
        padding: 50px 0;
    }

    .traffic-sources__container {
        flex-direction: column;
        align-items: center;
        row-gap: 66px;
    }

    .traffic-sources__wrapper {
        background-position: 50% 50%;
    }

    .traffic-sources__item {
        min-height: 447px;
    }

    .tell-us {
        padding: 50px 0;
    }

    .tell-us__container {
        padding: 100px 33px 100px;
    }

    .main {
        padding-bottom: 290px;
    }
}

@media (min-width: 1024px) and (max-width: 1025px) {
    .traffic-sources__wrapper {
        background-position: 50% 30%;
    }
}

@media (max-width: 1024px) {
    .firstScreen__woman {
        max-width: 625px;
    }
}

@media (max-width: 820px) {
    .our-info__slider-item {
        max-width: unset;
    }
}

@media (max-width: 750px) {
    .container {
        padding: 0 10px;
    }

    .header {
        padding: 30px 0;
        padding-right: 10px;
    }

    .header__nav {
        display: none;
    }

    .firstScreen__background-dark {
        display: none;
    }

    .firstScreen__container {
        max-width: 100%;
    }

    .header__burger {
        display: flex;
    }

    .header__nav.active {
        display: block;
        background: rgba(0, 0, 0, 0.9);
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1000;
    }

    .header__menu {
        height: 100%;
        padding-left: 36px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
    }

    .header__menu-item {
        padding-left: 30px;
        margin-left: 0 !important;
        font-size: 32px;
        line-height: 41px;
    }

    .header__menu-item::before {
        content: "";
        left: 0;
        top: calc(50% - (6px / 2));
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #FFFFFF;
    }

    .firstScreen {
        padding-bottom: 88px;
    }

    .firstScreen__title {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .firstScreen__line {
        margin-bottom: 20px;
    }

    .firstScreen__subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .btn {
        font-size: 16px;
        line-height: 20px;
    }

    .firstScreen__buttons {
        row-gap: 15px;
    }

    .firstScreen__icon {
        max-width: 100px;
        left: calc(50% - (100px / 2));
        bottom: -38px;
    }

    .firstScreen {
        margin-bottom: 25px;
    }

    .we-turn {
        padding: 25px 0; 
    }

    .we-turn__container {
        row-gap: 30px;
    }

    .we-turn__title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 30px;
    }

    .we-turn__line {
        margin-bottom: 30px;
    }

    .we-turn__description {
        font-size: 16px;
        line-height: 26px;
    }

    .we-turn__images {
        min-width: unset;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .our-info {
        padding: 25px 0;
    }

    .our-info__container {
        flex-direction: column;
        row-gap: 30px;
        padding: 30px 20px !important;
    }

    .our-info__title {
        max-width: 100%;
        min-width: unset;
    }

    .our-info__title-item {
        max-width: 100%;
        font-size: 18px;
        line-height: 28px;
    }

    .swiper-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .our-info__slider-item {
        max-width: 100%;
        margin-right: 0;
        padding: 15px 15px 0;
    }

    .our-info__slider-item-title {
        font-size: 18px;
        line-height: 28px;
    }

    .our-info__slider-item-number {
        font-size: 40px;
        line-height: 60px;
    }

    .we-do {
        padding: 25px 0;
    }

    .we-do__container {
        row-gap: 30px;
    }

    .we-do__title {
        font-size: 40px;
        line-height: 50px;
    }

    .we-do__list-1 {
        row-gap: 20px;
    }

    .we-do__list-item.mob {
        display: flex;
    }

    .we-do__list-2 {
        display: none;
    }

    .we-do__list-item {
        padding: 30px 20px 0;
    }

    .we-do__list-item-title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .we-do__list-item-description {
        font-size: 14px;
        line-height: 24px;
    }

    .we-do__list-item-image {
        margin-left: calc(100% - 220px);
    }

    .traffic-sources {
        padding: 25px 0;
    }

    .traffic-sources__container {
        row-gap: 30px;
    }

    .traffic-sources__title {
        font-size: 40px;
        line-height: 50px;
    }

    .traffic-sources__wrapper {
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;
        background: none;
        border: none;
    }

    .traffic-sources__item {
        min-height: unset;
        padding: 30px 20px;
        border: 2px solid #2B3E42;
        border-radius: 30px;
    }

    .traffic-sources__item-title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .traffic-sources__item-description {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 0;
    }

    .tell-us {
        padding: 25px 0;
    }

    .tell-us__container {
        padding: 30px 10px;
        border-radius: 30px;
        row-gap: 20px;
    }

    .tell-us__title {
        font-size: 30px;
        line-height: 40px;
    }

    .main {
        padding-bottom: 365px;
    }
}