html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    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.3;
    font-family: "UZ Sans";
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

/* =========================== */

:root {
    --main: #213786;
    --black: #2c2a29;
    --grey: #f6f6f8;
}


@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans/UZSans-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}

/* =========================== */

.wrapper {
    position: relative;
}

.container {
    position: relative;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 20px;
}

/* ===== header ===== */

.header-wrapper {
    position: relative;
    padding: 12px 0;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}

.header-wrapper .container {
    max-width: 1392px;
}

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

.header__in-block {
    position: relative;
}

.header-logo-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.header-logo {
    display: block;
}

.menu-list {
    list-style: none;
    position: relative;
    display: flex;
}

.menu-list--active {
    display: block !important;
    animation: fadeIn 0.3s ease-in-out;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    z-index: 9999;
    background: #fff;
    right: 0;
    top: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.menu-list__item {
    padding: 18px 10px;
}

.menu-list--active .menu-list__item {
    border-bottom: 1px solid #eaebf1;
}

.menu-list .menu-list__item:first-child {
    border-top: 1px solid #eaebf1;
}

/* .menu-list__item:last-child {
  border-bottom: none;
} */

.menu-list__link {
    text-decoration: none;
    color: #2c2a29;
    font-size: 18px;
    display: block;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.menu-list__link::before {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background: url("../img/menu-arrow.svg") 0 0 no-repeat;
}

/* .menu-list__link:hover {
  color: #007bff;
} */

.close-btn {
    display: none;
    position: relative;
    cursor: pointer;
}

/* .close-btn:before {
  content: "✖";
  color: #fff;
  font-size: 24px;
} */

.menu-list--active .close-btn {
    display: block;
}

.toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.toggle-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--main);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover span {
    background-color: #007bff;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
    display: none;
    z-index: 10;
}

.menu-overlay--active {
    display: block !important;
}

.mob-memu-btn {
    background: var(--main);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    display: block;
    width: 100%;
    padding: 17px 10px;
    margin-top: 38px;
    display: none;
}

.header__in-lang-block {
    position: relative;
}

.header__in-lang {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}

.btn {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: 250ms;
    text-decoration: none;
    display: inline-block;
}

.btn-white {
    color: var(--main);
    background: #fff;
    border: 1px solid var(--main);
}

.btn-white:hover {
    background: var(--main);
    color: #fff;
}

.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-blue {
    background-color: var(--main);
    color: #fff;
    border: 1px solid var(--main);
}

.btn-blue:hover {
    opacity: 0.8;
}

.btn-white2 {
    background-color: white;
    color: #111;
    border: 1px solid white;
}

.btn-white2:hover {
    background: transparent;
    color: white;
}


.btn-blue:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1100px) {
    .menu-list__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .menu-list {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .header__in-block--pc {
        display: none;
    }

    .mob-memu-btn {
        display: block;
    }
}

/* @media screen and (max-width: 600px) {
  .toggle-btn {
    display: flex;
  }

  .menu-list {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-list__link {
    color: #2c2a29;
    font-weight: 500;
    font-size: 18px;
  }

  .menu-list__item {
    padding: 10px 20px;
    border: none;
  }

  .menu-overlay {
    display: none !important;
  }

  .menu-top-bar {
    display: none;
  }

  .mob-memu-btn {
    display: none;
  }

  .menu-list__link::before {
    display: none;
  }
} */

.header__in-lang--mob {
    display: none;
}

@media screen and (max-width: 700px) {
    .header__in-lang-block {
        display: none;
    }

    .header__in-lang--mob {
        display: block;
    }
}

/* ===== header ===== */

/* ===== slider ===== */
.slider {
    background-color: #fff;
    font-family: "Arial", sans-serif;
    margin-top: 35px;
}

.slider__content {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
}

.slider__block {
    position: relative;
}

.slider__block--1 {
    width: 40%;
}

.slider__block--2 {
    width: 60%;
}

.slider__title {
    font-size: 40px;
    font-weight: 700;
    color: #002f87;
    margin-bottom: 20px;
}

.slider__description {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 30px;
    max-width: 500px;
}

.slider__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider__button {
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.slider__button--primary {
    background-color: #002f87;
    color: #fff;
}

.slider__button--primary:hover {
    background-color: #001f5e;
}

.slider__button--outline {
    background-color: transparent;
    border: 2px solid #002f87;
    color: #002f87;
}

.slider__button--outline:hover {
    background-color: #f0f4ff;
}

.slider__image {
    flex: 1 1 500px;
}

.slider__image img {
    max-width: 100%;
    display: block;
}

.form-wrapper {
    position: relative;
    background: var(--grey);
}

@media screen and (max-width: 768px) {
    .slider__content {
        flex-wrap: wrap;
    }

    .slider__block--1,
    .slider__block--2 {
        width: 100%;
    }

    .slider__block--2 {
        order: -1;
    }
}

@media screen and (max-width: 600px) {
    .slider .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== slider ===== */

/* ===== form ===== */
.form-section {
    position: relative;
    background: var(--grey);
    padding: 72px 0;
}

.form-section__container {
    display: flex;
    gap: 50px;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 60px;
    background: #fff;
    flex-wrap: wrap;
    border-radius: 14px;
    align-items: center;
}

.form-section__block--1 {
    flex: 1 1 45%;
}

.form-section__block--2 {
    flex: 1 1 45%;
}

.simple-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 16px;
}

.form-section__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-section__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.form-section__row .form-section__input {
    -webkit-appearance: none;
}

.form-section--select-block {
    position: relative;
    flex: 1 1 calc(33.333% - 8px);
}

.form-section--select-block::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 15px;
    width: 21px;
    height: 18px;
    background: url(../img/select.svg) 0 0 no-repeat;
    pointer-events: none;
}

.form-section__checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 8px;
    color: var(--black);
}

.form-section__submit {
    align-self: flex-end;
    margin-top: 12px;
}

.form-section__input-block {
    position: relative;
}

.form-section__label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #6c6e75;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox + label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-checkbox + label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #d5dae7;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    background-color: #eff1f6;
}

.custom-checkbox:checked + label::before {
    border-color: #213786;
    background-color: #213786;
    background-image: url("../img/check.svg");
}

.form-section__label--checkbox {
    font-size: 13px;
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .form-section__container {
        padding: 20px 15px;
    }

    .form-section__block--1 {
        flex: 1 1 100%;
    }

    .form-section__block--2 {
        flex: 1 1 100%;
    }

    .form-section .container {
        padding: 0;
    }

    .form-section {
        padding: 0;
    }

    .form-section__input {
        font-size: 15px;
    }
}
/* ===== form ===== */

/* === */

.form-section-review .title-h3 {
    font-size: 64px;
}

.form-section-review .form-section__container {
    padding: 0;
    background: transparent;
    max-width: 1070px;
}

.form-section__input {
    -webkit-appearance: none;
}

.form-section__textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    height: 112px;
}

.form-section-review .form-section__block--2 {
    background: #fff;
    padding: 32px 48px;
    box-sizing: border-box;
    border-radius: 24px;
}

/* === */

@media screen and (max-width: 768px) {
    .form-section-review .form-section__block--2{
        padding: 32px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .form-section__container {
        padding: 30px 15px 20px;
    }

    .form-section__block--1 {
        flex: 1 1 100%;
    }

    .form-section__block--2 {
        flex: 1 1 100%;
    }

    .form-section .container {
        padding: 0;
    }

    .form-section {
        padding: 0;
    }

    .form-section__input {
        font-size: 15px;
    }

    .form-section.form-section-review .container {
        padding: 0 20px;
    }

    .form-section-review .title-h3 {
        font-size: 32px;
    }

    .form-section-review {
        padding: 50px 0;
    }
}

/* ===== hero ===== */
.hero {
    position: relative;
    background: var(--main);
    padding: 72px 0;
    margin-top: 35px;
    margin-bottom: 72px;
}

.hero__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.hero__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero__text {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .hero {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 600px) {
    .hero__content {
        text-align: left;
    }

    .hero__text {
        font-size: 20px;
    }
}
/* ===== hero ===== */

/* ===== gallery ===== */
.gallery__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    align-items: center;
}

.gallery__block {
    position: relative;
}

.gallery__text-block {
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .gallery__content {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery__content img {
        width: 100%;
    }

    .gallery__block:last-child {
        order: -1;
    }

    .gallery .container {
        padding: 0;
    }

    .gallery__block:first-child {
        padding: 0 20px;
    }
}
/* ===== gallery ===== */

/* ===== train-route ===== */
.train-route {
    position: relative;
    margin-top: 72px;
}

.train-route__container {
    position: relative;
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
}

.train-route__text {
    flex: 1 1 40%;
}

.train-route__title {
    font-size: 28px;
    font-weight: 700;
    color: #002f87;
    margin-bottom: 20px;
}

.train-route__description {
    font-size: 18px;
    line-height: 1.3;
    max-width: 600px;
    margin-bottom: 25px;
}

.train-route__btn {
    margin-top: 24px;
}

.train-route__table {
    flex: 1 1 50%;
    background: #fff;
    border-radius: 24px;
    padding: 32px 38px;
    padding-top: 0;
    box-shadow: 0px 4px 58.3px -8px #cccded;
    height: 630px;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 600px;
    box-sizing: border-box;
}

.train-route__search-block {
    position: sticky;
    top: 0;
    padding-top: 32px;
    background: #fff;
}

.train-route__search-block::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 20px;
    width: 25px;
    height: 25px;
    background: url(../img/search-icon.svg) 0 0 no-repeat;
}

.train-route__search {
    width: 100%;
    padding: 12px 16px;
    padding-left: 50px;
    border: 1px solid #d4d5d6;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    box-sizing: border-box;
    background: #f7f6f8;
}

.train-route__list {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

.train-route__list th,
.train-route__list td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.train-route__list th {
    font-weight: 700;
    color: #797d82;
    /* position: sticky;
    top: 0;
    z-index: 1; */
    font-size: 14px;
}

.train-route__list tr:hover {
    background-color: #f1f7ff;
}

.train-route__search-block {
    position: relative;
}

.warring {
    position: relative;
    color: #ef9010;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 600;
}

.warring::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../img/alert.svg") 0 0 no-repeat;
}

@media screen and (max-width: 675px) {
    .train-route__container {
        gap: 50px;
    }

    .train-route__table {
        flex: 1 1 55%;
    }

    .train-route__table {
        padding: 32px 10px;
        padding-top: 0;
        height: 400px;
    }

    .train-route__list {
        font-size: 16px;
    }

    .train-route__list th,
    .train-route__list td {
        padding: 10px 5px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
}
/* ===== train-route ===== */

/* ===== map ===== */
.map {
    margin-top: 40px;
}

.map__container {
    position: relative;
}

.map__img {
    position: relative;
}

@media screen and (max-width: 768px) {
    .map {
        padding-bottom: 30px;
    }
}
/* ===== map ===== */

/* ===== about ===== */
.about {
    position: relative;
    background: #fff;
    padding: 72px 0;
}

.about__container {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
}

.about__block {
    position: relative;
}

.about__block--1 {
    flex: 1 1 40%;
}

.about__block--2 {
    flex: 1 1 50%;
}

.simple-text {
    position: relative;
}

.simple-text {
    font-size: 18px;
    line-height: 1.3;
    max-width: 600px;
    margin-bottom: 20px;
}

.simple-text:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .about__block--1 {
        flex: 1 1 100%;
    }

    .about__block--2 {
        flex: 1 1 100%;
    }

    .simple-text {
        max-width: 100%;
    }

    .about__img img {
        width: 100%;
    }

    .about__container {
        gap: 50px;
    }
}
/* ===== about ===== */

/* ===== footer ===== */
.footer {
    position: relative;
    background: #fff;
    border-top: 1px solid #d4d5d6;
    padding: 40px 0;
    color: #2c2a29;
    font-size: 15px;
}

.footer__container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.footer .container {
    max-width: 1392px;
}

.footer__block {
    position: relative;
}

.footer__logos {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.footer__text {
    font-weight: 500;
    line-height: 1.3;
    max-width: 500px;
    margin-top: 24px;
}

.footer__title {
    color: #737678;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.footer__address {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
}

.footer__address a {
    display: inline-block;
    color: #2c2a29;
    text-decoration: none;
}

.footer__info-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.footer__info-subtext {
    color: #797d82;
}

@media screen and (max-width: 768px) {
    .footer__container {
        flex-direction: column;
    }
}
/* ===== footer ===== */

/* ===== dev-footer ===== */
.dev-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid #d4d5d6;
    margin: 0 20px;
    box-sizing: border-box;
    padding: 16px 0;
}

.dev-footer__container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.dev-footer .container {
    max-width: 1392px;
}

.dev-footer__block {
    position: relative;
}

.dev-footer__block img {
    display: block;
}

.copyright {
    color: #2c2a29;
    font-size: 13px;
}

.form-message.form-message--success {
    color: green;
}
/* ===== dev-footer ===== */

/* ===== informer ===== */

.informer{
    background: linear-gradient(120.26deg, #050E2F 12.16%, #1D51C3 91.29%);
    color:white;
    display: flex;
    gap: 50px;
    max-width: 960px;
    margin: 0 auto 30px;
    padding: 0 60px;
    border-radius: 14px;
    align-items: center;
    justify-content: space-between;
}

.informer__in{
    max-width: 300px;
}

.informer__title{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.informer__text{
    font-size: 17px;
    margin-bottom: 30px;
}

.informer__img{
    display:flex;
    justify-content: end;
    width: 100%;
}

.informer__btn{
    font-size: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .informer{
        align-items: start;
        flex-flow: column-reverse;
        gap: 0;
        padding-bottom: 50px;
    }

    .informer__img{
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .informer{
        padding: 0 20px 50px;
    }
}

@media screen and (max-width: 500px) {

    .informer__img{
        justify-content: end;
    }
}
/* ===== informer / ===== */