@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
        url('../fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

a {
    text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    background: none;
}

body.no-scroll {
    overflow: hidden;
}

body {
    margin: 0;
    background: #867f7c0f;
    font-family: "Gilroy", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: #fff0;
}

.fade-in,
.fade-in-all {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible,
.fade-in-all.visible {
    opacity: 1;
    transform: translateY(0);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    font-weight: 400;
    width: 100%;
    position: absolute;
    /* Залишаємо fixed */
    z-index: 2;
    left: 50%;
    /* Встановлюємо по центру */
    top: 5px;
    /* Відступ від верху */
    transform: translateX(-50%);
    /* Центруємо по горизонталі */
    margin-top: 20px;
    width: 93%;
}

.profile .logo {
    color: #FFF;
    font-family: Gilroy;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.profile a {
    text-decoration: none;
    color: #fff;
}

.profile {
    display: flex;
    align-items: flex-end;
    gap: 61px;
}

.profile-pic {
    width: 80px;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 400;
    padding: 5px 10px;
    color: #FFF;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.contact-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 16px 15px 15px 16px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.contact-btn:hover {
    background-color: #0066ffb3;
}

.contact-btn-hero {
    background-color: #ea531f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-btn-hero:hover {
    background-color: #0066ffb3;
}

.contact-btn-phone {
    display: none;
}

.contact-btn-number {
    background-color: #666666;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-btn-number:hover {
    background-color: #66666678;
}

.contact-content {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
}

.hamburger {
    cursor: pointer;
    background: #0066ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.icon-size-16 {
    width: 25px;
}

@media screen and (max-width: 1068px) {
    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
        width: 100%;
        align-items: center;
        margin-top: 10px;
        background: #00102770;
    }

    .profile .logo {
        font-size: 29.468px;
    }

    .nav.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        height: 100vh;
        display: flex;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 4px;
        top: 0%;
        backdrop-filter: blur(5px);
    }

    .header {
        margin-top: 0px;
        width: 96%;
    }

    .nav.deactive {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        /* Меню приховане після завершення анімації */
        height: 100vh;
        display: flex;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 0px;
        top: 0%;
    }

    .nav-link:hover {
        background-color: #fff0;
        color: #111;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-btn {
        display: none;
    }

    .contact-btn-phone {
        background-color: #0066ff;
        color: #fff;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .contact-btn-phone:hover {
        background-color: #0066ffb3;
    }
}

.container-main {
    background-image: url('../img/bus.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 96%;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    will-change: transform, opacity;
    z-index: 1;
    position: relative;
    overflow: visible;
}

.container-main-search {
    background-size: cover;
    background-position: center;
    height: 55vh;
    width: 96%;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    will-change: transform, opacity;
    z-index: 1;
    position: relative;
    overflow: visible;
    background: linear-gradient(0deg, rgba(53, 53, 53, 0.40) 0%, rgba(53, 53, 53, 0.40) 100%), url("../img/bus.webp") lightgray 50% / cover no-repeat;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: none;
    background: #F6F6F6;
    border: none;
    width: 20%;
    border-radius: 10px;
}

.search-item select,
.search-item input {
    display: flex;
    width: auto;
    height: 52px;
    padding: 15px 20px;
    align-items: center;
    gap: 15.695px;
    flex-shrink: 0;
    border-radius: 10.463px;
    background: #F6F6F6;
    border: none;
    color: #353535;
    font-family: Gilroy;
    font-size: 18.834px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 95%;
}

.search-item .icon {
    width: 20px;
    height: 20px;
}

.container-text {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.search-button {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 15px 56px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    height: 53px;
}

.search-button:hover {
    background-color: #0066ffb3;
}

.search-container {
    width: 93%;
    background: #fff;
    justify-content: center;
    border-radius: 10px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    padding: 31px;
    bottom: 2%;
    gap: 30px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.search-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-between;
}

.search-item select,
.search-item input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px;
    margin-left: 5px;
}

.search-item .icon {
    width: 17px;
    height: 17px;
}

.search-item {
    position: relative;
    width: 20%;
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        height: auto;
    }

    .search-item {
        width: 100%;
    }

    .search-item,
    .search-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .search-block {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 1268px) {

    .search-item,
    .search-button {
        width: 100%;
    }

    .search-block {
        display: flex;
        gap: 10px;
        flex-direction: column;
        height: auto;
    }
}

.text-main {
    color: #353535;
    font-family: Gilroy;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-main-search {
    color: #353535;
    font-family: Gilroy;
    font-size: 18.296px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.description-main {
    color: #353535;
    font-family: Gilroy;
    font-size: 18.296px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.dropdown {
    position: absolute;
    top: 60px;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    right: 0px;
}

.dropdown-item {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.dropdown-item:hover {
    background: #0066ff52;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
}

.dropdown-item span:first-child {
    font-weight: 500;
}

.dropdown-item span:last-child {
    font-size: 12px;
    color: rgb(31, 31, 31);
}

.dropdown-item svg {
    width: 15px;
    height: 15px;
    fill: #0066ff;
}

.dropdown-item:hover svg {
    fill: black;
}

.dropdown2 {
    position: absolute;
    top: 60px;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    right: 0px;
}

.dropdown-item2 {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.dropdown-item2:hover {
    background: #0066ff52;
}

.dropdown-item2 div {
    display: flex;
    flex-direction: column;
}

.dropdown-item2 span:first-child {
    font-weight: 500;
}

.dropdown-item2 span:last-child {
    font-size: 12px;
    color: rgb(31, 31, 31);
}

.dropdown-item2 svg {
    width: 15px;
    height: 15px;
    fill: #0066ff;
}

.dropdown-item2:hover svg {
    fill: black;
}



.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 96%;
    margin: auto;
    padding: 20px 0px;
}

.info-box {
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(25% - 20px);
    text-align: center;
    min-width: 200px;
    text-align: left;
}

.info-box h3 {
    margin: 0 0 10px;
    color: #FFF;
    font-family: Gilroy;
    font-size: 23.035px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.info-box p {
    color: #FFF;
    font-family: Gilroy;
    font-size: 12.361px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 768px) {
    .info-box {
        flex: 1 1 calc(50% - 20px);
    }

    .text-main-search {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .info-box {
        flex: 1 1 100%;
    }
}


.text-main-search-main {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 30%;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.text-main-search-main br {
    display: none;
}

@media (max-width: 768px) {
    .text-main-search-main {
        color: #FFF;
        font-size: 26px;
        top: 15%;
    }

    .container-main-search {
        height: 571px;
    }

    .text-main-search-main br {
        display: block;
    }
}

@media (max-width: 1268px) {
    .container-main-search {
        height: 80vh;
    }

    .text-main-search-main {
        color: #FFF;
        font-size: 26px;
        top: 20%;
    }
}

.popular-directions h2 {
    color: #353535;
    font-family: Gilroy;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 26px;
    padding-top: 60px;
}

.direction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 21px;
}

.direction-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.direction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* Плавний перехід */
}

.direction-card:hover img {
    transform: scale(1.1);
    /* Збільшення при наведенні */
}

.direction-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFF;
    font-family: Gilroy;
    font-size: 23.035px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 20px;
}

.direction-card .info .arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.direction-card .info .arrow svg {
    transition: transform 0.5s ease;
    /* Додає плавність переходу */
}

.direction-card:hover .info .arrow svg {
    transform: rotate(45deg);
    /* Поворот при наведенні на картку */
}

.next-prev {
    display: none;
}

.next-text {
    display: none;
}

@media (max-width: 768px) {
    .popular-directions {
        max-width: 100%;
        padding-left: 10px;
    }

    .popular-directions h2 {
        text-align: center;
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: flex;
        justify-content: center;
        padding-top: 40px;
        padding-bottom: 11px;
    }

    .direction-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 20px 0;
    }

    .direction-card {
        flex: 0 0 calc(90% - 16px);
        /* Ширина картки (80% від ширини екрану мінус проміжок) */
        scroll-snap-align: center;
        /* Вирівнювання картки по центру при прокрутці */
        border-radius: 10px;
        overflow: hidden;
        height: 211px;
        touch-action: pan-y;
    }

    .direction-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .prev,
    .next {
        padding: 10px;
        transition: transform 0.3s ease;
        /* Плавний ефект зменшення */
    }

    .prev:active,
    .next:active {
        transform: scale(0.7);
        /* Зменшення розміру при натисканні */
    }

    .direction-grid::-webkit-scrollbar {
        display: none;
        /* Сховати прокрутку на мобільній версії */
    }

    .direction-grid {
        -ms-overflow-style: none;
        /* Приховати прокрутку для IE і Edge */
        scrollbar-width: none;
        /* Сховати прокрутку для Firefox */
    }

    .next-prev {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .next-text {
        display: flex;
        color: #353535;
        font-family: Gilroy;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding-bottom: 20px;
    }

    .next-prev-botom {
        display: flex;
        flex-direction: row;
        gap: 25px;
        padding-bottom: 10px;
    }
}

.europe-conteiner {
    border-radius: 10px;
    background: #06F;
    margin: auto;
    width: 96%;
}

.unique-container img {
    pointer-events: none;
    /* Забороняє взаємодію з зображенням */
    user-select: none;
    /* Забороняє виділення */
}

.text-europe {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 10px;
}

.popular-directions {
    max-width: 96%;
    margin: 0 auto;
    padding-bottom: 43px;

}

.text-europe h1 {
    color: #FFF;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-europe p {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 18.296px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 35%;
}

@media (max-width: 768px) {
    .text-europe h1 {
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }

    .text-europe p {
        font-size: 16px;
        width: 100%;
    }

    .text-europe {
        gap: 15px;
        padding: 38px 20px;
    }
}

.unique-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
    /* Забороняє виділення тексту */
}

.unique-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.unique-row:first-child {
    margin-left: -50px;
}

.unique-row:last-child {
    margin-left: -200px;
}

.unique-card {
    max-width: 335px;
    height: 146px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 12px 4px rgba(53, 53, 53, 0.15);
    display: flex;
    align-items: center;
    text-align: left;
}

.unique-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px;
}

.unique-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.unique-card-content h2 {
    color: #353535;
    font-size: 23.035px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 195px;
}

.unique-card-content p {
    color: #353535;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 190px;
}






.reviews-conteiner {
    border-radius: 10px;
    background: #F2F3F5;
    margin: auto;
    width: 96%;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    /* Обрізає все, що виходить за межі */
}

.text-rew {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 10px;
    user-select: none;
    /* Забороняє виділення тексту */
}

.text-rew h1 {
    color: #353535;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-rew p {
    color: #353535;
    text-align: center;
    font-size: 18.296px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 25%;
}

@media (max-width: 768px) {
    .text-rew h1 {
        font-size: 26px;
        font-weight: 700;
    }

    .text-rew p {
        font-size: 16px;
        width: 100%;
    }

    .text-rew {
        gap: 15px;
        padding: 20x 20px;
    }

    .reviews-conteiner {
        margin-top: 50px;
    }
}

.feedback-section-wrapper {
    padding: 20px 0px 20px 0px;
}

.feedback-cards-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Приховати прокрутку для IE і Edge */
    scrollbar-width: none;
    /* Сховати прокрутку для Firefox */
    user-select: none;
    /* Забороняє виділення тексту */
    overflow: hidden;
    /* Обрізає все, що виходить за межі */
}

.feedback-card {
    flex: 0 0 auto;
    width: 335px;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    background: #FFF;
    scroll-snap-align: start;
    /* Вирівнювання картки по центру при прокрутці */

}

#feedbackCardsContainer .feedback-card:first-child {
    margin-left: 20px;
}

#feedbackCardsContainer .feedback-card:last-child {
    margin-right: 20px;
}

.feedback-card-title {
    color: #353535;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.feedback-card-stars {
    color: gold;
    font-size: 20px;
}

.feedback-card-text {
    color: #353535;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 10px 0;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.custom-scroll-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.bigstar {
    display: none;
}

.bigstar2 {
    display: none;
}

.prev-rew,
.next-rew {
    padding: 10px;
    transition: transform 0.3s ease;
    /* Плавний ефект зменшення */
}

.prev-rew:active,
.next-rew:active {
    transform: scale(0.7);
    /* Зменшення розміру при натисканні */
}

.next-prev-rew {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.next-text-rew {
    display: flex;
    color: #353535;
    font-family: Gilroy;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
    user-select: none;
    /* Забороняє виділення тексту */
}

.next-prev-botom-rew {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding-bottom: 10px;
    margin-top: 25px;
}

.feedback-card-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .feedback-card {
        width: 87%;
    }

    .bigstar {
        display: block;
        position: absolute;
    }

    .bigstar2 {
        display: block;
        position: absolute;
    }

    .bigstar {
        top: 0;
        right: 0;
    }

    .bigstar svg {
        border-radius: 10px;
    }

    .bigstar2 {
        bottom: 0;
        left: 0;
    }

    .next-prev-botom-rew {
        margin-top: 15px;
    }
}








.faq-section {
    width: 70%;
    background: #F6F6F6;
    border-radius: 8px;
    padding: 0px 0px 0 20px;
}

.faq-block {
    margin-bottom: 15px;
}

.faq-header {
    color: #353535;
    font-family: Gilroy;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(53, 53, 53, 0.20);
    background: #F6F6F6;
}

.faq-header:hover {
    background: #0066ff52;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border-radius: 0 5px 5px 5px;
    margin-top: 5px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #353535;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 10px;
    background: #FFF;
}

.faq-content.active {
    max-height: 300px;
    /* Adjust depending on content */
    padding: 20px;
    margin: 25px 0;
}

.faq-section-name {
    padding: 0px 0 35px 0;
}

.faq-section-name p {
    color: #353535;
    font-size: 18.296px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.faq-section-name h2 {
    color: #353535;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-icon svg.active {
    transform: rotate(-90deg);
    /* Змінюйте кут повороту */
}


.show-more-container {
    text-align: left;
    margin-top: 20px;
}

.show-more-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 15px 56px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    height: 53px;
}

.show-more-btn:hover {
    background: #0066ffb3;
}

.hidden-block {
    display: none;
}

.info-container-faq {
    display: flex;
    align-items: flex-start;
    width: 96%;
    margin: auto;
    justify-content: center;
    margin-top: 60px;
}

.custom-question-form {
    background: #06F;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: auto;
}

.custom-form-title {
    color: #FFF;
    font-size: 32.664px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.botom-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.custom-form-description {
    margin-bottom: 30px;
    color: #FFF;
    font-size: 19.861px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-input,
.custom-textarea {
    width: 100%;
    display: flex;
    height: 52px;
    padding: 15px 20px;
    align-items: center;
    gap: 15.695px;
    flex-shrink: 0;
    border-radius: 10.463px;
    background: #F6F6F6;
    border: none;
    color: rgba(53, 53, 53, 0.60);
    /* Колір для placeholder */
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: rgba(53, 53, 53, 0.60);
    /* Колір для placeholder */
}

.custom-input:focus,
.custom-textarea:focus {
    outline: none;
    /* Відключення стандартної обводки */
    color: #000;
    /* Чорний колір для введеного тексту */
}

.custom-textarea {
    height: 132px;
    resize: none;
}

.custom-submit-button {
    background-color: #FFF;
    color: #06F;
    border: none;
    display: inline-flex;
    padding: 15px 56px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    height: 53px;
    font-weight: 600;
}

.custom-submit-button:hover {
    background-color: #ffffffd1;
}

.info-contact {
    width: 35%;
}

@media (max-width: 768px) {
    .info-container-faq {
        flex-direction: column-reverse;
    }

    .faq-section {
        width: 100%;
    }

    .info-contact {
        width: 100%;
    }

    .faq-section-name h2 {
        color: #353535;
        text-align: center;
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .faq-section-name p {
        color: #353535;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .faq-header {
        font-size: 16px;
    }

    .faq-content {
        font-size: 14px;
    }

    .faq-section {
        padding: 0;
    }

    .show-more-container {
        margin-bottom: 20px;
        text-align: center;
    }

    .custom-form-title {
        font-size: 24px;
    }

    .custom-form-description {
        font-size: 14px;
    }

    .botom-form {
        align-items: center;
    }

    .custom-submit-button {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #FFF;
        background: transparent;
        color: #FFF;
        font-size: 16px;
        transition: all 0.3s;
    }

    .custom-submit-button:hover {
        background-color: transparent;
        border: 1px solid #ffffff8d;
        color: #ffffff8d;
    }

    .custom-question-form {
        padding: 15px;
    }

    .custom-textarea {
        height: 100px;
    }
}





.footer {
    border-radius: 10px 10px 0 0;
    background: #353535;
    color: #fff;
    padding: 40px 20px;
    width: 96%;
    margin: auto;
    margin-top: 81px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-info h2 {
    color: #FFF;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-info .highlight {
    color: #06F;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-contact {
    margin-top: 0px;
}

.footer-contact .phone-link {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 30px;
}

.footer-contact .mail-link {
    display: none;
}

.call-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 16px 15px 15px 16px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    width: 163px;
}

.call-btn:hover {
    background-color: #0066ffb3;
}

.search-btn {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    font-size: 16px;
    transition: all 0.3s;
    width: 163px;
    padding: 16px 15px 15px 16px;
    text-align: center;
}

.search-btn:hover {
    background-color: transparent;
    border: 1px solid #ffffff8d;
    color: #ffffff8d;
}

.footer-contact-btn {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-info br {
        display: none;
    }
}

@media (min-width: 769px) {
    .footer-info br {
        display: inline;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-info h2 {
        font-size: 24px;
    }

    .footer-info .highlight {
        font-size: 24px;
    }

    .footer {
        padding: 18px 10px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .search-btn {
        padding: 5px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 43.643px;
    }

    .call-btn {
        padding: 5px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 44.643px;
    }

    .footer-contact-btn {
        justify-content: center;
    }

    .footer-contact .mail-link {
        color: #FFF;
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: flex;
        justify-content: flex-start;
    }

    .footer-contact .phone-link {
        font-size: 26px;
        justify-content: flex-start;
        padding-top: 26px;
        padding-bottom: 0px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 20px;
    }
}

.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 60px 0px 30px 0px;
    align-items: center;
}

.site-footer__brand {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 10px;
}

.site-footer__copyright {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.site-footer__nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

a.site-footer__link {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 768px) {
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 35px 0px 0px 0px;
    }

    .site-footer__nav {
        display: none;
    }

    .site-footer__copyright {
        display: none;
    }
}

.mega-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__mega {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.site-mega-link {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 30px;
}

.my-zdiysyem {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 80%;
}

.mega-footer-prava {
    display: none;
}

@media (max-width: 768px) {
    .site-footer__mega {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .site-mega-link {
        padding-bottom: 0px;
    }

    .mega-footer {
        align-items: flex-start;
    }

    .my-zdiysyem {
        font-size: 10px;
        width: 100%;
        text-align: left;
        padding: 35px 0px 18px 0px;
    }

    .mega-footer-prava {
        display: flex;
        justify-content: center;
        color: #353535;
        font-family: Gilroy;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .site-footer__mail {
        display: none;
    }
}

.nav a {
    transition: color 0.5s ease;
    /* Плавний перехід для кольору */
}

.nav a:hover {
    color: #06f;
    /* Колір тексту при наведенні */
}

a.site-footer__link {
    transition: color 0.5s ease;
}

a.site-footer__link:hover {
    color: #06f;
}

.site-mega-link {
    transition: color 0.5s ease;
}

.site-mega-link:hover {
    color: #06f;
}

.phone-link {
    transition: color 0.5s ease;
}

.phone-link:hover {
    color: #06f;
}

.mail-link {
    transition: color 0.5s ease;
}

.mail-link:hover {
    color: #06f;
}

.site-footer__mail {
    transition: color 0.5s ease;
}

.site-footer__mail:hover {
    color: #06f;
}

.popup-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.popup-container.open {
    opacity: 1;
    visibility: visible;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.popup-container.open .form-container {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

.close-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0066ff;
    transition: fill 0.3s ease;
}

.close-btn:hover svg {
    fill: #0066ff96;
}

.form-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.form-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.submit-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 16px 15px 15px 16px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.submit-btn:hover {
    background-color: #0066ffb3;
}

.site-footer__mail {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}

.error-border {
    border: 1px solid #e80000 !important;
    border-radius: 10px;
}

.error-messages {
    color: #e80000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
}

.filter {
    width: 20%;
    border-radius: 10px;
    background: #F2F3F5;
    padding: 20px;
}

.filter h3 {
    color: #353535;
    font-family: Gilroy;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section label {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.filter-section input[type="checkbox"],
.filter-section input[type="radio"] {
    margin-right: 8px;
}

.filter-section .icon {
    margin-left: auto;
    font-size: 16px;
    color: #007bff;
}

.filter-section img {
    width: 20px;
    height: 20px;
    margin-left: auto;
}

.filter-section input[type="checkbox"],
.filter-section input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #0066FF;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-section input[type="checkbox"]:checked,
.filter-section input[type="radio"]:checked {
    background-color: #0066FF;
    border: 1px solid #0066FF;
}

.filter-section input[type="checkbox"]:checked::after,
.filter-section input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.filter-section input[type="checkbox"]::after,
.filter-section input[type="radio"]::after {
    opacity: 0;
    transform: scale(0.8) translate(-50%, -50%);
}

.filter-section input[type="checkbox"]:checked::after,
.filter-section input[type="radio"]:checked::after {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(45deg);
}

.filter-section label {
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.filter-card-conteiner {
    width: 96%;
    margin: auto;
}

.text-search-card {
    color: #353535;
    font-family: Gilroy;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 56px;
    padding-bottom: 56px;
}

.filter-card-conteiner-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-card-conteiner-icon .filter-icons {
    display: none;
}

.filter-card-conteiner-filter {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .filter-card-conteiner-filter {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1268px) {
    .text-search-card {
        font-size: 26px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .filter {
        width: 100%;
    }

    .filter-card-conteiner-icon .filter-icons {
        display: block;
    }
}

.card-unique {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    background: #F2F3F5;
    margin: 0px 0px 20px 0px;
}

.card-content-unique {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.time-location-unique {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    width: 75%;
    align-items: center;
}

.time-location-unique div {
    text-align: left;
    padding-bottom: 10px;
}

.time-location-unique div h3 {
    color: #353535;
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.time-location-unique div p {
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.details-unique {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.details-unique img {
    height: 20px;
    width: 20px;
}

.price-unique {
    text-align: right;
}

.price-unique h2 {
    margin: 0;
    color: #353535;
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.price-unique span {
    color: rgba(53, 53, 53, 0.60);
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: strikethrough;
    text-decoration: line-through;
}

.btn-unique {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    padding: 15px 56px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    height: 53px;
}

.btn-unique:hover {
    background-color: #0066ffb3;
}

@media (max-width: 1268px) {
    .card-unique {
        width: 100%;
    }
}

.details-unique-1 {
    display: flex;
    gap: 5px;
}

.details-unique-img {
    display: flex;
    gap: 5px;
}

.details-unique-2 {
    display: flex;
    gap: 5px;
}

.zhirniy {
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.details-unique-3 {
    display: flex;
    flex-direction: row;
    gap: 5px;
    color: #06F;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.horezontal {
    width: 1px;
    height: 76px;
    background: rgba(53, 53, 53, 0.40);
}

.text-city-1 {
    gap: 30px;
    display: flex;
    align-items: center;
}

.text-city-1 span {
    color: #353535;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.text-city-2 {
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
}

.text-city-3 {
    color: #353535;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.price-unique {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 65px;
}

.card-conteiner-buss {
    width: 78%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1268px) {
    .card-unique {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .time-location-unique {
        flex-direction: column;
    }

    .details-unique {
        gap: 10px;
        flex-direction: column;
    }

    .horezontal {
        width: 100%;
        height: 1px;
    }

    .time-location-unique div {
        padding-bottom: 0;
    }

    .card-conteiner-buss {
        width: 100%;
    }

    .time-location-unique {
        width: 100%;
    }

    .price-unique {
        gap: 24px;
        width: 100%;
        align-items: unset;
        padding-top: 28px;
    }

    .price-skidka {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .details-unique {
        align-items: flex-start;
    }

    .time-location-unique {
        gap: 20px;
    }

    .text-city-1,
    .text-city-2,
    .text-city-3 {
        margin-bottom: 10px;
    }

    .card-content-unique {
        width: 100%;
    }

    .time-location-unique {
        display: flex;
        align-items: flex-start;
    }

    .filter {
        margin: 0px 0px 0px 0px;
        padding: 0;
    }
}

.search-container-oformlenia {
    width: 93%;
    justify-content: center;
    border-radius: 10px;
    transform: translateX(-50%);
    left: 47%;
    position: absolute;
    padding: 31px;
    bottom: 2%;
    gap: 30px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.text-main-oformlenia {
    color: #FFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-main-oformlenia2 {
    color: #FFF;
    font-family: Gilroy;
    font-size: 27.194px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-main-oformlenia3 {
    color: #FFF;
    font-family: Gilroy;
    font-size: 16.805px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.container-main-oformlenia {
    background-size: cover;
    background-position: center;
    height: 40vh;
    width: 96%;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    will-change: transform, opacity;
    z-index: 1;
    position: relative;
    overflow: visible;
    background: linear-gradient(0deg, rgba(53, 53, 53, 0.60) 0%, rgba(53, 53, 53, 0.60) 100%), url("../img/bus.webp") lightgray 50% / cover no-repeat;
}

@media (max-width: 768px) {
    .container-main-oformlenia {
        height: 40vh;
    }

    .search-container-oformlenia {
        left: 50%;
        bottom: 15%;
    }

    .text-main-oformlenia {
        font-size: 26px;
    }

    .text-main-oformlenia2 {
        font-size: 20px;
    }

    .text-main-oformlenia3 {
        font-size: 16px;
    }

    .container-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .search-container-oformlenia {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        height: auto;
    }
}



.pasajir-bronya-body {
    width: 96%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pasajir-bronya-container {
    padding: 20px;
    width: 67%;
    border-radius: 10px;
    background: #F2F3F5;
}

.pasajir-bronya-container h2 {
    color: #353535;
    font-family: Gilroy;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 40px;
}

.pasajir-bronya-group {
    gap: 0px;
    display: flex;
    justify-content: flex-end;
}

.pasajir-bronya-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.pasajir-bronya-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.pasajir-bronya-group a {
    color: #06F;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
    padding-top: 0px;
}

.pasajir-bronya-group a:hover {
    color: rgba(0, 102, 255, 0.589);
}

.pasajir-bronya-total {
    color: #353535;
    font-family: Gilroy;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
    padding-top: 48px;
}

.pasajir-bronya-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 38px;
    padding: 18px 0px;
}

.pasajir-bronya-btn:hover {
    background-color: #0066ffb3;
}

.pasajir-bronya-checkbox-group {
    margin: 15px 0;
    font-size: 12px;
}

.pasajir-bronya-checkbox-group label {
    display: block;
    margin-bottom: 5px;
}

.pasajir-bronya-checkbox-group input {
    margin-right: 10px;
}

.pasajir-bronya-row {
    display: flex;
    gap: 10px;
}

.pasajir-bronya-row .pasajir-bronya-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pasajir-bronya-row {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
}

.pasajir-bronya-group {
    flex: 1;
}

.pasajir-bronya-group input {
    width: 100%;
    height: 52px;
    padding: 15px 20px;
    border-radius: 10px;
    background: #fff;
    border: none;
    color: rgba(53, 53, 53, 0.60);
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.pasajir-bronya-group input::placeholder {
    color: rgba(53, 53, 53, 0.60);
}

.pasajir-bronya-group input:focus {
    outline: none;
    color: #000;
}

.pasajir-bronya-add-passenger {
    text-align: center;
}

.pasajir-bronya-add-passenger a {
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pasajir-bronya-add-passenger a:hover {
    color: #0056b3;
}

.pasajir-bronya-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.pasajir-bronya-checkbox-group label {
    color: #353535;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
}

.pasajir-bronya-checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    min-width: 20px;
    min-height: 20px;
    border-radius: 4px;
    border: 1px solid #0066FF;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.pasajir-bronya-checkbox-group input[type="checkbox"]:checked {
    background-color: #0066FF;
    border: 1px solid #0066FF;
}

.pasajir-bronya-checkbox-group input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.pasajir-bronya-checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
    .pasajir-bronya-container {
        width: 100%;
    }

    .pasajir-bronya-body {
        display: flex;
        flex-direction: column;
    }

    .pasajir-bronya-row {
        flex-direction: column;
    }

    .pasajir-bronya-checkbox-group label {
        font-size: 12px;
    }

    .pasajir-bronya-row {
        gap: 10px;
    }

    .pasajir-bronya-group a {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .pasajir-bronya-container h2 {
        padding-bottom: 30px;
    }

    .pasajir-bronya-total {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .pasajir-bronya-checkbox-group {
        margin: 0px;
    }
}

.ticket-card {
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    background: #F2F3F5;
}

.ticket-header {
    color: #353535;
    font-family: Gilroy;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 20px;
}

.ticket-section {
    margin-bottom: 16px;
}

.ticket-section:last-child {
    margin-bottom: 0;
}

.ticket-time {
    color: #353535;
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ticket-location {
    color: #353535;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.ticket-price {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

.ticket-divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.icons-blyat {
    display: flex;
    gap: 33px;
    align-items: flex-start;
}

.ticket-section-price {
    color: #353535;
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: space-between;
}

.info-ticket-city {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 10px;
}

.info-ticket-time {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pasajir-bronya-btn2 {
    display: none;
}

@media (max-width: 768px) {
    .ticket-card {
        width: 100%;
    }

    .icons-blyat {
        gap: 21px;
    }

    .pasajir-bronya-btn {
        display: none;
    }

    .pasajir-bronya-btn2 {
        background-color: #0066ff;
        color: #fff;
        border: none;
        display: inline-flex;
        padding: 18px 74px 18px 75px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        font-size: 16px;
        transition: background-color 0.3s;
        border-radius: 10px;
        width: 100%;
        margin-bottom: 38px;
    }

    .pasajir-bronya-btn2:hover {
        background-color: #0066ffb3;
    }
}

.info-ticket-time {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icons-blyat img {
    padding-top: 30px;
    height: 250px;
}

@media (max-width: 1200px) {
    .icons-blyat img {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .icons-blyat img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .icons-blyat img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .icons-blyat img {
        height: 250px;
    }
}

button.remove-passenger {
    width: 52px;
    height: 52px;
    border: none;
    background: #0066ff;
    border-radius: 10px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.remove-passenger:hover {
    background-color: #0066ffb3;
}

.container-main-thank {
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 96%;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    will-change: transform, opacity;
    z-index: 1;
    position: relative;
    overflow: visible;
    background: linear-gradient(0deg, rgba(53, 53, 53, 0.60) 0%, rgba(53, 53, 53, 0.60) 100%), url("../img/bus.webp") lightgray 50% / cover no-repeat;
}

@media (max-width: 768px) {
    .container-main-thank {
        height: 100vh;
    }
}

.search-container-thank {
    display: flex;
    text-align: center;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 35%;
    flex-direction: column;
    gap: 30px;
}

.text-main-thank {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-main-thank2 {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 26.19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 768px) {
    .text-main-thank {
        font-size: 29.473px;
    }

    .text-main-thank2 {
        font-size: 17.543px;
    }

    .search-container-thank {
        width: 100%;
    }

    button.remove-passenger {
        width: 100%;
    }
}

.thank-bronya-btn {
    display: inline-flex;
    height: 50px;
    padding: 16px 43px 15px 43px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #06F;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: background-color 0.3s;
}

.thank-bronya-btn:hover {
    background-color: #0066ffb3;
}

.container-text-thank {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.pasagir-nomer {
    width: 52px;
    height: 52px;
    border: none;
    background: #0066ff;
    border-radius: 10px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pasagir-pajir {
    display: none;
}

@media (max-width: 768px) {
    .pasagir-nomer {
        width: auto;
        height: 52px;
        border: none;
        background: none;
        border-radius: 10px;
        transition: background-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #353535;
    }

    .pasagir-pajir {
        display: block;
    }

    .pasagir-nomer-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.ofer-block {
    background: #0066ffc7;
    height: auto;
    width: 96%;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.infos-ofers {
    padding: 100px 30px 30px;
}

.infos-ofers h1 {
    color: #ffffff;
    font-family: Gilroy;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 0px;
}

.infos-ofers h2 {
    color: #ffffff;
    font-family: Gilroy;
    font-size: 44.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 0px;
}

.infos-ofers p {
    color: #FFF;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 0;
}

.infos-ofers li {
    list-style-type: "-";
    color: #FFF;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px;
}

@media (max-width: 768px) {
    .infos-ofers h1 {
        font-size: 20px;
    }

    .infos-ofers h2 {
        font-size: 20px;
    }
}