@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
	margin: 0;
	padding: 0;
	font-family: 'Inter', "Noto Sans", Geneva, Arial, Helvetica, sans-serif;
}
html, body{
    width: 100%;
    min-height: 480px;
    min-width: 320px;
    position: relative;
}


.header{
    width: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 9999;
    top:0;
	border-bottom:1px solid #eeeeee;
}
.header_case{
    margin: 0 auto;
    max-width: 1260px;
    height: 60px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0;
}
.header_left {
	height:100%;
	display: flex;
	flex-grow: 1;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.header_right {
	height:100%;
	display: flex;
	/* flex-grow: 1; */
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: nowrap;
	align-items: center;
}
.header_logo{
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}
.header_city{
    display: flex;
    height: 100%;
    align-items: center;
    margin-left: 40px;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
}
.header_city:hover{
    text-decoration: underline;
}
.header_city::before{
    display: inline-flex;
    content: '';
    background-image: url(/img/location.svg);
    background-size: cover;
    height: 15px;
    width: 15px;
    background-repeat: no-repeat;
    margin-right: 1px;
    top: -1px;
    position: relative;
}
.header_logo_link{
    display: block;
}
.header_link{
    font-size: 16px;
    margin-left: 30px;
    cursor: pointer;
    color: #333333;
    text-decoration: none;
}
.header_link:hover{
    text-decoration: underline;
}

.user_icon{
    position: relative;
    padding-left: 30px;
    border: 1px solid #cccccc;
    padding: 5px 12px;
    border-radius:50px ;
    text-decoration: none !important;
    transition: all .2s
}
.user_icon:hover{
    background: #0D99FF;
    border-color: #0D99FF;
    color: #ffffff;
}
/* .user_icon:before {
	display: inline-flex;
    content: '';
    background-image: url(/img/cloud_blue.svg);
    background-size: cover;
    height: 26px;
    width: 26px;
    position: absolute;
    top: -5px;
    left: 0;
    background-repeat: no-repeat;
} */
.menu_button{
	cursor: pointer;
    color: #ffffff;
    right: 0;
    padding: 0;
    line-height: 60px;
    position: absolute;
    height: 60px;
    width: 60px;
    text-align: center;
	display:none;
    background: #ffffff;
}
.menu_icon:before {
	display: inline-flex;
    content: '';
    background-image: url(/img/menu_black.svg);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    position: relative;
    top: 10px;
    background-repeat: no-repeat;
}


.link_as_text a{
    color: inherit;
    text-decoration: none;
}
.link_as_text a:hover{
    text-decoration: underline;
}

.banner{
    width: 100%;
    padding-top: 60px;
    background-size: cover;
    background-repeat: no-repeat;
	background-position-x: center;
    background-position-y: center;
}
.banner_case{
    padding-top: 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 230px;
}

.banner_title{
        font-size: 52px;
    color: #0f0f0f;
    margin-bottom: 15px;
    line-height: 1.23;
    font-weight: block;
    letter-spacing: -0.028em;
    font-weight: 600;
    text-wrap: balance;
    overflow-wrap: break-word;
}
.banner_button{
    width: 230px;
    height: 50px;
    line-height: 50px;
    background: #0D99FF;
    font-size: 22px;
    color: #ffffff;
    border-radius: 3px;
    border: 0;
    margin-top: 50px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all .2s;
}



.banner_button:hover{
    background: #0c90f0;
}
.banner_message{
    font-size: 18px;
    color: #333333;
    padding: 10px;
}

.padding_150{
    padding-top: 150px;
    padding-bottom: 150px;
}
.margin_top_100{
    margin-top: 100px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 24px;
}
.block{
    width: 100%;
    padding: 160px 0;
    border-top: 1px solid #e5e7eb;
}
.block_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0;
}
.block_left{
    width: 50%;
    text-align: left;
    padding-right: 65px;
    box-sizing: border-box;
}
.block_right{
    width: 50%;
    text-align: left;
    padding-left: 15px;
    box-sizing: border-box;
}
.block_image{
    /* box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2); */
    width: 100%;
   /*  border-radius: 3px; */
    border: 1px solid #333333;
    box-shadow: 8px 8px 0 #333333;
}
.block_scroll{
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    width: 100%;
    border-radius: 3px;
    max-height: 380px;
    overflow: hidden;
}
.block_scroll_image{
	width: 100%;
	position: relative;
	animation-name: page;
	animation-duration: 20s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes page {
  0%   {top:0px;}
  100% {top:-1300px;}
}
.block_scroll_image_2{
	width: 100%;
	position: relative;
	animation-name: page2;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes page2 {
  0%   {top:0px;}
  100% {top:-350px;}
}
.block_checkmark{
	font-weight: bold;
	color:#26c281;
}

.block_video{
    /* box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2); */
    width: 100%;
   /*  border-radius: 3px; */
    border: 1px solid #333333;
    box-shadow: 8px 8px 0 #333333;
}
.block_title{
    font-size: 52px;
    color: #0f0f0f;
    margin-bottom: 15px;
    line-height: 1.23;
    text-align: left;
    font-weight: block;
    line-height: 1.05;
    letter-spacing: -0.028em;
    font-weight: 600;
    text-wrap: balance;
    overflow-wrap: break-word;
}
.block_text{
    font-size: 17px;
    color: #333333;
    line-height: 1.55;
    text-align: left;
}
.block_сomment{
    color: #888888;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
}
.block_order_1{
    order: 1;
}
.block_order_2{
    order: 2;
}
.button_link{
    font-size: 20px;
    padding: 16px 10px;
    border: 1px solid #0D99FF;
    border-radius: 50px;
    text-decoration: none;
    color: #0D99FF;
    display: block;
    max-width: 250px;
    margin-top: 20px;
    text-align: center;
    min-width: 200px;
    display: inline-block;
    transition: all .2s;
    box-sizing: border-box;

    cursor: pointer;
}
.button_link_active{
    background: #0D99FF;
    color: #ffffff;
}

.button_link:hover{
    border: 1px solid #0c90f0;
    background: #0c90f0;
    color: #ffffff;
}


.blink{
        display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #0f0f0f;
    border-bottom: 1px solid #0f0f0f;
    padding-bottom: 2px;
    transition: gap .18s ease;
    text-decoration: none;
}
.blink:hover{
    gap: 14px;
}


.content_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0;
}

.community_case{
    padding-top:50px;
    padding-bottom: 50px;
}
.community_title{
    font-size: 26px;
    width: 100%;
    margin-bottom: 15px;
    font-weight: 400;
}
.community_link{
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #eeeeee;
    padding: 6px 15px;
    border-radius: 6px;
    color: #333333;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.community_link:hover{
    border-color: #cccccc;
    background-color: #f7f7f7;
}



.pagination{
	margin-bottom: 50px;
	font-size:0;
}
.pagination_num{
	display: inline-block;
    width: 40px;
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 3px;
    font-size: 18px;
    line-height: 40px;
    margin: 15px 5px;
	margin-left:0;
	color:#333;
}
.pagination_link{
	display: block;
    text-decoration: none;
	font-size: 16px;
	color:inherit;
	text-align: center;
}
.pagination_next{
	display: inline-block;
	font-size: 16px;
	color:#0D99FF;
	text-decoration: none;
}
.pagination_next:hover{
	text-decoration: underline;
}
.pagination_dots{
	display: inline-block;
	width: 40px;
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	text-align: center;
	margin: 5px;
	margin-left:0;
}
.pagination_check{
	border: 1px solid #0D99FF;
    color: #0D99FF;
	display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    font-size: 18px;
    line-height: 40px;
	margin: 5px;
	margin-left:0;
}




.points{
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
.points_case{
    margin: 0 auto;
    max-width: 1260px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0;
    max-width: 800px;
    flex-direction: column;
}

.points_text{
    font-size: 18px;
    color: #333333;
    line-height: 1.55;
    text-align: left;
    padding: 15px;
    position: relative;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}

.points_block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.points_img{
    width: 300px;
    height: 300px;
}
.points_block_img{
    display: flex;
}
.points_block_text{
    max-width: 400px;
    display: flex;
}
.points_arrow{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -15px;
    margin-bottom: -25px;
    background-image: url(/img/arrow_forward.svg);
    background-size: 30px 50px;
    background-repeat: no-repeat;
    height: 50px;
    width: 30px;
    transform: rotate(90deg);
}


.quote_margin_100{
    padding-top: 100px;
    padding-bottom: 30px;
}
.quote_padding_100{
    padding-top: 150px;
    padding-bottom: 150px;
}
.quote{
    width: 100%;
}
.quote_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    font-size: 0;
    text-align: center;
}
.quote_title{
    font-size: 36px;
    color: #333333;
    padding-bottom: 15px;
    line-height: 1.23;
    max-width: 800px;
    margin: 0 auto;
    font-weight: bold;
}
.quote_title_2{
    font-size: 36px;
    color: #333333;
    padding-bottom: 15px;
    line-height: 1.23;
    margin: 0 auto;
    font-weight: bold;
}
.quote_text{
    font-size: 16px;
    color: #333333;
    line-height: 1.55;
    max-width: 567px;
    margin: 0 auto;
}
.quote_ul{
    font-size: 22px;
    color: #333333;
    line-height: 1.55;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}
.quote_li{
    padding-left: 41px;
    position: relative;
    margin: 10px;
}
.quote_li:before{
    content: '';
    background-image: url(/img/done_green.svg);
    background-size: cover;
    height: 36px;
    width: 36px;
    position: absolute;
    top: -3px;
    left: 0;
    background-repeat: no-repeat;
}
.quote_comment{
    font-size: 22px;
    color: #888888;
    margin-top: 15px;
    margin-bottom: 15px;
}




.three{
    width: 100%;
}
.three_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: stretch;
}
.three_card{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    border-radius: 3px;
    margin-bottom: 30px;
}
.three_title{
    font-size: 22px;
    text-align: center;
    padding: 15px 0;
    width: 100%;
}
.three_text{
    padding: 15px;
    font-size: 18px;
    flex-grow: 2;
    line-height: 1.55;
    width: 100%;
}
.three_img{
    width: 50px;
    height: 50px;
}
.three_image_case{
    padding: 15px 0;
}
.three_block{
	text-align: center;
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 10px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 160px;
	width:100%;
}
.three_block_case{

}
.three_block_title{
	font-size: 18px;
    font-weight: bold;
	color:#0c90f0;
}
.three_block_img{
	width:300px;
	height:236px;
}
.three_block_text{
	padding: 15px;
	font-size: 18px;
}


.price{
    width: 100%;
    margin-bottom: 100px;
}
.price_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    font-size: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: stretch;
    /* overflow: hidden; */
}
.price_card{
   /*  width: 30%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #333333;
    box-sizing: border-box;
    /* border-radius: 3px; */
       position: relative;
    padding: 15px 15px;
        flex: 1;
}
.price_no_right{
    border-right: 0;
}
.price_no_left{
    border-left: 0;
}
.price_title{
    font-size: 22px;
    text-align: left;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}
.price_text{
    padding: 15px 0;
    font-size: 16px;
    flex-grow: 2;
    width: 100%;
}
.price_text p{
    padding: 15px;
}
.price_ul{
    font-size: 16px;
    color: #333333;
    line-height: 1.2;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}
.price_li{
    padding-left: 25px;
    position: relative;
    margin: 15px;
}
.price_li:before{
    content: '';
    background-image: url(/img/done_green.svg);
    background-size: cover;
    height: 22px;
    width: 22px;
    position: absolute;
    top: -2px;
    left: 0;
    background-repeat: no-repeat;
}
.price_li_ul{
    font-size: 16px;
    color: #333333;
    line-height: 1.2;
    text-align: left;
    margin: 0 auto;
    padding: 0 15px;
}
.price_li_ul li{
    margin: 5px 15px 5px 52px;
}
.price_sum{
    padding: 15px 0;
    width: 100%;
    font-size: 22px;
    text-align: center;
    font-weight: 300;
    min-height: 25px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.price_button_case{
    padding: 15px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.price_button{
    font-size: 18px;
    border: 0;
    border-radius:50px;
    height: 50px;
    width: 100%;
    cursor: pointer;

    background: #ffffff;
    border: 1px solid #0c90f0;
    color: #0c90f0;

}
.price_button_link{
    font-size: 18px;
    height: 50px;
    text-decoration: none;
    border-radius:50px;
    color: #ffffff;
    display: block;
    width: 100%;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    margin-right: 20px;
    cursor: pointer;
    line-height: 50px;
}

.price_toggle{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 600px;
    margin: 0 auto; 
}

.price_toggle_button{
    font-size: 20px;
    height: 50px;
    text-decoration: none;
    color: #888888;
    width: 100%;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    border-bottom: 3px solid #cccccc;
    line-height: 50px;
    
}
.price_toggle_button_active{
    color: #333333;
    border-color: #333333;
}



.footer{
	width: 100%;
    font-size: 0;
    padding-bottom: 50px;
	background: #0f0f0f;
}
.footer_case{
    padding: 100px 15px;
    max-width:1260px;
    margin:0 auto;
}
.footer_column{
	vertical-align: top;
	font-size:14px;
	width:25%;
	display:inline-block;
    box-sizing: border-box;
}
.footer_column:not(:first-child){
    padding-left: 30px;
}
.footer_title{
	font-weight: 700;
	margin-bottom: 25px;
    color: #fff;
}
.footer_link{
	margin-bottom: 15px;
}
.footer_href{
	text-decoration:none;
    color: #888888;
}
.footer_info{
	color:#888888;
}
.footer_href:hover{
	text-decoration:underline;
    color: #ffffff;
}



.lang_case{
    font-size: 14px;
    background: #ffffff;
    width: max-content;
    border: 1px solid #cccccc;
    border-radius: 3px;
    display: flex;
    position: relative;
    width: 120px;
    height: 30px;
    line-height: 30px;
    text-indent: 5px;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}
.lang_case:hover{
    border: 1px solid #333333;
}
.lang_window{
    z-index: 9999999; 
    display:none;   
    position: fixed;
    width: 100%;
    max-width: 680px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 6px;box-sizing: border-box;
}
.lang_title{
    font-size: 18px;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
}
.lang_case:before {
	display: inline-flex;
    content: '';
    background-image: url(/img/language.svg);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    position: relative;
    top: 4px;
    left: 3px;
    background-repeat: no-repeat;
}
.lang{
    outline: 0;
    box-sizing: border-box;
    font-size: 15px;
    cursor: pointer;
    color: #333333;
    display: inline-block;
    height: 30px;
    text-align: center;
    text-decoration: none;
    border: 0;
    border-radius: 3px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
}
.lang_btn{
    display: flex;
    border: 1px solid #ffffff;
    background: #ffffff;
    padding: 15px 10px;
    min-width: 150px;
    margin: 10px;
    border-radius: 6px;
    font-size: 14px;
    margin-left: 0;
    cursor: pointer;
    order:1;
}
.lang_select{
    border: 1px solid #0c90f0;
    order:0;
}
.lang_btn:hover{
    background: #eeeeee;
}
.lang_overlay{
    position: fixed;
    background: #333333;
    width: 100%;
    height: 100%;
    top: 0;
	display:none;
	z-index:999999;
    animation: ovrl 0.3s forwards;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
}
.lang_btns{
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: auto;
    height: 400px;
    align-content: flex-start;
}


.auth {
	z-index: 99999;
	display:none;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    position: fixed;
    top: 60px;
    left: 50%;
    margin-left: -200px;
    padding: 30px 40px 40px 40px;
    box-sizing: border-box;
    animation: ani 0.5s forwards;
    opacity: 0;
    border-radius:3px;
}
.show{
    display: block !important;
}
@keyframes ani {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.auth_title {
    color: #333333;
    font-size: 22px;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    line-height: 1.35;
    font-weight: 500;
    background-position: center center;
    margin-top: 10px;
}
.auth_welcome{
    color: #333333;
    font-size: 26px;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    line-height: 1.35;
    font-weight: 500;
    background-position: center center;
    margin-bottom: 20px;
 
}
.auth_label {
    color: #333333;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.55;
    font-weight: 300;
    font-family: Geneva, Arial, Helvetica, sans-serif;
}
.auth_input {
    color: #333333;
    border: 1px solid #0D99FF;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 45px;
    display: inline-block;
    width: 100%;
    line-height: 1.33;
    padding: 0 20px;
    box-sizing: border-box;
    border-radius:3px;
    outline: 0;
}
.auth_message {
    font-size: 16px;
    line-height: 1.55;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: red;
    text-align: center;
    margin-top: 10px;
}
.auth_button {
    margin-top: 20px;
    width: 100%;
    color: #fff;
    background-color: #0D99FF;
    font-weight: 600;
    font-size: 18px;
    border-radius:3px;
    height: 50px;
    padding: 0 15px;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    text-align: center;
    border: 0 none;
    white-space: nowrap;
    background-image: none;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
	width:100%;
	position: relative;
	transition: all 0.2s;
}
.auth_button_loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: button-loading-spinner 1s ease infinite;
}
.auth_button_loading .auth_button_text {
	visibility: hidden;
	opacity: 0;
}
@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
.auth_link {
    color: #0D99FF;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    font-family: Geneva, Arial, Helvetica, sans-serif;
	cursor:pointer;
}
.auth_recovery{
    max-width: 400px;
    margin: 60px auto;
    text-align: center;
    background: #ffffff;
    padding: 30px 40px 40px 40px;
    box-sizing: border-box;
    border-radius: 3px;
}
.auth_login, .auth_sign{
	display:none;
	min-width:320px;
}
.auth_menu{
	display: inline-block;
    font-size: 0;
}
.auth_line{
    border-top: 2px solid #eeeeee;
    margin-bottom: 20px;
    margin-top: 20px;
}
.auth_google{
    border: 1px solid #0D99FF;
    width: 100%;
    display: flex;
    height: 50px;
    line-height: 50px;
    color: #0D99FF;
    text-decoration: none;
    border-radius: 3px;
    position: relative;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
.auth_google::before{
    display: inline-flex;
    content: '';
    background-image: url(/img/google.svg);
    background-size: cover;
    height: 30px;
    width: 30px;
    position: relative;
    left: -5px;
    background-repeat: no-repeat;
}

.overlay{
	position: fixed;
    background: #333333;
    width: 100%;
    height: 100%;
    top: 0;
	display:none;
	z-index:9999;
    animation: ovrl 0.3s forwards;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
}

.menu_overlay{
	position: fixed;
    background: #333333;
    width: 100%;
    height: 100%;
    top: 0;
	display:none;
	z-index:9;
    animation: ovrl 0.3s forwards;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
}

@keyframes ovrl {
    0% {opacity: 0;}
    100% {opacity: 1;}
}




.card_block{
    width: 100%;
    padding-bottom: 20px;
    margin-top: 50px;
}
.card_case{
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0;
}
.card{
	font-size: 0;
  text-align: center;
  border: 1px solid transparent;
  display: inline-block;
  width: 30%;
  box-sizing: border-box;
  transition: all .2s;
  margin-right: 5%;
  margin-bottom: 5vw;
		/*box-shadow: 0 0 20px 0px rgba(34, 60, 80, 0.2);*/
}
.card:hover{
	border: 1px solid #0D99FF;
}
.card:nth-child(3n+3) {
    margin-right: 0;
}
.card_image_case{
	/*background: #ffffff;*/
}
.card_image{
	width:100%;
	display: block;
}
.card_href{
	display: flex;
    text-decoration: none;
    flex-direction: column;
}
.card_info{
	font-size: 16px;
  color: #333333;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 49px;
  margin: 10px 5px;
  line-height: 1.55;
}


body:lang(ar) .block_case{
	direction: rtl;
	text-align: right;
}

body:lang(ar) .block_title {
	direction: rtl;
	text-align: right;
}

body:lang(ar) .block_text {
	direction: rtl;
	text-align: right;
	font-size: 24px;
}

body:lang(ar) .block_сomment {
	direction: rtl;
	text-align: right;
	font-size: 24px
}

body:lang(ar) .footer_link {
	direction: rtl;
	text-align: right;
	font-size: 16px;
}

body:lang(ar) .lang_case:before {
	left: 0;
}

body:lang(ar) .footer_title {
	direction: rtl;
	text-align: right;
}

body:lang(ar) .block_left {
	direction: rtl;
	text-align: right;
	padding-left: 65px;
	padding-right: 0;
}
body:lang(ar) .block_right {
	padding-right: 15px;
	padding-right: 0;
	text-align: right;
}
body:lang(ar) .lang_btn {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .lang_title {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .header_case {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .header_city {
	margin-left: 0;
	margin-right: 40px;
}
body:lang(ar) .menu_button {
	right: auto;
	left: 0;
}
body:lang(ar) .banner_message {
	font-size: 24px
}

body:lang(ar) .banner_title {
	direction: rtl;
}
body:lang(ar) .header_link {
	direction: rtl;
	font-size: 18px;
}
body:lang(ar) .quote_title {
	direction: rtl;
}
body:lang(ar) .three_block {
	direction: rtl;
}
body:lang(ar) .points_text {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .three_card {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .three_text {
	font-size: 20px;
}

body:lang(ar) .price_li {
	direction: rtl;
	text-align: right;
}


body:lang(ar) .auth_label {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .auth_input {
	direction: rtl;
	text-align: right;
}
body:lang(ar) .quote_title_2 {
	direction: rtl;
}


@media screen and (max-width: 768px) {
	.header_right{
		height: initial;
		display: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 60px;
		z-index:  999999;
        background: rgba(255,255,255,.95);
	}
    .auth{
        height: 100%;
        top: 0;
        width: 100%;
        max-width:100%;
        margin-left: 0;
        left: 0;
        border-radius: 0;
    }
    .auth_login, .auth_sign{
        min-width: 220px;
    }
    .auth_menu{
		display:block;
	}
    .header_link{
        min-width: 50px;
        width: 100%;
        margin: 0;
        display: inline-block;
        text-align: center;
        line-height: 50px;
        box-sizing: border-box;
	}
    .user_icon{
        background: #eeeeee;
        border:0;
        border-radius: 0;
    }
	.menu_button{
		display:block;
	}
	.padding_150{
		padding-top:70px;
		padding-left: 15px;
		padding-right: 15px;
	}
    .banner_title{
        font-size: 32px;
    }
 /*    .banner{
        height: 474px;
    } */
    .banner_button{
        font-size: 20px;
    }

    .button_link{
        max-width: 100%;
        width: 100%;
		margin-right:0;
    }
	.block {
		padding-top: 100px;
        padding-bottom: 50px;
	}
	.block_margin_top{
		margin-top: 40px;	
	}
    .block_case{
        flex-direction: column;
    }
    .block_title{
        text-align: left;
        font-size: 34px;
		margin-bottom:30px;
    }
    .block_left{
        width: 100%;
        padding-right:0;
		margin-bottom:50px;
    }
    .block_right{
        width: 100%;
        padding-left: 0;
		margin-bottom:50px;
    }
    .block_order_1{
        order: 2;
        
    }
    .block_order_2{
        order: 1;   
    }
	.block_сomment{
		margin-bottom:30px;
	}


    .footer_column{
		display: inline-block;
		width: 50%;
		box-sizing: border-box;
        margin-bottom: 15px;
	}
    .footer_column:not(:first-child){
        padding-left: 0;
    }
    .price_case{
        flex-direction: column;
    }
    .price_card{
        width: 100%;
        margin-top:30px;
        margin-bottom:30px;
    }
    .price_no_right{
        border-right: 1px solid #333333;
    }
    .price_no_left{
        border-left: 1px solid #333333;
    }
    .three_case{
        flex-direction: column;
    }
    .three_card{
        width: 100%;
        margin-bottom: 15px;
    }

    .block_scroll{
        max-height: 250px;
    }
    .demo_link{
        max-width:100%;
    }

	.quote_title{
		font-size:32px;
	}
	.quote_title_2{
		font-size:32px;
	}

    .card {
        width: 48%;
        margin-right: 4%;
    }
    .card:nth-child(2n+2) {
        margin-right: 0;
    }
    .card:nth-child(3n+3){
        margin-right: auto;
    }
    .card_case{
        justify-content: center;
    }
    
 
	.points_arrow{
        margin-bottom: -50px;
    }
    .points_block{
        flex-direction: column;
        margin-bottom: 50px;
    }

    .points_order .points_block_img{
        order: 2;
    }

    .points_order .points_block_text{
        order: 1;
    }
	.points_block_text{
		margin-bottom: 10px;
	}
	
	body:lang(ar) .block_left {
		padding-left: 0;
	}
	
}