@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100..900&display=swap');

:root {
    /* Site Properties */
    --background-color: #424242;
    --main-color: #393E46;
    --alternate-color: #b36902;
    --main-text-color: #000;
    --soft-text-color: #444;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    --border-radius: 10px;
    --small-border-radius: 5px;
    --border-color: rgba(0, 0, 0, 0.2);
    --transparent-color: rgba(0, 0, 0, 0.2);
    --transparent-color-2: rgba(0, 0, 0, 0.1);

    /* Font Properties */
    --font-size: 14px;
    --mobile-font-size: 12px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --placeholder-color: #424242;
    --textarea-padding: 10px;
    --button-color: #393E46;
    --button-hover-color: #b36902;
    --button-padding: 0 10px;
    --button-height: 40px;
    --button-border: none;
}

body {
    margin: 0;
    padding: 0;
    background:#FFF;
    font-family: "Kanit", sans-serif;
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: #000;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: #424242;
}

.panel-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
    max-width: 100%;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

/* .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    min-width: unset !important;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: none;
    padding: 0;
} */


.section-gray {
    padding: 40px 0;
    background: #d5d5d5;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-nav>.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: none;
    z-index: 99;
}

.mobile-nav>.mobile-nav-content>.mobile-nav-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: var(--main-gap);
    pointer-events: all;
    overflow-y: auto;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav.active>.mobile-nav-content>.mobile-nav-inner {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-menu-links>.item>a {
    position: relative;
    display: block;
    font-size: 1rem;
    color: #444;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
}

.mobile-menu-links>.item>.inner-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    background: var(--transparent-color-2);
    margin-top: -10px;
    margin-bottom: 10px;
}

.mobile-menu-links>.item.active>.inner-menu {
    display: flex;
}

.mobile-menu-links>.item>.inner-menu>a {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color) !important;
}

.mobile-menu-links>.item>.inner-menu>a:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-links>.item>a>i {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile-menu-links>.item.active>a>i:before {
    content: "\F0140";
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: var(--button-border);
    background: #222;
    padding: var(--button-padding);
    height: var(--button-height);
    overflow: hidden;
    white-space: nowrap;
}

.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}

.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #c12f2f;
    transition: var(--main-transition) ease 0s;
}

.main-btn:hover:before {
    left: 0;
}

.main-btn>span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
}

.main-btn:hover>span {

    color: #000;
}

.main-btn.small>span {
    font-size: 0.8rem;
    text-transform: unset;
}

.main-btn>span>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
}

.main-btn.small>span>i {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

.showcase {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 11rem 0;
    position: relative;
}

.showcase:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.showcase-desc {
    display: block;
}

.showcase-baslik {
    display: flex;
    justify-content: center;
    margin-bottom: 1.7rem;
}

.showcase-desc>.title {
    display: block;
    font-size: 2.4rem;
    color: #fff;
    font-weight: var(--font-bold);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
}

.showcase-desc>.desc {
    display: block;
    font-size: 1.6rem;
    font-weight: var(--font-regular);
    color: #fff;
    margin-bottom: var(--main-gap);
    text-align: center;
}

.site-nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px;
    box-shadow: 0px 5px 10px #676767;
    background-color: #FFF;
}

.header-top {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: #443627;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

.site-nav-flex>.left,
.site-nav-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sn-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sn-links>.item {
    display: block;
    position: relative;
    padding: 10px 0;

}

.sn-links>.item:not(:last-child) {
    margin-right: var(--main-gap);
}

.sn-links>.item>a {
    display: block;
    font-size: 1rem;
    color: #444 !important;
    font-weight: 600;
    transition: var(--main-transition);
    text-transform: uppercase;
}

.sn-links>.item>a:hover {
    color: #4f412d !important;
}

.sn-links>.item>a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 1px;
    background: #4f412d;
    transition: 0.2s ease 0s;
}

.sn-links>.item>a:hover:before {
    width: 100%;
}


.sn-logo img {
    width: 260px;
    /* filter: contrast(0) brightness(0) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4)); */
}



.sn-lang {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.sn-lang i {
    font-size: 20px;
}


.h-phone {
    margin-right: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    transition: 0.2s ease-in-out all;
}

.h-phone:hover {
    color: var(--main-color);
}

.h-phone i {
    padding: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.h-phone span {
    font-size: 1.2rem;
    font-weight: 700;
}


.money-dropdown.show {
    width: auto !important;
    transform: translate3d(-20px, 30px, 0px) !important;
    margin-top: -1px;
    border-radius: 4px;
    padding: 10px !important;
}

.money-dropdown>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 8px;
    color: #222 !important;
    white-space: nowrap;
}

.showcase-form {
    padding: 10px;
    background: rgb(234 234 234 / 90%);
    box-shadow: var(--box-shadow);
    border-radius: 2px;
    border: solid 1px rgb(22 22 22 / 30%);
}

.showcase-form .main-btn {
    height: 50px;
    width: 100%;
    background: #e83d20;
    color: #424242;
}

.showcase-form .passenger-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: var(--input-color);
    padding: var(--input-padding);
    border: none;
    border-radius: var(--border-radius);
    padding-left: 35px;
    position: relative;
    cursor: pointer;
}

.showcase-form .passenger-select>i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
    font-size: 1.4rem;
    color: var(--main-text-color);
}

.search-group {
    display: block;
    position: relative;
    width: 100%;
}

.search-group>input {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: #444;
    height: 50px;
    padding: var(--input-padding);
    border: none;
    padding-left: 35px;
    background: #FFF;
}

.search-group>i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
    font-size: 1.4rem;
    color: #444;
}

.main-title {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-medium);
    color: #444;
    text-align: center;
    margin-bottom: var(--main-gap);
    position: relative;
}

.main-title:before {
    content: "";
    position: absolute;
    bottom: calc(var(--main-gap) / -2);
    left: 50%;
    transform: translate(-50%, 0);
    width: 120px;
    max-width: 100%;
    border-bottom: solid 1px #d61d1d6b;
}

.main-title:after {
    content: "";
    position: absolute;
    bottom: calc(var(--main-gap) / -2 - 2px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 20px;
    height: 4px;
    background: #d5d5d5;
}

.badge-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: var(--main-gap);
}

.badge-item>i {
    display: block;
    font-size: 4rem;
    color: #e83d20;
}

.badge-item>span {
    display: block;
    font-size: 1.2rem;
    color: #424242;
    text-align: center;
    padding: 0 20px;
}

.badge-item>p {
    color: #444;
}

.region-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--main-gap);
    padding: 10px;
    background: #fff;
    border: solid 1px var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.region-item>.img {
    display: block;
    min-width: 80px;
    width: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 10px;
}

.region-item>.img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(100%);
}

.region-item>.img>div>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
}

.region-item:hover>.img>div>img {
    transform: scale(1.1);
    opacity: 0.5;
}

.region-item>.content {
    display: block;
}

.region-item>.content>.from {
    display: block;
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    margin-bottom: 5px;
}

.region-item>.content>.title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    margin: 0;
    color: var(--main-text-color);
}

.sidebanner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720 / 1280 * 100%);
}

.sidebanner>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebanner-desc {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 100%;
}

.sidebanner-desc>.main-title {
    text-align: left;
}

.sidebanner-desc>.main-title:before,
.sidebanner-desc>.main-title:after {
    transform: none;
    left: 0;
}

.sidebanner-desc>p {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-regular);
    color: var(--soft-text-color);
}

.vehicle-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--main-gap);
    padding: 20px 0;
}

.vehicle-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: calc(100% - 100px);
    height: 100%;
    border: solid 1px orange;
    border-radius: 1rem;
}

.vehicle-item>* {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
}

.vehicle-item>.img {
    display: block;
    padding: 0 4rem;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.vehicle-item>.img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(620 / 1280 * 100%);
}

.vehicle-item>.img>div>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-item>img {
    width: 100%;
}

.vehicle-item>.content {
    padding: 0 70px;
    display: block;
    text-align: center;
}

.vehicle-item>.content>.title {
    display: block;
    font-size: 1.2rem;
    color: #444;
    font-weight: var(--font-medium);
    margin-bottom: 5px;
}

.vehicle-item>.content>.model {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-regular);
    color: #444;
}

.vehicle-item>.content>.type {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-medium);
    color: #444;
    padding: 20px 0;
    margin: 20px 0;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.vehicle-item>.content>a {
    display: inline-block;
    color: #444 !important;
    font-size: 1rem;
    font-weight: var(--font-medium);
}

.vehicle-item>.content>a:hover {
    text-decoration: underline !important;
}

.review-item {
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--main-gap);
}

.review-item>.name {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    margin-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 5px;
}

.review-item>.desc {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-regular);
    color: var(--soft-text-color);
    margin-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 5px;
}

.review-item>.date {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--soft-text-color);
}

.review-item>i {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 20px;
    font-size: 4rem;
    color: var(--soft-text-color);
    opacity: 0.3;
}

footer {
    background: #f2f2f2;
    padding: 3rem 0 0 0;
}

.ftr-logo {
    display: block;
    margin-bottom: var(--main-gap);
}

.ftr-logo img {
    width: 200px;
}

.ftr-title {
    display: block;
    font-size: 1.2rem;
    color: #444;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.ftr-links {
    display: block;
    list-style: none;
    padding: 0;
    /*    columns: 2;*/
    column-gap: var(--main-gap);
    margin-bottom: calc(var(--main-gap) - 5px);
}

.ftr-links>li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}

.ftr-links>li>a {
    display: block;
    font-size: 1rem;
    color: #424242 !important;
}

.ftr-links>li>a:hover {
    text-decoration: underline !important;
}

.ftr-bottom {
    padding: 20px 0;
    background: #111;
}

.ftr-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -5px;
}

.ftr-bottom-flex>span {
    display: block;
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 5px;
}

.ftr-bottom-flex>a>img {
    width: 60px;
    filter: grayscale(1);
}

.ftr-bottom-flex>a:hover>img {
    filter: none;
}

.mobile-nav-open {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    background: var(--main-color);
    font-size: 2rem;
    color: #fff !important;
    border: none;
    border-radius: var(--border-radius);
}

.mobile-nav-close {
    min-width: 40px;
    height: 40px;
    background: none;
    font-size: 2rem;
    color: var(--main-text-color) !important;
    border: none;
}



.live-result {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #FFF;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
    max-height: 300px;
    z-index: 1200;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}

.live-result .title {
    width: 100%;
    background: #FFF;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
}

.live-result .item {
    padding: 10px 10px;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #444;
    border-bottom: solid 1px #eee;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 1ms ease-in-out all;
    background-color: #fff;
    border-radius: 2px;
}

.live-result .item:last-child {
    border-bottom: none;
}

.live-result .item i {
    font-size: 20px;
    line-height: 26px;
    color: #bbb;
    margin-right: 15px;
}

.live-result .item:hover {
    border-radius: 5px;
    background: #555;
    color: #fff !important;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
    transition: 1ms ease-in-out all;
}

.live-result .item:hover>i {
    color: #fff !important;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-width: 45px;
    width: 13rem;
    text-align: center;
}

.passenger-menu {
    margin: 0 !important;
    top: 100% !important;
    left: 50% !important;
    transform: translate(-65%, 11%) !important;
    border: solid 1px #f2f2f2;
    border-radius: 0;
    background-color: #FFF;

}

.passengers-pad {
    padding-right: .35rem !important;
    padding-left: .35rem !important;
    margin-bottom: 10px;
}

.slide-group>input,
.slide-group>.dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 0 10px;
    padding-top: 20px;
    padding-bottom: 19px;
    padding-left: 40px;
    border: solid 1px #696969;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    background: #fff;
    text-align: left;
    color: #fff;
    border-radius: 5px;
}

.yolcu-select {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px transparent;
    background: #FFF;
    height: 50px;
}

.yolcu-select>span>i {
    position: absolute;
    top: 15.2px;
    left: 22px;
    color: #444;
}



.passenger-line>label {
    margin-bottom: 0px;
    color: #444;
}

.route {
    background: #444;
    color: #fff;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.space {
    height: 5rem;
}

.step1-header-background {
    display: flex;
    background-image: url(/img/img-list.webp);
    background-position: 0 50%;
    height: 7rem;
    background-size: cover;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.index {
    max-width: 1200px;
    font-size: 1.3rem;
}

.route-details {
    border: 1px solid #dee2e6 !important;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 29px 0 rgba(100, 100, 111, .2);
    padding: 1rem;
}

.route-info {
    position: relative;
    width: 100%;
}

.route-info-text {
    position: relative !important;
    margin-bottom: 0.5rem !important;
    padding-left: 0.25rem !important;
    font-size: 14px !important;
    margin-top: 0.5rem !important;
}

.route-info-icon {
    display: flex;
    align-items: center;
    justify-content: center !important;
}

.child {
    display: none;
}

.car-selection {
    border: 0px solid #e83d20 !important;
    border-radius: 2px;
    box-shadow:2px 7px 29px 0 rgb(181 40 40 / 20%);
    margin-bottom: 10px !important;
    padding: 15px;
    border-radius: 5px;
}

.car-img {
    position: relative;
    display: block;
    width: 100%;
}

.car-img>div {
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 5 * 100%);
}

.car-img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-name {
    font-size: 16px !important;
    font-weight: 700;
    text-align: left;
    color: #424242;
}

.services {
    padding-left: 0;
    list-style: none;
    font-size: 14px;
}

.services-title {
    margin-bottom: 20px;
    font-weight: 700;
    color: #28A0D8 !important;
}

.services-item {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
    margin-bottom: 0.50rem !important;
}

.services-item>div>.bold {
    font-weight: 700;
    text-align: start;
}

.icon {
    padding-top: 0.5rem !important;
    padding-right: 0rem !important;
    font-size: 18px !important;
}

.price {
    font-size: 22px;
}

.semibold {
    font-weight: 600;
    font-size: 15px;
}

.bottom-services {
    font-size: 12px;
    cursor: pointer;
    background-color: white;
    padding-top: 0.5rem;
    padding-bottom: 0;
    flex: 0 0 100%;
    max-width: 100%;
    border-top: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.orange {
    border-top: 10px solid #efa728;
    border-left: 10px solid transparent;
    position: relative;
    right: 0;
}

.p-all {
    padding: 0.5rem !important;
}

.step2-nav {
    z-index: 99;
    background: white;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    position: relative;
    padding: 0.5rem 1rem;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.sn-logo>.step2-logo {
    width: 300px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}



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

.cnt>span {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkout-box {
    border-radius: 5px;
     border:1px solid #37363654 !important;
    box-shadow:12px 7px 29px 0 rgb(138 50 50 / 10%);
    padding: 1rem !important;
    margin-bottom: 1rem;
    padding: 10px;
}

.checkout-title {
    color: #424242 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.checkout-label {
    margin-top: 1rem;
    color: #424242;
}

.checkout-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #424242;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.checkout-input:focus {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    background-color: #ebebeb;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.select2-container {
    width: 340px !important;
}

.select2-container:focus {
    border: 1px solid #ced4da !important;
}

.form-group.alternate>input,
.form-group.alternate>.iti>input,
.form-group.alternate>textarea,
.form-group.alternate>.select2-container .select2-selection--single,
.form-group.alternate>.passenger-box {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #424242;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-group.alternate>input:focus,
.form-group.alternate>.iti>input:focus,
.form-group.alternate>textarea:focus,
.form-group.alternate>.select2-container .select2-selection--single:focus,
.form-group.alternate>.passenger-box:focus {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #424242;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.iti {
    width: 100%;
}

.journey-details {
    padding: 1rem;
}

.step-2-car-name {
    font-size: 1.2rem;
    color: #981616;
    font-weight: bold;

}

.csp {
    color: #444;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: .2rem;
}

.csg {
    color: #424242;
    font-size: 13px;
    margin-bottom: 1rem;
}

.total-payment {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: end;
}

.info-box {
    background-color: rgba(186, 223, 147, .6);
    color: #444;
    font-size: 14px;
    padding: 1rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    height: auto;
}

.location {
    bottom: 0;
    left: 5px;
    position: absolute;
    top: 0
}

.location:before {
    bottom: 30px;
    content: "";
    left: 15px;
    border-left: 1px dashed #000;
    position: absolute;
    top: 20px
}

.location .icon-1 {
    left: 10px;
    position: absolute;
    top: 5px
}

.location .icon-2 {
    bottom: 16px;
    left: 10px;
    position: absolute
}

.trip-title {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #444;
}

.datepicker-group {
    position: relative;
}

.policy {
    display: flex;
    flex-direction: row;
    color: #424242;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    position: relative;
    left: 98%;
    width: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

.btn-primary:hover {
    background-color: #3b7211;
    color: #fff;
    border-color: #3b7211;
}

.btn-primary.focus,
.btn-primary:focus {
    background-color: #d61d1d;
    color: #fff;
    border-color: #d61d1d;
    box-shadow: none;
}

input[type=checkbox] {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.counter {
    display: block;
    padding: 5px;
    border: solid 2px #FF751D;
    line-height: 22px;
    color: #FF751D;
    height: 2.5rem;
    text-align: center;
    width: 2.5rem;
    border-radius: 10px;
}

.counter:hover {
    color: #AD0014;
    border: solid 2px #AD0014;
}

.counter-title {
    font-size: 1.5rem;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.custom-hr {
    border: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}





.extra-lines,
.rextra-lines {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
}

.extra-lines>.caption,
.rextra-lines>.caption {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.extra-lines>.item~.caption,
.rextra-lines>.item~.caption {
    display: none;
}

.extra-lines>.item,
.rextra-lines>.item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.extra-lines>.item>span:last-child,
.rextra-lines>.item>span:last-child {
    text-align: right;
    color: #fff;
    font-weight: 600;
}

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

.payment {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 5px 10px 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    text-transform: uppercase;
    font-weight: 700;
}

.payment.active {
    border: 1px solid #d61d1d;
    background-color: #FFF;
    transition: 1s;
}

.payment .payment-content {
    text-align: center;
    width: 100%;
    min-height: 55px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #424242;
}

.payment>i {
    font-size: 3rem;
    color: #424242;
}

.ex-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.extra-items {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    color: #424242;
}



.form-box {
    border: solid 1px #eee;
    padding: 20px;
    padding-bottom: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 7.1%;
}

.form-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.form-box .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.form-box .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.form-box .title-in {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.form-box .title~.title-in {
    margin-top: -8px;
}

.rez-complete-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 20px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.rez-complete-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.rez-complete-box>.head {
    display: block;
    text-align: center;
}

.rez-complete-box>.head>i {
    display: block;
    font-size: 50px;
    line-height: 56px;
    color: #ae98c7;
    margin-bottom: 10px;
}

.rez-complete-box>.head>.message {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.rez-number-box {
    display: block;
    text-align: center;
}

.rez-number-box>span:first-child {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    padding: 5px 10px;
    width: 100%;
}

.rez-number-box>span:last-child {
    display: block;
    padding: 10px 15px;
    background: none;
    border: solid 2px #ae98c7;
    color: #000;
    font-weight: 600;
}

.rez-complete-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rez-complete-contact>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 10px;
}

.rez-complete-contact>div>i {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #222;
    background: #cc3333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.rez-complete-contact>div>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
}

.rez-complete-contact>div>a:hover {
    text-decoration: underline !important;
}

.destinations-banner {
    background-position: 0 77%;
    height: 7rem;
    background-size: cover;
}

.breadcrumb-item {
    color: #424242
}

.destination-item {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    border: solid 1px transparent;
    transition: 0.4s ease 0s;
    border-radius: 5px;
    background: #f2f2f2;
    overflow: hidden;
    padding: 5px !important;
    justify-content: space-between;
}

.destination-item:hover {
    transform: scale(1.1);
}

.destination-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
}

.destination-item>.price {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    background: #e38d13;
    color: #fff;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    border-radius: 5px;
}

.destination-item>.price>small {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-right: 4px;
}

.destination-item:hover>.img:after {
    width: 0%;
}

.destination-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
    transform: scale(1.1);
}

.destination-item:hover>.img>img {
    transform: scale(1);
}

.destination-item>.desc {
    padding: 10px;
    padding-left: 60px;
    position: relative;
    transition: 0.4s ease 0s;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: flex-start;
}


.destination-item>.desc>.airport {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-item>.desc>.title {
    display: block;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #444;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-item>.desc>i {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 26px;
    color: #FFF;
    background: #e83d20;
    transition: 0.4s ease 0s;
    border-radius: 5px;
}

.destination-links {
    color: #444
}

.customer-comments {
    width: 100%;
}

.yildiz {
    color: #fe9506;
}

.dmr {
    margin-right: 1rem;
}

.dml {
    margin-left: 1rem;
}

.smt {
    margin-top: 2%;
}

.dmb {
    margin-bottom: 1.5rem;
}

.d-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    border: solid 1px #00000000;
    border-radius: 5px;
    padding: 5px
}

.d-price>span {
    font-size: 20px;
    font-weight: 900;
    color: #dc1e1e;
}

.step2-footer {
    padding: 25px;
    margin-top: 25px;
}

.step2-img>img {
    width: 20rem;
    filter: contrast(0) brightness(2) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

.booking-input {
    width: 100%;
}

.booking-input:first-child {
    margin-bottom: 1rem;
}

.booking-form {
    border: solid 2px orange;
    border-radius: 5px;
    padding: 1rem;
}

.booking-span {
    font-size: 15px;
    font-weight: 600;
}

.booking-i {
    display: flex;
    flex-direction: row;
}

.booking-i:first-child {
    margin-bottom: 1rem;
}


.bege {
    display: block;
    height: 25rem;
    background-image: url(/img/home-1.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -15px;
    margin-bottom: -14px;
    border-radius: 0 5px 5px 0;
    position: relative;
}

.bege:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, .45) 70%, hsla(0, 0%, 100%, 0))
}

.book-container {
    min-height: 34.5rem;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.booking-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-title {
    margin-bottom: 1rem;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.profile-dropdown {
    color: #444;
}

.btn-gray {
    background-color: #f8f9fa;
    color: #444;
    border-color: #f8f9fa;
}

#yolcu {
    color: #444
}


.main {
    border: solid 2px orange;
    border-radius: 2rem;
    padding: 2rem;
}

.selection {
    height: 100%;
}


.ftr-slogan {
    display: block;
    margin-bottom: 10px;
}

.ftr-slogan>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-slogan>.item>span {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #ddd !important;
    margin-bottom: 10px;
}

.nav-breadcrumb {
    padding-top: 16px !important;
    background-size: cover;
    color: white;
    margin-top: 0rem !important;
}



/* PAGINATION START */

.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    margin: 2px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 0;
    background: #222;
    border: solid 1px #333;
    color: #fff !important;
    border-radius: 3px;
}

.pagination ul li a:hover {
    background: #333;
}

.pagination ul li.active a {
    background: #FE9506;
    border-color: #FE9506;
    color: #fff !important;
}

/* PAGINATON END */

.return-toggler {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: solid 1px transparent;
    background: white;
    border-radius: 10px;
    height: 50px;
    color: #444;
}


.dest-car-selection {
    border: 1px solid #dee2e6 !important;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 29px 0 rgba(100, 100, 111, .2);
    margin-bottom: 1.5rem !important;
    padding: 2rem;
    flex-direction: column;
}

.language-dropdown {
    transform: translate3d(-20px, 23px, 0px) !important;
    width: 9rem !important;
    min-width: 9rem !important;
    text-align: left !important;
}

.total-price {
    color: #424242 !important;
}

.pointer {
    cursor: pointer;
}

.dash-form {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #4444444a;
    margin-top: 5px;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.btn-secondary {
    background-color: #74512D !important;
    border-color: #74512D !important;
}

.btn-secondary:hover {
    background-color: #FEBA17 !important;
    border-color: #FEBA17 !important;
}

.error-label {
    color: red;
    font-size: 12px;
}

#phone-error {
    position: absolute;
}

.rf-title {
    padding: 0;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #948979;
    border: solid 1px #948979;
}

.rf-title span {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
}

.rf-body {
    padding: 0;
}

.social-media-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-icons {
    width: 100%;
}


.sn-money {
    border: solid 1px #8d222242;
    border-radius: 5px;
    padding: 0.25rem;
}

.sn-money>a {
    color: #444
}


.blog-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: solid 1px #ddd;
}

.blog-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.blog-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.blog-item:hover>.img>img {
    transform: scale(1.1);
}

.blog-item:hover>.img:before {
    left: 0;
}

.blog-item>.desc {
    padding: 5px 10px;
    background: #181818;
    transition: 0.2s ease 0s;
}

.blog-item:hover>.desc {
    background: #282828;
}

.blog-item>.desc>span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.gallery-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    border: solid 1px #ddd;
}

.gallery-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.gallery-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.gallery-item:hover>.img>img {
    transform: scale(1.1);
}

.gallery-item:hover>.img:before {
    left: 0;
}

.gallery-item>.img:after {
    content: "\F0415";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Material Design Icons";
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: 0.2s ease 0s;
    border-radius: 50%;
}

.gallery-item:hover>.img:after {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-item>.desc {
    padding: 5px 10px;
    background: #181818;
    transition: 0.2s ease 0s;
}

.gallery-item:hover>.desc {
    background: #282828;
}

.gallery-item>.desc>span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-slider-area {
    display: block;
    width: 100%;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-slider-container {
    width: 100%;
    position: relative;
}

.main-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 43rem;
    /* Genişliğin %43.93'ü oranında yükseklik */
    background: #fff;
}

.main-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}

.main-banner>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Çerçeveye tam oturur, ancak orantısı bozulabilir */
}



.main-slider-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    pointer-events: none;
}

.main-slider-buttons>div {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    background: none;
    pointer-events: all;
}

.main-slider-buttons>div:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Material Design Icons";
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6 30px;
    color: #fff;
}

.main-slider-buttons>div.prev:before {
    content: "\F0142";
}

.main-slider-buttons>div.next:before {
    content: "\F0141";
}

.slide-desc {
    position: absolute;
    top: 290px;
    width: 100%;
    pointer-events: none;
    transform: translate(0, -50%);
    margin-top: -20px;
    z-index: 10;
    text-align: center;
}

.slide-desc .title {
    display: block;
    font-size: 60px;
    line-height: 1.2;
    padding-bottom: 0;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px #1b1b1bad;
}

.slide-desc .desc {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #d61d1d;
    padding-bottom: 120px;
    margin-top: 10px;
    text-shadow: 2px 2px #1b1b1bad;
}

.slide-desc-in {
    pointer-events: all;
}

.main-slider-items {
    width: 100%;
    z-index: 1000;
    background: #00000000;
    align-self: flex-end;
    position: absolute;
    top: 380px;
}




.b-black {
    background-color: #000 !important;
}

.f-black {
    color: #000 !important;
}

.f-white {
    color: #424242 !important;
}

.b-white {
    background-color: #fff !important;
}


.pad-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-toggle::after {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
}


.chk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#return-transfer {
    width: 100%;
    margin-top: 20px;
}

.live-transfer-price-round {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
}

.policy>input[type=checkbox] {
    width: 33px !important;
    height: 33px !important;
}




.collapse-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: solid 1px #ddd;
}

.collapse-item:last-child {
    margin-bottom: 0;
}

.collapse-item>.title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    padding-right: calc(15px + 15px + 10px);
    background: #222;
    cursor: pointer;
    height: unset !important;
    border: none;
    margin: 0;
    position: relative;
}

.collapse-item>.title:after {
    content: "\F0142";
    font-family: "Material Design Icons";
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 14px;
    line-height: 20px;
    height: calc(22px + 10px + 10px);
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.collapse-item>.title[aria-expanded="true"]:after {
    content: "\F0140";
}

.collapse-item>.content {
    border-top: solid 1px #ddd;
}

.collapse-item>.content>.content-inner {
    padding: 15px;
}

.collapse-item>.content>.content-inner>p {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}


.smb {
    margin-bottom: 2%;
}

.f-20 {
    font-size: 20px;
}

.psg-item:not(:last-child) {
    margin-bottom: .5rem
}

.contact-page-items {
    display: block;
}

.contact-page-items>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact-page-items>.item:not(:last-child) {
    margin-bottom: 10px;
}

.contact-page-items>.item>i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 2px #d61d1d;
    color: #d61d1d;
    margin-right: 10px;
}

.contact-page-items>.item>div>span:first-child {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-bold);
    color: #d61d1d;
    margin-bottom: 5px;
}

.contact-page-items>.item>div>span:last-child,
.contact-page-items>.item>div>a {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.contact-page-items>.item>div>a:hover {
    text-decoration: underline !important;
}


.ftr-links i {
    position: relative;
    color: #424242 !important;
    font-size: 20px;
    margin-right: 5px;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.phone-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: rgb(215, 163, 6);
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.phone-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.card-body {
    padding: .5rem !important;
}

.card-title {
    margin-bottom: .25rem;
}

.main-color {
    color: #222831;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-left: 15px;
    border-radius: 5px;
    padding: 15px;
    border: solid 1px transparent;
}

.price-box>.price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 25px;
    line-height: 26px;
    text-align: center;
    color: #424242;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 5px;
    height: 100%;
    margin-bottom: 10px;
}

.price-box>.main-btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 11px 21px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #fff !important;
    border: none;
    background: #e83d20;
    transition: 0.2s ease 0.1s;
    overflow: hidden;
    border-radius: 5px;
    white-space: nowrap;
    width: 100%;
}

.price-box>.main-btn-2:hover {
    background: #222;
    color: #fff !important;
    transition: 0.2s ease 0.1s;
}

.price-options-2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-option-2 {
    display: flex;
    align-items: center;
}

.price-option-2 label {
    margin-left: 5px;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #424242;
}

.price-option-2 span {
    margin-left: 5px;
    margin-top: 10px;
}

.selected-price {
    margin-top: 20px;
    font-weight: bold;
}

.price-option-2 {
    display: flex;
    align-items: center;
}


.transfer-note {
    margin-top: 5px;
}

.rad-ton[type="radio"] {
    display: none;
}

.rad-but {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.rad-but::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    box-sizing: border-box;
}

.rad-ton[type="radio"]:checked+label::before {
    background-color: #1852ff;
    /* Seçilme rengi */
    border-color: #fff;
}

.step2-msg {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.nav-top {
    background: #cec8c8;
}

.nav-top>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top .left,
.nav-top .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-social>a {
    color: #444 !important;
    font-size: 14px;
    line-height: 20px;
    min-width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    transition: 0.2s ease 0s;
}

.nt-social>a:last-child {
    margin-right: 0;
}

.nt-social>a:after {
    content: "";
    position: absolute;
    top: 5px;
    right: -5px;
    border-right: solid 1px rgba(255, 255, 255, 0.8);
    height: calc(100% - 10px);
    width: 100%;
}

.nt-social>a:last-child:after {
    content: none;
}

.nt-social>a:hover {
    color: #fb001c !important;
}

.nt-lang {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-lang>a {
    margin-right: 10px;
    font-size: 25px;
    line-height: 20px;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease 0s;
    border-radius: 2px;
}

.nt-lang>a:last-child {
    margin-right: 0;
}

.nt-lang>a:hover {
    background: rgba(255, 255, 255, 0.5);
}

.blog-image {
    padding-top: calc(700 / 1600 * 100%);
    margin-bottom: 10px;
    overflow: hidden;
}

.blog-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.blog-image:hover>img {
    transform: scale(1.1);
}


.leftf {
    float: left;
    padding: 10px 10px;
    position: relative;
    left: 7px;
}

.leftf.dotted-gradient {
    background-image: linear-gradient(to bottom, #000 40%, rgba(255, 255, 255, 0) 20%);
    background-position: left;
    background-size: 1px 5px;
    background-repeat: repeat-y;
}

.bold {
    font-weight: 700;
}


.new-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    width: 100%;
}


.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #f2f2f2;
    border: solid 1px #222;
}

.msg-box i {
    min-width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 16px;
    line-height: 22px;
    background: #b31d1d;
    border-radius: 3px;
}

.msg-box span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #424242;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #424242;
}


.destination-item>.desc .dm {
    color: #ff2525;
    font-weight: 300;
    font-size: 13px;
}



.blog-img {
    position: relative;
    display: block;
    width: 100%;
}

.blog-img>div {
    position: relative;
    overflow: hidden;
    padding-top: calc(2 / 4 * 100%);
}

.blog-img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-container {
    background: #FFF;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}

.blog-details {
    position: relative;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.blog-desc {
    width: 90%;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.blog-p {
    color: #222222d6;
    font-size: 13px;
    font-weight: 400;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #424242 !important;
}

.add-border {
    border: solid 1px #000;
    border-radius: 10px;
}


.payment-method label {
    color: #424242;
}


.container-1200 {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.blog-title {
    color: #fff;
    text-shadow: 0px 0px 2px #ffffffbf;
}

.mt-40px {
    margin-top: 40px;
}


.page-gallery {
    position: relative;
}

.page-gallery .row {
    margin-left: -5px;
    margin-right: -5px;
}

.page-gallery>.gal-btn {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.page-gallery .row>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.page-gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    margin-bottom: 8px;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.page-gal-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.2s ease 0s;
}

.page-gal-item:hover:after {
    opacity: 1;
}

.page-gal-item:hover>img {
    transform: scale(1.1);
}

.page-gal-item>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}




.gal-btn {
    border: solid 1px #00796B;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    transition: 0.2s ease 0s;
    background: #00796B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
}


.tour-form {
    border: solid 1px transparent;
    border-radius: 5px;
    padding: 15px;
    background: #222;
}

.send-ok {
    margin: 10px 15px 10px 0px;
    padding: 10px 10px 10px 5px;
    border-radius: 5px;
    border: solid 1px #d61d1d;
    color: #fff;
    background: #222;
}

.send-ok-close {
    color: #aaa;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 0;
    background-color: transparent;
    border: 0;
}

.voucher-submit {
    padding: 12px 2px 12px 2px;
    font-size: 15px;
    font-weight: 700;
    background-color: #349f34;
}


.form-bolge-small{
    font-size: 12px;
    Margin-left: 12px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    float: right;
    text-align: right;
    position: absolute;
    right: 15px;
}