/* Designed by Ali Dinçer in/dincerali */
:root {
    --theme-main-color: #da1242;
    --theme-secondary-color: #434997;
    --theme-search-area-padding: 22px;

    --bs-body-font-size: 0.9rem;
    /* --bs-border-color: #f2f2f2; */
    --bs-border-color: #bbb;
    --bs-border-radius: 7px;
    --bs-border-color-translucent: var(--bs-border-color);
    --bs-breadcrumb-font-size: .8rem;
}

::-moz-selection {
    /* for Firefox */
    color: #fff;
    background: var(--theme-main-color);
}

::selection {
    color: #fff;
    background: var(--theme-main-color);
}

body {
    font-family: 'Poppins', sans-serif;
}

body>main {
    padding-bottom: 30px;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }

}

img:not([src]):not([srcset]) {
    /* --ali #Async Lazyload ile yüklenen imagelerin empty ve alt tagları gözükmemesi için */
    visibility: hidden;
}

.theme-color {
    color: var(--theme-main-color);
}

.theme-secondary-color {
    color: var(--theme-secondary-color);
}

.theme-bg {
    background-color: var(--theme-main-color) !important;
}

.theme-bg-secondary {
    background-color: var(--theme-secondary-color) !important;
}

.main-header {
    box-shadow: 0 10px 15px -12px rgb(0 0 0 / 30%);
    background-color: #fff;
    position: relative;
    z-index: 11;
    transition: top 0.7s;
    position: sticky;
    top: 0;
}

.header-top {
    padding: 10px 0;
    background-color: #fff;
}

.header-bottom {
    /* border-top: 1px solid #d5d5d5; */
    background-color: #434997;
    background-image: linear-gradient(180deg, rgb(255 255 255 / 30%), transparent);
}

.header-contacts a {
    padding: 5px;
    border: 1px solid var(--theme-main-color);
    border-radius: var(--bs-border-radius);
    line-height: 1.2;
    text-decoration: none;
    color: var(--theme-secondary-color);
    background-color: #fff;
}

.header-contacts i {
    display: block;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--theme-main-color);
}


.hc-wp {
    box-shadow: rgba(255, 255, 255, 0.25) 0 0 0 3px inset;
    background-color: #25d366;
}

.hc-wp>i {
    font-size: 1.3rem;
}

.hc-call>i {
    font-size: 1.2rem;
}

.h-quick-outer {}

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

.header-quick-navs {
    display: flex;
    gap: .7rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.header-quick-navs li a {
    color: var(--theme-secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
}

.header-quick-navs li a:hover {
    color: var(--theme-main-color);
}

.header-navigation>li {
    /*     height: 100%;
    display: flex;
    align-items: center; */
    padding: 0px 0;
}


.header-navigation>li:hover {}

.header-navigation>li:nth-child(1), .header-navigation>li:nth-child(2) {
    padding-left: 0;
}


.header-navigation>li>a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    display: inline-block;
    text-shadow: 0px 1px 2px #000;
}

.header-navigation>li:hover>a {
    color: #f8fd00;
}

.header-navigation {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.header-navigation>ul>li {
    width: 100%;
}

.header-navigation>ul>li>a {
    color: var(--theme-secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: 1px solid var(--bs-border-color);
    border-bottom: 0;
    border-left: 0;
    box-shadow: var(--bs-box-shadow-inset);
}


.header-navigation li.has-child>a {
    padding-right: 30px;
    position: relative;
}



.header-navigation li.has-child>a::after {
    font: var(--fa-font-solid);
    content: "\f0d7";
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
    margin-left: 5px;
}

.header-navigation li.has-child:hover>a::after {
    transform: translateY(-50%) rotate(180deg);
}


.header-navigation li.has-child .sub-menu {
    left: 0;
    width: calc(100% + (-.5 * 3rem));
    position: absolute;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
    padding: 30px;
    box-shadow: 0px 9999px 0px 9999px rgb(0 0 0 / 30%);
    border: 1px solid var(--bs-border-color);
    margin: 0 calc(.5 * 1.5rem);
    top: 100%;
}

.header-navigation li.has-child .sub-menu img {
    border-radius: var(--bs-border-radius);
}

.header-navigation li.has-child:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

.header-navigation .sub-menu .sub-menu-title a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--theme-secondary-color);
    font-weight: 700;
    padding-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
}

.header-navigation .sub-menu .sub-menu-items {
    padding-left: 0;
    list-style: none;
}

.header-navigation .sub-menu .sub-menu-items a {
    text-decoration: none;
    color: #838383;
    font-weight: 600;
    padding: 1px 0;
    display: inline-block;
}

.header-navigation .sub-menu .sub-menu-items a:hover {
    color: var(--theme-main-color);
}



/* NAV */
/* .navigation-menu {}

.navigation-menu>ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    justify-content: space-between;
}

.navigation-menu>ul>li {
    width: 100%;
}

.navigation-menu>ul>li>a {
    color: var(--theme-secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: 1px solid var(--bs-border-color);
    border-bottom: 0;
    border-left: 0;
    box-shadow: var(--bs-box-shadow-inset);
}

.navigation-menu>ul>li:first-child>a {
    border-left: 1px solid var(--bs-border-color);
    border-top-left-radius: var(--bs-border-radius);
}

.navigation-menu>ul>li:last-child>a {
    border-top-right-radius: var(--bs-border-radius);
}


.navigation-menu>ul>li:hover>a {
    background-color: var(--theme-main-color);
}

.navigation-menu li.has-child>a {
    padding-right: 20px;
    position: relative;
}



.navigation-menu li.has-child>a::after {
    font: var(--fa-font-solid);
    content: "\f0d7";
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
    margin-left: 5px;
}

.navigation-menu li.has-child:hover>a::after {
    transform: translateY(-50%) rotate(180deg);
}


.navigation-menu li.has-child .sub-menu {
    left: 0;
    width: calc(100% + (-.5 * 3rem));
    position: absolute;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
    padding: 10px;
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 10%);
    border: 1px solid var(--bs-border-color);
    margin: 0 calc(.5 * 1.5rem);
}

.navigation-menu li.has-child .sub-menu img {
    border-radius: var(--bs-border-radius);
}

.navigation-menu li.has-child:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

.navigation-menu .sub-menu .sub-menu-title a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--theme-secondary-color);
    font-weight: 700;
    padding-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
}

.navigation-menu .sub-menu .sub-menu-items {
    padding-left: 0;
    list-style: none;
}

.navigation-menu .sub-menu .sub-menu-items a {
    text-decoration: none;
    color: #585858;
    font-weight: 600;
    padding: 1px 0;
    display: inline-block;
}

.navigation-menu .sub-menu .sub-menu-items a:hover {
    color: var(--theme-secondary-color);
} */

/* NAV */

.main-slider {
    width: 100%;
    height: 547px;
    /* aspect-ratio: 1850/521; */
    border-radius: var(--bs-border-radius);
}

.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;

}

.main-slider .swiper-button-prev, .main-slider .swiper-button-next {
    font-size: 1.2rem;
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    line-height: 1;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    color: var(--theme-secondary-color);
}



.swiper-button-prev::after {
    content: none;
}

.swiper-button-next::after {
    content: none;
}

.main-slider .swiper-button-prev:hover, .main-slider .swiper-button-next:hover {
    box-shadow: 0 0px 12px 12px rgb(255 255 255 / 25%);
}

.slider__pagination {
    position: absolute;
    z-index: 21;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 3px;
}

.slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: var(--theme-secondary-color);
    opacity: 0.4;
    transition: width 0.2s, opacity .2s;
}

.slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-main-color);
    width: 40px;
}



.main-category-area .card {
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075) !important;
    height: 100%;
    overflow: hidden;
}

.main-category-area .card:hover img {
    scale: 1.1;
}

.main-category-area .card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--bs-border-radius);
    transition: .3s;
}

.main-category-area .card .category-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    padding-left: 15px;
    padding-bottom: 10px;
    background-image: linear-gradient(0deg, #000 0%, transparent 35%);
    border-radius: var(--bs-border-radius);
    font-size: 1.1rem;
}

.main-category-area .card .category-link:hover {
    color: #9dff00;
}

.text-shadow {
    text-shadow: 1px 1px 3px #333;
}

.search-area-bg {
    background-color: #eee;
    min-height: 220px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.search-area {
    padding: var(--theme-search-area-padding);
    border-radius: var(--bs-border-radius);
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.34);
    background: #ffffff;
}

.main-search-area {
    /*   margin-top: -85px; */
}

.search-area-bg .mobile-search-open-close-button {
    display: none;
}

.search-area>.nav {
    padding-bottom: 0;
}

.search-area .nav-item .btn-pill {
    margin-right: 5px;
    border: 1px solid rgb(255 255 255 / 33%);
    background-color: transparent;
    border-radius: var(--bs-border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 15px;
    text-decoration: none;
    color: #fff;
    /* flex-direction: column; */
}

.search-area .nav-item .btn-pill:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.search-area .nav-item .btn-pill.active {
    background-color: #434997;
    color: #fff;
    background-image: var(--bs-gradient);
}

.search-area .nav-item .btn-pill span {
    font-size: 19px;
    text-shadow: 1px 1px 3px #333;
    font-weight: 600;
}

.search-area .nav-item .btn-pill img {
    width: 40px;
    filter: drop-shadow(2px 4px 3px rgb(0 0 0 / 50%));
}

.search-area .search-input-outer {
    position: relative;
}

.search-area .search-input-outer::after {
    font: var(--fa-font-solid);
    content: attr(data-icon);
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--theme-secondary-color);
}

.search-area .search-input {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    position: relative;
    background-color: #fff;
    padding: 5px 5px 5px 35px;
    border: 1px solid #ddd;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075);
    outline: 0;
}

.search-area .search-input:focus-visible {
    box-shadow: 0px 0rem 0.55rem rgba(var(--bs-body-color-rgb), .3);
}

.search-area select.search-input {
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-area .search-button {
    padding: 5px 15px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    height: 50px;
    background-color: #434997;
    border: 0;
    border-radius: var(--bs-border-radius);
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075);
}

.search-area .search-button:hover {
    background-color: #31389b;
}

.search-area .autoComplete_wrapper>ul {
    position: fixed;
    margin: 10px var(--theme-search-area-padding);
}

.search-area .autoComplete_wrapper img {
    width: 100px;
    height: 90px;
    object-fit: cover;
}

.search-area .category-item {
    font-size: 0.9rem;
    font-weight: 600;
}

.search-area .category-item>div {
    font-weight: 400;
}

.search-area .tour-item {
    font-size: 0.9rem;
    font-weight: 600;
}

.search-area .tour-item>div {
    font-weight: 400;
}

.price-area .btn-incele {
    padding: 10px;
    border-radius: var(--bs-border-radius);
    background-color: #da1242;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    transition: background-color .3s, color .3s;
}

.price-area .btn-incele:hover {
    background-color: #c34e00;
    color: #fff;
}


.tour-info-outer div {
    flex: 0 0 calc(50% - .25rem);
}

.star-color {
    color: #ffcd3c;
}

.dropdown-menu {
    font-size: var(--bs-body-font-size) !important;
}

.dropdown-toggle {
    cursor: pointer;
}

.main-tour-boxes .tour-box {
    background-color: #fff;
}

.main-tour-boxes .tour-box .img-outer {
    aspect-ratio: 4/3;
    position: relative;
}

.main-tour-boxes .tour-box .img-outer::before {
    content: 'Şimdi İncele';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    border: 1px solid #fff;
    padding: 10px;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}

.main-tour-boxes .tour-box .img-outer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.main-tour-boxes .tour-box img {
    /* height: 225px; */
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}


.main-tour-boxes .swiper-button-prev, .main-tour-boxes .swiper-button-next {
    font-size: 1.2rem;
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    line-height: 1;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    color: var(--theme-secondary-color);
}

.main-tour-boxes .swiper-button-prev:hover, .main-tour-boxes .swiper-button-next:hover {
    box-shadow: 0 0px 12px 12px rgb(255 255 255 / 25%);
}

.main-tour-boxes .tour-box:hover {
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
}

.main-tour-boxes .tour-box:hover .img-outer::after, .main-tour-boxes .tour-box:hover .img-outer::before {
    visibility: visible;
    opacity: 1;
}



/* back to top */
.progress-wrap {
    position: fixed;
    right: 15px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: rgb(255 255 255 / 80%);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    text-align: center;
    color: var(--theme-secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 1.3rem;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--theme-secondary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover {
    background: rgb(255 255 255);
}

/* back to top */


/* BUTTON */

.theme-sec-button {
    padding: 10px;
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--theme-secondary-color);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    transition: background-color .3s, color .3s;
}

.theme-sec-button:hover {
    background-color: var(--theme-secondary-color);
}

/* BUTTON */

/* İNPUT */
.theme-input {
    width: 100%;
    height: 100%;
    font-size: .8rem;
    position: relative;
    background-color: #f7f7f7;
    padding: 15px 10px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075);
    outline: 0;
}

.theme-input:focus-visible {
    box-shadow: 0px 0rem 0.55rem rgba(var(--bs-body-color-rgb), .3);
}

/* İNPUT */

.fs-7 {
    font-size: 0.9rem;
}

.fs-9 {
    font-size: 0.65rem;
}


.overlay-category-area .overlay-cat-box {
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075) !important;
    height: 100%;
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}

.overlay-category-area .overlay-cat-box .img-outer {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.overlay-category-area .overlay-cat-box img {
    object-fit: cover;
    width: 100%;
    height: 211px;
    border-radius: var(--bs-border-radius);
    transition: .3s;
}

.overlay-category-area .overlay-cat-box:hover img {
    scale: 1.1;
}

.overlay-category-area .overlay-cat-box a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--bs-border-radius);
    font-size: 1.2rem;
    top: 0;
    line-height: 1.2;
    text-shadow: 0px 2px 4px #000;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 65%) 100%);
}

.overlay-category-area .overlay-cat-box a>b {
    font-weight: 800;
}

.overlay-category-area .overlay-cat-box a>span {
    font-weight: 300;
}

.overlay-category-area .overlay-cat-box a:hover {
    color: #9dff00;
}





.main-sec-category-area .sec-cat-box {
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075) !important;
    height: 100%;
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}

.main-sec-category-area .sec-cat-box .img-outer {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.main-sec-category-area .sec-cat-box img {
    object-fit: cover;
    width: 100%;
    height: 211px;
    border-radius: var(--bs-border-radius);
    transition: .3s;
}

.main-sec-category-area .sec-cat-box:hover img {
    scale: 1.1;
}

.main-sec-category-area .sec-cat-box a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    padding-left: 15px;
    padding-bottom: 10px;
    background-image: linear-gradient(0deg, #000 0%, transparent 35%);
    border-radius: var(--bs-border-radius);
    font-size: 1.1rem;
    top: 0;
}

.main-sec-category-area .sec-cat-box a:hover {
    color: #9dff00;
}



/* FOOTER */

.footer {
    margin-top: 1rem;
    background-color: #f1fffe;
    border-top: 1px solid var(--bs-border-color);
    box-shadow: 3px -5px 9px -7px rgb(0 0 0 / 20%);

    background-image: url('/assets/img/footer-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 30px;
    position: relative;
    background-position: center;
}

.footer-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 20%);
    background-image: linear-gradient(180deg, #434996 0%, transparent 100%);
    z-index: 0;
}

.footer-quick-navs {
    display: flex;
    gap: .7rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer-quick-navs li a {
    text-decoration: none;
    color: #eee;
    font-size: 0.85rem;
}

.footer-quick-navs li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-quick-navs .dropdown-item {
    color: #000;
}

.footer-quick-navs .dropdown-item:hover {
    color: #000;
}

.fc-call .phone-icon {
    display: inline-block;
}

.fc-call svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    fill: var(--theme-main-color);
    margin-right: 5px;
}


.fc-call .phone-icon svg #signal-1 {
    animation: onCallTwo 1s steps(10) infinite;
    -webkit-animation: onCallTwo 1s steps(10) infinite;
    animation-delay: 1.5s
}

.fc-call .phone-icon svg #signal-2 {
    animation: onCall 1s steps(5) infinite;
    -webkit-animation: onCall 1s steps(5) infinite;
    animation-delay: 0
}


.footer-contacts a {
    padding: 5px;
    border: 1px solid var(--theme-main-color);
    border-radius: var(--bs-border-radius);
    line-height: 1.2;
}

.footer-contacts i {
    display: block;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--theme-main-color);
}

.bg-border-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}


.footer-nav a {
    text-decoration: none;
    color: #eee;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-nav .footer-cat {
    flex: 0 0 50%;
}



.footer .footer-cat::marker {
    color: #fff;
}

.footer-first-ul {
    border-right: 1px solid #fff;
}

.cookie-alert {
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 325px;
    margin: 0 !important;
    z-index: 99999;
    opacity: 0;
    transform: translateY(100%) translateX(-50%);
    transition: all 500ms ease-out;
    background-color: #fff;
}

.cookie-alert a {
    font-size: var(--bs-body-font-size);
}

.cookie-alert.show {
    opacity: 1;
    transform: translateY(0%) translateX(-50%);
    transition-delay: 1000ms;
}

/* FOOTER */

.category-hero-img-outer {
    aspect-ratio: 133/18;
}

.category-hero-img {
    min-height: 150px;
    object-fit: cover;
    aspect-ratio: 133/18;
    width: 100%;
}

.breadcrumb .breadcrumb-item a {
    color: var(--theme-secondary-color);
    text-decoration: none;
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--theme-main-color);
    text-decoration: underline;
}

.tour-categories {
    margin-bottom: 2rem;
}

.tour-categories-img-outer img {
    aspect-ratio: 2/1;
    object-fit: cover;
    width: 100%;
    transition: .3s;
}

.tour-categories:hover .tour-categories-img-outer img {
    filter: brightness(0.8);
}

.tour-categories-links {
    box-shadow: var(--bs-box-shadow-sm);
}

.tour-categories-links ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    width: 100%;
    margin-bottom: 0;
}

.tour-categories-links ul li {
    flex: 0 0 50%;
    max-width: 50%;
}

.tour-categories-links ul li a {
    width: 100%;
    display: flex;
    padding: 20px;
    text-decoration: none;
    color: var(--theme-secondary-color);
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid var(--bs-border-color);
    font-weight: 600;
}

.tour-categories-links ul li a:hover {
    color: var(--theme-main-color);
}

.social-icons-box {
    display: flex;
    align-items: center;
}

.social-icons-box a {
    font-size: 1.5rem;
    line-height: 1;
    border: 0;
}

.social-icons-box a i {
    color: unset;
}

/* TURLARIN LİSTELENDİĞİ KATEGORİ SAYFASI */
.tour-list_tour-box {
    background-color: #fff;
    border: 0 !important;
}

.tour-list_tour-box:hover {
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
}

.tour-list_tour-box .tour-pill {
    background-color: #fff;
    width: 100%;
    color: #4647a0;
}

.tour-list_tour-box .tour-box-img-outer {
    aspect-ratio: 4/3;
}

.tour-list_tour-box .tour-box-img-outer img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.box-ozellikler {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.box-ozellikler span {
    /* flex: 0 0 calc(50% - 4px); */
    margin: 2px;
    font-size: 0.7rem;
}

.tour-list_tour-box .price-area {
    height: 100%;
}

.tours-reorder-area {
    margin-bottom: 1rem;
    /* border: 1px solid var(--bs-border-color); */
    border-radius: var(--bs-border-radius);
}

.tours-reorder-area a {
    display: block;
    padding: 10px 10px;
    border-radius: var(--bs-border-radius);
    /* border: 1px solid #d5d5d5; */
    box-shadow: var(--bs-box-shadow-sm);
    color: var(--theme-secondary-color);
    text-decoration: none;
    background-color: #fff;
    font-weight: 600;
}

.tours-reorder-area a:hover {
    background-color: #ddd;
}

.tours-reorder-area a.active {
    background-color: var(--theme-secondary-color);
    color: #fff;
    /* border-color: var(--theme-secondary-color); */
}

hr {
    color: var(--bs-border-color);
    opacity: 1;
}

.filter-list ul {
    max-height: 210px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.filter-list li {
    padding: 4px 2px;
}

.filter-list li label {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.filter-list li input {
    margin-right: .2rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0;
    background-color: #e8e8f8;
    border: 0;
}

.filter-list li input:focus {
    box-shadow: none;
    border: 1px solid #4647a0;
}

.filter-list li input:checked {
    background-color: #4647a0;
    border: #4647a0;
    box-shadow: none;
}

.filter-list li label:hover {
    color: #4647a0;
}

.filter-list li label:hover input {
    border: 1px solid #4647a0;
}

.on-hover-opacity:hover {
    opacity: .85;
}

.color-dark-blue {
    color: #4647a0;
}

/* TURLARIN LİSTELENDİĞİ KATEGORİ SAYFASI */

/* KURUMSAL SAYFALAR */
.kurumsal-menu {
    overflow: hidden;
    position: sticky;
    top: 3rem;
}

.kurumsal-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    text-decoration: none;
    color: var(--theme-secondary-color);
    font-weight: 600;
}

.kurumsal-menu ul li a:hover {
    background-color: #eaffff;
}

.kurumsal-menu ul li a.active {
    background-color: var(--theme-main-color);
    color: #fff;
}

/* KURUMSAL SAYFALAR */

/* TUR TAKVİMİ */

#tur-takvim-accordion .accordion-button {
    font-weight: 600;
}

#tur-takvim-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme-main-color);
    color: #fff;
    background-image: var(--bs-gradient);
}


#tur-takvim-accordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.takvim-list {}

.takvim-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    text-decoration: none;
    padding: 5px;
    background-color: #f5f5f5;
    margin: 10px 0;
    color: var(--theme-secondary-color);
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow-sm);
    transition: all 0.2s;
}

.takvim-list a:hover {
    background-color: var(--theme-secondary-color);
    color: #fff;
}

.takvim-list a i {
    font-size: 1rem;
}

.takvim-list-fiyat {
    font-weight: 700;
    border-radius: var(--bs-border-radius);
    color: var(--theme-secondary-color);
    background-color: #fff;
    width: 80px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 30%);
}

/* TUR TAKVİMİ */

.invert {
    filter: invert(1);
}

/* DETAY SAYFASI - TUR/OTEL */


.pswp img {
    object-fit: contain;
}

.pswp__img--placeholder {
    display: none !important;
}

.detay-top-dec {
    margin-top: 1.5rem;
}

.detay-title-area {
    min-height: 200px;
}

.detay-info-area p {
    margin-bottom: 0;
}

.input-with-icon {
    position: relative;
}

.input-with-icon select, .input-with-icon input {
    padding-left: 28px;
}

.input-with-icon::after {
    font: var(--fa-font-solid);
    content: attr(data-icon);
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--theme-secondary-color);
}

.detay-tour-price-outer {
    padding: 10px;
    border: 1px solid #d5d5d5;
    border-radius: var(--bs-border-radius);
}

.detay-navs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 55px;
    background-color: #141148;
    z-index: 10;
    border-radius: var(--bs-border-radius);
}

.detay-navs a {
    text-decoration: none;
    flex: 1 1 auto;
    text-align: center;
    /* border: 1px solid var(--bs-border-color); */
    /* border-right: 0; */
    padding: 10px;
    color: #fff;
    font-weight: 600;
    background-image: var(--bs-gradient);
}

.detay-navs a:first-child {
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);

}

.detay-navs a:last-child {
    border-top-right-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);

}

.detay-navs a.active {
    background-color: var(--theme-main-color);
}


#tur-program-accordion .accordion-button {
    font-weight: 600;
}

#tur-program-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #333;
    background-image: var(--bs-gradient);
}

#tur-program-accordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

#tur-program-accordion .accordion-button u {
    white-space: nowrap;
    padding-right: 3px;
    margin-right: 3px;
    border-right: 1px solid;
}

#tur-program-accordion {
    padding-left: 50px;
    position: relative;
}

#tur-program-accordion:before {
    content: "";
    width: 1px;
    height: calc(100% - 40px);
    background: #550527;
    position: absolute;
    top: 20px;
    left: 25px;
    bottom: 20px;
}

#tur-program-accordion .accordion-button:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #550527;
    position: absolute;
    top: 50%;
    left: -37px;
    transform: translateY(-50%);
}

#tur-program-accordion .accordion-item {
    border-left: 5px solid var(--theme-main-color);
    margin-bottom: 15px;
}

#tur-program-accordion .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#tur-program-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#tur-program-accordion .accordion-item:last-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.genel-sartlar-area h1, .genel-sartlar-area h2, .genel-sartlar-area h3, .genel-sartlar-area h4, .genel-sartlar-area h5, .genel-sartlar-area h6, .genel-sartlar-area p {
    margin: 0;
    padding: 0;
}

.fotograflar-galeri {
    display: flex;
    flex-wrap: wrap;
}

.fotograflar-galeri a {
    flex: 0 1 20%;
    padding: 10px;
    aspect-ratio: 4/3;
}

.fotograflar-galeri img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow);
}

.otel-ozellik-list li {
    flex: 0 0 33.3%;
    margin: 3px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.cocuk-sec-area {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    padding: 10px;
    border: 1px solid #a4a4a4;
    box-shadow: var(--bs-box-shadow);
    z-index: 25;
    width: 100%;
    font-weight: 600;
}

/* DETAY SAYFASI - TUR/OTEL */

.footer-resimler>img {
    height: 35px;
}

.search-with-dropdown .odalar {
    display: none;
    box-shadow: var(--bs-box-shadow-sm);
    background: #ffffff;
    padding: 5px;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 100%;
    z-index: 15;
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-border-color);
    min-width: 230px;
}

.search-with-dropdown .odalar .bas {
    float: left;
    padding-right: 0;
}

.search-with-dropdown .odalar .bas h5 {
    font-size: 0.85rem;
    padding: 4px 0;
}

.search-with-dropdown .odalar .sayiekle {
    text-align: right;
    float: left;
}

.search-with-dropdown .odalar .sayiekle button {
    border-radius: var(--bs-border-radius);
    line-height: 1;
    cursor: pointer;
    color: var(--theme-secondary-color);
    font-size: 1rem;
    border: 0;
    outline: none;
    width: 25px;
    height: 25px;
    background-color: var(--theme-main-color);
    background-image: var(--bs-gradient);
    font-weight: 900;
    padding: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.search-with-dropdown .odalar .sayiekle button:active {
    transform: translateY(2px);
}

.search-with-dropdown .odalar .sayiekle input {
    border: none;
    padding: 0;
    text-align: center;
}

.search-with-dropdown .odalar .cocuks {
    padding: 0;
}

.search-with-dropdown .odalar .cocukdivi {
    width: 100%;
    display: none;
    padding: 5px 0;
}

.search-with-dropdown .odalar .cocuks.c1 .cocukdivi:nth-child(1) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c2 .cocukdivi:nth-child(1) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c2 .cocukdivi:nth-child(2) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c3 .cocukdivi:nth-child(1) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c3 .cocukdivi:nth-child(2) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c3 .cocukdivi:nth-child(3) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c4 .cocukdivi:nth-child(1) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c4 .cocukdivi:nth-child(2) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c4 .cocukdivi:nth-child(3) {
    display: block;
}

.search-with-dropdown .odalar .cocuks.c4 .cocukdivi:nth-child(4) {
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.harita iframe {
    width: 100% !important;
}

.oda-list-area .odas {
    border: 1px solid var(--bs-border-color);
    padding: 10px;
    box-shadow: var(--bs-box-shadow-sm);
    border-radius: var(--bs-border-radius);
    background-color: #e6f3fe;
    margin-top: .5rem;
}

.oda-list-area .odas .konsmini {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.oda-list-area .odas .konsmini span {
    flex: 0 0 50%;
}

.filtre-button {
    border: 0;
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    font-size: 1.1rem;
    width: 100%;
    height: 100%;
}

.tur-kategori-grid {
    display: grid;
    gap: 1.5rem 1.5rem;
    grid-auto-flow: row;
    grid-template-areas: "a a b c"
        "d e f f";
    height: 510px;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: 250px 250px;
}

.tur-kategori-grid .grid-a {
    grid-area: a;
}

.tur-kategori-grid .grid-b {
    grid-area: b;
}

.tur-kategori-grid .grid-c {
    grid-area: c;
}

.tur-kategori-grid .grid-d {
    grid-area: d;
}

.tur-kategori-grid .grid-e {
    grid-area: e;
}

.tur-kategori-grid .grid-f {
    grid-area: f;
}

.footer-kurumsal .nav-link:hover {
    text-decoration: underline;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-outer {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin-bottom: 1rem;
}



/* .detay-slider-vertical {
    height: 509px;
}
 */
#right-gallery {
    display: grid;
    position: relative;
    grid-template-columns: auto auto auto;
    gap: 0.5rem;
}


#right-gallery .detay-right-gallery-image {
    margin: 0px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 5px 7px -3px rgb(0 0 0 / 40%);
}

#right-gallery .detay-right-gallery-image:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / span 2;
}

#right-gallery .detay-right-gallery-image img {
    height: 130px;
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

#right-gallery .detay-right-gallery-image:nth-child(1) img {
    height: 268px;
}

.tur-detay-slider-gallery {
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}


.gallery-tumunu-goster {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 14px;
    z-index: 1;
}

.e-bulten-area {
    background-color: #da1242;
}

.duyurularOuter {
    background-color: #da1242;
    background-image: url('/assets/img/duyuru-bg.png');
    border-radius: var(--bs-border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.duyurularSwiper {
    height: 115px;
}

.duyurularSwiper .swiper-slide p {
    margin-bottom: 0;
    color: #fff;
}

.duyurularSwiper .swiper-slide {
    height: 115px !important;
    color: #282658 !important;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-eight {
    font-size: 21px;
    text-align: center;
    line-height: 1.5em;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    position: relative;
    margin-bottom: 20px !important;
}

.title-eight:before {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    max-width: 410px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    content: "";
    background-color: var(--theme-main-color);
    z-index: 4;
    box-shadow: 0 0 2px 0px rgb(0 0 0 / 25%);
}

.title-eight:after {
    position: absolute;
    width: 89px;
    height: 33px;
    left: 50%;
    bottom: -13px;
    content: '';
    z-index: 4;
    display: block;
    background-image: url('/source/Logo/logo.png');
    background-color: #ffffff;
    background-size: cover;
    transform: translateX(-50%);
}


.populer-tatil-secenekleri .pt-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--bs-box-shadow-sm);
    text-align: center;
}

.populer-tatil-secenekleri .pt-card .pt-s-img {
    width: 100%;
    height: 130px;
}

.populer-tatil-secenekleri .pt-card .pt-l-img {
    width: 100%;
    height: 190px;
}

.populer-tatil-secenekleri .pt-card.pt-border {
    border: 1px solid #e9e9e9;
}


.populer-tatil-secenekleri .pt-baslik {
    font-size: 0.9rem;
}

.populer-tatil-secenekleri .pt-link {
    font-size: .8rem;
    text-decoration: none;
}

.fuar-box {
    position: relative;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
    border-radius: var(--bs-border-radius);
    display: flex;
}

.fuar-box:hover {
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
}

.fuar-box .fuar-img-outer {
    position: relative;
    height: 120px;
    width: 200px;
}


.fuar-box .fuar-img-outer img {
    height: 120px;
    width: 200px;
    object-fit: cover;
    box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 15%);
    border-radius: var(--bs-border-radius);
}

.fuar-box .fuar-img-outer::before {
    content: 'İncele';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    border: 1px solid #fff;
    padding: 10px;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}

.fuar-box .fuar-img-outer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}


.fuar-box:hover .fuar-img-outer::after, .fuar-box:hover .fuar-img-outer::before {
    visibility: visible;
    opacity: 1;
}

.fuar-box:hover .fuar-baslik {
    color: var(--theme-main-color);
}



.fuar-box-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.fuar-baslik {}

.fuar-short-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    height: 65px;
}

.fuar-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 15%);
    aspect-ratio: 16/9;
    border-radius: var(--bs-border-radius);
}

#fuar-tab {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

#fuar-tab li {
    flex: 1 1 auto !important;
}

#fuar-tab li button {
    border: 0;
    width: 100%;
    border-radius: var(--bs-border-radius);
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 700;
    background-image: var(--bs-gradient);
    transition: .3s;
}

#fuar-tab li button.active {
    background-color: var(--theme-secondary-color);
    color: #fff;
}


@media (max-width:1400px) {
    /*  .detay-slider-vertical {
        height: 467px;
    } */

    .main-sec-category-area .sec-cat-box img {
        height: 193px;
    }

    #right-gallery .detay-right-gallery-image img {
        height: 123px;
    }

    #right-gallery .detay-right-gallery-image:nth-child(1) img {
        height: 254px;
    }
}

@media (max-width:1200px) {
    /*     .detay-slider-vertical {
        height: 391px;
    } */

    .main-sec-category-area .sec-cat-box img {
        height: 160px;
    }

    #right-gallery .detay-right-gallery-image img {
        height: 102px;
    }

    #right-gallery .detay-right-gallery-image:nth-child(1) img {
        height: 212px;
    }
}

/* .detay-slider-vertical .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    opacity: 0.4;
}

.detay-slider-vertical .swiper-slide-thumb-active {
    opacity: 1;
}

.detay-slider-vertical .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow);
} */

.wp-float {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 10;
    text-decoration: none;
}

.wp-float img {
    width: 50px;
    filter: drop-shadow(1px 3px 1px rgb(0 0 0 / 20%));
}

.wp-float span {
    text-decoration: none;
    display: inline-block;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 2px 10px -6px #000;
    border-radius: 5px;
    width: 185px;
    color: #000;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.wp-float:hover span {
    visibility: visible;
    opacity: 1;
}

.icon-info-area img {
    height: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(2px 2px 1px rgb(0 0 0 / 20%));
}

.lazy:not(.loaded) {
    -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    animation: placeholder-glow 2s linear infinite;
    background-color: #999;
}

.swiper-lazy:not(.swiper-lazy-loaded) {
    -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    animation: placeholder-glow 2s linear infinite;
    background-color: #999;
}

main.bg-light {
    background-color: var(--bs-light-bg-subtle)!important;
}

.detay-slider-gallery {
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}

.blog-box {
    position: relative;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
}

.blog-box:hover {
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 15%) !important;
}

.blog-box .blog-img-outer {
    aspect-ratio: 16/9;
    position: relative;
}


.blog-box .blog-img-outer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 15%);
    border-radius: 15px;
}

.blog-box .blog-img-outer::before {
    content: 'Devamını Oku';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    border: 1px solid #fff;
    padding: 10px;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}

.blog-box .blog-img-outer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
    border-radius: var(--bs-border-radius);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}


.blog-box:hover .blog-img-outer::after, .blog-box:hover .blog-img-outer::before {
    visibility: visible;
    opacity: 1;
}

.blog-box:hover .blog-baslik {
    color: var(--theme-main-color);
}



.blog-box-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.blog-baslik {}

.blog-short-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    height: 65px;
}

.blog-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 15%);
    aspect-ratio: 16/9;
    border-radius: var(--bs-border-radius);
}

/* RESPONSİVE --ali */

@media (max-width:992px) {
    .header-top {
        padding: 10px 0;
    }

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

    .footer-quick-navs {
        flex-wrap: wrap;
        gap: 0;
    }

    .footer-quick-navs li {
        flex: 0 0 50%;
        text-align: center;
        margin: 5px 0px;
    }

    .header-navigation {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #fff;
        z-index: 5;
        transform: translateX(-100%);
        transition: transform .3s, visibility .3s;
        flex-direction: column;
        align-items: flex-start;
        visibility: hidden;
    }

    .header-navigation.active {
        visibility: visible;
        transform: translateX(0);
    }

    .header-navigation .vr {
        display: none;
    }

    .header-bottom {
        background-color: transparent;
    }

    .header-navigation a {
        font-size: 1.5rem !important;
        border-top: 1px solid var(--bs-border-color);
        width: 100%;
        padding: 5px 15px !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        border-radius: 0 !important;
        color: #000 !important;
        text-shadow: none !important;
    }

    .header-navigation>li:last-child>a {
        border-bottom: 1px solid var(--bs-border-color);
    }

    .header-navigation>li {
        padding: 0;
        width: 100%;
    }

    .header-navigation li.has-child>a::after {
        content: none;
    }

    .header-navigation>li:hover>a {
        text-decoration: none;
        color: #4647a0 !important;
    }

    .header-navigation li.has-child .sub-menu {
        width: 100%;
        background-color: #fff;
        box-shadow: none;
        border: 1px solid var(--bs-border-color);
        position: static;
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: .5s;
    }

    .header-navigation li.has-child:hover .sub-menu {

        max-height: 317px;
    }

    .header-navigation li.has-child:hover a i {
        transform: rotate(90deg);
    }


    .header-navigation .sub-menu .sub-menu-title a {
        padding: 5px 20px;
        color: #585858;
        font-weight: 600;
    }

    .header-navigation .sub-menu .sub-menu-items a {
        font-size: 1rem;
        padding: 5px 20px;
    }

    .header-navigation .sub-menu .sub-menu-items {
        display: none;
    }

    .header-navigation .show-mobile-subs .sub-menu-items {
        display: block;
    }

    .header-navigation li.has-child .sub-menu img {
        display: none;
    }

    .mobile-menu-close-outer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 5px 15px;
        background-color: #fff;
    }

    .mobile-menu-close-outer button {
        background-color: transparent;
        border: 0;
        font-size: 1.5rem;
        padding: 0;
    }

    .mobile-menu-close-outer img {
        max-height: 40px;
    }

    .mobile-menu-open {
        border: 0;
        background-color: transparent;
    }

    .mobile-menu-open i {
        font-size: 1.5rem;
    }

    .main-sec-category-area .sec-cat-box a {
        font-size: .8rem;
    }

    .main-category-area .card .category-link {
        font-size: .8rem;
    }

    .tour-categories-links ul li a {
        font-size: .8rem;
    }

    .category-hero-img {
        min-height: 55px;
    }

    .tours-reorder-area .row {
        overflow-x: scroll;
    }

    .tour-list_tour-box .price-area {
        border-left: 0;
    }

    #tur-takvim-accordion .accordion-body {
        padding: 0 5px;
    }



    .detay-navs {
        white-space: nowrap;
        overflow-x: scroll;
        top: 70px;
    }

    .detay-navs a {
        font-size: .8rem;
    }

    #tur-program-accordion .accordion-button {
        font-size: .8rem;
        padding: 10px;
    }

    #tur-program-accordion .accordion-body {
        padding: 10px;
    }



    #tur-program-accordion .accordion-body p {
        margin-bottom: 0;
    }

    .detay-top-dec {}

    .fotograflar-galeri a {
        flex: 0 1 33.3%;
        padding: 5px;
    }

    #fiyatlar-tab .table {
        white-space: nowrap;
    }

    .otel-ozellik-list li {
        flex: 0 0 50%;
    }


    .filter-area {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #fff;
        z-index: 99999;
        transform: translateX(-100%);
        transition: transform .3s, visibility .3s;
        flex-direction: column;
        align-items: flex-start;
        visibility: hidden;
        height: 100%;
    }

    .filter-area form {
        overflow-y: scroll;
        max-height: calc(100% - 47px);
    }

    .filter-list ul {
        overflow: visible;
        max-height: unset;
    }

    .filter-area.active {
        visibility: visible;
        transform: translateX(0);
    }

    .filter-area-close-outer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 5px 15px;
        border-bottom: 1px solid var(--bs-border-color);
    }

    .filter-area-close-outer button {
        background-color: transparent;
        border: 0;
        font-size: 1.5rem;
        padding: 0;
    }

    .search-mobile {
        min-height: 80px !important;
    }

    .search-mobile .search-area {
        visibility: hidden;
        max-height: 0px;
        transition: all 1s ease 0s, padding 0s ease .6s, visibility .1s ease .4s;
        overflow: hidden;
        padding: 0;
        opacity: 0;
    }

    .search-mobile .mobile-search-open-close-button {
        display: inline-block;
    }

    .search-mobile.active .search-area {
        visibility: visible;
        max-height: 400px;
        overflow: visible;
        padding: var(--theme-search-area-padding);
        transition: all 1s ease 0s, padding .4s ease 0s, visibility 1s ease .2s;
        opacity: 1;
    }

    .tur-kategori-grid {
        gap: 5px 5px;
        grid-template-areas: "a b c"
            "d e f";
        height: 280px;
        grid-template-columns: auto auto auto;
        grid-template-rows: 140px 140px;
    }

    .main-category-area .card .category-link {
        padding-left: 5px;
        padding-bottom: 5px;
    }

    .footer-nav .footer-cat {
        flex: 0 0 100%;
    }

    /* .detay-slider-vertical {
        height: 90px;
    } */

    .main-slider .swiper-button-prev, .main-slider .swiper-button-next {
        width: 27px;
        height: 27px;
    }

    .odemeTablo thead {
        display: none;
    }

    .odemeTablo tbody {
        display: block;
        padding: 5px;
    }

    .odemeTablo tbody tr {
        display: block;
        margin-bottom: 10px;
        border-radius: 5px;
        background: #d4e9ee;
    }

    .odemeTablo tbody tr td {
        display: block;
        width: 100%;
        text-align: right !important;
        font-size: 0.85rem !important;
        padding: 10px;
        border: unset;
        border-bottom: 1px solid #cacaca;
    }

    .odemeTablo tbody tr td::before {
        content: attr(data-baslik);
        font-weight: bold;
        float: left;
        max-width: 50%;
        text-align: left;
    }

    .odemeTablo tbody tr td::after {
        display: block;
        clear: both;
        content: "";
    }

    .odemeTablo tbody tr td p {
        margin: 0;
    }

    .odemeTablo tbody tr td:last-child {
        border-bottom: unset;
    }

    .duyurularSwiper {
        height: 120px !important;
    }

    .duyurularSwiper .swiper-slide {
        height: 120px !important;
    }

    #right-gallery .detay-right-gallery-image img {
        height: 70px;
    }

    #right-gallery .detay-right-gallery-image:nth-child(1) img {
        height: 70px;
    }

    #right-gallery .detay-right-gallery-image:nth-child(1) {
        grid-row: unset;
        grid-column: unset;
    }

    /*   .search-area-bg {
        padding: 25px 0;
    } */

    .search-area>.nav {
        gap: .2rem;
    }

    .search-area .nav-item {
        flex: 0 0 calc(50% - .2rem);
    }

    .search-area .nav-item .btn-pill span {
        font-size: 17px;
        text-wrap: nowrap;
    }

    .search-area .nav-item .btn-pill img {
        width: 35px;
    }

    .search-area .nav-item .btn-pill {
        width: 100%;
        padding: 5px 2px;
        margin-right: 0;
        gap: 0.3rem;
        justify-content: center;
    }


    .detay-slider-gallery {
        aspect-ratio: 4/3;
    }

    .detay-slider-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .detay-slider-gallery a {
        display: block;
        aspect-ratio: 4/3;
    }

    .detay-slider-gallery .swiper-button-prev, .detay-slider-gallery .swiper-button-next {
        font-size: 1rem;
        background-color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 25px;
        line-height: 1;
        overflow: hidden;
        border: 1px solid var(--bs-border-color);
        color: var(--theme-secondary-color);
    }



    .tur-detay-slider-gallery {
        aspect-ratio: 4/3;
    }

    .tur-detay-slider-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .tur-detay-slider-gallery a {
        display: block;
        aspect-ratio: 4/3;
    }

    .tur-detay-slider-gallery .swiper-button-prev, .tur-detay-slider-gallery .swiper-button-next {
        font-size: 1rem;
        background-color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 25px;
        line-height: 1;
        overflow: hidden;
        border: 1px solid var(--bs-border-color);
        color: var(--theme-secondary-color);
    }

    .duyurularOuter img {
        height: 60px;
    }

    .main-slider {
        height: auto;
    }

    .main-slider .swiper-slide img {
        object-fit: fill;
    }

    .main-search-area {
        /*   margin-top: 0; */
    }

    .populer-tatil-secenekleri .pt-card .pt-s-img {
        height: auto;
    }

    .populer-tatil-secenekleri .pt-card .pt-l-img {
        height: auto;
    }

    .fuar-box {
        flex-direction: column;
    }

    .fuar-box .fuar-img-outer {
        height: 100%;
        width: 100%;
    }

    .fuar-box .fuar-img-outer img {
        height: 100%;
        width: 100%;
    }

    #tur-program-accordion {
        padding-left: 0;
    }

    #tur-program-accordion:before {
        content: none;
    }

    #tur-program-accordion .accordion-button:before {
        content: none;
    }

    #tur-program-accordion .accordion-item {
        border-left: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
        margin-bottom: 15px;
    }

    .popup-btn {
        position: fixed;
        bottom: 12px;
        z-index: 99999;
        width: 200px !important;
        left: 50%;
        transform: translateX(-50%);
    }

    .rezervasyon-popup {
        height: 0;
        overflow: hidden;
    }

    .rezervasyon-popup.open {
        height: auto;
        position: unset !important;
        overflow: auto;
    }

    .rezervasyon-popup.open .rezervasyon-popup-overlay {
        position: fixed;
        background-color: rgb(0 0 0 / 60%);
        z-index: 999998;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .rezervasyon-popup .rezervasyon-box {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(50%);
        z-index: 999999;
        width: 95%;
        margin: 0 auto;
        
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .rezervasyon-popup.open .rezervasyon-box {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
        visibility: visible;
    }
}


@media (min-width:992px) {

    body *::-webkit-scrollbar {
        width: 5px
    }

    body *::-webkit-scrollbar-track {
        background: #eee;
        border-radius: var(--bs-border-radius);
    }

    body *::-webkit-scrollbar-thumb {
        background: #dddddd;
        border-radius: var(--bs-border-radius);
    }

    body *::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }


    .detay-slider-gallery .swiper-wrapper {
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        grid-template-rows: 200px 200px;
        /* --ali height toplam 400px */
        gap: 5px 5px;
        grid-template-areas:
            "a aa b cc c"
            "a bb b dd c";
    }

    .detay-slider-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--bs-border-radius);
    }

    .detay-slider-gallery a {
        border: 1px solid transparent;
        display: block;
    }

    .detay-slider-gallery a:nth-child(1) {
        grid-area: a;
    }

    .detay-slider-gallery a:nth-child(2) {
        grid-area: b;
    }

    .detay-slider-gallery a:nth-child(3) {
        grid-area: c;
    }

    .detay-slider-gallery a:nth-child(4) {
        grid-area: aa;
    }

    .detay-slider-gallery a:nth-child(5) {
        grid-area: bb;
    }

    .detay-slider-gallery a:nth-child(6) {
        grid-area: cc;
    }

    .detay-slider-gallery a:nth-child(7) {
        grid-area: dd;
    }


    .tur-detay-slider-gallery .swiper-wrapper {
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        grid-template-rows: 200px 200px;
        /* --ali height toplam 400px */
        gap: 5px 5px;
        grid-template-areas:
            "a aa b cc c"
            "a bb b dd c";
    }

    .tur-detay-slider-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--bs-border-radius);
    }

    .tur-detay-slider-gallery a {
        border: 1px solid transparent;
        display: block;
    }

    .tur-detay-slider-gallery a:nth-child(1) {
        grid-area: a;
    }

    .tur-detay-slider-gallery a:nth-child(2) {
        grid-area: b;
    }

    .tur-detay-slider-gallery a:nth-child(3) {
        grid-area: c;
    }

    .tur-detay-slider-gallery a:nth-child(4) {
        grid-area: aa;
    }

    .tur-detay-slider-gallery a:nth-child(5) {
        grid-area: bb;
    }

    .tur-detay-slider-gallery a:nth-child(6) {
        grid-area: cc;
    }

    .tur-detay-slider-gallery a:nth-child(7) {
        grid-area: dd;
    }


}



/* RESPONSİVE --ali */