*, *::after, *::before {
    box-sizing: border-box;
}

:root {
    --bgColor: #323545;
    --fontColorGrey: #989AA2;
    --fontColorWhite: #ffffff;
    --fontColorYellow: #FBF0C5;
    --fontColorBlue: #7DD1FF;
    --fontColorOrange: #FA8516;
    --fontColorRed: #E75471;
    --fontColorDark: #4D505B;
    --divColorBlue: #1278F0;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--bgColor);
    color: var(--fontColorWhite);
}

.container {
    max-width: 1185px;
    padding: 0 20px;
    margin: 0 auto;
}

.wrapper {
    position: relative;
    background-image: url(../assets/img/icons/bg-grid.svg);
    background-repeat: repeat;
    background-position: top center;
}

section {
    padding: 69px 0;
}

.logo {
    display: block;
    width: 130px;
}

.logo img {
    display: block;
    max-width: 100%;
}

.header {
    position: relative;
    z-index: 2;
    padding: 65px 0 67.5px;
}

.header__content {
    max-width: 840px;
    padding-right: 11px;
    display: flex;
    justify-content: space-between;

}

.header__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--fontColorGrey);
}

.header__left {
    display: flex;
    align-items: center;
    gap: 118px;
}

.header__address {
    display: flex;
    align-items: center;
    gap: 56px;
}

.title-h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.22;
}

.title-h2 span {
    display: block;
}

.title-h2_blue span {
    color: var(--fontColorBlue);
}

.title-h2_yellow span {
    color: var(--fontColorOrange);
}

.title-h2_red span {
    color: var(--fontColorRed);
}

.title-h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25
}

.button {
    padding: 0;
    background: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: ease .3s;
}

.button_ghost {
    border-color: var(--fontColorYellow);
    font-size: 22px;
    line-height: 1.22;
    color: var(--fontColorWhite);
}

.button_ghost:disabled, .button_ghost.disabled {
    border-color: var(--fontColorDark);
    color: var(--fontColorDark);
}

.button_ghost:hover {
    border-color: var(--divColorBlue);
}

.button_ghost:active {
    border-color: var(--divColorBlue);
    color: var(--divColorBlue);
}

.button_filled {
    border-color: var(--fontColorYellow);
    background-color: var(--fontColorYellow);
    font-size: 16px;
    line-height: 1.25;
    color: var(--bgColor);
}

.button_filled:disabled, .button_filled.disabled {
    background-color: var(--fontColorDark);
    border-color: var(--fontColorDark);
    color: var(--fontColorGrey);
}

.button_filled:hover {
    border-color: var(--fontColorWhite);
    background-color: var(--fontColorWhite);
}

.button_filled:active {
    color: var(--divColorBlue);
}

.section-number {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.hero {
    padding-top: 65.5px;
}

.hero__content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 44px;
    max-width: 1030px;
    padding-left: 46px;
}

.hero__image {
    min-width: 396px;
    width: 396px;
    z-index: 1;
}

.hero__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero__title {
    margin: 0;
    font-family: 'Moul', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.447;
    color: var(--fontColorYellow);
}

.hero__title span {
    display: block;
    color: var(--fontColorBlue);
}

.hero__text {
    margin: 0;
    max-width: 275px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--fontColorWhite);
}

.about__content {
    max-width: 974px;
}

.about__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 135px;
    color: var(--fontColorWhite);
    counter-reset: part;
}

.about__item {
    position: relative;
    padding-left: 194px;
    display: flex;
    gap: 90px;
    counter-increment: part 1;
}

.about__item::before {
    content: "0"counter(part)"";
    position: absolute;
    left: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--fontColorGrey);
}

.about__title-h2 {
    width: 200px;
}

.about__info {
    max-width: 490px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.about__text {
    margin: 0;
}

.about__sub-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__sub-item {
    position: relative;
    padding-left: 52px;
}

.about__sub-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 9px;
    width: 15px;
    height: 14px;
    background-image: url("../assets/img/icons/arrow.svg");
    background-repeat: no-repeat;
}

.about__caption {
    margin: 0;
    padding: 50px 0 0 50px;
    max-width: 418px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--fontColorWhite);
}
.information__content {
    position: relative;
    padding: 132px 172px 142px 197px;
    background-color: rgba(43, 46, 61, 0.6);
}

.information__list {
    display: flex;
    flex-direction: column;
    gap: 135px;
}

.information__decor {
    position: absolute;
    width: 23px;
    height: 23px;
    bottom: -3px;
    border-bottom: 5px solid rgb(152, 154, 162);
}

.information__decor_left {
    left: -3px;
    border-left: 5px solid rgb(152, 154, 162);
}

.information__decor_right {
    right: -3px;
    border-right: 5px solid rgb(152, 154, 162);
}

.information__content::before, .information__content::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 23px;
    height: 23px;
    border-top: 5px solid var(--fontColorGrey);
}

.information__content::before {
    left: -3px;
    border-left: 5px solid var(--fontColorGrey);
}

.information__content::after {
    right: -3px;
    border-right: 5px solid var(--fontColorGrey);
}

.information__row {
    display: flex;
    gap: 75px;
}

.information__title-h2 {
    width: 215px;
}

.information__row:nth-child(2) .information__title-h2 span {
    display: inline;
}

.information__desc {
    max-width: 490px;
}

.information__text {
    margin: 0;
    padding-right: 81px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.information__text:not(:last-child) {
    margin-bottom: 20px;
}

.information__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px 20px;
}

.information__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/*.information__title-h3 {*/
/*    flex-grow: 1;*/
/*}*/

.information__col-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--fontColorGrey);
}

.information__bottom {
    margin-top: 85px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.information__caption {
    margin: 0 0 20px;
    color: var(--fontColorWhite);
}

.information__action {
    position: relative;
    padding-left: 52px;
    color: var(--fontColorBlue);
    text-decoration: none;
}

.information__action::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 9px;
    width: 15px;
    height: 14px;
    background-image: url(../assets/img/icons/arrow-blue.svg);
    background-repeat: no-repeat;
}

/*.information {*/
/*    padding-bottom: 544px;*/
/*}*/

.contacts {
    /*padding: 544px 0 513px;*/
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    position: relative;
}

.contacts .container {
    width: 1185px;
}

.contacts__content {
    padding-right: 83px;
    margin-left: auto;
    max-width: 658px;
}

.contacts__logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.contacts__logo img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.contacts__title {
    margin: 40px 0;
    font-family: 'Moul', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fontColorYellow);
}

.contacts__title span {
    display: block;
    color: var(--fontColorBlue);
}

.contacts__button {
    position: relative;
    width: 351px;
    height: 47px;
}

.contacts__button::after {
    content: '';
    position: absolute;
    right: -87px;
    bottom: 18px;
    background-image: url(../assets/img/icons/arrow-circle.svg);
    background-repeat: no-repeat;
    width: 62px;
    height: 64px;
}

.clients {
    /*padding-top: 513px;*/
    padding-bottom: 198px;
}

.clients__content {
    position: relative;
    max-width: 964px;
    display: flex;
    gap: 10px;
    padding-left: 194px;
}

.clients__title-h2 {
    width: 270px;
}

.clients__title-h2 span {
    display: inline;
}

.clients .section-number {
    position: absolute;
    left: 0;
}

.clients__info {
    max-width: 490px;
}

.clients__desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clients__text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--fontColorWhite);
}

.clients__logos {
    margin: 20px 0 37px;
    display: flex;
    align-items: center;
    gap: 37px;
    opacity: 0.5;
}

.clients__logo {
    max-width: 145px;
}

.clients__logo:nth-child(2) {
    width: 105px;
}

.clients__logo:not(:first-child) {
    margin-top: 15px;
}

.clients__logo img {
    display: block;
    object-fit: contain;
}

.clients__button {
    width: 224px;
    height: 40px;
}

.clients__bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bg-wrapper {
    background-color: rgba(43, 46, 61, 0.6);
}

.partners {
    padding: 205px 0 185px;
}

.partners__content {
    position: relative;
    max-width: 964px;
    padding-left: 194px;
    display: flex;
    gap: 40px;
}

.partners .section-number {
    position: absolute;
    left: 0;
}

.partners__title-h2 {
    width: 250px;
}

.partners__title-h2 span {
    display: inline;
}

.partners__info {
    max-width: 479px;
}

.partners__row {
    display: flex;
    gap: 34px;
}

.partner__logo {
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
}

.partner__logo img {
    display: block;
    object-fit: contain;
}

.partners__text {
    margin: 16px 0 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.6);
}

.footer {
    position: relative;
    overflow: hidden;
    border-radius: 10000px 10000px 0 0;
    background-color: var(--fontColorWhite);
    color: var(--bgColor);
}

.footer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    z-index: 1;
    width: 100%;
    height: 100%;
    /*background-image: url("../assets/img/icons/grid-ex2.svg");*/
    background-image: url("../assets/img/icons/bg-grid-blue.svg");
}

.footer__content {
    position: relative;
    z-index: 2;
    padding: 204px 162px 61px 196px;
    display: flex;
    justify-content: space-between;
}

.footer-wrapper {
    overflow: hidden;
}

.footer__left {
    padding: 0 91px 73px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__image {
    width: 198px;
    height: 144px;
}

.footer__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.footer__right {
    max-width: 497px;
}

.footer__right-title {
    max-width: 293px;
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.22;
}

.footer__info {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 20px;
}

.footer__text {
    margin: 0;
}

.footer__text:not(:last-child) {
    margin: 0 0 20px;
}

.footer__button {
    width: 252px;
    height: 40px;
    margin: 0 0 95px;
}

.footer__rights {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.footer__button:hover {
    background-color: #ffeda6;
    border-color: #ffeda6;
}


@media(min-width: 1600px) {
    .footer {
        padding: 6vw;
    }
}

@media(min-width: 2100px) {
    .footer {
        padding: 15vw;
    }

    .footer::after {
        background-position-y: center;
    }
}

@media(min-width: 5000px) {
    .footer {
        padding: 20vw;
    }
}

@media(max-width: 1200px) {
    .hero__image {
        min-width: 296px;
        width: 296px;
    }

    .information__content {
        padding: 132px 52px 142px 57px;
    }

    .information {
        padding-top: 118px;
    }

    .about__item,
    .clients__content,
    .partners__content {
        padding-left: 54px;
    }

    .footer::after {
        top: 20%;
    }

    .footer {
        background-color: var(--fontColorWhite);
    }

    .footer::before {
        display: none;
    }
}

@media(max-width: 900px) {
    .wrapper {
        background-image: url("../assets/img/icons/bg-grid-small.svg ");
    }
    .header__content {
        padding-right: 0;
        max-width: 100%;
    }
    .header__left {
        gap: 50px;
    }
    .hero__content {
        flex-direction: column;
        max-width: 100%;
        padding-left: 0;
        align-items: flex-start;
    }

    .hero__image {
        margin: 0 auto;
    }
    .about__item {
        flex-direction: column;
        gap: 30px;
    }
    .about__title-h2 {
        width: 100%;
    }
    .about__title-h2 span {
        display: inline;
    }
    .information {
        padding-top: 83px;
        padding-bottom: 67px;
    }
    .information__row {
        flex-direction: column;
        gap: 30px;
    }
    .information__title-h2 {
        width: 100%;
    }
    .information__title-h2 span {
        display: inline;
    }
    .information__text {
        padding-right: 0;
    }
    .information__desc {
        max-width: 100%;
    }
    .contacts {
        padding: 67px 0 69px;
    }
    .clients {
        padding: 69px 0 138px;
    }
    .clients__content {
        flex-direction: column;
        gap: 30px;
    }
    .clients__title-h2 {
        width: 100%;
    }
    .clients__info {
        max-width: 100%;
    }
    .clients__logo img {
        width: 100%;
    }
    .partners {
        padding: 120px 0;
    }
    .partners__content {
        flex-direction: column;
        gap: 30px;
    }
    .partners__info {
        max-width: 100%;
    }
    .footer__content {
        padding: 70px 54px 28px;
        flex-direction: column;
        align-items: center;
        gap: 44px;
    }
    .footer__left {
        padding: 0;
        flex-direction: column-reverse;
        gap: 28px;
        align-items: center;
    }
    .footer__right {
        max-width: 100%;
    }
    .footer__right-title {
        max-width: 100%;
    }
    .footer__button {
        margin: 0 auto 125px;
    }
    .footer__rights {
        text-align: center;
        display: block;
    }
    .footer__title-h2 {
        text-align: center;
    }
}

@media(max-width: 820px) {
    .information__title-h3 {
        min-height: 80px;
        display: flex;
        align-items: center;
    }
}

@media(max-width: 792px) {
    .contacts__title {
        max-width: 425px;
    }
    .contacts__button::after {
        right: 76px;
        bottom: 63px;
        width: 52px;
        height: 44px;
        background-image: url("../assets/img/icons/arrow-circle-small.svg");
    }
}

@media(max-width: 650px) {
    .wrapper {
        background-position-x: 50%;
    }
    .header {
        padding: 35px 0 68px;
    }
    .header__left {
        gap: 23px;
        flex-direction: column;
        align-items: flex-start;
    }
    .header__address {
        flex-direction: column;
        gap: 23px;
        align-items: flex-start;
    }

    .hero {
        padding: 68px 0;
    }

    .hero__content {
        gap: 135px;
        align-items: center;
    }

    .hero__image {
        min-width: auto;
        width: 100%;
        max-width: 293px;
    }

    .hero__info {
        gap: 16px;
    }

    .hero__title {
        font-size: 27px;
        line-height: 1.09;
    }

    .about__item {
        padding: 65px 0 0 0;
    }

    .about__item::before {
        left: 0;
        top: 0;
    }

    .about__info {
        max-width: 100%;
    }

    .information__content {
        background-color: transparent;
        padding: 14px 0 27px 0;
    }

    .information__list {
        gap: 85px;
    }

    .information__title-h3 {
        min-height: auto;
    }

    .information__cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .information__title-h3 br {
        display: none;
    }

    .information__bottom {
        margin-top: 30px;
    }

    .information__action {
        padding: 0 52px 0 0;
    }

    .information__action::before {
        right: 9px;
        left: auto;
    }

    .information__content::before,
    .information__content::after,
    .information__decor {
        opacity: 0.2;
    }

    .information__content::before {
        left: -14px;
        top: 0;
    }

    .information__content::after {
        right: -11px;
        top: 0;
    }

    .information__decor_left {
        left: -11px;
        bottom: 17px;
    }

    .information__decor_right {
        right: -11px;
        bottom: 17px;
    }

    .contacts__content {
        max-width: 100%;
        padding: 0;
    }

    .contacts__button {
        max-width: 351px;
        width: 100%;
    }

    .contacts__button::after {
        right: 76px;
        bottom: 63px;
        width: 52px;
        height: 44px;
        background-image: url("../assets/img/icons/arrow-circle-small.svg");
    }

    .contacts__title {
        max-width: 350px;
        line-height: 1.09;
    }

    .clients__content {
        padding: 65px 0 0 0;
    }

    .clients .section-number {
        top: 0;
    }

    .clients__logos {
        margin-bottom: 20px;
        gap: 23px;
    }

    .bg-wrapper {
        margin-top: 7px;
    }

    .partners {
        padding: 59px 0 92px;
    }

    .partners__content {
        padding: 65px 0 0 0;
    }

    .partners .section-number {
        top: 0;
    }

    .partners__row {
        flex-direction: column;
        gap: 20px;
    }

    .partners__text {
        margin: 10px 0 0;
    }

    .footer__content {
        padding: 78px 0 28px;
    }

    .footer__title-h2 span {
        color: var(--divColorBlue);
    }

    .footer__right-title {
        margin: 0 0 30px;
    }

    .footer__info {
        /*margin: 0 0 30px;*/
    }

    .footer::after {
        top: 0;
        background-image: url("../assets/img/icons/bg-grid-blue-small.svg");
    }
}

@media(max-width: 380px) {
    .header__content {
        gap: 15px;
    }

    .button_ghost {
        font-size: 18px;
    }

    .contacts__title {
        font-size: 28px;
    }
}

@media(max-width: 359px) {
    .header__content {
        gap: 15px;
    }

    .contacts__button::after {
        display: none;
    }

    .information__action {
        font-size: 18px;
    }

    .information__action::before {
        top: 5px;
    }

    .clients__logo:not(:first-child) {
        margin-top: 10px;
    }
}

/*animation*/
.to-animate {
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
.to-animate.visible {
    opacity: 1;
}

.to-translate-animate .footer{
    translate: 0 5000px;
    opacity: 0;
    transition: .9s ease-in-out, opacity 1s ease-in-out .5s;
}

.to-translate-animate.visible .footer {
    translate: 0 0;
    opacity: 1;
}