/*-------------------reset----------------------*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p,
a, em, img, small, strike, sub, sup,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, table, caption, tr, th, td,
article, figure, figcaption, footer, header,
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------reset end----------------------*/

/*-------------------global presets end----------------------*/
*,html {
    scroll-behavior: smooth!important;
}

:root {
    --main-dark-color: #165158;
    /* --main-basic-color: #0E96AE; */
    --main-basic-color: #69BEAE;
    --main-basic-color-hover: #4BA090;
    --main-btn-color: #F17053;
    --main-btn-color-hover: #D35235;
    --light-green: #EBF2F0;
    --yellow: #F1B56D;
    --text-basic: #48838A;
    --text-color: #0E3236;
    --text-gray: #f0f0f0;
    /* --text-gray: color: rgba(0, 0, 0, 0.3); */
}

body, button, input, textarea, select {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
}
.no_scroll {
    overflow: hidden;
}
.warning_label {
    display: none;
}

button, input, textarea {
    outline: none;
    border: none;
    min-height: 44px;
    border-radius: 5px;
}
input {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--text-basic);
    width: 100%;
}
textarea {
    min-height: 100px;
    padding: 8px 16px;
    border: 1px solid var(--text-basic);
    width: 100%;
}
button {
    cursor: pointer;
}
input::placeholder, 
textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
select {
    outline: none;
    display: block;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--text-basic);
    border-radius: 5px;
    /* appearance: none; */
    
}
select option {
    padding: 5px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.visa_form select {
    width: 100%;
    max-width: 540px;
}


#breadcrumbs a {
    color: gray;
    line-height: 1.2;
}
#breadcrumbs a:hover {
    text-decoration: none;
}
.breadcrumb_last {
    font-size: 13px;
    font-weight: 300;
    color: gray;
    line-height: 1.2;
}



.wrap {
    width:100%;
    max-width:1440px;
    margin-left:auto;
    margin-right:auto;
    padding: 0 16px;
}
@media only screen and (min-width:768px) {
    .wrap {
        padding: 0 32px;
    }
}
@media only screen and (min-width:1100px) {
    .wrap {
        padding: 0 48px;
    }
}


h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--main-dark-color);
}
@media only screen and (min-width:768px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: 20px;
    font-weight: 600;
}
@media only screen and (min-width:768px) {
    h3 {
        font-size: 30px;
    }
}


.btn_form {
    display: inline-flex;
    align-items: center;
    outline: none;
    /* border: 1px solid var(--main-btn-color); */
    border-radius: 5px;
    min-height: 44px;
    padding: 0 24px;
    background: var(--main-btn-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}
.btn_form:hover {
    background: var(--main-btn-color-hover);
}
.btn_form_visa {
    display: inline-flex;
    align-items: center;
    outline: none;
    /* border: 1px solid var(--main-btn-color); */
    border-radius: 5px;
    min-height: 44px;
    padding: 0 24px;
    background: var(--main-basic-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.btn_form_visa:hover {
    background: var(--main-basic-color-hover);
}
.btn_form_visa_secondary {
    display: inline-flex;
    align-items: center;
    outline: none;
    border: 1px solid var(--main-basic-color);
    border-radius: 5px;
    min-height: 44px;
    padding: 0 24px;
    background: white;
    color: var(--main-basic-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.btn_form_visa_secondary:hover {
    background: var(--light-green);
}

.btn_lite {
    display: inline-flex;
    align-items: center;
    outline: none;
    border: 1px solid white;
    border-radius: 5px;
    min-height: 44px;
    padding: 0 24px;
    /* background: white; */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.btn_lite:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn_form_secondary {
    display: inline-flex;
    align-items: center;
    outline: none;
    /* border: 1px solid var(--main-btn-color); */
    border-radius: 5px;
    min-height: 44px;
    padding: 0 24px;
    background: white;
    color: var(--main-btn-color);
    /* border: 1px solid var(--main-btn-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    /* text-decoration: none; */
}
.btn_form_secondary:hover {
    text-decoration: none;
}


.btn_second {
    display: inline-flex;
    align-items: center;
    outline: none;
    border: 1px solid var(--main-basic-color);
    border-radius: 5px;
    min-height: 44px;
    padding: 0 16px;
    background: white;
}
.btn_red:hover {
    /* opacity: 0.95; */
    /* box-shadow: 7px 7px 10px rgb(60, 60, 60); */
    /* box-shadow: 10px 10px 15px #1A191E; */
    /* box-shadow: 7px 7px 15px rgba(26,25,30,0.4); */
}
@media only screen and (min-width:768px) {
    /* .btn_red {
        font-size: 22px;
        padding: 15px 40px;
    } */
}

.block_page_back_btn {
    padding: 30px 0 10px;
    width: 100%;
    max-width: 1082px;
    margin: 0 auto;
    /* display: flex; */
}
.block_page_back_btn .page_back_btn {
    display: inline-flex;
    align-items: center;
    outline: none;
    border-radius: 5px;
    min-height: 44px;
    padding: 0 16px;
    transition: 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--main-dark-color);
}
.block_page_back_btn .page_back_btn:hover {
    border: 1px solid var(--main-basic-color);
    background: white;
}
.block_page_back_btn .page_back_btn img {
    width: 14px;
    transform: rotate(90deg);
    margin-right: 14px;
}
@media only screen and (min-width:768px) {
    .block_page_back_btn {
        padding: 0 0 16px;
    }
}


fieldset {
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
fieldset .form_item > .message {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: var(--text-basic);
    line-height: 1.3;
    opacity: 0.5;
}
fieldset .form_item label {
    display: flex;
    flex-direction: column;
}
fieldset .form_item p.capt {
    display: block;
    color: var(--text-basic);
    color: #5C979E;
    line-height: 1.3;
    margin-bottom: 10px;
}
fieldset .form_item label > p span,
fieldset .form_item > p.capt > span {
    color: var(--main-btn-color);
}

fieldset .form_item .form_radio_group {
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid var(--text-basic);
    border-radius: 5px;
    overflow: hidden;
}
fieldset .form_item .form_radio_group input[type="radio"] {
    display: none;
}
fieldset .form_item .form_radio_group label {
    display: inline-block;
}
fieldset .form_item .form_radio_group label p {
    margin-bottom: 0;
    padding: 8px 16px;
    border-right: 1px solid var(--text-basic);
    cursor: pointer;
}
fieldset .form_item .form_radio_group label:last-child p {
    border-right: none;
}
fieldset .form_item .form_radio_group input[type="radio"]:checked + p {
	background: var(--main-basic-color);
    color: white;
}
fieldset .form_item .form_radio_group input[type="radio"]:disabled + p {
	background: var(--text-gray);
}
fieldset .form_item .form_radio_group label:hover p {
	color: var(--main-basic-color);
}
fieldset .form_item .form_radio_group label:hover input[type="radio"]:disabled + p {
	color: unset;
    cursor: default;
}
fieldset .form_item input[type="date"] {
    width: 100%;
    min-width: 160px;
    max-width: 25%;
}
fieldset .form_item input[type="checkbox"] {
    display: none;
}
fieldset .form_item input[type="checkbox"] + p {
    margin-bottom: 0;
    padding-left: 40px;
    position: relative;
    cursor: pointer;
}
fieldset .form_item input[type="checkbox"] + p::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid rgba(105, 190, 174, 0.5);
    top: 2px;
    left: 3px;
    transition: 0.2s;
}
fieldset .form_item input[type="checkbox"] + p:hover::before {
    border: 1px solid rgba(105, 190, 174, 1);
}
fieldset .form_item input[type="checkbox"]:checked + p::before {
    background: var(--main-basic-color);
}


fieldset .form_item input[type="file"] {
    display: none;
}
fieldset .form_item.upload .capt {
    margin-bottom: 5px;
}
fieldset .form_item.upload .sub_capt {
    font-size: 14px;
    color: #5C979E;
    margin-bottom: 10px;
}
fieldset .form_item.upload label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* min-width: 50%; */
    /* max-width: 460px; */
    min-height: 50px;
    border: 2px solid white;
    background: var(--main-basic-color);
    padding: 5px 15px;
    color: white;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 5px;
}
fieldset .form_item.upload label:hover {
    background: var(--main-basic-color-hover);
}
fieldset .form_item.upload label span {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}
fieldset .form_item.upload .upload_file {
    display: none;
    gap: 16px;
    justify-content: center;
    align-items: center;
    height: 60px;
    border: 2px solid white;
    background: transparent;
    padding-left: 20px;
    color: black;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}
fieldset .form_item.upload .upload_file .upload_close {
    flex: none;
    position: relative;
    width: 60px;
    height: 60px;
}
fieldset .form_item.upload .upload_file .upload_close:hover {
    opacity: 0.7;
}
fieldset .form_item.upload .upload_file .upload_close::before {
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    right: calc(50% - 15px);
    width: 50%;
    height: 2px;
    background: var(--main-basic-color);
    transform: rotate(45deg);
}
fieldset .form_item.upload .upload_file .upload_close::after {
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    right: calc(50% - 15px);
    width: 50%;
    height: 2px;
    background: var(--main-basic-color);
    transform: rotate(-45deg);
}
fieldset .form_item.upload .alert {
    display: none;
}
fieldset .form_item.upload .alert span {
    display: inline-block;
    margin-top: 10px;
    color: var(--main-btn-color);
    font-size: 14px;
}


fieldset .form_item .wrap_attention {
    padding: 20px;
    background: var(--light-green);
    display: flex;
    gap: 16px;
    border-radius: 16px;
}
fieldset .form_item .wrap_attention > img {
    flex: none;
    width: 24px;
    height: 24px;
}
fieldset .form_item .wrap_attention .attention {
    flex-grow: 1;
}
fieldset .form_item .wrap_attention .attention {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 8px;
}
fieldset .form_item .attention p:not(.finish_screen_text) {
    /* font-size: 14px; */
}
fieldset .form_item .wrap_attention .attention p {
    color: var(--text-basic);
    font-size: 14px;
}
fieldset .form_item .wrap_attention .attention .visa_help {
    width: 100%;
    display: flex;
    gap: 16px;
}
fieldset .form_item .wrap_attention .attention .visa_help a {
    color: var(--text-basic);
    font-size: 14px;
}
fieldset .form_item .wrap_attention .attention .visa_help a:hover {
    text-decoration: none;
}
fieldset .form_item .wrap_attention .attention .visa_help a img {
    height: 30px;
}


fieldset .form_item.finish_screen {
    width: 100%;
    min-height: 300px;
    background: var(--light-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    line-height: 1.3;
}
fieldset .form_item.finish_screen .finish_screen_text {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}



/*-------------------global presets end----------------------*/

/*-------------------wrap_header----------------------*/
.wrap_header {
    /* padding-top: 92px; */
    position: relative;
    width: 100%;
    height: 100vh;
    /* background: purple; */
}
.wrap_header .header_bg {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    height: 50%;
    z-index: -1;
    /* filter: brightness(0.6); */
}
.wrap_header .header_bg_in {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* filter: brightness(0.6); */
}
@media only screen and (min-width:768px) {
    .wrap_header {
        /* padding-top: 92px; */
        position: relative;
        width: 100%;
        /* height: 100%; */
        /* background: purple; */
    }
    .wrap_header .header_bg {
        height: 100%;
    }
}
/*-------------------wrap_header end----------------------*/

/*-------------------wrap_header country----------------------*/
.wrap_header.country {
    padding-top: 92px;
    position: relative;
    width: 100%;
    height: 100vh;
    /* background: purple; */
}
.wrap_header.country .header_bg {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    /* filter: brightness(0.6); */
}
.wrap_header.country .header_bg_in {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* filter: brightness(0.6); */
}
@media only screen and (min-width:1100px) {
    .wrap_header.country {
        padding-top: 116px;
    }
}
/*-------------------wrap_header end----------------------*/

/*-------------------wrap_header form----------------------*/
.wrap_header.form {
    padding-top: 92px;
    position: relative;
    width: 100%;
    height: unset;
    /* background: purple; */
}
.wrap_header.form .header_bg {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    /* filter: brightness(0.6); */
}
.wrap_header.form .header_bg_in {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* filter: brightness(0.6); */
}

.wrap_header.no_lang .pll-switcher-select{
    display: none;
}
.wrap_header.no_currency .switcher-currency {
    display: none;
}
@media only screen and (min-width:1100px) {
    .wrap_header.form {
        padding-top: 116px;
    }
}
/*-------------------wrap_header end----------------------*/



/*-------------------header----------------------*/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* bottom: 0; */
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 92px;
    transition: 0.2s;
    border-bottom: 1px solid var(--light-green);
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: rgba(22, 81, 88, 0.9); */
    /* background: linear-gradient(rgba(22, 81, 88, 0.8) 0%, rgba(22, 81, 88, 0.9) 40%,rgba(22, 81, 88, 0) 100%); */
    background: linear-gradient(rgba(22, 81, 88, 1) 0%, rgba(22, 81, 88, 0) 100%);

    z-index: 7;
    

    /* box-shadow: rgb(167 169 172 / 20%) 0px 4px 20px 0px; */
    /* background:rgba(22, 81, 88, 0.6) ; */
    /* background-color: hsla(0,0%,100%,.6); */
    backdrop-filter: blur(8px);
}
header .wrap {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}
header .wrap .h_logo a {
    /* display: block; */
    /* width: 140px; */
    /* height: 60px; */
    /* background: #f3f3f3; */
    display: inline-block;
    background: var(--light-green);
    border-radius: 8px;
    padding: 8px;
}
header .wrap .h_logo a img {
    height: 54px;
}
header .wrap .mob_menu.show .h_logo a img {
    /* filter: drop-shadow(0 0 5px white); */
}


header .wrap .mob_menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .wrap .mob_menu.show {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    /* z-index: 3147483648; */
    /* background: var(--main-basic-color); */
    background: var(--main-dark-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header.fixed .wrap .mob_menu.show {
    height: 100vh;
}
header .wrap .mob_menu .h_menu,
header .wrap .mob_menu .h_dop {
    display: none;
}
header .wrap .mob_menu.show .h_menu,
header .wrap .mob_menu.show .h_dop {
    display: block;
}

header .wrap .mob_menu.show .h_logo {
    width: 100%;
    padding: 10px 16px;
}


header .wrap .mob_menu .h_menu ul {
    display: flex;
    gap: 30px;
}
header .wrap .mob_menu .h_menu ul li a {
    text-decoration: none;
    color: black;
}
header .wrap .mob_menu .h_menu ul li a:hover {
    /* color: var(--main-basic-color); */
    /* color: #F1B56D; */
    color: #69BEAE;
}
header .wrap .mob_menu.show .h_menu {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .wrap .mob_menu.show .h_menu ul {
    text-align: center;
    flex-direction: column;
}
header .wrap .mob_menu.show .h_menu ul li a {
    /* line-height: 2.5; */
    color: white;
    text-decoration: none;
    font-size: 20px;
}



header .wrap .mob_menu.show .h_dop {
    width: 100%;
    padding: 0 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* background: blue; */
}
/* header .wrap .mob_menu.show .h_dop .h_setting */
header .wrap .mob_menu.show .h_dop .h_setting .check_status {
    font-weight: 600;
    background: transparent;
    color: white;
    border: none;
    min-height: unset;
    
    /* color: var(--main-basic-color);
    height: 40px; */
}
header .wrap .mob_menu.show .h_dop .h_setting .in {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}
header .wrap .mob_menu.show .h_dop .h_setting .in select {
    background: transparent;
    color: white;
    text-transform: uppercase;
}
header .wrap .mob_menu.show .h_dop .h_setting .in select option {
    color: black;
    text-transform: uppercase;
    background: white;
}
/* header .wrap .mob_menu.show .h_dop .h_setting .in span {
    font-size: 18px;
    padding: 0 20px;
    background: transparent;
    border: none;
    color: white;
    min-height: unset;
}
header .wrap .mob_menu.show .h_dop .h_setting .in span:first-child {
    border-right: 2px solid white;
} */
header .wrap .mob_menu .h_dop .h_consult {
    display: flex;
    gap: 16px;
}
header .wrap .mob_menu .h_dop .h_consult span {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 1px solid white;
    color: white;
}
header .wrap .mob_menu .h_dop .h_consult a {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    transition: 0.2s;
}
header .wrap .mob_menu .h_dop .h_consult a:hover {
    background: white;
}
header .wrap .mob_menu .h_dop .h_consult a img {
    height: 21px;
}



header .wrap .h_hamburger {
    display: none;
    padding-right: 32px;
}
header .wrap .h_hamburger.show {
    display: block;
}
header .wrap .h_hamburger .hamb_wrap {
    width: 32px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header .wrap .h_hamburger .hamb_wrap span {
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    /* background: var(--main-dark-color); */
    background: white;
}


header .wrap .h_close {
    display: none;
    /* padding-right: 4px; */
}
header .wrap .h_close.show {
    position: absolute;
    display: block;
    top: 32px;
    right: 51px;
}
header .wrap .h_close .close_wrap {
    width: 26px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header .wrap .h_close .close_wrap span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: white;
}
header .wrap .h_close .close_wrap span:first-child {
    transform: translateY(12px) rotate(45deg);
}
header .wrap .h_close .close_wrap span:last-child {
    transform: translateY(-12px) rotate(-45deg);
}
@media only screen and (min-width:768px) {
    /* header .wrap .mob_menu .h_logo, */
    header .wrap .mob_menu.show .h_logo {
        padding: 10px 32px;
    }
    header .wrap .h_close.show {
        /* position: absolute;
        display: block;
        top: 32px; */
        right: 67px;
    }
}
@media only screen and (min-width:1100px) {
    header {
        padding: 16px 0;
        /* background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0)); */
    }
    /* header .wrap .mob_menu,
    header .wrap .mob_menu.show {
        display: flex;
        justify-content: space-between;
        align-items: center;
    } */
    header .wrap .h_logo a img {
        height: 70px;
    }
    header .wrap .mob_menu .h_logo,
    header .wrap .mob_menu.show .h_logo {
        /* padding-top: 0; */
    }
    header .wrap .mob_menu,
    header .wrap .mob_menu.show {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        /* background: white; */
    }
    header .wrap .mob_menu .h_menu,
    header .wrap .mob_menu.show .h_menu {
        display: flex;
        /* flex-grow: 1; */
    }
    header .wrap .mob_menu .h_dop,
    header .wrap .mob_menu.show .h_dop {
        display: flex;
        flex-direction: row;
    }
    header .wrap .h_hamburger,
    header .wrap .h_hamburger.show,
    header .wrap .h_close,
    header .wrap .h_close.show {
        display: none;
    }

    header .wrap .mob_menu .h_menu ul,
    header .wrap .mob_menu.show .h_menu ul {
        flex-direction: row;
    }
    header .wrap .mob_menu .h_menu ul li a,
    header .wrap .mob_menu.show .h_menu ul li a {
        color: white;
        font-size: 20px;
    }
    header .wrap .mob_menu .h_menu ul li a:hover,
    header .wrap .mob_menu.show .h_menu ul li a:hover {
        /* color: var(--yellow); */
        text-decoration: underline;
        color: white;
        /* color: var(--main-btn-color); */
    }

    header .wrap .mob_menu .h_dop,
    header .wrap .mob_menu.show .h_dop {
        display: flex;
        flex-direction: row;
        padding: 0;
    }
    header .wrap .mob_menu .h_dop .h_setting,
    header .wrap .mob_menu.show .h_dop .h_setting {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    header .wrap .mob_menu .h_dop .h_setting .check_status,
    header .wrap .mob_menu.show .h_dop .h_setting .check_status {
        color: var(--main-basic-color);
        font-weight: 600;
        background: transparent;
        border: none;
        min-height: unset;
        cursor: pointer;
    }
    header .wrap .mob_menu .h_dop .h_setting .check_status:hover,
    header .wrap .mob_menu.show .h_dop .h_setting .check_status:hover {
        /* color: #69BEAE; */
        /* color: #F1B56D; */
        text-decoration: underline;
    }
    header .wrap .mob_menu .h_dop .h_setting .in,
    header .wrap .mob_menu.show .h_dop .h_setting .in {
        padding: 0 16px;
        margin: 0;
        display: flex;
        gap: 16px;
    }
    header .wrap .mob_menu .h_dop .h_setting .in select,
    header .wrap .mob_menu.show .h_dop .h_setting .in select {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        text-transform: uppercase;
        /* border: none; */
        cursor: pointer;
        /* text-align: center; */
        transition: 0.2s;
    }
    header .wrap .mob_menu .h_dop .h_setting .in select:hover,
    header .wrap .mob_menu.show .h_dop .h_setting .in select:hover {
        /* border: 1px solid rgba(255, 255, 255, 0.4); */
        background: rgba(255, 255, 255, 0.3);
    }
    header .wrap .mob_menu .h_dop .h_setting .in select option,
    header .wrap .mob_menu.show .h_dop .h_setting .in select option {
        color: black;
        text-transform: uppercase;
        background: white;
    }
    header .wrap .mob_menu .h_dop .h_setting .in span,
    header .wrap .mob_menu.show .h_dop .h_setting .in span {
        /* color: white;
        padding: 0 10px;
        font-size: 18px;
        background: transparent;
        border: none;
        min-height: unset;
        cursor: pointer; */
    }
    header .wrap .mob_menu .h_dop .h_setting .in span:hover,
    header .wrap .mob_menu.show .h_dop .h_setting .in span:hover {
        /* color: var(--main-basic-color); */
        /* color: #F1B56D; */
        opacity: 0.9;
    }
    header .wrap .mob_menu .h_dop .h_setting .in span:first-child,
    header .wrap .mob_menu.show .h_dop .h_setting .in span:first-child {
        border-right: 2px solid white;
    }
    header .wrap .mob_menu .h_dop .h_consult span,
    header .wrap .mob_menu.show .h_dop .h_consult span {
        color: black;
        cursor: pointer;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        outline: none;
        border: 1px solid white;
        /* border: 1px solid var(--main-btn-color); */
        border-radius: 5px;
        min-height: 44px;
        padding: 0 16px;
        /* background: transparent; */
        /* background: var(--main-btn-color); */
        /* background: white; */
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid transparent;
    }
    header .wrap .mob_menu .h_dop .h_consult span:hover,
    header .wrap .mob_menu.show .h_dop .h_consult span:hover {
        /* background: rgba(255, 255, 255, 0.2); */
        /* background: none; */
        /* background: var(--main-btn-color-hover); */
        /* background: var(--main-btn-color);
        color: white; */
        background: white;
        color: black;
        /* border: 1px solid #F1B56D; */
        /* color: #F1B56D; */
        /* background: rgba(241, 112, 83, 0.1); */
        /* box-shadow: 3px 3px 6px rgba(105, 190, 174, 0.5); */
    }
}
/*-------------------header end----------------------*/

/*-------------------header mod----------------------*/
/* header .wrap .mob_menu .h_dop .h_consult a.mod {
    width: unset;
    padding: 5px 8px;
} */
header .wrap .mob_menu .h_dop .h_consult a.mod {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    /* background: none;
    border: none; */
    /* background: rgba(255, 255, 255, 0.2); */
        border: 1px solid rgba(255, 255, 255, 0.2);
}
header .wrap .mob_menu .h_dop .h_consult a.mod img {
    width: 42px;
    height: 42px;
}
header .mod p {
    font-size: 14px;
    font-weight: 400;
    color: #0E3236;
}
/*-------------------header mod end----------------------*/

/*-------------------header mod2----------------------*/
header .wrap .mob_menu .h_dop .h_consult a.mod2 {
    width: unset;
    padding: 0 8px;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 {
    display: flex;
    /* flex-direction: column;
    justify-content: center; */
    align-items: center;
    gap: 8px;
    text-decoration: none;
    /* background: none;
    border: none; */
    /* background: rgba(255, 255, 255, 0.2); */
        border: 1px solid rgba(255, 255, 255, 0.2);
}
header .wrap .mob_menu .h_dop .h_consult a.mod2:hover {
    opacity: 0.85;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 .img {
    display: flex;
    align-items: center;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 .img img {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 .desc {
    display: none;
    flex-direction: column;
    gap: 2px;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 .desc p:first-child {
    font-size: 15px;
    font-weight: 400;
    color: white;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2 .desc p:last-child {
    font-size: 10px;
    font-weight: 600;
    color: white;
}


header .wrap .mob_menu .h_dop .h_consult a.mod2.wa {
    padding-left: 0;
    padding-right: 0;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.wa .img {
    display: flex;
    align-items: center;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.wa .img img {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: unset;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.email {
    /* gap: 0;
    padding-left: 0; */
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.email .img {
    display: flex;
    align-items: center;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.email .img img {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: unset;
}
header .wrap .mob_menu .h_dop .h_consult a.mod2.max .img img {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 0;
}
@media only screen and (min-width:1320px) {
    header .wrap .mob_menu .h_dop .h_consult a.mod2 .desc {
        display: flex;
    }
    header .wrap .mob_menu .h_dop .h_consult a.mod2.wa {
        gap: 0;
        padding-right: 8px;
    }
}
/*-------------------header mod2 end----------------------*/

/*-------------------header form----------------------*/
.wrap_header.form {
    /* border-bottom: 1px solid var(--text-basic);
    box-shadow: 3px 3px 5px var(--light-green); */
}
.wrap_header.form header .wrap .h_logo a {
    /* background: unset; */
}
.wrap_header.form header .wrap .mob_menu.show .h_logo a {
    background: var(--light-green);
}
.wrap_header.form header .wrap .h_hamburger .hamb_wrap span {
    background: var(--text-basic);
}
.wrap_header.form header.fixed .wrap .h_hamburger .hamb_wrap span {
    background: white;
}
@media only screen and (min-width:1100px) {
    .wrap_header.form header {
        /* background: var(--text-basic); */

    }
    .wrap_header.form header .wrap .mob_menu .h_menu ul li a,
    .wrap_header.form header .wrap .mob_menu.show .h_menu ul li a {
        color: var(--main-dark-color);
    }
    .wrap_header.form header .wrap .mob_menu .h_menu ul li a:hover,
    .wrap_header.form header .wrap .mob_menu.show .h_menu ul li a:hover {
        text-decoration: underline;
        /* color: var(--main-btn-color-hover); */
    }

    .wrap_header.form header.fixed .wrap .mob_menu .h_menu ul li a,
    .wrap_header.form header.fixed .wrap .mob_menu.show .h_menu ul li a {
        color: white;
    }
    .wrap_header.form header.fixed .wrap .mob_menu .h_menu ul li a:hover,
    .wrap_header.form header.fixed .wrap .mob_menu.show .h_menu ul li a:hover {
        text-decoration: underline;
        color: white;
        /* color: var(--main-btn-color-hover); */
    }

    .wrap_header.form header .wrap .mob_menu .h_dop .h_setting .in span,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_setting .in span {
        border: 1px solid var(--text-basic);
        color: black;
    }
    .wrap_header.form header .wrap .mob_menu .h_dop .h_setting .in span:first-child,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_setting .in span:first-child {
        border-right: 2px solid black;
    }

    .wrap_header.form header .wrap .mob_menu .h_dop .h_setting .in select,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_setting .in select {
        /* background: var(--light-green); */
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: black;
        /* text-transform: uppercase;
        border: none;
        cursor: pointer; */
        /* text-align: center; */
    }
    .wrap_header.form header .wrap .mob_menu .h_dop .h_setting .in select:hover,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_setting .in select:hover {
        background: var(--light-green);
        /* background: white; */
        /* border: 1px solid rgba(0, 0, 0, 0.1);
        color: black; */
        /* text-transform: uppercase;
        border: none;
        cursor: pointer; */
        /* text-align: center; */
    }
    .wrap_header.form header.fixed .wrap .mob_menu .h_dop .h_setting .in select,
    .wrap_header.form header.fixed .wrap .mob_menu.show .h_dop .h_setting .in select {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        /* border: 1px solid rgba(0, 0, 0, 0.1); */
        /* border: 1px solid rgba(255, 255, 255, 0.2); */
        /* color: white; */
        /* text-transform: uppercase;
        border: none;
        cursor: pointer; */
        /* text-align: center; */
        transition: 0.2s;
    }
    .wrap_header.form header.fixed .wrap .mob_menu .h_dop .h_setting .in select:hover,
    .wrap_header.form header.fixed .wrap .mob_menu.show .h_dop .h_setting .in select:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .wrap_header.form header .wrap .mob_menu .h_dop .h_consult span,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_consult span {
        /* color: white; */
        cursor: pointer;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        outline: none;
        /* border: 1px solid var(--text-basic); */
        /* border: 1px solid var(--text-color); */
        border-radius: 5px;
        min-height: 44px;
        padding: 0 16px;
        background: var(--light-green);
        /* background: var(--main-btn-color); */
        /* border: 1px solid transparent; */
    }
    .wrap_header.form header .wrap .mob_menu .h_dop .h_consult span:hover,
    .wrap_header.form header .wrap .mob_menu.show .h_dop .h_consult span:hover {
        /* background: rgba(255, 255, 255, 0.2); */
        /* background: var(--main-btn-color-hover); */
        background: white;
        border: 1px solid var(--text-color);
        color: black;
        /* border: 1px solid #F1B56D; */
        /* color: #F1B56D; */
        /* background: rgba(241, 112, 83, 0.1); */
        /* box-shadow: 3px 3px 6px rgba(105, 190, 174, 0.5); */
    }
}

/*-------------------header form end----------------------*/


/*-------------------hero----------------------*/
.hero {
    padding-top: 92px;
    /* height: calc(100% - 92px); */
    height: 100%;
    /* background: blue; */
    padding-bottom: 50px;
}
.hero .wrap {
    height: 100%;
    display: grid;
    grid-template-rows: 0.45fr 0.55fr;
    /* display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center; */
}
.hero .wrap .hero_h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero .wrap .hero_h1 h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: white;
    /* text-transform: uppercase; */
    /* text-shadow: 2px 2px 3px rgba(0,0,0,0.2); */
}
.hero .wrap .hero_h1 h1 span {
    font-weight: 700;
    text-transform: uppercase;
}
.hero .wrap .hero_h1 .sub_h1 {
    color: white;
    margin-top: 30px;
    max-width: 680px;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    /* font-weight: 500; */
}
.hero .wrap .start {
    width: 100%;
    /* max-width: 600px; */
    /* padding: 15px; */
    /* border-radius: 10px; */
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .wrap .start .wrap_start_form {
    width: 100%;
    /* max-width: 600px; */
    padding: 30px 15px 15px;
    border-radius: 10px;
    /* background: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero .wrap .start form {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero .wrap .start form .form_item {
    position: relative;
}
.hero .wrap .start form .form_item span.capt {
    display: block;
    color: #5C979E;
    margin-bottom: 10px;;
}
.hero .wrap .start form .form_item select,
.hero .wrap .start form .form_item input {
    width: 100%;
}
.hero .wrap .start form .form_item select option:disabled {
    color: lightgray;
}
.hero .wrap .start form .form_item select option span {
    font-size: 14px;
}
.hero .wrap .start form .form_item.warning select {
    /* position: relative; */
    border-bottom: 1px solid var(--main-btn-color);
}
/* .hero .wrap .start form .form_item.warning::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon_warning_red.png) no-repeat;
    background-size: contain;
    border-bottom: 5px;
    right: 16px;
} */
.hero .wrap .start form .form_item.warning .warning_label {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: inline-block;
    color: var(--main-btn-color);
    font-size: 14px;
}
/* .hero .wrap .start form .form_item.warning .warning_label::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon_warning_red.png) no-repeat;
    background-size: contain;
    bottom: 0;
    left: 0;
} */
.hero .wrap .start form button {
    width: 100%;
}

.hero .wrap .start .wrap_start_form .wrap_not_need_visa {
    padding-top: 35px;
    display: none;
}
.hero .wrap .start .wrap_start_form .wrap_not_need_visa p {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-btn-color);
}
@media only screen and (min-width:768px) {
    .hero {
        /* height: 70vh; */
    }
    .hero .wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .hero .wrap .hero_h1 h1 {
        font-size: 60px;
        /* color: var(--main-basic-color); */
    }
    .hero .wrap .hero_h1 h1 span {
        /* color: white; */
    }
    .hero .wrap .hero_h1 .sub_h1 {
        margin-top: 50px;
        font-size: 22px;
    }
    .hero .wrap .start .wrap_start_form {
        max-width: 900px;
        /* background: white; */
        background: var(--light-green);
        padding: 35px 35px 35px;
    }
    .hero .wrap .start form {
        max-width: unset;
        display: grid;
        gap: 20px;
        grid-template-columns: 0.37fr 0.37fr 0.26fr;
        align-items: flex-end;
    }
}
/*-------------------hero end----------------------*/

/*-------------------hero_in----------------------*/
.hero_in {
    /* padding-top: 92px; */
    /* height: calc(100% - 92px); */
    height: 100%;
    /* background: blue; */
}
.hero_in .wrap {
    height: 100%;
    /* display: grid;
    grid-template-rows: 1fr 1fr; */
}
.hero_in .wrap .hero_h1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.hero_in .wrap .hero_h1 h1 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: white;
    /* text-transform: uppercase; */
    /* text-shadow: 2px 2px 3px rgba(0,0,0,0.2); */
}
.hero_in .wrap .hero_h1 h1 span {
    /* color: var(--yellow); */
    font-weight: 600;
    /* text-transform: uppercase; */
    display: inline-block;
    background: var(--light-green);
    /* background: white; */
    padding: 0 10px;
    border-radius: 5px;
    color: var(--main-basic-color);
    /* color: var(--main-btn-color); */
}
.hero_in .wrap .hero_h1 .sub_h1 {
    color: white;
    /* margin-top: 30px; */
    max-width: 680px;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    /* font-weight: 500; */
}
.hero_in .wrap .hero_h1 .btn {
    width: 100%;
    max-width: 300px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.hero_in .wrap .hero_h1 .btn a,
.hero_in .wrap .hero_h1 .btn span {
    width: 100%;
}
@media only screen and (min-width:768px) {
    .hero_in {
        /* height: 70vh; */
    }
    .hero_in .wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .hero_in .wrap .hero_h1 h1 {
        font-size: 56px;
        /* color: var(--main-basic-color); */
    }
    .hero_in .wrap .hero_h1 h1 span {
        /* color: white; */
    }
    .hero_in .wrap .hero_h1 .sub_h1 {
        margin-top: 50px;
        font-size: 22px;
    }
    .hero_in .wrap .start .wrap_start_form {
        max-width: 900px;
        background: white;
        padding: 35px 35px 35px;
    }
    .hero_in .wrap .start form {
        max-width: unset;
        display: grid;
        gap: 20px;
        grid-template-columns: 0.37fr 0.37fr 0.26fr;
        align-items: flex-end;
    }
}
/*-------------------hero_in end----------------------*/

/*-------------------countries----------------------*/
/* .countries {
    background: var(--light-green);
}
.countries .wrap .head {
    padding: 50px 0 30px;
}
.countries .wrap .body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
}
.countries .wrap .body .item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.countries .wrap .body .item .img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    filter: brightness(60%);
}
.countries .wrap .body .item .content {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.countries .wrap .body .item .content .flag {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 40px;
    z-index: 1;
    border-radius: 5px;
}
.countries .wrap .body .item .content h3 a {
    color: white;
    padding-right: 70px;
    text-decoration: none;
}
.countries .wrap .body .item .content .desc {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.countries .wrap .body .item .content .desc p {
    line-height: 1.3;
}
.countries .wrap .body .item .content .btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.countries .wrap .body .item .content .btn .btn_form_secondary {
    color: white;
}
@media only screen and (min-width:768px) {
    .countries .wrap .head {
        padding: 100px 0 50px;
    }
    .countries .wrap .body {
        padding-bottom: 100px;
        gap: 40px;
    }
    .countries .wrap .body .item {
        display: flex;
        flex-direction: row;
    }
    .countries .wrap .body .item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .countries .wrap .body .item > div {
        width: 100%;
    }
    .countries .wrap .body .item .img {
        position: relative;
        height: unset;
        z-index: 1;
        filter: brightness(80%);
    }
    .countries .wrap .body .item .content {
        padding: 40px;
        background: rgba(241, 228, 188, 0.2);
        border: 1px solid rgba(241, 228, 188, 0.7);
    }
    .countries .wrap .body .item .content .flag {
        top: 40px;
        right: 40px;
    }
    .countries .wrap .body .item .content h3 a {
        color: var(--main-basic-color);
    }
    .countries .wrap .body .item .content .desc p {
        color: black;
    }
    .countries .wrap .body .item .content .btn .btn_form_secondary {
        color: black;
        padding: 0 24px;
        border: 1px solid var(--main-btn-color);
        min-height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: 0.2s;
    }
    .countries .wrap .body .item .content .btn .btn_form_secondary:hover {
        background: rgba(241, 112, 83, 0.1);
    }
} */
/*-------------------countries end----------------------*/

/*-------------------countries----------------------*/
.countries2 {
    background: var(--light-green);
    padding-bottom: 50px;
}
.countries2 .wrap .head {
    padding: 50px 0 30px;
}
.countries2 .wrap .body {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
    overflow: hidden;
    overflow-x: auto;
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    padding-bottom: 10px;
}
.countries2 .wrap .body .item {
    position: relative;
    border-radius: 16px;
    padding: 20px 20px 130px;
    background: white;
    overflow: hidden;
    min-width: 300px;
    /* max-width: 450px; */
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 3px 3px 5px var(--light-green);
}
/* .countries2 .wrap .body .item.hide::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    z-index: 3;
}
.countries2 .wrap .body .item.hide::after {
    position: absolute;
    content: "Скоро";
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: red;
    text-shadow: 0px 0px 10px white;
    width: 100%;
    height: 100%;
    z-index: 3;
} */



.countries2 .wrap .body .item .img {
    width: 100%;
    height: 200px;
    /* aspect-ratio: 410/300; */
    /* position: absolute;
    width: 100%;
    height: 100%; */
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    /* filter: brightness(60%); */
    border-radius: 10px;
    overflow: hidden;
}
.countries2 .wrap .body .item .img a {
    display: block;
    width: 100%;
    height: 100%;
}
.countries2 .wrap .body .item .content {
    margin-top: 20px;
    position: relative;
    /* padding: 30px; */
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-items: stretch;
    /* height: 100%; */
    gap: 20px;
}
/* .countries2 .wrap .body .item .content .flag {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 40px;
    z-index: 1;
    border-radius: 5px;
} */

.countries2 .wrap .body .item .content .desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* margin-top: 15px; */
}
.countries2 .wrap .body .item .content .desc h3 a {
    color: black;
    /* padding-right: 70px; */
    text-decoration: none;
}
.countries2 .wrap .body .item .content .desc h3 {
    margin-bottom: 10px;
}
.countries2 .wrap .body .item .content .desc h3 a {
    transition: 0.2s;
}
.countries2 .wrap .body .item:hover .content .desc h3 a {
    color: var(--main-basic-color);
}
.countries2 .wrap .body .item .content .desc p {
    /* line-height: 1.5; */
    color: var(--text-basic);
    /* color: rgba(0, 0, 0, 0.6); */
    /* opacity: 0.6; */
    /* font-weight: 700; */
}
.countries2 .wrap .body .item .content .desc p span {
    color: black;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 5px;
    /* background: rgba(241, 228, 188, 0.1); */
    /* padding-left: 15px; */
    /* font-weight: 400; */
    /* opacity: 1; */
}
.countries2 .wrap .body .item .btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* margin-top: 30px; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 20px 12px;
}
.countries2 .wrap .body .item .btn .btn_form {
    width: 100%;
}
.countries2 .wrap .body .item .btn .btn_form_secondary {
    /* color: black; */
    width: 100%;
    text-align: center;
}


.countries2 .wrap .body .item .soon {
    display: none;
}
.countries2 .wrap .body .item.hide:hover .content .desc h3 a {
    color: black;
}
.countries2 .wrap .body .item.hide .soon {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--main-dark-color);
    text-shadow: 0px 0px 10px white;
    z-index: 3;
    appearance: none;
    text-align: center;
}
@media only screen and (min-width:768px) {
    .countries2 {
        padding-bottom: 100px;
        border-radius: 16px;
    }
    .countries2 .wrap .head {
        padding: 100px 0 50px;
    }
    .countries2 .wrap .body {
        /* padding-bottom: 100px; */
        /* gap: 40px; */
    }
    .countries2 .wrap .body .item {
        /* display: flex;
        flex-direction: row; */
        width: 420px;
        min-width: 420px;
        padding: 30px 30px 100px;
    }
    .countries2 .wrap .body .item:nth-child(even) {
        /* flex-direction: row-reverse; */
    }
    .countries2 .wrap .body .item > div {
        width: 100%;
    }
    .countries2 .wrap .body .item .img {
        height: 260px;
        /* filter: brightness(80%); */
    }
    .countries2 .wrap .body .item .content {
        /* padding: 40px;
        background: rgba(241, 228, 188, 0.2);
        border: 1px solid rgba(241, 228, 188, 0.7); */
    }
    .countries2 .wrap .body .item .content .flag {
        top: 40px;
        right: 40px;
    }
    .countries2 .wrap .body .item .content h3 a {
        color: var(--main-basic-color);
    }
    .countries2 .wrap .body .item .content .desc p {
        /* color: black; */
    }
    .countries2 .wrap .body .item .btn {
        padding: 30px;
    }
    .countries2 .wrap .body .item .btn .btn_form,
    .countries2 .wrap .body .item .btn .btn_form_secondary {
        width: unset;
    }
    .countries2 .wrap .body .item .btn .btn_form_secondary {
        /* color: black;
        padding: 0 24px;
        border: 1px solid var(--main-btn-color);
        min-height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: 0.2s; */
    }
    .countries2 .wrap .body .item .btn .btn_form_secondary:hover {
        /* background: rgba(241, 112, 83, 0.1); */
    }
}
/*-------------------countries2 end----------------------*/

/*-------------------how----------------------*/
.how {
    background: var(--light-green);
    padding-top: 50px;
}
.how .wrap .head {
    padding: 10px 0 30px;
}
.how .wrap .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding-bottom: 50px;
}
.how .wrap .body .item {
    width: 100%;
    max-width: 280px;
    /* background: var(--light-green); */
    background: white;
    border: 1px solid rgba(14, 150, 174, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
    position: relative;
}

.how .wrap .body .item::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    bottom: -65px;
    left: calc(50% - 25px);
    background: url(../img/icon_airplane.png) no-repeat;
    background-size: contain;
}
.how .wrap .body .item:last-child:after {
    display: none;
}
.how .wrap .body .item .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: var(--yellow); */
    background: var(--main-basic-color);
    padding: 20px;
}
.how .wrap .body .item .img img {
    width: 100%;
}
.how .wrap .body .item .desc {
    margin-top: 24px;
}
.how .wrap .body .item .desc h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.how .wrap .body .item .desc p {
    color: var(--text-basic);
    line-height: 1.3;
}
@media only screen and (min-width:768px) {
    .how {
        padding-top: 0;
    }
    .how .wrap .head {
        padding: 50px 0 30px;
    }
}
@media only screen and (min-width:1220px) {
    .how .wrap .head {
        padding: 100px 0 50px;
    }
    .how .wrap .body {
        display: flex;
        flex-direction: row;
        gap: unset;
        justify-content: space-between;
        align-items: stretch;
        padding-bottom: 100px;
    }
    .how .wrap .body .item {
        transition: 0.2s;
    }
    .how .wrap .body .item:hover {
        box-shadow: 3px 3px 5px var(--light-green);
    }
    .how .wrap .body .item::after {
        position: absolute;
        content: "";
        width: 50px;
        height: 50px;
        right: -25px;
        top: calc(50% - 25px);
        left: unset;
        bottom: unset;
        background: url(../img/icon_airplane.png) no-repeat;
        background-size: contain;
        z-index: 1;
    }
    .how .wrap .body .item:last-child:after {
        display: none;
    }
}
@media only screen and (min-width:1440px) {
    .how .wrap .body .item::after {
        right: -65px;
    }
}
/*-------------------how end----------------------*/

/*-------------------why----------------------*/
.why {
    padding-top: 50px;
    padding-bottom: 50px;
}
.why .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why .wrap .head h2 {
    margin-bottom: 30px;
}
.why .wrap .head p {
    color: var(--text-basic);
    line-height: 1.3;
}
.why .wrap .list {
    padding-top: 30px;
}
.why .wrap .list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why .wrap .list ul li {
    background: var(--light-green);
    border-radius: 10px;
    line-height: 1.3;
    padding: 16px;
    display: flex;
    align-items: center;
}
.why .wrap .list ul li .img {
    position: relative;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 5px;
    padding: 8px;
    margin-right: 16px;
    flex: none;
}
/* .why .wrap .list ul li .img::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    top: 0;
    right: -17px;
    background: var(--yellow);
} */
.why .wrap .list ul li .img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@media only screen and (min-width:768px) {
    .why {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .why .wrap {
        display: grid;
        grid-template-columns: 0.45fr 0.55fr;
        align-items: flex-start;
        gap: 40px;
    }
    .why .wrap h2 {
        text-align: left;
    }
    .why .wrap .head p {
        max-width: 530px;
    }
    .why .wrap .list {
        padding-top: 0;
    }
    .how .wrap .body .item::after {
        right: -65px;
    }
    .why .wrap .list ul li {
        /* padding: 12px 24px; */
    }
}
@media only screen and (min-width:1220px) {
    .why .wrap .list ul li {
        padding: 16px 24px;
    }
    .why .wrap .list ul li .img {
        position: relative;
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 5px;
        padding: 8px;
        margin-right: 16px;
        flex: none;
    }
}
/*-------------------why end----------------------*/

/*-------------------consult----------------------*/
.consult {
    padding-bottom: 50px;
}
.consult.in_main {
    padding-bottom: 0;
}
.consult .wrap .in {
    background: var(--main-dark-color);
    color: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}
.consult .wrap .in p {
    line-height: 1.3;
    font-size: 30px;
    font-weight: 500;
}
.consult .wrap .in p span {
    font-size: 20px;
}
.consult .wrap form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.consult .wrap form .wrap_inline_textarea,
.consult .wrap form .wrap_inline_input {
    position: relative;
    text-align: left;
}
.consult .wrap form .wrap_inline_textarea .warning_label,
.consult .wrap form .wrap_inline_input .warning_label {
    display: none;
}
.consult .wrap form .wrap_inline_textarea.warning .warning_label,
.consult .wrap form .wrap_inline_input.warning .warning_label {
    display: inline-block;
    background: var(--main-btn-color);
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 3px;
}
.consult .wrap form textarea,
.consult .wrap form input,
.consult .wrap form button {
    width: 100%;
    border-radius: 5px;
}
.consult .wrap form textarea {
    padding: 10px 16px;
    min-height: 150px;
}
.consult .wrap .res {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.consult .wrap .res .capt {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
}
.consult .wrap .res .msg {
    font-size: 16px;
    line-height: 1.3;
}

.consult.sent .wrap .res {
    display: flex;
}
.consult.sent .wrap .in > p,
.consult.sent .wrap form {
display: none;
}
@media only screen and (min-width:768px) {
    .consult {
        padding-bottom: 100px;
    }
    .consult.in_main {
        /* padding-bottom: 0; */
    }
    .consult .wrap form {
        display: grid;
        grid-template-columns: 0.65fr 0.35fr;
        grid-template-areas: 
        "textarea input"
        "textarea button";
        gap: 16px 30px;
    }
    .consult .wrap form .wrap_inline_textarea {
        grid-area: textarea;
    }
    .consult .wrap form .wrap_inline_textarea textarea {
        min-height: unset;
        height: 100%;
    }
    .consult .wrap form .wrap_inline_input {
        grid-area: input;
    }
    .consult .wrap form button {
        grid-area: button;
    }
    .consult .wrap .res {
        width: 100%;
    }
}
@media only screen and (min-width:1200px) {
    .consult .wrap .in {
        padding: 50px 80px;
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
        align-items: center;
    }
    .consult .wrap p {
        text-align: left;
    }
    .consult .wrap form {
        margin-top: 0;
    }
    .consult.sent .wrap .in {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .consult.sent .wrap .in .res .capt,
    .consult.sent .wrap .in .res .msg {
        text-align: center;
    }
}
/*-------------------consult end----------------------*/

/*-------------------consult_nets----------------------*/
.consult .consult_nets {
    margin-top: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
}
.consult .consult_nets a.mod2 {
    display: flex;
    /* flex-direction: column;
    justify-content: center; */
    align-items: center;
    gap: 8px;
    text-decoration: none;
    /* background: none;
    border: none; */
    /* background: rgba(255, 255, 255, 0.2); */
        border: 1px solid rgba(255, 255, 255, 0.2);

        /* width: 44px; */
    min-height: 44px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    transition: 0.2s;
    padding-top: 5px;
    padding-bottom: 5px;
}
.consult .consult_nets a.mod2:hover {
    opacity: 0.9;
}
.consult .consult_nets a.mod2 .img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 44px;
}
.consult .consult_nets a.mod2 .img img {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
}
.consult .consult_nets a.mod2 .desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.consult .consult_nets a.mod2 .desc p:first-child {
    font-size: 15px;
    font-weight: 400;
    color: white;
}
.consult .consult_nets a.mod2 .desc p:last-child {
    font-size: 10px;
    font-weight: 600;
    color: white;
}


.consult .consult_nets a.mod2.wa {
    padding-left: 0;
    padding-right: 0;
}
.consult .consult_nets a.mod2.wa .img {
    display: flex;
    align-items: center;
}
.consult .consult_nets a.mod2.wa .img img {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: unset;
}
.consult .consult_nets a.mod2.email {
    /* gap: 0;
    padding-left: 0; */
}
.consult .consult_nets a.mod2.email .img {
    display: flex;
    align-items: center;
}
.consult .consult_nets a.mod2.email .img img {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: unset;
}
.consult .consult_nets a.mod2.max .img img {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 0;
}
@media only screen and (min-width:768px) {
    .consult .consult_nets {
        margin-top: 32px;
        /* grid-template-columns: repeat(25%,1fr); */
    }
}
@media only screen and (min-width:1200px) {
    .consult .consult_nets {
        justify-content: flex-end;
    }
}
@media only screen and (min-width:1320px) {
    .consult .consult_nets {
        margin-top: 0;
    }
    .consult .consult_nets a.mod2 {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .consult .consult_nets a.mod2 .desc {
        display: flex;
        gap: 0;
    }
    .consult .consult_nets a.mod2 .desc p:first-child {
        font-size: 16px;
    }
    .consult .consult_nets a.mod2 .desc p:last-child {
        font-size: 12px;
    }
    .consult .consult_nets a.mod2.wa {
        /* gap: 0; */
        padding-right: 8px;
    }
}
/*-------------------consult_nets end----------------------*/



/*-------------------about----------------------*/
.about {
    padding: 50px 0;
}
.about .wrap {
    display: flex;
    flex-direction: column;
}
.about .wrap .img {
    width: 100%;
    aspect-ratio: 700/350;
    border-radius: 16px;
}
.about .wrap .text h2 {
    margin-top: 30px;
    margin-bottom: 24px;
}
.about .wrap .text .desc {
    color: var(--text-basic);
    line-height: 1.3;
}
@media only screen and (min-width:768px) {
    .about {
        padding: 100px 0;
    }
    .about .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .about .wrap .text h2 {
        margin-top: 0;
        margin-bottom: 32px;
        text-align: left;
    }
    .about .wrap .text .desc {
        max-width: 520px;
    }
}
/*-------------------about end----------------------*/

/*-------------------garant----------------------*/
.garant {
    background: var(--light-green);
    padding: 50px 0;
}
.garant .wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.garant .wrap .left h2 {
    margin-bottom: 30px;
}
.garant .wrap .left .desc {
    color: var(--text-basic);
    line-height: 1.3;
}
.garant .wrap .left img {
    width: 100%;
    margin-top: 30px;
}

.garant .wrap .right {
    display: flex;
    justify-content: center;
}
.garant .wrap .right ul {
    border: 1px solid rgba(22, 81, 88, 0.5);
    border-radius: 16px;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}
.garant .wrap .right ul li {
    /* padding: 12px 16px; */
    display: flex;
    align-items: center;
}
.garant .wrap .right ul li .img {
    position: relative;
    width: 44px;
    height: 44px;
    margin-right: 24px;
}
.garant .wrap .right ul li .img img {
    height: 100%;
}
.garant .wrap .right ul li p {
    /* font-size: 20px; */
    font-weight: 600;
}
@media only screen and (min-width:768px) {
    .garant {
        padding: 100px 0;
    }
    .garant .wrap {
        display: grid;
        grid-template-columns: 0.6fr 0.4fr;
        gap: 40px;
    }
    .garant .wrap .left h2 {
        text-align: left;
    }
    .garant .wrap .right {
        justify-content: flex-end;
    }
}
/*-------------------garant end----------------------*/

/*-------------------cost----------------------*/
.cost {
    /* padding-top: 50px; */
    padding-bottom: 50px;
}
.cost .wrap .head {
    padding: 50px 0 30px;
}
.cost .wrap .body {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
    overflow: hidden;
    overflow-x: auto;
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    padding-bottom: 10px;
}
.cost .wrap .body .item {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--main-basic-color);
    padding: 110px 0 390px;
    
    /* background: white; */
    background: var(--light-green);
    overflow: hidden;
    /* max-width: 450px; */
    width: 300px;
    min-width: 300px;
    /* display: flex;
    flex-direction: column;
    align-items: stretch; */
}
.cost .wrap .body .item .top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: var(--main-basic-color);
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cost .wrap .body .item .top .capt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    /* color: var(--main-dark-color); */
    color: white;
    text-align: center;
}
.cost .wrap .body .item .top .capt span {
    
    font-size: 26px;
    font-weight: 700;
}
.cost .wrap .body .item .middle {
    position: relative;
    display: flex;
    height: 100%;
    /* flex-direction: column; */
    /* gap: 16px; */
    /* width: 100%; */
    /* flex-grow: 1; */
    /* height: 100%; */
    /* background: var(--main-basic-color); */
}
.cost .wrap .body .item .middle::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--main-basic-color);
}
/* .cost .wrap .body .item .middle::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--light-green);
} */
.cost .wrap .body .item .middle .in {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--main-basic-color);
    display: flex;
    flex-direction: column;
    /* flex-grow: 1; */
    height: 100%;
    gap: 16px;
}
.cost .wrap .body .item .middle .in .line > p {
    color: var(--text-basic);
    /* font-weight: 300; */
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.cost .wrap .body .item .middle .in .line > div {
    /* margin-top: 5px; */
    padding-left: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
}
.cost .wrap .body .item .middle .in .line > div ul li {
    position: relative;
    margin-bottom: 5px;
}
.cost .wrap .body .item .middle .in .line > div ul li:last-child {
    margin-bottom: 0;
}
.cost .wrap .body .item .middle .in .line > div ul li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-basic);
    top: 6px;
    left: -13px;
    opacity: 0.6;
}
.cost .wrap .body .item .middle .in .line > div ul li span {
    /* font-weight: 700; */
    color: var(--main-basic-color);
    /* color: var(--text-basic); */
}

.cost .wrap .body .item .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 390px;
}
.cost .wrap .body .item .bottom .in {
    background: var(--light-green);
    /* border-radius: 16px; */
    height: 100%;
    padding: 20px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cost .wrap .body .item .bottom .in .cost_capt {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cost .wrap .body .item .bottom .in .switch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}
.cost .wrap .body .item .bottom .in .switch .switch_head .switch_head_wrap {
    background: white;
    padding: 3px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cost .wrap .body .item .bottom .in .switch .switch_head .switch_head_wrap span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 44px;
    text-align: center;
    border-radius: 30px;
    line-height: 1.2;
    padding: 4px 8px;
    cursor: pointer;
    color: var(--main-basic-color);
}
.cost .wrap .body .item .bottom .in .switch .switch_head .switch_head_wrap span.active {
    background: var(--main-basic-color);
    color: white;
}
.cost .wrap .body .item .bottom .in .switch .switch_head .switch_head_wrap span.sh2 {
    /* color: var(--main-basic-color); */
}
.cost .wrap .body .item .bottom .in .switch .switch_body {
    height: 100%;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div {
    display: none;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div.active {
    display: block;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .price {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .price > span {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    /* background: white;
    border-radius: 16px; */
    /* border: 1px solid var(--main-basic-color); */
    font-size: 26px;
    font-weight: 600;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .price select {
    padding: 8px 4px 8px 8px;
    font-size: 26px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .price select:hover {
    opacity: 0.8;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .price select option {
    font-size: 16px;
    font-weight: 400;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .desc .main {
    /* font-weight: 600; */
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 8px;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .desc .main span {
    display: inline-block;
    background: #F1E4BC;
    background: white;
    /* color: var(--main-basic-color); */
    border-radius: 5px;
    padding: 3px 5px;
}
.cost .wrap .body .item .bottom .in .switch .switch_body > div .desc .sub_main {
    font-size: 14px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}
.cost .wrap .body .item .bottom .in .btn {
    display: flex;
    justify-content: center;
}



.cost .wrap .body .item.with_select {
    padding: 110px 0 474px;
}
.cost .wrap .body .item.with_select .bottom {
    height: 474px;
}
.cost .wrap .item .bottom .in .form_item {
    position: relative;
    margin-bottom: 20px;
}
.cost .wrap .item .bottom .in .form_item span.capt {
    display: block;
    color: #5C979E;
    margin-bottom: 10px;;
}
.cost .wrap .item .bottom .in .form_item select,
.cost .wrap .item .bottom .in .form_item input {
    width: 100%;
}
.cost .wrap .item .bottom .in .form_item select option:disabled {
    color: lightgray;
}
.cost .wrap .item .bottom .in .form_item select option span {
    font-size: 14px;
}
.cost .wrap .item .bottom .in .form_item.warning select {
    border-bottom: 1px solid var(--main-btn-color);
}
.cost .wrap .item .bottom .in .form_item.warning .warning_label {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: inline-block;
    color: var(--main-btn-color);
    font-size: 14px;
}

.cost .wrap .item .bottom .in .form_item .all_citizenship {
    position: relative;
    margin-bottom: 10px;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship input {
    cursor: default;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 16px;
    right: 10px;
    background: url(../img/icon_arrow.png) no-repeat;
    background-size: contain;
    transition: 0.2s;
    pointer-events: none;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship.open::after {
    transform: rotate(-180deg);
}
.cost .wrap .item .bottom .in .form_item .all_citizenship .citizenship_list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    max-height: 200px;
    border: 1px solid var(--text-basic);
    border-radius: 5px;
    overflow: hidden;
    overflow-y: auto;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship.open .citizenship_list {
    /* position: relative; */
    z-index: 2;
    display: block;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship .citizenship_list span {
    display: block;
    width: 100%;
    padding: 5px 16px;
    cursor: default;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship .citizenship_list span:hover {
    background: #3f8ffe;
    color: white;
}
.cost .wrap .item .bottom .in .form_item .all_citizenship .warning_label {
    /* display: none; */
    position: absolute;
    top: 50px;
    left: 0;
    /* display: inline-block; */
    color: var(--main-btn-color);
    font-size: 14px;
    z-index: 1;
}


.cost .wrap .item.form2 {
    padding: 0 20px 40px;
}
.cost .wrap .item.form2 .form2_head {
    min-height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.cost .wrap .item.form2 .form2_foot {
    padding-top: 40px;
}
.cost .wrap .item.form2 .form2_foot button {
    width: 100%;
}

.cost .wrap .body.form2_all {
    display: flex;
    flex-direction: column;
}
.cost .wrap .body.form2_all .item {
    width: 100%;
}
@media only screen and (min-width:768px) {
    .cost {
        padding-bottom: 100px;
    }
    .cost .wrap .head {
        padding: 100px 0 50px;
    }

    .cost .wrap .body {
        gap: 40px;
        justify-content: center;
        /* flex-wrap: wrap; */
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(410px,1fr));
        justify-items: center;
    }
    .cost .wrap .body .item {
        /* width: 410px; */
        width: 100%;
        max-width: 560px;
        /* padding: 30px 30px 100px; */
        transition: 0.2s;
    }
    .cost .wrap .body .item:hover {
        box-shadow: 3px 3px 6px var(--light-green);
    }
    .cost .wrap .body .item .middle .in {
        padding: 25px;
    }

    .cost .wrap .item .bottom .in .form_item .all_citizenship {
        margin-bottom: 20px;
    }
    .cost .wrap .body .item .bottom .in .switch {
        gap: 20px;
    }
    .cost .wrap .body .item .bottom .in .switch .switch_body > div .price {
        padding-bottom: 20px;
    }


    .cost .wrap .body.form2_all {
        display: grid;
        align-items: flex-start;
    }
}
/*-------------------cost end----------------------*/


/*-------------------visa_info----------------------*/
.visa_info {
    padding-top: 50px;
    padding-bottom: 50px;
}
.visa_info .wrap .head h2 {
    margin-bottom: 30px;
}
.visa_info .wrap .desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.visa_info .wrap .desc p {
    background: var(--light-green);
    border: 1px solid rgba(22, 81, 88, 0.2);
    border-radius: 16px;
    padding: 24px;
    line-height: 1.3;
    color: var(--text-basic);
}
@media only screen and (min-width:768px) {
    .visa_info {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .visa_info .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .visa_info .wrap h2 {
        text-align: left;
    }
}
/*-------------------visa_info end----------------------*/

/*-------------------visa_info2----------------------*/
.visa_info2 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.visa_info2 .wrap .head h2 {
    margin-bottom: 30px;
}
.visa_info2 .wrap .desc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 16px;
}
.visa_info2 .wrap .desc h2 {
    /* display: flex;
    align-items: center; */
    padding-bottom: 34px;
}
.visa_info2 .wrap .desc > div {
    background: var(--light-green);
    /* border: 1px solid rgba(22, 81, 88, 0.2); */
    border-radius: 16px;
    padding: 24px;
    
}
.visa_info2 .wrap .desc > div p {
    line-height: 1.3;
    color: var(--text-basic);
    /* padding-left: 40px; */
}
.visa_info2 .wrap .desc > div h3 {
    position: relative;
    /* text-transform: uppercase; */
    font-size: 24px;
    font-weight: 600;
    color: var(--main-dark-color);
    display: block;
    margin-bottom: 15px;
    /* padding-left: 10px; */
    /* border-left: 2px solid var(--main-basic-color); */
}
.visa_info2 .wrap .desc > div h3 span {
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--main-basic-color);
}
.visa_info2 .wrap .desc > div .capt::before {
    /* position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--main-basic-color);
    bottom: -15px;
    left: 0; */
}
/* .visa_info2 .wrap .desc > div .capt::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-basic);
    top: 6px;
    left: 0;
    opacity: 0.6;
} */
@media only screen and (min-width:768px) {
    .visa_info2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .visa_info2 .wrap {
        /* display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px; */
    }
    .visa_info2 .wrap .desc h2 {
        display: flex;
        align-items: center;
        padding-bottom: 0;
        /* text-align: left; */
        border: 1px solid rgba(22, 81, 88, 0.2);
        padding: 24px;
        border-radius: 16px;
    }
    .visa_info2 .wrap h2 {
        
    }
    .visa_info2 .wrap .desc {
        grid-template-columns: repeat(auto-fit, minmax(400px,1fr));
    }
}
/*-------------------visa_info2 end----------------------*/


/*-------------------visa_need----------------------*/
.visa_need {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--light-green);
}
.visa_need .wrap .head h2 {
    margin-bottom: 30px;
}
.visa_need .wrap .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.visa_need .wrap .body .item {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    background: white;
    overflow: hidden;
}
.visa_need .wrap .body .item .img {
    width: 100%;
    aspect-ratio: 400/300;
    background: white;
    border-bottom: 1px solid var(--light-green);
}
.visa_need .wrap .body .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.visa_need .wrap .body .item .desc {
    padding: 20px;
    line-height: 1.3;
}
@media only screen and (min-width:768px) {
    .visa_need {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .visa_need .wrap .head h2 {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width:1100px) {
    .visa_need .wrap .body {
        justify-content: space-evenly;
    }
}
/*-------------------visa_need end----------------------*/

/*-------------------visa_document----------------------*/
.visa_document {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--light-green);
}
.visa_document .wrap .head h2 {
    margin-bottom: 30px;
}
.visa_document .wrap .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.visa_document .wrap .body p {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    background: white;
    overflow: hidden;
    padding: 8px;
    min-height: 66px;
    padding-left: 74px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    /* overflow: hidden; */
}
.visa_document .wrap .body p::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 8px;
    /* background: var(--light-green) url(../img/icon_tick.png) center no-repeat; */
    background: var(--main-basic-color) url(../img/icon_tick.png) center no-repeat;
    /* background: var(--text-basic) url(../img/icon_tick.png) center no-repeat; */
    background-size:  30px 30px;
    left: 8px;
    top: calc(50% - 25px);
}
.visa_document .wrap .body .item .img {
    width: 100%;
    aspect-ratio: 400/300;
    background: #EBF2F0;
    /* border-bottom: 1px solid var(--light-green); */
    border-radius: 16px;
}
.visa_document .wrap .body .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.visa_document .wrap .body .item .desc {
    padding: 20px;
    line-height: 1.3;
}
@media only screen and (min-width:768px) {
    .visa_document {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .visa_document .wrap .head h2 {
        margin-bottom: 50px;
    }
    .visa_document .wrap .body {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (min-width:1100px) {
    .visa_document .wrap .body {
        justify-content: space-evenly;
    }
}
/*-------------------visa_document end----------------------*/

/*-------------------visa_form----------------------*/
.visa_form {
    background: var(--light-green);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.visa_form .wrap {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; */
}

.visa_form .wrap .wrap_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.visa_form .wrap .wrap_form .summary {
    width: 100%;
    max-width: 420px;
}
.visa_form .wrap .wrap_form .summary .in {
    width: 100%;
    background: var(--main-basic-color);
    border: 1px solid var(--main-basic-color);
    color: white;
    border-radius: 16px;
    /* max-width: 380px; */
}
.visa_form .wrap .wrap_form .summary .in .top {
    padding: 20px 30px;
}
.visa_form .wrap .wrap_form .summary .in .top p {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
}

.visa_form .wrap .wrap_form .summary .in .middle {
    padding-top: 20px;
    /* padding: 20px; */
    border-radius: 16px;
    background: var(--light-green);
    background: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.visa_form .wrap .wrap_form .summary .in .middle .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px;
}
.visa_form .wrap .wrap_form .summary .in .middle .item > span {
    color: var(--text-basic);
    font-size: 14px;
    line-height: 1.3;
    /* margin-bottom: 5px; */
}
.visa_form .wrap .wrap_form .summary .in .middle .item > p {
    padding-left: 30px;
    /* font-weight: 500; */
    font-size: 14px;
    line-height: 1.3;
    color: black;
}
/* .visa_form .wrap .wrap_form .summary .in .middle .item > span {
    color: var(--text-basic);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.visa_form .wrap .wrap_form .summary .in .middle .item > p {
    padding-left: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: black;
} */
.visa_form .wrap .wrap_form .summary .in .middle .item ul {
    padding-left: 22px;
}
.visa_form .wrap .wrap_form .summary .in .middle .item ul li {
    position: relative;
    margin-bottom: 5px;
    color: black;
    
    /* font-weight: 500; */
    font-size: 14px;
    line-height: 1.3;
}
.visa_form .wrap .wrap_form .summary .in .middle .item ul li:last-child {
    margin-bottom: 0;
}
.visa_form .wrap .wrap_form .summary .in .middle .item ul li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-basic);
    top: 6px;
    left: -13px;
    opacity: 0.6;
}
.visa_form .wrap .wrap_form .summary .in .middle .item ul li span {
    /* font-weight: 700; */
    color: var(--main-basic-color);
    /* color: var(--text-basic); */
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid var(--main-basic-color);
    padding: 12px 20px;
    background: var(--light-green);
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa > span {
    color: var(--text-basic);
    /* color: var(--main-basic-color); */
    font-size: 14px;
    /* font-weight: 500; */
    line-height: 1.3;
    display: flex;
    align-items: center;
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio .form_radio input {
    display: none;
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio .form_radio label {
    background: white;
    border-radius: 8px;
    min-width: 32px;
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    cursor: pointer;
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio .form_radio label:hover {
    border: 1px solid var(--text-basic);
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio .form_radio input:checked + label {
    border: 1px solid var(--text-basic);
}
.visa_form .wrap .wrap_form .summary .in .middle .count_visa .visa_radio .form_radio label img {
    height: 24px;
}


.visa_form .wrap .wrap_form .summary .in .bottom {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.visa_form .wrap .wrap_form .summary .in .bottom .bottom_in {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.visa_form .wrap .wrap_form .summary .in .bottom .bottom_in .item {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 5px;
    font-size: 20px;
    line-height: 1.3;
    /* text-align: center; */
}
.visa_form .wrap .wrap_form .summary .in .bottom .bottom_in .item:first-child {
    /* font-weight: 600; */
    font-size: 16px;
    opacity: 0.8;
}
.visa_form .wrap .wrap_form .summary .in .bottom .bottom_in .item:last-child {
    font-weight: 600;
    font-size: 22px;
}
.visa_form .wrap .wrap_form .summary .in .bottom .summary_btn span {
    width: unset;
}

.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: var(--main-basic-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    /* border-radius: 16px; */
    /* box-shadow: 0px 0px 5px rgb(105 190 174 / 70%); */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed .bottom_in {
    flex-grow: 1;
    justify-content: center;
}
.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed .bottom_in .item:first-child {
    font-size: 12px;
}
.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed .bottom_in .item:last-child {
    font-size: 14px;
    font-weight: 700;
}
.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed .bottom_in .item {
    flex: none;
    display: flex;
    gap: 16px;
}
.visa_form .wrap .wrap_form .summary .in .bottom.btn_fixed .summary_btn {
    flex: none;
}


.visa_form .wrap .wrap_form .body {
    width: 100%;
    max-width: 600px;
}
.visa_form .wrap .wrap_form .body .body_in {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.visa_form .wrap .wrap_form .body .body_in form {
    position: relative;
    width: 100%;
    /* border: 1px solid var(--main-basic-color); */
    box-shadow: 0px 0px 5px rgba(105, 190, 174, 0.7);
    background: var(--main-basic-color);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}
.visa_form .wrap .wrap_form .body .body_in form hr {
    width: 100%;
    height: 1px;
    background: var(--text-basic);
    opacity: 0.2;
}

.visa_form .wrap .wrap_form .body .body_in form .add_one {
    display: none;
}
.visa_form .wrap .wrap_form .body .body_in form.add_one_btn {
    padding-bottom: 55px;
}

.visa_form .wrap .wrap_form .body .body_in form.add_one_btn .add_one {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 5px;
    left: 0;
    right: 0;
}
.visa_form .wrap .wrap_form .body .body_in form.add_one_btn .add_one span {
    text-align: center;
    line-height: 1.3;
}
.visa_form .wrap .wrap_form .body .body_in form.add_one_btn .add_one span .plus {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid white;
    flex: none;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 0;
}
.visa_form .wrap .wrap_form .body .body_in form .in {
    width: 100%;
    /* border: 1px solid var(--main-basic-color); */
    /* box-shadow: 0px 0px 5px rgba(105, 190, 174, 0.7); */
    background: white;
    border-radius: 16px;
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.visa_form .wrap .wrap_form .body .body_in form .top {
    /* padding-top: 10px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 30px;
}
.visa_form .wrap .wrap_form .body .body_in form .top > p {
    font-size: 20px;
    font-weight: 500;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar {
    width: 100%;
    /* background: red; */
    display: flex;
    justify-content: space-between;
    gap: 4px;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar span {
    height: 10px;
    /* border-radius:16px; */
    border: 1px solid var(--main-basic-color);
    flex-grow: 1;
    opacity: 0.4;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar span:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar span:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar span.fill {
    background: var(--main-basic-color);
    opacity: 1;
}
.visa_form .wrap .wrap_form .body .body_in form .top .progressbar span.current {
    background: var(--light-green);
    /* border: 1px solid var(--light-green); */
    border: 1px solid var(--main-basic-color);
    opacity: 1; 
}

.visa_form .wrap .wrap_form .body .body_in form .middle {
    padding: 0 30px;
}

.visa_form .wrap .wrap_form .body .body_in form .bottom {
    position: relative;
    padding: 30px 30px 20px;
    /* border-top: 1px solid var(--text-basic); */
    /* background: var(--light-green); */
    border-radius: 0 0 16px 16px;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom::before {
    position: absolute;
    content: "";
    width: calc(100% - 60px);
    height: 1px;
    background: var(--text-basic);
    top: 0;
    left: 30px;
    opacity: 0.2;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .left .back {
    /* color: var(--main-basic-color);
    text-decoration: underline;
    cursor: pointer; */
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .left .back:hover {
    /* text-decoration: none; */
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .btn_submit {
    display: none;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .save_msg p {
    color: #AEBEBB;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}


.visa_form .wrap .wrap_form .finish_block {
    border-radius: 16px;
    background: white;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    /* display: flex;
    justify-content: space-between;
    flex-wrap: wrap; */
    gap: 16px;
}

.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_block.button_pay .pay_btn {
    display: flex;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_block.button_pay .next_anket {
    display: none;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_block.button_link .pay_btn {
    display: none;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_block.button_link .next_anket {
    display: flex;
}

.visa_form .wrap .wrap_form .body .body_in form .bottom .btn {
    position: relative;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_btn.disabled {
    /* background: lightgray; */
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_btn.disabled.no_next_btn_alert + .next_btn_alert,
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_btn + .next_btn_alert {
    display: none;
}
.visa_form .wrap .wrap_form .body .body_in form .bottom .btn .right .next_btn.disabled + .next_btn_alert {
    display: block;
    position: absolute;
    right: 0;
    bottom: -15px;
    font-size: 12px;
    color: var(--main-btn-color);
}
@media only screen and (min-width:768px) {
    .visa_form {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 100px;
    }
    .visa_form .wrap .head h2 {
        margin-bottom: 30px;
    }
    .visa_form .wrap .wrap_form {
        /* display: grid;
        grid-template-columns: 0.45fr 0.55fr;
        align-items: flex-start; */
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
    }
    .visa_form .wrap .wrap_form .body {
        gap: 50px;
    }
    .visa_form .wrap .wrap_form .summary {
        position: sticky;
        top: 0;
    }
    .visa_form .wrap .wrap_form .summary .in .middle .item > p {
        padding-left: 0;
    }
    .visa_form .wrap .wrap_form .summary .in .middle .item,
    .visa_form .wrap .wrap_form .summary .in .middle .count_visa {
        display: grid;
        grid-template-columns: 0.45fr 0.55fr;
    }
}
/*-------------------visa_form end----------------------*/


/*-------------------visa_result----------------------*/
.visa_result {
    background: var(--light-green);
    padding: 30px 0;
}
.visa_result .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
}
.visa_result .wrap .res {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.visa_result .wrap .res .img {
    /* background: var(--main-basic-color); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}
.visa_result .wrap .res .img img {
    width: 24px;
}
.visa_result .wrap .res .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    /* max-width: 460px; */
}
.visa_result .wrap .res .desc h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.visa_result .wrap .res .desc .sub_capt {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}
.visa_result .wrap .res .desc p:not(.sub_capt) {
    color: var(--text-basic);
    line-height: 1.3;
}

.visa_result .wrap .res .visa_result_contact {
    text-align: center;
}
.visa_result .wrap .res .visa_result_contact > div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.visa_result .wrap .res .visa_result_contact > div a {
    color: var(--text-basic);
    line-height: 1.3;
}
.visa_result .wrap .res .visa_result_contact > div a:hover {
    text-decoration: none;
}
@media only screen and (min-width:768px) {
    .visa_result {
        padding: 100px;
    }
    .visa_result .wrap {
        padding: 30px 20px;
    }
    .visa_result .wrap .res {
        gap: 30px;
        padding: 40px 20px;
    }
    .visa_result .wrap .res .desc {
        padding-bottom: 10px;
    }
    .visa_result .wrap .res .desc h1 {
        margin-bottom: 30px;
    }
}
/*-------------------visa_result end----------------------*/


/*-------------------footer----------------------*/
footer {
    background: var(--main-dark-color);
    padding-top: 32px;
    padding-bottom: 32px;
}
footer .wrap .up {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
footer .wrap .up .f_logo a {
    display: inline-block;
    background: white;
    border-radius: 8px;
    padding: 8px;
}
footer .wrap .up .f_logo a img {
    height: 70px;
}
footer .wrap .up .f_nets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
footer .wrap .up .f_nets a {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    transition: 0.2s;
}
footer .wrap .up .f_nets a:hover {
    background: rgba(255,255,255,0.2);
}
footer .wrap .up .f_nets a img {
    height: 50%;
}
footer .wrap .up .f_menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
footer .wrap .up .f_menu ul li a {
    color: white;
    text-decoration: none;
}
footer .wrap .up .f_menu ul li a:hover {
    /* color: var(--main-btn-color-hover); */
    /* color: var(--yellow); */
    text-decoration: underline;
}

footer .wrap .down {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.5);
}
footer .wrap .down {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
}
footer .wrap .down .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
footer .wrap .down .links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.3;
}
footer .wrap .down .links a:hover {
    text-decoration: none;
}
footer .wrap .down .info p {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}
@media only screen and (min-width:768px) {
    footer .wrap .up {
        flex-direction: row;
        justify-content: space-between;
    }
    footer .wrap .up .f_nets {
        gap: 16px;
    }

    footer .wrap .down {
        flex-direction: row;
        justify-content: space-between;
    }
    footer .wrap .down .links {
        align-items: flex-end;
        text-align: right;
    }
    footer .wrap .down .info p {
        text-align: left;
    }
}
@media only screen and (min-width:960px) {
    footer {
        padding-top: 24px;
        padding-bottom: 16px;
    }
    footer .wrap .up {
        display: grid;
        grid-template-areas: "f_logo f_nets f_menu";
    }
    footer .wrap .up .f_logo {
        grid-area: f_logo;
    }
    footer .wrap .up .f_menu {
        grid-area: f_menu;
    }
    footer .wrap .up .f_nets {
        grid-area: f_nets;
    }
    footer .wrap .up .f_menu ul {
        flex-direction: row;
    }

    footer .wrap .down {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 24px;
        padding-top: 16px;
    }
    footer .wrap .down .links {
        flex-direction: row;
        justify-content: flex-end;
        /* align-self: end; */
    }
    footer .wrap .down .info {
        text-align: right;
    }
}
/*-------------------footer end----------------------*/




/*-------------------popup_question----------------------*/
/* .popup_question {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
    background: white;
    border-radius: 20px;
}
.popup_question .content_question {
    padding: 50px 20px 40px;
}
.popup_question .content_question form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup_question .mfp-close {
    display: none;
}
.popup_question .popup-modal-dismiss {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: 0.2s;
}
.popup_question .popup-modal-dismiss::before {
    position: absolute;
    content: "";
    width: 130%;
    height: 2px;
    top: 10px;
    left: -3px;
    background: #666769;
    transform: rotate(45deg);
    transition: 0.2s;
}
.popup_question .popup-modal-dismiss::after {
    position: absolute;
    content: "";
    width: 130%;
    height: 2px;
    bottom: 10px;
    left: -3px;
    background: #666769;
    transform: rotate(-45deg);
    transition: 0.2s;
}
.popup_question .popup-modal-dismiss:hover:before {
    background: #E5083C;
}
.popup_question .popup-modal-dismiss:hover::after {
    background: #E5083C;
}


.popup_question .head {
    margin-bottom: 30px;
}
.popup_question .caption {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.popup_question .caption span {
    display: inline-block;
    font-size: 18px;
}
.popup_question .caption span span {
    color: #E5083C;
}
.popup_question .desc {
    font-size: 13px;
    line-height: 1.2;
    margin-top: 20px;
    color: #666769;
}
.popup_question .head .warning {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.2;
    color: #666769;
    text-align: left;
}
.popup_question .head .warning p {
    margin-bottom: 5px;
}
.popup_question .head .warning p:last-child {
    margin-bottom: 0;
}

.popup_question input {
    width: 100%;
    max-width: 280px;
    height: 46px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.25);
    padding-left: 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: black;
    margin-bottom: 15px;
}
.popup_question input:last-child {
    margin-bottom: 0;
}
.popup_question input::placeholder {
    color: #888;
}
.popup_question input:active,
.popup_question input:focus,
.popup_question input:hover {
    outline: none;
}


.popup_question button {
    width: 100%;
    max-width: 280px;
    margin-top: 15px;
    height: 46px;
    border-radius: 100px;
    border: none;
    background: #E5083C;
    font-size: 16px;
    color: white;
    transition: 0.2s;
    cursor: pointer;
    box-shadow: 4px 4px 15px rgba(26,25,30,0.4);
}
.popup_question button:hover {
    box-shadow: 7px 7px 15px rgba(26,25,30,0.4);
}

.popup_question .content_question .form_ok {
    text-align: center;
    padding: 20px 0 0;
    display: none;
    line-height: 1;
}
.popup_question .content_question .form_ok .capt {
    font-size: 20px;
    padding-bottom: 0;
}
.popup_question .content_question .form_ok .desc {
    font-size: 13px;
}
.popup_question .content_question .form_ok button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
} */
/*-------------------end popup_question----------------------*/



/*-------------------popup_form----------------------*/
.modal {
    /* display: none; */
    position: fixed;
    z-index: 100;
    /* padding-top: 100px; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgba(99, 99, 99, 0.8); */
    background: rgba(22, 81, 88, 0.8);
    backdrop-filter: blur(8px);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal .modal_content {
    width: 100%;
    max-width: 470px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    /* background-color: white; */
    background: var(--light-green);
    margin: auto;
    padding: 24px 20px;
    border-radius: 16px;
}
.modal .modal_content .modal_form_content_window {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal .modal_content .modal_form_content_window .capt {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 20px; */
}
.modal .modal_content .modal_form_content_window .form_body form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.modal .modal_content .modal_form_content_window .form_body form .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal .modal_content .modal_form_content_window .form_body form .btn {
    display: flex;
    justify-content: center;
}
.modal form .item {
    position: relative;
}
.modal form .item.warning .warning_label {
    display: inline-block;
    /* position: absolute;
    bottom: -18px;
    left: 0; */
    color: var(--main-btn-color);
    font-size: 12px;
}
.modal form .item label span {
    color: var(--main-btn-color);
}
.modal form .item.warning label::after {
    /* position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon_warning_red.png) no-repeat;
    background-size: contain;
    right: 24px;
    bottom: 12px; */
}


.modal .modal_content .modal_form_finish_window .in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 50px 0;
    text-align: center;
}
.modal .modal_content .modal_form_finish_window .in .img {
    width: 50px;
    height: 50px;
    background: var(--main-basic-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.modal .modal_content .modal_form_finish_window .in .img img {
    width: 24px;
}
.modal .modal_content .modal_form_finish_window .in .capt {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
}
.modal .modal_content .modal_form_finish_window .in .msg {
    color: var(--text-basic);
    line-height: 1.3;   
}

.modal .modal_content .form_close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    width: 26px;
    height: 26px;
    /* background: url(../../icons/x.svg) no-repeat; */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s;
}
.modal .modal_content .form_close:hover {
    opacity: 0.7;
}
.modal .modal_content .form_close span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--text-basic);
}
.modal .modal_content .form_close span:first-child {
    transform: translateY(12px) rotate(45deg);
}
.modal .modal_content .form_close span:last-child {
    transform: translateY(-12px) rotate(-45deg);
}
@media only screen and (min-width:768px) {
    /* .modal .modal_content {
        padding: 32px;
    }
    .modal .modal_content .modal_form_finish_window {
        display: none;
    }
    .modal .modal_content .modal_form_finish_window .in {
        padding: 82px 0;
    }
    .modal .modal_content .form_close {
        top: 32px;
        right: 32px;
    } */
}
/*-------------------popup_form end----------------------*/







/*-------------------Состояния полей в анкете----------------------*/
fieldset label,
fieldset .req_radio {
    position: relative;
}
.warning input,
.warning select,
fieldset .form_item.warning .form_radio_group {
    /* position: relative; */
    border-bottom: 1px solid var(--main-btn-color);
}
fieldset .req_checkbox.warning input[type="checkbox"] + p::before {
    border: 1px solid var(--main-btn-color);
}
fieldset div.warning .warning_label {
    display: inline-block;
    position: absolute;
    bottom: -18px;
    left: 0;
    color: var(--main-btn-color);
    font-size: 12px;
    /* padding-left: 15px; */
}
fieldset div.warning label::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon_warning_red.png) no-repeat;
    background-size: contain;
    right: 24px;
    bottom: 12px;
}
fieldset div.req_radio.warning label::after,
fieldset .req_checkbox.warning label::after {
    display: none;
}
fieldset div.req_email.field_ok > label::after,
fieldset div.req_value.field_ok > label::after,
fieldset div.req_date.field_ok > label::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon_check.png) no-repeat;
    background-size: contain;
    right: 24px;
    bottom: 12px;
}
.field_ok {
    position: relative;
}
.field_ok input {
    border: 1px solid var(--main-basic-color);
}
.field_ok::after {
    /* position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    background: url(../img/icon_check.png) no-repeat;
    background-size: contain;
    bottom: 10px;
    right: 16px; */
}
/*-------------------Состояния полей в анкете----------------------*/



/*-------------------news----------------------*/
.news {
    background: var(--light-green);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.news .head {
    padding: 0 0 30px;
}
.news h1 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--main-dark-color);
}
.news .body {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    justify-content: center;
    gap: 24px;
}
.news .body .item {
    position: relative;
    /* width: 100%; */
    /* max-width: 400px; */
    border-radius: 16px;
    background: white;
    padding: 16px 16px 40px;
}
.news .body .item a {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: black;
}
.news .body .item .img {
    width: 100%;
    aspect-ratio: 300/150;
    border-radius: 10px;
    overflow: hidden;
}
.news .body .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .body .item .desc {
    min-height: 44px;
}
.news .body .item .desc p {
    line-height: 1.3;
    color: var(--text-color);
}
.news .body .item .more_article {
    position: absolute;
    right: 24px;
    bottom: 16px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    outline: none;
    /* border: 1px solid var(--main-btn-color); */
    border-radius: 50%;
    /* width: 44px; */
    height: 12px;
    font-size: 30px;
    /* padding: 0 16px; */
    transition: 0.2s;
    color: var(--main-btn-color);
    cursor: pointer;
}
.news .body .item:hover .more_article {
    right: 16px;
}
@media only screen and (min-width:768px) {
    .news {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 100px;
    }
    .news .head {
        padding: 0 0 50px;
    }
    .news h1 {
        font-size: 30px;
    }
    .news .body .item {
        padding: 24px 24px 40px;
    }
    .news .body .item .more_article {
        right: 32px;
    }
    .news .body .item:hover .more_article {
        right: 24px;
    }
}
/*-------------------news end----------------------*/

/*-------------------news_single----------------------*/
.news_single {
    /* background: var(--light-green); */
    padding-top: 30px;
    padding-bottom: 50px;
    /* margin-bottom: 50px; */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.news_single .head span {
    font-size: 14px;
    color: var(--main-dark-color);
}
.news_single .head span img {
    width: 18px;
    position: relative;
    top: 4px;
    margin-right: 5px;
}
.news_single h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-align: left;
    color: var(--main-basic-color);
}
.news_single .body {
    background: white;
}
.news_single .body h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 16px 0;
}
.news_single .body p {
    line-height: 1.4;
    margin-bottom: 16px;
}
.news_single .body a {
    color: var(--text-basic);
    word-wrap: break-word;
}
.news_single .body a:hover {
    color: var(--main-basic-color-hover);
    text-decoration: none;
}

.news_single .body ul {
    padding: 0 16px 16px 40px;
}
.news_single .body ul li {
    position: relative;
    line-height: 1.4;
    margin-bottom: 10px;
}
.news_single .body ul li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-basic-color);
    top: 8px;
    left: -16px;
}
.news_single .body ul li:last-child {
    margin-bottom: 0;
}
.news_single .body img {
    max-width: 100%;
    margin: 16px 0;
}

.news_single .body ol {
    padding: 0 16px 16px 40px;
    list-style-type: decimal;
}
.news_single .body ol li {
    line-height: 1.4;
    margin-bottom: 10px;
}
.news_single .body ol li:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width:768px) {
    .news_single {
        padding-top: 50px;
        padding-bottom: 100px;
        /* margin-bottom: 100px; */
    }
    .news_single .head {
        padding: 0 0 30px;
    }
    .news_single h1 {
        font-size: 30px;
        margin-top: 50px;
    }
    .news_single .body img.alignright {
        float: right;
        margin: 0 0 20px 20px;
    }
}
/*-------------------news_single end----------------------*/


/*-------------------about_page----------------------*/
.about_page {
    /* background: var(--light-green); */
    padding-top: 0;
    padding-bottom: 30px;
    /* margin-bottom: 50px; */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.about_page .head span {
    font-size: 14px;
    color: var(--main-dark-color);
}
.about_page .head span img {
    width: 18px;
    position: relative;
    top: 4px;
    margin-right: 5px;
}
.about_page h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-align: left;
    color: var(--main-basic-color);
}
.about_page .body {
    background: white;
}
.about_page .body h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 16px 0;
}
.about_page .body p {
    line-height: 1.4;
    margin-bottom: 16px;
}
.about_page .body a {
    color: var(--text-basic);
    word-wrap: break-word;
}
.about_page .body a:hover {
    color: var(--main-basic-color-hover);
    text-decoration: none;
}

.about_page .body ul {
    padding: 0 16px 16px 40px;
}
.about_page .body ul li {
    position: relative;
    line-height: 1.4;
    margin-bottom: 10px;
}
.about_page .body ul li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-basic-color);
    top: 8px;
    left: -16px;
}
.about_page .body ul li:last-child {
    margin-bottom: 0;
}
.about_page .body img {
    max-width: 100%;
    margin: 16px 0;
}

.about_page .body ol {
    padding: 0 16px 16px 40px;
    list-style-type: decimal;
}
.about_page .body ol li {
    line-height: 1.4;
    margin-bottom: 10px;
}
.about_page .body ol li:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width:768px) {
    .about_page {
        padding-bottom: 50px;
        /* margin-bottom: 100px; */
    }
    .about_page .head {
        padding: 0 0 20px;
    }
    .about_page h1 {
        font-size: 30px;
        margin-top: 50px;
    }
    .about_page .body img.alignright {
        float: right;
        margin: 0 0 20px 20px;
    }
}
/*-------------------about_page end----------------------*/