/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*::after,
*::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    line-height: 1.6;
    font-size: 1.6rem;
    font-family: "Roboto";
    background-color: #1b75ba;
    direction: rtl;
    font-family: "Kalame Regular";
}

a {
    text-decoration: none;
}

/* ====== Header and Menu Css Start ====== */

.logo {
    width: 10.8rem;
    margin: 2rem;
}

.logo-img {
    height: 100%;
    width: 100%;
}

.header-title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    padding-left: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-title p {
        font-family: "Kalame Bold";
        font-size: 5rem;
        color: #1b75ba;
        text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    }

        .header-title p:last-child {
            margin-right: 0.9rem;
        }

.nav__btn {
    height: 5rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav__btn-line {
    display: none;
    width: 5rem;
    height: 0.6rem;
    border-radius: 0.5rem;
    background-color: white;
    position: relative;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

    .nav__btn-line::before,
    .nav__btn-line::after {
        content: "";
        position: absolute;
        width: 5rem;
        height: 0.6rem;
        border-radius: 0.5rem;
        background-color: white;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    .nav__btn-line::before {
        top: -1.2rem;
    }

    .nav__btn-line::after {
        top: 1.2rem;
    }

.nav__btn--open .nav__btn-line {
    background-color: transparent;
}

    .nav__btn--open .nav__btn-line::after {
        -webkit-transform: translateY(-12px) rotate(-45deg);
        -ms-transform: translateY(-12px) rotate(-45deg);
        transform: translateY(-12px) rotate(-45deg);
    }

    .nav__btn--open .nav__btn-line::before {
        -webkit-transform: translateY(12px) rotate(45deg);
        -ms-transform: translateY(12px) rotate(45deg);
        transform: translateY(12px) rotate(45deg);
    }

.nav__menu {
    display: none;
    position: fixed;
    top: 0;
    right: calc((100% - 7rem) * -1);
    bottom: 0;
    width: calc(100% - 7rem);
    background: transparent;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    z-index: 1;
    padding: 2.5rem;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.nav__menu--open {
    right: 0;
}

.nav-menu__item {
    margin-bottom: 2rem;
    border-bottom: 1px solid hsl(205, 17%, 64%);
}

.nav-menu__link {
    font-family: "Kalame Bold";
    font-size: 2.5rem;
    color: #ffd55a;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border: 2px solid #148bca;
    border-radius: 1rem;
    width: 100%;
    height: 6.3rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1b75ba), color-stop(215%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 45%, #90d3f5 215%);
    background: linear-gradient(0deg, #1b75ba 45%, #90d3f5 215%);
}

.menu-item {
    position: relative;
    border-left: 4px solid;
    -o-border-image: -o-linear-gradient(left, #1b75ba, #90d3f5) 1 100%;
    border-image: -webkit-gradient(linear, left top, right top, from(#1b75ba), to(#90d3f5)) 1 100%;
    border-image: linear-gradient(to right, #1b75ba, #90d3f5) 1 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

    .menu-item:last-child {
        border-left: none;
    }

.menu-item__link {
    color: white;
    font-size: 2.4rem;
}

.header-elemnet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.down {
    font-family: "Kalame Bold";
}

    .down::before {
        position: absolute;
        font-family: "Font Awesome 6 Free";
        font-size: 2rem;
        line-height: 3rem;
        color: white;
        font-weight: 900;
        content: "\f107";
        background-color: #1b75ba;
        border-radius: 50%;
        width: 2.5rem;
        height: 2.5rem;
        top: -25px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

/* ====== Header and Menu Css End ====== */

/* =========== MainPage css Start ============ */

.slider {
    width: 100%;
    position: relative;
}

.slide {
    height: 100%;
    width: 100%;
}

.btn-left,
.btn-right {
    color: #addde3;
    font-size: 3rem;
    line-height: 0;
    position: absolute;
    top: 45%;
}

.btn-left {
    left: 2%;
}

.btn-right {
    right: 2%;
}

.fade {
    -webkit-animation-name: fade;
    animation-name: fade;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


.content {
    width: 100%;
    background-color: #f8eee3;
    border-radius: 1.5rem;
    padding: 5rem;
}

.content-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form {
    width: 37rem;
    height: 45rem;
}

.form__top {
    width: 100%;
    height: 7.9rem;
    position: relative;
}

.form__tabbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn-group {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 0.3rem;
}

    .btn-group:last-child {
        margin-left: 0;
    }

.form__btn {
    font-size: 2.3rem;
    color: #909295;
    height: 4rem;
    display: block;
    background-color: white;
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
    margin-top: -0.6rem;
}

.form__btn--active {
    background-color: #4093cd;
    color: white;
    border-top: 2px solid #148bca;
    border-left: 2px solid #148bca;
    border-right: 2px solid #148bca;
}

.form__logo {
    color: #909295;
    font-size: 2.5rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #f8f4f1;
    border-radius: 50%;
    text-align: center;
    line-height: 4.4rem;
}

.btn-group {
    text-align: center;
}

.form__panel {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1b75ba), color-stop(215%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 45%, #90d3f5 215%);
    background: linear-gradient(0deg, #1b75ba 45%, #90d3f5 215%);
    border-left: 2px solid #148bca;
    border-right: 2px solid #148bca;
    border-bottom: 2px solid #148bca;
    padding: 3.6rem;
    direction: ltr;
    border-radius: 0 0 1.5rem 1.5rem;
    height: 37.1rem;
}

.form__search {
    display: none;
}

.form__search--active {
    display: block;
}

.form__title {
    display: block;
    font-size: 1.8rem;
    color: white;
}

.form__combo {
    font-family: "Kalame Regular";
    font-size: 1.8rem;
    width: 100%;
    height: 3rem;
    border: 1px solid #aeaeae;
    margin-bottom: 1rem;
}

.form-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form__input {
    width: 4.4rem;
    height: 3.5rem;
    border: 1px solid #aeaeae;
    margin-right: 0.6rem;
}

.form__panel__login {
    direction: rtl;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form__panel__login__hello {
    color: #f6ece1;
    font-family: "Kalame Bold";
    font-size: 3rem;
}

.form__panel__login__date {
    font-size: 2rem;
    color: #f6ece1;
    margin-bottom: 2rem;
}

.form__panel__text {
    direction: rtl;
    font-size: 2rem;
    color: #f6ece1;
    text-align: justify;
}


.btn-search {
    font-size: 1.8rem;
    border: 2px solid #b0d1dc;
    border-radius: 1rem;
    color: white;
    padding: 0.5rem 2rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1b75ba), color-stop(215%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 45%, #90d3f5 215%);
    background: linear-gradient(0deg, #1b75ba 45%, #90d3f5 215%);
}

.btn-reserve {
    margin-top: 0.5rem;
}

.btn-panel {
    margin-bottom: 1rem;
}

.form__one-btn {
    color: #f6ece1;
    font-family: "Kalame Bold";
    font-size: 3rem;
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
    width: auto;
    height: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 1rem;
}

.btn-yellow {
    color: #ffd55a;
}

.form__panel-tribon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form__panel-img {
    max-width: 100%;
    max-height: 100%;
    margin-left: 0;
}

.form__digi {
    padding: 2.5rem 2rem;
}

.digi-tbl {
    font-family: "Kalame Bold";
    font-size: 2.7rem;
    color: #1b75b7;
    border-collapse: separate;
    border-spacing: 0 0.4em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .digi-tbl td {
        background-color: white;
        border-top: 2px solid #acacac;
        border-bottom: 2px solid #acacac;
        text-align: center;
        color: #1b75b7;
    }

        .digi-tbl td:last-child {
            border-right: 2px solid #acacac;
            text-align: right;
            padding-right: 0.5rem;
            font-family: "Barlow Bold";
            color: #e5b438;
        }

        
        .digi-tbl td:first-child {
            border-left: 2px solid #acacac;
            text-align: left;
            padding-left: 0.5rem;
            
        }

.digi-tbl-gif {
    vertical-align: middle;
    width: 4.5rem;
}

.crypto {
    width: 4.5rem;
    vertical-align: middle;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.angel {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1b75ba), color-stop(215%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 45%, #90d3f5 215%);
    background: linear-gradient(0deg, #1b75ba 45%, #90d3f5 215%);
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    line-height: 1.3;
    color: white;
    text-align: center;
    font-size: 1.3rem;
}

.footer-box-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.footer-box {
    width: 37rem;
    height: 13.5rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1b75ba), color-stop(215%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 45%, #90d3f5 215%);
    background: linear-gradient(0deg, #1b75ba 45%, #90d3f5 215%);
    border: 2px solid #148bca;
    border-radius: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.4rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2rem;
}

.footer-pic {
    height: 9rem;
    width: 9rem;
}

.footer-desc {
    width: 20rem;
    direction: ltr;
    position: relative;
}

.des-phone {
    font-family: "Barlow Med";
}

.footer-title {
    color: white;
    font-family: "Kalame Bold";
    font-size: 3rem;
}

.footer-des {
    color: white;
    font-size: 1.8rem;
    width: 15rem;
}

.angel-footer {
    position: absolute;
    bottom: 1rem;
    right: 3rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#1b75ba), to(#90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 0%, #90d3f5 100%);
    background: linear-gradient(0deg, #1b75ba 0%, #90d3f5 100%);
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    line-height: 1.3;
    color: white;
    text-align: center;
    font-size: 1.3rem;
}

/* =========== MainPage css End ============ */

/* =========== Doviz css Start ============ */

.doviz-container {
    width: 100%;
    padding: 6rem;
}

.tbls {
    margin-bottom: 6rem;
}

.tbl-doviz {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1rem 1.3rem;
}

.tbl-doviz__caption {
    padding: 0 1rem;
}

    .tbl-doviz__caption h2 {
        font-family: "Kalame Black";
        font-size: 3rem;
        color: #1b75b7;
        background-color: #f6ece1;
        border-radius: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }

.tbl-doviz__caption--mavi h2 {
    color: #f6ece1;
    background-color: #26a5dc;
}

.tbl-doviz thead {
    font-family: "Kalame Black";
    font-size: 3rem;
    color: #f6ece1;
    background-color: transparent;
}

    .tbl-doviz thead th {
        border: 3px solid #f6ece1;
        border-radius: 3rem;
    }

.tbl-doviz tbody {
    font-family: "Kalame Regular";
    font-size: 2.4rem;
    color: #1b75b7;
    background-color: #f6ece1;
    text-align: center;
}

    .tbl-doviz tbody td {
        border-radius: 3rem;
        padding: 0.7rem;
    }

.flag {
    width: 3.4rem;
    height: 3.4rem;
    vertical-align: middle;
}

.doviz-aciklama {
    padding: 0 5rem;
    font-size: 2.3rem;
    color: white;
    line-height: 3.5rem;
    text-align: justify;
}

/* =========== Doviz css End ============ */

/* =========== kargo css Start ============ */
.kargo-container {
    padding: 8rem 0;
}

.kargo-caption {
    font-family: "Kalame Black";
    font-size: 3.5rem;
    color: #f6ece1;
    padding: 0 16rem;
    text-align: center;
}

.kargo-vector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4rem 0;
}

.kargo-vector__img {
    width: 30rem;
    height: 30rem;
    opacity: 30%;
}

.kargo-footer {
    padding: 0 15rem;
    font-family: "Kalame Regular";
    font-size: 2.6rem;
    color: #f6ece1;
    text-align: center;
}

.kargo-img-container {
    width: 100%;
    margin: 2rem 0;
}

.kargo-img-container__img {
    opacity: 0.7;
    width: 100%;
    border-radius: 2rem;
}

/* =========== kargo css End ============ */

/* =========== Contact css Start ============ */
.contact-container {
    padding: 7rem 1.5rem;
}

.contact-map__grid {
    width: 100%;
    height: 30rem;
    border-radius: 2rem;
}

.contact-bilgiler {
    font-family: "Barlow Med";
    color: #f6ece1;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    direction: ltr;
    padding: 5rem 3rem 0 3rem;
}

.contact-address:first-child {
    width: 37rem;
}

.contact-address:last-child {
    padding-right: 10rem;
}

.contact-address h2 {
    font-family: "Barlow bold";
}
/* =========== Contact css End ============ */

/* =========== Ticket css Start ============ */

.ticket-container {
    padding: 3rem 8rem;
}

.ticket-caption {
    font-family: "Kalame Black";
    font-size: 3rem;
    color: #1b75b7;
    background-color: #f6ece1;
    border-radius: 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.ticket-paraph {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.ticket-span {
    font-family: "Kalame Black";
}

.ticket-imgs {
    padding: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ticket-img {
    max-width: 33rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 1rem;
}

    .ticket-img img {
        max-width: 100%;
    }

.ticket-mg-btm {
    margin-bottom: 2rem;
}

.ticket-img-trans {
    max-width: 50rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 1rem;
}

    .ticket-img-trans img {
        max-width: 100%;
    }

.ticket-services {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    list-style: inside;
}

/* =========== Ticket css End ============ */

/* =========== Shopping css Start ============ */
.shopping-container {
    max-width: 99.5rem;
    margin: 5.5rem auto;
}

.shopping-caption {
    font-family: "Kalame Bold";
    color: #ffffff;
    text-align: center;
    font-size: 3.1rem;
}

.brand-wrapper {
    max-width: 74rem;
    margin: 7rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.brand {
    width: 23rem;
    height: 13rem;
    margin-bottom: 1.5rem;
    border: 2px solid black;
    border-radius: 2rem;
    background-color: #ffffff;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .brand img {
        width: 100%;
    }
/* =========== Shopping css End ============ */

/* =========== About css start ============ */

.about-svg-wrapper {
    margin-top: -5rem;
    margin-bottom: -10rem;
}

.mehrgan-cycle {
    -webkit-animation: change-color 7s infinite;
    animation: change-color 7s infinite;
}

@-webkit-keyframes change-color {
    0% {
        fill: #e5e5e5;
    }

    25% {
        fill: #f28b25;
    }

    50% {
        fill: #e9465c;
    }

    70% {
        fill: #3ab07d;
    }

    100% {
        fill: #09aaba;
    }
}

@keyframes change-color {
    0% {
        fill: #e5e5e5;
    }

    25% {
        fill: #f28b25;
    }

    50% {
        fill: #e9465c;
    }

    70% {
        fill: #3ab07d;
    }

    100% {
        fill: #09aaba;
    }
}

.about-tour:hover {
    fill: #1b75b7;
}

/* =========== About css End ============ */

/* ========== Footer Css Start ======== */

.footer-main {
    margin-top: 1rem;
}

.main-footer-border {
    width: 100%;
    height: 31rem;
    border-radius: 1.5rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #1b75ba), color-stop(250%, #90d3f5));
    background: -o-linear-gradient(bottom, #1b75ba 10%, #90d3f5 250%);
    background: linear-gradient(0deg, #1b75ba 10%, #90d3f5 250%);
}

.main-footer-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("../images/global.png");
    background-position: center;
    background-size: 49.8rem 28.5rem;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.main-footer-title {
    height: 13.5rem;
    
}

.main-footer-text {
    color: white;
    font-family: "Kalame Bold";
    font-size: 3.6rem;
    line-height: 4.5rem;
}

.main-footer-contact {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.left-contact {
    margin-right: 2rem;
}

.contact-content {
    color: white;
    font-size: 1.8rem;
    font-family: "Barlow Med";
}

.let-space {
    letter-spacing: 0.13rem;
}

.footer-icon {
    margin-right: 0.6rem;
}

/* ========== Footer Css End ======== */
