:root {
    --bg: #fff;
    --bg2: #e0e8ff;
    --bg3: #0b2e47;
    --bg4: #ebf3ff;
    --text: #000;
    --text1: #fff;
    --text2: #b4b4b4;
    --color1: #eeb24f;
    --color2: #0b2e47;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 3px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

h1, h3 {
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2;
}

input {
	color: var(--text)!important;
}

/* Общие стили */
.ailan-title1 {
    position: relative;
}

.ailan-title1 > p:nth-child(1) {
    color: var(--text2);
}

.ailan-title1 h1, h2 {
    color: var(--color2);
    font-size: 35px;
}

.ailan-title1 h3 {
    color: var(--color2);
    font-size: 30px;
}

.e-btn:hover {
    
}

@media (max-width: 860px) {
    .ailan-title1 h3 {
        color: var(--color2);
        font-size: 24px;
    }
    .ailan-title1 > p {
        font-size: 11px;
    }
}

/* AILAN HEADER */

header {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: space-between;
    background: var(--bg3);
    color: var(--text1);
    font-size: 18px;
}

@media (max-width: 860px) {
    header {
        font-size: 14px;
    }
}

header > div {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-inline: 40px;
}

@media (max-width: 860px) {
    header > div {
        margin-inline: 20px;
    }
}

.ailan-header_logo {
    
}

.ailan-header_logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 860px) {
    .ailan-header_logo img {
        width: 120px;
    }
}

.ailan-header_menu {
    align-items: center;
}

.ailan-header_menu a {
    height: 100%;
    padding: 30px 15px;
    color: var(--text2);
    transition: 0.3s;
}

@media (max-width: 860px) {
	
	.ailan-header_menu {
		display: none!important;
	}
	
    .ailan-header_menu a {
        padding: 30px 5px;
    }
}

.ailan-header_menu a.active, .ailan-header_menu a:hover {
    color: var(--text1)
}

.ailan-header_lang {
    align-items: center;
}

.ailan-header_lang > a {
    margin-right: 5px;
}

/* MOB MENU 11.0 */
.mobmenu-btn {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 35px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
    z-index: 9;
}

@media (max-width: 2600px) {
    .mobmenu-btn {
        font-size: 30px;
		display: none!important;
    }
}

@media (max-width: 860px) {
    .mobmenu-btn {
		display: block!important;
    }
}
.mobmenu-btn.active {
    opacity: 0;
    visibility: hidden;
}

.mobmenu-btn.active:before {
    content: "\f00d";
}

.mobmenu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    margin-left: 0;
    background: var(--bg3);
    padding: 40px;
    color: #fff;
    transition: left 0.3s;
    overflow-y: auto;
    z-index: 8;
}

.mobmenu > a {
	margin-top: 20px;
	font-size: 18px;
}

.mobmenu.active {
    left: 0;
    border-radius: 0;
}

.mobmenu-sub > a.active + div {
    position: relative;
    top: 0;
    margin-bottom: 20px;
}

.mobmenu .mobmenu-close {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 860px) {
    .mobmenu .mobmenu-close {
        position: fixed;
        top: -40px;
        left: 240px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--bg2);
        font-size: 30px;
        text-align: center;
        transition: 0.3s;
    }

    .mobmenu.active .mobmenu-close {
        display: block;
        top: 20px;
    }
}

/* CONTAINER PAGE RULES */
.container .row ul {
    list-style: none;
    padding: 0;
	margin-bottom: 20px;
}
.container .row ul li {
    background-image: url('https://support-agency.kz/assets/check-icon.png');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 0 10%;
    padding-left: 30px;
    line-height: 20px;
    margin-bottom: 10px;
}
.container .row .table{
	border: 1px solid #eee;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
}
.container .row .table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
.container .row .table td{
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
}
.container .row .table tbody tr:nth-child(odd){
	background: #fff;
}
.container .row .table tbody tr:nth-child(even){
	background: #F7F7F7;
}

/* AILAN HOME */
.ailan-home {
    background-color: var(--bg);
}

.ailan-home .swiper-wrapper {
    height: 50%;
}

.ailan-home .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ailan-home_content {
    color: var(--text1);
    position: relative;
    z-index: 5;
}

.ailan-home_content h3 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 4;
}

@media (max-width: 860px) {
    .ailan-home_content h3 {
        font-size: 24px;
        letter-spacing: 2;
    }
}

.ailan-home_content p {
    font-size: 24px;
}

@media (max-width: 860px) {
    .ailan-home_content p {
		font-size: 16px;
	}
}

.ailan-home .e-cover img {
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.4) grayscale(0.5);
    /* z-index: 0; */
}

.ailan-home_stats {
    position: relative;
    width: 100%;
    min-height: 40%;
    padding: 30px 0;
    background-color: var(--bg3);
}

.ailan-home_stats .ailan-title1 h3 {
    color: var(--text1);
    margin-bottom: 0;
}

.ailan-home_stats_main {
    position: relative;
    background: var(--bg3);
    color: var(--text1);
    width: 30%;
    padding: 15px;
    font-size: 40px;
    text-align: center;
    margin: 0 auto;
    margin-top: -80px;
    border: 1px solid var(--color1);
    border-radius: var(--radius);
    z-index: 4;
}

@media (max-width: 860px) {
    .ailan-home_stats_main {
        font-size: 12px;
        text-align: center;
        padding: 5px;
    }
}

.ailan-home_stats_main > div {
    justify-content: center;
    padding-top: 22px;
}

.ailan-home_stats .e-grid4 > div {
    width: 100%;
    color: var(--text1);
    text-align: center;
    font-size: 20px;
    padding: 50px;
    border-right: 1px solid var(--text1);
	margin-top: auto;
}

.ailan-home_stats .e-grid4 > div > .e-flex {
    font-size: 46px;
    justify-content: center;
}

@media (max-width: 860px) {
    .ailan-home_stats .e-grid4 > div {
        font-size: 12px;
        padding: 10px;
    }
    .ailan-home_stats .e-grid4 > div > .e-flex {
        font-size: 36px;
    }
}

.ailan-home_stats hr {
    width: 80px;
    height: 2px;
    background: white;
    margin: 20px auto;
}


/* AILAN ABOUT */
.ailan-about {
    margin-bottom: 100px!important;
    z-index: 2;
}

.ailan-about img {
    padding-left: 40px;
    padding-bottom: 40px;
    border-radius: 30px;
}

.ailan-about_stat {
    padding: 25px 40px;
	width: 100%;
    height: 400px;
    position: relative;
}


@media (max-width: 860px) {
    .ailan-about_stat {
        height: 300px;
    }
}

.ailan-about_img-stat {
    position: absolute;
    background: var(--bg3);
    color: var(--text1);
    bottom: 40;
    padding: 15px 30px;
    text-align: center;
}

.ailan-about_img-stat h3, .ailan-about_img-stat p {
    margin: 0;
}

.ailan-about .ailan-title1 > a {
    display: block;
    margin: 0 auto;
    width: max-content;
}

@media (max-width: 860px) {
	.ailan-about .ailan-title1 > a {
		font-size: 14px;
	}
}

/* TRANSITION 1 */
.ailan-bg_transition1 {
    position: absolute;
    background-image: url('../assets/bg2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    z-index: 0;
    min-height: 600px;
    width: 100%;
}
/* 
.ailan-bg_transition1 .parallax {
    height: 500px;  Высота элемента 
     background-image: url('../assets/bg2.webp'); Путь к вашему изображению 
    background-attachment: fixed; 
     background-position: center; 
     background-repeat: no-repeat;
    background-size: cover;
} */

.ailan-bg_transition1 img {
    height: auto;
}

/* AILAN ADVANTAGES */
.ailan-advant {
    position: relative;
    min-height: 600px;
    margin-bottom: 0!important;
}

.ailan-advant_content {
    position: relative;
    z-index: 5;
}

.ailan-advant .ailan-title1 {
    position: relative;
    text-align: center;
    padding-top: 100px;
}

.ailan-advant_items {
    min-height: 250px;
    background-color: var(--color2);
    justify-content: center;
    align-items: flex-start;
    margin-top: 340px;
}

.ailan-advant_items > i {
    color: var(--text1);
    font-size: 36px;
}

@media (max-width: 860px) {
    .ailan-advant_items {
        min-height: 480px;
        margin-top: 160px;
		padding-bottom: 40px;
		flex-direction: column!important;
		align-items: center;
		justify-content: space-between!important;
    }
}

.ailan-advant_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--bg);
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-inline: 20px;
    padding: 30px 20px;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0px 3px 10px 0px var(--dark);
}


.ailan-advant_item > div {
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--color1);
}

.ailan-advant_item > div i {
    margin: 10px;
    font-size: 42px;
}  

@media (max-width: 860px) {
    .ailan-advant_item {
        width: 150px;
        height: 150px;
    }
    .ailan-advant_items > i {
        display: none;
    }

    .ailan-advant_item p {
        font-size: 14px;
    }

    .ailan-advant_item > div i {
        font-size: 24px;
    }
}

/* AILAN FORM */

.ailan-form {
    position: relative;
    background: var(--bg3);
    min-height: 400px;
    color: var(--text1);
    margin-bottom: 0!important;
    z-index: 10;
}

.ailan-form img {
    padding: 40px;
}


@media (max-width: 860px) {
    .ailan-form img {
		height: 300px;
	}
}

.ailan-form .form-send {
    margin-top: 30px;
}

.ailan-form .form-submit {
    grid-template-columns: 100%;
}

.ailan-form button {
    height: fit-content;
    width: 200px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .ailan-form .form-submit {
        grid-template-columns: 100%;
        margin-bottom: 10px;
    }
}

/* AILAN SERVICES */
.ailan-services {
    position: relative;
    background: var(--bg2);
    min-height: 100vh;
    height: fit-content;
    padding-bottom: 40px;
    margin-bottom: 0!important;
}

.ailan-services .ailan-title1 {
    padding-top: 60px;
    text-align: center;
}

.ailan-services_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
    overflow: hidden;
    width: 100%;
    height: 200px;
    font-weight: bold;
    box-shadow: 0px 0px 7px 0px lightgrey;
    transition: 0.5s;
}

.ailan-services_item:hover {
    color: var(--text1);
}

.ailan-services_item img {
    position: absolute;
    filter: opacity(0.4);
    z-index: 3;
    transition: 0.5s;
	height: 100%;
}

.ailan-services_item img:hover {
    filter: opacity(1) brightness(0.7);
    transform: scale(1.3);
}

.ailan-services_item p {
    width: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    z-index: 4;
    text-shadow: 0 0 1px black;
}

@media (max-width: 860px) {
    .ailan-services_item p {
        width: 80%;
		font-size: 18px;
    }
}

/* AILAN STEPS */
.ailan-steps {
    background-color: var(--bg3);
    padding-top: 40px;
}

.ailan-steps .ailan-title1 {
    text-align: center;
}

.ailan-steps .ailan-title1 h3 {
    color: var(--text1)
}

.ailan-steps_items {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.ailan-steps_items i {
    font-size: 40px;
    color: var(--text1);
}

.ailan-steps_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: var(--bg);
    width: 250px;
    height: auto;
    aspect-ratio: 5/5;
    padding: 30px 10px;
    margin-inline: 30px;
    border-radius: 100%;
    text-align: center;
    box-shadow: 0px 3px 10px 0px var(--text1);
}

.ailan-steps_item i {
    font-size: 40px;
    color: var(--color1);
    margin-inline: 5px;
}

.ailan-steps_item p {
    font-size: 20px;
    color: var(--color2);
    padding-top: 10px;
}

/* AILAN COMMAND */
.ailan-command {
    padding-top: 40px;
    text-align: center;
}

.ailan-command_items {
    justify-content: center;
    margin-top: -50px;
    padding: 20px;
}

.ailan-command_item {
    position: relative;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0/10%);
    border: 1px solid var(--bg);
    border-bottom: 3px solid var(--color1);
    border-radius: var(--radius);
    margin-inline: 10px;
    text-align: center;
    overflow: hidden;
}

.ailan-command_item > img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

/* AILAN FEEDBACK */

.ailan-feedback {
    background-color: var(--bg3);
    overflow: hidden;
}

.ailan-feedback .ailan-title1 {
    margin-top: 60px;
    color: var(--text1);
}

.ailan-feedback .ailan-title1 h3 {
    color: var(--text1);
}

.ailan-feedback .swiper-wrapper {
    height: 50%;
    margin-bottom: 30px;
}

.ailan-feedback .swiper-slide {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.ailan-feedback .swiper-slide img {
    width: 400px;
    height: auto;
    max-height: 350px;
    padding: 30px;
}

.ailan-feedback_slider {
    overflow: hidden;
}

.ailan-feedback_nav {
	text-align: center;
}

.ailan-feedback_nav > i {
	color: white;
    padding: 10px;
    font-size: 20px;
    border: 1px solid white;
    border-radius: var(--radius);
	margin-inline: 10px;
}

@media (max-width: 860px) {
    .ailan-feedback_slider {
        height: 110vh;
    }
	
	.ailan-feedback .swiper-wrapper {
		height: auto;
	}
	
    .ailan-feedback .swiper-slide {
        flex-wrap: wrap;
        height: 100%;
    }

    .ailan-feedback .swiper-slide img {
        width: 100%;
        padding: 15px;
    }    
}

/* AILAN FAQ */
.ailan-faq {
    padding-top: 60px;
}

.ailan-faq ul {
    padding: 20px;
}

.ailan-faq ul > li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0/10%);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: 0.5s;
}

.ailan-faq ul > li:hover {
    background: var(--bg3);
    color: var(--text1);
    font-size: 20px;
}

.ailan-faq ul > li:hover b {
    color: var(--color1);
}

/* AILAN FORM 2 */

.ailan-form2 {
    background-color: var(--bg3);
    color: var(--text1);
    padding-top: 60px;
    padding-bottom: 60px;
}

.ailan-form2 .ailan-title1 h3 {
    color: var(--text1);
}

.ailan-form2 input[type="submit"], .ailan-form2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* AILAN CONTACTS */
.ailan-contacts {
    padding-top: 60px;
}

.ailan-contacts ul > li > span {
    display: block;
    width: 100%;
    font-size: 20px;
    padding: 10px 0;
}

/* AGEN CHAT */
.agen-chat, .agen-tel {
    position: fixed;
    right: 13px;
    bottom: 120px;
    transform: translate(-50%, -50%);
    background: #25d366;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff!important;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
    z-index: 9999;
}

.agen-chat i, .agen-tel i {
    line-height: unset;
}

.agen-tel {
    background: var(--bg3);
    bottom: 55px;
    font-size: 28px;
    box-shadow: 0px 0px 10px 2px #8e8e8e;
}

.agen-chat:before,
.agen-chat:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25d366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.agen-chat:after {
    animation-delay: 0.5s;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* FOOTER */
footer {
    padding: 50px 0;
    background-color: var(--bg3);
    color: var(--text2);
}

footer .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer a {
    transition: 0.5s ease;
}

footer a:hover {
    color: var(--text1)
}

.footer-logo, .footer-logo span {
    display: block;
    color: #707070;
    font-size: 12px;
    text-align: center;
}

.footer-logo > img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

footer .container > ul li {
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.8;
}

.footer-soc {
    display: flex;
    align-items: center;
}

@media (max-width: 860px) {
    .footer-soc {
        margin-top: 20px;
    }
}

.footer-soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light);
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color1);
}

.footer-dev {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #797882;
    font-size: 14px;
}

.footer-dev a {
    color: var(--color1);
    margin-right: 25px;
}


/* MODAL CARD 2024 */
a[href="#modal-card"]:not(.modal-card a) {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
}

a[href="#modal-card"]:hover:not(.modal-card a) {
    background: var(--color2);
}

.modal-card {
    display: none;
    position: fixed;
    max-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    border-radius: 20px;
    padding: 50px 60px 20px;
    text-align: center;
    z-index: 999;
}

@media (max-width: 860px) {
    .modal-card {
        padding: 30px 30px 20px;
        max-width: 400px;
    }
}

.modal-card > .fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.modal-card > .fa-chevron-left {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 20px;
}

.modal-card h2 + span {
    display: block;
    color: #8d8d8d;
    margin-top: -20px;
    margin-bottom: 35px;
    font-size: 14px;
}

.modal-card_type {
}

.modal-card_type > a {
    position: relative;
    display: block;
    background: #f3f3f3;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-weight: bold;
    transition: 0.3s;
}

.modal-card_type > a:hover {
    background: #e7e7e7;
}

.modal-card_type > a + a {
    margin-top: 15px;
}

.modal-card_type > a[name="modal"] {
    background: var(--color1);
    color: #fff;
    text-align: center;
}

.modal-card_type > a[name="modal"]:hover {
    background: var(--color2);
}

.modal-card_type > a > img {
    position: absolute;
    top: 12px;
    left: 20px;
    width: 30px;
    height: 30px;
}

.modal-card_type > a iframe {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.modal-card_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.modal-card_btn > a {
    background: var(--bg3);
}

.modal-card_copy {
    display: block;
    color: #8d8d8d;
    font-size: 12px;
    margin-top: 30px;
}

.modal-card_copy > a, .modal-card_lost > a {
    color: #000;
    text-decoration: underline;
    opacity: 0.9;
}

.modal-card_lost {
    display: block;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #8d8d8d;
    margin: 20px -60px 0;
    padding-top: 20px;
}

@media (max-width: 860px) {
    .modal-card_lost {
        margin: 20px -30px 0;
    }
}

/* LICENCES */
.ailan-licenses {
			flex-wrap: nowrap;
			justify-content: space-between;
			gap: 20px;
		}
		.ailan-licenses img {
			width: 350px;
			height: auto;
			display: block;
		}


/* PHONE COUNTRY CODE */
.iti {
	width: 100%;
}

.iti__flag-box, .iti__country-name {
	color: var(--text);
}

.iti input {
	color: var(--text)!important;
}