/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
    font-family: 'Roboto', sans-serif !important;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #10A37F;
    border-radius: 45px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    max-height: 45px;
    padding: 10px 30px;
    cursor: pointer;
    transition: background .2s ease-out;
}
.button:hover{
    background: #17c498;
}

body{
    background-color: #181B21;
    ;
}
header{
    margin-top: 20px;
}
.logo{
    display: flex;
    height: 5em;
    width: 5em;
    border-radius: 5px;
    background-image: url("../images/favicon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.places-counter{
    background-color: rgb(0, 0, 0, .5);
    border-radius: 50px;
    max-height: 45px;
    padding: 10px 20px;
}
.places-counter span{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;

}
.places-counter strong{
    
    margin: 0 10px;
    font-size: 35px;
    font-weight: 800;
    color:#10A37F;
    padding-bottom: 4px;
}
.title{
    color: #fff;
    font-size: 45px;
    line-height: 120%;
}
.payouts{
    background-color: #10A37F;
    border-radius: 0 10px 10px 10px;
}
.payouts-text{
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    padding: 10px;
    background: #1c2536;
    display: inline-block;
    border-radius: 10px 10px 0 0;
}
.info{
    border: 1px solid #10A37F;
    border-radius: 10px;
    padding: 15px;
    line-height: 110%;
    font-size: 24px;
}
.info p{
    color: #fff;
    opacity: .9;
    font-weight: 300;
}
.info strong{
    font-weight: 600;
}
.info video{
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.info-divider{
    height: 80%;
    width: 1px;
    background-color: #10A37F;
}
.calculator__body{
    border: 1px solid #10A37F;
    border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    padding: 2rem 0;
    
    /* margin: 0 2rem; */
}
.calculator__title{
    padding: 10px 20px;
    font-weight: 700;
    font-size: 24px;
}
.calculator__subtitle{
    font-size: 18px;
    margin: 0 30px 0 20px;
    font-weight: 400;
    margin-bottom: 10px;
    flex: 0 0 auto;
    color: #fff;
    line-height: 120%;
}
.green-underline {
    padding-bottom: 10px;
    position: relative;
}
.green-underline:after {
    
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 90%;
    height: 2px;
    background-color: #10A37F;
}
.calc_blocks{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: end;
    margin: 0 10px;
    margin-top: 20px;
    padding: 20px;
}

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

.contacts{
    color: #fff;
    background-color: #21252c;
}
.contacts p{
    letter-spacing: .8px;
    font-weight: lighter;
    line-height: 130%;
}
.map{
    max-height: 575px;
}
.map img{
    max-height: 575px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .calc_blocks{
        flex-direction: column;
        padding: 10px;
        align-items: center;
    }
}
.calculator__calcblock{
    flex: 1 0 auto;
    width: 150px;
    margin: 0 10px;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .calculator__calcblock{
        width: 100%;
    }
}
.calc__area{
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}
.calc__label{
    text-align: center;
    position: absolute;

    transition: 0.3s ease;
    font-size: 26px;
    pointer-events: none;
}
.calc__input{
    background-color: #0e0e11;
    text-align: center;
    border-radius: 12px;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #303838;
    outline: none;
    transition: 0.05s ease;
    font-weight: 700;
    color: #c0c0c0;
}
.calc__input input::before{
    content: '$';
}
.calc__input input{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.calc__input:focus{
    border-bottom: 1px solid #2d2e2e2c;
}
.calc__input:focus ~ .calc__label,
.calc__input:not(:placeholder-shown) ~ .calc__label{
    opacity: 0;
}
.calc__output{
    color: white;
    background-color: #10A37F;
}


.slider__container{
    margin: 0 auto;
    position: relative;
    width: 80%;

}
.slider__container p{
    margin: 0;
    padding: 0;
    width: 100%;
    color: #fff;
}
.slider__container ul{
    padding: 0;
    margin: 0 auto;
    font-family: inherit;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
}
form button{
    flex: 1 1 !important;
    width: 100% !important;
}
@media (max-width: 767px) {
    .title{
        font-size: 35px;
    }
    .info{
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .payouts{
        border-radius: 10px;
    }
}








.contact { margin-bottom: 45px; }
.contact__inner { border-radius: 16px; background: rgba(245, 245, 245, 0.05); backdrop-filter: blur(17.5px); display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; padding: 55px; }
@media (max-width: 1310px) {
  .contact__inner { padding-top: calc(47.9947px + 0.534759vw); }
}
@media (max-width: 1310px) {
  .contact__inner { padding-right: calc(-1.04278px + 4.27807vw); }
}
@media (max-width: 1310px) {
  .contact__inner { padding-bottom: calc(47.9947px + 0.534759vw); }
}
@media (max-width: 1310px) {
  .contact__inner { padding-left: calc(-1.04278px + 4.27807vw); }
}
.contact__title { color: rgb(255, 255, 255); text-align: center; font-weight: 700; line-height: 32px; margin: 0px auto 16px; font-size: 32px; max-width: 725px; }
@media (max-width: 1310px) {
  .contact__title { font-size: calc(20.7914px + 0.855615vw); }
}
@media (max-width: 1310px) {
  .contact__title { max-width: calc(24.4652px + 53.4759vw); }
}
.contact__text { color: rgb(255, 255, 255); text-align: center; margin: 0px auto 45px; max-width: 350px; font-size: 17px; line-height: 20px; }
@media (max-width: 1310px) {
  .contact__text { margin-bottom: calc(23.984px + 1.60428vw); }
}
@media (max-width: 1310px) {
  .contact__text { max-width: calc(237.914px + 8.55615vw); }
}
@media (max-width: 1310px) {
  .contact__text { font-size: calc(14.1979px + 0.213904vw); }
}
@media (max-width: 1310px) {
  .contact__text { line-height: calc(17.1979px + 0.213904vw); }
}
.contact__text br { display: none; }
.contact-form { max-width: 725px; width: 100%; }
.contact-form__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 25px; align-items: start;}
@media (max-width: 1310px) {
  .contact-form__inner { gap: calc(10.3957px + 0.427807vw); }
}
.contact-form__box { border-radius: 10px; border: 1px solid rgb(75, 80, 94); background: rgb(45, 47, 55); }
.contact-form__box-input { width: 100%; height: 100%; background: unset; padding: 18px 20px; color: rgb(255, 255, 255); font-size: 15px; line-height: 15px; }
@media (max-width: 1310px) {
  .contact-form__box-input { padding-top: calc(13.7968px + 0.320856vw); }
}
@media (max-width: 1310px) {
  .contact-form__box-input { padding-bottom: calc(13.7968px + 0.320856vw); }
}
.contact-form__box-input::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.4); font-size: 15px; line-height: 15px; }
.contact-form__box-input::placeholder { color: rgba(255, 255, 255, 0.4); font-size: 15px; line-height: 15px; }
.contact-form__checkboxes { width: 100%; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-align: start; align-items: flex-start; gap: 15px; margin-bottom: 35px; }
@media (max-width: 1310px) {
  .contact-form__checkboxes { margin-bottom: calc(20.9893px + 1.06952vw); }
}
.contact-form__checkboxes br { display: none; }
.contact-form__checkboxes .container { display: block; position: relative; padding-left: 30px; cursor: pointer; user-select: none; margin-left: unset; margin-right: unset; padding-right: unset; color: rgb(255, 255, 255); font-family: Inter, sans-serif; font-size: 15px; line-height: 23px; text-align: start;}
.contact-form__checkboxes .container a { text-decoration: underline; color: rgb(255, 255, 255); }
.contact-form__checkboxes .container a:hover { text-decoration: unset; }
.contact-form__checkboxes .container input { position: absolute; opacity: 0.1; cursor: pointer; height: 1px; width: 1px; left: 1%; top: 85%; }
.contact-form__checkboxes .checkmark { position: absolute; top: 2px; left: 0px; height: 18px; width: 18px; border-radius: 4px; border: 1px solid rgb(75, 80, 94); background: rgb(45, 47, 55); transition: border 0.3s ease 0s; }
.contact-form__checkboxes .container input:checked ~ .checkmark { border: 1px solid rgb(8, 180, 166); }
.contact-form__checkboxes .checkmark::after { content: ""; position: absolute; opacity: 0; transition: opacity 0.3s ease 0s; }
.contact-form__checkboxes .container input:checked ~ .checkmark::after { opacity: 1; }
.contact-form__checkboxes .container .checkmark::after { top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); width: 12px; height: 10px; background-repeat: no-repeat; background-size: contain; background-image: url("../images/tick-icon.png"); }
.contact-form__wrap { position: relative; border-radius: 100px; pointer-events: none;}
.contact-form__wrap::before { content: ""; width: 100%; height: 100%; position: absolute; inset: 0px; z-index: 1; opacity: 0;  pointer-events: none;}
.contact-form__button { max-width: 100%; transition: opacity 0.3s ease 0s; opacity: 0.4; }
/* .contact-form__button--mobile { display: none; } */
@media (max-width: 1100px) {
  .window__wrapper { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .window__wrapper { grid-template-columns: 1fr; }
  .window__img { order: -1; }
  .window__img { height: 325px; min-height: 325px; }
}
@media (max-width: 768px) and (max-width: 1310px) {
  .window__img { height: calc(128.85px + 14.9733vw); }
}
@media (max-width: 768px) and (max-width: 1310px) {
  .window__img { min-height: calc(128.85px + 14.9733vw); }
}
@media (max-width: 768px) {
  .window-form { max-width: 100%; }
}
@media (max-width: 768px) {
  .window-body { padding: 0px; }
}
@media (max-width: 768px) {
  .contact-form__inner { grid-template-columns: 1fr; }
}
@media (max-width: 550px) {
  .window__bottom { -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-align: start; align-items: flex-start; gap: 20px; }
  .window__wrapper { border-bottom: unset; padding-bottom: 0px; }
  .window-bottom__wrap { max-width: 100%; width: 100%; }
  .window-bottom__wrap-button { width: 100%; max-width: 100%; }
  .lines { display: none; }
  .window__img svg { display: none; }
  .contact__text br { display: block; }
  .contact-form__checkboxes br { display: block; }
  .contact-form__button { display: none; }
  .contact-form__button--mobile { display: flex; }
  .greating__inner::before { display: none; }
  .greating__line { z-index: 1; bottom: 260px; }
}
.iti { width: 100%; }
.iti input { width: 100%; height: 100%; background: unset; padding-right: 20px; color: rgb(255, 255, 255); font-size: 15px; line-height: 15px; padding-top: 18px; padding-bottom: 18px; padding-left: 115px !important; }
@media (max-width: 1310px) {
  .iti input { padding-top: calc(13.7968px + 0.320856vw); }
}
@media (max-width: 1310px) {
  .iti input { padding-bottom: calc(13.7968px + 0.320856vw); }
}
.iti input::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.4); font-size: 15px; line-height: 15px; }
.iti input::placeholder { color: rgba(255, 255, 255, 0.4); font-size: 15px; line-height: 15px; }
.iti .iti__flag { box-shadow: unset; border-radius: 2.5px; min-width: 20px; }
.iti .iti__arrow { width: 12px; height: 7px; border: unset; margin-left: unset; }
.iti .iti__arrow::before { content: ""; display: block; width: 12px; height: 7px; background-repeat: no-repeat; background-size: contain; background-image: url("../images/arrow.svg"); transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s; }
.iti .iti__flag-container { width: 100%; max-width: 100px; background: rgb(75, 80, 94); border-radius: 8px; }
.iti .iti__selected-flag { display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; gap: 8px; padding-left: 12px; padding-right: 12px; }
.iti .iti__selected-dial-code { margin-left: 0px; }
.iti .iti__selected-dial-code { font-size: 15px; line-height: 15px; color: rgb(255, 255, 255); }
.iti .iti__selected-flag { background: unset !important; }
.iti .iti__selected-flag:hover { background: unset !important; }
.iti .iti__country-list { border-radius: 10px; border: 1px solid rgb(75, 80, 94); background: rgb(45, 47, 55); }
.iti .iti__country-list::-webkit-scrollbar { width: 5px; }
.iti .iti__country-list::-webkit-scrollbar-track { background: rgb(45, 47, 55); }
.iti .iti__country-list::-webkit-scrollbar-thumb { background: rgb(75, 80, 94); }
.iti .iti__country-list::-webkit-scrollbar-thumb:hover { background: rgb(85, 85, 85); }
.iti .iti__country-name { color: rgb(255, 255, 255); font-size: 15px; line-height: 15px; }