/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");
* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

:root {
    --primary: rgb(236, 26, 51);
    --wp-color: #25d366;
}

body {
    background-color: #fff4f4;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    counter-reset: section 1;
}

.topheader {
    position: relative;
    background: #333;;
    height: 33px;
    font-size: 13px;
    color: #fff;
    z-index: 11;
    border-bottom: 1px solid #eee;
}

.topheader .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.topheader .nav .nav-item .nav-link {
    padding: 0 10px;
    line-height: 33px;
    color: #fff;
}

.topheader .nav .nav-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}
.topheader .social .nav-item {
    margin-left: 20px;
}
.topheader .social .nav-item .nav-link {
    padding: 5px 8px;
    border-radius: 50%;
    line-height: initial;
}
.topheader .social .nav-item .nav-link:hover {
    background: #1877F2;
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    height: 95px;
    color: #111;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
    z-index: 10;
}

header .container {
    position: relative;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container #hamburger, #hamburger2 {
    width: 50px;
    height: 45px;
    border-radius: 45px;
    font-size: 22px;
    color: #333;
    display: none;
    place-items: center;
}

header .container .logo {
    width: auto;
    background: #fff;
    display: inline-grid;
    place-items: center;
    padding-inline: 20px;
    border-radius: 0 0 25px 25px;
}

header .container .logo img {
    max-height: 40px;
    filter: drop-shadow(0 0 10px white);
}

header .container nav ul li:hover {
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5)
}


header .container nav ul li .nav-link {
    font-size: 16px;
    font-weight: 300;
    color: #111;
    padding: 10px;
    display: inline-block;
    transition: 0s ease-in-out;
}

header .container nav ul li .nav-link i {
    margin-left: 8px;
}

header .container nav ul li .dropmenu {
    position: absolute;
    top: 70px;
    background: #fff;
    width: auto;
    min-width: 250px;
    height: auto;
    border-radius: 4px;
    padding: 0;
    list-style: none;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.075);
    display: none;
}

header .container nav ul li .dropmenu li {
    position: relative;
    height: auto;
    padding: 10px 0;
    margin-inline: 20px;
    border-radius: 0;
    box-shadow: 0 0 0 0 transparent;
    border-bottom: 1px solid #eee;
}

header .container nav ul li .dropmenu li:last-child {
    border: 0;
}

header .container nav ul li .dropmenu li .nav-link {
    color: #333;
    font-size: 14px;
    padding: 0;
    text-decoration: none; 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

header .container nav ul li .dropmenu li:hover .nav-link{
    text-decoration: underline;
}

header .container nav ul li .dropmenu li .nav-link img {
    width: 25px;
    margin-right: 10px;
}

header .container nav ul li .dropmenu li .nav-link i {
    margin-left: auto;
}

header .container nav ul li .underdropmenu {
    position: absolute;
    inset: 0 auto auto 100%;
    background: #fff;
    width: auto;
    min-width: 250px;
    height: auto;
    padding: 20px;
    list-style: none;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
    display: none;
}

header .container nav ul li .underdropmenu li {
    padding: 0;
}

header .container nav ul li .underdropmenu li .nav-link {
    padding: 15px;
}

header .container nav ul li:hover>.dropmenu {
    display: block;
}

header .container nav ul li .dropmenu li:hover>.underdropmenu {
    display: block;
}

header .container .contact {
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
    background: #4285f4;
    padding: 6px 15px;
    text-transform: uppercase;
}

header .container .contact span {
    color: #fff;
    z-index: 10;
    transform: translateZ(1px);
    display: block;
    transition: 0.2s ease-in-out;
}

header .container .contact i {
    background-color: #fff;
    color: #4285f4;
    width: 19px;
    height: 19px;
    border-radius: 100%;
    text-align: center;
    line-height: 19px;
    z-index: 5;
}

header .container .contact:hover {
    background: #3b77db;
    color: #fff !important;
}

header .container .contact:hover span {
    color: #fff;
}

/* header.active {
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}

header.active .container nav ul li .nav-link {
    color: #333;
} */

#scrollheader {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}

#scrollheader .container nav ul li .nav-link {
    color: #333;
}

.nav-drill i {
    margin-right: 5px;
}

.nav-is-toggled .nav-drill {
    transform: translateX(0);
}

.nav-is-toggled::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 11;
    opacity: 1;
    visibility: visible;
}

.nav-drill {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    background-color: #333;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-105%);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    transition: 0.45s;
    display: none;
    z-index: 12;
}

.nav-drill .nav-items {
    flex: 1 1;
    padding: 0;
    list-style-type: none;
}

.nav-drill .nav-item:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.nav-drill .nav-link {
    display: block;
    padding: 0.75em 1em;
    background-color: #333;
    color: #fff;
    font-size: 15px;
    line-height: 2.5em;
    font-weight: 400;
    cursor: pointer;
}

.nav-drill .nav-link .fa-solid {
    margin-right: 15px;
}

.nav-drill .nav-expand-content {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    transform: translateX(100%);
    background-color: #333;
    transition: 0.3s;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}

.nav-drill .nav-expand-content .nav-expand-content {
    top: 0px;
}

.nav-drill .nav-expand-content .nav-item:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.nav-drill .nav-expand-content .nav-back-link {
    display: flex;
    align-items: center;
    background-color: var(--primary) !important;
    color: #fff;
}

.nav-drill .nav-expand-content .nav-back-link::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f053";
    margin-right: 10px;
}

.nav-drill .nav-expand-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-drill .nav-expand-link::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    margin-left: auto;
}

.nav-drill .nav-expand.active>.nav-expand-content {
    transform: translateX(0);
    visibility: visible;
}

.nav-is-toggled .nav-drill header {
    transform: translateX(0%);
}

#banner {
    position: relative;
    background: rgb(250,250,250) center center/cover;
    width: 100%;
    height: 530px;
}

#banner .bannerslide,
#banner .owl-stage-outer,
#banner .owl-stage,
#banner .owl-item{
    height: 100%;
}
#banner .owl-dots {
    position: absolute;
    inset: auto 0 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#banner .banner-item {
    width: 100%;
    height: 530px;
    object-fit: cover;
    object-position: center;
}

#banner .lokasyon {
    position: absolute;
    inset: 120px 130px auto auto;
    color: #fff;
    gap: 15px;
    z-index: 9;
}

#banner .lokasyon .f-small {
    font-size: 15px;
    font-weight: 400;
}

#banner .lokasyon .f-big {
    font-size: 18px;
    font-weight: 600;
}

#banner .lokasyon i {
    font-size: 35px;
}

#banner h1 {
    font-size: 45px;
    text-align: start;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

#banner h1 span {
    font-size: 50px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-weight: 900;
}

#banner p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #eee;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
}

.filter-area {
    position: absolute;
    inset: auto 0 50px 0;
    background: #fff;
    max-width: 950px;
    width: 100%;
    z-index: 6;
    display: flex;
    border-radius: 15px;
    margin-inline: auto;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,.075);
}

.filter-area .filter-wrap {
    background: #fff;
    align-items: center;
    flex-grow: 1;
    gap: 1px;
    border-radius: 10px;
}

.filter-area .filter-wrap>* {
    flex-grow: 1;
}

.filter-area .dropdown {
    background: #fff;
    width: 100%;
}
.filter-area .dropdown:first-child {
    border-radius: 15px;
}

.filter-area .dropdown button {
    background: transparent;
    width: 100%;
    height: 70px;
    color: #444;
    padding: 10px 25px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1;
}

.filter-area .dropdown button .f-small {
    font-size: 12px;
    font-weight: 400;
}

.filter-area .dropdown button .f-big {
    font-size: 14px;
    font-weight: 600;
}

.filter-area .dropdown button i {
    font-size: 35px;
    color: rgba(0, 0, 0, 0.1);
}

.filter-area .dropdown button.btn-bolge {
    font-size: 15px;
    font-weight: 400;
}

.filter-area .dropdown button.btn-bolge-tur {
    position: relative;
    gap: 20px;
}

.filter-area .dropdown .btn-filtre {
    background: transparent;
    width: 100%;
    height: 70px;
    color: #111;
    padding: 10px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1;
}

.filter-area .dropdown .btn-filtre .content-bolge {
    flex: 1 1;
}

.filter-area .dropdown .btn-filtre .f-small {
    font-size: 12px;
    font-weight: 400;
}

.filter-area .dropdown .btn-filtre .f-big {
    background: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    text-align: start;
}

.filter-area .dropdown .btn-filtre i {
    font-size: 35px;
    color: rgba(0, 0, 0, 0.1);
}

.filter-area .dropdown .btn-filtre.btn-bolge {
    font-size: 15px;
    font-weight: 400;
}

.filter-area .dropdown .btn-filtre.btn-bolge-tur {
    position: relative;
    gap: 20px;
}

.filter-area .dropdown .dropdown-menu {
    width: 100%;
    border-radius: 0;
    border: 0;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.25);
}

.filter-area .dropdown .dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 15px 25px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-area .dropdown .dropdown-menu .dropdown-item i {
    font-size: 14px;
    margin-right: 15px;
}

.filter-area .rezerve {
    background: #4285f4;
    width: 50px;
    height: 50px;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    margin: 10px;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100%;
}

.filter-area .rezerve:hover {
    background: #3b77db;
}

#banner .next {
    position: absolute;
    inset: auto 0 50px 0;
    width: 50px;
    height: 50px;
    display: grid;
    color: rgba(0, 0, 0, 0.5);
    font-size: 40px;
    text-decoration: none;
    z-index: 1;
    margin: 0 auto;
    place-items: center;
    animation: updown 2s infinite alternate;
}

@keyframes updown {
    0% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(25px);
    }
}

#hakkimizdabanner {
    position: relative;
    background: var(--primary) url("../img/hakkimizda.webp") center center/cover;
    background-blend-mode: multiply;
    width: 100%;
    height: 300px;
}

#hakkimizdabanner .container {
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#iletisimbanner {
    position: relative;
    background: url("../img/iletisimbanner.jpg") center center/cover;
    width: 100%;
    height: 210px;
    display: grid;
    place-items: center;
}
#iletisimbanner .h1 {
    font-size: clamp(20px, 6vw, 46px);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px #000;
}

#turdetaybanner {
    position: relative;
    background-blend-mode: multiply;
    width: 100%;
    height: 200px;
}

#turdetaybanner > *{
    position: relative;
    z-index: 2;
}


#turdetaybanner .owl-stage-outer,
#turdetaybanner .owl-stage,
#turdetaybanner .owl-item,
#turdetaybanner .bannerturitem {
    height: 100%;
}

#turdetaybanner .bannerturitem {
    background-position: center;
    background-size: cover;
    position: relative;
    border: 0;
}
#turdetaybanner  .bannerturitem::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../img/overlay.webp") center center/cover;
    width: 100%;
    height: 100%;
    z-index: 3;
}
#turdetaybanner .bannerturitem .head-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
#turdetaybanner .bannerturitem > * {
    position: relative;
    z-index: 4;
}
#turdetaybanner .bannerturitem .head-tur {
    flex: 1 1 500px
}

#turdetaybanner .bannerturitem .head-tur h1 {
    font-size: clamp(20px, 6vw, 34px);
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    max-width: 600px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#turdetaybanner .bannerturitem .breadcrumb * {
    font-size: 13px;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}
#turdetaybanner .bannerturitem .head-price{
    max-width: 360px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 28px;
    font-size: clamp(18px, 6vw, 25px);
    color: #fff;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
}
#turdetaybanner .bannerturitem .head-price .price-area {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#turdetaybanner .bannerturitem .head-price .price-item {
    max-width: calc(50% - 5px);
}
#turdetaybanner .bannerturitem .head-price .price-note {
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}


#turdetaybanner .owl-stage-outer img,
#turdetaybanner .owl-stage img,
#turdetaybanner .owl-item img,
#turdetaybanner .bannerturitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#turdetaybanner .container {
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hakkimizda {
    background: #fff;
    margin: 0 auto;
    padding: 50px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

#hakkimizda h1 {
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 30px;
}

#hakkimizda p {
    font-size: 14px;
    line-height: 30px;
}

#hakkimizda .rss {
    padding-block: 30px;
}

#hakkimizda li {
    font-size: 14px;
    line-height: 25px;
}

#hakkimizda .sloganhakkimizda {
    width: 100%;
    margin-block: 20px 30px;
}

#hakkimizda .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hakkimizda .accordion .accordion-item {
    border: 0;
}

#hakkimizda .accordion .accordion-button {
    border-radius: 10px;
    background: rgb(235, 235, 245);
}

#iletisim {
    margin: 0 auto;
    padding: 0 50px 50px;
}

#iletisim h1 {
    font-size: 24px;
    font-weight: 200;
    color: #333;
    margin-bottom: 30px;
    padding-left: 30px;
}

#iletisim h1 span {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}

#iletisim p {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #333;
}

#iletisim .subeler {
    gap: 20px;
    flex-wrap: wrap;
}
#iletisim .fast-name {
    background: #fff;
    width: 100%;
    box-shadow: 0 0 10px -5px;
    padding: 15px;
}
#iletisim .fast-name > * {
    margin: 0;
}
#iletisim .fast-contact {
    background: #fff;
    box-shadow: 0 0 10px -5px;
    padding-inline: 15px;
    margin-top: 20px;
}
#iletisim .fast-form {
    background: #fff;
    width: 100%;
    box-shadow: 0 0 10px -5px;
    padding: 29px 15px 15px;
    margin-top: 20px;
}
#iletisim .fast-form .form-label {
    font-weight: 600;
    text-transform: uppercase;
}
#iletisim iframe {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px -5px;
    aspect-ratio: 1;
}
#iletisim .subecontact {
    flex-wrap: 1;
    border: 1px solid rgb(235, 235, 235);
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
}

#iletisim .subecontact p:not(:first-child) {
    margin: 0;
}

#iletisim .contentcon {
    padding: 0 30px 15px;
}

#iletisim .contactitem {
    --contactcolor: #333;
    width: 100%;
    gap: 10px;
    padding-block: 20px;
}

#iletisim .contactitem .icons {
    background: transparent;
    width: 45px;
    min-width: 45px;
    height: 45px;
    font-size: 25px;
    display: grid;
    place-items: center;
    color: var(--contactcolor);
    flex: 0 1 40px;
}

#iletisim .contactitem p {
    margin: 0;
}

#iletisim .contactitem .f-small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

#iletisim .contactitem .f-big {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

#iletisim .contactitem:last-child {
    border: 0;
}

.tur-wrapper {
    background: #fff4f4;
    margin: 0 auto;
    gap: 10px;
}

.tur-wrapper .tabhead {
    position: sticky;
    top: 100px;
    background: rgb(245, 245, 245);
    width: 100%;
    height: 75px;
    z-index: 5;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.tur-wrapper .tabhead .nav {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tur-wrapper .tabhead .nav::-webkit-scrollbar {
    height: 5px;
}

.tur-wrapper .tabhead .nav::-webkit-scrollbar-thumb {
    background: #999;
}

.tur-wrapper .tabhead .nav .nav-item {
    height: 100%;
    flex: 0 0 auto;
}

.tur-wrapper .tabhead .nav .nav-item.active {
    background: rgb(235, 235, 235);
}

.tur-wrapper .tabhead .nav .nav-item .nav-link {
    height: 100%;
    padding-inline: 20px;
    color: #555;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    place-items: center;
    gap: 6px;
}

.tur-wrapper #turdetay {
    border-radius: 25px;
    margin: 0 auto;
    padding: 50px 50px 50px 0;
    flex: 1 1 500px;
}
.tur-wrapper .tur-galeri {
    max-width: 870px;
    margin-bottom: 30px;
}
.tur-wrapper .tur-galeri img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}
.tur-wrapper .tur-galeri .owl-nav {
    position: absolute;
    top: calc(50% - 40px);
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  .tur-wrapper .tur-galeri .owl-next,
  .tur-wrapper .tur-galeri .owl-prev {
    background: #fff;
    color: #000;
  }
  .tur-wrapper .tur-galeri .owl-next i,
  .tur-wrapper .tur-galeri .owl-prev i {
    background: #fff;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 40px;
    transition: 0.2s ease-in-out;
    display: block;
  }
  .tur-wrapper .tur-galeri .owl-next i:hover,
  .tur-wrapper .tur-galeri .owl-prev i:hover {
    transform: scale(1.2);
  }
  .tur-wrapper .tur-galeri .owl-dots {
    transform: translateY(-50px);
  }
  .tur-wrapper .tur-galeri .owl-dots .owl-dot span {
    background: #aaa;
    width: 7px;
    height: 7px;
    margin: 4px
  }
  .tur-wrapper .tur-galeri .owl-dots .owl-dot.active span {
    background: #fff;
  }

.tur-wrapper .share.-ext {
    background: #fff;
    box-shadow: 0 0 10px -5px;
    padding: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tur-wrapper .share.-ext .btn-outline-plugin {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 0 0 1px #666;
}
.tur-wrapper .share.-ext .btn-outline-plugin:hover {
    background: #666;
    color: #fff;
}
.tur-wrapper .share.-ext span {
    display: flex;
    gap: 10px;
}
.tur-wrapper .share.-ext .btn-social {
    width: 25px;
    height: 25px;
    font-size: 18px;
    color: #fff;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tur-wrapper .share.-ext .btn-social:nth-child(1) {
    background: #29487d;
}
.tur-wrapper .share.-ext .btn-social:nth-child(2) {
    background: #00d472;
}
.tur-wrapper .share.-ext .btn-social:nth-child(3) {
    background: #00a4ed;
}
.tur-wrapper .share.-ext .btn-social:nth-child(4) {
    background: #ef002c;
}
.tur-wrapper .share.-ext .btn-social:nth-child(5) {
    background: #4395c6;
}

.tur-wrapper .hizmetler.-ext {
    background: #fff;
    box-shadow: 0 0 10px -5px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding: 15px 5px;
}


.tur-wrapper #turdetay .btn-hashtag {
    min-width: 50%;
    font-size: 14px;
    border-radius: 50px;
    padding: 7px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 250px;
}
.tur-wrapper #turdetay .btn-hashtag::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-right: 10px;
}

.tur-wrapper .dahil.-ext {
    background: #fff;
    box-shadow: 0 0 10px -5px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding: 25px;
}
.tur-wrapper .-ext b {
    font-size: 18px
}

.tur-wrapper .dahil.-ext li {
    font-size: 15px
}

.tur-wrapper .bilgiler.-ext {
    background: #fff;
    box-shadow: 0 0 10px -5px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding: 25px;
}

.tur-wrapper #turdetay .sectionpart {
    background-color: #fff;
    padding-top: 175px;
    margin-bottom: -175px;
}

.tur-wrapper #turdetay .sectionpart:first-child {
    padding-top: 0;
}

.tur-wrapper #turdetay .sectionpart:first-child h6:first-child {
    margin-top: 0;
}

.tur-wrapper #turdetay .sectionpart:last-child {
    padding-bottom: 175px;
}

.tur-wrapper #turdetay .linehr {
    background: url("../img/line.png") center center repeat-x;
    width: 100%;
    height: 11px;
    margin-block: 50px 30px;
}

.tur-wrapper #turdetay h1 {
    font-weight: 600;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 30px;
}

.tur-wrapper #turdetay h6 {
    font-weight: 600;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 30px;
    padding-block: 10px;
    margin-top: 25px;
}

.tur-wrapper #turdetay p {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
}

.tur-wrapper #turdetay .callnumber {
    background: rgb(245, 245, 255);
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 1;
}

.tur-wrapper #turdetay .explaintur {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.tur-wrapper #turdetay .rss {
    padding-block: 30px;
}

.tur-wrapper #turdetay li {
    font-size: 16px;
    line-height: 35px;
    font-weight: 400;
    color: #333;
}

.tur-wrapper #turdetay .sloganhakkimizda {
    width: 100%;
    margin-block: 20px 30px;
}

.tur-wrapper #turdetay .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tur-wrapper #turdetay .accordion .accordion-item {
    position: relative;
    background-color: #fff;
    width: calc(100% - 80px);
    border: 10px solid #f7f7f7;
    box-shadow: 0 0 12px -2px #999;
    border-radius: 5px;
    margin-left: auto;
}

.tur-wrapper #turdetay .accordion .accordion-item::before {
    position: absolute;
    left: -80px;
    top: -5px;
    font-size: 28px;
    color: #666;
    counter-increment: section - 1;
    content: counter(section)".";
}
.tur-wrapper #turdetay .accordion .accordion-item::after {
    position: absolute;
    left: -80px;
    top: 35px;
    color: #666;
    counter-increment: section;
    content: "Gün";
}

.tur-wrapper #turdetay .accordion .accordion-button {
    position: relative;
    border-radius: 10px;
    background: #fff;
    padding-block: 10px 30px;
    transition: all 200ms ease-in-out;
}
.tur-wrapper #turdetay .accordion .accordion-button::before {
    position: absolute;
    bottom: 10px;
    left: 20px;
    height: auto;
    content: 'Programı Görmek İçin Tıklayınız';
    font-weight: 400;
    font-size: 12px;
    padding-block: 0 0px;
    transition: all 200ms ease-in-out;
}
.tur-wrapper #turdetay .accordion .accordion-button span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    transform: translateY(-10px);
    z-index: 5;
}
.tur-wrapper #turdetay .accordion .left-arrow {
    position: absolute;
    top: 0px;
    left: -30px;
    background: url("../img/bubble2.webp") center center/cover;
    width: 40px;
    height: 40px;
}
.accordion-button:not(.collapsed) {
    color: #333;
    font-weight: 700;
    box-shadow: 0 0 0 0 transparent;
    padding-block: 20px !important;
}

.tur-wrapper #turdetay .accordion .accordion-button:not(.collapsed)::before {
    height: 0;
    overflow: hidden;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0 transparent;
}

.tur-wrapper #turdetay #otel .otellayout {
    display: flex;
    gap: 25px;
}

.tur-wrapper #turdetay #otel .carousel.slide {
    width: 75%;
    flex: 1 1 300px;
}

.tur-wrapper #turdetay #otel .carousel.slide img {
    height: 350px;
}

.tur-wrapper #turdetay #otel .detaykapsa {
    width: 25%;
    flex: 0 1 280px;
}

.tur-wrapper #turdetay #otel .oteldetay {
    margin: 0;
    border: 1px solid #333;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 10px;
}

.tur-wrapper #turdetay #otel .oteldetay img {
    width: auto;
    height: 30px;
    flex: 0 1 auto;
}

.tur-wrapper #turdetay #otel .oteldetay p {
    line-height: 20px;
    margin: 0;
}

.tur-wrapper #turdetay .yorumbox {
    background: rgb(245, 245, 245);
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    display: flex;
}

.tur-wrapper #turdetay .yorumbox .profil {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid #aaa;
}

.tur-wrapper #turdetay .yorumbox .username {
    font-size: 16px;
    font-weight: 500;
}

.tur-wrapper #turdetay .yorumbox .userdetail {
    font-size: 14px;
    font-weight: 300;
    color: #666;
}

.tur-wrapper #turdetay .yorumbox .usercomment {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 30px;
}

.tur-wrapper .turekstra {
    max-width: 400px;
    width: 100%;
    flex: 1 1 300px;
}

.tur-wrapper .turekstra .sorularınız {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px -5px;
    margin-bottom: 80px;
}

.tur-wrapper .turekstra .sorularınız .outa {
    padding: 10px 25px;
    color: #666;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tur-wrapper .turekstra .sorularınız .outa:hover {
    text-decoration: underline !important;
}

.tur-wrapper .turekstra .odeme {
    background-color: #4285f4;
    width: 100%;
    border-radius: 0px;
    padding: 25px;
    margin-block: 50px; 
}

.tur-wrapper .turekstra .odeme h3 {
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    color: rgb(76, 175, 80);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tur-wrapper .turekstra .odeme h3 i {
    font-size: 24px;
    margin-inline: 5px 10px;
}

.tur-wrapper .turekstra .odeme h3 span {
    font-size: 16px;
    color: #000;
    margin-left: 10px;
}

.tur-wrapper .turekstra .odeme h4.child-price {
    text-align: center;
    font-size: 25px;
    line-height: 50px;
    background-color: rgb(235, 255, 235);
    border-radius: 7px;
    border: 1px solid rgb(76, 175, 80);
    color: rgb(76, 175, 80);
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.tur-wrapper .turekstra .odeme h4.child-price i {
    font-size: 20px;
    margin-inline: 5px 10px;
}

.tur-wrapper .turekstra .odeme h4.child-price span {
    font-size: 14px;
    color: #000;
    margin-left: 10px;
}

.tur-wrapper .turekstra .odeme .kapora {
    color: #333;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 400;
    margin-top: 5px;
    text-align: center;
}

.tur-wrapper .turekstra .odeme .dashedayrac {
    opacity: 1;
    background: transparent;
    border-top: 1px dashed #aaa;
    margin: 25px 0;
}

.tur-wrapper .turekstra .odeme .extralabel {
    display: grid;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    gap: 10px;
}

.tur-wrapper .turekstra .odeme .extralabel select {
    background: #fff;
    padding: 15px 20px;
    border-right: 20px solid #fff;
    border-radius: 5px;
}

.tur-wrapper .turekstra .odeme .dropdown .dropdown-toggle{
    background: #fff;
    color: #000;
    padding-block: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tur-wrapper .turekstra .odeme .dropdown .dropdown-menu {
    inset: 0 0 auto 0;
    padding: 0 20px 20px;
}

.tur-wrapper .turekstra .odeme .btn-rezervasyon {
    background: #d30004;
    color: #fff;
    padding-block: 7px;
    margin-block: 7px;
}

.tur-wrapper .turekstra .moreinfo {
    width: 100%;
    border-radius: 25px;
    padding: 25px;
    margin-top: 10px;
}

.tur-wrapper .turekstra .moreinfo .callbtn {
    --primaryblue: #3F51B5;
    --primarygreen: #4CAF50;
    background: #fff;
    margin-block: 25px 0;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--primaryblue);
}

.tur-wrapper .turekstra .moreinfo .callbtn i {
    background: var(--primaryblue);
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 45px;
    color: #fff;
    display: grid;
    place-items: center;
}

.tur-wrapper .turekstra .moreinfo .callbtn p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primaryblue);
    margin-bottom: 0;
}

.tur-wrapper .turekstra .moreinfo .callbtn .f-small {
    font-size: 14px;
    font-weight: 400;
}

.tur-wrapper .turekstra .moreinfo .callbtn .f-big {
    font-size: 18px;
    font-weight: 600;
}

.tur-wrapper .turekstra .moreinfo .callbtn:hover {
    background: var(--primaryblue);
}

.tur-wrapper .turekstra .moreinfo .callbtn:hover i {
    background: #fff;
    color: var(--primaryblue);
}

.tur-wrapper .turekstra .moreinfo .callbtn:hover p {
    color: #fff;
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp {
    border-color: var(--primarygreen);
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp i {
    background: var(--primarygreen);
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp p {
    color: var(--primarygreen);
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp:hover {
    background: var(--primarygreen);
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp:hover i {
    background: #fff;
    color: var(--primarygreen);
}

.tur-wrapper .turekstra .moreinfo .callbtn.whatsapp:hover p {
    color: #fff;
}

#kategori {
    padding: 50px 25px;
}

#kategori .container {
    margin: 0 auto;
}

#kategori .container>* {
    padding: 10px;
}

#kategori .tourkategori {
    position: relative;
    background: #eee;
    width: 100%;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

#kategori .tourkategori img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

#kategori .tourkategori:hover img {
    transform: scale(1.2);
}

#kategori .tourkategori::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.35));
    width: 100%;
    height: 75%;
}

#kategori .tourkategori .tourname {
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    z-index: 1;
    padding: 15px;
    border-radius: 0 15px 0 0;
}

#kategori .tourkategori .tourdetail {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 1;
}

#kategori .tourkategori .tourdetail .detbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#kategori .tourkategori .tourdetail .detbox:last-child {
    margin-left: 20px;
}

#sloganabout {
    background: #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    overflow: hidden;
}

#sloganabout .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 10px;
}

#sloganabout .container .sloganbox {
    width: 100%;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 300px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

#sloganabout .container .sloganbox img {
    width: 50px;
}

#sloganabout .container .sloganbox h6 {
    font-size: 16px;
    margin: 0;
}

#sloganabout .container .sloganbox p {
    color: #555;
}

#sloganabout .container .sloganbox:first-child {
    box-shadow: 0 0 0 0;
}

#sloganabout .container .sloganbox:first-child h6 {
    font-size: 22px;
    line-height: 35px;
}

#about {
    position: relative;
    background: url("../img/slogan.jpg") center center/cover;
    width: calc(100% - 40px);
    height: auto;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 50px;
    margin-top: 100px;
    border-radius: 25px;
    overflow: hidden;
}

#about .col-md-6 {
    z-index: 9;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30%;
    width: 20%;
    height: 100%;
    background: linear-gradient(-90deg, #fff, transparent);
}

#about::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 50%;
    height: 100%;
    background: #fff;
}

#about .pics {
    width: 100%;
    height: 250px;
}

#about h2 {
    font-size: 30px;
    font-weight: 300;
    text-align: end;
    color: rgb(184, 134, 11);
    margin-bottom: 25px;
}

#about p {
    text-align: end;
    line-height: 30px;
}

.soontour {
    position: relative;
    margin-top: 50px;
}

.soontour h5 {
    font-weight: 600;
    font-size: clamp(18px, 8vw,25px);
    color: #333;
    padding-inline: 12px;
}

.soontour#yurtici {
    margin-top: 0;
    padding-block: 10px;
}

.soontour .container {
    margin: 0px auto;
}

.soontour .explain {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    padding-inline: 12px;
}

.soontour .makelayout {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.soontour .clearcarousel .owl-dots {
    display: block;
}

.soontour .clearcarousel .owl-dots {
    margin-top: 25px;
}

.soontour .clearcarousel .owl-dots .owl-dot span {
    margin-top: 20px;
    width: 50px;
    height: 3px;
}

.soontour .tourbox {
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 0 0 9px #0a0a0a1f;
}
.soontour .tourbox .slogan {
    background: #333;
    position: absolute;
    inset: 20px 20px auto auto;
    padding: 6px 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 100px;
}

.soontour .tourbox img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.2s ease-in-out;
    border: 0px solid var(--primary);
    overflow: hidden;
}

.soontour .tourbox .contenttour {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

.soontour .tourbox .tourname {
    font-size: 14px;
    font-weight: 600;
    color: #4d93ca;
    word-break: break-all;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 1;
}

.soontour .tourbox .tourdetail {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    z-index: 1;
}

.soontour .tourbox .tourdetail .detbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.soontour .tourbox .tour-go {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}
.soontour .tourbox .tour-go .price {
    font-size: clamp(18px, 8vw, 25px);
    font-weight: 700;
    color: #333;
}
.soontour .tourbox .tour-go .btn-go {
    background: #fff;
    border: 0;
    box-shadow: 0 0 0 1px #555;
    color: #111;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
    margin-left: auto;
}
.soontour .tourbox:hover .price {
    color: #4d93ca;
}
.soontour .tourbox:hover .btn-go {
    background: #4d93ca;
    color: #fff;
    box-shadow: 0 0 0 1px #4d93ca;
}
.soontour .tourbox .tourdetail .detbox:last-child {
    margin-left: 20px;
}

.soontour .tourbox.whitecontent {
    background: #fff;
    height: 350px;
}

.soontour .tourbox.whitecontent::after {
    display: none;
}

.soontour .tourbox.whitecontent img {
    position: static;
    border-radius: 20px 20px 0 0;
}

.soontour .tourbox.whitecontent .tourname {
    color: #333;
    text-shadow: 0 0 0;
    padding: 0;
    font-weight: 300;
    margin: 0 0 10px;
    -webkit-line-clamp: 2;
    line-height: 25px;
    line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soontour .tourbox.whitecontent .tourdetail {
    color: #555;
    padding: 0;
}

.soontour .tourbox.whitecontent:hover img {
    transform: scale(1);
    box-shadow: 3px 0 0 3px var(--primary);
}

.soontour .tourbox.whitecontent:hover .tourname {
    color: var(--primary);
}

.soontour .infotour {
    background: #eee;
}

.tur-kategorileri{
    margin-block: 150px;
}
.tur-kategorileri .tourbox {
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 0 0 15px -4px #000;
}

.tur-kategorileri .tourbox img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.2s ease-in-out;
    border: 0px solid var(--primary);
    overflow: hidden;
}

.tur-kategorileri .tourbox .contenttour {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

.tur-kategorileri .tourbox .tourname {
    position: absolute;
    inset: auto auto 20px 20px;
    margin-right: 20px;
    background: #fff;
    padding: 8px 23px;
    font-size: 16px;
    color: #111;
    word-break: break-all;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-radius: 4px;
    z-index: 1;
}

#turlarcover {
    position: relative;
    background: url("../img/category.jpg") center/cover;
    width: 100%;
    height: 290px;
}

#turlarwrapper {
    background: #f7f7f7;
    padding: 50px 0 150px;
}

#turlarwrapper .container {
    display: flex;
    margin: 0 auto;
    gap: 20px;
}

#turlarwrapper .filter {
    max-width: 350px;
    flex: 1 1 300px;
}

#turlarwrapper .filter .filter-con {
    position: sticky;
    top: 100px;
    background: #fff;
    box-shadow: 0 0 4px -2px #999;
}

#turlarwrapper .filter h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    margin-inline: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

#turlarwrapper .filter h3 i {
    color: var(--primary);
    margin-right: 10px;
}

#turlarwrapper .filter .filterlist {
    padding: 4px 10px 6px;
}

#turlarwrapper .filter label {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#turlarwrapper .filter label select {
    background: rgb(245, 245, 245);
    padding: 14px 15px;
    border-right: 15px solid rgb(245, 245, 245);
    border-radius: 10px;
    color: #555;
}

#turlarwrapper .filter .filtreuygula {
    background: #333;
    width: calc(100% - 40px);
    height: 50px;
    color: #fff;
    margin: 20px;
    border-radius: 10px;
}

#turlarwrapper .filter .filtreuygula:hover {
    background: #222;
}

#turlarwrapper .turlarlist {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-inline: 0px;
}

#turlarwrapper .turlarlist .head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-block: 15px;
}

#turlarwrapper .turlarlist h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

#turlarwrapper .turlarlist h4 i {
    color: var(--primary);
    margin-right: 10px;
}

#turlarwrapper .turlarlist .filtrefiyat {
    background: rgb(245, 245, 245);
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 400;
    border-right: 12px solid rgb(245, 245, 245);
    border-radius: 10px;
}

#turlarwrapper .turlarlist .turbox {
    background: #fff;
    width: 100%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    gap: 5px;
    box-shadow: 0 0 4px -2px #333 !important;
}

#turlarwrapper .turlarlist .turbox:hover {
    background: rgb(235, 235, 235);
}

#turlarwrapper .turlarlist .turbox img {
    height: 100%;
    flex: 1 1 200px;
    object-fit: cover;
}

#turlarwrapper .turlarlist .turbox h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2c3e50;
    margin: 5px 0 0;
}

#turlarwrapper .turlarlist .turbox .bolge i {
    margin-right: 5px;
}

#turlarwrapper .turlarlist .turbox .turinfo {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 10px;
    font-size: 13px;
    border-radius: 5px;
}

#turlarwrapper .turlarlist .turbox .turinfo:hover {
    background: rgba(0, 0, 0, 0.2);
}

#turlarwrapper .turlarlist .turbox .turinfo i {
    margin-right: 8px;
}

#turlarwrapper .turlarlist .turbox .turaciklama {
    margin-top: 5px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

#turlarwrapper .turlarlist .turbox .price {
    min-width: 225px;
    margin: 0;
    border-radius: 5px;
    padding: 14px 0;
    margin-inline: 8px;
    flex: 1 1 200px;
    padding: 20px;
}

#turlarwrapper .turlarlist .turbox .price span {
    font-size: 13px;
    font-weight: 400;
    color: #333;
}

#turlarwrapper .turlarlist .turbox .price .tutars.-ext > *{
    flex: 1 1;
}

#turlarwrapper .turlarlist .turbox .tutar {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #d30004;
    flex: 1;
}


#turlarwrapper .turlarlist .turbox .gotur {
    background: #d30004;
    width: 100%;
    height: 40px;
    font-weight: 500;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#turlarwrapper .turlarlist .turbox .gotur:hover {
    background: rgb(56, 142, 60);
}

#blog {
    background: #fff;
    position: relative;
    margin-top: 50px;
    padding: 30px 15px;
}

#blog .container {
    margin: 50px auto;
}

#blog h5 {
    font-weight: 300;
    font-size: 30px;
    color: #333;
}

#blog h5 span {
    font-weight: 600;
}

#blog .explain {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
}

#blog .bloglist .owl-stage {
    padding-block: 5px;
}

#blog .bloglist .owl-dots {
    display: block;
}

#blog .bloglist .owl-dots {
    margin-top: 25px;
}

#blog .bloglist .owl-dots .owl-dot span {
    width: 50px;
    height: 3px;
}

#blog .blogbox {
    position: relative;
    background: #fff;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 0 0 0 1px rgb(225, 225, 235);
    gap: 5px;
    flex: 1 1 300px;
}

#blog .blogbox:hover {
    background: rgba(0, 0, 0, 0.05);
}

#blog .blogbox img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#blog .blogbox .blogicerik {
    padding: 15px;
    display: grid;
    gap: 10px;
}

#blog .blogbox .blogkat {
    margin: 0;
    gap: 10px;
}

#blog .blogbox .blogkat .katitem {
    font-size: 14px;
    color: rgb(21, 101, 192);
    border-radius: 5px;
}

#blog .blogbox .blogkat .katitem:hover {
    background: rgba(0, 0, 0, 0.1);
}

#blog .blogbox .blogname {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    z-index: 1;
    padding: 0;
}

#blog .blogbox .blogexplain {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    padding: 0;
    color: #555;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
}

#blog .blogbox .blogdetail {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0;
}

#blog .blogbox .blogdetail .detbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#blog .blogbox .blogdetail .detbox:last-child {
    margin-left: 20px;
}

#blog .blogbox .goblog {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    margin-left: auto;
}

#blog .blogbox .goblog:hover {
    background: rgba(0, 0, 0, 0.1);
}

#follow {
    position: relative;
    display: grid;
    place-items: center;
}

#follow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/banner.jpg") center center/cover;
    width: 50%;
    height: 100%;
}

#follow::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/slogan.jpg") center center/cover;
    width: 50%;
    height: 100%;
}

#follow .boxfollow {
    position: relative;
    background: var(--primary);
    max-width: 400px;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    padding: 25px;
}

#follow .boxfollow::after {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    background: url("../img/follow.png") right center/contain no-repeat;
    width: 80%;
    height: 100%;
    opacity: 0.5;
}

#follow .boxfollow>* {
    z-index: 1;
}

#follow .boxfollow h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

#follow .boxfollow p {
    color: #fff;
    font-weight: 400;
    line-height: 25px;
}

#follow .boxfollow .social {
    display: flex;
    gap: 10px;
}

#follow .boxfollow .sociallink {
    background: #fff;
    width: 40px;
    height: 40px;
    color: var(--primary);
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
}

#newFooter {
    background: #333;
    padding-block: 20px;
    position: relative;
}

#newFooter h4 {
    font-size: 18px;
    color: #484848;
    line-height: 1.333;
}

#newFooter p,
#newFooter a {
    font-size: 14px;
    color: #fff;
    line-height: 2.143;
}

#newFooter .footer-slogan {
    background: #202020;
    padding: 20px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    transform: translateY(-45px);
}
#newFooter .footer-head {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}
#newFooter .text {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
#newFooter a.text {
    font-size: 13px;
    line-height: 25px;
}
#newFooter .tursab-logo {
    max-width: 200px;
    width: 100%;
}

#newFooter .fa-brands {
    color: #484848;
}

#newFooter .container>* {
    padding-inline: 10px;
}

#newFooter #emailWrapper {
    display: flex;
}

#newFooter #emailWrapper #emailInput {
    background: #fff;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #484848;
    padding: 6px 12px 6px 30px;
    border-radius: 50px;
    box-shadow: 0px 0px 50px 0px rgba(19, 19, 28, 0.12);
    flex-grow: 1;
    margin-right: 10px;
}

#newFooter #emailWrapper #emailSend {
    background: #fff;
    width: 50px;
    height: 50px;
    font-size: 14px;
    color: #484848;
    border-radius: 50px;
    box-shadow: 0px 0px 50px 0px rgba(19, 19, 28, 0.12);
    aspect-ratio: 1;
}
.bottom-footer {
    background: #292828;
    padding: 20px 0;
}
.bottom-footer .container {
    display: flex;
    justify-content: space-between;
}
.bottom-footer a {
    color: #fff;
}
.bottom-footer img {
    width: auto;
    height: 20px
}
#blogbanner {
    position: relative;
    background: var(--primary) url("../img/blogbanner.jpg") center center/cover;
    background-blend-mode: multiply;
    width: 100%;
    height: 300px;
}

#blogdetaybanner {
    position: relative;
    background: var(--primary) url("../img/turlar/cizre.jpg") center center/cover;
    background-blend-mode: multiply;
    width: 100%;
    height: 300px;
}

.bannercrumb {
    padding-block: 10px;
    line-height: 37px;
    margin: 0;
}

.bannercrumb ol {
    margin: 0;
}

#rezerveler {
    background: #fff;
    padding-block: 100px;
}

#rezerveler .rezervehead {
    font-size: 22px;
    font-weight: 500;
    padding: 20px 20px 10px;
}

#rezerveler .rezerveexplain {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 25px;
    padding: 0 20px 30px;
}

#rezerveler .rezervekapsayici {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

#rezerveler .rezerve-wrap {
    position: relative;
    flex: 1 1 calc(100% - 420px);
    gap: 20px;
}

#rezerveler .rezerve-wrap .formrezerve .owl-nav {
    display: block;
}

#rezerveler .rezerve-wrap .formrezerve .owl-nav .owl-prev,
#rezerveler .rezerve-wrap .formrezerve .owl-nav .owl-next {
    padding: 10px 20px !important;
}

#rezerveler .rezerve-wrap .formrezerve .form-item {
    width: 100%;
    border: 1px solid rgb(235, 235, 245);
    margin-bottom: 5px;
}

#rezerveler .rezerve-wrap .formrezerve .form-item .lead {
    background: rgb(245, 245, 255);
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 60px;
    padding-inline: 20px;
}

#rezerveler .rezerve-wrap .formrezerve .form-item form {
    padding: 0 20px 20px;
    display: flex;
    gap: 20px;
}

#rezerveler .rezerve-wrap .formrezerve .form-item form label {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    gap: 5px;
}

#rezerveler .rezerve-wrap .formrezerve .form-item form label input {
    padding: 15px;
    border: 1px solid rgb(225, 225, 235);
}

#rezerveler .rezerve-wrap .formrezerve .form-item form .speciallabel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#rezerveler .rezerve-wrap .formrezerve .form-item form .speciallabel input,
#rezerveler .rezerve-wrap .formrezerve .form-item form .speciallabel select {
    padding: 15px;
    border: 1px solid rgb(225, 225, 235);
    flex: 1 1 250px;
}

#rezerveler .rezervekategori {
    position: sticky;
    top: 120px;
    height: fit-content;
    flex: 1 1 400px;
    border: 1px solid rgb(235, 235, 245);
}

#rezerveler .rezervekategori .head {
    background: rgb(245, 245, 255);
    width: 100%;
    line-height: 60px;
    padding: 0 20px;
    display: flex;
    font-size: 16px;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

#rezerveler .rezervekategori .nav {
    display: grid;
    padding-block: 20px 10px;
}

#rezerveler .rezervekategori .nav .nav-item {
    width: 100%;
    line-height: 30px;
}

#rezerveler .rezervekategori .nav .nav-item .nav-link {
    font-size: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

#blogs {
    background: #fff;
    padding-block: 100px;
}

#blogs .bloghead {
    font-size: 22px;
    font-weight: 500;
    padding: 20px 20px 10px;
}

#blogs .blogexplain {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 25px;
    padding: 0 20px 30px;
}

#blogs .blogkapsayici {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#blogs .blog-wrap {
    flex: 1 1 calc(100% - 420px);
    gap: 20px;
}

#blogs .blog-wrap .blogbox {
    position: relative;
    background: #fff;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 0 0 0 1px rgb(225, 225, 235);
    gap: 10px;
    flex: 1 1 300px;
}

#blogs .blog-wrap .blogbox:hover {
    background: rgb(245, 245, 255);
}

#blogs .blog-wrap .blogbox img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#blogs .blog-wrap .blogbox .blogkat {
    margin: 0px 0 10px 15px;
    gap: 10px;
}

#blogs .blog-wrap .blogbox .blogkat .katitem {
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
}

#blogs .blog-wrap .blogbox .blogkat .katitem:hover {
    background: rgba(0, 0, 0, 0.1);
}

#blogs .blog-wrap .blogbox .blogname {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    z-index: 1;
    padding: 10px 20px 0;
}

#blogs .blog-wrap .blogbox .blogexplain {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 0 20px;
    color: #555;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
}

#blogs .blog-wrap .blogbox .blogdetail {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0 20px;
}

#blogs .blog-wrap .blogbox .blogdetail .detbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#blogs .blog-wrap .blogbox .blogdetail .detbox:last-child {
    margin-left: 20px;
}

#blogs .blog-wrap .blogbox .goblog {
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    margin: 20px;
    margin-left: auto;
}

#blogs .blogkategori {
    position: sticky;
    top: 120px;
    height: fit-content;
    flex: 1 1 400px;
    border: 1px solid rgb(235, 235, 245);
}

#blogs .blogkategori .head {
    background: rgb(245, 245, 255);
    width: 100%;
    line-height: 60px;
    padding: 0 20px;
    display: flex;
    font-size: 16px;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

#blogs .blogkategori .nav {
    display: grid;
}

#blogs .blogkategori .nav .nav-item {
    width: 100%;
    line-height: 50px;
    border-bottom: 1px solid rgb(235, 235, 245);
}

#blogs .blogkategori .nav .nav-item .nav-link {
    font-size: 15px;
    color: #333;
}

#cookie {
    position: fixed;
    inset: auto 0 25px;
    background: #393939;
    max-width: 400px;
    width: 100%;
    z-index: 11;
    font-size: 13px;
    text-align: center;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    margin-inline: auto;
    border-radius: 5px;
}

#cookie p {
    margin-bottom: 10px;
}
#cookie a {
    color: #fff;
    text-decoration: underline !important;
}

#cookie .acceptcook {
    background: #449d44;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px 10px;
}

#cookie-wrap {
    background: #fff;
    padding: 50px 0;
}

#cookie-wrap h1 {
    position: relative;
    width: auto;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

#cookie-wrap h1::before {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    background: rgba(0, 0, 0, 0.9);
    width: 50px;
    height: 3px;
}

#cookie-wrap p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 35px;
}

#cookie-wrap p.lead {
    font-size: 20px;
    margin-top: 100px;
}

@media (max-width: 1200px) {
    header .container .contact {
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        padding: 0;
        margin-right: 10px;
    }
    header .container .contact i {
        transform: translateX(0);
    }
    header .container .contact span {
        display: none;
    }
}

@media (max-width: 992px) {
    #turlarcover {
        background: #eee;
        height: auto;
        padding-block: 20px;
    }
    #turlarcover .filter-area {
        position: relative;
        inset: 0;
    }
    #turlarwrapper .filter {
        max-width: none;
    }
    .filter-area {
        flex-direction: column;
        max-width: calc(100% - 40px);
        width: 100%;
        z-index: 6;
        display: flex;
        border-radius: 15px;
        margin-inline: 20px;
    }
    .filter label input,
    .filter label select {
        border-radius: 5px;
    }
    .filter-area .rezerve {
        width: calc(100% - 20px);
        border-radius: 5px;
        text-align: left;
        padding-inline: 20px;
        justify-content: flex-start;
    }
    .tur-wrapper .turekstra {
        max-width: none;
    }
    #newFooter {
        padding-inline: 15px;
    }
    #newFooter #emailWrapper {
        max-width: 240px;
    }
    .desktop-menu {
        display: none;
    }
    header {
        position: sticky;
        top: 0;
        height: 100px;
        background: #fff;
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
        transition: 0.3s ease-in-out;
    }
    header .container nav ul li .nav-link {
        color: #333;
    }
    header .container #hamburger, #hamburger2 {
        display: grid;
    }
    header .container .logo {
        width: auto;
        padding-inline: 0;
    }
    header .container .logo img {
        width: auto;
        height: 50px;
    }
    header .container .contact {
        border: 1px solid var(--primary);
    }
    .nav-drill {
        display: flex;
        padding-top: 0;
    }
    .tur-wrapper .tabhead {
        height: 65px;
    }
    .tur-wrapper .tabhead .nav .nav-item .nav-link {
        font-size: 14px;
    }
    .tur-wrapper #turdetay {
        padding: 40px 10px;
    }
}

@media (min-width: 768px) {
    #turlarwrapper .turlarlist .turbox img {
        width: 250px;
        max-width: 250px;
    }
    #turlarwrapper .turlarlist .turbox .price {
        max-width: 200px;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 400px;
    }
    .modal-dialog .modal-content {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    #iletisim {
        padding-inline: 20px;
    }
    #iletisim .contentcon {
        padding-inline: 0;
    }
    #turlarwrapper .turlarlist {
        margin-inline: 0;
        padding-inline: 20px;
    }
    #turlarwrapper .turlarlist .turbox .price {
        flex: 1 1 auto;
    }
    #hakkimizda {
        padding: 35px 25px;
    }
    #banner {
        height: auto;
        min-height: auto;
        padding-bottom: 20px;
    }
    .filter-area {
        position: static;
        max-width: calc(100% - 16px);
        margin: 00px 8px 0;
    }
    #banner .lokasyon {
        display: none !important;
    }
    .filter-area {
        transform: translateY(0);
    }
    #banner h1 {
        font-size: 35px;
    }
    #banner .container {
        flex-direction: column;
    }
    .filter-area {
        flex-direction: column;
    }
    .filter-area label input,
    .filter-area label select {
        border-radius: 5px;
    }
    #banner .next {
        display: none;
    }
    #kategori {
        padding-inline: 0;
        padding-bottom: 0;
    }
    #kategori .tourkategori {
        height: 200px;
    }
    #sloganabout {
        padding-top: 0px;
    }
    .soontour {
        width: 100%;
        padding-inline: 20px;
    }
    .soontour::before {
        top: 0;
        left: 5%;
        width: 30%;
    }
    .soontour::after {
        inset: 0 0 0 auto;
        width: 65%;
    }
    .tur-wrapper #turdetay #otel .detaykapsa {
        flex: 1 1 240px;
    }
    footer .container {
        gap: 20px;
    }
}

@media (max-width: 570px) {
    #follow {
        position: relative;
        display: grid;
        place-items: center;
    }
    #follow::before {
        background: var(--primary);
    }
    #follow::after {
        background: var(--primary);
    }
    #follow .boxfollow {
        height: 375px;
    }
}

.categorie-sub-content {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: scroll;
    padding: 15px;
    background-color: rgb(246, 246, 246);
    border-radius: 15px;
}

.categorie-sub-content h1 {
    font-size: 22px;
}

.categorie-sub-content h2 {
    font-size: 20px;
}

.categorie-sub-content h3 {
    font-size: 18px;
}

.categorie-sub-content h4 {
    font-size: 16px;
}

.categorie-sub-content h5 {
    font-size: 14px;
}

.people-counter .input-group {
    background: #f5f5ff;
    border-radius: 10px;
    padding: 2px 10px;
    height: unset;
}

.people-counter .input-group button {
    border: 0;
}

.people-counter .input-group input {
    background-color: transparent !important;
    border: 0;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
}

.progress-container::before {
    content: '';
    background-color: #efefef;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}

.progress {
    background-color: #6d33fe;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 00%;
    z-index: -1;
    transition: .2s ease;
}

.circle {
    background-color: #fff;
    color: #999;
    border-radius: 8px;
    width: 30%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #efefef;
    transition: .4s ease;
}

@media (max-width: 575.98px) {
    .circle {
        font-size: 9px;
    }
}

.circle.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.circle.active.finish {
    background-color: #fff;
    color: black;
}

.step-btn {
    background-color: #3498db;
    color: white;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 30px;
    margin: 5px;
    font-size: 14px;
}

.step-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.step-btn:focus {
    outline: 0;
}

.step-btn.active {
    transform: scale(0.98);
}

.text-total-price {
    font-size: 16px;
}

.tour-name {
    font-size: 15px;
}

#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}

.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    border-radius: 22px;
}

#generatecard {
    cursor: pointer;
    float: right;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
    background-color: #909090;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}

#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}

#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    font-family: 'Rock Salt', cursive;
}

#cardback .st13 {
    font-size: 37.769px;
}

.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
}

.creditcard .front,
.creditcard .back {
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    position: absolute;
    top: 0px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.ccicon {
    display: none;
}

.input-group {
    height: 2.425rem;
    border: 1px solid #e5e4f0;
    border-radius: 5px;
}

.input-group>.input-group-btn {
    max-height: 100%;
}

.input-group>.input-group-btn>.btn {
    max-height: 100%;
    line-height: 0px;
}

.people-counter .input-group>.input-group-btn>.btn>i {
    line-height: 36px;
}

.input-group>.input-group-btn>.btn.focus,
.input-group>.input-group-btn>.btn:focus {
    outline: 0;
    box-shadow: none;
}

.input-group>input {
    background: #fff !important;
    border: none;
    max-height: 100%;
}

.iagree>label>a {
    color: #5d5dff;
}

div.sezonim-bus-cell {
    height: 40px;
    width: 40px;
    margin: 3px;
    float: left;
    text-align: center;
    outline: none;
    font-size: 13px;
    line-height: 16px;
    color: blue;
}

div.sezonim-bus-seat {
    background-image: url(/admin/themes/V1/assets/images/bus-seat-plan-icons/enable-seat.png);
    background-size: 100% 100%;
    color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    line-height: 0;
    cursor: default;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: all .25s;
}

div.sezonim-bus-seat.man-seat {
    background-image: url(/admin/themes/V1/assets/images/bus-seat-plan-icons/man-seat.png);
}

div.sezonim-bus-seat.women-seat {
    background-image: url(/admin/themes/V1/assets/images/bus-seat-plan-icons/women-seat.png);
}

div.sezonim-bus-seat:hover {
    cursor: pointer;
    opacity: .5;
}

.sezonim-bus-space.sezonim-bus-door {
    width: 90px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    color: #000;
    border-right: 5px solid #000000;
    border-radius: 5px;
}

div.sezonim-bus-seat:focus {
    border: none;
}

.sezonim-bus-cell.chauffeur {
    width: 40px;
    height: 40px;
    background-image: url(/admin/themes/V1/assets/images/bus-seat-plan-icons/disable-seat.png);
    background-size: 100% 100%;
    color: #e4e4e4;
    border-radius: 5px;
}

.sezonim-bus-cell.chauffeur::before {
    content: ' ';
    background-image: url(/admin/themes/V1/assets/images/bus-seat-plan-icons/steering-wheel.png);
    display: block;
    left: 0;
    top: 0px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-size: contain;
    z-index: 9999999999;
}


/*
.sezonim-bus-seat:focus {
	outline: none;
}
*/

div.sezonim-bus-space {
    background-color: white;
}

div.sezonim-bus-row {
    height: 50px;
}

div.sezonim-bus-row:after {
    clear: both;
}

div.sezonim-bus-seat.focused {
    background-color: #6db131;
}

div.sezonim-bus-seat.available {
    background-color: green;
}

div.sezonim-bus-seat.unavailable {
    background-color: red;
    cursor: not-allowed;
}

ul.sezonim-bus-legendList {
    list-style: none;
}

li.sezonim-bus-legendItem {
    margin-top: 10px;
    line-height: 2;
}

.seat-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seat-desc>img {
    width: 50px;
    height: 50px;
}

.gender-selection {
    position: absolute;
    display: none;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000017;
}

.selected-seats {
    list-style: none;
}

.selected-seats>li {
    padding: 5px;
    background: #f6f6f6;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 5px;
    margin-top: 10px;
}

.animate__animated {
    animation-duration: .25s !important;
}

#MDLPayBank>.modal-dialog {
    height: 100%;
    margin-top: 0;
}

#MDLPayBank>.modal-dialog>.modal-content {
    height: 100%;
}

.hotel-options {
    padding: 0;
}

.hotel-options>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 7px;
    margin-bottom: 10px;
}

.hotel-options>li>.option-text>small {
    display: block;
}

.hotel-options>li>.option-price {
    display: flex;
    align-items: center;
}

.hotel-options>li>.option-price>.option-count {
    margin-right: 10px;
    display: flex;
    background: #e7e7e7;
    border-radius: 20px;
    padding: 3px;
}

.hotel-options>li>.option-price>.option-count>input {
    text-align: center;
    width: 35px;
    border: 0;
    background: transparent;
}

.hotel-options>li>.option-price>.option-count>input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}


/* Firefox */

.hotel-options>li>.option-price>.option-count>input[type=number] {
    appearance: textfield;
}

.hotel-options>li>.option-price>.option-price-box {
    font-weight: 600;
}

.option-count-button {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcbcbc;
    background: #fff;
}

li.tour-name {
    margin: 0;
}

.tour-name {
    font-size: 15px;
}

.tour-name {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.text-nova {
    color: var(--primary);
}

.btn-blue {
    color: #fff;
    background-color: #4049ec !important;
    border-color: #4049ec !important;
    box-shadow: 0px 0px 12px 0px rgba(64, 73, 236, 0.35);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue.focus,
.btn-blue:disabled,
.btn-blue.disabled,
.btn-blue:active {
    color: #fff;
    background-color: #1721e2 !important;
    border-color: #1721e2 !important;
    box-shadow: 0px 0px 12px 0px rgba(64, 73, 236, 0.35);
}

.btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1721e2 !important;
    border-color: #1721e2 !important;
    box-shadow: 0px 0px 12px 0px rgba(64, 73, 236, 0.35);
}

.btn-blue:not(:disabled):not(.disabled).active:focus,
.btn-blue:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background-color: #1721e2 !important;
    border-color: #1721e2 !important;
    box-shadow: 0px 0px 12px 0px rgba(64, 73, 236, 0.35);
}

.btn-pink {
    color: #fff;
    background-color: #ec296b !important;
    border-color: #ec296b !important;
    box-shadow: 0px 0px 12px 0px rgba(236, 41, 107, 0.35);
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink.focus,
.btn-pink:disabled,
.btn-pink.disabled,
.btn-pink:active {
    color: #fff;
    background-color: #d01252 !important;
    border-color: #d01252 !important;
    box-shadow: 0px 0px 12px 0px rgba(236, 41, 107, 0.35);
}

.btn-pink:not(:disabled):not(.disabled).active,
.btn-pink:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #d01252 !important;
    border-color: #d01252 !important;
    box-shadow: 0px 0px 12px 0px rgba(236, 41, 107, 0.35);
}

.btn-pink:not(:disabled):not(.disabled).active:focus,
.btn-pink:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background-color: #d01252 !important;
    border-color: #d01252 !important;
    box-shadow: 0px 0px 12px 0px rgba(236, 41, 107, 0.35);
}

.items-blog-tab {
    margin-top: 20px;
}

.items-gallery .items-blog-tab-heading {
    text-align: center;
    margin: 0 auto;
    display: inline-table;
    padding: 15px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #e5e4f0;
}

.items-blog-tab-heading .items-blog-tab-menu li a {
    padding: 7px 20px 7px 20px;
    color: #312d65;
    background: #fff;
    margin: 0;
    margin-right: 10px;
    border-radius: 5px 5px 0px 0px;
    display: block;
    border: 1px solid #e5e4f0;
    border-bottom: 0;
    box-shadow: 0px 0px 12px 0px rgba(79, 37, 225, 0.03);
}

.items-blog-tab-heading .items-blog-tab-menu li .active {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

label {
    margin-bottom: 0.5rem;
}

.wp-wrapper {
    position: fixed;
    inset: auto auto 70px 20px;
    max-width: 350px;
    width: calc(100% - 20px);
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 999999;
}

.wp-wrapper #wrapper-form {
    width: 100%;
    height: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    transition: height 300ms ease-in-out, padding 300ms ease-in-out;
}

.wp-wrapper #btn-close-wp {
    background: var(--wp-color);
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    border-radius: 40px;
    border: 0;
    margin-left: auto;
    cursor: pointer;
}

.wp-wrapper .talk-info {
    background: var(--wp-color);
    padding: 20px;
    color: #fff;
    border-radius: 15px 15px 0 0
}

.wp-wrapper .talk-in-block {
    background: #fff;
    padding: 20px;
    color: #333;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 0px 7px #00000014
}

.wp-wrapper #btn-wp {
    background: var(--wp-color);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-right: auto
}

.wp-wrapper #btn-wp i {
    font-size: 24px;
}

.wp-wrapper #text-here {
    background: #fff;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: 0px 0px 7px #00000014
}

.wp-wrapper #text-here input {
    width: calc(100% - 45px);
    height: 55px;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-right: 5px;
    padding: 0 15px
}

.wp-wrapper #text-here button {
    background: var(--wp-color);
    width: 45px;
    height: 45px;
    color: #fff;
    margin: 5px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
}

@media (max-width: 576px) {
    .wp-wrapper {
        max-width: none;
        width: auto;
    }
    .wp-wrapper #btn-wp {
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        padding: 0;
    }
    .wp-wrapper #btn-wp>span {
        display: none;
    }
}

.account-dropdown {
    border-radius: 15px !important;
    padding: 15px 0px;
    margin-top: 20px !important;
}

.account-dropdown .dropdown-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.account-dropdown .dropdown-item:active {
    background-color: var(--primary);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--primary);
    color: #fff !important;
}

.my-reservations-tourname {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.filterlist>a {
    background-color: #fff;
    padding: 9px 13px;
    color: #303;
    border-radius: 0;
    border-bottom: 1px solid #eee;
}
.filterlist>a:last-child {
    border-bottom: 0;
}
.filterlist>a:hover{
    background: rgba(250,250,250);
    text-decoration: underline !important;
}
.filterlist>a.active {
    background: rgba(250,250,250);
    text-decoration: underline !important;
    color: #111;
}
.basket-card {
    position: sticky;
    top: 130px;
}
.installement-table {
    text-align: center;
}

.installement-table img {
    height: 40px;
    width: max-content;
}

.installement-table ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.installement-table ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding: 5px;
    width: 100px;
}

/*# sourceMappingURL=main.css.map */
@media(max-width: 768px) {
    #turdetaybanner {
        height: 150px;
    }
    #turdetaybanner .bannerturitem{
        background: #fff !important;
        background-image: none !important;
        padding-block: 0;
        z-index: 9;
    }
    #turdetaybanner .bannerturitem::before {
        display: none;
    }
    #turdetaybanner .bannerturitem .head-tur h1 {
        color: #000;
        text-shadow: 0 0;
    }
    #turdetaybanner .bannerturitem .breadcrumb * {
        font-size: 13px;
        color: #555;
        text-shadow: 0 0;
    }
    #turdetaybanner .bannerturitem .head-price{
        display: none;
    }
    .mobile-rezerve {
        position: fixed;
        inset: auto 0 0 0;
        background: #fff;
        padding: 10px;
        box-shadow: 0 0 10px -5px;
        z-index: 10;
    }
    .mobile-rezerve .btn-mobile-rezerve {
        background: #d30004;
        width: 100%;
        height: 34px;
        color: #fff;
        text-align: center;
        line-height: 34px;
        padding: 0;
        display: block;
    }
}

@media print {
    body *:not(.horizontalMenucontainer, .tur-wrapper, .-ext, .-ext *) {
        display :  none;
    }
    .horizontalMenucontainer, .tur-wrapper, .-ext, .-ext *{
        display: block !important;
    }
}