html {
    box-sizing: border-box;
}


@media only screen and (min-width: 320px) and (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.4rem;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
}

.container--big {
    margin: 0 auto;
    max-width: 1250px;
}

.site {
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
}

.header--scrolled {
    background: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

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

.header .container--big {
    display: flex;
    justify-content: space-between;
    height: 12vh;
    align-items: center;
}

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

.header-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 20px;
}

.header-menu .menu-item {
    margin-right: 36px;
}

.header-menu .menu-item__button--dark a {
    border: 2px solid #262c49;
    background: #262c49;
    color: #fff;
}

.header-menu .menu-item:last-child {
    margin-right: 0;
}

.header-menu .menu-item a {
    color: #262c49;
    font-family: Raleway, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    position: relative;
}

.header-menu .menu-item a:before {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #262c49;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform .3s;
    content: "";
}

.header-menu .menu-item__button a:before {
    display: none;
}

.header-menu .menu-item a:hover {
    outline: 0;
    text-shadow: 1px 0 0 currentColor;
    transition: all .3s;
}

.header-menu .menu-item a:hover:before {
    transform-origin: 0 50%;
    transform: scale3d(1, 1, 1);
}

.header-menu .menu-item__button {
    transition: all .3s;
}

.header-menu .menu-item__button a {
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #fff;
    text-shadow: none;
    padding: 20px;
}

.header-menu .menu-item__button a:hover {
    background: 0 0;
    color: #fff;
    background: #262c49;
    border-color: #262c49;
    text-shadow: none;
}

.header-menu .menu-item__button a {
    padding: 20px 60px;
}

.logo--header {
    min-width: 105px;
    max-width: 140px;
    width: 100%;
    height: auto;
    display: flex;
}

.site-main {
    position: relative;
}

@media (min-width: 1920px) {
    .site-main {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }
}

.hero__svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
    opacity: .5;
}

@media (max-width: 992px) {
    .hero__svg-bg {
        display: none;
    }
}

.hero {
    position: relative;
    z-index: 1;
    background: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 58%, #ebf4f9 58%, #ebf4f9 100%);
}

.hero .container--big {
    padding: 110px 0 0;
}

@media (min-width: 992px) {
    .hero-content {
        padding-top: 55px;
        max-width: 555px;
    }
}

.hero__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #262c49;
    letter-spacing: -.01em;
    font-size: 52px;
    line-height: 52px;
    margin: 0;
}

@media (min-width: 480px) {
    .hero__title {
        font-size: 42px;
        line-height: 52px;
    }
}

.text-green {
    color: #179087;
}

.hero__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
    margin: 40px 0 54px 0;
}

.hero__button {
    margin-bottom: 56px;
}

.button--dark {
    color: #fff;
    background: #262c49;
    border: 2px solid #262c49;
}

.button--dark:hover {
    background: 0 0;
    color: #262c49;
}

.button {
    width: 290px;
    height: 59px;
    border-radius: 10px;
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    cursor: pointer;
}

.hero__additional {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 66px;
}

@media (min-width: 992px) {
    .hero__additional {
        padding-top: 40px;
        border-top: 1px solid #ebf4f9;
        justify-content: space-between;
        flex-direction: row;
    }
}

.hero__additional-text {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 0 0 27px;
    color: #858899;
}

@media (min-width: 992px) {
    .hero__additional-text {
        margin: 0;
    }
}

.hero__icon {
    margin-right: 26px;
}

.hero__icon:last-child {
    margin-right: 0;
}

.hero__images {
    height: 372px;
}

@media (min-width: 480px) {
    .hero__images {
        height: 470px;
    }
}

@media (min-width: 600px) {
    .hero__images {
        height: 490px;
    }
}

@media (min-width: 992px) {
    .hero__images {
        height: unset;
    }
}

@media (max-width: 992px) {
    .hero__images {
        position: relative;
    }
}

.hero__images .hero__background-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 66%;
}

@media (min-width: 600px) {
    .hero__images .hero__background-image {
        width: 449px;
    }
}

@media (min-width: 992px) {
    .hero__images .hero__background-image {
        width: 390px;
        top: 130px;
    }
}

@media (min-width: 1200px) {
    .hero__images .hero__background-image {
        width: unset;
    }
}

.hero__images .hero__foreground-image {
    position: absolute;
    left: 0;
    top: 58px;
    width: 52%;
}

@media (min-width: 600px) {
    .hero__images .hero__foreground-image {
        width: 300px;
        left: unset;
        right: 300px;
    }
}

@media (min-width: 992px) {
    .hero__images .hero__foreground-image {
        width: 250px;
        top: 23%;
        right: 17%;
    }
}

@media (min-width: 1200px) {
    .hero__images .hero__foreground-image {
        bottom: 0;
        right: 244px;
        width: unset;
    }
}

@media (min-width: 1440px) {
    .hero__images .hero__foreground-image {
        right: 344px;
    }
}

.hero__images-curve {
    position: absolute;
    width: 72%;
    right: 0;
    top: 150px;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .hero__images-curve {
        display: none;
    }
}

@media (min-width: 992px) {
    .hero__images-curve {
        width: 30%;
        right: 42px;
        bottom: -10%;
        top: unset;
    }
}

@media (min-width: 1200px) {
    .hero__images-curve {
        width: unset;
        right: 0;
        top: 18%;
    }
}

.problem-solving .container--big {
    padding: 76px 0 90px;
}

@media (min-width: 992px) {
    .problem-solving .container--big {
        padding: 42px 0 130px;
    }
}

.problem-solving__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: #262c49;
    margin-bottom: 49px;
    max-width: 530px;
}

@media (min-width: 992px) {
    .problem-solving__title {
        margin-bottom: 67px;
    }
}

.problem-solving-boxes {
    display: grid;
    grid-gap: 30px;
}

@media (min-width: 1200px) {
    .problem-solving-boxes {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.problem-solving-boxes .box {
    padding: 34px 25px;
    background-color: #ebf4f9;
    display: flex;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .problem-solving-boxes .box {
        justify-content: start;
        flex-direction: column;
    }
}

.problem-solving-boxes .box__icon--wrapper {
    width: 48px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .problem-solving-boxes .box__icon--wrapper {
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 992px) {
    .problem-solving-boxes .box__icon--wrapper {
        display: inherit;
        margin-right: 15px;
    }
}

.problem-solving-boxes .box__icon {
    width: 48px;
    height: 48px;
    -o-object-fit: cover;
    object-fit: cover;
}

.problem-solving-boxes .box__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #262c49;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    padding-bottom: 16px;
}

@media (min-width: 992px) {
    .problem-solving-boxes .box__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.problem-solving-boxes .box__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: rgba(38, 44, 73, .5);
    letter-spacing: .01em;
    margin: 0;
}

.services {
    background: #179087;
    position: relative;
    z-index: 1;
}

.services .container--big {
    padding: 106px 0 113px;
}

@media (min-width: 992px) {
    .services .container--big {
        padding: 109px 0 134px;
    }
}

.services .svg-bg {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    top: 0;
    right: 0;
}

@media (min-width: 992px) {
    .services .svg-bg {

        top: 0;
        right: 0;
    }
}

.services__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #fff;
    text-align: center;
    max-width: 735px;
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto 59px;
}

@media (min-width: 992px) {
    .services__title {
        margin: 0 auto 54px;
        font-size: 42px;
        line-height: 52px;
    }
}

.services-white-boxes {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 32px;
}


@media (min-width: 992px) {
    .services-white-boxes {
        grid-template-columns: 1fr 1fr;
    }
}

.services-white-boxes .box {
    padding: 40px 40px 60px;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    flex: 1;
    display: flex;
}

@media (min-width: 992px) {
    .services-white-boxes .box {
        max-width: 609px;
        padding: 50px 50px 60px;
    }
}

.services-white-boxes .box__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.services-white-boxes .box__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 28px;
    letter-spacing: -.01em;
    color: #262c49;
}

.services-white-boxes .box__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: rgba(38, 44, 73, .5);
    letter-spacing: .01em;
    margin: 0 0 55px;
}

.button-link {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-decoration: none;
    padding-bottom: 0.4em;
    color: #262c49;
    white-space: nowrap;
    transition: all .2s ease 0s;
    cursor: pointer;
    -moz-user-select: none !important;
}

.button-link:before {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    bottom: -16px;
    left: 0;
    width: 100%;
    right: 0;
    background-color: currentcolor;
    transform-origin: 100% 0 0;
    transition: all .2s ease 0s;
}

.button-link:hover {
    transition: all .2s ease .2s;
}

.button-link:hover:before {
    transform: scaleX(0);
}

.button-link:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    bottom: -16px;
    left: 0;
    right: 0;
    background-color: currentcolor;
    transform-origin: 0 0 0;
    transition: all .2s ease .2s;
    transform: scaleX(0);
    width: 100%;
}

.button-link__arrow {
    transition: all .2s ease .2s;
    margin-left: 10px;
    margin-bottom: -6px;
}

.button-link:hover .button-link__arrow {
    transform: translateX(10px) translateZ(0);
}

.services__subtitle {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin: 37px auto 41px;
    letter-spacing: -.01em;
    color: #fff;
    text-align: center;
}

.services-blue-boxes {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 32px;
}

@media (min-width: 992px) {
    .services-blue-boxes {
        grid-template-columns: 1fr 1fr;
    }
}

.services-blue-boxes .box {
    padding: 35px 40px;
    background-color: rgba(235, 244, 249, .1);
    width: 100%;
    flex-direction: column;
    flex: 1;
    display: flex;
}

@media (min-width: 992px) {
    .services-blue-boxes .box {
        max-width: 609px;
        padding: 35px 50px;
    }
}

.services-blue-boxes .box__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.services-blue-boxes .box__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 19px;
    letter-spacing: -.01em;
    color: #fff;
}

.services-blue-boxes .box__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .01em;
    margin: 0;
}

.technologies {
    background: #ebf4f9;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.technologies .svg-bg {
    position: absolute;
    bottom: 0;
    left: -50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    width: 70%;
}

@media (min-width: 992px) {
    .technologies .svg-bg {
        width: unset;
        top: 0;
        left: -13px;
        bottom: unset;
    }
}

.technologies .container--big {
    padding: 80px 0 96px;
}

@media (min-width: 992px) {
    .technologies .container--big {
        padding: 109px 0 110px;
    }
}

.technologies__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: #3a5c8d;
    text-align: center;
    margin: 0 auto 26px;
    max-width: 735px;
}

.technologies__subtitle {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin: 0 auto 57px;
    max-width: 718px;
    letter-spacing: -.01em;
    color: rgba(38, 44, 73, .5);
    text-align: center;
}

.technologies__subtitle:nth-of-type(2) {
    margin: 0 auto 32px;
}

@media (min-width: 992px) {
    .technologies__subtitle {
        margin: 0 auto 32px;
    }
}

@media (min-width: 992px) {
    .technologies__subtitle:nth-of-type(2) {
        margin: 0 auto 32px;
    }
}

.technologies-main-boxes {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 30px 30px;
    margin-bottom: 58px;
}

@media (min-width: 992px) {
    .technologies-main-boxes {
        margin-bottom: 30px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .technologies-main-boxes {
        grid-template-columns: 350px 350px 350px 350px;
    }
}

@media (min-width: 1440px) {
    .technologies-main-boxes {
        grid-template-columns: 289px 289px 289px 289px;
    }
}

/*@media (min-width: 1440px) {*/
/*    .technologies-main-boxes.portfolio-boxes {*/
/*        grid-template-columns: 289px 289px 289px;*/
/*    }*/
/*}*/


.technologies-main-boxes .box {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 15px 33px;
    align-items: center;
}

.technologies-main-boxes .box__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0;
}

.technologies-main-boxes .box__icon {
    max-width: 36px;
    -o-object-fit: contain;
    object-fit: contain;
}

.technologies-addtional {
    margin-bottom: 46px;
}

.technologies-addtional-boxes {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    grid-gap: 30px;
    max-width: 930px;
    margin: 0 auto 69px;
}

@media (min-width: 992px) {
    .technologies-addtional-boxes {
        grid-template-columns: 290px 290px 290px;
    }
}

.technologies-addtional-boxes .box {
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 14px 29px;
    align-items: center;
}

.technologies-addtional-boxes .box__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0;
    text-align: center;
}

.technologies__button {
    margin: 0 auto;
}

.why-us .container--big {
    padding: 140px 0 140px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .why-us .container--big {
        padding: 180px 0 80px;
        flex-direction: row;
        justify-content: space-between;
    }
}

.why-us__reasons--left {
    order: 2;
}

@media (min-width: 992px) {
    .why-us__reasons--left {
        order: 1;
    }
}

.why-us__reasons--left .reason {
    text-align: left;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .why-us__reasons--left .reason {
        text-align: right;
        flex-direction: row;
        justify-content: flex-end;
    }
}

.why-us__reasons .reason {
    display: flex;
    align-items: center;
    max-width: 320px;
    width: 100%;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .why-us__reasons .reason {
        margin-bottom: 150px;
    }
}

.why-us__reasons .reason__content {
    display: flex;
    flex-direction: column;
    max-width: 210px;
}

.why-us__reasons .reason__number {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -.01em;
    color: #262c49;
}

.why-us__reasons .reason__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
}

.why-us__reasons .reason__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
    white-space: nowrap;
}

.why-us__reasons--left .reason__icon {
    margin-right: 42px;
}

@media (min-width: 992px) {
    .why-us__reasons--left .reason__icon {
        margin-right: unset;
        margin-left: 30px;
    }
}

.why-us__reasons .reason__icon {
    background: #faba20;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__content {
    position: relative;
    order: 1;
    margin-bottom: 146px;
}

@media (min-width: 992px) {
    .why-us__content {
        max-width: 400px;
        margin: 0 30px;
        text-align: center;
        order: 2;
    }
}

.why-us__content:after {
    content: "";
    position: absolute;
    top: -120px;
    left: -30px;
    bottom: 0;
    margin: auto;
    width: 191px;
    height: 100%;
    background: #ebf4f9;
    z-index: -1;
}

@media (min-width: 992px) {
    .why-us__content:after {
        height: 100%;
        left: 0;
        right: 0;
    }
}

.why-us__icon {
    margin-bottom: 27px;
}

.why-us__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    margin: 0 0 29px 0;
}

.why-us__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
    margin-bottom: 41px;
}

@media (min-width: 992px) {
    .why-us__description {
        text-align: center;
    }
}

.why-us__reasons--right {
    order: 3;
}

@media (min-width: 992px) {
    .why-us__reasons--right {
        order: 3;
    }
}

.why-us__reasons--right .reason {
    text-align: left;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.why-us__reasons--right .reason__icon {
    margin-right: 42px;
}

@media (min-width: 992px) {
    .why-us__reasons--right .reason__icon {
        margin-right: 30px;
    }
}

.logos .container--big {
    background: #ebf4f9;
    padding: 62px 0 102px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .logos .container--big {
        padding: 75px 80px 86px;
        flex-direction: row;
        justify-content: space-between;
    }
}

.logos--left {
    width: 100%;
    margin-bottom: 103px;
}

@media (min-width: 992px) {
    .logos--left {
        max-width: 450px;
        margin-bottom: unset;
    }
}

.logos__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0 0 36px;
    text-align: center;
}

@media (min-width: 992px) {
    .logos__title {
        text-align: left;
    }
}

.logos--left .logos-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 90px;
}

@media (min-width: 600px) {
    .logos--left .logos-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .logos--left .logos-wrapper {
        grid-template-columns: 1fr 1fr;
        margin-right: 110px;
    }
}

.logos--left .logos-wrapper img {
    max-height: 107px;
    max-width: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.logos--right .logos-wrapper img {
    max-height: 63px;
    max-width: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.logos--right {
    width: 100%;
}

.logos--right .logos-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px 50px;
}

@media (min-width: 600px) {
    .logos--right .logos-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .logos--right .logos-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/*portfolio page*/
.portfolio.page {
    padding-top: 100px;
}

.portfolio-top__container {
    border-top: 1px solid #e9e9ec;
    border-bottom: 1px solid #e9e9ec;
}

.portfolio-top__container .container--big {
    padding: 13px 0 13px 0 !important;
}

.portfolio {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portfolio .container--big {
    padding: 99px 0 87px;
}

@media (min-width: 992px) {
    .portfolio .container--big {
        padding: 117px 0 133px;
    }
}

.portfolio .svg-bg {
    position: absolute;
    top: 80px;
    right: -50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    transform: rotate(270deg);
    width: 70%;
}

@media (min-width: 992px) {
    .portfolio .svg-bg {
        width: unset;
        top: 80px;
        right: 190px;
    }
}

.portfolio-top__link {
    margin-bottom: 170px;
}

.portfolio-top {
    display: flex;
    margin-bottom: 87px;
    flex-direction: column;
}

.return-link {
    font-family: Raleway, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #757981;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
}

.return-link img {
    width: 16px;
    height: 10px;
    margin-right: 15px;
}

@media (min-width: 992px) {
    .portfolio-top {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 62px;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .portfolio-top__wrapper {
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .portfolio-top__wrapper {
        max-width: 810px;
    }
}

.portfolio__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    color: #262c49;
    letter-spacing: -.01em;
    margin: 0 0 35px;
}

@media (min-width: 992px) {
    .portfolio__title {
        margin: 0 0 23px;
    }
}

.portfolio__subtitle {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: rgba(38, 44, 73, .5);
    letter-spacing: .01em;
    margin: 0 0 59px;
}

@media (min-width: 992px) {
    .portfolio__subtitle {
        margin: 0;
    }
}

.portfolio .case-studies {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.case-study {
    position: relative;
    min-width: 90%;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 70px;
}

@media (min-width: 480px) {
    .case-study {
        min-width: 370px;
    }
}

@media (min-width: 992px) {
    .case-study {
        min-width: unset;
        max-width: 370px;
        width: 100%;
    }
}

.case-study__image {
    margin-bottom: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.case-study__technologies {
    display: flex;
    flex-wrap: wrap;
}

.case-study__technology {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 5px 10px;
    margin-right: 8px;
    color: rgba(58, 92, 141, .5);
    background: #ebf4f9;
    border-radius: 5px;
    margin-bottom: 8px;
}

.case-study__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
    margin-bottom: 24px;
}

.case-study__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
    margin-bottom: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: normal;
}

.case-study__details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.case-study__detail {
    max-width: 160px;
    width: 100%;
}

.case-study__detail-top {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: rgba(38, 44, 73, .5);
    margin-bottom: 13px;
}

.case-study__detail-bottom {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #262c49;
}

.case-study__link {
    position: absolute;
    bottom: 0;
}

.gallery {
    position: relative;
    z-index: 2;
}

.gallery .grid-container-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    grid-template-areas: "square-1 square-2";
}

@media (min-width: 992px) {
    .gallery .grid-container-top {
        margin-bottom: 30px;
        gap: 30px;
    }
}

.gallery .square-2 {
    grid-area: square-2;
    display: flex;
}

.gallery .grid-container-top img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.gallery .grid-container-bottom {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        "big-square big-square"
        "square-1 square-2"
        "vertical-1 square-3";
}

@media (min-width: 992px) {
    .gallery .grid-container-bottom {
        gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:
        "square-1 big-square big-square"
        "vertical-1 big-square big-square"
        "vertical-1 square-2 square-3";
    }
}

.gallery .big-square {
    grid-area: big-square;
    display: flex;
}

.gallery .grid-container-bottom img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.gallery .square-1 {
    grid-area: square-1;
    display: flex;
}


.gallery .square-3 {
    grid-area: square-3;
    display: flex;
}

.gallery .vertical-1 {
    grid-area: vertical-1;
    display: flex;
}

.gallery + .needs {
    margin-top: -100px;
}

@media (min-width: 992px) {
    .gallery + .needs {
        margin-top: -200px;
    }
}

.blogposts {
    margin: 100px 0 144px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blogposts .svg-bg {
    position: absolute;
    top: 60px;
    right: -50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    transform: rotate(270deg);
    width: 70%;
}

@media (min-width: 992px) {
    .blogposts .svg-bg {
        width: unset;
        top: 60px;
        right: 190px;
    }
}

.blogposts__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0 0 55px;
}

.blogposts .posts {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
}

.blogposts .post {
    position: relative;
    min-width: 90%;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .blogposts .post {
        min-width: 370px;
    }
}

@media (min-width: 992px) {
    .blogposts .post {
        min-width: unset;
        max-width: 370px;
        width: 100%;
    }
}

.blogposts .post__image {
    margin-bottom: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    height: 234px;
    max-width: 100%;
    width: 100%;
}

.blogposts .post__technologies {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 16px;
}

.blogposts .post__technology {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 5px 10px;
    margin-right: 8px;
    color: rgba(58, 92, 141, .5);
    background: #ebf4f9;
    border-radius: 5px;
    margin-bottom: 8px;
}

.blogposts .post__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0 0 24px;
}

.blogposts .post__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
    margin: 0 0 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: normal;
}

.blogposts .post__bottom {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
}

.readtime {
    margin: 0 0 13px;
    display: flex;
    align-items: center;
}

.readtime__icon {
    margin: 0 12px 0 0;
}

.readtime__text {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    color: #262c49;
}

.needs {
    background: #179087;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.needs .svg-bg {
    position: absolute;
    bottom: -70px;
    left: -30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    width: 72%;
}

@media (min-width: 992px) {
    .needs .svg-bg {
        width: unset;
        bottom: -350px;
        left: 0;
    }
}

.needs .container--medium {
    padding: 136px 0 100px;
}

@media (min-width: 992px) {
    .needs .container--medium {
        padding: 283px 0 110px;
    }
}

.needs__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: #fff;
    margin-bottom: 56px;
}

.needs-steps {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .needs-steps {
        justify-content: space-between;
        flex-direction: row;
    }
}

.needs-steps__single {
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .needs-steps__single {
        margin-bottom: unset;
        border-right: 2px solid rgba(255, 255, 255, .1);
        width: 345px;
        padding-right: 55px;
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .needs-steps__single:first-of-type {
        padding-left: 0;
    }
}

.needs-steps__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 21px;
}

@media (min-width: 992px) {
    .needs-steps__title {
        margin: 0 0 27px;
        min-height: 65px;
    }
}

.needs-steps__title a {
    color: #fff;
    text-decoration: underline;
}

.needs-steps__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: rgba(235, 244, 249, .5);
    letter-spacing: .01em;
}

.button--light {
    border: 2px solid #fff;
    background: #fff;
    color: #262c49;
}

.button--light:hover {
    background: 0 0;
    color: #fff;
}

.needs__button {
    margin-top: 50px;
}

@media (min-width: 992px) {
    .needs__button {
        margin-top: 73px;
    }
}

.needs-steps__single {
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .needs-steps__single {
        margin-bottom: unset;
        border-right: 2px solid rgba(255, 255, 255, .1);
        width: 345px;
        padding-right: 55px;
        padding-left: 20px;
    }
}

.needs-steps__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 21px;
}

@media (min-width: 992px) {
    .needs-steps__title {
        margin: 0 0 27px;
        min-height: 65px;
    }
}

.needs-steps__description {
    font-family: Cabin, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(235, 244, 249, .5);
    letter-spacing: .01em;
}

.needs-steps__single {
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .needs-steps__single {
        margin-bottom: unset;
        border-right: 2px solid rgba(255, 255, 255, .1);
        width: 345px;
        padding-right: 55px;
        padding-left: 20px;
    }
}

.needs-steps__single:last-of-type {
    margin-bottom: unset;
    padding-right: unset;
    border: none;
}

.needs-steps__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 21px;
}

@media (min-width: 992px) {
    .needs-steps__title {
        margin: 0 0 27px;
        min-height: 65px;
    }
}

.needs-steps__description {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: rgba(235, 244, 249, .5);
    letter-spacing: .01em;
}

.find-us {
    border-top: 1px solid rgba(38, 44, 73, .3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.find-us .container--medium {
    display: flex;
    padding: 93px 0 134px;
    flex-direction: column;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .find-us .container--medium {
        padding: 40px 0 40px;
    }
}

@media (min-width: 992px) {
    .find-us .container--medium {
        flex-direction: row;
        padding: 120px 0 134px;
    }
}

.container--medium {
    max-width: 1090px;
    margin: 0 30px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .container--medium {
        margin: 0 10px;
    }
}

@media (min-width: 1200px) {
    .container--medium {
        margin: 0 auto;
    }
}

.find-us__details {
    margin-right: 30px;
    width: 100%;
    max-width: 608px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .find-us__details {
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.find-us__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: #262c49;
    margin: 0 0 62px;
}

@media (min-width: 992px) {
    .find-us__title {
        margin: 0 0 132px;
    }
}

.find-us__offices {
    display: flex;
    overflow-x: auto;
    height: 250px;
    margin-bottom: 103px;
}

@media (min-width: 992px) {
    .find-us__offices {
        overflow-x: auto;
        margin-bottom: unset;
    }
}

@media (min-width: 1200px) {
    .find-us__offices {
        overflow-x: visible;
    }
}

.find-us__offices .office {
    min-width: 210px;
}

.find-us__offices .office__city {
    color: #262c49;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    font-family: Raleway, sans-serif;
    letter-spacing: -.01em;
    margin: 0 0 23px;
}

.find-us__offices .office__address {
    margin-bottom: 72px;
}

.find-us__offices .office__address,
.find-us__offices .office__telephone,
.find-us__offices .office__mail {
    display: flex;
    font-style: normal;
    font-size: 18px;
    color: rgba(38, 44, 73, .5);
    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #858899;
}

.find-us__offices .office__telephone,
.find-us__offices .office__mail {
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 10px;
}

@media (min-width: 992px) {
    .find-us__button--mobile {
        display: none;
    }
}

iframe {
    width: 100%;
    max-height: 654px;
}

.map-container__text {
    padding: 70px 0 70px 0;
    max-width: 1250px;
}

.map-container__text p,
.footer__copyright,
.footer__privacy-policy {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
    text-align: left;
}

.footer__copyright {
    position: relative;
    margin-right: 10px;
}

.footer__copyright:after {
    content: ' ';
    display: block;
    position: absolute;
    right: -10px;
    top: -4px;
    width: 1px;
    height: 33px;
    background: #858899;
}

.footer__privacy-policy {
    color: #262c49;
    margin-left: 10px;
}

.footer .container--medium {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .footer .container--medium {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    margin-bottom: 66px;
}

@media (min-width: 992px) {
    .footer-contact {
        margin-bottom: unset;
    }
}

.logo--footer {
    max-width: 105px;
    height: 28px;
    margin-bottom: 29px;
}

.footer-contact__text {
    font-family: Cabin, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
}

.footer-contact__email {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.01em;
    color: #262c49;
    margin-bottom: 35px;
}

.footer-contact__text {
    font-family: Cabin, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
}

.footer-contact__text a {
    color: #262c49;
    font-weight: 700;
}

.footer__offices {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .footer__offices {
        flex-direction: row;
    }
}

.footer__offices .office {
    width: 210px;
    margin-bottom: 46px;
}

@media (min-width: 992px) {
    .footer__offices .office {
        margin-bottom: unset;
        margin-right: 30px;
    }
}

.footer__offices .office__city {
    color: #262c49;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    font-family: Raleway, sans-serif;
    letter-spacing: -.01em;
    margin: 0 0 27px;
}

.footer__offices .office__address {
    font-family: Cabin, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
}

.footer__offices .office__city {
    color: #262c49;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    font-family: Raleway, sans-serif;
    letter-spacing: -.01em;
    margin: 0 0 27px;
}

.footer__offices .office__address {
    font-family: Cabin, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .01em;
    color: rgba(38, 44, 73, .5);
}

.footer__offices .office:last-of-type {
    margin-bottom: unset;
}

@media (min-width: 992px) {
    .footer__offices .office:last-of-type {
        margin-right: unset;
    }
}

.footer__bottom {
    border-top: 1px solid rgba(38, 44, 73, .3);
    padding: 42px 0 46px;
}

.footer .container--medium {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .footer .container--medium {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}

.footer__bottom-texts {
    display: flex;
    align-items: center;
}

.footer__socials {
    display: flex;
}

.social {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.footer__socials .social {
    margin-right: 18px;
}

.social__icon {
    margin-right: 13px;
}

.footer__socials .social__icon {
    width: auto;
    height: 15px;
    -o-object-fit: cover;
    object-fit: cover;
}

/*mobile header*/

.header__burger {
    display: none;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
        background: rgba(235, 244, 249, 0);
    }

    .header-mobile--visible {
        background: #ebf4f9;
    }

    .container {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 10px;
        position: relative;
    }

    .content-wrapper {
        width: 100%;
    }

    .header__menu {
        display: flex;
        position: relative;
        z-index: 2;
    }

    .header__menu li {
        list-style: none;
        margin: 0 0 0 36px;
        color: #000;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .content-wrapper {
        margin-top: 78px;
        padding: 10px;
        line-height: 34px;
    }

    .header__nav {
        display: none;
    }

    .header__nav.open-menu {
        display: block;
        position: absolute;
        width: 100%;
        transition: all 0.4s ease;
        right: 36px;
        left: 0;
        height: 100vh;
        background: #ebf4f9;
        overflow: auto;
        top: 83%;
    }

    .header__menu {
        display: block;
    }

    .open-menu .header-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 20px 20px 20px;
        margin: 0;
    }

    .header-menu .menu-item {
        margin: 24px 0;
    }

    .header-menu .menu-item a {
        transition: all .3s;
        color: #262c49;
        letter-spacing: -.2px;
        font-family: Raleway, sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
    }

    .header-menu .menu-item__button {
        justify-content: flex-end;
    }

    .header-menu .menu-item__button a {
        justify-content: unset;
        background: unset;
        border-radius: unset;
        border: unset;
        text-shadow: none;
        padding: 0;
    }

    .menu-burger__header {
        position: relative;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
    }

    .menu-burger__header span, .menu-burger__header:after, .menu-burger__header:before {
        position: absolute;
        margin: 0 auto;
        width: 20px;
        height: 2px;
        background-color: #262c49;
        border-radius: 4px;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
        transition: top 75ms .12s ease, opacity 75ms ease;
        right: 20px;
    }

    .menu-burger__header span {
        display: block;
        top: 50%;
        margin-top: -2px;
        transition-duration: 75ms;
        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    .menu-burger__header:after, .menu-burger__header:before {
        content: '';
    }

    .menu-burger__header:after {
        bottom: -6px;
    }

    .menu-burger__header:before {
        top: -8px;
    }

    .menu-burger__header.open-menu span {
        opacity: 0;
        transition: 0.5s;
    }

    .menu-burger__header.open-menu:before {
        transform: rotate(45deg);
        top: -5px;
        transition: 0.4s;
    }

    .menu-burger__header.open-menu:after {
        transform: rotate(-45deg);
        bottom: 3px;
        transition: 0.4s;
    }

    .content-wrapper {
        margin-top: 48px;
    }

    .fixed-page {
        overflow: hidden;
    }

    .logo--header {
        max-width: 105px;
        height: 28px;
        margin-left: 20px;
    }
}

.project-banner {
    padding-top: 110px;
}

.project-information {
    padding-bottom: 140px;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .project-information {
        padding-bottom: 40px;
    }
}

.project-information__title {
    display: flex;
    justify-content: space-between;
}

.project-information__title h2 {
    font-family: Raleway, sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.19;
    color: #262c49;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .project-information__title h2 {
        margin: 20px 0 20px 0;
    }
}

.project-description__text {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
}

.top-text {
    margin-bottom: 70px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .top-text {
        margin-bottom: 40px;
    }
}

.bottom-text {
    padding-right: 50px;
}

.project-description__image {
    display: flex;
    justify-content: space-between;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .project-description__image {
        flex-wrap: wrap;
    }
}

.project-advantages .container--big {
    padding: 109px 0 134px;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .project-advantages .container--big {
        padding: 40px 0 40px;
    }
}

.advantages__title {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 125%;
    color: #262c49;
    letter-spacing: -.01em;
    padding: 0;
    margin: 0 0 70px 0;
}

.project-advantages p {
    font-family: Raleway, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
    text-align: left;
    margin: 0;
}

.advantages__boxes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .advantages__boxes {
        margin-top: 40px;
    }
}

.advantages-box {
    background-color: #f2f2f2;
    display: flex;
    padding: 50px 30px;
    align-items: center;
    max-width: 610px;
    width: 100%;
}

.advantages-box:nth-child(2n) {
    margin: 0 0px 30px 30px;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .advantages-box:nth-child(2n) {
        margin: 0 0px 30px 0px;
    }
}

.advantages-box:nth-child(2n+1) {
    margin: 0 0px 30px 0;
}

.advantages-box__icon {
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 30px;
}

/*carousel styles*/
/* User styles */
@media screen and (min-width: 911px) {
    .ant-carousel {
        max-width: 810px;
    }
}

@media screen and (min-width: 641px) and (max-width: 910px) {
    .ant-carousel {
        max-width: 540px;
    }
}

@media screen and (max-width: 640px) {
    .ant-carousel {
        max-width: 270px;
    }
}

.ant-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10px;
}

.ant-carousel-element {
    width: 48px;
    height: 48px;
    text-align: center;
}

/* General styles */
.ant-carousel {
    width: auto;
    position: relative;
}

.ant-carousel-hider {
    overflow: hidden;
}

.ant-carousel-list {
    width: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.ant-carousel-element {
    display: block;
    flex: 0 0 auto;
    margin-right: 20px;
}

/* Navigation item styles */
div.ant-carousel-arrow-left,
div.ant-carousel-arrow-right {
    width: 15px;
    height: 36px;
    position: absolute;
    cursor: pointer;
    opacity: 0.6;
    z-index: 32;
}

div.ant-carousel-arrow-left {
    left: -40px;
    top: 40%;
    display: block;
    background: url(../img/icons/technologies/arrow-right.svg) no-repeat;
    transform: rotate(180deg);
}

div.ant-carousel-arrow-right {
    right: -40px;
    top: 40%;
    display: block;
    background: url(../img/icons/technologies/arrow-right.svg) no-repeat;
}

div.ant-carousel-arrow-left:hover {
    opacity: 1.0;
}

div.ant-carousel-arrow-right:hover {
    opacity: 1.0;
}

/*portfolio item styles*/

.swissherbs-mark:after {
    content: url(../img/icons/swissherbs/swiss_product-red.svg);
    display: block;
    height: 100px;
    width: 100%;
    max-width: 317px;
    margin: 58px auto 0;
}

/*blog*/

.card {
    margin-bottom: 40px;
}

.article-section {
    display: flex;
    padding-top: 180px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .article-section {
        padding: 100px 20px 100px 20px;
    }
}

.left-column {
    max-width: 823px;
    /*margin-right: 140px;*/
}

.right-column {
    max-width: 288px;
}

.article-title {
    margin: 70px 0 40px 5px;
    font-family: Raleway, sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.24;
    color: #262c49;
}

.article-text {
    margin: 40px 0;
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
}

.technology-title {
    display: block;
    margin: 0 0 26px;
    font-family: Raleway, sans-serif;
    font-size: 21px;
    font-weight: normal;
    line-height: 1.29;
    color: #179087;
}

.flex-block {
    display: flex;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .flex-block {
        flex-wrap: wrap;
    }
}

.image-block {
    margin-bottom: 22px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .flex-block img {
        margin-bottom: 20px;
    }
}

.flex-block img {
    margin-right: 34px;
    max-width: 289px;
    width: 100%;
}

.no-margin {
    margin: 0;
}

.text-margin {
    margin-top: 15px;
}

.technology-benefits {
    margin-top: 22px;
}

.article-subheading {
    font-family: Raleway, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.33;
    color: #262c49;
}

.technology-benefits span {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
}

.technology-benefits ol li {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
    margin-bottom: 6px;
    padding-inline-start: 1ch;
}

.technology-benefits__list {
    list-style: none;
    margin-top: 15px;
}

.technology-benefits__list li {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
    margin-bottom: 6px;
    list-style-image: url(../img/blog/blog-article/1/mark.svg);
    padding-inline-start: 1ch;
}

.blog-list__container {
    padding-top: 140px;
}

.privacy-policy {
    padding-top: 140px;
}

.privacy-title {
    font-family: Raleway, sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.24;
    color: #262c49;
    margin: 60px 0 20px 0;
}

.policy-subtitle {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    color: #179087;
}

.policy-text,
.policy-list {
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #858899;
}

.small-text {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #858899;
    margin: 20px 0 70px 0;
}

.site-reference {
    color: #000000;
}