@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --manrope: "Manrope", sans-serif;

    --bg: #F8F8F8;
    --nav-color: #90161C;
    --dark-red: #961820;
    --main: #AD1818;
    --light: #F16122;
    --61D: #78161D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--manrope) !important;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
}

a {
    text-decoration: none;
}

.container-fluid {
    max-width: 1920px;
    padding: 0 3rem !important;
}

.container-lg {
    max-width: 1600px;
}

.container-sm {
    max-width: 861px;
}

.container-xs {
    max-width: 730px;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: relative;
    z-index: 999;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: var(--nav-color);
    display: flex;
    align-items: center;
    position: relative;
    position: fixed;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    min-width: 250px;
}

/* LOGO */
.nav-logo img {
    height: 95px;
    transition: height .25s ease;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: .2s;
}

.nav-menu a.active {
    font-weight: 800;
}

/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.socials {
    display: flex;
    gap: 1.25rem;
}

.socials a {
    color: #fff;
    font-size: 16px;
    transition: .2s;
}

.socials a:hover {
    opacity: 1;
}

.line-vertical {
    width: .1px;
    height: 1.25rem;
    background-color: #ffffffd3;
}

/* =========================
   LANG DROPDOWN
========================= */
.lang-dd {
    position: relative;
}

.lang {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    opacity: .9;
    padding: .5rem .25rem;
}

.lang .lang-ic {
    transition: transform .2s ease;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 180px;

    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;

    padding: 10px;
    display: grid;
    gap: 6px;

    box-shadow: 0 3px 5px 1px #0000000f;

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: .18s ease;
    backdrop-filter: blur(10px);
}

.lang-menu a {
    color: #000;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
    opacity: .9;
    transition: .15s ease;
}

.lang-menu a:hover {
    background: rgba(0, 0, 0, .06);
    opacity: 1;
}

.lang-dd.is-open .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dd.is-open .lang .lang-ic {
    transform: rotate(180deg);
}

/* =========================
   HAMBURGER + RESPONSIVE
========================= */
.nav-toggle {
    position: relative;
    display: none;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
}

.nav-toggle__text {
    position: absolute;
    left: -2.8rem;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
}


/* Mobile panel */
.nav-mobile {
    display: none;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);

    transition: max-height .28s ease, opacity .18s ease, transform .18s ease;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.nav-mobile.is-open {
    display: block;
    max-height: 480px;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu--mobile {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
}

.nav-menu--mobile a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    opacity: .95;
}

.nav-mobile-bottom {
    padding: 14px 0 22px;
}

.socials--mobile {
    gap: 18px;
}

/* DESKTOP / MOBILE görünürlük */
.nav-menu--desktop,
.socials--desktop,
.line-vertical--desktop {
    display: flex;
}

@media (max-width: 991.98px) {
    .container-fluid {
        padding: 0 1.2rem !important;
    }

    .navbar-container {
        padding: 1.25rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu--desktop {
        display: none;
    }

    .socials--desktop,
    .line-vertical--desktop {
        display: none;
    }

    /* mobilde sticky boşluğu biraz düşür */
    .site-header.has-sticky-space {
        padding-top: 110px;
    }
}

.hero-section {
    height: 100vh;
    width: 100%;
    background-image: url(../img/Hero_Section.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
}

.mar-top {
    padding-top: 15rem;
}

.hero-section h1 {
    font-size: 72px;
    letter-spacing: -0.5px;
    font-weight: 800;

    /* GRADIENT TEXT */
    background: linear-gradient(90deg,
            #FFE28A 0%,
            #FFE28A 30%,
            #A07433 70%,
            #A07433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.hero-section .hero-desription {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-top: 1.5rem;
    max-width: 580px;
    width: 100%;
}

.hero-section .event-btn {
    margin-top: 2rem;
}

.btn-light {
    color: var(--61D);
    padding: 14px 32px;
    font-weight: 800;
    border-radius: 12px;
    background: #FFF;
    font-size: 16px;
}

#hero-splide img {
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 9/6;
    width: 100%;
    transform: scale(.85);
    position: absolute;
    right: 25rem;
    transition: all .35s ease;
    filter: brightness(.7);
}

#hero-splide .is-active img {
    transform: scale(1);
    aspect-ratio: 9/6;
    position: relative;
    right: 0;
    z-index: 1;
    opacity: 1;
    transition: all .4s ease;
    filter: brightness(1);
}

.splide__arrow {
    opacity: 1;
}

#hero-splide .splide__arrow {
    background-color: transparent;
    border: 3px solid #fff;
}

#hero-splide .splide__arrow svg {
    fill: #fff;
}

#hero-splide .splide__arrow--next {
    right: 8rem;
}

.area-two {
    margin-top: 3rem;
    position: relative;
}

.area-two .top-title {
    max-width: 650px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem auto;
}

.area-two .top-title h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-red);
    font-weight: 400;
}

.area-two .top-title h2 span {
    font-weight: 800;
}

.at-img img {
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 8/5;
    object-fit: cover;
}

.at-content h2 {
    max-width: 450px;
    flex-wrap: wrap;
    overflow: visible;
    width: 100%;
    font-size: 48px;
    letter-spacing: -0.5px;
    font-weight: 800;
    line-height: 56px;
    /* GRADIENT TEXT */
    background: linear-gradient(90deg,
            #AD1818 0%,
            #AD1818 30%,
            #F16122 70%,
            #F16122 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.at-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #5C5C5C;
    margin-top: 1.5rem;
}

.right-top-img {
    position: absolute;
    right: 0;
    top: 9rem;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

.left-bottom-img {
    position: absolute;
    left: 0;
    bottom: -18rem;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

.area-three {
    margin-top: 7rem;
}

.ath-title {
    text-align: center;
}

.ath-title h2 {
    flex-wrap: wrap;
    overflow: visible;
    width: 100%;
    font-size: 48px;
    letter-spacing: -0.5px;
    font-weight: 800;
    line-height: 65px;
    /* GRADIENT TEXT */
    background: linear-gradient(90deg,
            #AD1818 0%,
            #AD1818 20%,
            #F16122 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.ath-title p {
    color: #5C5C5C;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 675px;
    display: flex;
    justify-content: center;
    margin: 1rem auto;
}

.btn-primary {
    border-radius: 12px;
    background: var(--main);
    border-color: var(--main);
    padding: 12px 16px;
    font-weight: 510;
    font-size: 16px;
    box-shadow: 0 0 0 1px rgba(241, 97, 34, 0.06),
        0 1px 1px -0.5px rgba(241, 97, 34, 0.08),
        0 2px 2px -1px rgba(241, 97, 34, 0.08);
}

.btn-primary:hover {
    border-radius: 12px;
    background: var(--61D);
    border-color: var(--61D);
    padding: 12px 16px;
    font-weight: 510;
    font-size: 16px;
    box-shadow: 0 0 0 1px rgba(241, 97, 34, 0.06),
        0 1px 1px -0.5px rgba(241, 97, 34, 0.08),
        0 2px 2px -1px rgba(241, 97, 34, 0.08);
}

.ath-cards {
    margin-top: 3rem;
}

.ath-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: #FDFDFD;
    box-shadow: 0 -1px 2px 0 rgba(42, 51, 70, 0.08), 0 1px 2px -0.5px rgba(42, 51, 70, 0.08);
    overflow: hidden;
    padding: 2rem;
}

.ath-card .main-img {
    aspect-ratio: 3/2.5;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.ath-card .badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.ath-card .badges .badge-city {
    border-radius: 8px;
    border: 1px solid rgba(173, 24, 24, 0.10);
    background: rgba(173, 24, 24, 0.10);
    display: flex;
    height: 19px;
    padding: 10px 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--main);
    color: #AD1818;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.ath-card .badges .badge-events {
    border-radius: 8px;
    border: 1px solid rgba(120, 175, 99, 0.10);
    background: rgba(120, 175, 99, 0.10);
    display: flex;
    height: 19px;
    padding: 10px 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--main);
    color: #78AF63;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.ath-card .content .title-card {
    max-width: 250px;
    width: 100%;
    min-height: 55px;
}

.ath-card .content .title-card h2 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ath-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 1rem;
}

.ath-card ul li {
    margin-top: .5rem;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ath-card ul li img {
    margin-right: .5rem;
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 0;
}

.card-threecol {
    position: relative;
}

.area-three.card-threecol p {
    max-width: 850px;
}

.cards-discover {
    margin-top: 3rem;
}

.disc-card {
    width: 100%;
    height: 100%;
    padding: 40px;
    gap: 40px;
    border-radius: 24px;
    background: #FDFDFD;
    box-shadow: 0 -1px 2px 0 rgba(42, 51, 70, 0.08), 0 1px 2px -0.5px rgba(42, 51, 70, 0.08);
}

.disc-card img {
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(14, 63, 126, 0.04), 0 2px 1px -0.5px rgba(42, 51, 69, 0.00), 0 3px 3px -1.5px rgba(42, 51, 69, 0.06), 0 6px 6px -3px rgba(42, 51, 70, 0.07), 0 12px 12px -6px rgba(14, 63, 126, 0.09), 0 24px 24px -12px rgba(14, 63, 126, 0.13);
    aspect-ratio: 4.4/2.6;
    align-self: stretch;
    object-fit: cover;
    max-height: 262px;
    min-height: 262px;
    width: 100%;
}

.disc-card .square {
    aspect-ratio: 1/1;
    max-width: 250px;
    display: flex;
    justify-content: center;
    margin: 0rem auto;
}

.disc-card h2 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 2rem;
    margin-bottom: 0;
}

.title-history {
    text-align: center;
}

.kapadokya-history {
    margin-top: 5rem;
}

.history-card {
    padding: 6rem 6rem;
    border-radius: 30px;
    background-color: var(--main);
    background-image: url(../img/video-bg.jpg);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.history-card video {
    aspect-ratio: 16/7;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
}

.history-card h2 {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #FFE28A 32.01%, #A07433 100.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-card p {
    color: #E5E5E5;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 590px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gotr-area {
    text-align: center;
    margin-top: 10rem;
}

.gotr-area ul {
    display: inline-flex;
    gap: 2rem;
    color: #78161D;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.gotr-area h2 {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: -0.5px;
    background: linear-gradient(96deg, #AD1818 19.13%, #F16122 125.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gotr-area p {
    color: #5C5C5C;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 1.75rem 0;
}

footer {
    width: 100%;
    padding: 2rem 0;
    padding-bottom: 10rem;
    background-color: var(--dark-red);
    background-image: url(../img/footer-bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    margin-top: 10rem;
    position: relative;
}

.footer-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.footer-area ul {
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 30px;
    list-style: none;
}

.footer-area ul li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.footer-area ul.social-ul {
    gap: 20px;
}

.copy-right p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    line-height: 21px;
    opacity: 0.34;
    text-align: center;
    margin-top: 2rem;
}

.top-btn img {
    width: 30px;
    height: 30px;
}

.top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 100rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 9;
    background: var(--main);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(10px) scale(.98);
    pointer-events: none;
    transition: .25s ease;
}

.top-btn.is-show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.top-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.top-ic {
    color: #fff;
    /* ikon rengi */
}

/* =========================
   FULLSCREEN MOBILE MENU
========================= */
.mnav {
    position: fixed;
    inset: 0;
    z-index: 9999999;

    /* dış karartma */
    background: rgba(10, 10, 10, .55);

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.mnav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mnav__inner {
    height: 100vh;
    background-color: var(--nav-color);
    border-radius: 0;
    position: relative;
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-18px);
    background-image: url(../img/mobil-bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    transition: transform .35s cubic-bezier(.2, .9, .2, 1);
}

.mnav.is-open .mnav__inner {
    transform: translateY(0);
}

/* üst bar */
.mnav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mnav__brand img {
    height: 95px;
}

/* kapat butonu */
.mnav__close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;

    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.mnav__close i {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* linkler */
.mnav__links {
    list-style: none;
    margin: 0;
    margin-top: 2rem;
    padding: 34px 0 0;
    display: grid;
    gap: 36px;
    text-align: center;
    flex: 1;
    align-content: flex-start;
    /* dikey ortala */
}

.mnav__links a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

/* footer */
.mnav__footer {
    padding: 0 22px 0px;
    display: grid;
    gap: 18px;
    justify-items: center;
}

.hero-desription {}

.mnav__turkiye {
    display: grid;
    gap: 8px;
    justify-items: center;
    opacity: .95;
}

.mnav__turkiye img {
    height: 69.748px;
    margin-bottom: 1rem;
}

.mnav__site {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    letter-spacing: .6px;
}

.mnav__socials {
    display: flex;
    gap: 18px;
}

.mnav__socials a {
    color: #fff;
    font-size: 18px;
}

/* sadece mobilde */
@media (min-width: 993px) {
    .mnav {
        display: none;
    }
}

/* body scroll kilidi */
body.is-locked {
    overflow: hidden;
}

/* === ATH SPLIDE === */
.ath-splide .splide__track {
    overflow: visible;
}

/* Mobilde slider algısı */
@media (max-width: 991.98px) {
    .ath-cards {
        padding-left: 1rem;
    }

    .ath-splide .splide__slide {
        transition: transform .3s ease, opacity .3s ease;
    }
}

/* Desktop: 4'lü grid */
@media (min-width: 993px) {
    .ath-splide .splide__list {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .ath-splide .splide__slide {
        width: 100% !important;
    }
}

.crumb-area {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 9rem;
    padding: 7rem 0;
    background-color: var(--dark-red);
    background-image: url(../img/crumb-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    text-align: center;
}

.crumb-area h1 {
    font-size: 78px;
    font-style: normal;
    font-weight: 800;
    line-height: 89px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #FFE28A 32.01%, #A07433 100.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crumb-content {
    max-width: 900px;
    width: 100%;
    display: grid;
    justify-content: center;
    margin: 1rem auto;
}

.crumb-content p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

/* =========================
   FILTER BAR
========================= */
.filter-area {
    margin: 2rem 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   DROPDOWN
========================= */
.fdd {
    position: relative;
}

.fdd-btn {
    display: flex;
    min-width: 124px;
    padding: 20px;
    align-items: center;
    gap: 37px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(14, 63, 126, 0.06), 0 1px 1px -0.5px rgba(42, 51, 70, 0.08);
    border: none;
    color: #362E60;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fdd-ic {
    font-size: 18px;
    transition: transform .18s ease;
}

.fdd.is-open .fdd-ic {
    transform: rotate(180deg);
}

.filter-area .ri-arrow-down-s-line:before {
    content: "\ea4c" !important;
}

/* menu */
.fdd-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 220px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 8px;
    display: grid;
    gap: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    backdrop-filter: blur(10px);

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: .18s ease;
    z-index: 999;
}

.fdd.is-open .fdd-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fdd-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #1f1f1f;
    opacity: .92;
    transition: .15s ease;
}

.fdd-item:hover {
    background: rgba(0, 0, 0, .05);
    opacity: 1;
}

/* =========================
   SEARCH
========================= */
.fsearch {
    display: flex;
    width: 284px;
    height: 56px;
    padding: 0 20px 0 20px;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(14, 63, 126, 0.06), 0 1px 1px -0.5px rgba(42, 51, 70, 0.08);

    color: #362E60;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fsearch input::placeholder {
    color: #362E60 !important;
}

.fsearch-ic {
    font-size: 18px;
}

.fsearch input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
    color: #362E60;
}

.fsearch input::placeholder {
    color: rgba(0, 0, 0, .45);
}

.event-detail {
    margin-top: 12rem;
}

.eventde-content {
    width: 100%;
}

.eventde-content img {
    width: 100%;
    aspect-ratio: 8.5/4.5;
    object-fit: cover;
    border-radius: 16px;
}

.eventde-content h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.5px;
    background: linear-gradient(96deg, #AD1818 19.13%, #F16122 125.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.eventde-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    margin-top: .75rem;
    margin-bottom: 1.75rem;
}

.eventde-content .ath-card {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.eventde-content .ath-card .content .title-card {
    min-height: auto;
    max-width: 200px;
}

.eventde-content .ath-card .content .title-card h3 {
    color: #78161D;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navigator {
    margin: 1rem 0;
}

.navigator a,
.navigator i {
    color: #B1B1B1;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1px;
}

.farrow-icon {
    margin-right: 1.25rem;
    font-size: 13px !important;
}

.duyuru-area.area-three {
    margin-top: 0;
}

.duyuru-area.area-three .disc-card h2 {
    max-width: 400px;
    display: flex;
    align-items: center;
    margin: 2rem auto;
}

.discov-title {
    text-align: center;
}

.discov-title p {
    color: #5C5C5C;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 950px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1.5rem auto;
}

.discov-title h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: -0.5px;
    background: linear-gradient(96deg, #AD1818 19.13%, #F16122 125.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discover-area {
    margin-top: 3rem;
    margin-bottom: 7rem;
}

.square-disc {
    max-width: 100% !important;
    max-height: 100% !important;
    aspect-ratio: .95/1 !important;
}

.route-area {
    display: flex;
    justify-content: center;
    margin: 0rem auto;
}

.dinamik-gap {
    --bs-gutter-x: 5rem;
    position: relative;
}

.discover-area.ek-mar {
    margin-top: 6rem;
    margin-bottom: 3.5rem;
}

.discover-area.ek-mar .discov-title p {
    max-width: 780px;
}

.route-area .col-img {
    aspect-ratio: 4/4.4;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(14, 63, 126, 0.04), 0 2px 1px -0.5px rgba(42, 51, 69, 0.00), 0 3px 3px -1.5px rgba(42, 51, 69, 0.06), 0 6px 6px -3px rgba(42, 51, 70, 0.07), 0 12px 12px -6px rgba(14, 63, 126, 0.09), 0 24px 24px -12px rgba(14, 63, 126, 0.13);
}

.route-area h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(96deg, #AD1818 19.13%, #F16122 125.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: normal;
}

.route-area ul {
    list-style: none;
    padding: 0;
}

.route-area ul li {
    color: #5C5C5C;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.route-col-mar {
    margin: 7rem auto;
}

.svg-route {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.svg-route.two-sr {
    top: 30%;
}

.svg-route.three-sr {
    top: 70%;
}

.svg-route.two-sr2 {
    top: 23%;
}

.svg-route.four-sr2 {
    top: 73%;
}