﻿@charset "utf-8";

* {
  outline: 0 !important;
}
html,
body {
    font-family: 'Avenir-Roman';
    min-height: 480px;
    color: rgb(59,59,59);
}
a {
    text-decoration: none;
}
a.lib__gradient-link:hover,
a.lib__gradient-link:focus,
a.lib__gradient-link:active {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.container-fluid,
.container,
.row {
	height: 100%;
}
.container-fluid {
    max-width: 1760px;
}
.container,
.container-fluid {
	position: relative;
	z-index: 3;
}



/* lib */
.lib__border {
    border-radius: 10px;
}
.lib__header-content {
    margin-bottom: 60px;
}
.lib__header-h1 {
    margin-bottom: 20px;
    font-family: 'Avenir-Heavy';
    font-size: 50px;
    line-height: 60px;
}
.lib__header-h1 + .lib__header-text {
    font-family: 'Avenir-Light';
    font-size: 36px;
    line-height: 44px;
}
.lib__header-h3 {
    margin-bottom: 20px;
    font-family: 'Avenir-Heavy';
    font-size: 36px;
    line-height: 46px;
}
.lib__header-h3 + .lib__header-text {
    font-family: 'Avenir-Roman';
    font-size: 24px;
    line-height: 34px;
}
.lib__header-h4 {
    margin-bottom: 20px;
    font-family: 'Avenir-Heavy';
    font-size: 30px;
    line-height: 40px;
}
.lib__header-h4 + .lib__header-text {
    font-family: 'Avenir-Roman';
    font-size: 20px;
    line-height: 30px;
}
.lib__header-h6 {
    margin-bottom: 20px;
    font-family: 'Avenir-Heavy';
    font-size: 18px;
    line-height: 24px;
}
.lib__text {
    margin-bottom: 60px;
    font-family: 'Avenir-Light';
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
}
.lib__text a {
    color: #ff5e5b;
}
.lib__ul {
    margin-bottom: 60px;
    padding-left: 0;
    list-style: none;
}
.lib__ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    font-family: 'Avenir-Light';
    font-size: 18px;
    line-height: 26px;
    position: relative;
}
.lib__ul li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #ff5e5b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}
.lib__button {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 45px;
    border: 1px solid rgba(255,255,255,0);
    background: rgba(255,255,255,0);
    font-family: 'Avenir-Heavy';
    font-size: 16px;
    line-height: 16px;
    letter-spacing: normal;
    text-transform: uppercase;
    cursor: pointer;
}
.lib__button--style-white {
    border: 1px solid rgba(255,255,255,1);
    color: rgba(255,255,255,1);
}
.lib__button--style-white:active,
.lib__button--style-white:focus,
.lib__button--style-white:hover {
    background: rgba(255,255,255,1);
}
.lib__button--style-white span {
    display: block;
    padding: 5px;
    border-radius: 5px;
}
.lib__button--style-white:active span,
.lib__button--style-white:focus span,
.lib__button--style-white:hover span {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
}

.lib__button--style-gradient {
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    border: none;
    color: rgba(255,255,255,1);
}
.lib__button--style-gradient:active,
.lib__button--style-gradient:focus,
.lib__button--style-gradient:hover {
    color: rgba(255,255,255,1);
    text-decoration: none;
}
.lib__button--style-gradient span {
    display: block;
    padding: 5px;
    border-radius: 5px;
}



/* mobile menu */
.mobile-menu__trigger {
    display: inline-block;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.mobile-menu {
    display: none;
    opacity: 0;
    width: 100%;
	height: 100vh;
    min-height: 480px;
    background: #fff;
    position: absolute;
    left: 0;
    top: -100vh;
    z-index: 9999;
}
.mobile-menu__topping {
    height: 60px;
    background: rgb(59, 59, 59);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.mobile-menu__close {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}
.mobile-menu__content {
    height: calc(100% - 60px);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}



/* page-content */
.page-content {
    margin-bottom: 12vw;
	padding-top: 120px;
}



/* topping */
.topping {
	height: 100px;
    background: rgb(59, 59, 59);
    position: relative;
    z-index: 1000;
}
.topping--index {
    background: none;
}
.topping__nav-item {
    display: block;
    padding: 15px 30px;
    border: none;
    font-family:'Avenir-Heavy';
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
}
.topping__nav-item--active {
    margin-left: 30px;
    padding: 15px 40px;
}



/* main block */
.main-block {
	height: 70vh;
    min-height:500px !important;
    margin-top: -100px;
    padding-top: 100px;
    background: url('../Images/retheming/ES_Main-2.jpg') center center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
}
.main-block .lib__header-h1,
.main-block .lib__header-text {
    color: #fff;
}
.main-block__search {
    max-width: 700px;
    padding: 10px 10px 10px 30px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.main-block__search .register-organization__input {
    height: 44px;
    background: none;
    border: none;
    color: #fff;
}
.main-block__search-ico {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
}
.main-block__scroll-down {
    position: absolute; 
    bottom: 60px; 
    left: 50%; 
    -webkit-transform: translate(-50%, 0) rotate(90deg); 
    transform: translate(-50%, 0) rotate(90deg);
}
.main-block__scroll-down span {
    margin-right: 5px;
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    text-transform: uppercase;
}
.main-block__scroll-down span,
.main-block__scroll-down svg {
    vertical-align: middle;
}



/* main about */
.main__about {
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
}
.main__about:before {
    content: "";
    display: block;
    width: 45%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig1.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 1;
}
.main__about:after {
    content: "";
    display: block;
    width: 25%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig2.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2;
}
.main__about .lib__text {
	font-size: 16px;
    color: rgba(59, 59, 59, 0.8);
}
.main__about__video {
    display: inline-block;
    padding-right: 50px;
}
.main__about__video:before {
    content: "";
    display: block;
    width: calc(100% - 50px);
    height: 100%;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: 1;
}
.main__about__video:after {
    content: "";
    display: block;
    width: calc(100% - 80px);
    height: calc(100% - 30px);
    background: url('../Images/retheming/index-video-back.png') center center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    position: absolute;
    right: 30px;
    top: -30px;
    z-index: 1;
}
.main__about__video-content {
    position: relative;
    z-index: 3;
}
.main__about__video-content-play {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(../Images/retheming/play-ico.svg) center center no-repeat;
    z-index: 4;
    cursor: pointer;
}
.main__about__video-name {
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 18px;
    color: #ffba66;
    position: absolute;
    left: 80px;
    bottom: -30px;
    z-index: 3;
}



/* main solution */
.main__solution {
    padding-bottom: 260px;
    overflow: hidden;
}
.main__solution-content {
	position: relative;
}
.main__solution-img {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.main__solution-card1 {
    position: absolute;
    left: 0;
    top: -20px;
    z-index: 1;
}
.main__solution-card2 {
    position: absolute;
    right: 0;
    top: -20px;
    z-index: 1;
}
.main__solution-card3 {
    position: absolute;
    left: -100px;
    top: 100px;
    z-index: 4;
}
.main__solution-card4 {
    position: absolute;
    right: -100px;
    top: 100px;
    z-index: 4;
}
.main__solution-card5 {
    position: absolute;
    left: 0;
    top: 240px;
    z-index: 4;
}
.main__solution-card6 {
    position: absolute;
    right: 0;
    top: 240px;
    z-index: 4;
}



/* main benefits */
.main__benefits {
    padding-bottom: 160px;
    position: relative;
}
.main__benefits:before {
    content: "";
    display: block;
    width: 35%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig3.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    right: 0;
    top: -500px;
    z-index: 1;
}
.main__benefits:after {
    content: "";
    display: block;
    width: 25%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig4.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    right: 0;
    top: -600px;
    z-index: 2;
}
.main__benefits .benefits__content {
	max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}



/* main clients */
.main__clients {
    margin-bottom: 80px;
    position: relative;
}
.main__clients:before {
    content: "";
    display: block;
    width: 45%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig5.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    left: 0;
    top: -600px;
    z-index: 1;
}
.main__clients:after {
    content: "";
    display: block;
    width: 20%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig6.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    left: 0;
    top: -700px;
    z-index: 2;
}
.main__clients > .container-fluid {
	max-width: 1920px;
    padding-left: 0;
    padding-right: 0;
}
.main__clients-content {
    padding-left: 20vw;
}
.swiper__clients {
    width: 60vw;
    height: 800px;
    background: url(../Images/retheming/index-clients-back.png) left center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
}
.swiper-container--clients {
    padding: 80px 20px 20px 20px;
}
.swiper-container--clients .swiper-slide {
    opacity: 0.3;
}
.swiper-container--clients .swiper-slide.swiper-slide-active {
    opacity: 1;
}
.swiper-container--clients .swiper-slide.swiper-slide-next {
    opacity: 0.6;
}

.main__clients-item {
    padding: 0 30px 60px 30px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.main__clients-item-img {
    display: inline-block;
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 30px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.main__clients-item-img img {
    min-width: 100%;
    min-height: 100%;
    position: absolute; 
    top: 50%; 
    left: 50%; 
    -webkit-transform: translate(-50%, -50%); 
    transform: translate(-50%, -50%);
}
.main__clients-item-name {
    margin-bottom: 10px;
    font-family: 'Avenir-Heavy';
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
}
.main__clients-item-job {
    margin-bottom: 30px;
    font-family: 'Avenir-Heavy';
    font-size: 14px;
    line-height: 22px;
    color: #FF9361;
}
.main__clients-item-text {
    font-family: 'Avenir-Oblique';
    font-size: 14px;
    line-height: 22px;
    color: rgba(59, 59, 59, 0.8);
}
.swiper-button-next--clients,
.swiper-button-prev--clients {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid #FF9361;
    border-radius: 10px;
    text-align: center;
    position: static;
}
.swiper-button-prev--clients {
    margin-right: 20px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.swiper-pagination--clients {
    position: static;
}
.swiper-pagination--clients .swiper-pagination-bullet {
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: none;
    border: 1px solid #fff;
}
.swiper-pagination--clients .swiper-pagination-bullet-active {
    background: rgb(255, 94, 91);
    border: 1px solid rgb(255, 94, 91);
}




/* main previewer */
.main__previewer {
    margin-bottom: 160px;
}
.main__previewer > .container-fluid {
	max-width: 1920px;
    padding-left: 0;
    padding-right: 0;
}
.main__previewer-monitor {
    height: 960px;
    padding: 15px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(251, 251, 251)), to(rgb(244, 244, 244)));
    background-image: linear-gradient(to bottom, rgb(251, 251, 251), rgb(244, 244, 244));
}
.main__previewer-cntrl {
    max-width: 500px;
    margin-left: 80px;
    padding-right: 15px;
}
.main__previewer-loader {
    height: 150px;
    border: 1px dashed rgb(220, 220, 220);
}
.main__previewer-loader-text {
    margin-right: 15px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(128, 128, 128);
}
.main__previewer-loader-button {
    display: inline-block;
    width: 120px;
    height: 40px;
    margin-left: 15px;
    margin-bottom: 0;
    border: none;
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    letter-spacing: normal;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.main__previewer-loader-button:before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    border-radius: 10px;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1;
}
.main__previewer-loader-button:active,
.main__previewer-loader-button:focus,
.main__previewer-loader-button:hover {
    background: #fff;
}
.main__previewer-loader-button span {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #FF9361;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}



/* main our partners */
.main__our-partners {
    margin-bottom: 200px;
    position: relative;
}
.main__our-partners:before {
    content: "";
    display: block;
    width: 35%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig3.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    right: 0;
    top: -300px;
    z-index: 1;
}
.main__our-partners:after {
    content: "";
    display: block;
    width: 25%;
    height: 1500px;
    background: url(../Images/retheming/index-back-fig4.svg) left top no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    position: absolute;
    right: 0;
    top: -400px;
    z-index: 2;
}
.main__our-partners-item {
    display: inline-block;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}



/* register */
.register {
	height: 460px;
    margin-bottom: 100px;
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    position: relative;
}
    .register:before {
        content: "";
        display: block;
        width: 50%;
        height: 732px;
        background: url(../Images/retheming/Register-2.png) center center no-repeat;
        background-size: contain;
        -webkit-background-size: contain;
        position: absolute;
        right: 40px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
.register .lib__header-content {
	color: #fff;
}



/* footer */
.footer__logo {
    display: block;
    margin-bottom: 20px;
}
.footer__text {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 24px;
    color: #3b3b3b;
}
.footer__soc {
    margin-bottom: 80px;
}
.footer__soc-item svg {
    fill: #686868;
}
.footer__nav {
    margin-bottom: 80px;
}
.footer__nav-item {
    display: block;
    padding: 15px 30px;
    font-family: 'Avenir-Heavy';
    font-size: 14px;
    line-height: 14px;
    color: #3b3b3b;
    text-transform: uppercase;
}
.footer__copyright {
	height: 60px;
    border-top: 1px solid rgb(228, 228, 228);
}
.footer__copyright-text {
    opacity: 0.75;
    font-size: 14px;
    line-height: 24px;
    color: #686868;
}
.footer__copyright-text br {
    display: none;
}



/* REGISTER ORGANIZATION */
.register-organization__content {
	max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.register-organization__line {
    margin-bottom: 20px;
}
.register-organization__line-submit {
    margin-top: 40px;
    margin-bottom: 0;
}
.register-organization__header {
    margin-bottom: 10px;
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
}
.register-organization__input {
    width: 100%;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid rgb(220, 220, 220);
    font-family: 'Avenir-Light';
    font-synthesis: 14px;
    line-height: 14px;
    color: rgb(59, 59, 59);
}
.main__previewer .register-organization__input {
    border: none;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
textarea.register-organization__input {
    height: 120px;
    padding: 15px 20px;
    resize: none;
}
.radio-button__input {
    display: none;
}
.radio-button__label {
    display: inline-block;
    width: 120px;
    height: 40px;
    margin-bottom: 0;
    border: none;
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    letter-spacing: normal;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.radio-button__label:before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    border-radius: 10px;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1;
}
.radio-button__label:active,
.radio-button__label:focus,
.radio-button__label:hover {
    background: #fff;
}
.radio-button__label span {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #FF9361;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.radio-button__input:checked + .radio-button__label span {
    background: none;
    color: #fff;
}



/* HELP CENTER */
.help-center__link {
	display: block;
    height: 80px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Avenir-Heavy';
    font-size: 16px;
    line-height: 24px;
    position: relative;
}
.help-center__link:before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    border-radius: 10px;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1;
}
.help-center__link span {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    color: #FF9361;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}
.help-center__link:hover span {
    background: none;
    color: #fff;
}



/* ABOUT US */
.about-us__content-block {
    margin-bottom: 160px;
}
.about-us__img {
    max-width: 800px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}
.about-us__pluses-item {
    display: inline-block;
    max-width: 200px;
}
.about-us__pluses-img {
    margin-bottom: 20px;
}
.about-us__pluses-text {
	font-family: 'Avenir-Heavy';
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.about-us__how-it-works-item {
    display: inline-block;
    max-width: 260px;
}
.about-us__how-it-works-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 187, 102)), to(rgb(255, 94, 91)));
    background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    font-family: 'Avenir-Heavy';
    font-size: 14px;
    line-height: 30px;
    color: #fff;
}
.about-us__how-it-works-img {
    height: 200px;
}
.about-us__how-it-works-text {
	font-family: 'Avenir-Heavy';
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.about-us__shops {
    margin-bottom: 60px;
    position: relative;
}
.about-us__shops-img {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.about-us__shops-img--before {
    opacity: 0.6;
    width: 45%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%); 
    transform: translate(0, -50%);
    z-index: 1;
}
.about-us__shops-img--after {
    opacity: 0.6;
    width: 45%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%); 
    transform: translate(0, -50%);
    z-index: 1;
}



/* CONTACT US */
.contact-us__content-line {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    margin-top:60px;
}
.contact-us__content-line-item {
    display: inline-block;
    max-width: 220px;
}
.contact-us__text-ico {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}
.contact-us__text {
    font-size: 14px;
    line-height: 20px;
    color: rgb(59, 59, 59);
}
.contact-us__text a {
	color: #ff5e5b;
    text-decoration: underline;
}
.contact-us__content-block {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 100px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}



/* SINGLE POST */
.single-post__img {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.subscribe {
    padding-top: 160px;
	border-top: 1px solid rgb(228, 228, 228);
}
.subscribe__content {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 160px;
}
.subscribe__content .register-organization__input {
    height: 44px;
}

.recent-post__item {
    margin-bottom: 20px;
    background: #fff;
    border: solid 1px rgb(220, 220, 220);
    border-radius: 0 0 10px 10px;
    -webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.recent-post__item:hover {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.recent-post__item-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}
.recent-post__item-img img {
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}
.recent-post__item-img:after {
    opacity: 1;
    content: "";
	display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    -webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.recent-post__item:hover .recent-post__item-img:after {
    opacity: 0;
}
.recent-post__item-content {
    height: 200px;
    padding: 0 40px;
}
.recent-post__item-date {
    margin-bottom: 5px;
    font-family: 'Avenir-Oblique';
    font-size: 12px;
    line-height: 18px;
    color: rgba(104, 104, 104, 0.51);
}
.recent-post__item-header {
    margin-bottom: 20px;
    font-family: 'Avenir-Heavy';
    font-size: 20px;
    line-height: 26px;
    color: #3b3b3b;
}
.recent-post__item-more {
    font-family: 'Avenir-Heavy';
    font-size: 12px;
    line-height: 18px;
    color: #ff5e5b;
}
.recent-post__item-more:hover,
.recent-post__item-more:active,
.recent-post__item-more:focus {
    color: #ff5e5b;
}
.recent-post__item-more span,
.recent-post__item-more svg {
    vertical-align: middle;
}



/* BENEFITS */
.benefits__content > .row > div {
    margin-bottom: 30px;
}
.benefits__item {
    height: 100%;
    padding: 15px 15px 25px 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.benefits__item-img {
    height: 100px;
    margin-bottom: 10px;
}
.benefits__item-header {
    min-height: 48px;
    margin-bottom: 10px;
    font-family: 'Avenir-Heavy';
    font-synthesis: 16px;
    line-height: 24px;
    color: #000;
}
.benefits__item-text {
    font-family: 'Avenir-Light';
    font-synthesis: 14px;
    line-height: 20px;
    color: rgba(0,0,0,0.8);
    text-align: left;
}




@media (max-width: 1199px) {
    /* main clients */
    .main__clients-content {
        padding-left: 15px;
    }
    .swiper__clients {
        width: 70vw;
        height: 800px;
    }
    
    
    /* page-content */
    .page-content {
        margin-bottom: 100px;
        padding-top: 60px;
    }
    
    
    /* topping */
    .topping__nav-item {
        padding: 15px 20px;
    }
    .topping__nav-item--active {
        padding: 15px 20px;
        background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
    }
}
@media (max-width: 991px) {
    /* lib */
    .lib__header-content {
        margin-bottom: 40px;
    }
    .lib__header-h1 {
        margin-bottom: 20px;
        font-family: 'Avenir-Heavy';
        font-size: 24px;
        line-height: 34px;
    }
    .lib__header-h1 + .lib__header-text {
        font-family: 'Avenir-Light';
        font-size: 18px;
        line-height: 28px;
    }
    .lib__header-h3 {
        font-size: 24px;
        line-height: 34px;
    }
    .lib__header-h3 + .lib__header-text {
        font-family: 'Avenir-Roman';
        font-size: 18px;
        line-height: 28px;
    }
    .lib__text {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 20px;
    }
    .lib__ul li {
        font-size: 14px;
        line-height: 20px;
    }
    
    
    /* topping */
    .topping {
        height: 60px;
    }
    .topping__nav-item {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 14px;
        color: rgb(59, 59, 59);
    }
    .topping__nav-item--active {
        margin-left: 0;
        margin-top: 20px;
        background-image: linear-gradient(to left, rgb(255, 187, 102), rgb(255, 94, 91));
        color: #ffffff;
    }
    
    
    /* main block */
    .main-block {
        margin-top: -60px;
        padding-top: 60px;
    }
    
    
    .main__about:before,
    .main__about:after,
    .main__benefits:before,
    .main__benefits:after,
    .main__clients:before,
    .main__clients:after,
    .main__our-partners:before,
    .main__our-partners:after {
        display: none;
    }
    
    
    
    /* main our partners */
    .main__our-partners {
        margin-bottom: 60px;
    }
    
    
    /* main clients */
    .main__clients-content {
        padding-left: 0;
    }
    .swiper__clients {
        width: 100%;
        height: 800px;
        background: url(../Images/retheming/index-clients-back.png) right center no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
    }
    .swiper-buttons--clients {
        margin-bottom: 30px;
    }
    
    
    /* main previewer */
    .main__previewer {
        margin-bottom: 80px;
    }
    .main__previewer-monitor {
        height: 100vh;
    }
    
    
    
    /* register */
    .register {
        height: auto;
        margin-bottom: 200px;
        padding-top: 40px;
        position: relative;
    }
    .register:before {
        display: none;
    }
    .register:after {
        content: "";
        display: inline-block;
        width: 100%;
        height: 80vw;
        margin-bottom: -17%;
        background: url(../Images/retheming/Register-2.png) bottom center no-repeat;
        background-size: 100% auto;
        -webkit-background-size: 100% auto;
    }
    .register .button__content {
	    margin-bottom: 30px;
    }
    .register .lib__button {
        width: 100%;
        max-width: 320px;
        margin-bottom: 10px;
    }
    
    
    /* footer */
    .footer__nav-item {
        display: block;
        padding: 15px 10px;
    }
    
    
    /* ABOUT US */
    .about-us__content-block {
        margin-bottom: 80px;
    }
    .about-us__shops {
        margin-bottom: 40px;
    }
    .about-us__shops-img {
        max-width: 80%;
    }
    .about-us__shops-img--before {
        left: -15px;
    }
    .about-us__shops-img--after {
        right: -15px;
    }
    
    
    /* SINGLE POST */
    .recent-post__item-content {
        padding: 0 15px;
    }
    .recent-post__item-header {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    /* main block */
    .main-block__scroll-down {
        display: none !important;
    }
    .noDataMessage, #storesTxtBox_listbox, .k-nodata {
        width: 445px !important;
    }
    
    /* main about */
    .main__about {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .main__about__video {
        padding-top: 80px;
        padding-right: 0;
    }
    .main__about__video:after,
    .main__about__video:before {
        display: none;
    }
    
    
    /* main solution */
    .main__solution {
        padding-bottom: 80px;
    }
    
    
    /* main benefits */
    .main__benefits {
        padding-bottom: 80px;
    }
    .main__benefits .benefits__content {
        margin-bottom: 30px;
    }
    
    
    /* main clients */
    .swiper__clients {
        height: 600px;
    }
    .main__clients-item {
        padding: 0 15px 15px 15px;
    }
    .swiper-container--clients .swiper-slide {
        opacity: 1;
    }
    .swiper-container--clients .swiper-slide.swiper-slide-next {
        opacity: 1;
    }
    
    
    /* main previewer */
    .main__previewer-monitor {
        height: auto;
        padding: 30px 15px;
    }
    .main__previewer-cntrl {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .main__previewer-loader {
        height: 100px;
    }
    .main__previewer-loader-button {
        margin-left: 0;
    }
    
    
    /* register */
    .register {
        margin-bottom: 150px;
    }
    
    
    /* footer */
    .footer__text {
        font-size: 12px;
        line-height: 22px;
    }
    .footer__soc {
        margin-bottom: 30px;
    }
    .footer__nav {
        margin-bottom: 30px;
    }
    .footer__nav-item {
        font-size: 12px;
        line-height: 12px;
    }
    .footer__copyright-text {
        font-size: 12px;
        line-height: 22px;
    }
    .footer__copyright-text br {
        display: block;
    }
    
    
    /* CONTACT US */
    .contact-us__content-line-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .contact-us__content-block {
        padding: 40px 15px;
    }
}
@media (max-width: 575px) {
    /* main block */
    .main-block__search {
        padding: 15px;
    }
    .main-block__search-ico {
        display: none;
    }
    .main-block__search .register-organization__input {
        /*   margin-bottom: 15px;
       border: 1px solid rgb(220, 220, 220);*/
    }
    .main-block__search .lib__button {
	    width: 100%;
    }

    .noDataMessage, #storesTxtBox_listbox, .k-nodata {
        width:316px !important;
    }
    /* main benefits */
    .benefits__item {
        padding: 15px;
    }
    .benefits__item-img {
        height: 90px;
        margin-bottom: 0;
    }
    .benefits__item-header {
        font-size: 12px;
        line-height: 18px;
    }
    
    
    /* main our partners */
    .main__our-partners-item {
        width: 80px;
        height: 80px;
    }
    .main__our-partners-item img {
        width: 50%;
    }
    
    
    /* register */
    .register {
        margin-bottom: 100px;
    }
    .register:after {
        height: 105vw;
        background-size: 130% auto;
        -webkit-background-size: 130% auto;
    }
    
    
    /* REGISTER ORGANIZATION */
    .radio-button__label {
        width: 100%;
        margin-bottom: 10px;
    }
    .register-organization__line-two-col > .row > div:first-child {
        margin-bottom: 20px;
    }
    .register-organization__line-submit .lib__button {
        width: 100%;
    }
    
    
    /* HELP CENTER */
    .help-center__link {
        height: 50px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 20px;
    }
    
    
    /* ABOUT US */
    .about-us__pluses-item {
        margin-bottom: 40px;
    }
    .about-us__pluses-text {
        font-size: 16px;
        line-height: 22px;
    }
    .about-us__how-it-works-item {
        margin-bottom: 50px;
    }
    .about-us__how-it-works-img {
        height: auto;
        margin-bottom: 20px;
    }
    .about-us__how-it-works-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    
    /* SINGLE POST */
    .single-post__img {
        margin-bottom: 40px;
    }
    .subscribe {
        padding-top: 80px;
    }
    .subscribe__content {
        margin-bottom: 80px;
    }
    .subscribe__content .register-organization__input {
        margin-bottom: 20px;
    }
    .subscribe__content .lib__button {
        width: 100%;
    }
    .recent-post__item-content {
        padding: 0 15px;
    }
}



@media (min-width: 992px) {
    /* mobile menu */
    .mobile-menu {
        display: none !important;
    }
}

@media screen and (max-height: 300px) {
    
    #storesTxtBox-list, k-nodata{
      margin-top: -15px;
    }

    .main__about {
        padding-top: 400px;
      /*  padding-bottom: 80px; */
    }
        
}

/* snippets */
.center_magic {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    -webkit-transform: translate(-50%, -50%); 
    transform: translate(-50%, -50%);
}
.animate-element {
    -webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.helper {
    display: -moz-inline-box; 
    display: inline-block; 
    vertical-align: middle; 
    min-height: inherit; 
    height: 100%; 
    width: 0; 
    zoom: 1; 
    //display:inline;
}
.helper:before {
    content: ""; 
    display: inline-block; 
    min-height: inherit; 
    height: 100%; 
    vertical-align: middle;
}
.no_space {
    font-size: 0; 
    line-height: 0; 
    letter-spacing: -0.3em;
}

.topping__logo img{
    width: 199px;
    height: auto;
}

.topping__nav-item {
    text-transform: uppercase;
}

.admin-header-links {
    text-align: center;
}

    .admin-header-links a {
        display: block;
        margin: 0 10px;
        line-height: 35px;
        font-weight: bold;
    }

    .admin-header-links + .master-wrapper-page {
        padding: 45px 0 0;
    }

    .admin-header-links .impersonate {
        line-height: 35px;
    }

        .admin-header-links .impersonate a {
            display: inline-block;
        }

.bold-list {
    font-weight: bold;
}

.contact-us__content .register-organization__line {
     margin-bottom: 20px; 
}

.message-error, .field-validation-error {
    font-family: 'Avenir-Light';
    font-size: 12px;
    color: #ff6666;
    margin-top: 8px;
    margin-left: 2px;
}
.k-icon.k-clear-value.k-i-close, .k-icon.k-clear-value.k-i-close.k-hidden {
    display: none;
}
.k-icon.k-i-loading{
    display:none !important;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 1000000;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 1500ms infinite linear;
            -moz-animation: spinner 1500ms infinite linear;
            -ms-animation: spinner 1500ms infinite linear;
            -o-animation: spinner 1500ms infinite linear;
            animation: spinner 1500ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255, 255, 255, 1) 1.5em 0 0 0, rgba(255, 255, 255, 1) 1.1em 1.1em 0 0, rgba(255, 255, 255, 1) 0 1.5em 0 0, rgba(255, 255, 255, 1) -1.1em 1.1em 0 0, rgba(255, 255, 255, 1) -1.5em 0 0 0, rgba(255, 255, 255, 1) -1.1em -1.1em 0 0, rgba(255, 255, 255, 1) 0 -1.5em 0 0, rgba(255, 255, 255, 1) 1.1em -1.1em 0 0;
            box-shadow: rgba(255, 255, 255, 1) 1.5em 0 0 0, rgba(255, 255, 255, 1) 1.1em 1.1em 0 0, rgba(255, 255, 255, 1) 0 1.5em 0 0, rgba(255, 255, 255, 1) -1.1em 1.1em 0 0, rgba(255, 255, 255, 1) -1.5em 0 0 0, rgba(255, 255, 255, 1) -1.1em -1.1em 0 0, rgba(255, 255, 255, 1) 0 -1.5em 0 0, rgba(255, 255, 255, 1) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.k-nodata {
    line-height: 32px;
    height: 40px;
    margin-top: -17px !important;
}

.noDataMessage, #storesTxtBox_listbox, .k-nodata {
    padding: 0;
    font-size: 16px;
    width: 600px;
    border-radius: 15px;
    /* margin-top: 1px; */
    background-color: #000000;
}

.noDataMessage, #storesTxtBox_listbox {
    margin-top: 1px;
}

ul.k-list {
    list-style-type: none;
}

#storesTxtBox_listbox li {
    padding-bottom: 5px;
    padding-left: 10px;
    padding-top: 6px;
    font-size: 16px;
    outline-style: none;
    height: 40px;
    line-height: 17px;
}

    #storesTxtBox_listbox li a, .k-nodata {
        color: white;
    }

    #storesTxtBox_listbox li:hover {
        list-style-type: none;
        background-color: #ff615c !important;
    }

        #storesTxtBox_listbox li:hover a {
            text-decoration: none;
        }

.k-icon1 .k-i-search1 {
    border-radius: 15px;
}
