:root {
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --orange: #E55600;
}

* {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

@media (max-width: 1400px) and (min-width: 1200px) {
    :root {
        --container-width: 1133px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    :root {
        --container-width: 953px;
    }
}

@media (min-width: 1399px) {
    :root {
        --container-width: 1400px;
    }

    .container {
        max-width: 1400px;
    }
}

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.toggle-menu, .menu-wrapper {
    display: none;
}

.main-header {
    position: relative;
}

.large-container {
    max-width: 100%;
    width: 1680px;
    margin: auto;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .header-container .logo {
    width: 180px;
}

.main-header .header-container .logo img {
    width: 100%;
}

.main-header .header-container .phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    column-gap: 10px;
}

.main-header .header-container .phone .number {
    font-size: 20px;
    display: block;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: -5px;
    transition: 300ms;
}

.main-header .header-container .phone .title {
    font-size: 12px;
    color: #000;
}

.main-header .header-container .phone:Hover .number {
    color: #000;
}

.main-header .header-container .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 14px;
}

.main-header .header-container .menu > ul > li > a {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms;
    color: #000;
    padding: 45px 20px;
}

.main-header .header-container .menu > ul > li {
    position: relative;
}

.main-header .header-container .menu > ul > li:Hover > a {
    color: var(--orange);
}

.main-header .header-container .menu > ul > li:has(ul) > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 5px;
}

.main-header .header-container .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 999;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0 0 5px 5px;
    font-size: 13px;
    visibility: hidden;
    transition: 300ms;
    opacity: 0;
}
.main-header .header-container .menu > ul > li > ul li{
    position: relative;
   
}
.main-header .header-container .menu > ul > li > ul li ul{
    position: absolute;
    left: 100%;
    top: 0%;
    background: #fff;
    z-index: 999;
    min-width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0 5px 5px 5px;
    font-size: 13px;
    visibility: hidden;
    opacity: 1;
    padding: 15px;
    margin-left: 0;
}
.main-header .header-container .menu > ul > li > ul li:hover ul{
      opacity: 1;
    visibility: visible;
}
.main-header .header-container .menu > ul > li:Hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-header .header-container .menu > ul > li > ul > li > a {
    display: block;
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
    transition: 300ms;
}

.main-header .header-container .menu > ul > li > ul > li > a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 5px;
}

.main-header .header-container .menu > ul > li > ul > li:Hover > a {
    color: var(--orange);
}


.main-header .header-container .menu > ul > li > ul ul > li > a {
    display: block;
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
}

.main-header .header-container .menu > ul > li > ul ul > li > a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 5px;
}

.main-header .header-container .menu > ul > li > ul ul > li:Hover > a {
    color: var(--orange);
}



.main-sliders .slider-widgets {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    margin-top: -50px;
    z-index: 9;
    margin-bottom: 60px;
}

.main-sliders .slider-widgets > .widget {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 16px 37px 16px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 300ms;
}

.main-sliders .slider-widgets > .widget:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: #D2D2D2;
    transition: 300ms;
}

.main-sliders .slider-widgets > .widget:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 7px;
    background: var(--orange);
    transition: 600ms;
    z-index: 1;
    opacity: 0;
}

.main-sliders .slider-widgets > .widget:Hover {
    transform: translateY(-10px);
}

.main-sliders .slider-widgets > .widget:Hover:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.main-sliders .slider-widgets > .widget > .icon {
    width: 80px;
    text-align: center;
}

.main-sliders .slider-widgets > .widget > .icon img {
    width: 65px;
    aspect-ratio: 1;
    object-fit: contain;
}

.main-sliders .slider-widgets > .widget > .content {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.main-sliders .slider-widgets > .widget > .content .title {
    font-weight: 600;
    margin-bottom: 10px;
}

.main-sliders .slider-widgets > .widget > .content .desc {
    color: #8B8B8B;
    font-size: 12px;
    margin: 0;
}

.main-sliders {
    position: relative;
}

.main-sliders .owl-dots {
    position: absolute;
    left: 0;
    bottom: 70px;
    z-index: 99;
    width: 100%;
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
}

.main-sliders .owl-dots .owl-dot {
    background: #fff;
    width: 30px;
    height: 3px;
    transition: 300ms;
}

.main-sliders .owl-dots .owl-dot.active {
    background: var(--orange);
}

.main-sliders .owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: centeR;
    justify-content: space-between;
    padding: 0 calc(calc(100% - 1680px) / 2);
}

.main-sliders .owl-nav i {
    font-size: 35px;
    font-weight: lighter;
    transition: 300ms;
    color: #fff;
}

.main-sliders .owl-nav i:Hover {
    color: var(--orange);
}

.home-section-header {
    text-align: center;
    margin-bottom: 45px;
}

.home-section-header .section-title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home-section-header .section-desc {
    font-size: 14px;
    margin: 0;
}

.slider-top-action {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 40px;
}

.slider-top-action > a {
    transition: 300ms;
    display: inline-block;
    color: #000;
    font-size: 14px;
}

.slider-top-action > a:Hover {
    color: var(--orange);
}

.main-tours {
    margin-bottom: 100px;
}

.tour-slider .slider-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.tour-slider .slider-item .cover img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 300ms;
}

.tour-slider .slider-item .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 15px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    z-index: 1;
}

.tour-slider .slider-item .content .discount-badge {
    background: var(--orange);
    display: inline-block;
    position: absolute;
    right: 0;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 5px 0 0 5px;
}

.tour-slider .slider-item .content .meta {
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 18px;
    font-size: 12px;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    justify-content: start;
    column-gap: 10px;
    max-width: 70%;
}
.tour-slider .slider-item .content .meta span:last-child {
    white-space:nowrap
}

.tour-slider .slider-item .content .meta i {
    font-weight: lighter;
    margin-right: 5px;
}

.tour-slider .slider-item .content .title {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: 600;
    padding-right: 90px;
}

.tour-slider .slider-item:hover .cover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

.tour-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    column-gap: 10px;
}

.tour-slider .owl-dots .owl-dot {
    background: #D2D2D2;
    width: 30px;
    height: 3px;
    transition: 300ms;
}

.tour-slider .owl-dots .owl-dot.active {
    background: #000;
}

.tour-categories-container {
    display: flex;
    column-gap: 30px;
}

.tour-categories-container > div {
    width: 50%;
}

.tour-categories-container > .columns {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
}

.tour-categories-container > .columns > div {
    width: calc(50% - 15px);
}

.tour-categories-container .category {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.tour-categories-container .category img {
    width: 100%;
    transition: 300ms;
}

.tour-categories-container .category .content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 23px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    z-index: 1;
}

.tour-categories-container .category:hover img {
    filter: brightness(80%);
    transform: scale(1.1);
}

.main-tour-categories {
    margin-bottom: 100px;
}

#hotelsSlider {
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 0;
    column-gap: 30px;
}

#hotelsSlider .nav-link {
    border-radius: 0;
    border: 0;
    font-size: 14px;
    transition: 300ms;
    position: relative;
    padding: 5px 0;
}

#hotelsSlider .nav-link:Before {
    content: '';
    width: 100%;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    position: absolute;
    transition: 300ms;
    opacity: 0;
}

#hotelsSlider .nav-link.active {
    font-weight: 600;
}

#hotelsSlider .nav-link.active:before {
    opacity: 1;
}

.main-hotels {
    margin: 100px 0;
}

#hotelsSliderContent {
    position: relative;
    overflow: hidden;
}

#hotelsSliderContent:Before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

#hotelsSliderContent:after {
    content: '';
    position: absolute;
    left: calc(50% - 50px);
    bottom: calc(50% - 50px);
    width: 100px;
    height: 100px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f110";
    font-size: 40px;
    animation: wave 1s linear infinite;
    opacity: 0;
    visibility: hidden;
    color: dimgrey;

}

@keyframes wave {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0);
    }
}

.loading#hotelsSliderContent:before,
.loading#hotelsSliderContent:after {
    opacity: 1;
    visibility: visible;
}

.main-about-bg {
    background: url(images/about-bg.png); /* TODO: gÃƒÂ¶rseli gÃƒÂ¼ncelle */
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.main-about-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.main-about .about-container {
    padding: 100px 0 130px 0;
    color: #fff;
}

.main-about .about-container .play-btn {
    display: inline-block;
    font-size: 55px;
    margin-bottom: 25px;
    color: #fff;
    transition: 300ms;
}

.main-about .about-container .play-btn > i {
    font-weight: lighter;
}

.main-about .about-container .play-btn:Hover {
    color: var(--orange);
}

.main-about .about-container .section-title {
    margin-bottom: 25px;
}

.main-about .about-container .section-desc {
    max-width: 60%;
    margin: auto;
}

.about-widgets {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: -70px;
    margin-bottom: 100px;
}

.about-widgets > div {
    backgroundc: #fff;
    position: relative;
    padding: 30px 15px 37px 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: 300ms;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.about-widgets > div img {
    width: 65px;
    height: 65px;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 10px;
}

.about-widgets > div .title {
    margin: 0;
    font-weight: 600;
    color: var(--orange);
}

.about-widgets > div:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: #D2D2D2;
    transition: 300ms;
}

.about-widgets > div:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 7px;
    background: var(--orange);
    transition: 600ms;
    z-index: 1;
    opacity: 0;
}

.about-widgets > div:Hover {
    transform: translateY(-10px);
}

.about-widgets > div:Hover:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
}

.posts-container .post {
    position: relative;
    width: calc(33.3% - 30px);
    margin: 15px;
}

.posts-container .post .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}

.posts-container .post .image img {
    width: 100%;
    transition: 300ms;
    height: 250px;
    object-fit: cover;
}

.posts-container .post .image .tag {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 12px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    padding: 7px 10px;
    border-radius: 20px;
    z-index: 1;
}

.posts-container .post .content {
    text-align: center;
}

.posts-container .post .content .title {
    font-weight: 600;
    display: block;
    color: #000;
    transition: 300ms;
    padding: 0 50px;
    margin-bottom: 15px;
}

.posts-container .post .content .desc {
    font-size: 14px;
}

.posts-container .post .content .read-more {
    font-weight: 600;
    transition: 300ms;
    display: inline-block;
    color: var(--orange);
}

.posts-container .post:hover .image img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.posts-container .post:hover .title {
    color: var(--orange);
}

.posts-container .post .read-more:hover {
    color: #000;
}

.main-posts .posts-action-btn {
    text-align: right;
    margin-bottom: 20px;
}

.main-posts .posts-action-btn > a {
    transition: 300ms;
    display: inline-block;
    color: #000;
    font-size: 14px;
}

.main-posts .posts-action-btn > a:Hover {
    color: var(--orange);
}

.main-footer .footer-content {
    background: var(--orange)
}

.main-footer .footer-container {
    display: flex;
    padding: 70px 0 30px 0;
    column-gap: 40px;
    color: #fff;
}

.main-footer .footer-container > div {
    flex: 3;
}
.main-footer .footer-container > div.logo {
    flex: 4;
}

.main-footer .logo img {
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
    width: 73%;
}

.main-footer .logo {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
}

.main-footer .logo .bank-info-btn {
    background: #CC4D00;
    display: inline-flex;
    width: fit-content;
    padding: 10px 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    transition: 300ms;
    border-radius: 5px;
}

.main-footer .logo .bank-info-btn:Hover {
    background: #fff;
    color: var(--orange);
}

.main-footer .logo p {
    font-size: 14px;
    color:#fff;
}
.main-footer .logo p img {
    filter:none;
    width: 118px;
}

.main-footer .logo .phone {
    display: block;
    color: #fff;
}

.main-footer .logo .phone .number {
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.main-footer .logo .phone .title {
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.main-footer .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .menu-title {
    font-weight: 600;
    font-size: 14px;
}

.main-footer .menu ul a {
    font-size: 14px;
    display: block;
    color: #fff;
    padding: 5px 0;
    transition: 300ms;
}

.main-footer .menu ul a:Hover {
    opacity: .6;
}

.main-footer .contacts ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.main-footer .contacts ul a {
    display: block;
    font-size: 14px;
    padding: 10px 0;
    color: #fff;
    transition: 300ms;
}

.main-footer .contacts ul a:Hover {
    opacity: .6;
}

.main-footer .contacts .socials {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    font-size: 25px;
}

.main-footer .contacts .socials > a {
    color: #fff;
    transition: 300ms;
}

.main-footer .contacts .socials > a > i {
    font-weight: lighter;
}

.main-footer .contacts .socials > a:Hover {
    opacity: .6;
}

.main-footer .banks {
    margin: 100px 0 20px 0;
}

.main-footer .banks img {
    width: 100%;
}

.support {
    position: fixed;
    right: 0;
    top: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    width: 60px;
    right: 20px;
    text-align: center;
    z-index: 11;
}

.support .title {
    font-size: 12px;
}

.support a {
    display: flex;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 300ms;
    color: #fff;
}

.support a:Hover {
    transform: scale(1.1);
}

.support a i {
    font-size: 20px;
}

.support a.phone {
    background: var(--orange);
}

.support a.whatsapp {
    background: #67D449;
}

.breadcrumb {
    border-radius: 0;
    position: relative;
}

.breadcrumb .cover {
    width: 100%;
    height: 320px;;
    object-fit: cover;
}

.breadcrumb .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    padding-top: 15px;
    color: #fff;
}

.breadcrumb .content ul {
    list-style: none;
    padding: 0;
    display: flex;
    font-size: 13px;
   
    white-space: nowrap;
    width: 100%;
}

.breadcrumb .content ul li a {
    display: block;
    color: #fff;
    transition: 300ms;
}

.breadcrumb .content ul li a:Hover {
    color: var(--orange);
}

.breadcrumb .content ul li:not(:last-child) a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin: 0 10px;
    color: #fff;
}

.breadcrumb .content .container {
    position: relative;
    height: 100%;
}

.breadcrumb .content .breadcrumb-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.breadcrumb .content .breadcrumb-container .page-title {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: -16px;
}

.breadcrumb.tour-breadcrumb .content .breadcrumb-container .page-title {
    height: unset;
    display: block;
    text-align: left;
    max-width: 50%;
    text-transform: unset;
    padding-bottom: 100px;
}

.page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
}

.page-container > .page-content {
    width: calc(100% - 400px);
	overflow:hidden;
}

.page-container > .page-sidebar {
    width: 400px;
}

.page.tour-page .page-container {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.tour-details .tour-images {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.tour-details .tour-images .owl-nav {
    position: absolute;
    left: 0;
    top: calc(50% - 25px);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.tour-details .tour-images .owl-nav i {
    font-size: 45px;
    font-weight: lighter;
    transition: 300ms;
    color: #fff;
}

.tour-details .tour-images .owl-nav i:Hover {
    color: var(--orange);
}

.tour-details .tour-images .zoom {
    z-index: 22;
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 20px;
    color: #fff;
    transition: 300ms;
}

.tour-details .tour-images .zoom:Hover {
    color: var(--orange);
}

.tour-details .tour-images .zoom > i {
    font-weight: lighter;
}

.tour-details .tour-header {
    margin-bottom: 15px;
}

.tour-details .tour-header h2 {
    font-size: 22px;
    color: var(--orange);
    font-weight: 600;
}

.reservation-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    background: var(--orange);
    padding: 30px;
    color: #fff;
}

.reservation-card .reservation-btn {
    background: #fff;
    display: block;
    transition: 300ms;
    text-align: center;
    padding: 15px 0;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--orange);
    transition: 300ms;
}

.reservation-card .reservation-btn:Hover {
    background: #BE4700;
    color: #fff;
}

.reservation-card .bordered-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #FF6600;
}

.reservation-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    border-bottom: 1px solid #FF6600;
}

.reservation-card ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    font-size: 14px;
    margin: 25px 0;
}

.reservation-card ul li img {
    width: 20px;
    aspect-ratio: 1;
    object-fit: contain;
}

.reservation-card ul li p {
    margin: 0;
}

.reservation-card .card-footer {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reservation-card .card-footer .info {
    font-size: 12px;
}

.reservation-card .card-footer .info .title {
    margin: 0;
    font-weight: 600;
}

.reservation-card .card-footer .info a {
    transition: 300ms;
    display: block;
    color: #fff;
}

.reservation-card .card-footer .info a:Hover {
    opacity: .6;
}

.reservation-card .card-footer .button .share-btn {
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 300ms;
}

.reservation-card .card-footer .button .share-btn i {
    font-weight: lighter;
}

.reservation-card .card-footer .button .share-btn:Hover {
    background: #fff;
    color: var(--orange);
}

.tour-categories .category {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.tour-categories .category > img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: 300ms;
}

.tour-categories .category .content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 23px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    z-index: 1;
    column-gap: 10px;
}

.tour-categories .category .content > img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tour-categories .category:hover > img {
    filter: brightness(80%);
    transform: scale(1.1);
}

.tours-container {
    display: flex;
    flex-wrap: wrap;
}

.tours-container > div {
    width: calc(33.3% - 30px);
    margin: 15px;
}

.page .main-tours {
    margin-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #D6D6D6;
}

.contact-details {
    margin-top: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 50px;
}

.contact-details > div {
    width: 50%;
}

.contact-details > div .contacts-title {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}

.contact-details .contact-boxes .contact-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 45px;
    margin: 25px 0;
    font-size: 14px;
}

.contact-details .contact-boxes .contact-box p {
    margin: 0;
}

.contact-details .contact-boxes .contact-box .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-details .contact-boxes .contact-box .title {
    font-weight: 600;
}

.contact-details .contact-boxes .contact-box .value {
    display: block;
    color: #000;
    transition: 300ms;
}

.contact-details .contact-boxes .contact-box.phone .value {
    font-size: 22px;
    font-weight: 600;
    color: var(--orange);
}

.contact-details .contact-boxes .contact-box .value:Hover {
    color: var(--orange);
}

.contact-details .contact-boxes .contact-box.phone .value:Hover {
    color: #000;
}

.map iframe {
    width: 100%;
    height: 700px;
    margin-top: 75px;
}

.contact-details .contact-form  input,
.contact-details .contact-form  textarea {
    background: #F8F8F8;
    border: 0;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 30px;
    border-radius: 5px;
    color: #A5A5A5;
    font-size: 14px;
}

.contact-details .contact-form  input::placeholder,
.contact-details .contact-form  textarea::placeholder {
    text-transform: uppercase;
    color: #A5A5A5;
}

.contact-details .contact-form .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-details .contact-form .form-footer .submit-btn {
    font-size: 14px;
    background: var(--orange);
    transition: 300ms;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
}

.contact-details .contact-form .form-footer .submit-btn:Hover {
    background: #CC4D00;
}

.contact-details .contact-form .form-footer .check {
    position: relative;
}

.contact-details .contact-form .form-footer .check input {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}

.contact-details .contact-form .form-footer .check label {
    cursor: pointer;
    font-size: 12px;
    color: #A5A5A5;
    position: relative;
    user-select: none;
    padding-left: 20px;
}

.contact-details .contact-form .form-footer .check label:before {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    border: 1px solid var(--orange);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 1px;
}

.contact-details .contact-form .form-footer .check label:after {
    content: '';
    width: 11px;
    height: 11px;
    display: block;
    background: var(--orange);
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 1px;
    transition: 300ms;
    opacity: 0;
}

.contact-details .contact-form .form-footer .check input:checked + label:after {
    opacity: 1;
}

.alert {
    border: 0;
    font-size: 14px;
}

@media (max-width: 1710px) {
    .large-container {
        padding: 0 30px;
    }

    .main-sliders .owl-nav {
        padding: 0 30px;
    }
}

@media (max-width: 1500px) {
    .main-header .header-container .menu > ul > li > a {
        padding: 30px 5px;
    }
}

@media (max-width: 1300px) {
    .main-header .header-container .phone .icon {
        display: none;
    }

    .main-header .header-container .phone .number {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .main-header .header-container .phone {
        display: none;
    }

    .main-header .header-container .menu > ul > li > a {
        font-size: 12px;
    }

    .main-sliders .slider-widgets {
        flex-wrap: wrap;
        column-gap: 0;
        margin-top: 20px;
    }

    .main-sliders .slider-widgets > .widget {
        flex: unset;
        width: calc(50% - 20px);
        margin: 10px;
    }

    .about-widgets > div .title {
        font-size: 14px;
        min-height: 42px;
    }

    .main-header .header-container .menu {
        width: calc(100% - 180px);
    }

    .main-header .header-container .menu ul {
        justify-content: flex-end;
    }

    .tours-container > div {
        width: calc(50% - 30px);
    }
}

@media (max-width: 1024px) {
    .breadcrumb.tour-breadcrumb .content .breadcrumb-container .page-title {
        max-width: 100%;
    }

    .page.tour-page .page-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .page-container > .page-content {
        width: 100%;
    }

    .page-container > .page-sidebar {
        width: 100%;
    }


    .contact-details {
        flex-direction: column;
        row-gap: 30px;
    }

    .contact-details > div {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .main-header .header-container .menu {
        display: none;
    }

    .main-header .header-container .logo {
        width: 100%;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header .header-container .logo img {
        width: 120px;
    }

    .main-header .toggle-menu {
        display: flex !important;
        width: 40px;
        height: 40px;
        background: var(--orange);
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        color: #fff;
    }


    .main-sliders .slider-widgets > .widget {
        padding: 15px 10px;
    }


    .main-sliders .slider-widgets > .widget > .icon img {
        width: 30px;
        height: 30px;
    }

    .main-sliders .slider-widgets > .widget > .content {
        width: calc(100% - 30px);
        padding-left: 5px;
    }

    .main-sliders .slider-widgets > .widget > .content .title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .tour-categories-container {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .tour-categories-container > div {
        width: 100%;
    }

    .tour-categories-container > .columns > div {
        width: 100%;
        margin: 10px 0;
    }

    .tour-categories-container > .columns {
        row-gap: 0;
    }

    .main-about .about-container .section-desc {
        max-width: 100%;
    }

    .about-widgets {
        max-width: 100%;
        overflow: auto;
        margin-bottom: 30px;
    }

    .about-widgets .widget {
        min-width: 130px;
    }

    .posts-container .post {
        width: 100%;
        margin: 15px 0;
    }

    .main-footer .footer-container {
        padding: 30px 0;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 0;
    }

    .main-footer .footer-container > div {
        flex: unset;
        width: calc(50% - 20px);
        margin: 10px;
    }

    .main-footer .footer-container img {
        width: 100%;;
    }

    .main-footer .banks {
        margin: 30px 0;
    }

    .main-hotels {
        margin: 30px 0;
    }

    .main-tours {
        margin-bottom: 30px;
    }

    .menu-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 999;
        padding: 30px;
        display: block;
        overflow: auto;
        transform: translateX(100%);
        opacity: 0;
        visibility: visible;
        transition: 300ms;
    }

    .menu-wrapper .toggle-menu {
        display: inline-flex;
        position: absolute;
        right: 30px;
        top: 30px;
        width: 50px;
        height: 50px;
        background: var(--orange);
        color: #fff;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }

    .menu-wrapper .menu {
        margin: 80px 0;
    }

    .menu-wrapper .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .menu-wrapper .menu ul a {
        display: block;
        padding: 10px 0;
        color: #000;
        font-weight: 600;
    }

    .menu-wrapper .menu ul li ul a {
        font-weight: 500;
        margin-left:15px
    }
 .menu-wrapper .menu ul li ul li ul a {
        font-weight: 400;
        margin-left:35px
    }
    .menu-wrapper .menu ul li ul a:before {
        content: '\f105';
        font-family: 'Font Awesome 5 Pro';
        font-weight: lighter;
        margin-right: 10px;
    }

    .menu-wrapper .phone {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        column-gap: 10px;
    }

    .menu-wrapper .phone .number {
        font-size: 20px;
        display: block;
        font-weight: 600;
        color: var(--orange);
        margin-bottom: -5px;
        transition: 300ms;
    }

    .menu-wrapper .phone .title {
        font-size: 12px;
        color: #000;
    }

    .menu-wrapper .phone:Hover .number {
        color: #000;
    }

    .open-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .support {
        top: unset;
        bottom: 30px;
        right: 0;
    }

    .support .title {
        display: none;
    }

    .breadcrumb.tour-breadcrumb .content .breadcrumb-container .page-title {
        font-size: 16px;
    }

    .tours-container > div {
        width: 100%;
        margin: 15px 0;
    }
}

/*about*/
.about-page-details {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-header {
    padding: 90px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}


.about-header .logo img {
    width: 330px;
}

.about-header h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-header p {
    margin: 0;
    color: var(--red);
    font-size: 30px;
    font-weight: 500;
}

.about-page-details .about-text {
   font-size: 17px;
   font-weight: lighter;
   margin-bottom: 80px;
   margin-top: 0;
}

.about-page-details .about-text > div {
    width: 50%;
}

.about-page-details .factory-image {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.about-page-details .factory-image img {
    width: 100%;
    transition: 300ms;
}

.about-page-details .factory-image img:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .4);
}

.about-page-details .about-widgets {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    position: relative;
    padding: 90px 0 100px 0;
}

.about-page-details .about-widgets:before {
    position: absolute;
    left: -100vh;
    top: -100%;
    width: 300vh;
    height: calc(200% + 80px);
    background: #F1F1F1;
    content: '';
    z-index: -1;
}

.about-page-details .about-widgets .widget {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    padding: 10px;
    transition: 300ms;
    border-radius: 20px;
}

.about-page-details .about-widgets .widget .icon {
    width: 70px;
}

.about-page-details .about-widgets .widget .content {
    width: calc(100% - 70px);
}

.about-page-details .about-widgets .widget .title {
    font-size: 25px;
    padding-right: 30%;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
}

.about-page-details .about-widgets .widget p:not(.title) {
    font-size: 17px;
    font-weight: lighter;
}

.about-page-details .about-widgets .widget p:last-child:after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #000;
    margin-top: 30px;
}

.about-page-details .about-widgets .widget:Hover {
    background: #fff;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .4);
}

.about-page-details .about-rd .rd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    column-gap: 30px;
}

.about-page-details .about-rd .rd-item > div {
    width: 50%;
}



.about-page-details .about-rd .rd-item .title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 50px;
}

.about-page-details .about-rd .rd-item .body {
    font-size: 17px;
    font-weight: lighter;
}

.about-page-details .about-rd .rd-item .text-card {
    background: #e55600;
    padding: 51px 40px;
    display: flex;
    align-items: center;
    margin-right: -150px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 25px;
    font-weight: lighter;
}

.about-page-details .about-rd .rd-item .text-card p {
    margin: 0;
}

.about-page-details .about-rd .rd-item .text-card.blue {
    background: #6f9bc1;
}

.about-page-details .about-rd .rd-item .image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-page-details .about-usage-areas {
    position: relative;
    padding-bottom: 100px;
}

.about-page-details .about-usage-areas:Before {
    content: '';
    position: absolute;
    left: -100vh;
    top: 0;
    width: 300vh;
    height: 100%;
    background: #F1F1F1;
    z-index: -1;
}



.about-page-details .about-rd {
    position: relative;
    margin-bottom: 52px;
}

.about-usage-areas .items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 70px;
}

.about-usage-areas .items > div {
    width: calc(50% - 15px);
    display: flex;
    column-gap: 30px;
}

.about-usage-areas .items > div .image {
    width: 330px;
}

.about-usage-areas .items > div .content {
    width: calc(100% - 330px);
}

.about-usage-areas .items > div .content .title {
    font-size: 20px;
    color: var(--red);
    display: block;
    margin-bottom: 17px;
}

.about-usage-areas .items > div .content p:Not(.title) {
    font-size: 15px;
    font-weight: lighter;
}

.about-milestones {
    position: relative;
    padding: 100px 0;
}

.about-milestones .milestone {
    padding: 50px 100px;
    max-width: 50%;
}

.about-milestones .milestone:nth-child(odd) {
    text-align: right;
}

.about-milestones .milestone:nth-child(even) {
    margin-left: 50%;
}

.about-milestones .milestone .year {
    font-size: 150px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1;
}

.about-milestones .milestone.red-stone .year {
    color: var(--red);
    position: relative;
}

.about-milestones .milestone.red-stone .blue {
    color: var(--blue);
}

.about-milestones:Before {
    content: '';
    position: absolute;
    left: calc(50% - .5px);
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.about-milestones .milestone.blue-stone .year {
    color: var(--blue);
}

.about-milestones .milestone .description {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}

.about-milestones .milestone .year:After {
    content: '';
    display: block;
    width: 170px;
    height: 1px;
    margin-top: 25px;
}

.about-milestones .milestone.red-stone .year:after {
    background: var(--blue);
}

.about-milestones .milestone:nth-child(odd) .year:after {
    margin-left: calc(100% - 170px);
}

.about-milestones .milestone.blue-stone .year:after {
    background: var(--red);
}

.about-header.header-center {
    text-align: center;
    justify-content: center;
}

.about-page-details .page-details {
    font-size: 17px;
    padding-bottom: 60px;
}

.bank-accounts {margin-top:50px;}
.bank-accounts .account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
}

.bank-accounts .account .image {
    width: 150px;
    text-align: center;
}

.bank-accounts .account .copy-button {
    white-space: nowrap;
    background: #E8E8E8;
    color: #e55600;
    column-gap: 10px;
    font-weight: 500;
    padding: 15px;
    border-radius: 50px;
}

.bank-accounts .account .copy-button i {
    font-weight: normal;
}

.bank-accounts .account .copy-button:Hover {
    background: #e55600;
    color: #fff;
}

.bank-accounts .account .button {
    width: 165px;
    text-align: right;
}

.bank-accounts .account .details {
    width: calc(315px);
    font-size: 14px;
}

.bank-accounts .account .details .bank-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bank-accounts .account .details .account-no {
    font-weight: 700;
    margin: 0;
}

.bank-accounts .account .details .branch,
.bank-accounts .account .details .branch-no {
    margin: 0;
}
.check-input {margin-bottom:20px;}
.tour-details .item,.tour-details .item img{border-radius:30px;}
.reservation-card .card-footer .button .share .share-btn {
    width: 35px;
    padding: 5px;
    height: 35px;
    display: flex;
    align-items: center;
    background: #fff;
    color: var(--orange);
    margin-bottom: 3px;
}
.reservation-card .card-footer .button{position:relative;}
.reservation-card .card-footer .button .share{
    position: absolute;
    bottom: 10px;
    display: none;
    padding-bottom: 40px;
    left: 5px;
    }
.reservation-card .card-footer .button:hover .share{
   
    display: block;}
.reservation-card .card-footer .button .share:hover{
   
    display: block;}
	@media(max-width:992px){
	.bank-accounts .account {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 20px;
    }

    .bank-accounts .account > div {
        width: 100% !important;
        text-align: left !important;
    }

    .bank-accounts .account .image img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
	  .about-page-details .about-header {
        padding: 30px 0;
    }

    .about-page-details .about-header .logo {
        display: none;
    }

    .about-page-details .about-header h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .about-page-details .about-header p {
        font-size: 14px;
    }

    .about-page-details .about-text {
        flex-direction: column;
    }

    .about-page-details .about-text > div {
        width: 100%;
    }

    .about-page-details .about-widgets {
        padding: 30px 0;
        flex-direction: column;
    }

    .about-page-details .about-widgets .widget .title {
        font-size: 20px;
        padding-right: 0;
    }

    .about-page-details .about-rd .rd-item {
        flex-direction: column;
        row-gap: 20px;
    }

    .about-page-details .about-rd .rd-item > div {
        width: 100%;
    }

    .about-page-details .about-rd .rd-item .image img {
        height: unset;
    }

    .about-page-details .about-rd .rd-item .title {
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-page-details .about-rd .rd-item .body {
        text-align: center;
    }

    .about-page-details .about-rd .rd-item .text-card {
        margin-right: 0;
        font-size: 17px;
        height: unset;
        padding: 30px;
    }
.breadcrumb .cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
		}
		@media(max-width:468px){
	.breadcrumb .cover {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.main-footer .logo .bank-info-btn {
  
    padding: 10px 10px;
   
}
.main-footer .logo .phone .number {
    font-size: 16px;
  
  
}
}
.modal-content h5 {font-size: 24px;
    padding-left: 20px;
    margin-bottom: 0;
    color: var(--orange);}
.modal-content button {
    border: none;
    background: transparent;
    font-size: 34px;
    padding: 0 !important;
    height: initial;
}
	.modal-body{padding:0}
	.modal-content {border-radius: 40px 0px 40px 0px}
	.modal-content img {border-bottom-right-radius: 40px}
#hotelsust {
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 0;
    column-gap: 30px;
	display: flex;
    flex-wrap: wrap;
    padding-left: 0;
  
    list-style: none;
}

#hotelsust li {
	font-size: 14px;
	cursor:pointer;
	border:1px solid #e55600;
	color:#e55600;
	padding: 11px 28px;
	border-radius: 10px;
	font-weight: 600;
	overflow: hidden;
	}
#hotelsust li.active {
	 color: #fff;
    background: #e55600;
   }
  #hotelsust li:hover {
	 color: #fff;
    background: #e55600;
   }

@media(max-width:768px){
.breadcrumb .content ul {
    overflow: auto;
}
}
.document{margin-top:20px;background: #e55600;border-radius: 10px;padding: 30px;}
.document h4{
    margin-bottom: 0;
    margin-left: 0;
    color: #fff;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    }
.document a{
    margin-bottom: 0;
    margin-left: 0;
    font-size: 16px;
    color: #fff;
    column-gap: 30px;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 300ms;
    }
.document a:hover{
   background: #fff;
    color: var(--orange);
    }
.document a i{
  position:relative;
  top:0;
  transition:all .5s;
    }
.document a:hover i{
 
  top:5px;
    }
.document a span{
    margin-bottom: 0;
    margin-left: 0px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    }
.document a:hover span{
   
    color: var(--orange);
    }
.tour-slider .slider-item .content .discount-badge.vize1{top: 50px;
    width: 24%;
    background: #c52f02;}
.tour-slider .slider-item .content .discount-badge.vize2{
    width: 24%;
    background: #c52f02;}
 .stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    font-size: 14px;
    color: #e55600;
}
.page-sidebar .stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    font-size: 14px;
    color: #fff;
}