

/* Start:/local/templates/marketplace/css/preloader.css?16728565281555*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #fff;
    visibility: visible;
    opacity: 1;
    transition: all .08s linear;
}

.preloader.done {
    visibility: hidden;
    opacity: 0;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    background: #fff;
    /*background: rgb(0, 56, 255, 1);*/
    /*background: -moz-linear-gradient(90deg, rgba(0, 56, 255, 1) 0%, rgba(255, 70, 0, 1) 100%);*/
    /*background: -webkit-linear-gradient(90deg, rgba(0, 56, 255, 1) 0%, rgba(255, 70, 0, 1) 100%);*/
    /*background: linear-gradient(90deg, rgba(0, 56, 255, 1) 0%, rgba(255, 70, 0, 1) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#90a9ff", endColorstr="#ff9d78", GradientType=1);*/
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}
/* End */


/* Start:/local/templates/marketplace/css/fonts.css?1672856528684*/
@font-face {
    font-family: 'Montserrat';
    src: url(/local/templates/marketplace/css/../fonts/Montserrat-Regular.ttf);
    font-style: normal;
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/local/templates/marketplace/css/../fonts/Montserrat-SemiBold.ttf);
    font-style: normal;
    font-display: swap;
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/local/templates/marketplace/css/../fonts/Montserrat-Bold.ttf);
    font-style: normal;
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/local/templates/marketplace/css/../fonts/Montserrat-ExtraBold.ttf);
    font-style: normal;
    font-display: swap;
    font-weight: 800;
}
/* End */


/* Start:/local/templates/marketplace/css/animateCustom.css?167285652813810*/
@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: calc(1 * 2);
    animation-iteration-count: calc(1 * 2);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: calc(1 * 3);
    animation-iteration-count: calc(1 * 3);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-fast {
    -webkit-animation-delay: 1s/4;
    animation-delay: 1s/4;
    -webkit-animation-delay: calc(var(--animate-delay) / 4);
    animation-delay: calc(var(--animate-delay) / 4);
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: calc(1s * 2);
    animation-delay: calc(1s * 2);
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: calc(1s * 3);
    animation-delay: calc(1s * 3);
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: calc(1s * 4);
    animation-delay: calc(1s * 4);
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: calc(1s * 5);
    animation-delay: calc(1s * 5);
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
    -webkit-animation-duration: calc(1s * 0.6);
    animation-duration: calc(1s * 0.6);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.6);
    animation-duration: calc(var(--animate-duration) * 0.6);
}

.animate__animated.animate__fast {
    -webkit-animation-duration: calc(1s * 0.8);
    animation-duration: calc(1s * 0.8);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__default {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: calc(var(--animate-duration) * 1);
    animation-duration: calc(var(--animate-duration) * 1);
}

.animate__animated.animate__slow {
    -webkit-animation-duration: calc(1s * 2);
    animation-duration: calc(1s * 2);
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
    -webkit-animation-duration: calc(1s * 3);
    animation-duration: calc(1s * 3);
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }

    .animate__animated[class*='Out'] {
        opacity: 0;
    }
}

/* FadeIn entrances */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
/* End */


/* Start:/local/templates/marketplace/css/header.css?167285652810589*/
header {
    width: 100%;
    background: #B5E4FF url(/images/headerBG.webp) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.header_nav {
    background-color: #fff;
    width: 100%;
}

.header_nav_bar {
    width: 100%;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 3fr 9fr;
    align-items: center;
    grid-column-gap: 10%;
    font-family: 'Montserrat', sans-serif;
}

.header_menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header_menu ul li {
    position: relative;
    display: inline;
    list-style-type: none;
}

.header_menu ul li::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color: #020071;
    transition: all .2s ease;
}

.header_menu ul li.nav-el:nth-last-child(2), .header_menu ul li.nav-el:nth-last-child(1) {
    display: none;
}

.header_menu ul li:not(:nth-child(4)):hover::after {
    width: 100%;
    left: 0;
}

.header_menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 0;
    color: #000;
    margin: auto 0;
    transition: color .2s ease;
}

.header_menu ul li:hover a {
    color: #020071;
}

.header_nav .header_logo #logo {
    width: 100%;
    height: auto;
}

.header_nav .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header_row {
    padding-top: 30px;
    height: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10%;
}

.header_text {
    max-width: 490px;
    height: auto;
    padding-top: 30px;
    grid-column: 1/7;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}

.header_text h1 {
    line-height: 3rem;
    font-size: 2.5rem;
}

.header_text h3 {
    margin: 20px 0 8% 0;
    line-height: 1.8rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.header_image {
    grid-column: 7/13;
    width: 100%;
    height: 100%;
}

.header_image img {
    height: 100%;
}

.mobile_close_btn, .mobile_phone_menu {
    display: none;
}

/* Адаптация */


@media (max-width: 1200px) {

    .header_menu ul li:last-child {
        display: none;
    }
}


@media (max-width: 960px) {

    .header_image {
        grid-column: 8/13;
    }

    .header_text h3 {
        margin: 15px 0 6% 0;
    }
}


@media (max-width: 785px) {

    .header_row {
        padding-top: 90px;
        grid-column-gap: 0;
    }

    .header_text {
        padding-top: 0;
        grid-column: 1/8;
        margin-right: 4%;
    }

    .header_text h1 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .header_text h3 {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    .header_image {
        display: flex;
        grid-column: 8/13;
    }

    .header_image img {
        height: auto;
        align-self: end;
    }

    header .header_logo {
        z-index: 12;
    }

    header .header_nav {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;
    }

    header .header_nav_bar {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
    }

    .header_nav .header_logo #logo {
        max-width: 220px;
    }

    header .header_nav .header_menu {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        text-align: right;
        overflow: hidden;
        z-index: -100;
        width: 100%;
        height: 100px;
        top: 0;
        opacity: 0;
        right: 0;
        padding: 20px 5% 0 5%;
        transition: height 0.2s linear, padding .2s linear, opacity .2s linear;
        background: rgb(250, 250, 250);
        box-shadow: 0 4px 2px -2px rgba(36, 36, 36, 0.17);
    }

    .header_menu.open-menu {
        height: 110px !important;
        padding-top: 70px !important;
        z-index: 8 !important;
        opacity: 1 !important;
    }

    .header_menu ul {
        width: 100%;
    }

    .header_menu ul li {
        display: block;
        margin: 0 0 0 0 !important;
    }

    .header_menu ul li.nav-el:nth-last-child(2) {
        display: block;
    }

    .header_menu ul li:nth-last-child(3),
    .header_menu ul li:nth-last-child(1) {
        display: none;
    }

    .header_menu ul li a {
        font-size: 1.2rem;
    }

    header .header_nav {
        align-content: center;
        justify-items: end;
    }

    .menu-burger_header {
        position: relative;
        z-index: 20;
        width: 35px;
        height: 24px;
        display: block;
        margin-left: 10px;
    }

    .menu-burger_header span, .menu-burger_header:after, .menu-burger_header:before {
        height: 4px;
        width: 100%;
        border-radius: 3px;
        position: absolute;
        z-index: 11;
        background: #0038FF;
        background: -moz-linear-gradient(90deg, #FF4600 0%, #0038FF 100%);
        background: -webkit-linear-gradient(90deg, #FF4600 0%, #0038FF 100%);
        background: linear-gradient(90deg, #FF4600 0%, #0038FF 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0038ff", endColorstr="#ff4600", GradientType=1);
        margin: 0 auto;
        transition: all .2s linear;

    }

    .menu-burger_header span {
        bottom: 50%;
        transform: translateY(50%);
    }

    .menu-burger_header:after, .menu-burger_header:before {
        content: '';
    }

    .menu-burger_header:after {
        bottom: 0;
    }

    .menu-burger_header:before {
        top: 0;
    }

    .menu-burger_header.open-menu span {
        opacity: 0;
    }

    .menu-burger_header.open-menu:before {
        transform: rotate(45deg);
        top: 10px;
    }

    .menu-burger_header.open-menu:after {
        transform: rotate(-45deg);
        bottom: 10px;
    }
}


@media (max-width: 470px) {

    header .header_nav_bar {
        padding: 15px 0;
    }

    .header_nav .header_logo #logo {
        max-width: 200px;
    }

    header .header_nav .header_menu {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        height: 0;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        opacity: 1;
        padding: 65px 0 0 0;
        transition: height 0.2s linear;
        background: rgb(250, 250, 250);
        box-shadow: none;
    }

    body.open-menu {
        overflow: hidden;
    }

    .header_menu.open-menu {
        height: 100vh !important;
        padding-top: 65px !important;
    }

    .header_menu ul {
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
    }

    .header_menu ul li:not(:nth-child(4)) {
        display: block;
        width: 100%;
        height: 80px;
        font-size: 2rem;
        margin: 0 !important;
        padding: 0;
        border-image: -webkit-linear-gradient(to right, #6F8EFF, #FF946B) 1;
        -moz-border-image: linear-gradient(to right, #6F8EFF, #FF946B) 1;
        -o-border-image: -o-linear-gradient(to right, #6F8EFF, #FF946B) 1;
        border-image: linear-gradient(to right, #6F8EFF, #FF946B) 1;
        border-bottom-width: 1px;
        border-top: 1px solid #6F8EFF;
    }

    .header_menu ul li a {
        display: flex !important;
        align-items: center;
        justify-content: start;
        font-size: 2rem;
        color: #020071;
        font-weight: 700;
        width: 100%;
        height: 100%;
        padding-left: 35px;
    }

    .header_menu ul li::after {
        position: absolute;
        bottom: -10px;
        left: 50%;
        display: none;
        width: 0;
        height: 0;
        background-color: transparent;
        transition: none;
    }

    .header_menu ul li:hover:after {
        width: 100%;
    }

    .header_menu ul li:last-child {
        display: block !important;
        margin: 0 0 0 0 !important;
        background: rgb(144, 169, 255);
        background: -moz-linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
        background: linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#90a9ff", endColorstr="#ff9d78", GradientType=1);
    }

    .header_menu ul li:last-child a {
        color: #FFFFFF;
    }

    .menu-burger_header {
        position: relative;
        z-index: 20;
        width: 35px;
        height: 24px;
        display: block;
    }


    .menu-burger_header.open-menu:before {
        transform: rotate(45deg);
        top: 10px;
    }

    .menu-burger_header.open-menu:after {
        transform: rotate(-45deg);
        bottom: 10px;
    }

    .menu-burger_header.open-menu {
        animation: hide .7s forwards;
    }

    .mobile_close_btn {
        display: block;
        width: 90px;
        height: 90px;
        position: absolute;
        top: -9999px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) translateY(-50%);
    }

    .header_menu.open-menu .mobile_close_btn {
        animation: show .6s forwards;
    }

    .mobile_phone_menu {
        display: flex;
        justify-content: center;
        position: absolute;
        width: 100%;
        color: #020071;
        font-size: 2rem;
        font-weight: 600;
        top: -9999px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }

    .header_menu.open-menu .mobile_phone_menu {
        animation: show .7s forwards;
    }

    .header_row {
        padding-top: 100px;
        grid-template-columns: 1fr;
        grid-template-rows: 2fr;
    }

    .header_text {
        max-width: 90%;
        padding-top: 0;
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .header_image {
        grid-column: 1/2;
        grid-row: 2/3;
    }

}
/* End */


/* Start:/local/templates/marketplace/css/fullfilment.css?16728565281036*/
.fullfilment {
    margin-top: 35px;
    padding: 35px 0;
}

.fullfilment .container_header {
    margin: 0;
}

.fullfilment_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-column-gap: 10%;
}

.fullfilment_text {
    text-align: justify;
}


/* Адаптация */


@media (max-width: 1200px) {

    .fullfilment {
        margin-top: 25px;
        padding: 25px 0;
    }
}


@media (max-width: 960px) {

    .fullfilment {
        margin-top: 20px;
        padding: 20px 0;
    }
}


@media (max-width: 785px) {

    .fullfilment .container_header {
        margin-bottom: 30px;
    }
}


@media (max-width: 470px) {

    .fullfilment {
        margin-top: 0;
    }

    .fullfilment_container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        grid-column-gap: 0;
        grid-row-gap: 20px;
    }

    .fullfilment .container_header {
        margin-bottom: 20px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/services.css?16728565281396*/
.services {
    width: 100%;
    padding: 35px 0;
}

.services_container {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5%;
    row-gap: 60px;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.service_text {
    margin-top: 2%;
    width: 100%;
}

.service_text h5 {
    /*max-width: 80%;*/
    /*margin: 0 auto;*/
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-bottom: 5px;
}

.service_text p {
    margin: 0 auto;
    max-width: 65%;
    font-weight: 400;
    line-height: 1.2rem;
}


/* Адаптация */


@media (max-width: 1200px) {

    .services {
        padding: 25px 0;
    }
}


@media (max-width: 960px) {

    .services {
        padding: 20px 0;
    }

    .service_img {
        max-width: 90px;
    }
}


@media (max-width: 785px) {

    .services_container {
        grid-column-gap: 8%;
    }

    .service_img {
        max-width: 70px;
    }
}


@media (max-width: 470px) {

    .services {
        padding: 15px 0;
    }

    .services_container {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 8%;
        grid-row-gap: 40px;
    }

    .service_img {
        max-width: 70px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/request.css?16728565282811*/
.request {
    padding: 3% 0;
}

.request .form .form_text h1 {
    font-size: 2rem;
    line-height: 2.5rem;
}

.request .form .form_text h3 {
    margin: 10px 0 20px 0;
    font-weight: 400;
    font-size: 1.5rem;
}

.request .form {
    display: block;
    width: 100%;
    padding: 30px;
    border-radius: 35px;
    align-items: center;
    background-color: #fff;
}

.request .input_fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    grid-column-gap: 4%;
}

.request .form .form_input {
    height: 30px;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: #020071;
    background-color: #fff;
    background-image: none;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #020071;
    transition: border .2s ease-in-out;
}

.request .form .form_input::placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;
}

.request .form .form_input::-webkit-input-placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;
}

.request .form .form_input::-moz-placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;
}

.request .form .form_input:focus::placeholder {
    color: #b2b2de;
}

.request .form .form_input:focus::-webkit-input-placeholder {
    color: #b2b2de;
}

.request .form .form_input:focus::-moz-placeholder {
    color: #b2b2de;
}

.request .submit {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: #FFF;
    text-transform: uppercase;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 70px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    padding: 15px 40px;
    background-size: 200% auto;
    transition: background-position .3s linear, box-shadow .2s linear;
    background-image: linear-gradient(60deg, #FF4600 0%, #0038FF 50%, #FF4600 100%);
}

.request .submit:hover {
    box-shadow: 1px 2px 5px rgba(115, 115, 115, 0.6);
    background-position: right center;
}


/* Адаптация */


@media (max-width: 960px) {

    .request .submit {
        padding: 10px 35px;
    }
}


@media (max-width: 785px) {

    .request .form {
        padding: 20px;
    }

    .request .input_fields {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 60px;
        grid-column-gap: 0;
        grid-row-gap: 10px;
    }

    .request .submit {
        padding: 8px 30px;
    }
}


@media (max-width: 470px) {

    .request .submit {
        padding: 10px 30px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/about.css?1672856528581*/
.about {
    padding: 35px 0;
    width: 100%;
}

.about_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about_img {
    margin-right: 4%;
}

.about_img img {
    border-radius: 25px;
}

.about_content {
}


/* Адаптация */

@media (max-width: 785px) {

    .about {
        padding: 15px;
    }

    .about_container {
        flex-direction: column-reverse;
    }

    .about_container .about_img {
        margin-right: 0;
        margin-top: 15px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/partners.css?1672856528718*/
.partners {
    padding: 35px 0;
    width: 100%;
}

.partners_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2%;
    grid-row-gap: 4%;
}


/* Адаптация */


@media (max-width: 1200px) {

    .partners {
        padding: 25px 0;
    }
}


@media (max-width: 960px) {

    .partners {
        padding: 20px 0;
    }

    .partners_container {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 4%;
    }
}


@media (max-width: 470px) {

    .partners {
        padding: 15px 0;
    }

    .partners_container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* End */


/* Start:/local/templates/marketplace/css/delivers.css?1672856528924*/
.delivery {
    padding: 35px 0;
    width: 100%;
}

.delivery_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2%;
    grid-row-gap: 4%;
}


/* Адаптация */


@media (max-width: 1200px) {

    .delivery {
        padding: 25px 0;
    }
}


@media (max-width: 960px) {

    .delivery {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .delivery_container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 4%;
        grid-row-gap: 15%;
    }
}


@media (max-width: 470px) {

    .delivery {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .delivery_container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-row-gap: 10%;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/question.css?16728565284606*/
.question {
    padding: 60px 0;
}

.question_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.question_text h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    color: #fff;
}

.question_text h3 {
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
}

.question .form {
    display: block;
    width: 100%;
    padding: 30px;
    border-radius: 35px;
    align-items: center;
    background-color: #fff;
}

.question .input_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr 120px 70px;
    grid-gap: 10px;
}

.question .form .form_input {
    height: 40px;
    width: 100%;
    padding: 2% 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #020071;
    background-color: #fff;
    background-image: none;
    border: 1px solid #020071;
    border-radius: 12px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    transition: border .2s ease-in-out;
}

.question .form .input_fields .input_name {
    grid-column: 1/3;
    grid-row: 1/2;
}

.question .form .input_fields .input_tel {
    grid-column: 1/2;
    grid-row: 2/3;
}

.question .form .input_fields .input_email {
    grid-column: 2/3;
    grid-row: 2/3;
}

.question .form .input_fields .input_question {
    grid-column: 1/3;
    grid-row: 3/4;
    height: 100%;
    resize: none;
    font-family: 'Montserrat', sans-serif;
}

.question .form .input_fields .input_question textarea {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.question .form .form_input::placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;
}

.question .form .form_input::-webkit-input-placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;

}

.question .form .form_input::-moz-placeholder {
    color: #020071;
    font-family: 'Montserrat', sans-serif;
    transition: color .1s linear;
}

.question .form .form_input:focus::placeholder {
    color: #b2b2de;
}

.question .form .form_input:focus::-webkit-input-placeholder {
    color: #b2b2de;
}

.question .form .form_input:focus::-moz-placeholder {
    color: #b2b2de;
}

.question .submit {
    grid-column: 1/3;
    grid-row: 4/5;
    align-self: end;
    cursor: pointer;
    width: 100%;
    height: 55px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 70px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    outline: none;
    border: none;
    background-size: 200% auto;
    transition: background-position .3s linear, box-shadow .2s linear;
    background-image: linear-gradient(60deg, #FF4600 0%, #0038FF 50%, #FF4600 100%);
}

.question .submit:hover {
    box-shadow: 1px 2px 5px rgba(115, 115, 115, 0.6);
    background-position: right center;
}

.question .form .form_text h1 {
    line-height: 6rem;
}

.question .form .form_text h3 {
    margin: 20px 0 50px 0;
    line-height: 3rem;
    font-size: 2.4rem;
}


/* Адаптация */


@media (max-width: 960px) {

    .question .form .form_input {
        height: 35px;
    }

    .question .submit {
        height: 50px;
    }
}


@media (max-width: 785px) {
    .question {
        padding: 30px 0;
    }

    .question_container {
        grid-column-gap: 3%;
    }

    .question .form {
        padding: 20px;
    }

    .question .input_fields {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 80px 50px;
        grid-row-gap: 5px;
        grid-column-gap: 0;
    }

    .question .form .form_input {
        height: 30px;
        padding: 2% 0.5rem;
    }

    .question .form .input_fields .input_name {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .question .form .input_fields .input_tel {
        grid-row: 2/3;
    }

    .question .form .input_fields .input_email {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .question .form .input_fields .input_question {
        grid-column: 1/2;
        grid-row: 4/5;
    }

    .question .submit {
        grid-column: 1/2;
        grid-row: 5/6;
        height: 40px;
    }
}


@media (max-width: 470px) {

    .question_container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .question_text {
        margin-bottom: 20px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/contacts.css?16728565282466*/
.contacts {
    background-color: #07063F;
    padding: 50px 0;
}

.contacts_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 3%;
}

.contacts_block {
    text-align: center;
}

.contact_image {
    margin: 0 auto 25px auto;
    max-width: 60px;
}

.contact_img {
    width: 100%;
    height: auto;
}

.contacts_block h5 {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.contacts_block p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    opacity: 0.8;
}


/* Адаптация */


@media (max-width: 1200px) {

    .contacts {
        padding: 40px 0;
    }

    .contact_image {
        max-width: 50px;
        margin: 0 auto 20px auto;
    }
}


@media (max-width: 960px) {

    .contacts {
        padding: 35px 0;
    }

    .contact_image {
        max-width: 40px;
        margin: 0 auto 15px auto;
    }
}


@media (max-width: 785px) {

    .contact_image {
        max-width: 35px;
        margin: 0 auto 10px auto;
    }

    .contacts_block h5 {
        font-size: 1rem;
    }

    .contacts_block p {
        font-size: 0.9rem;
    }
}

@media (max-width: 470px) {

    .contacts {
        padding: 25px 0 0 0;
    }

    .block_header {
        align-self: end;
    }

    .block_text {
        align-self: start;
    }

    .contact_image {
        max-width: 30px;
    }

    .contacts_block h5 {
        font-size: 1.2rem;
    }

    .contacts_block p {
        font-size: 1rem;
    }

    .contacts_container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .contacts_block {
        display: grid;
        align-items: center;
        align-content: center;
        text-align: left;
        justify-content: start;
        justify-items: start;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        margin-bottom: 15px;
    }

    body > div.contacts > div > div > div:nth-child(2) > div.contact_image > img {
    }

    #contacts > div > div > div:nth-child(4) {
        transform: translateY(-5px);
    }

    #contacts > div > div > div:nth-child(4) > div.contact_image > img {
        transform: translateY(-5px);
    }

    .contact_image {
        grid-row: 1/3;
        margin: 0 15px 0 0;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/footer.css?1672856528352*/
footer {
    background-color: #07063F;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer_container {
    padding: 30px 0;
}

.footer_text p {
    color: #fff;
    font-size: 1rem;
    opacity: 0.7;
}


/* Адаптация */


@media (max-width: 960px) {

    .footer_container {
        padding: 20px 0;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/modal_request.css?16728565285929*/

body.modal_show {
    overflow: hidden;
}

.modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 30;
    opacity: 0;
    transition: all .3s linear;
}

.modal.modal_show {
    visibility: visible;
    opacity: 1;
}

.modal_window {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2%;
    position: relative;
    z-index: 2;
    width: 60%;
    padding: 60px 3% 3% 3%;
    transition: inherit;
}

.modal_text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal_text h3 {
    font-size: 1.5rem;
    font-weight: 400;

}

.modal_window .form {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 35px;
}

.modal_window .input_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr 120px 80px;
    grid-gap: 10px;
}

.modal_window .form .form_input {
    height: 50px;
    width: 100%;
    padding: 2% 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: #020071;
    background-color: #fff;
    background-image: none;
    border: 1px solid #020071;
    border-radius: 12px;
    outline: none;
    transition: border .2s ease-in-out;
}

.modal_window .form .input_fields .input_name {
    grid-column: 1/3;
    grid-row: 1/2;
}

.modal_window .form .input_fields .input_tel {
    grid-column: 1/2;
    grid-row: 2/3;
}

.modal_window .form .input_fields .input_email {
    grid-column: 2/3;
    grid-row: 2/3;
}

.modal_window .form .input_fields .input_question {
    grid-column: 1/3;
    grid-row: 3/4;
    height: 100%;
    resize: none;
}

.modal_window .form .input_fields .input_question textarea {
    height: 100%;
}

.modal_window .form .form_input::placeholder {
    color: #020071;
    transition: color .1s linear;
}

.modal_window .form .form_input::-webkit-input-placeholder {
    color: #020071;
    transition: color .1s linear;
}

.modal_window .form .form_input::-moz-placeholder {
    color: #020071;
    transition: color .1s linear;
}

.modal_window .form .form_input:focus::placeholder {
    color: #b2b2de;
}

.modal_window .form .form_input:focus::-webkit-input-placeholder {
    color: #b2b2de;
}

.modal_window .form .form_input:focus::-moz-placeholder {
    color: #b2b2de;
}

.modal_window .form .submit {
    grid-column: 1/3;
    grid-row: 4/5;
    align-self: end;
    cursor: pointer;
    height: 60px;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    border-radius: 70px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    outline: none;
    border: none;
    background-size: 200% auto;
    transition: background-position .3s linear, box-shadow .2s linear;
    background-image: linear-gradient(60deg, #FF4600 0%, #0038FF 50%, #FF4600 100%);
}

.modal_window .form .submit:hover {
    box-shadow: 1px 2px 5px rgba(115, 115, 115, 0.6);
    background-position: right center;
}

.modal .modal_close {
    position: absolute;
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
}

.modal .modal_close span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.modal .modal_close span::before, .modal .modal_close span::after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.modal .modal_close span::before {
    transform: translateY(-50%) rotate(-45deg);
}

.modal .modal_close span::after {
    transform: translateY(-50%) rotate(45deg);

}

.modal .modal_close:hover .modal .modal_close span::before {
    background-color: #000;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 0;
}


/* Адаптация */


@media (max-width: 1500px) {

    .modal_window .input_fields {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 150px 100px;
        grid-gap: 10px;
    }

    .modal_window .form .input_fields .input_name {
        grid-column: 1/3;
        grid-row: 1/2;
    }

    .modal_window .form .input_fields .input_tel {
        grid-column: 1/3;
        grid-row: 2/3;
    }

    .modal_window .form .input_fields .input_email {
        grid-column: 1/3;
        grid-row: 3/4;
    }

    .modal_window .form .input_fields .input_question {
        grid-row: 4/5;
    }

    .modal_window .form .submit {
        grid-row: 5/6;
    }
}


@media (max-width: 1200px) {

    .modal_window {
        width: 100%;
    }
}


@media (max-width: 960px) {

    .modal_window {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        grid-column-gap: 0;
        grid-row-gap: 30px;
    }

    .modal_text h1 {
        font-size: 2.5rem;
    }

    .modal_text h3 {
        font-size: 2rem;
    }

    .modal_window .form .form_input {
        height: 50px;
        font-size: 1.5rem;
    }

    .modal_window .form .submit {
        height: 60px;
    }
}


@media (max-width: 470px) {

    .modal_text h1 {
        font-size: 2.2rem;
    }

    .modal_window .input_fields {
        grid-template-rows: 1fr 1fr 1fr 100px 65px;
    }

    .modal_window .form {
        padding: 25px 20px;
    }

    .modal_window .input_fields {
        grid-column-gap: 0;
        grid-row-gap: 5px;
    }

    .modal_window .form .form_input {
        height: 40px;
    }

    .modal_window .form .submit {
        height: 50px;
    }
}
/* End */


/* Start:/local/templates/marketplace/css/modal_ajax.css?16728565281832*/
.modal_ajax {
    position: fixed;
    z-index: 50;
    max-width: 25%;
    height: 230px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background: #95A8F9 url("/images/modal_ajax_bg.jpg") no-repeat center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: all .4s linear;
}

.ajax_error.isvisible,
.ajax_success.isvisible{
    opacity: 0.95;
    visibility: visible;
}

.modal_ajax_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
}

.modal_ajax_img {
    margin-bottom: 20px;
}

.modal_ajax_text h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal_ajax_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.modal_ajax_close span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.modal_ajax_close span::before, .modal_ajax_close span::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background-color: #fff;
}

.modal_ajax_close span::before {
    transform: rotate(-45deg);
}

.modal_ajax_close span::after {
    transform: rotate(45deg);
}


/* Адаптация */


@media (max-width: 1200px) {

    .modal_ajax {
        max-width: 50%;
    }

    .modal_ajax_content {
        padding: 15px;

    }
}


@media (max-width: 785px) {

    .modal_ajax {
        max-width: 75%;
    }

    .modal_ajax_content {
        padding: 10px;

    }
}

/* End */


/* Start:/local/templates/marketplace/css/styles.css?16728565286345*/
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2) inset;
    border-radius: 8px;
    transition: all .2s linear;
}

::-webkit-scrollbar-track:hover {
    background: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 8px;
    border: 2px solid #f1f1f1;
    transition: all .2s linear;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(144, 169, 255);
    background: -moz-linear-gradient(18deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    background: linear-gradient(180deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#90a9ff", endColorstr="#ff9d78", GradientType=1);
}

html {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 16px;
}

body {
    width: 100%;
}

img {
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.inner_container {
    max-width: 1280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 30px;
}

.content_container {
    padding: 0 60px;
}

.blue-text {
    color: #020071;
}

.gray-text {
    color: #4A4A4A;
}

.white-text {
    color: #fff;
}

.gradient-text {
    background-color: #0038FFFF;
    background-image: linear-gradient(90deg, rgba(0, 56, 255, 1) 0%, rgba(255, 70, 0, 1) 50%, rgba(0, 56, 255, 1) 100%);
    background-size: 200% auto;
    animation: gradientShine 25s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    background: rgb(144, 169, 255);
    background: -moz-linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    background: linear-gradient(90deg, rgba(144, 169, 255, 1) 0%, rgba(255, 157, 120, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#90a9ff", endColorstr="#ff9d78", GradientType=1);
}

p {
    line-height: 1.3rem;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.1;
    color: #020071;
}

h1.gradient-text,
h2.gradient-text,
h3.gradient-text,
h4.gradient-text,
h5.gradient-text,
h6.gradient-text {
    display: inline-block;
}

a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: inherit;
}

.block_img {
    width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.button-link {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: #FFFFFF;
    text-transform: uppercase;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 70px;
    font-size: 1.125rem;
    overflow: hidden;
    font-weight: 700;
    padding: 15px 20px;
    background-size: 200% auto;
    transition: background-position .3s linear, box-shadow .2s linear;
    background-image: linear-gradient(60deg, #FF4600 0%, #FFB800 50%, #FF4600 100%);
}

.button-link:hover {
    box-shadow: 1px 2px 5px rgba(115, 115, 115, 0.6);
    background-position: right center;
}

/* Стили заголовков контейнеров */

.container_header {
    width: 100%;
    margin-bottom: 50px;
}

/* Анимации */

@keyframes gradientShine {
    to {
        background-position: 200%;
    }
}

@keyframes show {
    0%, 40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes show {
    0%, 40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes show {
    0%, 40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes show {
    0%, 40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes hide {
    0%, 20% {
        opacity: 1;
    }
    20%, 50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
}

@-webkit-keyframes hide {
    0%, 20% {
        opacity: 1;
    }
    20%, 50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
}

@-moz-keyframes hide {
    0%, 20% {
        opacity: 1;
    }
    20%, 50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
}

@-o-keyframes hide {
    0%, 20% {
        opacity: 1;
    }
    20%, 50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
}


/* Адаптация */


@media (max-width: 1200px) {

    html {
        font-size: 15px;
    }
}

@media (max-width: 960px) {

    .button-link {
        padding: 10px 50px;
        margin-bottom: 20px;
    }

    .container_header {
        margin-bottom: 35px;
    }

    html {
        font-size: 13px;
    }
}

@media (max-width: 785px) {

    html {
        font-size: 12px;
    }

    .inner_container {
        padding: 0 20px;
    }

    .container_header {
        margin-bottom: 30px;
    }

    .content_container {
        padding: 0;
    }

    .button-link {
        padding: 8px 40px;
        margin-bottom: 15px;
    }
}

@media (max-width: 470px) {

    html {
        font-size: 12px;
    }

    .container_header {
        margin-bottom: 20px;
    }

    .content_container {
        padding: 0;
    }

    .button-link {
        padding: 10px 40px;
        margin-bottom: 15px;
    }
}
/* End */
/* /local/templates/marketplace/css/preloader.css?16728565281555 */
/* /local/templates/marketplace/css/fonts.css?1672856528684 */
/* /local/templates/marketplace/css/animateCustom.css?167285652813810 */
/* /local/templates/marketplace/css/header.css?167285652810589 */
/* /local/templates/marketplace/css/fullfilment.css?16728565281036 */
/* /local/templates/marketplace/css/services.css?16728565281396 */
/* /local/templates/marketplace/css/request.css?16728565282811 */
/* /local/templates/marketplace/css/about.css?1672856528581 */
/* /local/templates/marketplace/css/partners.css?1672856528718 */
/* /local/templates/marketplace/css/delivers.css?1672856528924 */
/* /local/templates/marketplace/css/question.css?16728565284606 */
/* /local/templates/marketplace/css/contacts.css?16728565282466 */
/* /local/templates/marketplace/css/footer.css?1672856528352 */
/* /local/templates/marketplace/css/modal_request.css?16728565285929 */
/* /local/templates/marketplace/css/modal_ajax.css?16728565281832 */
/* /local/templates/marketplace/css/styles.css?16728565286345 */
