@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/Montserrat-Medium.ttf');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Montserrat-SemiBold.ttf');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/Montserrat-ExtraBold.ttf');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Montserrat-Bold.ttf');
}


* {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
}

.hidden {
    display: none;
}

body {
    position: relative;
    height: 100vh;
}
.successmsg{
    display:none;
    color: green;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
    font-size: 15px;
}


.container {
    max-width: 1140px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.container_header{
    padding: 0 48px;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    position: relative;

    color: #ffff;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

.content {
    flex: 1 0 auto;
}

.content__wrapper{
    padding-top: 143px;
    padding-bottom: 80px;
    background-image: linear-gradient(#02291b, #06462f);
}

.grecaptcha-badge{
    display: none;
}

.noScroll {
    overflow: hidden;
}
.noScroll {
    overflow: hidden
}

.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 2;
    transition: opacity 1s;
    padding: 20px
}

.overlay.active {
    display: block
}
.modal {
    padding: 32px 24px;
    border-radius: 16px;
    background-color: #ffffff;
    max-width: 375px;
    width: calc(100% - 32px);
    height: auto;
    overflow: auto;
    position: absolute;
    z-index: 2;
    max-height: 100%;

    font-family: Montserrat, sans-serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
#modalSuccess{
    text-align: center;
}
#modalSuccessWA{
    text-align: center;

}
#modalSuccessWA .button {
    text-decoration: none;
    line-height: 1.5;
    margin-top: 24px;
    color: #fff;
    padding: 8px 32px;
    background-image: linear-gradient(to bottom, #57c265, #40ba57);
}

#modalSuccessWA .button img {
    margin-right: 8px;
}

.modal.active{
    display: block;
}
.modal__title{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.modal__text{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.modal__close {
    cursor: pointer;
    font-size: 48px;
    position: absolute;
    top: 30px;
    right: 20px;
    color: #303634;
    font-weight: 400;
    line-height: 0;
    transform: rotate(45deg);
    display: block;
}
.modal__icon{
    margin-bottom: 32px;
}
#modalJoin{
    padding: 32px;
    min-width: 766px;
}
#modalJoin .modal__title{
    margin-bottom: 16px;
}
#modalJoin .modal__close{
    top: 44px;
    right: 26px;
}
.modal__row{
    margin: 0 -8px 16px;
    display: flex;
    flex-wrap: wrap;
}
.modal__row .input-group{
    width: calc(50% - 16px);
    margin: 0 8px 16px;
}
.modal__wrapper{
    display: flex;
    justify-content: right;
}


.row{
    display: flex;
    align-items: center;
    position: relative;
}

.col{
    width: 50%;
}

.col-3{
    width: 30%;
}

.col-7{
    width: 70%;
}

p{
    margin: 0;
}

.title{
    margin-bottom: 24px;
    font-size: 46px;
    font-weight: 800;
}
.subtitle{
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.text{
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}
.justify-end{
    align-items: flex-end;
    display: flex;
    flex-direction: column;
}







.hero{
    background-image: url("images/wave.svg"), linear-gradient(#106d4c, #06442e);
    padding: 143px 0;
    height: 900px;
    display: flex;
    align-items: center;
    position: relative;

    background-size: initial;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.hero-hand{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 496px;
}

.pluses{
    margin: -200px -12px 80px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.pluses__item{
    border-radius: 16px;
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    padding: 0 24px 24px;
    width: 33.3333%;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 12px;
    text-align: center;
}
.pluses__item-icon{
    width: 102px;
    height: 102px;
    line-height: 0;
    margin: -42px auto 16px;
}
.pluses__item-icon img{
    height: 100%;
}

.info{
    margin-bottom: 80px;
}

.info__item{
    border-radius: 16px;
    background-color: #f6f6f6;
    padding: 24px 96px 24px 16px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #000;
    max-width: 440px;

    position: relative;
    margin-bottom: 32px;
}
.info__item:before{
    content: '';
    position: absolute;
    height: 32px;
    width: 2px;
    background-color: #33755e;
    bottom: -32px;
    left: 32px;
}
.info__item_last{
    color: #fff;
    background-image: linear-gradient(104deg, #149546, #1b8a61 100%);
}
.info__item_last::before {
    width: 0;
    height: 0;
}
.info__number{
    background-image: linear-gradient(to bottom, #ffde59, #ffce06);
    margin-right: 12px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
}
.info img{
    position: absolute;
    right: 16px;
    transform: translateY(-50%);
    top: 50%;
}
.info__img_1{
    width: 78px;
}
.info__img_2{
    width: 96px;
}
.info__img_3{
    width: 71px;
}

.epos{
    margin-bottom: 120px;
}
.epos-img__mobile{
    width: 515px;
    max-width: 98%;
}
.tabs{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.tabs__item{
    padding: 12px 32px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, .2);

    font-size: 20px;
    font-weight: 800;
    margin-right: 14px;
    cursor: pointer;
    transition: color .2s linear, background-color .2s linear;
}
.tabs__item_active{
    background-color: #ffce06;
    color: #000;
}
.tabs__item:last-child{
    margin-right: 0;
}

.epos__list{
    display: none;
}
.epos__list_mobile{
    display: block;
}
.epos__list-title{
    margin: 8px 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.75;
    color: #ffce06;
}
.epos ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.epos ul li{
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    display: flex;
    align-items: flex-start;
    padding-left: 22px;
}

.epos ul li:before {
    content: url("images/check.svg");
    display: inline-block;
    width: 14px;
    height: 16px;
    margin-top: 3px;
    margin-left: -22px;
    position: absolute;
}
.advantage{
    margin-bottom: 88px;
}
.advantage__info{
    padding: 48px;
    border-radius: 32px;
    background-image: linear-gradient(113deg, #222826, #08120e);
    margin-bottom: 64px;
    position: relative;
}
.advantage__info-title{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
    max-width: 340px;
}
.advantage__info-text{
    font-size: 14px;
    font-weight: 500;
    line-height: 2;

    max-width: 290px;
}
.advantage__logo{
    margin-bottom: 24px;
    height: 16px;
}
.advantage__frame{
    position: absolute;
    width: 862px;
    max-width: 78%;
    top: -16px;
    right: -100px;
}

.advantage__list{
    margin: 0 -24px 24px;
    display: flex;
    align-items: flex-start;
}
.advantage__item{
    width: 33.3333%;
    margin: 0 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;

    display: flex;
    flex-direction: column;
}
.advantage__item img{
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
.advantage__start-work{
    display: flex;
    align-items: center;
}
.advantage__line{
    height: 3px;
    border-radius: 8px;
    background-color: #33755e;
    flex-basis: 100%;
}
.contacts .row{
    align-items: flex-start;
}
.contacts__title{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}
.contacts__link{
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;

}
.contacts__link:last-of-type{
    margin-bottom: 0;
}
.contacts__link-title{
    font-weight: 700;
}
.contact__item{
    color: #ffce06;
    text-decoration: none;
}
.contacts__form{
    padding: 32px;
    border-radius: 32px;
    background-color: #fff;
}
.contacts__form-title{
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 64px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    color: #000;
    margin-bottom: 16px;
}
.contacts__form-icon{
    width: 64px;
    top: 50%;
    right: 0;
    position: absolute;
    padding: 8px;
    transform: translateY(-50%);
}
.input-group{
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.input-group-wrapper{
    width: 100%;
    display: flex;
    align-items: stretch;
    height: 56px;
    border-radius: 8px;
    border: solid 1px #dcdcdc;
    background-color: #ffffff;
    overflow: hidden;
}
.input-group label{
    display: block;
    position: absolute;
    left: 16px;
    top: 8px;
    font-family: Montserrat, sans-serif;
    color: #828282;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
    z-index: 1;
}
.input-group-wrapper__textarea{
    height: auto;
}
.input-group .select2{
    width: 100% !important;
}
.input-group .select2-container--default .select2-selection--single{
    height: 56px;
    border-radius: 8px;
    border: solid 1px #dcdcdc;
}
.input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    padding: 26px 16px 12px;
    font-family: Montserrat, sans-serif;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: transparent;
    height: 100%;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #303634;
    line-height: normal;
}
.input-group.has-error .select2-container--default .select2-selection--single{
     border: 1px solid #dc1d40;
}
.select2-results__option{
    font-family: Montserrat, sans-serif;
}
.select2-dropdown{
    border-color: #dcdcdc;
}
.select2-selection__placeholder {
    color: rgb(117, 117, 117) !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border: none;
    width: 11px;
    height: 14px;
    background-image: url(images/angle.svg);
    left: initial;
    right: 16px;
    top: 28px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    transform: rotateX(180deg);
}

.input-group.connection-way{
    width: 100%;
    margin: 0 8px 16px;
}

.textarea-wrapper{
    width: 100%;
    padding: 16px 16px 12px;
}
.textarea-wrapper textarea {
    resize: none;
    padding: 0;
}
.help {
    margin-bottom: 0;
    text-align: left;
    display: none;

    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
}
.input-group.has-error .help {
    display: block;
    color: #dc1d40;
    line-height: 14px;
    margin-top: 8px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 26px 16px 12px;
    font-family: Montserrat, sans-serif;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: transparent;
    height: 100%;
    border: none;

    font-size: 14px;
    font-weight: 700;
    color: #303634;
}
.contacts__form-wrapper{
    margin: 0 -8px 16px;
}
.contacts__form-wrapper .input-group{
    margin: 0 8px;
}
.input-group.has-error .input-group-wrapper {
    border: 1px solid #dc1d40;
}

.cookies p{
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 32px;
}
.cookies_p{
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 32px;
}








.header{
    padding: 48px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.header-logo{
    height: 25px;
}
.header-logo img{
    height: 100%;
    line-height: 0;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}








.button{
    cursor: pointer;
    font-size: 24px;
    font-weight: 800;
    color: #303634;
    padding: 18px 32px;
    border-radius: 32px;
    background-color: #ffce06;
    transition: background-color .2s linear;
    display: inline-flex;
    white-space: nowrap;
    text-decoration: none;
}

.input-group select{
   width: 100%;
    padding: 10px;
    padding: 26px 12px 12px;
    font-family: Montserrat, sans-serif;
    border-radius: 6px;
    border: solid 1px #dcdcdc;   
    
}    

/*
.button.disable{
    cursor: default;
    pointer-events: none;
    opacity: .6;
}
*/
.button:hover{
    background-color: #ffde59;
}

.button_small{
    padding: 12px 32px;
    font-size: 20px;
    border-radius: 24px;
}

.input-group__phone .select2{
    width: 136px !important;
    min-width: 80px;
}
.input-group__phone label {
    left: 112px;
}
.input-group__phone .select2-container--default .select2-selection--single{
    border: none;
    border-right: solid 1px #dcdcdc;
    border-radius: 0;
}










.footer{
    background-color: #042e1f;
    padding: 16px 0;
}

.footer p{
    font-size: 10px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo{
    display: inline-block;
    width: 165px;
    height: 17px;
    min-width: 165px;
    min-height: 17px;
    max-width: 165px;
    max-height: 17px;
    margin-right: 32px;
    background-image: url('images/logo.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 165px 17px;
}

.footer-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright{
    display: flex;
    align-items: center;
}
.footer-cookie{
    font-size: 14px;
    line-height: 1.14;
    color: #ffce06;
    text-decoration: none;
}
.hero-hand_mobile{
    display: none;
}

.lang {
    display: flex;
    flex-shrink: 0;
    border-radius: 24px;
    background-color: #2a7f60;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;


}
.lang-ico {
    margin-right: 6px;
    width: 19px;
    height: 14px;
}
.lang-name {
    margin-right: 4px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: Montserrat;
    line-height: 3.43;
    color: #fff;
    text-transform: uppercase;
}
.lang-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    border-radius: 8px;
    background-color: #fff;
    min-width: 100px;
    padding: 12px;
    margin-top: 10px;
}
.lang.active .lang-list {
    display: block;
}
.lang-list_item {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 0;
    color: #1e3948;
    text-decoration: none;
    transition: color .3s;
    line-height: 18px;
}
.lang-list_item:hover {
    color: #106d4c;
}
.header__wrapper{
    display: flex;
    align-items: center;
}
.header .button{
    margin-left: 16px;
}
.lang__arrow{
    background-image: url(images/angle-white.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 21px;
    background-size: contain;
    background-position: center;
    transition: all .3s;
}
.lang.active .lang__arrow {
    transform: rotate(180deg);
}
@media (max-width: 1000px){
    .header{
        padding: 48px 16px;
    }
    .header .button{
        display: none;
    }
    .hero-hand {
        left: 46%;
        width: 297px;
    }
    .advantage__frame {
        right: -157px;
    }
}

@media (max-width: 800px){
    .container{
        max-width: 450px;
    }
    .col {
        width: 100%;
    }
    .row{
        flex-direction: column;
    }
    .title {
        margin-bottom: 16px;
        font-size: 32px;
        text-transform: uppercase;
    }
    .subtitle {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.5;
    }
    .text{
        font-size: 14px;
        line-height: 1.71;
    }
    .button{
        width: 100%;
        justify-content: center;
        font-size: 20px;
        padding: 16px;
    }
    .button_small{
        padding: 12px 16px;
    }
    .content__wrapper {
        padding-top: 64px;
        padding-bottom: 48px;
    }


    .header{
        padding: 16px;
        align-items: center;
    }
    .header-logo{
        height: 16px;
    }
    .hero{
        padding: 64px 0 0;
        flex-direction: column;
        background-size: 100% auto;
    }
    .hero .title,
    .hero .subtitle{
        text-align: center;
    }
    .hero-hand_desktop{
        display: none;
    }
    .hero-hand_mobile{
        display: block;
    }
    .hero-hand {
        left: 50%;
        transform: translateX(-50%);
    }
    .pluses{
        flex-direction: column;
        margin: -124px 0 48px;
    }
    .pluses__item{
        width: 100%;
        margin: 0 auto 56px;
        max-width: 440px;
    }
    .justify-end{
        align-items: center;
    }
    .info__list{
        margin-top: 40px;
    }
    .info__number{
        position: absolute;
        top: -16px;
    }
    .info {
        margin-bottom: 48px;
    }
    .epos{
        margin-bottom: 48px;
    }
    .epos-img__mobile {
        width: 343px;
        max-width: 100%;
        margin: 0 auto 32px;
        display: block;
    }
    .epos__list-title {
        font-size: 14px;
    }
    .tabs__item{
        font-size: 16px;
        padding: 12px 24px;
        margin-right: 8px;
    }
    .advantage{
        margin-bottom: 0px;
    }
    .advantage__info{
        margin-bottom: 16px;
        padding: 0 24px 48px;
    }
    .advantage__frame{
        position: relative;
        right: initial;
        width: 100%;
        max-width: 100%;
        left: -24px;
    }
    .advantage__list{
        margin: 0 0 16px;
        flex-direction: column;
    }
    .advantage__item{
        width: 100%;
        margin: 0 0 16px;
    }
    .advantage__line{
        display: none;
    }
    .contacts__title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .contacts__link {
        font-size: 16px;
    }
    .contacts__form{
        padding:  40px 16px 32px;
        margin-top: 48px;
    }
    .contacts__form-title{
        padding: 0;
    }
    .contacts__form-wrapper {
        margin: 0;
    }
    .contacts__form-wrapper .input-group{
        margin: 0 0 16px;
    }
    .contacts__form-icon{
        position: absolute;
        top: -40px;
        left: 0;
    }
    .footer {
        padding: 16px 0 24px;
    }
    .footer-wrapper,
    .footer-copyright{
        flex-direction: column;
    }
    .footer-copyright{
        margin-bottom: 16px;
    }
    .footer-logo{
        margin-right: 0;
        margin-bottom: 16px;
    }

    .modal {
        transform: translate(-52%, -50%);
    }
    #modalJoin {
        padding: 32px 16px;
        min-width: auto;
        height: calc(100% - 32px);
    }
    .modal__row{
        margin: 0 0 16px;
    }
    .modal__row .input-group{
        margin: 0 0 16px;
        width: 100%;
    }
    #modalJoin .modal__close {
        top: 44px;
        right: 16px;
    }
}



.mainwrapper{
   
	
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #00000075;
    border-radius: 5px;
    padding: 20px;
     display: none;
    z-index: 222;
}  
.upperpopup{
	width:450px;
	margin:auto;
	
}
.popup{
	
	background:#fff;
	border-radius:25px;
	padding:20px;
	position:absolute;	
	padding:20px;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Montserrat, sans-serif
}
.popup i{
	float:right;
	font-size:30px;
	cursor:pointer;
}
.image{
	width:80px;
	margin:30px auto;
}
.image img{
	width:100%;
}
.text-center{
	text-align:center;
}
.popup p{
	font-weight:400;
}

@media only screen and (max-width : 500px){
	.mainwrapper{
		padding:20px;
	}
	.upperpopup{
		width:100%;
	
	}
	.popup{
	
width:88%;
}
.upperpopup h1{
    font-size:18px;
}


	
	
}