/*
Theme Name: Total Child Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Author: Your Name
Author URI: https://your-site.com
Template: Total
Version: 1.0
*/
.event-photos .wpex-carousel__dots{
    margin-bottom: 40px;
}
/* Events Single */
.event-organizator img {
    border: 4px solid #c7ec26;
}

.event-heads {
    font-size: 1.5em !important;
    font-weight: bold !important;
    margin-bottom: 10px;
}

.wpex-m-0 h3 {
    margin: 0px !important;
}

.event-maca {
    background-image: url('/wp-content/uploads/2025/09/homepage-header-bg-pattern-3.svg');
    height: 200px;
    background-repeat: no-repeat;
    position: absolute;
    width: 220px;
    right: -150px;
    top: -150px;
}

/* ==========================================================================
   Event Info - Bilet Tasarımı (Üst/Alt Ortada Kesik + Border)
   ========================================================================== */
.event-info {
    background: linear-gradient(135deg, #f1ffe6 0%, #dff5c8 50%, #f1ffe6 100%);
    position: relative;
    padding: 30px 40px;
    margin: 20px auto;
    border: 3px dotted #cbe63f;
    border-radius: 16px;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 0px, rgba(203, 230, 63, 0.1) 10px, rgba(203, 230, 63, 0.1) 20px);
}

/* Üst ortada yarım daire kesik */
.event-info::before {
    content: '';
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 3px dotted #cbe63f;
    clip-path: inset(50% 0 0 0); /* Sadece alt yarısı görünsün */
}

/* Alt ortada yarım daire kesik */
.event-info::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 3px dotted #cbe63f;
    clip-path: inset(0 0 50% 0); /* Sadece üst yarısı görünsün */
}

/* Çentikleri gizle */
.event-info.nocut::before,
.event-info.nocut::after {
    display: none;
}

.event-info.nocut {
    background-image: none;
    border-style: none;
    background: linear-gradient(135deg, #f1ffe6 0%, #dff5c8 50%, #f1ffe6 100%);
}

/* Events Page */
#event-slider-container .wpex-carousel__dots.owl-dots {
    position: absolute;
    left: calc(100% - 24%);
    bottom: 24px;
}

#event-slider-container .wpex-carousel__nav.owl-nav {
    position: absolute;
    left: calc(100% - 19%);
    bottom: 10px;
}

#event-slider-container .wpex-carousel__dots-dot.active {
    background: #cbe63e;
}

#event-slider-container .wpex-carousel__nav.owl-nav .owl-prev {
    display: none !important;
}

#event-slider-container .wpex-carousel__nav.owl-nav .owl-next {
    background-color: #cbe63e;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -14px;
}

/* Event date countdown animation */
.dashboard-infoboxes.wpex-items-end {
    align-items: center !important;
}

.dashboard-wrapper .counter-div {
    background-color: #ffe6e9;
    min-height: 102px;
    border-radius: 30px;
    margin: 0 0 20px 0;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: url(/wp-content/uploads/2025/11/countdown-boat-at-sea.png);
    background-size: auto 75%;
    background-position: -1200px center;
    transition: background-position 3s ease-in-out;
    cursor: pointer;
}

.dashboard-wrapper .counter-div:hover .hover-div {
    opacity: 1;
}

.dashboard-wrapper .counter-div .hover-div {
    background-color: #ff9cc070;
    min-height: 102px;
    place-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: grid;
}

.dashboard-wrapper .counter-div .hover-div h3 {
    color: #F10814;
    margin: 0px;
    font-size: 30px;
    letter-spacing: normal;
    text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {
    .dashboard-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Event card buttons */

.wbd-devent-card {
    --wbd-devent-red: #f10814;
    --wbd-devent-dark: #00064d;
    --wbd-devent-pink: #ff9cc0;
    --wbd-devent-pink-ink: #ffd2e3;
    --wbd-devent-radius: 30px;
    --wbd-devent-pad: 18px 24px;
    --wbd-devent-dur: .45s;
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: var(--wbd-devent-radius);
    overflow: hidden;
    isolation: isolate;
}

/* iki yüz: üst üste durur, hover’da çapraz geçiş */
.wbd-devent-face {
    position: absolute;
    inset: 0;
    padding: var(--wbd-devent-pad);
    display: grid;
    align-content: center;
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    transition: opacity var(--wbd-devent-dur) ease,
    transform var(--wbd-devent-dur) ease,
    filter var(--wbd-devent-dur) ease;
}

/* --- 1) EVENT yüzü --- */
.wbd-devent-face--event {
    background: var(--wbd-devent-red);
    color: var(--wbd-devent-pink-ink);
    opacity: 1;
    transform: scale(1);
    background-image: url('/wp-content/uploads/2025/10/wbd-dashboard-events.webp');
    background-repeat: no-repeat;
    background-size: cover;
}


/* “EVENT” yazısı sağda */
.wbd-devent-label {
    grid-column: 2;
    align-self: end;
    justify-self: end;
    letter-spacing: .5px;
    font-weight: bold;
    font-size: 24px;
}

.wbd-devent-text {
    margin: 0;
    align-self: center;
    max-width: 280px;
    color: #fff;
    font-size: 18px;
}

/* --- 2) CTA yüzü --- */
.wbd-devent-face--cta {
    background: var(--wbd-devent-pink);
    color: #fff;
    grid-template-columns: 1fr auto;
    opacity: 0;
    transform: scale(1.02);
}


.wbd-devent-actions {
    display: grid;
    align-content: center;
    gap: 12px;
}

/* butonlar */
.wbd-devent-btn {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 6px 30px;
    background: var(--wbd-devent-red);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    letter-spacing: .4px;
    text-align: center;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.wbd-devent-btn:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--wbd-devent-dark);
}

.wbd-devent-btn--ghost {
    background: #d81116;
}

/* ====== HOVER GEÇİŞİ ====== */
.wbd-devent-card:hover .wbd-devent-face--event {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(1px);
}

.wbd-devent-card:hover .wbd-devent-face--cta {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* (isteğe bağlı) mobil uyumlu boyutlar */
@media (max-width: 640px) {
    .wbd-devent-card {
        width: 100%;
        height: 200px;
    }

    .wbd-devent-text {
        display: none;
    }
}

/* ====== UPLOAD IMAGES CARD ====== */
.wbd-upload-card {
    --wbd-upload-red: #F10814;
    --wbd-upload-light-pink: #FCE8E8;
    --wbd-upload-pink-btn: #ffd2e3;
    --wbd-upload-radius: 30px;
    --wbd-upload-pad: 18px 24px;
    --wbd-upload-dur: .45s;
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: var(--wbd-upload-radius);
    overflow: hidden;
    isolation: isolate;
}

/* İki yüz: üst üste durur, hover'da çapraz geçiş */
.wbd-upload-face {
    position: absolute;
    inset: 0;
    padding: var(--wbd-upload-pad);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: opacity var(--wbd-upload-dur) ease,
    transform var(--wbd-upload-dur) ease,
    filter var(--wbd-upload-dur) ease;
}

/* --- 1) Varsayılan açık pembe yüz --- */
.wbd-upload-face--default {
    background: var(--wbd-upload-light-pink);
    opacity: 1;
    transform: scale(1);
}

/* "UPLOAD IMAGES" metni sol altta */
.wbd-upload-label {
    color: var(--wbd-upload-red);
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- 2) Hover kırmızı yüz --- */
.wbd-upload-face--hover {
    background: var(--wbd-upload-red);
    opacity: 0;
    transform: scale(1.02);
    justify-content: space-between;
    align-items: flex-start;
}

/* Üstteki açıklama metni */
.wbd-upload-description {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    margin-top: 8px;
}

/* Ortadaki pembe buton */
.wbd-upload-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

.wbd-upload-btn {
    display: inline-block;
    background: var(--wbd-upload-pink-btn);
    color: var(--wbd-upload-red);
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.wbd-upload-btn:hover {
    color: var(--wbd-upload-red);
    text-decoration: none;
    transform: scale(1.05);
}

/* ====== HOVER GEÇİŞİ ====== */
.wbd-upload-card:hover .wbd-upload-face--default {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(1px);
}

.wbd-upload-card:hover .wbd-upload-face--hover {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* Mobil uyumlu boyutlar */
@media (max-width: 640px) {
    .wbd-upload-card {
        width: 100%;
        height: 200px;
    }

    .wbd-upload-label {
        font-size: 20px;
    }

    .wbd-upload-description {
        font-size: 16px;
    }

    .wbd-upload-btn {
        font-size: 16px;
        padding: 8px 30px;
    }
}

/* ====== PRINT ASSETS CARD ====== */

.wbd-print-card {
    --wbd-print-red: #F10814;
    --wbd-print-light-pink: #ff9cc0;
    --wbd-print-radius: 30px;
    --wbd-print-pad: 18px 24px;
    --wbd-print-dur: .45s;
    position: relative;
    width: 100%;
    height: 358px;
    border-radius: var(--wbd-print-radius);
    overflow: hidden;
    isolation: isolate;
}

/* İki yüz: üst üste durur, hover'da çapraz geçiş */
.wbd-print-face {
    position: absolute;
    inset: 0;
    padding: var(--wbd-print-pad);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: opacity var(--wbd-print-dur) ease,
    transform var(--wbd-print-dur) ease,
    filter var(--wbd-print-dur) ease,
    background-color var(--wbd-print-dur) ease;
}

/* --- 1) Varsayılan açık pembe yüz --- */
.wbd-print-face--default {
    background-color: var(--wbd-print-light-pink);
    background-image: url('/wp-content/uploads/2025/11/shape-pattern-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
}

/* Label pozisyonları */
.wbd-print-label-bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
}

.wbd-print-label-top-left {
    justify-content: flex-start;
    align-items: flex-start;
}

/* "PRINT" yazısı sağ altta */
.wbd-print-label {
    color: var(--wbd-print-red);
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Üstteki açıklama metni */
.wbd-print-description {
    color: var(--wbd-print-red);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    margin-top: 8px;
}

/* Ortadaki kırmızı buton */
.wbd-print-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: auto;*/
    margin-bottom: 0;
}

.wbd-print-btn {
    display: inline-block;
    background: var(--wbd-print-red);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
    line-height: 20px;
}

.wbd-print-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

/* --- 2) Hover yüz (arka plan görseli ile) --- */
.wbd-print-face--hover {
    background-color: #FCE8E8;
    background-image: url('/wp-content/uploads/2025/11/shape-pattern-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

/* ====== HOVER GEÇİŞİ ====== */
.wbd-print-card:hover .wbd-print-face--default {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(1px);
}

.wbd-print-card:hover .wbd-print-face--hover {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* Mobil uyumlu boyutlar */
@media (max-width: 640px) {
    .wbd-print-card {
        width: 100%;
        height: 200px;
    }

    .wbd-print-description {
        font-size: 16px;
    }

    .wbd-print-btn {
        font-size: 16px;
        padding: 8px 30px;
    }
}

/* ====== INSPIRATION CARD ====== */
.wbd-inspiration-card {
    --wbd-inspiration-red: #F10814;
    --wbd-inspiration-light-pink: #FCE8E8;
    --wbd-inspiration-radius: 30px;
    --wbd-inspiration-pad: 18px 24px;
    --wbd-inspiration-dur: .45s;
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: var(--wbd-inspiration-radius);
    overflow: hidden;
    isolation: isolate;
}

/* İki yüz: üst üste durur, hover'da çapraz geçiş */
.wbd-inspiration-face {
    position: absolute;
    inset: 0;
    padding: var(--wbd-inspiration-pad);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: opacity var(--wbd-inspiration-dur) ease,
    transform var(--wbd-inspiration-dur) ease,
    filter var(--wbd-inspiration-dur) ease,
    background-color var(--wbd-inspiration-dur) ease;
}

/* --- 1) Varsayılan yüz --- */
.wbd-inspiration-face--default {
    background-color: #ff9cc0;
    background-image: url('/wp-content/uploads/2025/11/shape-pattern-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
}

/* Sol taraftaki label metni */
.wbd-inspiration-label {
    color: var(--wbd-inspiration-red);
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    flex: 0 0 auto;
}

/* Sağ taraftaki açıklama metni */
.wbd-inspiration-description {
    color: var(--wbd-inspiration-red);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

/* Sağ taraftaki kırmızı buton */
.wbd-inspiration-btn-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wbd-inspiration-btn {
    display: inline-block;
    background: var(--wbd-inspiration-red);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.wbd-inspiration-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

/* --- 2) Hover yüz --- */
.wbd-inspiration-face--hover {
    background-color: var(--wbd-inspiration-light-pink);
    background-image: url('/wp-content/uploads/2025/11/shape-pattern-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
}

/* ====== HOVER GEÇİŞİ ====== */
.wbd-inspiration-card:hover .wbd-inspiration-face--default {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(1px);
}

.wbd-inspiration-card:hover .wbd-inspiration-face--hover {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* Dashboard */
.dashboard-infoboxes {
    background: #ffe6e9;
    border-radius: 30px;
    padding: 20px 20px;
    color: #f10814;
    font-size: 16px;
}

.dashboard-infoboxes strong {
    font-weight: 700;
    font-size: 19px;
}

.dashboard-infoboxes h2 {
    font-weight: bold;
    font-size: 28px !important;
    margin: 0px;
    color: #f10814;
}

.participant-btn {
    color: #f10814;
    margin: 0 0 10px 0px;
    background-color: #ffe6e9;
    border-radius: 50px;
    padding: 11px 15px 11px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.participant-btn span.theme-button-inner {
    justify-content: start !important;
}

.participant-btn:hover {
    background-color: #f10814;
    color: #ffe6e9;
}


/* Participant */
#hidden-tabs .vc_tta-tabs-container, #hidden-tabs .vc_tta-panel-heading {
    display: none !important;
}

/*.participant-parallax2 .wpex-parallax-bg{
    background-size: contain;
}*/
.participant-sec3 {
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 100%;
}

.participant-sec1 {
    padding: 0 26px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}

.participant-sec2 {
    background-repeat: no-repeat;
    background-position: center center;
}

/* MEDIA */
.mke-text-white, .mke-text-white:hover {
    color: #fff !important;
}

.media-list-items {
    padding: 2rem 0;
    border-bottom: 2px solid;
}

.media-list-items h4 {
    font-weight: 700;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 22px;
    letter-spacing: 0.01em;
    color: #00064d;
}

.media-list-items .media-content, .media-list-items a {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #00064d;
}

.media-list-items .icon-date .wpb_wrapper {
    display: inline-block;
}

.media-list-items .icon-date {
    color: #f10814;
    font-weight: 500;
    font-size: 16px;
}

.media-list-items .icon-date:after {
    content: " | ";
    font-weight: 400;
    color: rgba(0, 6, 77, .25);
}

.media-list-items .icon-author {
    font-weight: 500;
    margin-bottom: .5rem;
    color: #8a8a8a;
    font-size: 16px;
}

/* CONTACT */
.contact-bgpattern {
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 350px auto;
    margin-top: -100px;
}

/* HOME */
.welcometext {
    font-size: 435% !important;
    line-height: 80px;
}

.welcometext2 {
    font-size: 400% !important;
    line-height: 80px;
}

#two-faces-tabs .vc_pagination {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    padding-left: 15px;
}

#two-faces-tabs .vc_pagination-item::marker {
    content: none !important;
}

#two-faces-tabs .vc_pagination-item {
    float: left;
    color: #fff;
    margin-right: 15px;
}

#two-faces-tabs .vc_pagination-item a {
    cursor: pointer;
    width: 12px;
    height: 12px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
}

#two-faces-tabs .vc_pagination-item.vc_active a {
    background-color: #fff;
}

#two-faces-tabs .vc_tta-tabs-container {
    display: none;
}

#edition-counters {
    color: #f10814;
}

#edition-counters .vcex-milestone-time, #edition-counters .vcex-milestone-before, #edition-counters .vcex-milestone-after {
    font-size: 140%;
    font-weight: 600;
}

#edition-counters .vcex-milestone-caption {
    min-width: 130px;
    line-height: 110%;
    font-size: 130%;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
}

#edition-counters .vcex-milestone {
    position: relative;
    max-width: 280px;
}

#edition-counters .vcex-milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 90px;
    width: 1px;
    background-color: #ed343c3b;
}

.endless-carousel .wpex-carousel-entry-media {
    margin-bottom: 0px !important;
    margin-block-end: 0px !important;
}

/* GENERAL */
.font30300, .font30300 h4, .font30300 span {
    font-size: 30px !important;
    font-weight: 300;
}


.w-inner.wpex-rounded-lg-b {
    padding-left: 15px;
}

.w-inner.wpex-rounded-lg-b .vc_column-inner {
    border-bottom-left-radius: var(--wpex-rounded-lg);
    border-bottom-right-radius: var(--wpex-rounded-lg);
}

.flex-grow-i {
    flex-grow: inherit !important;
}

.champimages img {
    max-width: 170px;
    max-height: 220px;
}

#championed_by [class*="wpex-card-template_"] > .wpex-card-inner {
    justify-content: center;
}

.championed-carousel .wpex-carousel__dots {
    margin-top: 60px;
    gap: 20px;
}

.p0, .p0 .vc_column-inner {
    padding: 0px !important;
}

.big-font1, .big-font1 .vcex-heading-inner {
    font-size: 228% !important;
    font-weight: 600 !important;
}

.ambassadors img {
    width: auto;
    height: 200px;
}

.cslider1 .wpex-heading {
    color: #fff;
    font-size: 36px;
}

.ambassadors .wpex-heading {
    color: #ffd51c !important;
    font-size: 24px;
    font-weight: 600;
}

.ambassadors .wbd-text-red {
    color: #fff !important;
    font-size: 26px;
    font-weight: 400;
}
.wbd-text-white{
    color: #fff !important;
}
/* ====== WBD AMBASSADORS SHORTCODE ====== */
.wbd-ambassadors-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tek kart */
.wbd-ambassador-card {
    position: relative;
    text-align: center;
    cursor: pointer;
    min-height: 320px;
}

/* Görsel wrapper */
.wbd-ambassador-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ambassador görseli */
.wbd-ambassador-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wbd-ambassador-card:hover .wbd-ambassador-image,
.wbd-ambassador-card.active .wbd-ambassador-image {
    transform: scale(1.05);
}

/* Overlay - başlangıçta gizli */
.wbd-ambassador-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0.1s;
}

/* Overlay header - foto + isim/title yan yana */
.wbd-ambassador-overlay-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wbd-ambassador-overlay-header .wbd-ambassador-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wbd-ambassador-overlay-info {
    text-align: left;
}

/* Kart altındaki normal bilgi alanı */
.wbd-ambassador-info {
    transition: opacity 0.3s ease;
}

.wbd-ambassador-info-name {
    color: #ffd51c;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.wbd-ambassador-info-title {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
}

/* ====== FULL CARD HOVER OVERLAY ====== */
.wbd-ambassador-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: #00084d;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.wbd-ambassador-card:hover::before,
.wbd-ambassador-card.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Hover'da ana görsel gizlensin */
.wbd-ambassador-card:hover .wbd-ambassador-image-wrapper,
.wbd-ambassador-card.active .wbd-ambassador-image-wrapper {
    opacity: 0;
    transform: scale(0.8);
}

/* Hover'da normal info gizlensin */
.wbd-ambassador-card:hover .wbd-ambassador-info,
.wbd-ambassador-card.active .wbd-ambassador-info {
    opacity: 0;
    pointer-events: none;
}

/* Hover'da overlay görünsün */
.wbd-ambassador-card:hover .wbd-ambassador-overlay,
.wbd-ambassador-card.active .wbd-ambassador-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Overlay içindeki isim */
.wbd-ambassador-overlay .wbd-ambassador-name {
    color: #ffd51a;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

/* Overlay içindeki title */
.wbd-ambassador-overlay .wbd-ambassador-title {
    color: #ff912b;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* Bio metni */
.wbd-ambassador-overlay .wbd-ambassador-bio {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .wbd-ambassadors-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Responsive - Tablet küçük */
@media (max-width: 768px) {
    .event-maca {
        right: -70px;
    }
    #page-header-with-bg{
        height: 280px !important;
    }
    .benefitboxes .vcex-icon-box-symbol {
        margin-bottom: 20px !important;
        transform: none;
    }
    #oldtypemap{
        margin-top: 30px !important;
    }
    #oldtypemap .vcex-flex-container.wpex-mb-50{
        margin-bottom: 20px;
    }
    .sub-menu li a.wpex-text-current,
    .sub-menu li a.wpex-hover-text-current:hover,
    .sub-menu li a.wpex-focus-text-current:focus{
        color: #fff;
    }
    .welcometext {
        font-size: 325% !important;
        line-height: 70px !important;
    }

    .welcometext2 {
        font-size: 240% !important;
        line-height: 60px;
    }

    .mobile-text-left.wpex-text-right {
        text-align: left !important;
    }

    .mobile-text-left.align-right {
        float: left;
    }

    #site-header {
        padding-left: 60px !important;
    }

    .royal-logo-container {
        right: 3px !important;
        top: 6px !important;
    }

    .wbd-ambassadors-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wbd-ambassador-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .wbd-ambassador-card {
        min-height: 280px;
    }

    .wbd-ambassador-info-name {
        font-size: 18px;
    }

    .wbd-ambassador-info-title {
        font-size: 100%;
    }

    .wbd-ambassador-overlay {
        padding: 15px;
    }

    .wbd-ambassador-overlay-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .wbd-ambassador-overlay-header .wbd-ambassador-thumb {
        width: 60px;
        height: 60px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-name {
        font-size: 18px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-title {
        font-size: 13px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-bio {
        font-size: 13px;
        -webkit-line-clamp: 6;
    }

    #page-parallax, #page-parallax .vc_parallax-inner {
        background-size: cover !important;
    }

    .participant-sec1 {
        background-size: contain !important;
    }

    .championed-carousel .wpex-carousel__dots.owl-dots {
        display: none;
    }
}


.wpex-px-20-mobile0{
    padding-inline: 20px;
}
/* Responsive - Mobil */
@media (max-width: 480px) {
    .wpex-px-mobile0,.wpex-px-mobile0 .vc_column-inner{padding: 0 !important;padding-inline-start:0 !important;}
    .wpex-px-20-mobile0{
        padding-inline: 0;
    }
    /* Mobilde blurred background efekti için max-width ayarı */
    #page-header-with-bg .page-header-sharp-bg {
        max-width: 100% !important;
    }

    .faq-bg.vc_row-no-padding {
        background-image: none !important;
    }

    .wpex-carousel:where(.arrwpos-abs) .wpex-carousel__arrow--prev {
        margin-left: -50px;
    }

    .wpex-carousel:where(.arrwpos-abs) .wpex-carousel__arrow--next {
        margin-right: -50px;
    }

    :where(.wpex-classic-style) .vcex-milestone-number, :where(.wpex-classic-style) .vcex-milestone-icon {
        font-size: 34px !important;
    }

    #edition-counters .vcex-milestone-caption {
        min-width: 100px;
        font-size: 100%;
    }

    #edition-counters .vcex-milestone:not(:last-child)::after {
        right: -8px;
    }

    #wbd-footer .footer-content, #wbd-footer .footer-content a {
        font-size: 90% !important;
    }

    .wbd-ambassadors-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }


    .wbd-ambassador-card {
        min-height: 380px;
    }

    .wbd-ambassador-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .wbd-ambassador-info-name {
        font-size: 26px;
    }

    .wbd-ambassador-info-title {
        font-size: 100%;
    }

    .wbd-ambassador-overlay {
        padding: 25px;
    }

    .wbd-ambassador-overlay-header {
        gap: 15px;
        margin-bottom: 20px;
    }

    .wbd-ambassador-overlay-header .wbd-ambassador-thumb {
        width: 90px;
        height: 90px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-name {
        font-size: 26px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-title {
        font-size: 18px;
    }

    .wbd-ambassador-overlay .wbd-ambassador-bio {
        -webkit-line-clamp: 10;
        font-size: 16px;
        line-height: 1.6;
    }

    #oldtypemap .vcex-teaser .vcex-teaser-heading {
        font-size: 110% !important;
        line-height: 100% !important;
        margin: 20px 0 0 0 !important;
    }

    #oldtypemap .wbd-mke-map-wrapper, #oldtypemap .vcex-teaser-text {
        margin-top: 4px !important;
        font-size: 66% !important;;
    }

    #oldtypemap .vcex-milestone-number, #oldtypemap .vcex-milestone-icon {
        line-height: 130%;
    }

    #oldtypemap .vc_column_container {
        font-size: 90%;
        padding: 10px 0 !important;
    }

    #oldtypemap .vcex-milestone {
        min-width: 150px !important;
    }

}

.benefits img {
    width: auto;
    height: 60px;
}

.benefits .wpex-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.darkbutton {
    background-color: #00064d;
    font-family: "Livvic", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-style: solid;
    color: #fff;
    border-width: 2px 2px 2px 2px;
    border-color: #00064d;
    border-radius: 50px 50px 50px 50px;
    padding: 7px 20px;
    font-size: 15px;
}

.darkbutton:hover {
    background-color: #02010100;
    color: #00064d;
    border-color: #00064d;
}

.redbutton {
    background-color: #f10814;
    font-family: "Livvic", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-style: solid;
    color: #fff;
    border-width: 2px 2px 2px 2px;
    border-color: #f10814;
    border-radius: 50px 50px 50px 50px;
    padding: 7px 20px;
    font-size: 20px;
}

.redbutton:hover {
    background-color: #02010100;
    border-color: #FF9CC0;
    color: #fff;
}

.redbutton.red:hover {
    background-color: #02010100;
    color: #f10814;
}

#typeofevents {
    background-color: #ffe6e9;
    border-radius: 30px;
    padding: 40px 30px;
    min-height: 360px;
}

#typeofevents .vc_tta-tabs-container {
    bottom: -40px;
}

#typeofevents .vc_tta-tab a {
    transition: transform 0.25s ease;
    border-color: #f10814;
    background-color: #ffe6e9;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #f10a14;
    font-weight: bold;
    line-height: 26px;
    margin: auto 3px;
}

#typeofevents .vc_tta-tab.vc_active a {
    border-color: #f10814;
    background-color: #f10814;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 28px;
    margin: auto 5px;
}

#typeofevents .vc_tta-tab a:hover {
    transform: scale(1.05);
}

#typeofevents .vc_tta-tab.vc_active a {
    transform: scale(1.1);
}

.maxwidth-1680 {
    max-width: 1680px;
}

.maxwidth-1340 {
    max-width: 1340px;
}

.maxwidth-1200 {
    max-width: 1200px;
}

.maxwidth-1140 {
    max-width: 1140px;
}

.maxwidth-1080 {
    max-width: 1080px;
}

.maxwidth-900 {
    max-width: 900px;
}

.maxwidth-500 {
    max-width: 500px;
}

.maxwidth-660 {
    max-width: 660px;
}

.maxwidth-780 {
    max-width: 780px;
}

.wpex-mx-auto {
    margin-inline: auto !important;
}

.wpex-mb-8 {
    margin-bottom: 8px;
}

h2 .vcex-heading-inner {
    font-weight: 900;
    font-size: 40px;
    line-height: 120%;
}

.f21, .f21 span {
    font-size: 21px;
    line-height: 1.5;
}

.f18 {
    font-size: 18px;
    line-height: 1.5;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f22 h4 {
    font-size: 22px;
    font-weight: 400;
}

.wbd-text-shadow {
    text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.wpex-font-semibold {
    font-weight: 600 !important;
}

.wbd-text-darkblue {
    color: #00064D !important;
}

.wbd-text-lightgreen {
    color: #cbe63e !important;
}

.wbd-text-royalblue {
    color: #4443e9 !important;
}

.wbd-text-orange {
    color: #ff912b !important;
}

.wbd-text-red {
    color: #f10814 !important;
}

.wbd-text-red-link {
    color: #cd2653 !important;
}

.wbd-text-pink {
    color: #FF9CC0 !important;
}

.wbd-bg-pink {
    background-color: #FF9CC0 !important;
}

.wbd-bg-softpink {
    background-color: #ffe6e9 !important;
}

.wbd-bg-orange {
    background-color: #ff912b !important;
}

.wbd-bg-darkblue {
    background-color: #00064D !important;
}

#page-parallax {
    margin-bottom: 100px;
}

.mwidth600 {
    width: 100%;
    max-width: 600px;
}

.darkblue-accordion h4 a {
    color: #00064D !important;
    font-size: 20px;
    font-weight: 500 !important;
}

.darkblue-accordion h4 a:hover, .darkblue-accordion .vc_active h4 a {
    color: #4443e9 !important;
}

.darkblue-accordion .vc_tta-panel-heading {
    background-color: unset !important;
}

.darkblue-accordion h4 .vc_tta-controls-icon {
    width: 20px;
    height: 20px;
    left: 2px !important;
}

.darkblue-accordion .vc_tta-panel-body .wpb_text_column.wpb_content_element .wpb_wrapper a {
    color: #cd2653 !important;
}

.darkblue-accordion .vc_tta-panel-body .wpb_text_column.wpb_content_element .wpb_wrapper {
    line-height: 1.5;
    font-size: 18px !important;
    color: #00064D !important;
    padding-left: 16px;
}

.darkblue-accordion h4:hover .vc_tta-controls-icon::after, .darkblue-accordion h4:hover .vc_tta-controls-icon::before,
.darkblue-accordion .vc_active h4 .vc_tta-controls-icon::after, .darkblue-accordion .vc_active h4 .vc_tta-controls-icon::before {
    border-color: #4443e9 !important;
}

.darkblue-accordion h4 .vc_tta-controls-icon::after {
    border-width: 0 0 0 0.2rem !important;
    border-radius: 20px;
}

.darkblue-accordion h4 .vc_tta-controls-icon::before {
    border-width: 0.2rem 0 0 !important;
    border-radius: 20px;
}

.darkblue-accordion h4 .vc_tta-controls-icon::after, .darkblue-accordion h4 .vc_tta-controls-icon::before {
    border-color: #00064D !important;
}

.darkblue-accordion .vc_tta.vc_general .vc_tta-panel-body, .darkblue-accordion .vc_tta-panel-title a {
    padding-left: 36px !important;
}

#page-header-with-bg h1.vcex-page-title__heading {
    color: #ffffff;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5), 3px 3px 1px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    #page-header-with-bg h1.vcex-page-title__heading {
        font-size: 30px;
    }
}

/* Single Event sayfalarında page header h1'i gizle */
.single-events #page-header-with-bg h1 {
    display: none !important;
}

/* Page Header Blurred Background Effect */
#page-header-with-bg {
    padding: 0 65px;
}


/* FOOTER */
#wbd-footer .footer-content, #wbd-footer .footer-content a {
    color: #fff !important;
    font-size: 20px;
    letter-spacing: 0.03em;
    font-weight: 700;
}

#wbd-footer .subfooter {
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

/* HEADER */
#mobile-menu a {
    padding: 13px;
    border-radius: 20px;
}

.logregbtn {
    background-color: #f10814 !important;
    border-radius: 50px;
    height: 28px;
    line-height: 28px;
    padding: 0px 5px;
    margin-top: 6px;
    margin-left: 5px;
}

#site-header {
    position: fixed !important;
}

#site-header-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding-bottom: 0px;
}

#site-navigation-wrap {
    width: auto;
    max-width: 799px;
    padding-right: 6px;
    background: #00064D;
    justify-content: flex-start;
    display: flex;
    left: 0px;
    position: absolute;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    line-height: 40px;
    -webkit-box-shadow: -10px 1px 12px 0px rgb(0 0 0 / 4%);
    -moz-box-shadow: -10px 1px 12px 0px rgb(0 0 0 / 4%);
    box-shadow: -10px 1px 12px 0px rgb(0 0 0 / 4%);
}

.sub-menu {
    border-radius: 20px;
    padding: 0 15px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

/* Responsive - Sadece büyük masaüstlerinde görünür */
@media (max-width: 1279px) {
    #site-navigation-wrap {
        display: none !important;
    }
}

@media (min-width: 1280px) {
    #site-navigation-wrap {
        display: flex !important;
    }
}

#site-logo a img {
    max-height: 90px;
}

.main-navigation a {
    text-decoration: none;
    color: #fff;
    padding: 0 10px 0 10px;
}

/* Current menu item underline (mevcut sayfa) */
#menu-main li.current-menu-item a .link-inner {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

@keyframes underlineSlide {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

@keyframes underlineSlideOut {
    0% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 50%;
    }
}

#menu-main li:not(.current-menu-item) a .link-inner {
    text-decoration: none;
    position: relative;
}

#menu-main li:not(.current-menu-item) a .link-inner::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background-color: #fff;
}

#menu-main li:not(.current-menu-item) a:hover .link-inner::after {
    animation: underlineSlide 0.3s ease forwards;
}

#menu-main {
    padding-left: 10px
}


#site-header {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

/* SVG Smooth Rendering */
.royal-logo {
    shape-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Logo Scroll Animasyonları */
.logo-container {
    position: relative;
    overflow: hidden;
}

.logo-img, .royal-logo-container {
    transition: all 0.5s ease;
}

.logo-img.fade-out-up {
    opacity: 0;
    transform: translateY(-20px);
}

.royal-logo-container {
    position: absolute;
    top: 20px;
    left: unset;
    right: 35px;
    opacity: 0;
    transform: translateY(20px);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 40%);
}

.royal-logo-container .royal-logo {
    transition: transform 250ms cubic-bezier(.2, .8, .2, 1);
}

.royal-logo-container:hover .royal-logo {
    transform: scale(1.05) translateY(-2px);
}

.royal-logo-container.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.royal-logo-container .royal-logo {
    width: 46px;
    height: 46px;
}


/* MOBILE */
#mobile-menu {
    left: -70px;
}

@media (max-width: 959px) {
    h2 .vcex-heading-inner {
        font-size: 36px;
    }

    #site-navigation-wrap {
        display: none !important;
    }

    #site-header {
        padding-right: 3px !important;
    }

    .full-screen-overlay-nav.white {
        font-size: 2.1rem;
    }

    .logregbtn {
        height: unset;
        line-height: unset;
        padding: 0px 5px;
        margin: 0px;
        font-size: 90%;
        color: #fff;
    }

    .ambassador-container {
        flex-direction: column;
    }

    .ambassador-container .ambassadors {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 960px) {
    #site-navigation-wrap {
        display: flex !important;
    }
}

/* ====== DOWNLOAD CARD ====== */

.wbd-download-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}

.wbd-download-card-inner {
    position: relative;
    width: 100%;
}

/* Beyaz kavisli kenarlı kutu */
.wbd-download-image-container {
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wbd-download-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Çizgi */
.wbd-download-divider {
    width: 100%;
    height: 1px;
    background: #ececec;
    margin: 10px 0;
}

/* Butonlar container */
.wbd-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* İndirme butonları */
.wbd-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #00064d;
    padding: 1px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.wbd-download-btn:hover {
    text-decoration: none;
    color: #4443e9;
}

.wbd-download-btn span {
    display: inline-block;
}

.wbd-download-btn .ticon,
.wbd-download-btn .wpex-icon {
    font-size: 18px;
}
#oldtypemap{
    margin-top: 100px;
}
#oldtypemap .vcex-milestone-number,
#oldtypemap .vcex-milestone-icon {
    font-size: 400% !important;
    color: #4443e9;
}

#oldtypemap .vcex-teaser .vcex-teaser-heading {
    font-size: 140%;
    color: #4443e9;
    font-weight: 700;
    line-height: 110%;
    margin: 2px 0;
}

#oldtypemap .wbd-mke-map-wrapper,
#oldtypemap .vcex-teaser-text {
    margin-top: 0;
    font-size: 84%;
    line-height: 120%;
    color: #00064D;
}

#oldtypemap .vcex-milestone {
    min-width: 170px;
}

#oldtypemap .vc_column_container {
    padding: 10px;
}

/* Mobil uyumlu */
@media (max-width: 640px) {
    .mobilbottom25{
        margin-bottom: 25px;
    }
    .mobilbottom0{
        margin-bottom: 0px;
    }
    #page-header-with-bg {
        padding: 0 20px;
        background-size: inherit !important;
        background-position: left !important;
        background-repeat: no-repeat !important;
        height: 200px !important;
    }
    .wbd-inspiration-card {
        width: 100%;
        height: 200px;
    }

    .wbd-inspiration-face {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .wbd-inspiration-label {
        font-size: 20px;
        text-align: center;
    }

    .wbd-inspiration-description {
        font-size: 16px;
        text-align: center;
        padding-right: 0;
        margin-top: 8px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .wbd-upload-face--hover{
        justify-content: center;
        gap: 20px;
    }
    .wbd-upload-btn-wrapper{
        margin: unset;
    }

    .wbd-inspiration-btn {
        font-size: 16px;
        padding: 8px 30px;
    }
    .wbd-devent-face{
        gap: unset;
    }
    .wbd-download-card-wrapper {
        padding: 20px;
    }

    .wbd-download-image-container {
        padding: 15px;
        border-radius: 15px;
    }

    .wbd-download-buttons {
        gap: 10px;
    }

    .wbd-download-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

.wpex-mobile-toggle-menu-icon_buttons #site-logo {
    z-index: 1;
}


.maxheight420 {
    max-height: 420px;
    height: 420px
}

.benefitboxes .vcex-icon-box-heading {
    color: #f10814;
    font-weight: 600;
    max-width: 75%;
    font-size: 140%;
}

.benefitboxes {
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.benefitboxes:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.benefitboxes .vcex-icon-box-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefitboxes .vcex-icon-box-symbol,
.benefitboxes .vcex-icon-box-heading {
    transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.benefitboxes .vcex-icon-box-symbol {
    margin-bottom: 170px;
    margin-top: 30px;
    /*
    transform: translateY(0) scale(1.15);
    */
    transition: all .65s cubic-bezier(.2, .8, .2, 1);
}

.benefitboxes:hover .vcex-icon-box-symbol {
    transform: translateY(-40px) scale(1);
    margin-left: 0;
    margin-bottom: 20px;
}

.benefitboxes .vcex-icon-box-heading {
    /*transform: translateY(0) scale(1.2);*/
    transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.benefitboxes:hover .vcex-icon-box-heading {
    transform: translateY(-40px) scale(1);
    padding: 0;
}

.benefitboxes .vcex-icon-box-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    font-size: 90%;
    /*transition: opacity .45s ease, max-height .75s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);*/
    transition: opacity .55s ease, max-height .05s cubic-bezier(.2, .8, .2, 1), transform .025s cubic-bezier(.2, .8, .2, 1);
}

.benefitboxes:hover .vcex-icon-box-text {
    justify-content: flex-start;
}


.benefitboxes:hover .vcex-icon-box-content {
    opacity: 1;
    max-height: 500px;
    transform: translateY(-40px) scale(1);
}

/*@media (min-width: 768px) and (max-width: 1012px){
    #edition-counters .vcex-milestone:not(:last-child)::after{
        display: none;
    }
    #edition-counters .vcex-milestone{
        padding: 0 15px;
    }
}*/

@media (max-width: 768px) {

    .maxheight420 {
        max-height: none;
        height: auto;
    }

    .benefitboxes {
        transform: none !important;
    }

    .benefitboxes .vcex-icon-box-heading {
        transform: none;
    }

    .benefitboxes .vcex-icon-box-content {
        opacity: 1;
        max-height: none;
        transform: none;
    }

    .benefitboxes .vcex-icon-box-text {
        justify-content: flex-start;
    }

    .benefitboxes:hover .vcex-icon-box-symbol,
    .benefitboxes:hover .vcex-icon-box-heading,
    .benefitboxes:hover .vcex-icon-box-content {
        transform: none;
    }
}

.vcex-button.theme-button:hover {
    cursor: pointer
}

@media (max-width: 1340px) {
    .hideuntil1340 {
        display: none !important;
    }

    h2 .vcex-heading-inner {
        font-size: 100%;
    }

    #edition-counters .vcex-milestone-time, #edition-counters .vcex-milestone-before, #edition-counters .vcex-milestone-after {
        font-size: 112%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
    .mobilepadding .vc_column-inner > .wpb_wrapper {
        padding: 0 4.8%;
    }
    .maxwidth-1340, .maxwidth-1680{
        max-width: 1140px !important;
    }
}


/* ==========================================================================
   Windows Yüksek DPI Ölçeklendirme Düzeltmesi
   Sadece küçük ekranlı yüksek DPI cihazlar için (örn: 13" laptop + %150 ölçeklendirme)
   Büyük 4K monitörler etkilenmez
   ========================================================================== */
/*
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-width: 1600px),
       (min-resolution: 120dpi) and (max-width: 1600px) {
    body {
        zoom: 0.90;
        width: calc(100% / 0.90);
    }
}
*/
