* {
    box-sizing: border-box;
    outline: none;
}

html {
    width: 100%;
}

body {
    width: 100%;
    margin: 0;
    font-family: "Russo One";
    background-color: #000;
    overflow-x: hidden;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

h1,
h2 {
    margin: 0;
}

a {
    text-decoration: none;
    outline: none;
}

input {
    -webkit-appearance: none;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

.visible-xs {
    display: none !important;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(16, 22, 20, 0.7);
}

.header-wrap {
    height: 90px;
}

.logo {
    width: 80px;
}

.top-section {
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.top-banner {
    width: 100%;
    height: 100vh;
}

.top-banner__content {
    text-align: right;
}

.title-xl {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 180px;
    line-height: 217px;
    color: #39C7B8;
}

.title {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 53px;
    color: #39C7B8;
}

.text-xl {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 45px;
    color: #FFFFFF;
}

.text {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    color: #FFFFFF;
}

.text-xs {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    color: #FFFFFF;
}

.subtitle {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #FFD541;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.container {
    width: 100%;
    padding: 0 100px;
    margin: 0 auto;
}

.section {
    padding: 150px 0;
}

.section-block {
    margin-top: 60px;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

.social-icon.inst {
    background-image: url(../images/icons/inst.svg);
}

.social-icon.inst:hover {
    background-image: url(../images/icons/inst-h.svg);
}

.social-icon.viber {
    background-image: url(../images/icons/viber.svg);
}

.social-icon.viber:hover {
    background-image: url(../images/icons/viber-h.svg);
}

.social-icon.tg {
    background-image: url(../images/icons/tg.svg);
}

.social-icon.tg:hover {
    background-image: url(../images/icons/tg-h.svg);
}

.social-icon:not(:first-child) {
    margin-left: 20px;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.al-center {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.jc-sb {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.jc-center {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.jc-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.w-100 {
    width: 100%;
}

.t-center {
    text-align: center;
}

.btn {
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    padding: 18px 40px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
}

.btn:not(:first-child) {
    margin-left: 20px;
}

.process-block .btn-wrap {
    margin-top: 100px;
}

.theme-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.theme-btn:before {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    margin-right: 20px;
}

.theme-btn.ios-btn:before {
    background: url(../images/icons/apple.svg) no-repeat;
}

.theme-btn.android-btn:before {
    background: url(../images/icons/android.svg) no-repeat;
}

.theme-btn:hover {
    border-color: #FFD541;
}

.h-icon {
    width: 40px;
    height: 40px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

.h-icon.ios {
    background-image: url(../images/icons/apple.svg);
}

.h-icon.android {
    background-image: url(../images/icons/android.svg);
}

.h-icon.ios:hover {
    background-image: url(../images/icons/apple-h.svg);
}

.h-icon.android:hover {
    background-image: url(../images/icons/android-h.svg);
}


/* .h-icon.ios {
    background: url(../images/icons/apple.svg) no-repeat;
}

.h-icon.android {
    background: url(../images/icons/android.svg) no-repeat;
}

.h-icon.ios:hover {
    background: url(../images/icons/apple-h.svg) no-repeat;
}

.h-icon.android:hover {
    background: url(../images/icons/android.svg) no-repeat;
} */

.h-icon:not(:last-child) {
    margin-right: 40px;
}

.rel {
    position: relative;
}

.lang-switcher {
    /* position: absolute;
    right: 0; */
}

.switcher-btn {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.32);
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.switcher-btn:not(:first-child):before {
    content: "/";
    display: block;
    margin: 0 3px 0 2px;
}

.switcher-btn.active {
    color: #FFFFFF;
}

.app-item {
    width: 20%;
    height: 400px;
    position: relative;
}

.app-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-item:nth-child(1),
.app-item:nth-child(7) {
    width: 40%;
}

.app-item:nth-child(1):before,
.app-item:nth-child(7):before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)), rgba(43, 148, 137, 0.64);
    position: absolute;
    top: 0;
    right: 0;
}

.app-item:nth-child(3),
.app-item:nth-child(5),
.app-item:nth-child(8) {
    background-color: #2B9489;
}

.app-item__title {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #FFFFFF;
    max-width: 248px;
    position: absolute;
    top: 220px;
    left: calc(50% + 20px);
}

.app-item:nth-child(3) .app-item__title,
.app-item:nth-child(5) .app-item__title,
.app-item:nth-child(8) .app-item__title {
    left: 20px;
}

.process-block {
    margin-top: 162px;
}

.process-col {
    padding-right: 110px;
}

.process-title {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 41px;
    color: #39C7B8;
}

.process-title span {
    font-size: 67px;
    line-height: 81px;
}

.process-item {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #FFFFFF;
    position: relative;
}

.process-item:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: url(../images/icons/cross.svg) no-repeat;
    position: absolute;
    top: -24px;
    left: -45px;
    z-index: -1;
}

.process-item:not(:first-child) {
    margin-top: 37px;
}

.process-item:nth-child(2) {
    margin-left: 60px;
}

.process-item:nth-child(3) {
    margin-left: 120px;
}

.process-item:nth-child(4) {
    margin-left: 180px;
}

.styled-text {
    padding-left: 70px;
    width: fit-content;
}

.styled-text:before {
    content: "";
    display: block;
    width: 55px;
    height: 40px;
    background: url(../images/icons/car.svg) no-repeat;
    margin-right: 15px;
}

.theme-back {
    background: rgba(43, 148, 137, 0.16);
}

.theme-link {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 53px;
    color: #FFD541;
}

.theme-link:hover {
    text-shadow: 0 0 15px #FFD541, 0 0 10px #FFD541;
}

.bottom-line {
    padding: 23px 0 24px 385px;
}

.platforms-section {
    padding-top: 90px;
}

.platforms-section__content {
    margin-bottom: -100px;
}

.platforms-section__pic {
    width: 385px;
    position: relative;
    z-index: 1;
}

.platforms-section__info {
    width: calc(100% - 385px);
    padding-left: 62px;
}

.banner {
    padding: 44px 0 30px;
}

.banner:before {
    content: "";
    display: block;
    width: 294px;
    height: 226px;
    background: url(../images/icons/car-xl.svg) no-repeat;
    margin-right: 143px;
}

.banner__content {
    width: calc((100% - 437px));
}

.fw-2 {
    margin-top: 109px;
}

.fw-3 {
    margin-top: 53px;
}

.fw-items__pic {
    width: 312px;
}

.fw-col {
    width: calc(100% - 312px);
}

.fw-items-left {
    padding-right: 95px;
}

.fw-items-right {
    padding-left: 95px;
}

.functions-item__name {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #FFD541;
}

.styled-number {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    font-size: 120px;
    line-height: 145px;
    color: rgba(255, 255, 255, 0.16);
    position: relative;
    margin-right: 8px;
}

.styled-number:before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #FFD541;
    position: absolute;
    right: 3px;
    top: 86px;
}

.functions-item__descr {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 33px;
    color: #FFFFFF;
}

.functions-item:nth-child(2) {
    margin-top: 100px;
}

.app-slide {
    border-radius: 16px;
    overflow: hidden;
}

.pic-wrap img {
    width: 100%;
}

.swiper-pagination {
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 213, 65, 0.32);
}

.swiper-pagination-bullet-active {
    background: #FFD541;
}

footer {
    padding: 35px 0 30px;
    background: url(../images/footer.jpg) no-repeat;
    background-size: cover;
}

.f-contacts-wrap a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
}

.copyright {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

footer .socials {
    position: absolute;
    right: 0;
}