<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner__n-img .bannerMob{
    display: none;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*formLoader*/

.form_loader {
    position: fixed;
    display: none;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
    position: absolute;
    width: 350px;
    max-width: 90%;
    left: 50%;
    top: 45%;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.form_loader_animate {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.form_loader_animate:after {
    content: "";
    display: block;
    width: 85%;
    height: 85%;
    /*margin: 8px;*/
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #0079bf transparent #0079bf transparent;
    animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
    font-size: 20px;
    text-align: center;
}

@keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*formLoader*/

/* alert */

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.alert--error,
.alert--warning,
.alert--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #373767;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 16px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}


/* alert */

.test {
    height: 100vh;
}

.padding {
    padding: 100px 0;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #222222;
}

html::-webkit-scrollbar-thumb {
    background: #007FA6;
    border-radius: 25px;
}


/* header */

.space {
    height: 100px;
}

.header {
    background: rgba(69, 69, 69, 0.46);
    padding: 25px 0;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    width: 227px;
    height: 40px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__lan {
    cursor: pointer;
    position: relative;
    width: 94px;
    height: 36px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease-in;
    position: relative;
    text-transform: uppercase;
    border-radius: 4px;
}

.header__lan svg {
    margin-left: 9px;
}

.header__lan.active .header__lan-dropdown {
    height: 131px;
}

.header__lan.active .header__lan-dropdown .header__lan-inner {
    height: 41px;
}

.header__lan-dropdown {
    /* background: rgba(0, 0, 0, 0.24); */
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(24px);
    border-radius: 8px;
    position: absolute;
    top: 68px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 210px;
    text-transform: capitalize;
    height: 0;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.header__lan.active .header__lan-dropdown::before,
.header__lan:hover .header__lan-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    background-image: url("../img/Frame\ 465.svg");
    width: 100%;
    height: 8px;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.header__lan-inner {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #007FA6;
    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 25px rgba(27, 31, 35, 0.75); */
    transition: all 0.15s ease-in;
    height: 0;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.header__lan-inner:hover,
.header__lan-inner.active {
    background: #007FA6;
    color: #fff;
    text-shadow: unset;
}

.header__links {
    display: flex;
    align-items: center;
}

.header__link {
    /* font-weight: 500; */
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.15s ease-in;
    margin-right: 24px;
}

.header__link:last-child {
    margin-right: 0;
}

.header__link:hover {
    background: #007FA6;
}

.header__link-drop {
    position: relative;
}

.header__link-drop.active .header__link-dropdown-in {
    height: 41px;
}

.header__link-drop.active .header__link-dropdown {
    opacity: 1;
}

.header__link-dropdown {
    position: absolute;
    top: 75px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 4px 0px;
    /* background: rgba(0, 0, 0, 0.24); */
    background: #fff;
    /* cell */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(24px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
    transition: all 0.3s ease-in;
    opacity: 0;
}

.header__link-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: url('../img/Frame\ 465.svg');
    background-repeat: no-repeat;
}

.header__link-dropdown-in {
    height: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    padding-left: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
    color: #007FA6;
    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 25px rgba(27, 31, 35, 0.75); */
    transition: all 0.3s ease-in;
}

.header__link-dropdown-in:hover {
    background: #007FA6;
    color: #fff;
    text-shadow: unset;
}

.header__contacts {
    display: flex;
    align-items: center;
}

.header__phone {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    margin-right: 30px;
}

.header__phone:hover {
    color: #007FA6;
    transition: all 0.15s ease-in;
}

.header__contact-link {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.33px;
    color: #FFFFFF;
    background: #007FA6;
    border-radius: 4px;
    padding: 16px;
    border: 1px solid #007FA6;
    transition: all 0.15s ease-in;
    border-radius: 20px 0px !important;
}

.header__contact-link:hover {
    background: #FFFFFF;
    color: #007FA6;
}

.burger {
    width: 35px;
    height: 27px;
    display: flex;
    flex-direction: column;
    display: none;
}

.burger .line {
    width: 100%;
    height: 3px;
    background: #007FA6;
    border-radius: 20px;
    transition: all 0.2s ease-in;
    margin-bottom: 5px;
}

.burger .line:last-child {
    margin-bottom: 0;
}

.burger .line:nth-child(2n) {
    width: 50%;
}

.burger.active .line:nth-child(2n) {
    width: 100%;
}


/* header ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* banner */

.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15%;
}

.banner__pretitle {
    font-family: 'Montserrat';
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 25px rgba(27, 31, 35, 0.75);
    margin-bottom: 20px;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.tabcontent img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.37) 8.39%, rgba(0, 0, 0, 0) 61.92%);
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
}

.banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.37) 48.25%, rgba(0, 0, 0, 0.69) 118.91%);
    opacity: 0.65;
    /* transform: rotate(-180deg); */
    z-index: -1;
    pointer-events: none;
}

.tab-head {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    background: rgba(14, 12, 12, 0.44);
    border: 1px solid #343434;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    width: fit-content;
}

.tablink {
    color: #FFFFFF;
    cursor: pointer;
    font-weight: 500;
    background: 0 0;
    border: none;
    padding: 16px 18px;
    border-radius: 50px;
    text-align: center;
}

.tablink.active {
    background: #FFFFFF;
    backdrop-filter: blur(11px);
    color: #007FA6;
}

.banner__title-wrapper {
    position: relative;
    width: 100%;
}

.banner__title {
    /* position: absolute; */
    /* left: 0; */
    height: 100%;
    /* width: 0; */
    text-align: center;
    /* overflow: hidden; */
}

.banner__title h1 {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* white-space: nowrap; */
    margin-bottom: 30px;
}

.banner__plain {
    position: absolute;
    width: max-content;
    height: 100%;
    display: flex;
    left: -100%;
    align-items: center;
    transform-origin: 50% 0;
    transform-box: fill-box;
}

.banner__plain img {
    width: 100%;
    height: 70%;
    object-fit: contain;
}

.tab-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.banner__title h1 {
    font-family: 'Gabriela';
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
}

.banner__title span {
    display: block;
    text-transform: uppercase;
}

.tabcontent p, .banner__new-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    max-width: 948px;
    margin-bottom: 50px;
}
.banner__new-text{
    margin-top: 30px;
}
.bannet-btn {
    background: #007FA6;
    border-radius: 20px 0px;
    color: #FFFFFF;
    padding: 15px 53px;
    border: 1px solid #007FA6;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 252px;
    transition: all 0.3s ease-in-out;
}

.bannet-btn:hover {
    background: #fff;
    color: #007FA6;
}


/* banner ends */


/* banner ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.title {
    font-family: 'Gabriela';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 1px;
    color: #1B1918;
    margin-bottom: 50px;
}

.title.white {
    color: #FFFFFF;
    margin-bottom: 26px;
}

.paddings {
    padding-top: 100px;
}

.paddings2 {
    padding: 100px 0;
}

.breadcrumbs {
    margin-top: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline-block;
    margin-bottom: 5px;
    color: rgba(50, 47, 65, 0.5);
}

.breadcrumbs a {
    color: rgba(50, 47, 65, 0.5);
}

.breadcrumbs li:not(:first-child):before {
    display: inline-block;
    content: '';
    width: 13px;
    height: 13px;
    margin-bottom: -1px;
    margin: 0 13px;
    background: url(../img/arr.svg) center / contain no-repeat;
}

.breadcrumbs li:last-child a {
    color: #322F41;
    font-weight: 500;
    pointer-events: none;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 50px 0 100px 0;
}

.pagination a {
    background: #FFFFFF;
    box-shadow: 0px 3px 10px rgba(195, 212, 218, 0.38);
    border-radius: 10px;
    padding: 16px;
    color: #000000;
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    transition: all 0.15s ease-in;
}

.pagination li {
    margin-right: 5px;
}

.pagination li:last-child {
    margin-right: 0;
}

.pagination a:hover,
.pagination .active a,
.pagination a:hover svg path {
    background: #007FA6;
    color: #FFFFFF;
    fill: #FFFFFF;
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* tours */

.tours {}

.tour__header .title {
    margin-bottom: 0;
}

.tour__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.tour__header select {
    width: 325px;
    height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 2px 11px rgba(174, 192, 209, 0.32);
    border-radius: 5px;
    border: none;
    outline: none;
    font-weight: 500;
    padding: 10px 16px;
    color: #64676C;
    cursor: pointer;
}

.tour__header button {
    width: 150px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
    transition: all 0.15s ease-in;
    background: #FFFFFF;
    border: 1px solid #D7DADE;
    color: #007FA6;
    cursor: pointer;
}

.tour__header button:hover {
    background: #007FA6;
    border: 1px solid #007FA6;
    color: #FFFFFF;
}

.bg {
    background-image: url("../img/bg1.png");
    background-position: left;
    background-repeat: no-repeat;
}

.tour__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}


/* new */

.tour__item-date {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    color: #6A737D;
}

.tour__item-price {
    padding: 12px;
    background: #F6F8FA;
    font-weight: 700;
    color: #6A737D;
    white-space: nowrap;
}

.tour__item-price span {
    margin-left: 10px;
    font-weight: 700;
    font-size: 23px;
    color: #ECBB00;
}

.tour__item-benefits {
    display: flex;
    align-items: center;
}

.tour__item-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.tour__item-benefits img {
    width: 19px;
    height: 16px;
    margin-left: 20px;
}


/* new */

.tour__item {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px -4px rgb(0 0 0 / 25%);
    border-radius: 0px 0px 10px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour__item .padding {
    padding: 20px 20px 0 20px;
}

.tour__item-season {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 25px rgba(27, 31, 35, 0.75);
    padding: 12px 35px;
    z-index: 10;
}

.tour__item-img {
    height: 264px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    display: inline-block;
}

.tour__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in;
}

.tour__item-img img:hover {
    transform: scale(1.1);
}

.tour__item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.1px;
    color: #1B1918;
    display: inline-block;
    transition: all 0.15s ease-in;
}

.tour__item-title:hover {
    color: #007FA6;
}


/* .tour__item-date {
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.3px;
    color: #6A737D;
} */


/* .tour__item-price {
    font-size: 16px;
    letter-spacing: 0.1px;
    color: #6A737D;
}

.tour__item-price span {
    font-weight: 700;
    font-size: 24px;
    color: #ECBB00;
} */


/* .tour__item-benefits {
    display: flex;
    align-items: center;
}

.tour__item-benefits img {
    width: 20px;
    height: 19px;
    margin-right: 20px;
} */

.tour__item-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    margin-bottom: 20px;
}

.tour__item-links a {
    width: 49%;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
    transition: all 0.15s ease-in;
}

.tour__item-read {
    background: #FFFFFF;
    border: 1px solid #D7DADE;
    color: #007FA6;
}

.tour__item-read:hover {
    background: #007FA6;
    border: 1px solid #007FA6;
    color: #FFFFFF;
}

.tour__item-request {
    background: #007FA6;
    border-radius: 20px 0px !important;
    color: #FFFFFF;
    border: 1px solid #007FA6;
}

.tour__item-request:hover {
    background: #FFFFFF;
    color: #007FA6;
}

.tours__btn {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #1B1918;
}

.tours__btn svg {
    margin-left: 10px;
    width: 50px;
    height: 50px;
}

.tours__btn:hover {
    color: #007FA6;
    background: none;
}


/* tours ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* types */

.types__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 33px;
    grid-auto-rows: 281px;
}

.types__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.types__item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(32, 14, 50, 0) 0%, rgba(32, 14, 50, 0.6486) 100%);
    pointer-events: none;
}

.types__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.types__block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.types__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
}

.types__icon {
    padding: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin-bottom: 27px;
}

.types__item:hover .types__hid {
    height: 120px;
    padding: 15px;
}

.types__hid {
    font-size: 16px;
    line-height: 138%;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(179.9deg, rgba(32, 14, 50, 0) -45.56%, rgba(18, 34, 48, 0.8554) 99.91%);
    border-radius: 10px;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    width: 100%;
}


/* types ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.video__title {
    font-weight: 500;
    color: #1B1918;
}

.video__img {
    border-radius: 10px;
    overflow: hidden;
    height: 221px;
    position: relative;
    cursor: pointer;
}

.video__img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(36, 34, 34, 0) 0%, rgba(36, 34, 34, 0.47) 75.33%);
}

.video__img svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video__img:hover svg {
    width: 55px;
    height: 55px;
}

.video__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 100%;
    color: #64676C;
    margin: 20px 0;
}


/* /////////////////////////////// */

.mustknow__items,
.video__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
}

.mustknow__item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 221px;
    transition: all 0.3s ease-in-out;
}

.mustknow__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 39, 39, 0.27);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.mustknow__item:hover::before {
    background: rgba(57, 57, 57, 0.72);
}

.mustknow__item img,
.video__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mustknow__item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    color: #FFFFFF;
}

.mustknow__item:hover a {
    opacity: 1;
}

.mustknow__item a {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, rgba(193, 193, 193, 0.72) 0%, rgba(57, 57, 57, 0) 100%);
    border-radius: 100% 100% 0 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.mustknow__item a svg {
    margin-bottom: 5px;
}

.blognew__arrows .slick_arrow {
    border: none;
    background: none;
    cursor: pointer;
}

.blognew__arrows {
    display: flex;
    align-items: center;
}

.pagingInfo {
    font-weight: 500;
    font-size: 18px;
    color: #ECBB00;
    margin: 0 30px;
    flex-shrink: 0;
}

.pagingInfo:first-letter {
    font-weight: 500;
    font-size: 24px;
    color: #1B1918;
}

.blognew {
    overflow: hidden;
}

.blognew__slider {
    margin-right: -250px;
}

.blognew__slide {
    position: relative;
    height: 440px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blognew__slide:hover p {
    /* color: #007FA6; */
}

.blognew__slide p {
    padding: 20px;
    position: absolute;
    bottom: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #FFFFFF;
    text-shadow: 0px 5.33333px 5.33333px rgba(0, 0, 0, 0.25), 0px 1.33333px 33.3333px rgba(27, 31, 35, 0.75);
    transition: all 0.3s ease-in-out;
}

.blognew__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(.39, .575, .565, 1), opacity .525s, -webkit-transform 1.5s cubic-bezier(.39, .575, .565, 1);
}

.blognew__slide img:hover {
    transform: scale(1.1);
}

.blognew .slick-slide {
    margin: 0 15px;
}

.blognew .slick-list {
    margin: 0 -15px;
}


/*  */


/**
    *  Progress Bar
    */

.progress {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
    background-image: linear-gradient(to right, black, black);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
    margin-left: 100px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.blognew__scroll {
    display: flex;
    align-items: center;
    margin-top: 50px;
}


/* *************************************************************** */


/* blog */

.blog {
    background: #1B1918;
    padding-top: 26px;
}

.blog__container {
    display: flex;
    flex-wrap: wrap;
}

.blog__item {
    width: 25%;
    position: relative;
    padding-top: 17%;
}

.blog__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(53, 52, 59, 0.2);
    backdrop-filter: blur(5.33333px);
    z-index: 2;
}

.blog__item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    color: #FFFFFF;
    text-shadow: 0px 5.33333px 5.33333px rgba(0, 0, 0, 0.25), 0px 1.33333px 33.3333px rgba(27, 31, 35, 0.75);
    z-index: 3;
}

.blog__item img,
.youtube__container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* whi blog */

.blog.white {
    background: none;
}

.blog__container.white {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 373px;
}

.blog.white .blog__item {
    width: 100%;
    position: relative;
    transition: all 0.3s ease-in;
}

.blog.white .blog__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog.white .blog__item:hover .blog__info {
    opacity: 1;
    width: 100%;
}

.blog__info {
    position: absolute;
    padding: 16px;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.blog__info svg {
    margin-left: 42px;
}

.blog__info-title {
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
}


/* blog ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* advice */

.advice__container {
    display: grid;
    grid-gap: 68px;
    grid-template-columns: repeat(4, 1fr);
}

.advice__item {
    width: 100%;
}

.advice__img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.advice__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advice__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1B1918;
    margin-bottom: 20px;
}

.advice__item p {
    line-height: 144%;
    letter-spacing: 0.3px;
    color: #6A737D;
    margin-top: auto;
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* youtube */

.youtube {
    background: #1B1918;
}

.youtube__container {
    border-radius: 10px;
    width: 100%;
    position: relative;
    padding-top: 50%;
    overflow: hidden;
}

.youtube__container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube__container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(36, 34, 34, 0) 0%, rgba(36, 34, 34, 0.47) 75.33%);
    z-index: 2;
    pointer-events: none;
}


/* youtube ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* footer */

.footer a {
    transition: all 0.15s ease-in-out;
}

.footer a:hover {
    color: #007FA6;
}

.footer,
.dark__bg {
    background: #1B1918;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 50px;
}

.footer__bottom a,
.footer__bottom p {
    color: #FFFFFF;
}

.footer {
    padding-top: 50px;
}

.footer__container,
.footer__box,
.footer__box-item a {
    display: flex;
    justify-content: space-between;
}

.footer__box-item svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.footer__box-item a {
    align-items: center;
}

.footer__box-item a,
.footer__box {
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: normal;
}

.footer__box svg {
    margin-right: 15px;
    display: flex;
    flex-shrink: 0;
}

.footer__box-item a {
    font-weight: 500;
}

.footer__box-item.active a {
    font-weight: 400;
}

.footer__box-item.active a:first-child {
    font-weight: 500;
}

.footer__box-item {
    margin-right: 24px;
}

.footer__box-item:last-child {
    margin-right: 0;
    width: 30%;
}

.footer__block,
.footer__box-item {
    display: flex;
    flex-direction: column;
}

.footer__box:last-child {
    flex-direction: row;
    max-width: 261px;
}

.footer__logo {
    width: 225px;
    height: 40px;
    margin-bottom: 50px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__item svg {
    width: 16px;
    height: 19px;
    display: flex;
    flex-shrink: 0;
    margin-right: 17px;
}

.footer__item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 50px;
    justify-content: unset !important;
}

.footer__item-s {
    display: flex;
    align-items: center;
}


/* footer ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* detailsTour */

.detailsTour {
    overflow: hidden;
}

.detailsTour {
    background-image: url("../img/detailsTour-bg.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 60% 50%;
}

.detailsTour__container {
    display: flex;
    justify-content: space-between;
}

.detailsTour__block:first-child {
    width: 60%;
}

.detailsTour__block:last-child {
    width: 35%;
}

.detailsTour__block p {
    line-height: 167%;
    color: #1B1918;
}

.detailsTour__pickup {
    margin-top: 100px;
}

.detailsTour__pickup-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #1B1918;
}


/* check */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/**/


/**-*-*-*-**-*-*-*-**-*--*-*-*-**-*-**-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-**-*-*-*-*-*-*-*-*-*-**-*-*-*/


/* detailsTour first block range*/

.irs--flat .irs-line {
    top: 25px;
    height: 3px;
    background: #E1E4E8;
    border-radius: 4.00208px;
}

.irs--flat .irs-bar {
    top: 25px;
    height: 3px;
    background: #007FA6;
    border-radius: 4.00208px;
}

.irs--flat .irs-handle&gt;i:first-child {
    position: absolute;
    display: block;
    top: -15px;
    left: -35%;
    width: 37px;
    height: 37px;
    background: #FFFFFF;
    border: 0.667014px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0px 4.00208px 10.6722px rgb(0 0 0 / 15%), 0px 1.33403px 1.33403px rgb(0 0 0 / 16%), 0px 4.00208px 1.33403px rgb(0 0 0 / 10%);
    border-radius: 133.403px;
}

.irs--flat .irs-handle.state_hover&gt;i:first-child,
.irs--flat .irs-handle:hover&gt;i:first-child {
    background-color: #D0DCF3;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #007FA6;
    background-color: white;
}

.irs--flat .irs-to:before,
.irs--flat .irs-from:before,
.irs--flat .irs-single:before {
    border-top-color: #FFFFFF;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    display: none;
}

.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 50px;
    left: 0;
    cursor: default;
    white-space: nowrap;
}


/**/


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* todo */

.todo {
    overflow: hidden;
}

.todo__container {
    display: flex;
    justify-content: space-between;
}

.todo__block {
    width: 40%;
}

.todo__block-2 {
    width: 58%;
    clip-path: inset( -100vw -100vw -100vw 0);
    cursor: grab;
}

.todo__block p {
    line-height: 167%;
}

.todo__item {
    width: 100%;
    height: 565px;
}

.todo__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.todo__block-info {
    margin-top: 50px;
}

.todo__block-info-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(208, 220, 243, 0.27);
    border-radius: 10px;
    width: fit-content;
}

.todo__block-info-box svg {
    margin-right: 15px;
}

.swiper-scrollbar-drag {
    height: 100%;
    position: relative;
    background: #D0DCF3;
    border-radius: 5px;
    height: 7px;
    left: 0;
    top: 0;
}

.swiper-scrollbar {
    background: rgba(208, 220, 243, 0.27);
    border-radius: 5px;
    height: 7px !important;
}

.swiper-horizontal&gt;.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    left: 0;
    bottom: 0;
    z-index: 50;
    height: 5px;
    width: 100%;
    margin: 30px 0;
}


/* todo ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.banner__n-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.banner__n-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* todomain */

.todo__banner {
    position: relative;
}

.todo__banner .breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}

.todo__banner .breadcrumbs li:last-child a {
    color: #FFFFFF;
}

.todo__banner .breadcrumbs {
    margin-top: 0;
    padding-top: 130px;
}

.todomain__banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 212px 0 100px 0;
    margin-top: -160px;
    position: relative;
    margin-bottom: 50px;
}

.todomain__banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(174.77deg, rgba(35, 35, 35, 0) 4.19%, rgba(22, 21, 21, 0.66) 88.8%);
}

.todomain__banner-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.todomain__banner-text div {
    margin-bottom: 50px !important;
}

.todomain__banner-text p {
    width: 922px;
    line-height: 167%;
    color: #FFFFFF;
    text-align: center;
    height: 100px;
    overflow: hidden;
}

.todomain__container {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    /* margin-top: 500px; */
}

.todomain__img {
    width: 100%;
    height: 332px;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1;
    display: inline-block;
}

.todomain__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.todomain__text {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px -4px rgba(157, 165, 187, 0.25);
    padding: 20px;
    border-radius: 10px;
    z-index: 20;
    margin-top: -20px;
    position: relative;
}

.todomain__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 83%;
    color: #1B1918;
    transition: all 0.15s ease;
    display: inline-block;
}

.todomain__title:hover {
    color: #007FA6;
}

.todomain__text p {
    line-height: 167%;
    color: #000000;
}


/* todomain ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.news {
    background-image: url('../img/news.svg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 40%;
}

.news__container {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.news__item {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 35px -4px rgba(157, 165, 187, 0.25);
    border-radius: 20px 20px 0px 0px;
    background: #FFFFFF;
}

.news__link-text,
.news__item p {
    padding: 0 20px;
}

.news__link-text {
    font-weight: 700;
    line-height: 133%;
    color: #1B1918;
    transition: all 0.15s ease-in;
    display: inline-block;
    position: relative;
    margin-bottom: 42px;
    margin-top: 20px;
}

.news__link-text::before {
    position: absolute;
    content: "";
    width: 216px;
    height: 2px;
    top: 100%;
    background: #007FA6;
    margin: 20px 0;
}

.news__link-text:hover {
    color: #007FA6;
}

.news__item p {
    line-height: 144%;
    color: #1B1918;
    padding-bottom: 20px;
}

.news__link {
    font-weight: 600;
    font-size: 18px;
    line-height: 111%;
    letter-spacing: 0.3px;
    color: #007FA6;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    display: inline-block;
    width: 236px;
    padding: 14px;
    text-align: center;
    transition: all 0.15s ease-in;
    margin-top: auto;
    margin: auto 20px 20px 20px;
}

.news__link:hover {
    background: #ECBB00;
    color: #FFFFFF;
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* inner news */

.innernews {
    overflow: hidden;
}

.innernews .title {
    margin-bottom: 50px;
}

.news__share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.news__share-block,
.news__share-icon {
    display: flex;
    align-items: center;
}

.news__share-block {
    font-weight: 500;
    font-size: 18px;
    color: #828282;
}

.news__share-block:last-child {
    color: #007FA6;
    font-weight: 700;
}

.news__share-icon a {
    margin-right: 44px;
}

.news__share-icon a:first-child {
    margin-left: 33px;
}

.news__share-block:last-child svg {
    margin-right: 12px;
}

.innernews__text {
    width: 55%;
}

.innernews__img {
    width: 45%;
    height: 658px;
    margin-right: 30px;
}

.innernews__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.new__img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
}

.new__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innernews__container {
    display: flex;
    justify-content: space-between;
}

.innernews__container p {
    margin-bottom: 30px;
    line-height: 167%;
    color: #322F41;
}

.innernews__container p:last-child {
    margin-bottom: 0;
}

.innernews__container-title {
    font-family: 'Gabriela';
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 127%;
    color: #322F41;
}

.padding__bottom {
    padding-bottom: 100px;
}


/* inner news ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* tourinner */

.tourinner {
    padding-top: 100px;
}

.tourinner__questions-block {
    width: 49%;
}

.accordion,
.panel {
    width: 100%;
    text-align: start;
}

.tourinner__questions-container {
    display: flex;
    justify-content: space-between;
}

.tourinner__questions-item {
    margin-bottom: 38px;
}

.accordion {
    position: relative;
    font-weight: 500;
    line-height: normal;
    font-size: 24px;
    color: #1B1918;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding-right: 80px;
}

.accordion {
    margin-bottom: 30px;
}


/* .accordion__plus {
    width: 70px;
    height: 70px;
    content: '\002B';
    color: #007FA6;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 35px -4px rgba(157, 165, 187, 0.25);
} */

.accordion:after {
    position: absolute;
    content: '\002B';
    color: #007FA6;
    top: 0;
    right: 0;
    background: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 35px -4px rgba(157, 165, 187, 0.25);
}

.accordion.active:after {
    content: "\2212";
    color: #FFFFFF;
    background: #007FA6;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    line-height: normal;
}

.tourpage__links {
    margin-top: 50px;
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    font-weight: 500;
    color: #000000;
    padding: 16px 50px;
    transition: all 0.15s ease-in;
}

.tourpage__links:hover {
    background: #007FA6;
    color: #FFFFFF;
}

.tourinner {
    overflow: hidden;
}

.tourinner__slider {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 656px;
}

.tourinner__slider::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.37) 27.16%, rgba(0, 0, 0, 0) 66.92%);
    opacity: 0.65;
    transform: rotate(-180deg);
    z-index: 70;
    pointer-events: none;
}

.tourinner__slider::after {
    pointer-events: none;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.37) 27.16%, rgba(0, 0, 0, 0) 66.92%);
    opacity: 0.65;
    transform: rotate(-180deg);
    z-index: 70;
}

.slider-for .item {
    width: 100vw;
    height: 656px;
}

.slider-for .item img,
.slider-nav .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    max-width: 1013px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -115%);
    margin-bottom: 22px;
    z-index: 80;
}

.slider-nav .item {
    width: 181.62px;
    height: 138.88px;
    border-radius: 20.0312px;
    overflow: hidden;
}


/*  */

.tourinner1__slider {
    margin-right: -400px;
}

.tourinner1__slider .slick-slide {
    margin: 0 15px;
}

.tourinner1__slider .slick-list {
    margin: 0 -15px;
}

.tourinner1__slider .blognew__slide {
    height: 333px;
}


/*  */

.slider-nav .slick-slide {
    margin: 0 20px;
}

.slider-nav .slick-list {
    margin: 0 -20px;
}

.tourinner__container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.tourinner__left {
    width: 60%;
}

.tourinner__right {
    width: 35%;
}

.tourinner__right .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.tourinner__left-header {
    background: #F6F8FA;
    border-radius: 10.6833px;
    padding: 18px 0px;
    width: 95%;
    margin-bottom: 100px;
}

.tourinner__left-header,
.t__l-h-item {
    display: flex;
    align-items: center;
}

.t__l-h-item svg {
    margin-right: 20px;
}

.t__l-h-item {
    margin-left: 100px;
}

.t__l-h-item:first-child {
    margin-left: 0px;
}

.tourinner__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0 57px 0;
}

.tourinner__title .title {
    margin-bottom: 0 !important;
}

.tourinner__price {
    color: #828282;
}

.tourinner__price span {
    font-weight: 700;
    font-size: 32px;
    color: #ECBB00;
    margin-left: 16px;
}

.tourinner__left-info p {
    line-height: 167%;
}

.tourinner__benefits {
    margin-top: 58px;
    margin-bottom: 100px;
    display: grid;
    grid-row-gap: 35px;
    grid-column-gap: 115px;
    grid-template-columns: repeat(3, 2fr);
}

.tourinner__benefits-item {
    display: flex;
    align-items: center;
}

.tourinner__benefits-img {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.tourinner__benefits-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tourinner__benefits-pretitle {
    color: #6A737D;
    margin-bottom: 10px;
}

.tourinner__benefits-title {
    font-weight: 600;
}

.tourinner__program-in,
.tourinner__program-out {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 45px;
}

.tourinner__program-in {
    margin-bottom: 100px;
}

.tourinner__program-block div {
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.tourinner__program-in .tourinner__program-block div::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../img/Vector\ 8.svg');
    background-repeat: no-repeat;
}

.tourinner__program-out .tourinner__program-block div::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../img/Vector\ 9.svg');
    background-repeat: no-repeat;
}


/*  */

.tourinner__right-header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.tourinner__right-header a {
    margin-left: 56px;
}

.tourinner__form {
    display: grid;
    grid-gap: 21px;
    width: 100%;
    margin-bottom: 21px;
}

.tourinner__form .detailsTour__block-input-inner {
    width: 100%;
}

.tourinner__form .detailsTour__block-input-inner button {
    margin: 0;
}

.tourinner__form button {
    margin-top: 21px;
    background: #ECBB00;
    border-radius: 10.6833px;
    width: 100%;
    padding: 16px;
    border: 1px solid #ECBB00;
    transition: 0.15s ease-in;
    cursor: pointer;
}
.tourinner__form button:hover{
    background: none;
    color: #ECBB00;
}
.tourinner__form input {
    padding: 16px;
    outline: none;
    background: #F6F8FA;
    border: 1.33403px solid #E1E4E8;
    border-radius: 10.6722px;
}

.tourinner__form textarea {
    padding: 16px;
    height: 129px;
    background: #F6F8FA;
    border: 1.33542px solid #E1E4E8;
    border-radius: 10.6833px;
    resize: none;
}

.tourinner__phone {
    font-weight: 500;
}

.tourinner__phone a {
    color: #007FA6;
    transition: 0.15s ease-in;
}

.tourinner__phone a:hover {
    color: #ECBB00;
}


/* tourinner ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* contact */

.contact__container {
    display: flex;
}

.contact__info {
    margin-bottom: 34px;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start !important;
    width: 50%;
}

.contact__info-box {
    margin-bottom: 50px;
    flex-wrap: nowrap !important;
}
.contact__info-box:last-child svg{
margin-left: -4px;}
.contact__info,
.contact__info-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact__info-box {
    margin-right: 63px;
    font-weight: 500;
    color: #000000;
}

.contact__info-box svg {
    margin-right: 13px;
    flex-shrink: 0;
}

.contact__map {
    width: 100%;
    box-shadow: 0px 3px 10px rgba(195, 212, 218, 0.38);
    border-radius: 5px;
    overflow: hidden;
    height: 538px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
}


/* contact ends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* aboutus */

.aboutus {
    overflow: hidden;
}

.aboutus__container {
    display: flex;
    position: relative;
}

.aboutus__banner {
    width: 25%;
}

.aboutus__mask {
    -webkit-mask-image: url('../img/Union.png');
    mask-image: url('../img/Union.png');
    -webkit-mask-size: contain;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 554px;
    width: 85%;
    flex-shrink: 0;
    margin-right: -140px;
}

.aboutus__mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus__container p,
.aboutus__statistics {
    position: absolute;
}

.aboutus__banner p {
    line-height: 167%;
    color: #6A737D;
    max-width: 742px;
    top: 40%;
    height: 119px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.aboutus__container .title {
    margin-top: 100px;
}

.aboutus__statistics {
    bottom: 0;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.aboutus__statistics-item {
    margin-right: 86px;
}

.aboutus__statistics-num {
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 48px;
    color: #007FA6;
}

.aboutus__statistics-yiyle {
    font-size: 24px;
    color: #000000;
    max-width: 234px;
}

.mission {}

.mission__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

.mission__info p {
    line-height: 167%;
    color: #6A737D;
    width: 1121px;
    position: absolute;
    top: 30px;
    height: 117px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mission__statistics {
    position: absolute;
    bottom: 0;
    width: 790px;
}

.mission__imgs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mission__img:first-child {
    width: 49%;
    height: 375px;
    border-radius: 0px 0px 0px 100px;
    overflow: hidden;
}

.mission__img:last-child {
    width: 49%;
    height: 580px;
}

.mission__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission__statistics {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: auto;
}

.aboutus__statistics-item {
    margin-bottom: 79px;
}

.aboutusMission__container {
    display: flex;
    align-items: center;
}

.aboutusMission__imgs,
.aboutusMission__info {
    width: 80%;
}

.aboutusMission__info {
    margin-left: 50px;
}

.aboutusMission__imgs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-left: -115px;
}

.aboutusMission__title {
    font-family: 'Gabriela';
    font-size: 24px;
    color: #000000;
    margin-bottom: 50px;
}

.aboutusMission__info p {
    line-height: 167%;
    color: #6A737D;
    margin-bottom: 30px;
}

.aboutusServices {
    background: #1B1918;
}

.aboutusServices__container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.aboutusServices__link {
    border-radius: 0px 0px 0px 48px;
    overflow: hidden;
    height: 345px;
    width: 100%;
    position: relative;
    display: block;
}

.aboutusServices__container ::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180.18deg, rgba(22, 22, 22, 0) 27.78%, rgba(22, 22, 22, 0.68) 99.84%);
}

.aboutusServices__link p {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    font-family: 'Gabriela';
    font-size: 24px;
    color: #FFFFFF;
    width: 100%;
}

.aboutusServices__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .aboutusMission__img {
width: 48%;
} */

.aboutusMission__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutusMission__img:first-child {
    height: 694.8px;
    width: 566px;
    overflow: hidden;
    margin-right: 30px;
    /* -webkit-mask-image: url('../img/Union2.png');
mask-image: url('../img/Union2.png');
-webkit-mask-size: contain;
mask-size: 100%;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat; */
}

.aboutusMission__img:last-child {
    height: 462px;
    width: 364px;
    border-radius: 0px 100px 0px 0px;
    overflow: hidden;
}


/* aboutus ends */

.inner__bg {
    background-image: url('../img/inner__bg.png');
    background-repeat: no-repeat;
    background-position: left center;
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* tourDetails */

.test {
    height: 100vh;
}

.detailsTour__pickup-day {
    margin-top: 30px;
    text-align: center;
    color: #007FA6 !important;
    max-width: 660px;
}

.detailsTour__pickup-day span {
    font-family: 'Gabriela';
    font-size: 84px;
    line-height: 100%;
}

.detailsTour__pickup-hidd .irs--flat .irs-handle&gt;i:first-child {
    height: 90px;
}

.detailsTour__pickup-hidd {
    margin-top: 30px;
    max-width: 660px;
    overflow: hidden;
}

.detailsTour__pickup-hidd .irs--flat {
    top: -90px;
    width: 100%;
}

.detailsTour__pickup-hidd .irs--flat .irs-line {
    height: 50px;
}

.detailsTour__pickup-hidd .irs--flat .irs-line,
.detailsTour__pickup-hidd .irs--flat .irs-bar,
.detailsTour__pickup-hidd .irs-handle,
.irs--flat .irs-single {
    opacity: 0;
}


/*check*/

.check {
    margin-top: 30px;
}

.check {
    display: flex;
    flex-wrap: wrap;
}

.check__item {
    cursor: pointer;
    width: 24%;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 11px;
}

.check__item input {
    opacity: 0;
    height: 0;
    width: 0;
    padding: 8px;
}


/* detailsTour ends */

[type="checkbox"]+label {
    transition: all 0.15s ease-in;
    padding: 8px;
    border-radius: 133.403px;
    border: 1.33403px solid #E1E4E8;
    display: inline-block;
    transition: all 0.15s ease;
}

[type="checkbox"]:checked+label,
[type="checkbox"]+label:hover {
    background: #FAFBFC;
    border: 1.33403px solid #E1E4E8;
    color: #007FA6;
}


/**/

.detailsTour__block-input input {
    width: 100%;
    padding: 16px;
    background: #F6F8FA;
    border: 1.33403px solid #E1E4E8;
    border-radius: 10.6722px;
    margin-bottom: 20px;
    outline: none;
}

.feedback input {
    height: 126px;
}


/* .detailsTour__block-input-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
} */

.detailsTour__block-input-inner {
    width: 100%;
    background: #F6F8FA;
    border: 1.33403px solid #E1E4E8;
    border-radius: 10.6722px;
    padding: 23px;
    font-weight: 500;
    color: #757575;
    position: relative;
}

.newp {
    font-size: 14px;
    line-height: 100%;
    color: #64676C !important;
}

.detailsTour__block-input-inner:first-child {
    margin-bottom: 20px;
}

.stepper {
    position: absolute;
    right: 23px;
    top: 12px;
    display: flex;
    align-items: center;
}

.stepper input {
    background: none;
    border: none;
    outline: none;
    padding: 10px !important;
    margin: 0;
    text-align: center;
    width: 55px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #1B1918;
}

#demo-6 {
    cursor: pointer;
}

.stepper button,
.stepper div {
    background: #FFFFFF;
    box-shadow: 0px 0px 2.66806px rgba(0, 0, 0, 0.08), 0px 2.66806px 32.0167px rgba(0, 0, 0, 0.08);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007FA6;
    font-size: 20px;
    cursor: pointer;
}

.detailsTour__btn {
    margin-bottom: 20px;
    background: #ECBB00;
    border-radius: 10.6722px;
    padding: 21px;
    width: 100%;
    border: 1px solid #ECBB00;
    transition: all 0.15s ease-in;
    font-weight: 600;
    font-size: 20px;
    color: #1B1918;
    cursor: pointer;
}

.detailsTour__btn:hover {
    background: none;
    color: #ECBB00;
}

.detailsTour__phone {
    font-weight: 500;
    font-size: 20.0104px;
    line-height: 120%;
    color: #1B1918;
    text-align: center;
}

.detailsTour__phone a {
    color: #007FA6;
    transition: all 0.15s ease-in;
}

.detailsTour__phone a:hover {
    color: #ECBB00;
}

.detailsTour__block-input .select2-container {
    width: 100% !important;
    margin-bottom: 21px;
    background: #F6F8FA;
    /* accent */
    border: 1.33403px solid #007FA6;
    border-radius: 10.6722px;
    padding: 16px;
    outline: none;
}

.select2-dropdown {
    background-color: #FFFFFF;
    box-shadow: 0px 5.33611px 21.3444px rgba(0, 0, 0, 0.12);
    border-radius: 10.6722px;
    border: none;
}

.select2-results__option {
    padding: 15px 21px;
    font-size: 21.3444px;
    color: #6A737D;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.detailsTour__block-input .select2-container--default .select2-selection--single {
    background: #F6F8FA;
    border: none;
    border-radius: none;
    outline: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #F6F8FA;
    font-weight: 500;
    font-size: 21.3444px;
    color: #1B1918;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    display: none;
}


/* calendar */

.lightpick {
    background: #FFFFFF;
    box-shadow: 0px 5.33611px 21.3444px rgba(0, 0, 0, 0.12);
    border-radius: 10.6722px;
}


/* tourDetailsends */


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* directions */

.directions .slick_arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directions {
    overflow: hidden;
    position: relative;
    padding: 170px 0 210px 0;
}

.directions::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    z-index: -1;
}

.directions::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background-image: url("./img/Group\ 486.png");
    background-repeat: no-repeat;
    z-index: -1;
    width: 207.58px;
    /* width: 75%; */
}

.directions__container {
    /* display: grid;
grid-template-columns: repeat(2, 1fr); */
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    /* margin-top: 170px; */
}

.directions__info::-webkit-scrollbar {
    width: 8px;
}

.directions__info::-webkit-scrollbar-track {
    background: #222222;
}

.directions__info::-webkit-scrollbar-thumb {
    background: #007FA6;
    border-radius: 25px;
}

.directions .slider-x {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.directions .slider-x .slick-slide {
    height: 100vh;
}

.directions .slider-x div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions .slider-nav {
    width: 85%;
    overflow: hidden;
    margin-right: -300px;
    margin-left: -10px;
}

.directions .slider-nav h3 {
    background: #333;
}

.directions .slider-for {
    background: linear-gradient(253.14deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px 0px 0px 20px;
    padding: 30px 235px 166px 30px;
    width: 75%;
    overflow: hidden;
    height: 595px;
}

.directions .slider-nav {
    max-width: auto;
    position: static;
    top: unset;
    left: unset;
    transform: unset;
    margin-bottom: 0;
    z-index: 80;
}

.directions__info {
    height: 410px;
    overflow: auto;
}


/* the slides */

.directions .slider-nav .slick-slide {
    margin: 0 27px;
}


/* the parent */

.directions .slider-nav .slick-list {
    margin: 0 -27px;
}

.directions__info p {
    line-height: 167%;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.directions__info p:last-child {
    margin-bottom: 0;
}

.directions__cards {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.directions__cards::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.61%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.directions__cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.directions__cards p {
    font-size: 24px;
    line-height: 175%;
    color: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 30px;
    padding-bottom: 83px;
    display: flex;
    align-items: center;
}

.directions__cards p svg {
    margin-right: 15px;
}

.directions .slider-for {
    position: relative;
}

.directions__arrows {
    position: absolute;
    bottom: 280px;
    right: 47%;
    display: flex;
    align-items: center;
    z-index: 90;
}

.directions__newbtn {
    position: absolute;
    /* bottom: 195px; */
    bottom: 280px;
    /* right: 73%; */
    left: 23%;
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    display: flex;
    align-items: center;
    z-index: 90;
    width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directions__arrows .slick_arrow {
    background: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in;
}

.directions__arrows .slick-next {
    transform: rotate(180deg);
    margin-left: 11px;
}

.directions__arrows .slick-next:hover,
.directions__arrows .slick-prev:hover {
    width: 75px;
}

.contact__info-box:last-child svg {
    margin-right: 6px;
}

.contact__info-box a {
    display: flex;
    align-items: center;
}


/* directions */

h3.title {
    font-size: 40px;
}


/*  */

.choosecountry__img {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.choosecountry__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 0px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    pointer-events: none;
}

.choosecountry__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choosecountry .container {
    background: linear-gradient(253.14deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px 0px 0px 20px;
    padding: 30px;
}

.choosecountry .title.white {
    margin-bottom: 50px;
}

.choosecountry__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 40px;
}

.choosecountry__item {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.61%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 20px;
}

.choosecountry__item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.61%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.choosecountry__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(.39, .575, .565, 1), opacity .525s, -webkit-transform 1.5s cubic-bezier(.39, .575, .565, 1);
}

.choosecountry__item img:hover {
    transform: scale(1.1);
}

.choosecountry__item p {
    position: absolute;
    left: 35px;
    bottom: 85px;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #FFFFFF;
}

.choosecountry__item svg {
    margin-right: 20px;
}

.choosecountry {
    background-image: url("../img/Group\ 486.png");
    background-repeat: no-repeat;
    background-position: bottom left;
}


/*  */

.detailsTour__block-new.active {
    margin-bottom: 100px;
}

.detailsTour__block-new.active .detailsTour__block-new-hid {
    opacity: 1;
}

.detailsTour__block-new {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F6F8FA;
    border: 1px solid #E1E4E8;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #6A737D;
    padding: 16px;
    position: relative;
    margin-bottom: 50px;
    cursor: pointer;
}

.detailsTour__block-new-hid {
    display: flex;
    align-items: center;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 6px 17px -4px rgba(172, 172, 172, 0.18);
    border-radius: 10.6722px;
    padding: 17px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.detailsTour__block-new-hid {
    position: absolute;
    top: 103%;
    left: 0;
}

.detailsTour__block-new-hid form div:first-child {
    margin-left: 0;
}

.detailsTour__block-new-hid div {
    margin-right: 40px;
}

.detailsTour__block-new-hid [type="checkbox"]:checked+label,
[type="checkbox"]+label:hover {
    background: none;
    border: none;
    color: #007FA6;
}

.detailsTour__block-new-hid [type="checkbox"]+label {
    padding: none;
    border: none;
}

.upper {
    text-transform: uppercase;
}


/* media */

.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 #0079bf;
    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:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media(max-width: 1730px) {
    .choosecountry__item {
        height: 520px;
    }
}

@media(max-width: 1650px) {
    .tab-wrap {
        margin-top: 30px;
    }
    .directions__newbtn {
        bottom: 200px;
    }
    .footer__bottom {
        margin: 30px 0;
    }
    .footer__container {
        font-size: 14px;
    }
    .detailsTour__block-new {
        font-size: 14px;
    }
    .detailsTour .detailsTour__block:last-child {
        margin-left: 40px;
    }
    .newp {
        font-size: 12px;
    }
    .choosecountry__item {
        height: 480px;
    }
    .choosecountry__item p {
        left: 25px;
        bottom: 60px;
        font-size: 20px;
    }
    .choosecountry__item svg {
        margin-right: 10px;
        width: 10px;
    }
    .choosecountry__items {
        grid-gap: 30px;
    }
    /*  */
    .tourinner__form input {
        font-size: 14px;
    }
    .tourinner {
        padding-top: 80px;
    }
    .tourinner1__slider {
        margin-right: -300px;
    }
    .tourinner1__slider .slick-slide {
        margin: 0 10px;
    }
    .tourinner1__slider .slick-list {
        margin: 0 -10px;
    }
    .tourinner1__slider .blognew__slide {
        height: 280px;
    }
    /*  */
    .video__info {
        margin: 15px 0;
        font-size: 15px;
    }
    .mustknow__item,
    .video__img {
        height: 180px;
    }
    .blognew__scroll {
        margin-top: 35px;
    }
    .blognew__slider {
        margin-right: -200px;
    }
    .blognew__slide {
        height: 380px;
    }
    .types__hid,
    .mustknow__item p,
    .mustknow__item a,
    .video__title,
    .blognew__slide p {
        font-size: 15px;
    }
    .types__item:hover .types__hid {
        height: 115px;
    }
    .tours__btn svg {
        width: 35px;
        height: 35px;
    }
    .tours__btn {
        font-size: 16px;
        margin-top: 40px;
    }
    .banner__title h1 {
        font-size: 65px;
        max-width: unset;
    }
    /*  */
    .tour__header button {
        width: 124px;
        padding: 14px;
        font-size: 15px;
    }
    .tour__header select {
        width: 287px;
        height: 45px;
        padding: 13px;
        font-size: 15px;
    }
    .tour__item-links a {
        font-size: 16px;
        padding: 10px;
    }
    .tour__item-price span {
        margin-left: 10px;
        font-size: 18px;
    }
    .tour__item-price {
        padding: 10px;
        font-size: 15px;
    }
    .tour__item-benefits img {
        width: 17px;
        height: 14px;
    }
    .tour__item .padding {
        padding: 10px 20px 0 20px;
    }
    .tour__item-season {
        font-size: 12px;
        padding: 9px 23px;
    }
    .aboutusServices__link p {
        font-size: 18px;
    }
    h3.title {
        font-size: 28px;
    }
    .tourinner__form .stepper {
        top: 3px;
    }
    .directions__arrows {
        bottom: 200px;
        right: 49%;
    }
    .directions .slider-for {
        height: 487px;
    }
    .directions__info {
        height: 346px;
    }
    .panel p {
        font-size: 16px;
    }
    .tourinner__questions-item {
        margin-bottom: 10px;
    }
    .accordion {
        font-size: 22px;
        margin-bottom: 20px;
        height: 50px;
    }
    .accordion:after {
        width: 50px;
        height: 50px;
    }
    /*  */
    .directions .slider-nav {
        margin-right: -250px;
    }
    .directions .slider-nav .slick-slide {
        margin: 0 15px;
    }
    .directions .slider-nav .slick-list {
        margin: 0 -15px;
    }
    .directions__cards p svg {
        margin-right: 7px;
        width: 20px;
        height: 20px;
    }
    .directions__cards p {
        font-size: 20px;
        padding-left: 25px;
        padding-bottom: 52px;
    }
    .directions__cards {
        height: 491px;
    }
    .directions .slider-for {
        padding: 30px 235px 130px 30px;
    }
    .directions__info p {
        font-size: 14px;
    }
    .directions {
        padding: 120px 0 150px 0;
    }
    /*  */
    .feedback input {
        height: 100px;
    }
    .stepper {
        top: 2px;
    }
    .detailsTour__block-input input {
        padding: 12px;
        margin-bottom: 15px;
    }
    .detailsTour__block-input-inner,
    .detailsTour__block-input .select2-container {
        padding: 12px;
    }
    .detailsTour__btn {
        padding: 16px;
        font-size: 16px;
    }
    .stepper button,
    .stepper div {
        width: 34px;
        height: 34px;
    }
    .stepper input {
        width: 42px;
        padding: 0px 0 0px 0 !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .detailsTour__pickup-hidd {
        margin-top: 20px;
        max-width: 574px;
    }
    .detailsTour__pickup-day span {
        font-size: 70px;
    }
    .detailsTour__block:first-child {
        width: 73%;
    }
    .detailsTour__block:last-child {
        width: 40%;
    }
    .detailsTour__phone {
        font-size: 18px;
    }
    .detailsTour__block p,
    .detailsTour__block-input input,
    [type="checkbox"]+label,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-results__options li {
        font-size: 16px;
    }
    .detailsTour__pickup {
        margin-top: 60px;
    }
    .header__link-dropdown-in,
    .header__lan-inner,
    .detailsTour__block-input-inner,
    .tourinner__form textarea {
        font-size: 14px;
    }
    .header__link-dropdown {
        top: 63px;
    }
    .header__link.active:hover .header__link-dropdown-in {
        height: 32px;
    }
    .aboutusMission__info p {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .aboutusMission__title,
    .h3.title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .aboutusMission__img:first-child {
        height: 548.8px;
        width: 524px;
        margin-right: 20px;
    }
    .aboutusMission__img:last-child {
        height: 405px;
    }
    .mission__info p {
        width: 950px;
        top: 20px;
        font-size: 16px;
    }
    .mission__statistics {
        width: 670px;
    }
    .mission__statistics .aboutus__statistics-item {
        margin-bottom: 50px;
    }
    .mission__img:first-child {
        height: 285px;
    }
    .mission__img:last-child {
        height: 430px;
    }
    .aboutus__mask {
        height: 435px;
        width: 78%;
    }
    .aboutus__container .title {
        margin-top: 75px;
        font-size: 37px;
    }
    .aboutus__statistics-item {
        margin-bottom: 15px;
    }
    .aboutus__statistics-yiyle {
        font-size: 18px;
    }
    .aboutus__statistics-num {
        font-size: 42px;
    }
    .aboutus__statistics-item {
        margin-right: 64px;
    }
    .aboutus__banner p {
        max-width: 667px;
        top: 35%;
        font-size: 16px;
    }
    /* tourinner */
    .tourinner__slider,
    .slider-for .item {
        height: 500px;
    }
    .tourinner__program-in {
        margin-bottom: 60px;
    }
    .slider-nav .item {
        height: 120px;
    }
    .tourinner__left-header,
    .t__l-h-item,
    .tourinner__right-header {
        font-size: 14px;
    }
    .tourinner__right-header svg,
    .t__l-h-item svg {
        width: 25px;
        height: 25px;
    }
    .tourinner__left-info p,
    .tourinner__benefits-text {
        font-size: 16px;
    }
    /* todo */
    .todo__item {
        height: 415px;
    }
    .todo__block p {
        font-size: 16px;
    }
    .todo__block-info {
        margin-top: 30px;
    }
    .todo__block-info-box {
        margin-bottom: 20px;
        padding: 10px;
        font-size: 16px;
    }
    /*  */
    .contact__map {
        height: 400px;
    }
    .padding {
        padding: 60px 0;
    }
    .header {
        padding: 20px 0;
        height: 80px;
    }
    .header__logo {
        width: 194px;
    }
    .space {
        height: 80px;
    }
    /* banner */
    .todomain__banner {
        padding: 180px 0 100px 0;
    }
    .todomain__text p {
        font-size: 16px;
    }
    .todomain__title {
        font-size: 22px;
    }
    .todomain__img {
        height: 260px;
    }
    .todomain__container {
        /* margin-top: 450px; */
    }
    .tablink {
        padding: 14px 18px;
        font-size: 14px;
    }
    .banner__title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .tabcontent p, .banner__new-text {
        max-width: 792px;
        margin-bottom: 40px;
        font-size: 15px;
    }
    .bannet-btn {
        padding: 12px 34px;
        font-size: 15px;
        width: 200px;
    }
    .header__contact-link {
        padding: 11px;
    }
    /* tour */
    .tour__item .padding {
        padding: 10px 20px 0 20px;
    }
    .tour__item-img {
        height: 220px;
    }
    .title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .paddings {
        padding-top: 60px;
    }
    .tour__item-date {
        font-size: 14px;
    }
    /* header */
    .header__link,
    .header__phone,
    .header__contact-link,
    .header__lan {
        font-size: 14px;
    }
    .header__link {
        margin-right: 14px;
    }
    /*tour*/
    .tour__item-title {
        font-size: 20px;
    }
    /* blog */
    .blog__container.white {
        grid-auto-rows: 300px;
    }
    /* types */
    .blog__item p {
        font-size: 18px;
    }
    /* news */
    .new__img {
        height: 270px;
    }
    .news__link-text {
        margin-bottom: 32px;
        font-size: 16px;
    }
    .news__link-text::before {
        margin: 16px 0;
    }
    .news__item p {
        font-size: 14px;
    }
    .news__link {
        font-size: 16px;
        width: 195px;
        padding: 11px;
    }
    .innernews__img {
        height: 530px;
    }
    .news__share {
        margin-bottom: 40px;
    }
    .innernews__container p {
        margin-bottom: 20px;
        font-size: 15px;
    }
}

@media(max-width: 1460px) {
    .footer__box-item:last-child{
        width: 30%;
    }
    .footer__bottom {
        margin-top: 0px;
    }
    .choosecountry__item {
        height: 430px;
    }
    .choosecountry__item p {
        font-size: 18px;
    }
    /*  */
    .tourinner {
        padding-top: 60px;
    }
    .tourinner1__slider {
        margin-right: -200px;
    }
    .tourinner1__slider .blognew__slide {
        height: 240px;
    }
    /*  */
    .video__info {
        margin: 10px 0;
        font-size: 13px;
    }
    .mustknow__items,
    .video__items {
        grid-gap: 20px;
    }
    .mustknow__item,
    .video__img {
        height: 160px;
    }
    .blognew__slide {
        height: 320px;
    }
    .blognew .slick-slide {
        margin: 0 10px;
    }
    .blognew .slick-list {
        margin: 0 -10px;
    }
    .types__block {
        width: 95%;
    }
    .types__item:hover .types__hid {
        height: 90px;
        padding: 10px;
    }
    .types__hid,
    .video__title {
        font-size: 13px;
    }
    .tours__btn {
        font-size: 14px;
        margin-top: 30px;
    }
    .tours__btn svg {
        width: 30px;
        height: 30px;
    }
    .bannet-btn {
        font-size: 14px;
        width: 180px;
    }
    .tabcontent p,.banner__new-text {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .banner__title h1 {
        font-size: 55px;
    }
    /*  */
    .todomain__banner {
        margin-bottom: 30px;
    }
    .tour__item-season {
        font-size: 12px;
        padding: 9px 23px;
        top: 10px;
        left: 10px;
    }
    .tour__container {
        grid-gap: 20px;
    }
    .tourinner__form .stepper {
        top: 0px;
    }
    .detailsTour__block p,
    .detailsTour__block-input input,
    .detailsTour__block-input-inner,
    [type="checkbox"]+label,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-results__options li {
        font-size: 13px;
    }
    .detailsTour__phone {
        font-size: 15px;
    }
    .stepper input {
        padding: 0;
        margin-bottom: 0;
    }
    .stepper {
        top: 1px;
        right: 10px;
    }
    .stepper input {
        padding: 3px 0 2px 0 !important;
    }
    .breadcrumbs li {
        font-size: 16px;
    }
    .directions__info {
        height: 316px;
    }
    .directions .slider-for {
        height: 441px;
    }
    .accordion {
        font-size: 20px;
    }
    .footer__box-item a,
    .footer__item {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .footer__bottom a,
    .footer__bottom p {
        font-size: 14px;
    }
    .footer__logo {
        width: 180px;
        height: 35px;
        margin-bottom: 20px;
    }
    /*  */
    .directions .slider-for {
        padding: 30px 148px 106px 30px;
    }
    .directions__info p {
        font-size: 13px;
    }
    .directions__cards {
        height: 445px;
    }
    /*  */
    .header__lan:hover .header__lan-dropdown .header__lan-inner {
        height: 30px;
    }
    .header__lan-dropdown {
        width: 158px;
    }
    .header__lan:hover .header__lan-dropdown {
        height: 104px;
    }
    .header__link-dropdown {
        width: 250px;
        top: 59px;
    }
    .header__link-dropdown-in,
    .header__lan-inner {
        font-size: 14px;
    }
    .tourinner__price {
        font-size: 16px;
    }
    .tourinner__price span {
        font-size: 24px;
        margin-left: 7px;
    }
    .aboutus__banner p {
        height: 95px;
    }
    .aboutus__mask {
        height: 389px;
        width: 81%;
    }
    .aboutusMission__img:last-child {
        height: 350px;
        width: 265px;
    }
    .mission__info p {
        width: 760px;
        top: 10px;
        font-size: 14px;
    }
    .aboutusMission__img:first-child {
        height: 500.79999999999995px;
        width: 445px;
    }
    .mission__statistics {
        width: 550px;
    }
    .aboutus__container .title {
        margin-top: 80px;
    }
    .aboutus__banner p {
        max-width: 590px;
        top: 39%;
        font-size: 14px;
    }
    .aboutus__statistics-num {
        font-size: 36px;
    }
    .aboutus__statistics-yiyle {
        font-size: 17px;
    }
    /* tourinner */
    .tourinner__slider,
    .slider-for .item {
        height: 470px;
    }
    .tourinner__form button {
        font-size: 14px;
        margin-top: 5px;
        padding: 11px;
    }
    .tourinner__form {
        grid-gap: 15px;
        margin-bottom: 15px;
    }
    .tourinner__program-block div {
        margin-bottom: 20px;
        padding-left: 30px;
        font-size: 16px;
    }
    .tourinner__program-out .tourinner__program-block div::before {
        width: 20px;
        height: 2px;
    }
    .tourinner__program-in .tourinner__program-block div::before {
        background-size: 17px 17px;
    }
    .tourinner__form textarea {
        font-size: 14px;
        padding: 11px;
        height: 95px;
    }
    .tourinner__form input {
        font-size: 14px;
        padding: 11px;
    }
    .tourinner__benefits {
        margin-top: 30px;
        margin-bottom: 70px;
        grid-row-gap: 25px;
        grid-column-gap: 10px;
    }
    .tourinner__phone,
    .tourinner__left-info p,
    .tourinner__benefits-text {
        font-size: 14px;
    }
    .tourinner__right-header {
        margin-bottom: 30px;
    }
    .tourinner__right-header a {
        margin-left: 30px;
    }
    .tourinner__left {
        width: 65%;
    }
    /* .tourinner__right {
        width: 30%;
    } */
    .slider-nav {
        max-width: 890px;
    }
    .slider-nav .slick-slide {
        margin: 0 10px;
    }
    .slider-nav .slick-list {
        margin: 0 -10px;
    }
    .tourinner__left-header {
        padding: 15px 0px;
        width: 100%;
        margin-bottom: 60px;
    }
    /* todo */
    .todo__block-2 {
        width: 53%;
    }
    .todo__block {
        width: 45%;
    }
    .todo__block p {
        font-size: 14px;
    }
    .todo__block-info-box {
        padding: 8px;
        font-size: 14px;
    }
    .todo__block-info-box svg {
        width: 15px;
        height: 15px;
    }
    /*  */
    .paddings2 {
        padding: 70px 0;
    }
    /* banner */
    .banner__pretitle {
        font-size: 16px;
    }
    .tablink {
        padding: 12px 18px;
    }
    .tab-head {
        margin-bottom: 40px;
    }
    /* header */
    .header__link,
    .header__phone,
    .header__contact-link,
    .header__lan {
        font-size: 14px;
    }
    .header__logo {
        width: 200px;
    }
    .header__phone {
        margin-right: 20px;
    }
    .header__contact-link {
        padding: 10px;
    }
    .header__link {
        padding: 4px;
    }
    .header__lan {
        width: 70px;
    }
    /*tour*/
    .tour__item-title {
        font-size: 18px;
    }
    .tour__item-links a {
        padding: 10px 0;
        font-size: 14px;
    }
    .tour__item-img {
        height: 200px;
    }
    .tour__item-season {
        font-size: 12px;
        padding: 9px 23px;
    }
    .tours__btn {
        font-size: 15px;
        padding: 11px 30px;
        margin-top: 30px;
    }
    .tour__item-price {
        font-size: 12px;
    }
    .tour__item-price span {
        font-size: 17px;
    }
    .tour__item-benefits img {
        width: 15px;
        height: 14px;
    }
    .title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    /* blog */
    .blog__container.white {
        grid-gap: 20px;
        grid-auto-rows: 280px;
    }
    .blog__info svg {
        margin-left: 20px;
        width: 18px;
        height: 18px;
    }
    /*todomain  */
    .todomain__container {
        grid-template-columns: repeat(3, 1fr);
        /* margin-top: 370px; */
    }
    .todomain__banner-text p {
        font-size: 16px;
        width: 792px;
        height: 80px;
    }
    .todomain__banner {
        padding: 130px 0 100px 0;
    }
    .todomain__banner-text div {
        margin-bottom: 30px !important;
    }
    /* news */
    .news__container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* type */
    .types__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    .types__container {
        grid-auto-rows: 190px;
    }
    .types__title {
        font-size: 18px;
    }
    /* adv */
    .advice__img {
        width: 50px;
        height: 50px;
    }
    .advice__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .advice__img {
        margin-bottom: 10px;
    }
    .advice__item p {
        font-size: 14px;
    }
    /* news */
    .new__img {
        height: 250px;
    }
    .news__share,
    .innernews .title {
        margin-bottom: 30px;
    }
    .innernews__img {
        height: 450px;
    }
    .innernews__container-title {
        margin-bottom: 20px;
    }
    .innernews__container p {
        font-size: 13px;
    }
    .innernews__container-title {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media(max-width: 1360px) {
    .tab-wrap {
        margin-top: 0;
    }
    .choosecountry__item {
        height: 380px;
    }
    .choosecountry__items {
        grid-gap: 20px;
    }
    .choosecountry__item p {
        left: 20px;
        bottom: 50px;
        font-size: 16px;
    }
    /*  */
    .tourinner__right {
        width: 40%;
    }
    .tourinner1__slider .blognew__slide {
        height: 200px;
    }
    .banner__title,
    .tab-head {
        margin-bottom: 30px;
    }
    .banner__title h1 {
        font-size: 45px;
    }
    .tablink {
        padding: 9px 9px;
    }
    /*  */
    .tour__header button {
        width: 110px;
        padding: 10px;
        font-size: 13px;
    }
    .tour__header select {
        width: 220px;
        height: 36px;
        padding: 10px;
        font-size: 13px;
    }
    .tour__item-price {
        padding: 5px;
    }
    .aboutusServices__link {
        height: 260px;
    }
    .aboutus__banner p {
        max-width: 498px;
        top: 37%;
        font-size: 13px;
    }
    .aboutusServices__link p {
        font-size: 18px;
    }
    /* innertour */
    .tourinner__left-header,
    .t__l-h-item,
    .tourinner__right-header {
        font-size: 12px;
    }
    .tourinner__right-header svg,
    .t__l-h-item svg {
        width: 20px;
        height: 20px;
    }
    /*  */
    .paddings {
        padding-top: 50px;
    }
    .title {
        font-size: 36px;
    }
    /* header */
    .header__logo {
        width: 170px;
    }
    .header {
        padding: 20px 0;
        height: 80px;
    }
    .header__link,
    .header__phone,
    .header__contact-link,
    .header__lan {
        font-size: 13px;
    }
    /*tour*/
    .tour__item-links a {
        padding: 9px 0;
        font-size: 14px;
    }
    /* blog */
    .blog__item p {
        font-size: 18px;
    }
}

@media(max-width: 1260px) {
    .directions__newbtn {
        bottom: 165px;
        height: 30px;
        font-size: 12px !important;
    }
    .tourinner {
        padding-top: 50px;
    }
    .blognew__arrows .slick_arrow svg {
        width: 35px;
    }
    .pagingInfo:first-letter {
        font-size: 18px;
    }
    .pagingInfo {
        font-size: 14px;
        margin: 0 20px;
    }
    .tour__item-price span {
        font-size: 14px;
    }
    .tour__item-benefits img {
        width: 13px;
        height: 11px;
        margin-left: 10px;
    }
    .tour__item-date,
    .detailsTour__block-input-inner {
        font-size: 12px;
    }
    .header__link-dropdown {
        /* background: #6a737d; */
    }
    .tourinner__form .stepper {
        top: 4px;
        right: 0;
    }
    .directions__arrows {
        bottom: 177px;
        right: 45%;
    }
    .header__contacts {
        margin-left: auto;
        margin-right: 30px;
    }
    /*  */
    .directions .slider-for {
        padding: 30px 79px 69px 30px;
    }
    .directions__cards {
        height: 400px;
    }
    /*  */
    .directions .slider-for {
        height: 391px;
    }
    .slider-nav {
        max-width: 657px;
    }
    .t__l-h-item {
        margin-left: 76px;
    }
    .tourinner__form input,
    .tourinner__form textarea,
    .tourinner__phone {
        font-size: 12px;
    }
    .mission__info p {
        height: 78px;
    }
    .mission__info p {
        height: 78px;
    }
    .aboutusServices__link {
        height: 230px;
    }
    .aboutusServices__link p {
        font-size: 15px;
    }
    .aboutus__mask {
        height: 330px;
        width: 82%;
    }
    .aboutus__container .title {
        margin-top: 55px;
        font-size: 34px;
    }
    .aboutus__banner p {
        max-width: 450px;
        top: 37%;
        font-size: 12px;
    }
    .aboutus__statistics-num {
        font-size: 26px;
    }
    .aboutus__statistics-yiyle {
        font-size: 14px;
    }
    .mission__info p {
        width: 700px;
        font-size: 12px;
    }
    .mission__img:last-child {
        height: 345px;
    }
    .mission__img:first-child {
        height: 230px;
    }
    .aboutusMission__img:first-child {
        height: 455.79999999999995px;
        width: 400px;
        margin-right: 10px;
    }
    .aboutusMission__img:last-child {
        height: 310px;
        width: 220px;
    }
    .aboutusMission__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .aboutusMission__info p {
        margin-bottom: 15px;
        font-size: 11px;
    }
    /* todo */
    .todo__item {
        height: 350px;
    }
    /*  */
    .paddings2 {
        padding: 50px 0;
    }
    /* header */
    .header__link.active:hover .header__link-dropdown-in {
        height: 30px;
    }
    .header__link-dropdown::before {
        left: 70px;
    }
    .header__link-dropdown {
        left: -45px;
    }
    .header__link-dropdown {
        top: 32px;
    }
    .header__link {
        margin-right: 0px;
        margin-bottom: 20px;
        font-size: 14px;
    }
    /* .header__link-drop {
        color: #1B1918 !important;
    } */
    .burger {
        display: flex;
    }
    .header__links {
        position: absolute;
        top: 100%;
        right: -100%;
        align-items: flex-start;
        flex-direction: column;
        transition: all 0.4s ease-in-out;
        background: rgb(0 0 0 / 90%);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding: 50px 100px;
        height: 100vh;
    }
    .header__links.active {
        right: 0;
    }
    .header__link,
    .header__contact-link {
        color: #FFFFFF;
    }
    .header__lan {
        margin-left: 30px;
    }
    .header {
        padding: 16px 0;
        height: 70px;
    }
    .space {
        height: 70px;
    }
    /*tour*/
    .title {
        font-size: 32px;
    }
    .tour__item-title {
        font-size: 16px;
    }
    .tour__item .padding {
        padding: 15px 20px 0 20px;
    }
    .tour__item-img {
        height: 180px;
    }
    /* blog */
    .blog__container.white {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog__item p {
        font-size: 16px;
    }
    .blog__item {
        width: 33.3333%;
        padding-top: 23%;
    }
    /* todomain */
    .todomain__title {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .todomain__text p {
        font-size: 16px;
    }
    /* news */
    .news__link-text,
    .news__item p {
        font-size: 16px;
    }
    .news__link-text {
        margin-bottom: 32px;
    }
    .news__link-text::before {
        margin: 15px 0;
    }
    .news__link {
        font-size: 16px;
        width: 55%;
        padding: 12px;
    }
    /* adv */
    .advice__container {
        grid-row-gap: 30px;
        grid-column-gap: 50px;
        grid-template-columns: repeat(3, 1fr);
    }
    .advice__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    /* types */
    .types__container {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        grid-auto-rows: 200px;
    }
}

@media (max-width: 1160px) {
    .todomain__banner {
        padding: 173px 0 50px 0;
    }
    .todo__banner .breadcrumbs {
        margin-top: 69px;
        padding-top: 0;
    }
    .detailsTour .detailsTour__block:last-child {
        margin-left: 0;
    }
    .choosecountry__item {
        height: 300px;
    }
    .choosecountry__item p {
        bottom: 40px;
        font-size: 14px;
    }
    .choosecountry__item svg {
        width: 8px;
    }
    /*  */
    .contact__container {
        flex-direction: column;
    }
    .contact__info {
        width: 100%;
    }
    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
        font-size: 14.3444px;
    }
    .irs--flat .irs-handle&gt;i:first-child {
        top: -10px;
        width: 25px;
        height: 25px;
    }
    .stepper {
        right: 5px;
        top: 4px;
    }
    .stepper button,
    .stepper div {
        width: 27px;
        height: 27px;
    }
    .irs--flat .irs-from,
    .irs--flat .irs-to,
    .irs--flat .irs-single {
        font-size: 16px;
        margin-top: -10px;
    }
    .detailsTour__pickup-day span {
        font-size: 60px;
    }
    .detailsTour__pickup-day {
        max-width: 600px;
    }
    .detailsTour__container {
        flex-direction: column;
    }
    .detailsTour__block:first-child {
        width: 100%;
        margin-bottom: 60px;
    }
    .directions__arrows {
        bottom: 161px;
        right: 49%;
    }
    .directions__info {
        height: 346px;
    }
    .footer__block,
    .footer__box:last-child {
        order: -2;
    }
    .footer__block {
        margin-bottom: 30px;
    }
    .footer__box {
        width: 100%;
    }
    .footer__container {
        flex-wrap: wrap;
    }
    /*  */
    .directions .slider-nav {
        margin-right: -160px;
    }
    .directions .slider-for {
        padding: 20px 64px 31px 20px;
    }
    /*  */
    .tourinner__right {
        margin-top: 30px;
        width: 100%;
    }
    .tourinner__right-header {
        font-size: 14px;
    }
    .tourinner__form input,
    .tourinner__form textarea,
    .tourinner__phone {
        font-size: 14px;
    }
    .tourinner__container {
        margin-top: 30px;
    }
    .tourinner__left-header {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .tourinner__left {
        width: 100%;
    }
    .tourinner__container {
        flex-direction: column;
    }
    .t__l-h-item {
        margin-left: 44px;
    }
    .aboutus__banner p {
        height: 80px;
    }
    .aboutus__mask {
        height: 305px;
    }
    .aboutus__container .title {
        margin-top: 50px;
        font-size: 31px;
    }
    .aboutus__statistics-item {
        margin-right: 40px;
    }
    .mission__statistics {
        width: 400px;
    }
    /* banner */
    .banner__title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .tabcontent p {
        margin-bottom: 30px;
    }
    /* tour */
    .tour__container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* blog */
    /* todomain  */
    .todomain__container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* news */
    .new__img {
        height: 230px;
    }
}

@media(max-width: 992px) {
    .banner__n-img .bannerMob{
        display: block;
    }
    .banner__n-img .bannerDesk {
        display: none;
    }
    .banner__new-text{
        display: none;
    }
    .directions__newbtn {
        bottom: 95px;
        height: 30px;
        font-size: 12px !important;
        left: 20px;
    }
    .detailsTour__block-new.active {
        margin-bottom: 80px;
    }
    .detailsTour__block-new {
        margin-bottom: 30px;
    }
    .choosecountry__items {
        grid-template-columns: repeat(4, 1fr);
    }
    /*  */
    .tourinner {
        padding-top: 30px;
    }
    .types__hid,
    .mustknow__item p,
    .mustknow__item a {
        font-size: 14px;
    }
    .mustknow__items {
        grid-gap: 20px;
    }
    .types__hid,
    .mustknow__item p,
    .mustknow__item a {
        font-size: 14px;
    }
    .banner__title,
    .tab-head {
        margin-bottom: 20px;
    }
    .banner__container {
        margin-top: 170px;
    }
    /*  */
    .innernews__text {
        width: 100%;
    }
    .innernews__img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        height: 500px;
    }
    .innernews__container {
        flex-direction: column;
    }
    .stepper input {
        width: 25px;
    }
    .padding__bottom {
        padding-bottom: 30px;
    }
    /*  */
    .directions__arrows {
        bottom: 101px;
        right: 46%;
    }
    .directions {
        padding: 120px 0 95px 0;
    }
    .directions .slider-for {
        height: 394px;
    }
    .directions__info {
        height: 346px;
        overflow: auto;
    }
    /*  */
    .tourinner__questions-block {
        width: 100%;
    }
    .tourinner__questions-container {
        flex-wrap: wrap;
    }
    .aboutus__banner p,
    .mission__info p {
        height: unset;
    }
    .mission__statistics {
        justify-content: unset;
    }
    /*  */
    .aboutusMission__imgs,
    .aboutusMission__info {
        margin-left: 0px;
    }
    .aboutusMission__imgs,
    .aboutusMission__info {
        width: 100%;
    }
    .aboutusMission__img:first-child,
    .aboutusMission__img:last-child {
        height: 250px;
        width: 50%;
    }
    .aboutusMission__container {
        flex-direction: column-reverse;
    }
    .mission__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .mission__img:first-child,
    .mission__img:last-child {
        height: 230px;
        border-radius: unset;
    }
    .mission__info p,
    .mission__statistics {
        position: static;
        width: 100%;
    }
    .mission__info p {
        margin-bottom: 20px;
    }
    .aboutus__container .title {
        margin-top: 30px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    .aboutus__container {
        flex-direction: column;
    }
    .aboutus__banner {
        width: 100%;
    }
    .aboutus__banner p {
        max-width: 100%;
        top: unset;
        position: static;
    }
    .aboutus__banner p {
        max-width: 100%;
        top: unset;
        position: static;
    }
    .aboutus__statistics {
        position: static;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .aboutus__mask {
        height: 380px;
        width: 100%;
        margin: 0;
    }
    /*  */
    .paddings {
        padding-top: 50px;
    }
    .padding {
        padding: 50px 0;
    }
    /*tour*/
    .tour__item-img {
        height: 250px;
    }
    /* blog */
    /* news */
    .news__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__info-box {
        margin-right: 40px;
        font-size: 14px;
    }
    /* todo */
    .todo__container {
        flex-direction: column;
    }
    .todo__block,
    .todo__block-2 {
        width: 100%;
    }
}

@media(max-width: 892px) {
    .aboutusServices__container {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
    }
    .aboutus__mask {
        height: 304px;
    }
    .contact__info-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .contact__info {
        margin-bottom: 10px;
    }
    .todomain__banner-text p {
        font-size: 14px;
        width: 83%;
    }
    .todomain__banner {
        /* padding: 130px 0 50px 0; */
    }
    .todomain__container {
        /* margin-top: 310px; */
    }
}

@media(max-width: 792px) {
    .footer__box-item:last-child{
        width: auto;
    }
    .choosecountry__items {
        grid-template-columns: repeat(3, 1fr);
    }
    .mustknow__items,
    .video__items {
        grid-template-columns: repeat(3, 1fr);
    }
    /*  */
    .tab-head {
        border: none;
    }
    .banner__title h1 {
        font-size: 30px;
    }
    /*  */
    .h3.title {
        font-size: 24px;
    }
    .detailsTour__block:last-child {
        width: 60%;
    }
    .check__item {
        width: 33.33%;
    }
    .tourpage__links {
        margin-top: 30px;
        padding: 14px 36px;
    }
    .todomain__banner-text p {
        height: 95px;
    }
    .aboutus__mask {
        height: 261px;
    }
    /* tour */
    .tour__item-links {
        flex-direction: column;
    }
    .tour__item-links a {
        width: 100%;
        margin-bottom: 15px;
    }
    .tour__item-links a:last-child {
        margin-bottom: 0;
    }
    .blog.white .blog__item {}
    .blog__item {
        width: 50%;
        padding-top: 34%;
    }
    /* adv */
    .advice__container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* news */
    /* .innernews__container {
        grid-template-columns: repeat(1, 1fr);
    } */
    .innernews__img {
        height: 300px;
    }
    /* types */
    .types__container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* blog */
    .blog__container.white {
        grid-template-columns: repeat(2, 1fr);
    }
    /* todo */
    .todo .title {
        margin-bottom: 20px;
    }
    .todo__item {
        height: 250px;
    }
}

@media(max-width: 692px) {
    .mustknow__items,
    .video__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__container {
        flex-direction: column;
    }
    .contact__info {
        width: 100%;
    }
    .header__contacts {
        margin-left: 0;
        margin-right: 0px;
        align-items: flex-start;
    }
    .header__lan {
        margin-left: auto;
        margin-right: 30px;
    }
    .slider-nav {
        max-width: 100%;
    }
    .header__phone {
        margin-bottom: 20px;
    }
    /* banner */
    .tab-head {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        background: unset;
        backdrop-filter: unset;
    }
    .tablink {
        background: rgba(29, 29, 29, 0.63);
        backdrop-filter: blur(11px);
    }
    /* header */
    .header__contacts,
    .header__links {
        flex-direction: column;
    }
    .header__link,
    .header__phone,
    .header__contact-link {
        color: #FFFFFF;
    }
    .header__link-dropdown-in {
        padding-left: 0;
    }
    .header__link-drop {
        /* background: #F6F8FA; */
    }
    .header__link-dropdown::before {
        left: 38%;
    }
    .header__links {
        padding: 50px;
    }
    .header__link-dropdown,
    .header__link-dropdown::before {
        left: 0px;
    }
    .header__link.active:hover .header__link-dropdown-in {
        padding-left: 10px;
    }
    /* todomain */
    .todomain__title {
        font-size: 18px;
    }
    .todomain__text p {
        font-size: 14px;
    }
    .todomain__img {
        height: 270px;
    }
    .todomain__container {
        grid-gap: 20px;
    }
    /* tour */
    .tour__item-img {
        height: 200px;
    }
}

@media(max-width: 592px) {
    .directions__newbtn {
        bottom: 40px;
        height: 40px;
        font-size: 14px !important;
        left: 20px;
    }
    .blognew__scroll {
        margin-top: 25px;
    }
    .pagingInfo {
        margin: 0px 10px;
    }
    .progress {
        margin-left: 55px;
    }
    .blognew__arrows .slick_arrow svg {
        width: 30px;
    }
    .banner__container {
        margin-top: 120px;
    }
    /*  */
    .tour__header .title {
        margin-bottom: 20px;
    }
    .tour__header {
        align-items: baseline;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .tour__item .padding {
        align-items: baseline;
    }
    .tour__item-links a {
        padding: 13px 0;
    }
    .tour__item-benefits img {
        width: 15px;
        height: 15px;
    }
    .tour__item-links a:last-child {
        margin-top: 10px;
    }
    .contact__info-box:last-child {
        margin-left: -4px;
    }
    .header__lan-dropdown {
        width: 127px;
    }
    .header__lan-dropdown {
        top: 55px;
    }
    .detailsTour__btn {
        padding: 14px;
        font-size: 14px;
    }
    .detailsTour__pickup-day span {
        font-size: 42px;
    }
    .irs--flat .irs-line {
        top: 35px;
    }
    .irs--flat .irs-bar {
        top: 35px;
    }
    .irs--flat .irs-handle {
        top: 31px;
    }
    .irs--flat .irs-from,
    .irs--flat .irs-to,
    .irs--flat .irs-single {
        font-size: 16px;
        margin-top: -2px;
    }
    .detailsTour__pickup-hidd {
        margin-top: 8px;
        max-width: 100%;
        height: 65px;
    }
    .detailsTour__pickup-hidd img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .detailsTour__pickup-day span {
        font-size: 40px;
    }
    .check__item {
        width: 50%;
    }
    .detailsTour__pickup {
        margin-top: 0px;
        margin-bottom: 20px;
    }
    .title {
        font-size: 27px;
    }
    .detailsTour__block:last-child {
        width: 100%;
    }
    /*  */
    .directions__arrows {
        bottom: 41px;
        right: 20px;
    }
    .directions .slider-nav {
        width: 100%;
        margin-right: 0;
        margin-left: 20px;
    }
    .directions__cards p {
        font-size: 14px;
        padding-left: 14px;
        padding-bottom: 13px;
    }
    .directions__cards {
        height: 350px;
    }
    .directions {
        padding: 120px 0 0px 0;
    }
    .directions__container {
        align-items: unset;
        flex-direction: column-reverse;
        background: linear-gradient(253.14deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
        padding-bottom: 95px;
        margin: 0 -10px;
        border-radius: 20px 0px 0px 20px;
    }
    .directions__info {
        height: 297px;
    }
    .directions .slider-for {
        padding: 30px 20px 30px 20px;
        width: 100%;
        background: none;
    }
    /*  */
    .accordion:after {
        width: 40px;
        height: 40px;
    }
    .panel p {
        font-size: 14px;
    }
    .accordion {
        font-size: 18px;
        height: 40px;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .footer__bottom p {
        margin-bottom: 10px;
    }
    .footer__box:last-child {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .footer__block {
        margin-bottom: 10px;
    }
    .footer__box,
    .footer__container {
        flex-direction: column;
    }
    .tourinner__left-info p,
    .tourinner__benefits-text {
        font-size: 12px;
    }
    .tourinner__program-in {
        margin-bottom: 20px;
    }
    .tourinner__program-block div {
        margin-bottom: 20px;
        padding-left: 30px;
        font-size: 14px;
    }
    .tourinner__left-header {
        flex-direction: column;
    }
    .t__l-h-item {
        margin-bottom: 10px;
        margin-left: 0;
    }
    .breadcrumbs {
        margin-top: 10px;
    }
    .breadcrumbs li {
        font-size: 14px;
    }
    .aboutusServices__container {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .aboutus__mask {
        height: 225px;
    }
    .todomain__banner-text p {
        font-size: 12px;
    }
    /* banner */
    .banner__title {
        font-size: 33px;
        margin-bottom: 20px;
    }
    .tab-head {
        grid-gap: 10px;
    }
    .banner__title {
        font-size: 32px;
    }
    .tablink {
        font-size: 12px;
    }
    .bannet-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
    /* .title {
        font-size: 24px;
    } */
    /* header */
    .header__links {
        padding: 50px;
    }
    .header__lan {
        font-size: 14px;
    }
    /* tour */
    .tour__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .tour__item {
        /* margin: 0 auto; */
        width: 100%;
    }
    .tour__item-season {
        top: 10px;
        left: 10px;
    }
    .tour__item-price span {
        font-size: 18px;
    }
    .tour__item-date,
    .tour__item-price {
        font-size: 14px;
    }
    .tour__item .padding {
        padding: 10px 10px 0px;
    }
    /* blog */
    .blog__container.white {
        grid-auto-rows: 200px;
    }
    .blog__info {
        padding: 10px;
    }
    .blog__item p {
        font-size: 14px;
    }
    .blog__item p,
    .blog__info-title {
        font-size: 14px;
    }
    .blog__info svg {
        margin-left: 15px;
    }
    .blog__item {
        width: 100%;
        padding-top: 54%;
    }
    /* news */
    .news__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .innernews__img {
        height: 250px;
    }
    .news__share-icon a {
        margin-right: 20px;
    }
    .news__share-icon a svg {
        width: 18px;
        height: 18px;
    }
    .news__share-icon a:first-child {
        margin-left: 20px;
    }
    .news__share-block,
    .news__share-icon {
        font-size: 16px;
    }
    /* todo */
    .todo__item {
        height: 160px;
    }
    .swiper-horizontal&gt;.swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        margin: 15px 0;
    }
}

@media(max-width: 560px) {
    .choosecountry__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .choosecountry .container {
        padding: 20px;
    }
}

@media(max-width: 492px) {
    .tab-wrap,
    .tab-head {
        width: 100%;
    }
    .header__links {
        width: 85%;
    }
    .choosecountry__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .choosecountry__item {
        height: 350px;
    }
    /*  */
    .detailsTour__block-input-inner,
    .detailsTour__block-input .select2-container {
        padding: 12px 5px;
    }
    .detailsTour__block-input-inner {
        font-size: 11px;
    }
    /*  */
    .mustknow__items,
    .video__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .types__item:hover .types__hid {
        height: 100px;
    }
    .directions__cards {
        height: 308px;
    }
    .todomain__banner-text p {
        height: 100px;
    }
    .header__links {
        padding: 50px 30px;
        width: 85%;
    }
    .burger {
        width: 30px;
        height: 21px;
    }
    .burger .line {
        height: 3px;
        margin-bottom: 3px;
    }
    .space {
        height: 60px;
    }
    .tourinner__left-info p {
        text-indent: 0.5rem;
        text-align: justify;
    }
    .tourinner__right {
        width: 100%;
    }
    .tourinner__program-in,
    .tourinner__program-out {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 20px;
    }
    .tourinner__price span {
        font-size: 20px;
    }
    .tourinner__benefits {
        margin-bottom: 40px;
    }
    .tourinner__title {
        align-items: unset;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .tourinner__benefits {
        grid-template-columns: repeat(2, 2fr);
    }
    .tourinner__price {
        font-size: 14px;
        margin-top: 10px;
    }
    .header {
        padding: 10px 0;
        height: 60px;
    }
    .header__logo {
        width: 150px;
    }
    /*  */
    .aboutusServices__container {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .aboutusServices__link p {
        font-size: 14px;
    }
    .aboutusServices__link {
        height: 230px;
    }
    .aboutusMission__info p,
    .mission__info p,
    .aboutus__banner p {
        text-indent: 0.5rem;
        text-align: justify;
    }
    .mission__img:first-child,
    .mission__img:last-child {
        height: 150px;
        border-radius: unset;
    }
    .aboutusMission__img:first-child,
    .aboutusMission__img:last-child {
        height: 150px;
    }
    .padding {
        padding: 30px 0;
    }
    .title,
    .mission__statistics .aboutus__statistics-item {
        margin-bottom: 20px;
    }
    .aboutus__statistics-num {
        font-size: 20px;
    }
    .aboutus__statistics-yiyle {
        font-size: 12px;
    }
    .aboutus__mask {
        height: 185px;
    }
    /*  */
    .breadcrumbs {
        margin-top: 30px;
    }
    /* .title {
        font-size: 20px;
    } */
    .breadcrumbs li {
        font-size: 13px;
    }
    /* tour */
    /*todomain  */
    .todomain__container {
        grid-template-columns: repeat(1, 1fr);
    }
    /* adv */
    .advice__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .pagination a {
        padding: 9px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    /* news */
    .news__share-block,
    .news__share-icon {
        font-size: 13px;
    }
    .news__share-block:last-child svg {
        margin-right: 5px;
        width: 18px;
        height: 18px;
    }
    .innernews__container p {
        font-size: 12px;
    }
    .innernews__container-title {
        font-size: 15px;
    }
    /* types */
    .types__container {
        grid-template-columns: repeat(1, 1fr);
    }
    /* blog */
    .blog__container.white {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 260px;
    }
}

@media(max-width: 400px) {
    .aboutus__mask {
        height: 150px;
    }
}

@media(max-width: 375px) {
    .aboutus__mask {
        height: 146px;
    }
}</pre></body></html>