@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

:root {
    /* Site Properties */
    --background-color: #fff;
    --main-color: #393E46;
    --alternate-color: #b36902;
    --main-text-color: #181a1f;
    --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: #181a1f;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --placeholder-color: #888;
    --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: var(--background-color);
    font-family: "Prompt", sans-serif;
}

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

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

::placeholder {
    color: #181a1f;
}

.panel-text {
    font-size: 13px;
    color: #181a1f;
    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;
}

.panel-text>* {
    color: #181a1f !important;
}




.section-gray {
    padding: 30px 0;
    background: #f9f9f9;
}

.section-blue {
    padding: 40px 0;
    background: #f0f0f5;
}

.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: #000;
    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: #000;
    padding: var(--button-padding);
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px;
}

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

.main-btn:hover {
    background: #000;
}

.main-btn>span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
    line-height: 28px;
    letter-spacing: .15px;
    z-index: 10;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}


.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 0;
    background: #fcfcfc;
}

.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;
    border-radius: 8px;
    padding: 10px;
}

.sn-links>.item:hover {
    background-color: #f0f2f7;
}


.sn-links>.item>span {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #181a1f !important;
    font-weight: 600;
    transition: var(--main-transition);
    text-transform: capitalize;
}

.sn-links>.item:hover>span {
    color: #222 !important;
}


.sn-logo img {
    max-width: 220px;
}



.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(255 255 255 / 30%);
    box-shadow: var(--box-shadow);
    border-radius: 2px;
    border: solid 1px rgb(255 255 255);
}

.showcase-form .main-btn {
    height: 50px;
    width: 100%;
    background: linear-gradient(95.14deg, #e52c43, #ff6c00 91.74%);
    color: #fff;
    border-radius: 8px;
}

.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: #181a1f;
    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: #424242;
}

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


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

.main-title-white: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 #ffffff6b;
}

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

.badge-item {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    gap: 32px;
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px 20px 40px 24px;
    scroll-snap-align: center;
    min-height: 290px;
}

.badge-item i {
    font-size: 4rem;
    color: #a201ff;
}

.badge-item h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #181a1f;
    display: flex;
    width: auto;
}

.badge-item p {
    color: #181a1f;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.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: #000;
    padding: 3rem 0 0 0;
}

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

.ftr-logo img {
    width: 100%;
    filter: contrast(0) brightness(2);
}

.ftr-title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #fdfdfd;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.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: 12px;
    margin-right: 16px;
}

.ftr-links>li>a {
    display: block;
    font-size: 1rem;
    color: #b0b2b7 !important;
    letter-spacing: .15px;
}

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

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

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

.ftr-bottom-flex span {
    display: block;
    font-size: 16px;
    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: transparent;
    font-size: 20px;
    color: #000 !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: #28A0D8;
    color: #fff;
    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: 300px;
    cursor: pointer;
    color: #181a1f;
    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: #424242aa;
    margin-right: 15px;
}

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

.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 #ddd;
    border-radius: 0;
    background-color: #fff;

}

.passengers-pad {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-bottom: 15px;
}

.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: #181a1f;
}



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

.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 {
    margin-bottom: 0 !important;
    padding: 15px;
    border: solid 1px #e3e5ea;
}

.car-selection:hover {
    background: #f0f2f7;
}

.car-selection:not(:last-child) {
    border-bottom: none !important;
}

.car-selection:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.car-selection:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

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

.car-image {
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%) !important;
}



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


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

.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: 10px;
    /* border: 1px solid #cecece !important; */
    box-shadow: 0 7px 29px 0 rgba(255, 255, 255, .1);
    padding: 1rem !important;
    margin-bottom: 1rem;
}

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

.checkout-label {
    color: #181a1f;
}

.checkout-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #181a1f;
    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 {
    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%;
    font-size: 16px;
    font-weight: 300;
    color: #181a1f;
    padding: unset;
    height: unset;
    border: none;
    background-color: transparent !important;
    min-height: 24px;
}

.iti {
    width: 100%;
}

.journey-details {
    padding: 1rem;
}

.step-2-car-name {
    font-size: 1.2rem;
    color: #a97b2c
}

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

.csg {
    color: #181a1f;
    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;
    font-weight: 600;
    color: #181a1f;
}

.datepicker-group {
    position: relative;
}

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

.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: #a97b2c;
    color: #fff;
    border-color: #a97b2c;
}

.btn-primary.focus,
.btn-primary:focus {
    background-color: #a97b2c;
    color: #fff;
    border-color: #a97b2c;
    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 #a97b2c;
    background-color: #222;
    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: #181a1f;
}

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

.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: #181a1f;
}



.form-box {
    background: transparent;
    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;
    background: transparent;
    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: #181a1f;
    margin-bottom: 10px;
}

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

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

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

.rez-number-box>span:last-child {
    display: block;
    padding: 10px 15px;
    background: none;
    border: solid 2px #181a1f;
    color: #181a1f;
    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: #181a1f;
}

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

.destination-item:hover {
    /* transform: scale(0.9); */
}

.destination-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 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 {
    position: relative;
    transition: 0.4s ease 0s;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: flex-start;
}

.destination-item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0), transparent);
}


.destination-item .desc>.airport {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    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: 500;
    color: #fff;
    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: #f8d67e;
    transition: 0.4s ease 0s;
    border-radius: 5px;
}

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


.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: 16px;
    font-weight: 600;
    color: #fff;
}

.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: #181a1f
}


.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: #181a1f;
    margin-top: 30px !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: #181a1f !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;
    padding: 0px 30px;
}

.social-icons {
    width: 100%;
}


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

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

.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: 650px;
    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: 300px;
    left: 50px;
    pointer-events: none;
    z-index: 10;
    text-align: start;
    width: 100%;
}

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

.slide-desc .desc {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #181a1f;
    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;
    bottom: 50px;
}




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

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

.f-white {
    /*    color: #fff !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: #666;
    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>.title[aria-expanded="true"] {

    background-color: #2c98a9;
}

.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 #a97b2c;
    color: #a97b2c;
    margin-right: 10px;
}

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

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

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


.ftr-links i {
    position: relative;
    color: #fff !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;
}


.telegram-fixed {
    position: fixed;
    bottom: 100px;
    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: #32aadd;
    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;
}
.telegram-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: 20px;
    line-height: 28px;
    text-align: center;
    color: #181a1f;
    font-weight: 600;
    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: 18px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 600;
    color: #fff !important;
    border: none;
    background: #000;
    transition: 0.2s ease 0.1s;
    overflow: hidden;
    border-radius: 5px;
    white-space: nowrap;
    width: 100%;
}

.price-box>.main-btn-2:hover {
    background: #555;
    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: #181a1f;
}

.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-color: #918c84;
}

.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: #fff !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: #ab7a2e !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(360 / 1140 * 100%);
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
}

.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, #fff 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: #222;
    border: solid 1px #222;
}

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


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

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


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




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

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


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


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


.blog-title {
    color: #181a1f;
    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 #a97b2c;
    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;
}


.blog-item {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 20px
}

.blog-item:hover>.blog-image>.title {
    padding: 16px 8px
}

.blog-item>.blog-image {
    width: 100%;
    position: relative;
    overflow: hidden
}

.blog-item>.blog-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease 0s
}

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

.blog-item>.blog-image>.title {
    transition: .4s ease 0s;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .6);
    color: #fff !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.blog-item>.blog-image>.title>h2 {
    display: block;
    font-size: 17px;
    line-height: 18px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 10px;
    margin: 0
}

.blog-item>.blog-image>.title>small {
    display: block;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    white-space: nowrap
}

.blog-item>.blog-desc {
    width: 100% !important;
    padding: 10px 12px;
    color: #181a1f;
}

.blog-item>.blog-desc>p {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: #444;
}


.blog-item.main-page {
    margin-bottom: 0;
}


.page-box {
    display: block;
    padding: 15px;
    border-radius: var(--border-radius);
    background: #fff;
    margin-bottom: var(--main-gap);
}

.page-box.gal-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.page-box.full-height {
    height: calc(100% - var(--main-gap));
}

.page-box.limit-height {
    height: 298px;
}



.car-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(600/700*100%);
}

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

.car-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}



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

.lang-dropdown {
    animation: slideUpAndFade .4s cubic-bezier(.16, 1, .3, 1);
}




.lang-dropdown.show {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    transform: none !important;
    animation: slideUpAndFade .4s cubic-bezier(.16, 1, .3, 1);
    right: calc(1080/1920*20%) !important;
    left: unset !important;
    top: 60px !important;
}


.list-group-item {
    border: none !important;
}

.list-group-item span {
    color: #424242;
}

.list-group-item:hover {
    background-color: #f0f2f7;
    outline: none;
}

@keyframes slideUpAndFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2px);
        transform: translateY(2px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.showcase-forum {
    padding: 16px;
    background: #a201ff;
    box-shadow: 0 12px 28px #64666b;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.search-groups {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background: #f0f2f7;
    height: 58px;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 13px;
    border: solid 2px transparent;
    outline: none;
}



.search-groups:last-child {
    margin-bottom: 0;
}

.search-groups input {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: #181a1f;
    padding: 0 10px;
    border: none;
    padding-left: 25px;
    background-color: transparent !important;
    min-height: 24px;
}

.search-groups input::placeholder {
    color: #000;
    font-weight: 400;
}

.search-groups>i {
    position: absolute;
    bottom: 13px;
    left: 14px;
    font-size: 1.4rem;
    color: #000;
}

.search-groups>label {
    padding-left: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0 !important;
}



.search-groups.button-group {
    padding: 5px;
    background-color: transparent !important;
}

.button-group>button {
    width: 100%;
}

.hero-div {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-width: 320px;
    position: relative;
    width: 100%;
}

.hero-title {
    font-size: 32px;
    line-height: 2;
    font-weight: 500;
    color: #181a1f;
    margin: 10px 0;
}


.form-title {
    background-color: transparent;
    color: #fff;
    font-size: 27px;
    line-height: 28px;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
    z-index: 1;
    font-weight: 600;
}


h2.subtitle {
    font-size: 20px;
}


.socials::after {
    background-color: #181a1f;
    content: "";
    display: block;
    align-self: center;
    flex-shrink: 0;
    height: 50px;
    width: 1px;
    position: absolute;
    right: 0;
}

.socials:last-child::after {
    display: none;
}

.main-title-new {
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #181a1f;
    text-align: left;
    position: relative;
}

.new-route {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.new-route span {
    font-size: 16px;
    font-weight: 400;
    color: #181a1f;
    letter-spacing: 0.15px;
}

.new-route i {
    margin-left: 8px;
}

.search-groups.currency {
    height: 60px;
}

.search-groups.currency>label {
    padding-left: 0;
}

.search-groups .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #181a1f !important;
    padding-left: 0 !important;
}

.search-groups.currency .select2-container {
    width: 100% !important;
}


.search-groups.currency .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
}

.select2-container--open .select2-dropdown--below {
    /* border-top: 1px solid #aaa !important; */
    border-radius: 5px !important;
}

.select2-container--default .select2-results>.select2-results__options {
    border-radius: 5px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f0f2f7 !important;
    color: #181a1f !important;
}

.select2-results__option {
    padding: 10px !important;
}


.my-card {
    background-color: transparent;
    border: none;
}


.blog-item.main-page>h2 {
    color: #181a1f;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
}

.blog-item.main-page>.blog-desc {
    width: 100% !important;
    padding: 10px 0;
    color: #181a1f;
}


.section-grey {
    background-color: #fbfbfd !important;
}

.br-5 {
    border-radius: 5px !important;
}

.border-bottom-1 {
    border-bottom: solid 1px #313338 !important;
}


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

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

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

.policies>a:first-child {
    margin-left: 32px;
}

.policies>a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #b0b2b7;
    margin-right: 32px;
    margin-bottom: 5px;
    font-weight: 400;
}

.policies>a:hover {
    text-decoration: underline !important;
    color: #fdfdfd !important;
}

.p-all-12 {
    padding: 12px !important;
}


.mr-20 {
    margin-right: 20px !important;
}

.swiper-pagination-bullet-active {
    background: #64666b !important;
}



.step-breadcrumb {
    padding: 16px 8px;
}

.step-breadcrumb>ul {
    display: flex;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

.step-breadcrumb>ul>li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.step-breadcrumb>ul>li>.step-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.step-breadcrumb>ul>li>.step-name>span {
    color: #64666b;
    background-color: transparent;
    padding: 2px 10px;
    border-radius: 10px;
}

.step-breadcrumb>ul>li>.step-name>span.active {
    color: #181a1f;
    background-color: #f0f2f7;
}

.step-breadcrumb>ul>li>.circle-group {
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .1px;
    border-radius: 8px;
    border: 2px solid #e3e5ea;
}

.step-breadcrumb>ul>li>.circle-group.active {
    color: red;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 8px;
}

.step-breadcrumb>ul>li>.circle-group:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 6px;
    left: -6px;
    order: -1;
    width: 6px;
    height: 2px;
}

.step-breadcrumb>ul>li:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 6px;
    order: -1;
    width: calc(100% - 16px);
    height: 2px;
    background-color: #e3e5ea;
    left: calc(50% + 8px);
}


.step-route-box {
    background-color: #f0f2f7;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    padding: 16px;
}

.step-route-box>h2 {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.step-route-date {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    margin-top: 8px;
}

.step-route-date>.date-time {
    box-sizing: border-box;
    color: #64666b;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ppv {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 5px;
    margin-left: 5px;
}

.features-toggle-container {
    margin-top: 10px;
}

.features-toggle-btn {
    background: transparent;
    border: unset;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    display: block;
    text-align: left;
    transition: all 0.3s ease;
}

.features-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}


.features-content {
    width: 100%;
}

.features-content .item {
    font-size: 13px;
    font-weight: 200;
    color: #525252;
}

.input-groups {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background: #f0f2f7;
    height: 58px;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 13px;
    border: solid 2px transparent;
    outline: none;
}

.input-groups:last-child {
    margin-bottom: 0;
}

.input-groups>input {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: #181a1f;
    padding: unset;
    height: unset;
    border: none;
    background-color: transparent !important;
    min-height: 24px;
}

.input-groups>input::placeholder {
    color: #424242aa;
    font-weight: 300;
    font-size: 14px;
}

.form-group.alternate>.iti>input::placeholder {
    color: #424242aa;
    font-weight: 300;
    font-size: 14px;
}

.input-groups>i {
    position: absolute;
    bottom: 13px;
    left: 14px;
    font-size: 1.4rem;
    color: #424242;
}

.input-groups>label {
    font-weight: 600;
    color: #424242aa;
    margin-bottom: 0 !important;
}

.iti__selected-flag {
    padding: unset !important
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}



.input-groups .select2-container {
    width: 100% !important;
}

.input-groups .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #181a1f !important;

}


.input-groups .select2-container--default .select2-selection--single {

    background-color: unset !important;
    border: none;
    border-radius: 0px;
}



.blog-card {
    width: 100%;
    background: #f0f2f7 !important;
    display: flex;
    flex-direction: column;
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 0 5%;
}


.blog-content {
    position: relative;
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 1 1;
    height: calc(100% - 200px);
    min-height: 200px;
}

.blog-content .category {
    text-transform: capitalize;
    color: #181a1f;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
}

.blog-content h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    color: #181a1f;
}

.blog-content .content {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: #181a1f;
    font-weight: 300;
}

.blog-content .date {
    margin-top: auto;
    padding-top: 20px;
    color: #181a1f;
    line-height: 28px;
    letter-spacing: 0;
}


.text-box {
    overflow: hidden;
}

.map-box {
    float: left;
    width: 600px;
    height: 400px;
    margin-right: 30px;
    margin-top: 20px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
}


.es-widget-title {
    display: none !important;
}

.eapps-instagram-feed-header-container {
    display: none;
}


html.modal-active,
body.modal-active {
    overflow: hidden;
}

#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 1;
}

#modal-container.six {
    transform: scale(1);
}

#modal-container.six .modal-background {
    background: rgba(0, 0, 0, .0);
    animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modall {
    background-color: transparent;
    animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modall h2,
#modal-container.six .modal-background .modall p,
#modal-container.six .modal-background .modall button {
    opacity: 0;
    position: relative;
    animation: modalContentFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modall .modal-svg rect {
    animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out {
    animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.six.out .modal-background {
    animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall {
    animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall h2,
#modal-container.six.out .modal-background .modall p,
#modal-container.six.out .modal-background .modall button {
    animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall .modal-svg rect {
    animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}


#modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, .8);
    text-align: center;
    vertical-align: middle;
}

#modal-container .modal-background .modall {
    background: white;
    padding: 50px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
}

#modal-container .modal-background .modall h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
}

#modal-container .modal-background .modall p {
    font-size: 18px;
    line-height: 22px;
}

#modal-container .modal-background .modall .modal-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 3px;
}

#modal-container .modal-background .modall .modal-svg rect {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 778;
    stroke-dashoffset: 778;
}


@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes fadeIn {
    0% {
        background: rgba(0, 0, 0, .0);
    }

    100% {
        background: rgba(0, 0, 0, .7);
    }
}

@keyframes fadeOut {
    0% {
        background: rgba(0, 0, 0, .7);
    }

    100% {
        background: rgba(0, 0, 0, .0);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8) translateY(1000px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }
}

@keyframes scaleDown {
    0% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

    100% {
        transform: scale(0.8) translateY(1000px);
        opacity: 0;
    }
}

@keyframes scaleBack {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.85);
    }
}

@keyframes scaleForward {
    0% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes quickScaleDown {
    0% {
        transform: scale(1);
    }

    99.9% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes slideUpLarge {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes slideDownLarge {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(150px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(150px);
    }
}

@keyframes blowUpContent {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    99.9% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(0);
    }
}

@keyframes blowUpContentTwo {
    0% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes blowUpModal {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes blowUpModalTwo {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes roadRunnerIn {
    0% {
        transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
    }

    70% {
        transform: translateX(30px) skewX(0deg) scaleX(0.9);
    }

    100% {
        transform: translateX(0px) skewX(0deg) scaleX(1);
    }
}

@keyframes roadRunnerOut {
    0% {
        transform: translateX(0px) skewX(0deg) scaleX(1);
    }

    30% {
        transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
    }

    100% {
        transform: translateX(1500px) skewX(30deg) scaleX(1.3);
    }
}

@keyframes sketchIn {
    0% {
        stroke-dashoffset: 778;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes sketchOut {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 778;
    }
}

@keyframes modalFadeIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: white;
    }
}

@keyframes modalFadeOut {
    0% {
        background-color: white;
    }

    100% {
        background-color: transparent;
    }
}

@keyframes modalContentFadeIn {
    0% {
        opacity: 0;
        top: -20px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes modalContentFadeOut {
    0% {
        opacity: 1;
        top: 0px;
    }

    100% {
        opacity: 0;
        top: -20px;
    }
}

@keyframes bondJamesBond {
    0% {
        transform: translateX(1000px);
    }

    80% {
        transform: translateX(0px);
        border-radius: 75px;
        height: 75px;
        width: 75px;
    }

    90% {
        border-radius: 3px;
        height: 182px;
        width: 247px;
    }

    100% {
        border-radius: 3px;
        height: 162px;
        width: 227px;
    }
}

@keyframes killShot {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(300px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fadeToRed {
    0% {
        background-color: rgba(0, 0, 0, .6);
    }

    100% {
        background-color: rgba(255, 0, 0, .8);
    }
}

@keyframes slowFade {
    0% {
        opacity: 1;
    }

    99.9% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

.search-groups.pax {
    width: 48%;
}

.search-groups.pax>label {
    padding-left: 15px;
}

.search-groups.pax input {
    padding-left: 15px;
    width: 100%;
}

.gap-18 {
    gap: 18px;
}


.search-groups.pax .count-btn {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 6px;
    cursor: pointer;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    margin: 0;
    border: none;
    width: 25px;
    height: 25px;
    font-size: 25px;
    letter-spacing: 0;
    line-height: 0;
}

.search-groups.pax .count-btn:hover {
    background-color: rgba(0, 0, 0, .6);
}

.search-groups.pax .count {
    display: flex;
    gap: 40%;
    height: 40px;
}


.search-groups.pax .count .start {
    display: flex;
    align-items: center;
    justify-content: start;
}

.search-groups.pax .count .end {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 5px;
    margin-bottom: 5px;
}



.destination-image {
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%) !important;
    border-radius: 10px;
}



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



.gap-13{
    gap: 13px;
}


.gap-none{
    gap: 0 !important;
}



.ftr-tursab img{
    width: 100%;
}