* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body {
    background: #FFFCF8;

}

.wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

main {
    flex: 1 0 auto;
}


@font-face {
    font-family: 'ny';
    src: url('../fonts/newyork-webfont.woff2') format('woff2'),
    url('../fonts/newyork-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*
Header
*/

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 15px 0;
    color: #ffffff;
    z-index: 5;
    font-family: "Sarabun", sans-serif;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
}

.header__logo img {
    width: 40px;
    height: 65px;
    margin-right: 10px;
}

.nav {
    flex: 0 0 65%;
    font-weight: 600;
    font-size: 20px;
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    font-weight: 400;
    font-size: 18px;
}

.nav__item {
    margin-right: 48px;
}

.nav__back {
    display: none;
    visibility: hidden;
}

.header__triggered {
    background: #000000;
}

.burger {
    position: relative;
    height: 45px;
    width: 35px;
    margin-left: auto;
    cursor: pointer;
    display: none;
    visibility: hidden;
    transition: all .3s ease 0s;
}

.burger__top {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    top: 43%;
    transform: translateY(-43%);
}


.burger__bottom {
    position: absolute;
    transition: all .3s ease 0s;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    top: 66%;
    transform: translateY(-63%);
}

.burger::before {
    content: '';
    position: absolute;
    transition: all .3s ease 0s;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    top: 18%;
    transform: translateY(-22%);
}

/*
Intro
*/

.intro {
    background: #000000;
    position: relative;
    padding-top: 170px;
    padding-bottom: 80px;
    overflow: hidden;
}

.intro__radial {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.intro__wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 130px;

}

.intro__back {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(50px);
    width: 50%;
    z-index: 1;
}

.intro__back--mobile {
    display: none;
    visibility: hidden;
}

.intro__info {
    color: #ffffff;
    z-index: 2;

}

.intro__title {
    font-family: 'ny', sans-serif;
    text-transform: uppercase;
    font-weight: 674;
    font-size: 117px;
}

.intro__text {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 8px;
}

.intro__logo {
    z-index: 2;
}

.intro__platforms {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #ffffff;
    z-index: 2;
}

.intro__platform {
    z-index: 1;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 22px;
    font-family: 'ny', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro__platform svg {
    margin-right: 16px;
}

/*
help
*/

.help {
    padding: 80px 0;
    background: #F2ECEC;
}

.help__title {
    font-weight: bold;
    text-align: center;
    font-size: 40px;
    font-family: 'ny', sans-serif;
    text-transform: uppercase;
}

.help__wrapper {
    display: flex;
    justify-content: space-between;
    margin: 56px 0;
}

.help__item {
    background: #000000;
    padding: 28px 28px 108px;
    transition: background-color .1s linear;
    color: #ffffff;
    flex: 0 0 23%;
}

.help__subTitle {
    font-family: 'ny', sans-serif;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 15px;
}

.help__text {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.help__item:hover {
    background: #FF6B17;
}


/*
About
*/
.about {
    padding: 0 0 80px;
    background: #F2ECEC;
    font-family: "Sarabun", sans-serif;
}

.about__title {
    font-family: 'ny', sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 56px;
}

.about__wrapper {
    display: flex;
    justify-content: space-between;
}

.about__info {
    flex: 0 0 45%;
}

.about__list {
    list-style: none;
    padding: 0;
}

.about__item {
    margin-bottom: 24px;
    padding-left: 24px;
    font-weight: 400;
    font-size: 20px;
    position: relative;
}

.about__item:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    background-color: #FF6B17;
    height: 15px;
    width: 15px;
    border-radius: 50%;
}

.about__img {
    flex: 0 0 45%;
}

.about__img img {
    max-width: 100%;
    height: auto;
}

/*
Process
*/

.process {
    padding: 80px 0 71px;
    position: relative;
    color: #FFffff;
}

.process__blur {
    position: absolute;
    top: 0;
    left: -5px;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    bottom: 0;
}

.process__title {
    font-weight: bold;
    font-size: 40px;
    font-family: 'ny', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.process__text {
    font-weight: 400;
    font-size: 18px;
    font-family: "Sarabun", sans-serif;
    margin: 14px 0 55px;
    text-align: center;
}

.process__wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.process__item {
    padding: 34px 24px 34px 78px;
    background: #2F2F2F;
    color: #ffffff;
    flex: 0 0 40%;
    position: relative;
    margin-bottom: 46px;
}

.process__number {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 90px;
    background: linear-gradient(236.24deg, #F4D4B6 -24.06%, #FF6B17 69.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'ny', sans-serif;
    font-weight: bold;
}

.process__sub-title {
    font-family: 'ny', sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process__sub-text {
    font-family: "Sarabun", sans-serif;
    font-size: 18px;
}


/*
Services
*/

.services {
    padding: 60px 0 100px;
    background: #F2ECEC;
}

.services__title, .services__text {
    color: #000000;
}

.services__wrapper {
    display: flex;
    justify-content: space-between;
}

.services__item {
    flex: 0 0 31%;
}

.services__sub-title {
    font-family: 'ny', sans-serif;
    font-weight: bold;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
}

.services__img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
}
.services__item--mobile{
    display: none;
}
.services__sub-text {
    font-weight: 400;
    font-size: 20px;
    font-family: "Sarabun", sans-serif;
}

.services__texts {
    margin-bottom: 16px;
}

.services__techs {
    font-weight: 700;
    font-size: 20px;
    font-family: "Sarabun", sans-serif;
}

.directions__item {
    flex: 0 0 31%;
    background: #2F2F2F;
    padding: 52px 48px 70px;
    text-align: center;
    margin-bottom: 36px;
}

.directions__img {
    margin-bottom: 12px;
}


/*
Contacts
*/

.contacts {
    padding: 80px 0 88px;
    background: #F2ECEC;
}

.contacts__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contacts__title {
    font-family: 'ny', sans-serif;
    font-weight: bold;
    font-size: 35px;
}

.contacts__text {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 32px;
}

.contacts__form {
    flex: 0 0 50%;
    position: relative;
}

.contacts__img {
}

.contacts__form--inner {
    position: absolute;
    top: 50%;
    width: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.contacts__input, .contacts__area {
    display: block;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: "Sarabun", sans-serif;
    resize: none;
    border: 1px solid #221D1D;
    border-radius: 5px;
    font-size: 20px;
    width: 100%;
    padding: 8px 16px;
    color: #221D1D;
}

.contacts__area {
    min-height: 90px;
}

.contacts__input {
}

.contacts__item {
    flex: 0 0 40%;
}

.contacts__btn {
    font-weight: 700;
    font-size: 20px;
    font-family: "Sarabun", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6B17;
    border-radius: 5px;
    padding: 16px 0;
    width: 100%;
    border: none;
    color: #FFffff;
    margin-top: 40px;
    cursor: pointer;
}

/*
Footer
*/

.footer {
    padding: 62px 0 34px;
    position: relative;
    font-family: "Sarabun", sans-serif;
}

.footer__blur {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    z-index: -1;
    left: 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFffff;
    font-weight: 400;
    font-size: 18px;
}

.footer__logo {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.footer__list {
    display: flex;
    flex: 0 0 70%;
    justify-content: space-between;
}

.footer__logo img {
    height: 130px;
    width: 100px;
    margin-right: 15px;
}

.footer__item {
    cursor: pointer;
}

.copyright {
    text-align: center;
    margin-top: 55px;
    font-family: "Amiko", sans-serif;
    color: #FFffff;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.73);
}

@media (max-width: 1199px) {
    .container {
        max-width: calc(100% - 25px);
        padding: 0;
    }

    .nav__item {
        font-size: 16px;
    }

    .intro__wrapper {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .intro__info, .intro__logo {
        flex: 0 0 100%;
        text-align: center;
        justify-content: space-between;
    }

    .intro__info {
        margin-top: 60px;
    }

    .intro__back {
        display: block;
        position: absolute;
        visibility: visible;
        z-index: 1;
        right: 0;
        left: 0;
        bottom: unset;
        top: 0;
        min-height: 54%;
        background: rgba(255, 255, 255, 0.11);
        backdrop-filter: blur(50px);
        max-height: 54%;
        min-width: 100%;
    }

    .intro__logo {
        order: -1;
    }

    .intro__title {
        font-size: 56px;
    }

    .intro__text {
        font-size: 18px;
    }

    .intro__platform {
        font-size: 17px;
    }

    .help__title {
        font-size: 32px;
    }

    .help__wrapper {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .help__item {
        flex: 0 0 35%;
        margin-bottom: 31px;
    }

    .about__wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about__title {
        text-align: center;
        margin-top: 69px;
    }

    .about__item:before {
        display: none;
        visibility: hidden;
    }

    .process__title {
        font-size: 32px;
    }

    .process__text {
        font-size: 18px;
    }

    .process__sub-title {
        font-size: 24px;
    }

    .process__sub-text {
        font-size: 18px;
    }

    .process__number {
        font-size: 70px;
    }

    .services__sub-title {
        font-size: 24px;

    }

    .services__wrapper {
        flex-wrap: wrap;
    }

    .services__item {
        display: none;
        visibility: hidden;
    }

    .services__item--mobile {
        display: flex;
        text-align: left;
        justify-content: center;
        align-items: center;
    }

    .services__item--info {
        flex: 0 0 50%;
        margin-left: 18px;
    }



    .services__sub-title {
        text-align: left;
        margin-bottom: 16px;
    }

    .services__sub-text {
        font-size: 17px;
    }

    .services__techs {
        font-size: 20px;
        margin-top: 8px;
    }

    .directions__item {
        flex: 0 0 45%;
    }

    .contacts__form {
        flex: 0 0 100%;
        text-align: center;
    }

    .contacts__form--inner, .contacts__item {
        flex: 0 0 100%;
        text-align: center;
    }

    .contacts__item {
        margin-bottom: 60px;
    }

    .contacts__wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacts__img {
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .footer__list {
        flex: 0 0 20%;
        display: block;
    }

    .footer__item {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .copyright {
        margin-top: 21px;
    }
}


@media (max-width: 991px) {
    .help__item {
        flex: 0 0 45%;
    }
}

@media (max-width: 767px) {
    .burger {
        display: block;
        visibility: visible;
        margin-right: 25px;
        z-index: 25;
        transition: all .2s linear;
    }

    .burger__active {
        transition: all .2s linear;
    }

    .backdrop__active {
        background: rgba(217, 217, 217, 0.2);
        backdrop-filter: blur(50px);
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .burger__active:before {
        top: 20px;
        transform: rotate(45deg);
        content: '';
        position: absolute;
        transition: all .4s linear;
        height: 2px;
        width: 100%;
        background: #FFFFFF;
    }

    .burger__active .burger__top {
        display: none;
        visibility: hidden;
    }


    .burger__active .burger__bottom {
        transform: rotate(-45deg);
        content: '';
        position: absolute;
        transition: all .4s linear;
        height: 2px;
        width: 100%;
        background: #FFFFFF;
        top: 20px;
    }

    .nav__list {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        transition: all .2s ease-in-out;
        width: 100%;
        z-index: 10;
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .header__logo {
        z-index: 15;
    }

    .nav__item {
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
        padding: 20px 0;
        z-index: 10;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .nav__item:last-child {
        border-bottom: 0;
    }

    .nav__list--active .nav__back {
        position: absolute;
        display: block;
        visibility: visible;
        top: 0;
        bottom: 0;
        transition: all .2s ease-in-out;
        left: 0;
        right: 0;
        min-height: 100%;
        min-width: 100%;
    }

    .nav__list--active .nav__background {
        object-fit: cover;
        min-height: 100%;
        min-width: 100%;
    }

    .nav__list--active {
        right: 0;
        transition: all .2s ease-in-out;
    }

    .intro__platforms {
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro__platform {
        flex: 0 0 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .intro__platform--ios {
        order: -1;
    }

    .help__item {
        flex: 0 0 100%;
    }

    .about__title {
        font-size: 24px;
    }

    .about__text {
        font-size: 17px;
    }

    .process__title {
        font-size: 24px;
    }

    .process__text {
        font-size: 15px;
    }

    .process__item {
        flex: 0 0 90%;
    }

    .process__sub-title {
        font-size: 17px;
    }

    .process__sub-text {
        font-size: 15px;
    }

    .process__number {
        font-size: 45px;
        left: -10px;
        top: -20px;
    }

    .services__item--mobile {
        flex: 0 0 100%;
        flex-wrap: wrap;
    }

    .services__img {
        flex: 0 0 100%;
    }

    .services__item--info {
        flex: 0 0 75%;
    }

    .services__sub-title {
        font-size: 17px;
    }

    .services__sub-text {
        font-size: 15px;
    }
    .services__techs{
        font-size: 13px;
    }
    .directions__item{
        flex: 0 0 100%;
    }
    .contacts__text{
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {

    .contacts__img{
        max-width: 500px;
    }
}
