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;
}

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;
}

/* ===== Form Validate ===== */
.validate-error-label{
    color: rgb(184, 17, 17);
    margin-top: 5px;
    font-size: 14px;
}

input.is-invalid, textarea.is-invalid{
    border-color: rgb(184, 17, 17);
}
/* ===== Form Validate / ===== */

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

.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__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-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;
}




.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;
}

@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;
    }
}

.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;
}

.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;
    color: #444;
}

.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;
}


.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: 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-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;
}
/* ===== 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__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 ===== */



/* ===== slider-wrapper ===== */
.slider {
    position: relative;
    background: #f8f9ff;
    background: linear-gradient(
            180deg,
            rgba(248, 249, 255, 1) 0%,
            rgba(232, 232, 232, 1) 100%
    );
}

.slide-in {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    padding: 96px 16px;
}

.slide-block {
    position: relative;
    flex: 0 0 calc(50% - 25px);
    box-sizing: border-box;
    color: var(--main);
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

.slide-text {
    font-size: 24px;
    margin-top: 10px;
    max-width: 535px;
    line-height: 1.3;
}

.slide-btn-block {
    position: relative;
    text-align: left;
    width: 100%;
    margin-top: 25px;
}

.slide-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    padding: 20px 33px;
    border-radius: 12px;
}

.swiper-pagination {
    bottom: 32px !important;
}

.swiper-pagination-bullet-active {
    background: var(--main) !important;
}

@media screen and (max-width: 900px) {
    .slide-block {
        width: 100%;
    }

    .slide-in {
        flex-direction: column;
    }

    .slide-block:last-child {
        order: -1;
    }
}

/* ===== slider-wrapper ===== */

/* ===== Gallery ===== */
.gallery {
    display: flex;
}

.gallery-col {
    width: 25%;
}

@media screen and (max-width: 991px) {
    .gallery-col {
        width: 50%;
    }
}
/* ===== Gallery ===== */

/* ===== acc ===== */
.accordion-single {
    margin-top: 10px;
}

.accordion-single-title {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    padding: 20px;
    color:#111;
}

.accordion-single-title::after {
    content: "";
    position: absolute;
    right: 23px;
    top: 35px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #999;
    border-right: solid 2px #999;
    transform: translateY(-50%) rotate(135deg);
}

.accordion-single-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    font-size: 16px;
    color: #475467;
}

.accordion-single-content p {
    padding: 5px 0;
}

.accordion-single-item.is-open .accordion-single-content {
    max-height: 1500px;
    /* padding-bottom: 20px; */
}

.accordion-single-content--in {
    padding: 20px;
    padding-top: 0;
}

.accordion-single-item.is-open .accordion-single-title::after {
    transform: translateY(-50%) rotate(315deg);
}

.accordion-single-item {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    /* padding: 20px; */
}

.accordion-single-item:last-child {
    margin-bottom: 0;
}

.accordion-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 55px;
    margin-bottom: 55px;
}

.accordion-wrapper .title-h3 {
    text-align: left;
    margin-bottom: 25px;
}

.faq main {
    background: #f7f6f8;
}

.accordion-wrapper ul {
    padding-left: 30px;
    margin: 10px 0;
}

.accordion-wrapper ul li {
    position: relative;
    margin-bottom: 10px;
}

.accordion-wrapper ul li:last-child {
    margin-bottom: 0;
}

.accordion-wrapper ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -16px;
    width: 5px;
    height: 5px;
    background: #475467;
    border-radius: 50%;
}

.accordion-wrapper ol {
    list-style-type: auto;
    padding-left: 34px;
    margin: 10px 0;
}

.accordion-wrapper ol li {
    position: relative;
    margin-bottom: 10px;
}

.accordion-wrapper ol li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .accordion-single-title {
        font-size: 22px;
    }

    .accordion-single-content {
        font-size: 18px;
    }

    .accordion-single-item {
        margin-bottom: 24px;
    }
}
/* ===== acc ===== */