@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;

}
:root {
    --first-family: 'Montserrat';
    --second-family: 'Manrope';
}

body {
    font-family: "Montserrat", system-ui;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #000;
}
a{
    color: #000;
    text-decoration: none;
}
a:hover{
    color: #000;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

h1{
    font-family: var(--first-family);
    font-size: 65px;
    font-weight: 700;
    line-height: 93px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
ul > li{
    list-style: none;
}
/*general styles*/
.footer-main__logo img {
    max-width: 157px;
}
.top-bar{
    width: 100%;
    height: 70px;
    display: flex;
    background-color: #fff;
    position: fixed;
    z-index: 99;
}
.top-bar .logo{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    transform: translate(-120%, 0);
    max-width: 100px;
    max-height: 80px;
}
.top-bar .logo img {
    width: 100%;
    height: 100%;
}
.top-menu {
    width: 100%;
    height: 100%;
}
.top-menu > ul {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}
.top-menu > ul > li{
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*min-width: 166px;*/
}
.top-menu > ul > li .active{
    background-color: rgba(128, 128, 128, 0.13);
}
.top-menu > ul > li > span {
    position: relative;
    width: 100%;
    height: 10px;
}
.top-menu > ul > li > a {
    height: 100%;
    font-family: var(--first-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #0a0d2f;
    width: fit-content;
    word-break: keep-all;
    white-space: nowrap;
    padding: 15px 35px;
    border-right: 1px solid rgba(10, 13, 47, 0.1);
}
.top-menu > ul > li:first-child > a {
    border-left: 1px solid rgba(10, 13, 47, 0.1);
}

.menu-btn {
    border-radius: 6px;
    width: 68px;
    height: 68px;
    position: absolute;
    right: 0;
    top: 0;
    z-index:2;
    overflow: hidden;
    background: #79c3cb;
    transform: translate(120%, 0);
    display: none;
    cursor: pointer;
}
.menu-btn .bar {
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
    top: calc(50% - 9px);
}
.menu-btn .bar:nth-of-type(3) {
    top: calc(50% + 9px);
}

/* Меняем гамбургер иконку, когда меню открыто */
.menu-btn.active .bar:nth-of-type(1) {
    display: none;
}
.menu-btn.active .bar:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}
.menu-btn.active .bar:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}
#header__nav .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 165px;
    padding: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(10, 13, 47, 0.1);
    transform: translateX(100%);
    transition: transform 0.5s;
    z-index: 997;
}
#header__nav .nav .nav__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
#header__nav .nav .nav__list > li > a{
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #0a0d2f;
}
#header__nav .nav .nav__list, .nav .additional-info{
    display: flex;
}
#header__nav .nav.active {
    transform: translateX(0);
}
body.menu-opened:before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.29); /* Semi-transparent black */
    backdrop-filter: blur(3px); /* Glass effect */
    -webkit-backdrop-filter: blur(3px); /* Safari support */
    z-index: 11;
    transition: opacity 0.5s;
}
#header__nav .nav .nav__list_item {
    list-style-type: none;
}
#header__nav .nav .additional-info{
    display: flex;
    justify-content: space-between;
}
#header__nav .nav .additional-info .left-part{
    display: flex;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #0a0d2f;
    gap: 30px;
}
#header__nav .nav .additional-info .right-part{
    display: flex;
    gap: 30px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #0a0d2f;
}
.additional-info .right-part .search{
    display: flex;
    align-items: center;
}
.additional-info .right-part .search button {
    background: #79c3cb;
    border-radius: 6px;
    width: 58px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%, 0);
}
.additional-info .right-part .search input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    width: 466px;
    height: 36px;
    padding: 0 20px 0 80px;
    margin: 0;
}
.additional-info .right-part .lang {
    border-radius: 6px;
    width: 58px;
    height: 36px;
    background: #79c3cb;
    display: flex;
    justify-content: center;
    align-items: center;
}
.additional-info .right-part .lang a{
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}

.header-padding{
    padding: 0;
}

.header-menu__main{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.header-menu__main-menu{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.header-menu__list_item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-menu__list_item.active a{
    color: #79c3cb !important;
}
.header-menu__list_item > .header-menu__link{
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}
.header-menu__right-part .header-menu__link-search{
    background: #79c3cb;
    border-radius: 6px;
    width: 58px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-menu__mail, .header-menu__phone{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.header-menu__mail{
    position: relative;
    justify-content: flex-start;
    z-index: 2;
}
.header-menu__phone{
    position: relative;
    justify-content: flex-end;
    z-index: 2;
}
.header-menu__mail > a,
.header-menu__phone > a,
.header-menu__lang{
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #fff ;
}

.header-menu__lang{
    background: #79c3cb;
    border-radius: 6px;
    width: 58px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}

.main-page__slider-block{
    /*transform: translate(0, -120%);*/
    margin-top: -200px;
}
.main-page__slider-item{
    width: 580px;
    height: 300px;
    background-color: #fff;
    border-radius: 42px;
    overflow: hidden;
    padding: 5px;
    position: relative;
}
.main-page__slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
}
.main-page__slider-item h5{
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 2;
    max-width: 235px;
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 22px;
    color: #fff;
}
.main-page__slider-item > a > p {
    display: block;
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    max-width: 335px;
}
.main-page__slider-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.main-page__slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 72%) 0%, /* Dark at the top */ rgba(0, 0, 0, 0) 30%, /* Transparent in the middle */ rgb(0 0 0 / 49%) 70%, /* Transparent in the middle */ rgba(0, 0, 0, 0.5) 100% /* Dark at the bottom */);
    z-index: 1; /* Ensure it appears above the image */
    pointer-events: none; /* Allow interactions with underlying content */
}
.slick-active.slick-center {
    transform: scale(1);
    opacity: 1;
}
.slick-active.slick-center .main-page__slider-item {
    transform: scale(1);
    opacity: 1;
}

.feedback-section{
    margin-top: 100px;
}
.f-back .fields-group{
    display: flex;
    gap: 20px;
}
.f-back .fields-group input {
    border-radius: 10px;
}
.f-back textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
}
.f-back textarea::placeholder {
    color: gray;
    font-size: 16px;
}

.modal-small{
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    transition: opacity 0.3s ease;
    z-index: 999;
}
.modal-small.show {
    pointer-events: auto;
    opacity: 1;
    display: flex;
}
.modal-small .modal-body {
    position: relative;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: fit-content;
    max-width: 50%;
    text-align: center;
    z-index: 999;
}
.modal-small .modal-body button.sub {
    background: #979e97;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    height: 92px;
    border-radius: 9px;
    font-family: var(--second-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.modal-small #tour-dates{
    font-size:22px;
    font-weight: 300;
}
.modal-small #tour-names{
    font-size:22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.slick-active.slick-center img {
    max-width: 100%;
}
.main-page__slider-item:not(.slick-center) {
    transform: scale(0.8);
    opacity: 0.8;
}
.slick-prev, .slick-next{
    top: 115%;
    border: 1px solid #fff;
    border-radius: 28px;
    width: 58px;
    height: 58px;
    background: #79c3cb;
    z-index: 3;
}
.slick-prev{
    left: 34%;
}
.slick-next{
    right: 34%;
}
button:focus:not(:focus-visible) {
    outline: 0;
    background: #79c3cb;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
    background: #79c3cb;
}
.slick-next:before {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="27" viewBox="0 0 14 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.16754 7.80343L4.31383 6.65821L10.5574 12.8996C10.6581 12.9996 10.7379 13.1186 10.7924 13.2496C10.8469 13.3806 10.875 13.5211 10.875 13.6629C10.875 13.8048 10.8469 13.9453 10.7924 14.0763C10.7379 14.2073 10.6581 14.3262 10.5574 14.4262L4.31383 20.6709L3.16862 19.5257L9.02866 13.6646L3.16754 7.80343Z" fill="white"/></svg>');
    background-size: contain; /* Adjust size if needed */
    background-repeat: no-repeat;
    display: inline-block; /* Ensure it behaves like a block element */
    width: 14px; /* Set width based on SVG dimensions */
    height: 27px; /* Set height based on SVG dimensions */
}
.slick-prev:before {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="27" viewBox="0 0 14 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.8325 19.1966L9.68617 20.3418L3.44258 14.1004C3.34194 14.0004 3.26207 13.8814 3.20756 13.7504C3.15306 13.6194 3.125 13.4789 3.125 13.3371C3.125 13.1952 3.15306 13.0547 3.20756 12.9237C3.26207 12.7927 3.34194 12.6738 3.44258 12.5738L9.68617 6.3291L10.8314 7.47432L4.97134 13.3354L10.8325 19.1966Z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 14px;
    height: 27px;
}
.slick-dots {
    position: absolute;
    bottom: -51px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    border-radius: 100%;
    outline: none;
    background: #fff;
    border: 2px solid #79c3cb;
}
.slick-dots li.slick-active button:before{
    opacity: 0;
}
.slick-dots li.slick-active button{
    background: #79c3cb;
    border-radius: 100%;
}
.slick-dots li button:before {
    opacity: 0;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 0;
}
#block-corusel .slick-dots li {
    display: none; /* Hide all dots by default */
}

#block-corusel .slick-dots li:nth-child(-n+6) {
    display: inline-block; /* Show only the first 6 dots */
}
.header {
    padding-top: 100px;
}

.text-left{
    text-align: left !important;
}
.main-page__content-block{
    /*transform: translate(0, -60%);*/
    margin: 100px 0;
    padding-top: 100px;
}

.arrow {
    position: relative;
}
.arrow::after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 14.975q-.2 0-.375-.062T11.3 14.7l-4.6-4.6q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l3.9 3.9l3.9-3.9q.275-.275.7-.275t.7.275t.275.7t-.275.7l-4.6 4.6q-.15.15-.325.213t-.375.062'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.active.arrow::after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 14.975q-.2 0-.375-.062T11.3 14.7l-4.6-4.6q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l3.9 3.9l3.9-3.9q.275-.275.7-.275t.7.275t.275.7t-.275.7l-4.6 4.6q-.15.15-.325.213t-.375.062'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
}

.main-page__content-block h2{
    font-family: var(--first-family);
    font-weight: 700;
    font-size: 54px;
    text-align: center;
    color: #0a0d2f;
    margin-bottom: 30px;
}
.main-page__content-block span {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: left;
    color: #0a0d2f;
}
.main-page__tours-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
}
.main-page__tour-item{
    border-radius: 42px;
    width: 100%;
    height: 353px;
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.main-page__tour-item:hover > img  {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}
.main-page__tour-item.small-card{
    max-width: 415px;
}
.main-page__tour-item.big-card{
    max-width: 629px;
}
.main-page__tour-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}
.main-page__tour-content{
    z-index: 2;
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.main-page__tour-content h5{
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    margin-bottom: 24px;
}
.main-page__tour-content p {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    color: #fff;
    margin-bottom: 24px;
}
.main-page__tour-content a {
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.03em;
    color: #fff;
    padding: 0;
}

.footer-main{
    min-height: 290px;
}
.footer-main__block{
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}
.footer-main__info{
    display: flex;
    gap: 30px;
}
.footer-main__info > a{
    max-width: 380px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.footer-main__info > a > img{
    max-width: 32px;
    max-height: 32px;
}
.footer-main__info > a > span{
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
.footer-main__menu ul{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}
.footer-main__menu ul > li > a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
.footer-main__general-info{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.footer-main__general-info > span,
.footer-main__general-info > a {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
.header-menu__logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-menu__logo img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 150px;
}
.header-mobile-menu{
    display: none;
}
.mobile-search{
    display: none;
}
.header__breadcrumbs{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
    z-index: 10;
    padding-top: 20px;
}
.breadcrumb{
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    z-index: 10;
}
/*general styles end */
.single-page{
    padding: 50px 0;
}
/*phrase-book*/
.header.phrase-book{
    background-image: url("../images/big/phrase-book.jpg");
    min-height: 657px;
    position: relative;
}
.header__title{
    position: relative;
    /*bottom: 50px;*/
    z-index: 5;
    display: block;
}
.header__title{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 80px;
    color: #fff;
}
.header.phrase-book:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.38);
    opacity: 0.8;
    z-index: 8;
}
.header.phrase-book .header-desktop .header-menu__logo{
    z-index: 9;
}
.header.phrase-book .header-desktop .header-menu__left-part{
    z-index: 9;
}
.header.phrase-book .header-desktop .header-menu__right-part{
    z-index: 9;
}

/* submenu */
.submenu {
    display: none;
    gap: 8px;
    flex-direction: column;
    position: absolute;
    top: 100%;
    margin-left: -32px;
    list-style: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: rgba(255, 255, 255, 1);
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-width: 160px;
}
.header-menu__list_item:hover .submenu {
    display: flex;
}
.submenu-item {
    line-height: normal;
}
.submenu-link {
    text-decoration: none;
    transition: all ease-in-out 0.36s;
}


main.phrase-book__content{
    padding-top: 60px;
}
.phrase-book__content .nav-pills{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.phrase-book__content .nav-pills > li > button {
    border: 1px solid rgba(10, 13, 47, 0.1);
    border-radius: 6px;
    width: 241px;
    height: 110px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
.phrase-book__content .nav-pills .nav-link.active, .phrase-book__content .nav-pills .show>.nav-link {
    background: #79c3cb;
    color: #fff;

}
.phrase-book__content .tab-pane h2.accordion__head-title{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 50px;
    color: #0a0d2f;
    margin-bottom: 60px;
    margin-top: 60px;
}
.phrase-book__content .tab-pane h5.accordion__head-subtitle{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 44px;
    color: #0a0d2f;
    margin-bottom: 60px;
}
.accordion-button:not(.collapsed) {
    background: #79c3cb;
    border: 1px solid rgba(10, 13, 47, 0.1);
    border-radius: 6px;
    width: 100%;
    height: 110px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #79c3cb;
    outline: none;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M2.12875 8.34368L0.980418 7.19427L7.23883 0.933681C7.33912 0.832763 7.45836 0.752674 7.58972 0.698022C7.72107 0.64337 7.86194 0.615235 8.00421 0.615235C8.14648 0.615235 8.28734 0.64337 8.4187 0.698022C8.55005 0.752674 8.6693 0.832763 8.76958 0.933681L15.0313 7.19426L13.8829 8.3426L8.00583 2.4666L2.12875 8.34368Z" fill="white"/></svg>');
    transform: rotate(360deg);
}
.accordion-item{
    margin-bottom: 20px;
    border: none;
}
.accordion-item .accordion-button{
    height: 110px;
    border: 1px solid rgba(0, 0, 0, .125);
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
}
.accordion-item:not(:first-of-type) {
    border-radius: 6px;
    width: 100%;
}
.table>:not(:last-child)>:last-child>* {
     border-bottom-color: unset;
}
.table>:not(caption)>*>* {
     border-bottom-width: 0;
}
.phrase-book__content table thead th {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 36px;
    color: #0a0d2f;
}
.phrase-book__content table tbody tr{
    border-bottom: 1px solid rgba(10, 13, 47, 0.3);
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #0a0d2f;
}
.links-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.links-list > .links-list__item{
    display: flex;
    flex-direction: column;
}
.links-list > .links-list__item b{
    font-family: var(--first-family);
    font-weight: 700;
    font-size: 24px;
    color: #0a0d2f;
}
.links-list > .links-list__item a{
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-decoration: unset;
    text-decoration-skip-ink: none;
    color: #59adb6;
}

.festival-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.festival-list .festival-item{
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid rgba(10, 13, 47, 0.1);
    border-radius: 6px;
    width: 300px;
    height: 240px;
    padding: 20px;
    cursor: pointer;
}
.festival-list.full-btn .festival-item{
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid rgba(10, 13, 47, 0.1);
    border-radius: 6px;
    width: 294px;
    height: 240px;
    padding: 0 !important;
    cursor: pointer;
}
.festival-list.full-btn button {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    gap:24px ;
}
.festival-list.full-btn .festival-item .active .festival-img-active{
    display: block;
}
.festival-list.full-btn .festival-item .active .festival-img {
    display: none;
}
.festival-list.full-btn .festival-item .active  span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}
.festival-list.full-btn .festival-item .active .festival-item__name{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}


.festival-list.full-btn button .festival-item__name{
    text-align: left;
}
.festival-list .festival-item:hover{
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid rgba(10, 13, 47, 0.1);
    border-radius: 6px;
    padding: 20px;
    background: #79c3cb;
}
.festival-list .festival-item .festival-img{
    display: block;
}
.festival-list .festival-item .festival-img-active{
    display: none;
}
.festival-list .festival-item:hover .festival-img-active{
    display: block;
}
.festival-list .festival-item:hover .festival-img {
    display: none;
}
.festival-list .festival-item:hover span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}
.festival-list .festival-item:hover .festival-item__name{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}
.festival-item .festival-item__date{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.festival-item .festival-item__date > span{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: rgba(10, 13, 47, 0.3);
}
.festival-item .festival-item__date > img{
    width: 36px;
    height: 36px;
}
.festival-item .festival-item__name{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
    max-width: 232px;
}

.festival-item__content h5{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    color: #0a0d2f;
    margin-bottom: 40px;
}
.festival-item__info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.festival-item__info-item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 375px;
}
.festival-item__info-item > b{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    color: #0a0d2f;
}
.festival-item__info-item > span{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
.cstm-pdng td{
    padding: 12px 0;
}
#pills-tab-travelinfo > li > button {
    width: fit-content;
    height: 110px;
}
.accordion__head-title-sm{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    color: #0a0d2f;
    margin-bottom: 20px;
}
.accordion__head-dvescr{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
    margin-bottom: 30px;
    display: block;
}
.list-info_accordion{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}
.list-info_accordion .item-info__accordion{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list-info_accordion .item-info__accordion > b{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    color: #0a0d2f;
}
.list-info_accordion .item-info__accordion > span{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
}
#accordionExampleGet .accordion-header > button{
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    height: 80px;
}
.accordion-note{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    color: #0a0d2f;
}
.accordion-lands-list{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /*flex-wrap: wrap;*/
    gap: 10%;
    margin: 10px 0 30px 0;
}
.accordion-lands-list > .land-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.accordion-lands-list > .land-col span {
    font-family: var(--first-family);
    font-weight: 700;
    font-size: 20px;
    color: #0a0d2f;
}
.accordion-lands__description{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #0a0d2f;
}
.nav-item.custom-weight{
    width: 400px;
}
.nav-item.custom-weight > button {
    width: 400px !important;
}
#pills-general .nav-pills > li > button{
    width: 197px;
    height: 80px;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}
.gen-info__text{
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0a0d2f;
    margin-bottom: 40px !important;
}
header.header-countries{
    background-size: cover;
}

.phrase-book__content .nav-pills.full-btn > li > button{
    width: 100%;
    height: 100%;
}
.festival-item__content{
    margin-top: 50px;
}
.phrase-book__accrdn .tab-content{
    margin-top: 50px;
}
.phrase-book__accrdn .accordion__head-title-sm{
    font-size: 40px;
}
/*phrase-book end*/
.eye-icon{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.eye-icon > img{
    width: 32px;
    height: 32px;
    cursor: pointer;
}
/*see more*/
.hidden-section.hidden{
    display: none;
}
.see-more__block{
    padding:100px 0;
}
.see-more__block h5{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 64px;
    color: #0a0d2f;
    margin-bottom: 40px;
}
.see-more__countries{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.see-more__countries > a{
    border-radius: 42px;
    width: 416px;
    height: 400px;
    position: relative;
    padding:40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.see-more__countries > a:hover img{
    transform: scale(1.1);
}
.see-more__countries > a.see-more__big-card{
    border-radius: 42px;
    width: 635px;
    height: 400px;
    position: relative;
    padding:40px;
}
.see-more__countries > a > span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    z-index: 2;
    display: block;
    position: relative;
}
.see-more__countries > a > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 42px;
    object-fit: cover;
}
.desktop_block{
    display: block;
}
.mobile_block{
    display: none;
}
.no-background{
    background-image: none;
    min-height: 295px;
}
.our-company-desc{
    margin-bottom: 100px;
}
.our-company-desc h1{
    font-family: var(--first-family);
    font-weight: 700;
    font-size: 64px;
    text-align: left;
    color: #0a0d2f;
    margin-bottom: 30px;
}
.our-company-desc h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.our-company-desc p{
    font-family: var(--first-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 40px;
}
.no-background h1{
    margin-top: 100px;
}
.no-background .header-menu__list_item > .header-menu__link{
    color: #000;
}
.no-background .header-menu__mail > a, .no-background .header-menu__phone > a{
    color: #000;
}
.header-menu__phone a.header-menu__lang{
    color: #fff;
}
.company-tours__list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.out-team{
    margin-bottom: 100px;
}
.out-team h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.company-tours__item{
    background: #79C3CB;
    width: 33%;
    height: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:var(--first-family) ;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.out-team p {
    font-family: var(--first-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.out-team__list{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.our-team__item{
    max-width: 308px;
    display: flex;
    flex-direction: column;
    border-radius: 11px;
}
.our-team__item-photo{
    width: 100%;
    height: 400px;
    border-radius: 11px;
    margin-bottom: 24px;
}
.our-team__item-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
}
.our-team__item-name{
    margin-bottom: 5px;
    font-family: var(--first-family);
    font-size: 28px;
    font-weight: 600;
    line-height: 38.25px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color:#0A0D2F;
    word-wrap: break-word;
}
.our-team__item-desc{
    font-family: var(--first-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color:#0A0D2F;
}
.our-mission{
    margin-bottom: 100px;
}
.our-mission h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.partners h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.our-mission__list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.our-mission__item{
    background: #79C3CB;
    width: 24%;
    height: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--first-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.our-company__policy{
    margin-bottom: 70px;
}
.see-more-section{
    margin-bottom: 100px;
}
.our-company__policy h3{
    font-family: var(--first-family);
    font-size: 38px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.our-company__policy p {
    font-family: var(--first-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0A0D2F;
}
.see-more-btn{
    font-family: var(--first-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 43.71px;
    text-align: left;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #79C3CB;
    background: none;
    outline: none;
    border: none;
    margin-top: 60px;
}
.partnership h2 {
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.partner-logo__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.partner-logo__item{
    width: 223px;
    height: 118px;
    border: 1px solid grey;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.partner-logo__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partnership-desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.partnership-desc .left-part{
    width: 50%;
    height: 596px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.partnership-desc .right-part{
    width: 50%;
    height: 596px;
}
.partnership-desc .right-part img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.testimonials h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 50px;
}
.testimonials__item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 7px;
    border: 1px solid #80808045;
    padding: 20px;
    margin-right: 20px;
    min-height: 325px;
}
.testimonials__slider{
    padding-bottom: 40px;
}
.testimonials{
    margin-bottom: 200px;
}
.testimonials .slick-prev{
    left: 0;
}
.testimonials .slick-next{
    right: 0;
}
.testimonials__item-info{
    display: flex;
    flex-direction: column;
}
.testimonials__item-info > span{
    font-family: var(--first-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.testimonials__item-name{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.testimonials__item-info > span:first-child{
    margin-bottom: 20px;
}
.testimonials__item-name b{
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 27.32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.testimonials__item-name span{
    font-family: var(--first-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.countries-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.countries-list__item{
    width: 49%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: 40px;
}
.countries-list__item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
    transition: all 0.5s;
    z-index: 2;
}
.countries-list__item > img:hover{
    transform: scale(1.1);
    transition: all 0.5s;
}
.countries-list__item > h2{
    font-family: var(--second-family);
    font-size: 40px;
    font-weight: 600;
    line-height: 54.64px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: block;
    position:relative;
    color: #fff;
    z-index: 5;
}
.central-asia{
    margin-bottom: 100px;
}
.central-asia .container >p {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 40px;
}
.central-asia h1 {
    font-family: var(--second-family);
    font-size: 80px;
    font-weight: 700;
    line-height: 131.14px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 40px;
}
.tour-fix-item{
    background: #fff !important;
    padding: 0;
}
.tour-fix-item.active{
    background: #fff !important;
}
.tour-fix-item.active .festival-item{
    background: #79c3cb !important;
}
.tour-fix-item.active .festival-img-active{
    display: block;
}
.tour-fix-item.active .festival-img {
    display: none;
}
.tour-fix-item.active span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}
.tour-fix-item.active .festival-item__name{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}
.tour-fix-item .festival-item__date span{
    text-align: left;
}
.tour-fix-item .festival-item__name {
    text-align: left;
}
.tour-fix-attributes{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tour-fix-attributes-item{
    display: flex;
    flex-direction: column;
}
.tour-fix-attributes-item b {
    font-family: var(--second-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 32.78px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 10px;
}
.tour-fix-attributes-item span {
    font-family: var(--second-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.tour-fix-attributes-item .months{
    display: flex;
}
.tour-fix-desc-photo{
    display: flex;
    gap:20px;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 60px;
}
.tour-fix-desc-photo > img {
    border-radius: 11px;
}
.fix-tours-dates__list{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.fix-tours-dates__item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    border: 1px solid #80808033;
    max-width: 345px;
    width: 100%;
    padding: 20px;
    height: 198px;
}
.fix-tours-dates h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.fix-tours-dates__item > span {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 200px;
}
.fix-tours-dates__item > a {
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 43.71px;
    letter-spacing: 0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #79C3CB;
}
.detailed{
    margin-top: 50px;
    margin-bottom: 50px;
}
.detailed h2{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}
.program-fix{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*flex-direction: column;*/
    border: 1px solid rgba(128, 128, 128, 0.38);
    padding: 20px;
    cursor: pointer;
}
.program-fix .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
.program-fix .white{
    display: none;
}
.program-fix .black{
    display: block;
}
.program-fix .program-fix_name{
    color: #000;
}
.program-fix.active{
    background: #79C3CB;
}
.program-fix.active .program-fix_name{
    color: #fff;
}
.program-fix.active .white{
    display: block;
}
.program-fix.active .black{
    display: none;
}
.highlights{
    margin: 30px 0;
}
.highlights h3{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.highlights .highlights-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}
.highlights .highlights-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    width: 100%;
    max-width: 418px;
    border: 1px solid rgba(128, 128, 128, 0.22);
    height: 140px;
}
.highlights .highlights-item > span {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.services__list h1 {
    font-family: var(--second-family);
    font-size: 80px;
    font-weight: 700;
    line-height: 131.14px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.itinerary h3{
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.services-cards{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.services-cards__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 404px;
    height: 300px;
    padding: 30px 30px 50px 30px;
    position: relative;
    border-radius: 42px;
}
.services-cards__card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
    border-radius: 42px;
    z-index: 2;
}
.services-cards__card > a {
    font-family: var(--second-family);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    color: #fff;
}
.services-cards__card > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    object-fit: cover;
}
.services-cards__card > h3 {
    font-family: var(--second-family);
    font-size: 28px;
    font-weight: 600;
    line-height: 44.64px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    z-index: 3;
    color: #fff;
    text-align: left;
    text-wrap: auto;
}
.services-cards__card > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-family: var(--second-family);
    z-index: 3;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    transition: all 500ms;
}
.services-cards__card > a:hover {
    letter-spacing: 2px;
    transition: all 500ms;

}
.tailor-made{
    width: 100%;
    background-image: url(../images/big/bg-tailor.png);
    background-size: cover;
    background-position: center;
    height: 1470px;
    margin-bottom: 100px;
}
.tailor-made h2 {
    font-family: var(--second-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 60px;
}
.tailor-made span{
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 60px;
    display: block;
}
.tailor-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}
.tailor-item{
    width: 100%;
    max-width: 230px;
    height: 90px;
    border: 1px solid #0000001A;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.tailor-item > p{
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}
.tailor-desc{
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.reservation, .mice, .rent, .souvenir{
    margin-bottom: 100px;
}
.reservation h2, .mice__title,
.rent h2, .souvenir h2{
    font-family: var(--second-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 67.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.reservation  span {
    font-family: var(--second-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    /*margin-bottom: 40px;*/
    display: block;
    color: #0A0D2F;
}
.reservation h3{
    font-family: var(--second-family);
    font-size: 36px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 20px;
}
.reservation p {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 3px;
    display: block;
}
.hotels-list{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.hotel-item{
    width: 100%;
    max-width: 240px;
    height: 120px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #0000001A;
    /*padding: 20px;*/
}
.hotel-item .nav-link{
    padding: 15px;
    height: 100%;
    width: 100%;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}
.reservation-cstm-m-t{
    margin-top: 40px;
}
.nav-pills .hotel-item  .nav-link.active{
    background:#79C3CB;
    width: 100%;
}
.nav-pills .hotel-item .nav-link.active > span{
    color: #fff;
}
.nav-pills .hotel-item .nav-link.active .white-star{
    display: block;
}
.nav-pills .hotel-item .nav-link.active .green-star{
    display: none;
}
.hotel-item .nav-link .hotel-top{
    margin-bottom: 10px;
}
.nav-pills .hotel-item .nav-link.active .hotel-top > span{
    color: #fff;
}
.hotel-item:last-child{
    width: 100%;
    max-width: 99%;
}
.hotel-item.no-last:last-child{
    width: 100%;
    max-width: calc(100% / 3.2);
}
.hotels > div > .r-l > .right-part .hotel__slider-item.cstm-height{
    height: 552px;
}
.hotel-item:last-child .hotel-top > span{
    margin-left: 0;
}
.accordion__head-title-sm.top-m-top{
    margin-top: 0;
}
.hotel-item .hotel-top{
    display: flex;
    max-height: 40px;
}
.hotel-item .hotel-top > span {
    margin-left: 10px;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #79C3CB;
}
.hotel-item .hotel-top > .white-star{
    display: none;
}
.hotel-item .hotel-top > .green-star{
    display: block;
}
.hotel-item .nav-link:hover{
    background: #79C3CB;
}
.hotel-item .nav-link:hover > .hotel-top > span{
    color: #fff;
}
.hotel-item .nav-link:hover > .hotel-name{
    color: #fff;
}
.hotel-item .nav-link:hover .white-star{
    display: block;
}
.hotel-item .nav-link:hover .green-star{
    display: none;
}
.hotel-item > .hotel-name{
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}
.hotel-item.no-last{
    max-width: calc(100% / 3.2);
}
.hotel-item.no-last.wid-4{
    max-width: calc(100% / 4.2);
}
.hotels{
    margin-top: 50px;
}
.hotels > div > .r-l{
    display: flex !important;
    margin-bottom: 100px;
}
.hotels > div > .r-l > .left-part{
    width: 50%;
    padding-right: 40px;
}
.hotels > div > .r-l > .right-part{
   width: 50%;
}
.hotels > div > .r-l > .right-part .hotel__slider-item{
    width: 100%;
    max-width: 700px;
    height: 345px;
    border-radius: 10px;
}
.hotels > div > .r-l > .right-part .hotel__slider-item > img{
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hotels .slick-next {
    right: 0;
}
.hotels .slick-prev {
    left: 0;
}
.hotels .slick-dots {
    bottom: -71px;
}
/*see more end*/
/*search page*/
form.search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 100px;
}
form.search > input{
    width: 80%;
    height: 100%;
    max-height: 100px;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 10px;
}
form.search > button {
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 0;*/
    background: #79C3CB;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 100px;
    padding: 10px 20px;
    border-radius: 10px;
}
form.search > button.btn:hover{
    background: #67a9af;
}
/*search page end*/
/*slider gallery*/
.gallery-block{
    margin-bottom: 100px;
}
.gallery-title{
    font-family: var(--second-family);
    font-size: 80px;
    font-weight: 700;
    line-height: 131.14px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 40px;
}
.slider-gallery{
    padding: 0 100px;
    margin-bottom: 20px;
}
.slider-gallery img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
}
.slider-gallery span {
    position:absolute;
    right: 20px;
    bottom: 20px;
    background: #fff;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border-radius: 12px;
    max-width: 470px;
}
.slider-nav img {
    width: 100%;
    height: 282px;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
    padding: 0 5px;
    border-radius: 12px;
}
.slider-nav{
    position: relative;
    width: 100%;
    height: 282px;
    border-radius: 12px;
    gap: 10px;
}
.gallery-block .slick-prev{
    left: 0;
    top: -100%;
}
.gallery-block .slick-next{
    right: 0;
    top: -100%;
}
.gallery-see-more h2{
    font-family: var(--first-family);
    font-size: 64px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 100px;
}
.see-more-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}
.see-more__item{
    position: relative;
    width: 400px;
    height: 470px;
    border-radius: 30px;
}
.see-more__item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;

}
.see-more__item span{
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 40px;
    font-weight: 600;
    line-height: 54.64px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
}
/*slider gallery end */
/*news*/
.form-image{
    margin: 100px 0;
}
.form-image__left-part{
    padding: 0 50px 0 0 ;
}
.form-image h2{
    font-family: var(--first-family);
    font-size: 64px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.form-image span {
    font-family: var(--first-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: block;
    margin: 50px 0;
}
.form-image form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.form-image form > input {
    width: 100%;
    height: 92px;
    border-radius: 9px;
    border: 1px solid gray;
    padding: 0 10px;
}
.form-image form > button {
    width: 100%;
    height: 92px;
    border-radius: 9px;
    background: #79C3CB;
    color: #fff;
    font-family: var(--first-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 20px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border: none;
    text-align: center;

}
.form-image img {
    width: 100%;
    height: 772px;
    object-fit: cover;
    object-position: center;
    border-radius: 42px;
}
/*news end */
/*contacts */
.contacts{
    margin: 100px 0;
}
.contacts__info{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 20px;
}
.contacts__item{
    width: 310px;
    height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid gray;
}
.contacts__item > img {
    max-width: 20px;
}
.contacts__item-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.custom-mr{
    padding: 0 15px ;
}
/*contacts end*/
/*our company*/
.green-office, .transport, .accommodation,
.meals, .tours, .rules, .horse, .birds,
.guides, .client{
    margin-bottom: 100px;
}
.green-office h3{
    margin-top: 50px;
}
.text-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 20px;
}
.text-list.fl-start{
    justify-content: flex-start;
}
.text-list .text-item{
    border: 1px solid #0000001A;
    font-family: var(--first-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    height: auto;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-item.count-3{
    max-width: 410px;
    height: auto;
}
.text-item.count-3:nth-last-child(2) {
    max-width: 49%;
}
.text-item.count-3:last-child {
    max-width: 49%;
}

.text-item.count-4:nth-last-child(5) {
    max-width: 410px;
}
.text-item.count-4:nth-last-child(4) {
    max-width: 410px;
}
.text-item.count-4:nth-last-child(3) {
    max-width: 410px;
}
.text-item.count-4:nth-last-child(2) {
    max-width: 49%;
}
.text-item.count-4:last-child {
    max-width: 49%;
}

.text-item.count-5{
    max-width: 410px;
    height: auto;
}
.text-item.count-5:nth-last-child(3) {
    max-width: 49%;
}
.text-item.count-5:nth-last-child(2) {
    max-width: 49%;
}
.text-item.count-5:last-child {
    max-width: 100%;
}

.text-item.count-6{
    max-width:32%;
    height: auto;
}
.text-item.count-7{
    max-width:32%;
    height: auto;
}
.text-item.count-6:last-child {
    max-width: 100%;
}
.partners > .container > .row {
    margin-top: 30px;
}
.partners_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.green-office h2{
    font-family: var(--first-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.transport h2,
.meals h2,
.accommodation h2{
    font-family: var(--first-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 67.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.tours h2, .rules h2, .horse h2,
.birds h2, .guides h2, .client h2{
    font-family: var(--first-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 87.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.cstm-m-t{
    margin-top: 30px;
}
.green-office h3{
    font-family: var(--first-family);
    font-size: 38px;
    font-weight: 700;
    line-height: 50.42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
/*our company end*/
/*fixed tours*/
.fix-tours .festival-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.fix-tours .festival-item .festival-item__date > span{
    font-size: 14px;
    display: block;
    position: relative;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.fix-tours .festival-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between ;
}
.fix-tours .festival-item .festival-item__date {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.fix-tours .festival-item__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}
.fix-tours .festival-item:hover .festival-item__name{
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

.fix-tours .festival-item .festival-item__date > img{
    width: 26px;
    height: 26px;
}
.fix-tours .festival-item{
    position: relative;
}
.festival-item__name.position-custom{
    position: absolute;
    top: 15px;
    right: 15px;
}
.fix-tour-details{
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 50px;
}
.fix-tour-details strong {
    color: #79C3CB;
}
.fix-tour-service-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}
.fix-tour-service-block{
    width: 45%;
}
.fix-tour-service-block h3 {
    font-family: var(--second-family);
    font-size: 44px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 40px;
}
.fix-tour-service-block .fix-tour-service_item{
    position: relative;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-left: 15px;
    margin-bottom: 30px;
}
.fix-tour-service_item:before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 100%;
    margin-right: 10px;
    position: absolute;
    top: 45%;
    left: 0;
}
.fixed_slider-block{
    margin-top: 50px;
    margin-bottom: 180px;
}
.fix__slider .slick-prev{
    left: 0;
}
.fix__slider .slick-next{
    right: 0;
}
.room-inf-list{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}
.room-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(128, 128, 128, 0.34);
    /*padding: 10px 15px;*/
    width: calc(100% / 4);
}
.room-item h5 {
    max-width: 250px;
}
.room-item p {
   margin-top: 20px;
}
.room-item > div {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 80px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.34);
}
.room-item:first-child{
    justify-content: flex-start;
    align-items: flex-start;
}
.room-item:first-child div{
    justify-content: flex-start;
}
.reservation-cstm-m-b{
    margin-bottom: 40px;
}
/*fixed tours end*/
/*services*/
.mice__list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*gap: 20px;*/
}
.mice__item{
    width: 100%;
    max-width: 205px;
    border: 1px solid #dedede;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 15px;
}
.mice__item > p {
    font-family: var(--first-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    word-break: break-word;
}
.rent-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.left-rent{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.left-rent > b,
.rent-right__item > span,
.rent-right__item > b{
    min-height: 70px;
}
.right-rent{
    width: 80%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 8%;
    position: relative;
}
.right-rent:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dedede;
    position: absolute;
    top: 45%;
    right: 0;
}
.rent-right__item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 160px;
    width: 100%;
}
.rent-right__item > b {
    color: #79C3CB;

}
.list-souvenir{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.item-souvenir{
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    max-width: 410px;
    width: 100%;
    height: 120px;
}
.item-souvenir > img {
    max-width: 20px;
}
main.service{
    margin-top: 50px;
}
/*services end*/

/*form*/
/* Left Side - Steps */
.steps {
    width: 35%;
    background-image:url("../images/ui/img_bg_form.jpg");
    color: #fff;
    border-radius: 50px;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}
.step {
    margin: 20px 0;
    font-size: 18px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 20px;
}
.step.active {
    opacity: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}
.step > span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0);
}
.step.active > span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
    background: #79C3CB;
}
/* Right Side - Form Content */
.form-content {
    width: 65%;
    padding: 30px;
    box-sizing: border-box;
}
.form-content h2 {
    font-family: var(--second-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.form-content p {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
input, select {
    width: 100%;
    height: 92px;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-sizing: border-box;
}
label {
    font-weight: bold;
    display: block;
}
.form-step button {
    background: #79C3CB;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    width: 264px;
    height: 92px;
    border-radius: 9px;
    font-family: var(--second-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
button.prev-step{
    background: #fff;
    color: #79C3CB;
    cursor: pointer;
    margin-top: 20px;
    width: 264px;
    height: 92px;
    border-radius: 9px;
    font-family: var(--second-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.form-step button:hover {
    background-color: #4094b7;
}
.form-step button.prev-step:hover{
    background-color: #fff;
}
.btn-group {
    display: flex;
    justify-content: flex-end;
}

.camps .hotel-item .nav-link{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide teps */
.form-step {
    display: none;
}
.form-step.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    /*align-items: flex-end;*/
}
.from-sbmt-block{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.form_steps{
    display: flex;
    padding: 15px;
    border: 1px solid rgba(128, 128, 128, 0.38);
    border-radius:50px ;
}
.many-inputs{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.many-inputs.select div{
    width: calc(100% / 3.1);
}
.many-inputs.select div.text-area{
    width: 100%;
}
.many-inputs select {
    height: 65px;
    border-radius: 9px;
}
.many-inputs.select textarea{
    width: 100%;
    height: 92px;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 9px;
    box-sizing: border-box;
}
.checkboxes__list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.form-content label {
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.form-content input {
    height: 80px;
    border-radius: 9px;
}
.new {
    padding: 50px;
}

.form-group {
    display: block;
    margin-bottom: 0;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #79C3CB;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}
.form-group input:checked + label:before{
    background-color: #79C3CB;
}
.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 11px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkboxes > label {
    margin-bottom: 30px;
}
/*form end*/

/*trekking*/
.hotel-item.last-no-w:last-child {
    width: 100%;
    max-width: 240px;
}
/*trekking end*/
/*trip-finder*/
.trip-finder > form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.trip-finder .form_inputs{
    width: 100%;
    max-width: 235px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.trip-finder .form_input-item{
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
.form_input-item > input {
    max-width: 85px;
    height: initial;
    width: initial;
    border-radius: 2px;
}
.trip-finder .form_inputs.checkbox{
    max-width: 750px;
}
.trip-finder .form_inputs.checkbox input{
    width: 44px;
    height: 44px;
}
.trip-finder .form_inputs.checkbox label {
    margin-right: 15px;
}
.al-b{
    justify-content: flex-end;
}
.min-h{
    min-height: 100px;
}
.form_inputs > button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #79C3CB;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right: 20px;
}

.form-checked label{
    position: relative;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.form-checked input {
    display: none;
}
.form-checked label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 44px;
    height: 44px;
}

.form-checked input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 9px;
    width: 22px;
    height: 14px;
    transform: translate(10%, -50%);
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.5404%201.2912C17.7393%201.49042%2017.8511%201.76047%2017.8511%202.04203C17.8511%202.3236%2017.7393%202.59365%2017.5404%202.79287L7.62369%2012.7095C7.42447%2012.9085%207.15442%2013.0203%206.87286%2013.0203C6.59129%2013.0203%206.32124%2012.9085%206.12202%2012.7095L0.455357%207.04287C0.350967%206.9456%200.267239%206.8283%200.209167%206.69796C0.151095%206.56763%200.11987%206.42694%200.117353%206.28427C0.114836%206.14161%200.141079%205.9999%200.194517%205.8676C0.247955%205.7353%200.327493%205.61512%200.428386%205.51423C0.52928%205.41334%200.649461%205.3338%200.781761%205.28036C0.91406%205.22692%201.05577%205.20068%201.19843%205.2032C1.34109%205.20571%201.48179%205.23694%201.61212%205.29501C1.74245%205.35308%201.85975%205.43681%201.95702%205.5412L6.87286%2010.457L16.0387%201.2912C16.2379%201.09223%2016.508%200.980469%2016.7895%200.980469C17.0711%200.980469%2017.3411%201.09223%2017.5404%201.2912Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
}
.form-checked input:checked + label:before {
    content: '';
    border: solid #79C3CB;
    background-color: #79C3CB ;
}
.tour .services-cards__card{
    height: 445px;
    justify-content: flex-start;
    gap: 40px;
}
.tour .services-cards__card p{
    color: #fff;
    display: inline-block;
    z-index: 2;
}
#tour-results{
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
}
h3.souvenir__title {
    font-family: var(--second-family);
    font-size: 36px;
    font-weight: 700;
    line-height: 49.18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 50px 0 30px 0;
}
.rent-list-mobile{
    display: none;
}
.rent-list.desc{
    display: flex;
}
.form-image_block{
    display: flex;
    flex-direction: row;
}
.form-image__left-part, .form-image__right {
    width: 48%;
}
/*trip-finder end*/

h2 {
    font-family: var(--first-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 65.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.trekking-page{
    margin-top: 100px;
}
.trekking-page .general-info{
    margin-bottom: 50px;
}
.trekking-page_tabs .hotel-item,
.trekking-page_tabs .hotel-item:last-child
{
    max-width: calc(100% / 4.2);
}
.trekking-page_tabs .hotels > div > .r-l{
    flex-wrap: wrap;
}
.trekking-page_tabs .hotel-item button{
    display: flex;
    justify-content: center;
    align-items: center;
}
.trekking-page_tabs .equip{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.trekking-page_tabs .equip .equip_item{
    padding:15px 10px;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.38);
    text-align: center;
}
.trekking-page_tabs .hotels .left-part{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.trekking-page_tabs .hotels .top{
    margin-bottom: 30px;
}
.new-tour-bg{
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 0 50px 0 50px;
    background: #79C3CB;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    z-index: 2;
}
.other_tours .services-cards__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: calc(100% / 4.2);
    height: 368px;
    padding: 30px 30px 50px 30px;
    position: relative;
    border-radius: 42px;
}
.trekking-page .right-part img {
    width: 100%;
}
.program-fix_map img {
    width: 100%;
}
.program-fix_accommodation-list h3 {
    margin-bottom: 30px;
}
.program-fix_addit_info h3, .program-fix_map h3{
    margin-top: 50px;
    margin-bottom: 30px;
}
/*main page adaptive*/
.fix__slider .slick-slide img{
    max-width: 404px;
    display: block;
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.link-styles a {
    color: #83d3dc;
    text-decoration: none;
    font-weight: 500;
}

/*button top*/
#button {
    background-color: #79c3cb;
    width: 55px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 995;
    display: flex;
    justify-content: center;
    align-items: center;
}
#button > img {
    transform: rotate(-90deg);
}

#button:hover {
    cursor: pointer;
    background-color: #67a7af;
}
#button:active {
    background-color: #73b5bd;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
/*button top end*/
/*booking btn*/
.modal-button {
    background-color: #47a386;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* box shadow to add depth */
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
}
.modal-button.close {
    max-width: 60px;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #79C3CB;
    border: 0;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* box shadow to add depth */
    color: #fff;
    font-size: 14px;
    padding: 10px;
}
.modal-small .modal-button.close{
     background-color: #979e97 !important;
}
.modal-button.close svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}
.modal-button-link{
    background-color: #79c3cb;
    width: 55px;
    color: #fff;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
/* Open Modal Container/Wrapper Full-screen */
.modal-container {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    /* Center modal container */
    align-items: center;
    justify-content: center;
    position: fixed;
    opacity: 0; /* to be hidden by default */
    pointer-events: none; /* so we can click the modal trigger */
    top: 0;
    left: 0;
    height: 100vh; /* =100% of viewport height */
    width: 100vw; /* = 100% of viewport width */
    transition: opacity 0.3s ease;
    z-index: 999;
}

/* Activate the class that we used in JS for the Event Listeners of modal's open and close button */
.modal-container.show {
    pointer-events: auto; /* set back the default value */
    opacity: 1;
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* box shadow to add depth */
    padding: 0;
    width: fit-content;
    max-width: 100%; /* Assures that it' ll be kept inside the browser width */
    text-align: center;
    z-index: 999;
}

.modal-content h1 {
    margin: 0;
}

.modal-content p {
    font-size: 14px;
    opacity: 0.7;
}

/* Remove Modal at First */
.modal_container {
    display: none;
}
/*booking btn end*/
.footer_social{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_social .social_top{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.footer_social .socials{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.mob {
    display: none !important;
}

/*submenu*/


@media (max-width: 1650px){
    .top-menu > ul > li > a{
        font-size: 16px;
        line-height: 130%;
    }
    .menu-btn {
        transform: translate(70%, 0);
    }
    .top-bar .logo {
        transform: translate(-70%, 0);
    }
}
@media (max-width: 1485px){
    .top-bar {
        height: 61px;
    }
    .top-menu > ul > li > a {
        padding: 15px 25px;
    }
    .menu-btn {
        transform: translate(-20%, 0);
        height: 61px;
    }
    .top-bar .logo {
        transform: translate(-10%, 0);
        height: 61px;
    }
    .top-bar .logo > a > img {
        height: 61px;
    }
    #header__nav .nav {
        top: 59px;
    }
}
@media (max-width: 1400px){
    .header-padding{
        padding-right: var(--bs-gutter-x, .75rem);
        padding-left: var(--bs-gutter-x, .75rem);
    }
    .header-menu__list_item > .header-menu__link {
        font-family: var(--second-family);
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        color: #fff;
    }
    .header-menu__mail > a, .header-menu__phone > a {
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 22px;
        line-height: 150%;
        color: #fff;
    }
    .menu-btn {
        transform: translate(110%, 0);
        height: 61px;
    }
    .top-bar .logo {
        transform: translate(-100%, 0);
        height: 61px;
    }
     #header__nav .nav .nav__list {
        padding: 20px 0;
    }
     #header__nav .nav .nav__list > li > a {
        font-size: 16px;
        line-height: 120%;
    }
     #header__nav .nav .additional-info .left-part {
        display: flex;
        font-family: var(--second-family);
        font-weight: 500;
        font-size: 20px;
        line-height: 130%;
        gap: 20px;
    }
    .additional-info .right-part .search input {
        width: 366px;
        height: 36px;
        padding: 0 25px;
    }
    .main-page__slider-item {
        height: 243px;
    }
    .main-page__tour-item.small-card {
        max-width: 346px;
    }
    .main-page__tour-item {
        height: 341px;
    }
    .main-page__tour-content h5 {
        font-size: 32px;
    }
    .main-page__tour-item.big-card {
        max-width: 536px;
    }
    .header.no-background {
        min-height: auto;
        background: none;
        padding-top: 71px;
    }
    h1 {
        font-family: var(--first-family);
        font-size: 69px;
        font-weight: 700;
        line-height: 131.14px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
    .our-mission__list {
        gap: 9px;
    }
    .our-mission__item {
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
        text-align: left;
    }
    .our-team__item {
        max-width: 263px;
    }
    .our-team__item-photo {
        width: 100%;
        height: 313px;
    }
    /* countries - page   */
    .header-countries .header__title > h1{
        font-size: 72px;
    }
    .breadcrumb{
        font-size:18px
    }
    .phrase-book__content .nav-pills > li > button {
        width: 206px;
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        color: #0a0d2f;
    }
    .accordion__head-title-sm {
        font-size: 32px;
    }
    .gen-info__text {
        font-size: 18px;
    }
    .see-more__block {
        padding: 80px 0;
    }
    .see-more__block h5 {
        font-size: 50px;
        margin-bottom: 40px;
    }
    .see-more__countries > a {
        width: 356px;
        height: 385px;
    }
    .see-more__countries > a > span {
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 32px;
        color: #fff;
        z-index: 2;
        display: block;
        position: relative;
    }
    .see-more__countries > a.see-more__big-card {
        width: 544px;
        height: 385px;
    }
    .phrase-book__content .tab-pane h2.accordion__head-title {
        font-size: 42px;
    }
    #pills-tab-travelinfo > li > button {
        width: fit-content;
        height: 101px;
    }
    .accordion-lands-list > .land-col span {
        font-size: 18px;
    }
    .list-info_accordion .item-info__accordion > b {
        font-size: 20px;
    }
    .list-info_accordion .item-info__accordion > span {
        font-size: 18px;
    }
    
    .our-team__item-name {
        font-size: 20px;
    }
    .our-team__item-desc {
        font-size: 16px;
        line-height: 21px;
    }
    .partners_row > img {
        max-width: 60%;
    }
    .testimonials__item-info > span {
        font-size: 15px;
    }
    .text-list .text-item {
        max-width: 263px;
    }
    .text-list .text-item{
        font-size: 16px;
    }
    h2{
        font-size: 50px!important;
    }
    h3 {
        font-size: 29px!important;
    }
    .services-cards__card{
        max-width: 357px;
        height: 323px;
    }
    .services-cards__card > h3{
        font-size: 22px !important;
        line-height: 30px;
    }
    .hotel-item.no-last.wid-4 {
        max-width: calc(100% / 4.3);
    }
    .right-rent {
        padding-left: 1%;
    }
    .item-souvenir {
        max-width: 351px;
    }
    /* countries - page end   */
    /*    news */
    .cstm-p{
        padding-top: 30px !important;
    }
    .highlights .highlights-item{
        max-width: calc(100% / 3.2);
    }
}
@media (max-width: 1340px){
    .top-menu > ul > li > a {
        padding: 15px 15px;
    }
    .menu-btn {
        transform: translate(20%, 0);
        height: 61px;
    }
    .top-bar .logo {
        transform: translate(-40%, 0);
        height: 61px;
    }
    .header {
        min-height: 708px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        padding-top: 71px;
    }

    .main-page__slider-block {
        margin-top: -175px;
    }
    .rent-list-mobile{
        display: block;
    }
    .rent-list.desc{
        display: none;
    }
    .rent-top-header{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;

    }
    .rent-top-header b{
        font-size: 20px;
        font-weight: 700;
        line-height: 27.32px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;

    }
    .rent-content__item span {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
    .rent-content__item b {
        color: #79C3CB;
    }
    .rent-bottom-content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    .rent-content__item{
        width:100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(128, 128, 128, 0.38);
    }
}
@media (max-width: 1200px){
    .menu-btn {
        transform: translate(70%, 0);
        height: 61px;
    }
    .top-bar .logo {
        transform: translate(-70%, 0);
        height: 61px;
    }
    .top-menu > ul > li > a {
        padding: 15px 10px;
        font-size: 15px;
    }
    #header__nav .nav .additional-info .left-part {
        font-size: 16px;
        line-height: 130%;
        gap: 15px;
    }
    .additional-info .right-part .search input {
        width: 266px;
        height: 26px;
        padding: 0 25px;
    }
    .additional-info .right-part .search a{
        height: 26px;
        width: 48px;
    }
    .additional-info .right-part .lang{
        height: 26px;
        width: 48px;
    }
    .additional-info .right-part .lang a {
        font-size: 16px;
    }
    .additional-info .right-part .search img {
        max-height: 20px;
    }
    #header__nav .left-part img {
        max-height: 20px;
        max-width: 20px;
        margin-right: 5px;
    }
    .header-menu__list_item > .header-menu__link {
        font-size: 14px;
        line-height: 100%;
        color: #fff;
    }
    .header-menu__mail > a, .header-menu__phone > a {
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        color: #fff;
    }
    .header-menu__mail img, .header-menu__phone img {
        max-height: 20px;
        max-width: 20px;
    }
    .header-menu__lang{
        width: 43px;
        height: 26px;
        font-size: 13px;
    }
    .header-menu__right-part .header-menu__link-search{
        width: 43px;
        height: 26px;
    }
    .header-menu__right-part .header-menu__link-search img {
        max-height: 20px;
        max-width: 20px;
    }
    .header-menu__logo img{
        max-width: 125px;
    }
    .header-menu__main {
        justify-content: space-around;
    }
    .main-page__slider-item h5 {
        max-width: 235px;
        font-weight: 500;
        font-size: 18px;
    }
    .main-page__slider-item {
        height: 228px;
    }
    .main-page__tour-item.small-card {
        max-width: 289px;
    }
    .main-page__tour-item {
        height: 300px;
    }
    .main-page__tour-content h5 {
        font-size: 32px;
    }
    .main-page__tour-item.big-card {
        max-width: 450px;
    }
    .main-page__tour-content h5 {
        font-size: 28px;
    }
    .main-page__tour-content p {
        font-weight: 400;
        font-size: 16px;
    }
    .footer-main__info > a > span {
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        color: #0a0d2f;
    }
    .footer-main__info {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
    /* countries - page   */
    .header-countries .header__title > h1{
        font-size: 50px;
    }
    .breadcrumb{
        font-size:16px
    }
    .header__breadcrumbs{
        padding-left: 25px;
    }
    .phrase-book__content .nav-pills > li > button {
        width: 171px;
        font-size: 16px;
    }
    #pills-general .nav-pills > li > button {
        width: 171px;
        height: 75px;
        font-size: 18px;
    }
    .see-more__countries > a {
        width: 296px;
        height: 340px;
    }
    .see-more__countries > a > span {
        font-size: 28px;
    }
    .see-more__countries > a.see-more__big-card {
        width: 455px;
        height: 341px;
    }
    .see-more__block h5 {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .festival-item__info-item{
        max-width: 100%;
    }
    /* countries - page end   */
    /* our company */
    .company-tours__item{
        font-size: 14px;
    }
    .our-mission__item {
        font-size: 14px;
    }
    .text-list .text-item {
        font-size: 14px;
    }
    .text-item.count-3:nth-last-child(2) {
        max-width: 47%;
    }
    .text-item.count-4:nth-last-child(2) {
        max-width: 100%;
    }
    .text-item.count-4:nth-last-child(3) {
        max-width: 100%;
    }
    .text-item.count-4:nth-last-child(4) {
        max-width: 454px;
    }
    .text-list .text-item {
        max-width: 293px;
    }
    .text-item.count-4:nth-last-child(5) {
        max-width: 48%;
    }
    .text-item.count-4:last-child {
        max-width: 100%;
    }
    .text-item.count-5:nth-last-child(3) {
        max-width: 48%;
    }
    .text-list {
        gap: 28px;
    }
    h2{
        line-height: 50.42px !important;
        font-size: 40px !important;
    }
    .green-office h3 {
        margin-top: 20px;
        line-height: 76.42px;
    }
    .text-list{
        margin-top: 0;
    }
    .testimonials__item{
        min-height: 290px;
    }
    .reservation h3{
        line-height: 35px;
    }
    .services-cards__card {
        max-width: 298px;
        height: 323px;
    }
    .tailor-list{
        gap: 15px;
    }
    .tailor-item {
        max-width: 213px;
    }
    .reservation-cstm-m-b > p {
        margin: 20px 0;
    }
    .hotel-item:last-child {
        width: 100%;
        max-width: 219px;
    }
    .hotel-item{
        max-width: 219px;
    }
    .reservation p {
        font-size: 16px;
    }
    .reservation span {
        font-size: 16px;
    }
    .room-item h5{
        font-size: 14px;
        padding: 0 5px;
        text-align: center;
    }
    .item-souvenir {
        max-width: 48%;
    }
    .many-inputs.select div {
        width: calc(100% / 2.1);
    }
    .checkboxes__list{
        justify-content: flex-start;
        gap: 20px;
    }
    .reservation span{
        line-height: 20px;
    }
    /* our company end */
    /* our-service */
    .form-content h2{
        font-size: 32px !important;
    }
    .form-content input {
        height: 60px;
        border-radius: 9px;
    }
    .many-inputs select {
        height: 60px;
        border-radius: 9px;
    }
    .form-step button{
        width: 235px;
        height: 75px;
        font-size: 22px;
    }
    /*    central asia*/
    .countries-list__item {
        width: 48%;
        height: 400px;
    }
    .trekking-page_tabs .hotel-item, .trekking-page_tabs .hotel-item:last-child {
        max-width: calc(100% / 4.3);
    }
    .other_tours .services-cards__card{
        max-width: calc(100% / 3.2);
    }
    .festival-list .festival-item {
        width: 291px;
        height: 235px;
    }
    .tour-fix-desc-photo > img {
        border-radius: 11px;
        max-width: 50%;
    }
    .header__title{
        font-size: 60px;
    }

}
@media (max-width: 1100px){
    .header {
        min-height: 530px;
        background-size: contain;
        background-position: center bottom;
        padding-top: 75px;
    }
    .main-page__slider-block {
        margin-top: -129px;
    }
    .top-menu > ul > li > a {
        padding: 15px 5px;
        font-size: 14px;
    }
    .menu-btn {
        transform: translate(-15%, 0);
        height: 61px;
    }
    .top-bar .logo {
        transform: translate(-10%, 0);
        height: 61px;
    }
    #header__nav .nav .nav__list {
        padding: 15px 0;
    }
    #header__nav .nav .nav__list > li > a {
        font-size: 14px;
        line-height: 100%;
    }
    #header__nav .nav .additional-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #header__nav .nav .additional-info .left-part {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        gap: 20px;
    }
    #header__nav .nav .additional-info .left-part img {
        max-height: 20px;
        margin-right: 10px;
    }
    .additional-info .right-part .search input {
        width: 266px;
        height: 26px;
        padding: 0 25px;
    }
    .header {
        min-height: 475px;
        background-size: contain;
        background-position: center bottom;
        padding-top: 65px;
    }
    .header.no-background{
        margin-top: 0;
    }
    h2 {
        font-size: 42px !important;
    }
    .see-more-btn{
        font-size: 24px;
    }
    h1 {
        font-size: 48px;
    }
}
@media (max-width: 992px){
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .top-bar, .header-desktop{
        display: none;
    }
    .header__nav.active{
        display: flex !important;
    }
    .main-page__slider-block {
        margin-top: -112px;
    }
    .header-mobile-menu{
        display: flex;
        background-color: #fff;
        position: fixed;
        width: 100vw;
        top: 0;
        height: 150px;
        padding: 20px;
        z-index: 15;
    }
    .header {
        min-height: 516px;
        margin-top: 150px;
    }
    #logo-mobile img {
        max-height: 95px;
    }
    .menu-btn-mobile {
        border-radius: 6px;
        width: 103px;
        height: 64px;
        z-index:6;
        overflow: hidden;
        background: #79c3cb;
        display: block;
        cursor: pointer;
        position: relative;
    }
    .menu-btn-mobile .bar {
        width: 30px;
        height: 3px;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 4px;
        transform: translate(-50%, -50%);
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        z-index: 7;
    }
    .header-mobile-menu__container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-btn-mobile .bar:nth-of-type(2) {
        top: calc(50% - 9px);
    }
    .menu-btn-mobile .bar:nth-of-type(3) {
        top: calc(50% + 9px);
    }
    #header__nav .nav {
        top: 150px;
        height: 230px;
    }
    .menu-btn-mobile.active .bar:nth-of-type(1) {
        display: none;
    }
    .menu-btn-mobile.active .bar:nth-of-type(2) {
        top: 50%;
        transform: translate(-50%, 0%) rotate(45deg);
    }
    .menu-btn-mobile.active .bar:nth-of-type(3) {
        top: 50%;
        transform: translate(-50%, 0%) rotate(-45deg);
    }
    #header__nav .nav .nav__list {
        padding: 25px 0;
        border-top: 1px solid rgba(10, 13, 47, 0.1);
        border-bottom: 1px solid rgba(10, 13, 47, 0.1);
        flex-wrap: wrap;
    }
    .header-mobile-menu__buttons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .mobile-lang-button{
        border: 1px solid rgba(10, 13, 47, 0.1);
        border-radius: 11px;
        width: 103px;
        height: 64px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 32px;
        line-height: 150%;
        color: #0a0d2f;
    }
    .header__nav .additional-info{
        padding: 20px 0;
        border-bottom: 1px solid rgba(10, 13, 47, 0.1);
    }
    #header__nav .additional-info .right-part{
        display: none !important;
    }
    #header__nav .nav .additional-info .left-part{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-search .search form{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 0;
        width: 100%;
    }
    .mobile-search .search form button {
        background: #79c3cb;
        border-radius: 6px;
        width: 58px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        /*transform: translate(20px, 0);*/
    }
    .mobile-search .search form input {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        width: 100%;
        height: 36px;
        padding: 0 25px;
        transform: translate(-5px, 0);
        margin: 0;
    }
    .mobile-search {
        display: flex;
    }
    #header__nav .nav .nav__list > li > a {
        font-size: 18px;
        line-height: 150%;
        font-weight: 500;
    }
    #header__nav .nav .additional-info .left-part {
        font-weight: 600;
        font-size: 20px;
        line-height: 150%;
        color: #0a0d2f;
    }
    #header__nav .nav .additional-info .left-part img {
        max-height: 30px;
        margin-right: 10px;
    }
    .slick-prev {
        left: 10%;
    }
    .slick-next {
        right: 10%;
    }
    .main-page__slider-item > a > p{
        padding-right: 20px;
    }
    .main-page__tour-item.small-card, .main-page__tour-item.big-card {
        max-width: 49%;
    }
    .main-page__tour-item.big-card:last-child{
        max-width: 100%;
    }
    .main-page__tour-content{
        z-index: 2;
        position: relative;
        padding: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .main-page__content-block h2 {
        font-weight: 700;
        font-size: 48px;
        text-align: center;
        color: #0a0d2f;
    }
    .main-page__content-block span {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        text-align: left;
        color: #0a0d2f;
    }
    .main-page__tour-content a {
        font-weight: 600;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0.03em;
        color: #fff;
    }
    .main-page__content-block {
        /* transform: translate(0, -60%); */
        margin: 100px 0;
        padding-top: 50px;
    }
    .footer-main__info {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .header.phrase-book:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.16);
        opacity: 0.8;
        z-index: 8;
    }
    .services-cards__card {
        max-width: 337px;
        height: 380px;
    }
    .main-news-list .main-page__tour-item {
        max-width: 48%;
    }
    .main-news-list .main-page__tour-item:last-child{
        width: 100%;
        max-width: 100%;
    }
    .cstm-p{
        padding-top: 10px;
    }
    .main-news-list{
        margin-top: 0;
    }
    .form-image_block{
        gap: 50px;
    }
    .form-image_block{
        flex-direction: column;
    }
    .form-image__left-part, .form-image__right {
        width: 100%;
    }
    .contacts {
        margin: 20px 0;
    }
    .contacts__info{
        flex-wrap: wrap;
        gap: 20px;
    }
    .contacts__item{
        width: 48%;
    }
    .trekking-page_tabs .hotels > div > .r-l{
        flex-direction: column;
    }
    .trekking-page_tabs .hotels .r-l .left-part{
        width: 100%;
    }
    .trekking-page_tabs .hotels .r-l .right-part{
        width: 100%;
    }
    .phrase-book__content .nav-pills > li > button{
        width: fit-content;
    }
    .festival-item__info{
        flex-direction: column;
    }
}
@media (max-width: 848px){
    .main-page__slider-block {
        margin-top: -90px;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 32px !important;
    }
    h2 {
        font-size: 28px !important;
    }
    h3{
        line-height: 34px !important;
    }
    .mob {
        display: flex !important;
    }
    .footer-main__logo{
        display: none;
    }
    #header__nav > nav > .container{
        padding: 0;
    }
     .top-menu {
       height: fit-content;
    }
    .top-menu > ul{
        flex-wrap: wrap;
        padding: 0px;
        justify-content: space-between;
    }
    .top-menu > ul:after{
        content: "";
        position: absolute;
        top: 0;
        right: 50%;
        width: 1px;
        height: 47%;
        background-color: #0a0d2f;
        opacity: 0.2;
    }
    .top-menu > ul > li:first-child > a{
        border-left: none ;
    }
    .top-menu > ul > li {
        width: 50%;
        min-height: 81px;
        height: 100%;
    }
    .top-menu > ul > li > a {
        word-break: break-all;
        border-right: unset;
        width: 100%;
        height: 100%;
        min-height: 70px;
        font-size: 16px;
    }
    #header__nav .nav .nav__list > li > a {
        font-size: 16px;
        line-height: 130%;
        font-weight: 500;
    }
    .green-office h3{
        font-size: 24px !important;
        margin-bottom: 20px;
    }
    p {
        font-size: 16px !important;
    }
    .main-page__content-block{
        margin: 20px 0;
        padding-top: 0;
    }
    .our-company-desc p{
        font-size: 16px;
    }
    .main-page__tours-list {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        margin: 50px 0;
    }
    .footer-main__block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 40px;
        gap: 50px;
    }
    .footer-main__menu ul{
        flex-wrap: wrap;
        gap: 30px;
    }
    .header {
        min-height: 190px !important;
        background-position: center top;
        transform: translate(0, 50%);
        background-size: cover;
        margin-top: 0;
    }
    .no-background h1{
        margin-top: 0;
    }
    .header.no-background{
        padding-top: 10px;
    }
    .header.header-countries{
        transform: translate(0, 0);
    }
    .header-mobile-menu {
        width: 100vw;
        height: 100px;
        padding: 20px;
        z-index: 15;
    }
    .header-mobile-menu .logo-mobile{
        height: 61px;
    }
    .header-mobile-menu .logo-mobile img{
        height: 100%;
    }
    .menu-btn-mobile {
        border-radius: 6px;
        width: 73px;
        height: 61px;
    }
    .mobile-lang-button {
        width: 73px;
        height: 61px;
        font-weight: 600;
        font-size: 22px;
    }
    #header__nav .nav {
        top: 97px;
        height: fit-content;
    }
    #header__nav .nav .nav__list{
        gap: 25px;
        position: relative;
    }
    #header__nav .nav .nav__list:after{
        content: "";
        position: absolute;
        top: 0;
        right: 50%;
        width: 1px;
        height: 100%;
        background-color: #0a0d2f;
        opacity: 0.2;
    }
    #header__nav .nav__list_item {
        width: 45%;
        border-bottom: 1px solid #0a0d2f;
    }
    #header__nav .nav .additional-info .left-part {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-page__slider-block {
        margin-top: 100px
    }
    .main-page__slider-item > a > p{
        padding-right: 20px;
    }
    .main-page__slider-item:not(.slick-center) {
        transform: scale(1);
        opacity: 1;
    }
    .phrase-book__content .nav-pills {
        justify-content: space-between;
    }
    .phrase-book__content .nav-pills > li  {
        width: 48%;
    }
    .phrase-book__content #pills-tab > li:first-child {
        width: 100vw;
    }
    .phrase-book__content .nav-pills > li > button {
        width: 100%;
    }
    .accordion-lands-list{
        flex-wrap: wrap;
    }
    .accordion-lands-list > .land-col{
        width: 30%;
    }
    #pills-general .nav-pills > li > button {
        width: 100%;
        height: 75px;
        font-size: 18px;
    }
    .accordion__head-title-sm {
        font-size: 32px;
    }
    .gen-info__text{
        margin-bottom: 30px;
    }
    #pills-tab-travelinfo > li > button {
        width: 100% !important;
        height: 101px;
    }
    .desktop_block{
        display: none;
    }
    .mobile_block{
        display: block;
    }
    .mobile_block .accordion-header >
    .accordion-button:not(.collapsed)::after,
    .mobile_block .accordion-header >
    .accordion-button::after{
        background-image: none;
        display: none;
    }
    .mobile_block .accordion-header >
    .accordion-button {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .company-tours__list{
        flex-direction: column;
        gap: 20px;
    }
    .company-tours__item{
        width: 100%;
        font-size: 24px;
    }
    .out-team__list{
        justify-content: center;
    }
    .our-team__item-name {
        font-size: 18px;
    }
    .our-team__item-desc {
        font-size: 14px;
        line-height: 21px;
    }
    .our-mission__list{
        flex-direction: column;
    }
    .our-mission__item{
        width: 100%;
    }
    .text-list .text-item {
        max-width: 47%;
    }
    .partners_row{
        flex-direction: column;
        justify-content: center;
    }
    .partners_row > img {
        max-width: 100%;
    }
    .our-team__item {
        max-width: 47%;
    }
    .text-list .text-item{
        width: 100%;
        max-width: 100%;
    }
    .text-item.count-3:nth-last-child(2){
        max-width: 100%;
    }
    .text-item.count-3:last-child {
        max-width: 100%;
    }
    .green-office .row {
        margin-bottom: 30px;
    }
    .text-item.count-4:nth-last-child(5) {
        max-width: 100%;
    }
    .text-item.count-4:nth-last-child(4) {
        max-width: 100%;
    }
    .text-item.count-5:nth-last-child(3) {
        max-width: 50%;
    }
    .text-item.count-5:nth-last-child(2) {
        max-width: 100%;
    }
    .text-item.count-5:nth-last-child(3) {
        max-width: 100%;
    }
    .partners .text-list .text-item{
        width: 47%;
    }
    .services-cards__card {
        max-width: calc(100% / 2.1);
        height: 380px;
    }
    .services-cards__card > a {
        font-size: 20px;
    }
    .tailor-made {
        width: 100%;
        background-size: contain;
        background-position: bottom;
        height: 1250px;
        margin-bottom: 100px;
        background-repeat: no-repeat;
    }
    .tailor-item {
        max-width: 181px;
    }
    .hotels-list {
        gap: 13px;
    }
    .hotel-item {
        max-width: 49%;
        height: 100px;
    }
    .hotel-item:last-child {
        width: 100%;
        max-width: 49%;
    }
    .hotels > div > .r-l {
        flex-direction: column;
    }
    .hotels > div > .r-l > .left-part {
        width: 100%;
        padding-right: 0;
    }
    .hotels > div > .r-l > .right-part {
        width: 100%;
        padding-right: 0;
    }
    .room-inf-list{
        flex-direction: column;
    }
    .room-item{
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid rgba(128, 128, 128, 0.34);
    }
    .room-item > div{
        justify-content: flex-start;
        width: 50%;
        border-right: 1px solid rgba(128, 128, 128, 0.34);
        border-bottom: unset;
        padding-bottom: 0;
    }
    .room-item > div > h5 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .room-item:first-child > div > h5{
        align-items: flex-start;
        font-weight: bold;
        font-size: 20px;
    }
    .room-item:first-child > p{
        align-items: flex-start;
        font-weight: bold;
        font-size: 20px;
    }
    .room-item > div {
        min-height: 50px;
    }
    .room-item h5{
        text-align: left;
    }
    .room-item p{
        margin-top: 0;
        padding-left: 10px;
        width: 50%;
    }
    .hotel-item.no-last.wid-4 {
        max-width: calc(100% / 2.1);
    }
    .form_steps{
        flex-direction: column;
        padding: 0;
    }
    .steps{
        width: 100%;
        display: flex;
        border-radius: 50px 50px 0 0;
        overflow: hidden;
    }
    .item-souvenir {
        max-width: 100%;
    }
    .form-content{
        width: 100%;
        height: 547px;
        overflow: auto;

    }
    .many-inputs{
        flex-direction: column;
    }
    .many-inputs.select div {
        width: 100%;
    }
    .form-content label{
        font-size: 15px;
        font-weight: 500;
        line-height: 21px;
    }
    .step {
        margin-right: 20px;
        min-width: 300px;
    }
    .mice__item{
        max-width: 48%;
    }
    .transport-imgs{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .transport-imgs > img {

    }
    .hotel-item.no-last{
        max-width: 48%;
    }
    .hotel-item.no-last:last-child {
        width: 100%;
        max-width: 100%;
    }
    .countries-list__item {
        width: 100%;
        height: 400px;
    }
    .central-asia{
        margin-top: 60px;
    }
    .main-news-list .main-page__tour-item {
        max-width: 100%;
    }
    .main-page__tour-item > img{
        object-position: top;
    }
    .main-news-list{
        margin: 0;
    }
    .form-image__left-part{
        padding: 0;
    }
    .form-image form > input {
        width: 100%;
        height: 60px;
    }
    .form-image form > button {
        width: 100%;
        height: 60px;
    }
    .form-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 42px;
    }
    .slider-gallery{
        padding: 0;
    }
    .slider-gallery img {
        width: 100%;
        height: 484px;
        object-fit: cover;
        object-position: center;
    }
    .slider-nav img {
        width: 100%;
        height: 171px;
    }
    .gallery-block{
        margin-top: 50px;
    }
    form.search{
        margin-top: 10px;
        flex-direction: column;
        margin-bottom: 0;
    }
    .other_tours .services-cards__card {
        max-width: calc(100% / 2.1);
    }
    .fix-tours .festival-list .festival-item{
        width: 100%;
    }
    .fix-tours .nav-item button, .fix-tours .nav-item{
        width: 100%;
    }
    .tour-fix-attributes{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .tour-fix-desc-photo{
        flex-direction: column;
    }
    .tour-fix-desc-photo > img {
        border-radius: 11px;
        max-width: 100%;
    }
    .fix-tours-dates__item{
        max-width: 100%;
    }
    .fix-tours-dates__item > a{
        font-size: 22px;
    }
    .tour-fix-desc-photo{
        margin-top: 20px;
    }
    .highlights .highlights-list{
        flex-direction: column;
    }
    .highlights .highlights-item {
        max-width: 100%;
    }
    .accordion-item .accordion-button{
        font-size: 18px;
    }
    .fix-tour-details{
        line-height: 33px;
        margin-bottom: 15px;
    }
    .fix-tour-details a{
       font-size: 18px;
    }
    .fix-tour-service-block{
        width: 100%;
    }
    .program-fix_accommodation-list .table tbody tr td:last-child {
        display: block;
        width: 100%;
        padding: 10px;    /* Adjust as needed */
        text-align: left; /* Align text if necessary */
    }
    .list-info_accordion .item-info__accordion > b{
        font-size: 16px;
    }
    .main-page__tour-item.small-card, .main-page__tour-item.big-card {
        max-width: 100%;
    }
    .cstm-pdng td {
        padding-left: 5px;
        border-right: 1px solid grey;
    }
    .cstm-pdng td:first-child{
        border-left: 1px solid grey;
    }
    .phrase-book__content table tbody tr{
        font-size: 14px;
    }
    .phrase-book__content .accordion-item{
        border-radius: 5px;
    }
    .phrase-book__content .tab-pane h5.accordion__head-subtitle{
        font-size: 18px;
        margin-bottom: 40px;
    }
    .phrase-book__content .tab-pane h2.accordion__head-title{
        margin-bottom: 40px;
    }
    .phrase-book__content .accordion-body{
        padding: 0;
        margin-top: 15px;
    }
    .main-page__slider-item > a > p{
        display: none;
    }
    .festival-list.full-btn .festival-item{
        width: 100%;
    }
    .main-page__content-block h2{
        margin-bottom: 30px;
    }
    #tour-filter-form .form_input-item > input{
        max-width: calc(100% / 2.2);
    }
    #tour-filter-form .form_inputs > button{
        margin-right: 0;
    }
    .trip-finder > form{
        margin-top: 50px;
    }
    .trip-finder .form_inputs{
        gap: 2px;
    }
    .f-back textarea{
        margin-top: 30px;
    }
    .f-back .fields-group{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .form-content h2 {
        font-size: 18px !important;
        line-height: 20px !important;
    }
    .form-content input{
        margin: 0;
    }
    .form-content p{
        font-size: 14px;
        line-height: 20px;
    }
    .mt-cst{
        margin-top: 100px;
    }
    #header__nav .nav .nav__list {
        padding: 10px 0;
    }
    #header__nav .nav .additional-info .left-part {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: #0a0d2f;
    }
    .mobile-search form.search {
        margin-top: 9px;
        margin-bottom: 0;
    }
    .mobile-search .search{
        width: 100%;
    }
    .mobile-search .search form input{
        font-size: 16px;
    }
    h1 {
        line-height: 35.14px;
    }
    .footer_social .social_top {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: space-between;
    }
    .form-group input:checked + label:after {
        top: 4px;
    }
    .modal-small .modal-body {
        max-width: 100%;
    }
}
@media (max-width: 670px){
    .services-cards__card {
        max-width: 100%;
        min-height: 320px;
        height: 100%;
    }
    .services-cards__card > h3 {
        font-size: 24px !important;
        line-height: 30px;
    }
    .hotel-item {
        max-width: 48%;
        height: 100px;
    }
    .hotel-item:last-child {
        max-width: 48%;
        height: 100px;
    }
    .tailor-item {
        max-width: calc(100% / 2.1);
    }
    .tailor-made {
        height: 1415px;
    }
    .tailor-made {
        height: 1415px;
    }
    .contacts__item{
        width: 100%;
    }
    .social_top > a {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .socials > a {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .social_top > a > img {
        max-width: 30px;
    }
}
@media (max-width: 530px){
    .phrase-book__content .nav-pills > li {
        width: 46%;
    }
    .accordion-lands-list{
        align-items: flex-start;
    }
    .rent-content__item span {
        width: 50%;
    }
    .item-souvenir {
        max-width: 100%;
    }
    .tailor-made {
        height: 1550px;
    }
    .hotel-item:last-child {
        max-width: 100%;
        height: 100px;
    }
    .hotel-item:last-child {
        max-width: 100%;
        height: 100px;
    }
    .form-step button {
        width: 100%;
        height: 63px;
        font-size: 20px;
        line-height: 23px;
    }
    .trip-finder .form_inputs {
        width: 100%;
        max-width: 100%;
    }
    .checkbox .form_input-item.form-checked{
        flex-wrap: wrap;
    }
    .trekking-page_tabs .hotel-item, .trekking-page_tabs .hotel-item:last-child {
        max-width: calc(100% / 2.1);
    }
    .other_tours .services-cards__card {
        max-width: 100%;
    }
}
@media (max-width: 450px){
    .accordion-lands-list > .land-col{
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .accordion-lands-list > .land-col > span{
        width:47%;
    }
    .main-page__slider-item {
        height: 194px;
        max-width: 280px;
    }
    .main-page__content-block h2 {
        font-weight: 700;
        font-size: 38px;
        text-align: left;
        color: #0a0d2f;
        line-height: 30px !important;
    }
    .company-tours__item{
        font-size: 16px;
    }
    .our-team__item-photo {
        width: 100%;
        height: 194px;
    }
    .our-team__item-name{
        line-height: 18px;
    }
    .text-list {
        gap: 17px;
    }
    .partners .text-list .text-item {
        width: 47%;
    }
    .green-office, .transport, .accommodation, .meals, .tours, .rules, .horse, .birds, .guides, .client {
        margin-bottom: 50px;
    }
    .hotel-item.no-last:last-child {
        width: 48%;
        max-width: 100%;
    }
}
@media (max-width: 390px){
    .accordion-lands-list > .land-col{
        width: 100%;
    }
    .hotel-item .nav-link .hotel-top {
        margin-bottom: 3px;
    }
    .hotel-item .nav-link{
        padding: 5px;
    }
}
/*main page adaptive end*/