﻿/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --givewell-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --givewell-font-two: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --givewell-font-three: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --givewell-gray: #7b7b7b;
    --givewell-gray-rgb: 123, 123, 123;
    --givewell-base: #2E86C1;
    --givewell-base-rgb: 255, 102, 0;
    --givewell-primary: #286769;
    --givewell-primary-rgb: 40, 103, 105;
    --givewell-black: #1B2A4E;
    --givewell-black-rgb: 21, 21, 21;
    --givewell-extra: #f4f1f0;
    --givewell-extra-rgb: 244, 241, 240;
    --givewell-white: #ffffff;
    --givewell-white-rgb: 255, 255, 255;
    --givewell-bdr-color: #e7e7e7;
    --givewell-bdr-color-rgb: 231, 231, 231;
    --givewell-bdr-radius: 20px;
}

.row {
    --bs-gutter-x: 24px;
}

.gutter-y-24 {
    --bs-gutter-y: 24px;
}

body {
    font-family: var(--givewell-font);
    color: var(--givewell-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--givewell-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--givewell-font-three);
    color: var(--givewell-black);
    margin: 0;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 12px;
    padding-right: 12px;
}

.list-unstyled {
    padding-left: 0;
}

@media (min-width: 1344px) {
    .container {
        max-width: 1344px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}


/*** chat popup ***/

.chat-popup {
    position: fixed;
    left: -100%;
    bottom: 0px;
    width: 350px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    background: var(--givewell-black);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .chat-popup.popup-visible {
        left: 0px;
        visibility: visible;
        opacity: 1;
    }

    .chat-popup .popup-inner {
        position: relative;
        display: block;
        padding: 40px 35px;
        padding-top: 32px;
    }

    .chat-popup .close-chat {
        position: absolute;
        display: flex;
        left: 0px;
        top: -55px;
        width: 60px;
        height: 55px;
        line-height: 44px;
        text-align: center;
        border-radius: 5px;
        font-size: 16px;
        color: #fff;
        background: var(--givewell-base);
        cursor: pointer;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
        align-items: center;
        justify-content: center;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .chat-popup .popup-inner p {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, .70);
    }

    .chat-popup .chat-form .form-group {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }

        .chat-popup .chat-form .form-group:last-child {
            margin-bottom: 0px;
        }

        .chat-popup .chat-form .form-group input[type='text'],
        .chat-popup .chat-form .form-group input[type='email'],
        .chat-popup .chat-form .form-group textarea {
            position: relative;
            display: block;
            width: 100%;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 5px;
            font-size: 13px;
            color: rgba(255, 255, 255, .70);
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, .10);
            transition: all 500ms ease;
        }

        .chat-popup .chat-form .form-group textarea {
            height: 120px;
            resize: none;
        }

            .chat-popup .chat-form .form-group input:focus,
            .chat-popup .chat-form .form-group textarea:focus {
                outline: none;
            }

        .chat-popup .chat-form .form-group button {
            border: none;
        }

.chat-icon {
    position: fixed;
    display: inline-block;
    left: 30px;
    bottom: 45px;
    z-index: 99;
}

    .chat-icon button {
        position: relative;
        display: inline-block;
        width: 45px;
        height: 45px;
        line-height: 47px;
        text-align: center;
        font-size: 20px;
        color: #fff;
        border-radius: 5px;
        background: var(--givewell-base);
        z-index: 1;
        border: none;
    }

        .chat-icon button:before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background-color: rgba(var(--givewell-base-rgb), .20);
            border-radius: 5px;
            z-index: -1;
        }



/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--givewell-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--givewell-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--givewell-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
}

/* Section Title Css */

.section-title {
    position: relative;
    display: block;
    margin-bottom: 49px;
    z-index: 1;
}

.section-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.section-title__tagline-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--givewell-base);
    border-radius: 50%;
}

    .section-title__tagline-icon i {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: var(--givewell-white);
    }

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    color: var(--givewell-primary);
    font-weight: 900;
    text-transform: capitalize;
    font-family: var(--givewell-font-three);
    font-style: normal;
}

.section-title__title {
    color: var(--givewell-black);
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    margin: 15px 0 0;
}

    .section-title__title .split-line {
        text-transform: none;
    }

.section-title-two .section-title__tagline-icon {
    background-color: var(--givewell-primary);
}

.section-title-two .section-title__tagline {
    color: #286769;
}


/* Thm Btn Css */
.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--givewell-white);
    padding: 23px 30px 21px;
    border-radius: 35px;
    background-color: var(--givewell-base);
    z-index: 2;
    gap: 8px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .thm-btn::before {
        content: "";
        background-color: var(--givewell-primary);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Daire efektini (clip-path) sildik */
        width: 100%;
        opacity: 0; /* Başlangıçta görünmez yaptık */
        transition: opacity 0.4s ease; /* Daire yerine yumuşak bir belirme (fade) efekti */
        z-index: -1;
    }

    /* Hover durumunda daire büyütmek yerine sadece görünür yapıyoruz */
    .thm-btn:hover::before {
        opacity: 1;
        clip-path: none; /* Eğer hover class'ında tanımlıysa bunu da ekle */
    }

    .thm-btn:hover::before {
        clip-path: circle(100% at 50% 50%);
        transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
    }

    .thm-btn:hover {
        color: var(--givewell-white);
    }

    .thm-btn i {
        content: "";
        position: absolute;
        top: 8px;
        right: 8px;
        bottom: 8px;
        width: 80px;
        background-color: rgba(var(--givewell-black-rgb), .20);
        border-radius: 35px;
        z-index: -1;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .thm-btn i::before {
            content: "";
            background-color: rgba(var(--givewell-white-rgb), .15);
            position: absolute;
            top: 0;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 25px;
            clip-path: circle(0% at 50% 50%);
            transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
            z-index: -1;
        }

    .thm-btn:hover i::before {
        clip-path: circle(100% at 50% 50%);
        transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
        transition-delay: 500ms;
    }


/* Proloader Css */

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    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;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-image: url(../images/heal.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 159px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 147px;
    right: -12px;
    z-index: 99;
    text-align: center;
    color: var(--givewell-black);
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .scroll-to-top:hover {
        color: var(--givewell-base);
    }

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-left: 10px;
}

.scroll-to-top__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 24px;
    line-height: 1;
    color: currentColor;
    transform: rotate(90deg);
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--givewell-base);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--givewell-black);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 153px;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 40px;
}

    .styled-pagination li {
        position: relative;
        display: inline-block;
        margin-right: 11px;
    }

        .styled-pagination li:last-child {
            margin-right: 0;
        }

        .styled-pagination li a {
            position: relative;
            display: inline-block;
            width: 45px;
            height: 45px;
            background: transparent;
            border-radius: 0%;
            color: rgba(var(--givewell-gray-rgb), .50);
            font-size: 16px;
            line-height: 45px;
            font-weight: 600;
            border: 1px solid rgba(var(--givewell-gray-rgb), .50);
            text-align: center;
            transition: all 500ms ease;
            font-family: var(--givewell-font);
            z-index: 1;
        }

        .styled-pagination li:hover a,
        .styled-pagination li.active a {
            color: var(--givewell-white);
            background: var(--givewell-base);
            border-color: var(--givewell-base);
        }

        .styled-pagination li.prev a,
        .styled-pagination li.next a {
            border-radius: 0%;
            color: rgba(var(--givewell-gray-rgb), .50);
        }

            .styled-pagination li.prev a:hover,
            .styled-pagination li.next a:hover {
                color: var(--givewell-white);
            }

        .styled-pagination li a span:before {
            position: relative;
            top: 0px;
            color: rgba(var(--givewell-gray-rgb), .50);
            font-size: 14px;
            font-weight: 700;
            transition: all 200ms linear;
            transition-delay: 0.1s;
        }

        .styled-pagination li a:hover span:before,
        .styled-pagination li.active a span:before {
            color: var(--givewell-white);
        }


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu__top {
    position: relative;
    display: block;
    background-color: var(--givewell-base);
}

.main-menu__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu__contact-list {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-menu__contact-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .main-menu__contact-list li + li {
            margin-left: 46px;
        }

        .main-menu__contact-list li:before {
            content: "";
            position: absolute;
            top: -3px;
            bottom: -3px;
            left: -23px;
            width: 1px;
            background-color: rgba(var(--givewell-white-rgb), .30);
        }

        .main-menu__contact-list li:first-child:before {
            display: none;
        }

        .main-menu__contact-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .main-menu__contact-list li .icon i {
                font-size: 18px;
                color: var(--givewell-white);
                position: relative;
                display: inline-block;
            }

        .main-menu__contact-list li .text {
            margin-left: 10px;
        }

            .main-menu__contact-list li .text p {
                font-size: 17px;
                line-height: 17px;
                color: var(--givewell-white);
                font-weight: 500;
            }

                .main-menu__contact-list li .text p a {
                    color: var(--givewell-white);
                    -webkit-transition: all 500ms ease;
                    transition: all 500ms ease;
                }

                    .main-menu__contact-list li .text p a:hover {
                        color: var(--givewell-extra);
                    }

.main-menu__top-social-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 12px 25px 12px;
}

.main-menu__top-social-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--givewell-white);
    font-family: var(--givewell-font);
}

.main-menu__top-social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

    .main-menu__top-social a {
        position: relative;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
        color: var(--givewell-white);
        border-radius: 50%;
        font-size: 14px;
        height: 32px;
        width: 32px;
        border: 1px solid rgba(var(--givewell-white-rgb), .10);
        transform: rotate(0);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .main-menu__top-social a:hover {
            color: var(--givewell-white);
            border: 1px solid var(--givewell-base);
        }

        .main-menu__top-social a:before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: "";
            background-color: var(--givewell-base);
            border-radius: 50%;
            transform: scale(0.0);
            transform-origin: center;
            transform-style: preserve-3d;
            transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
            z-index: -1;
        }

        .main-menu__top-social a:hover:before {
            transform: scaleX(1.0);
        }


.main-menu {
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu__left {
    display: block;
}

.main-menu__logo {
    display: block;
    padding: 14.5px 0 14.5px;
}

.main-menu__main-menu-box {
    display: block;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.main-menu__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.main-menu__search-box {
    position: relative;
    display: block;
}

.main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border: 1px solid rgba(var(--givewell-black-rgb), .10);
    border-radius: 50%;
    font-size: 18px;
    color: var(--givewell-gray);
    background-color: var(--givewell-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu__search:hover {
        color: var(--givewell-white);
        background-color: var(--givewell-base);
        border: 1px solid var(--givewell-base);
    }

.main-menu__cart {
    position: relative;
    display: block;
}

    .main-menu__cart a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 48px;
        border: 1px solid rgba(var(--givewell-black-rgb), .10);
        border-radius: 50%;
        font-size: 18px;
        color: var(--givewell-gray);
        background-color: var(--givewell-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-menu__cart a:hover {
            color: var(--givewell-white);
            background-color: var(--givewell-base);
            border: 1px solid var(--givewell-base);
        }

.main-menu__btn-box {
    position: relative;
    display: block;
}

.stricky-header.main-menu {
    background-color: var(--givewell-white);
}



.main-menu__list > li > a::after,
.main-menu-three .main-menu__list > li > a::after {
    height: 1px;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}



@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 30px;
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--givewell-black);
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        font-weight: 700;
        text-transform: capitalize;
        line-height: 20px;
    }

    .main-menu .main-menu__list > li.current > a,
    .main-menu .main-menu__list > li:hover > a,
    .stricky-header .main-menu__list > li.current > a,
    .stricky-header .main-menu__list > li:hover > a {
        color: var(--givewell-base);
    }

    .main-menu .main-menu__list > li > a::before,
    .stricky-header .main-menu__list > li > a::before {
        content: "";
        height: 2px;
        border-radius: 0px;
        background-color: var(--givewell-base);
        position: absolute;
        bottom: -1px;
        left: 0px;
        right: 0px;
        transition: transform 500ms ease;
        transform: scale(0, 1);
        transform-origin: left center;
        z-index: 1;
    }

    .main-menu .main-menu__list > li.current > a::before,
    .main-menu .main-menu__list > li:hover > a::before,
    .stricky-header .main-menu__list > li.current > a::before,
    .stricky-header .main-menu__list > li:hover > a::before {
        transform: scale(1, 1);
        transform-origin: right center;
    }

    .main-menu .main-menu__list > li.dropdown > a {
        padding-right: 15px;
    }

        .main-menu .main-menu__list > li.dropdown > a:after {
            position: absolute;
            top: 0;
            right: 0;
            font-family: "Font Awesome 5 Pro";
            content: "\f107";
            font-size: 18px;
            color: var(--givewell-black);
            transform: translateY(-50%);
            font-weight: 900;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: 1;
        }

    .main-menu .main-menu__list > li.current > a::after,
    .main-menu .main-menu__list > li:hover > a::after,
    .stricky-header .main-menu__list > li.current > a::after,
    .stricky-header .main-menu__list > li:hover > a::after {
        color: var(--givewell-base);
    }

    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 270px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
        z-index: 99;
        background-color: rgb(255, 255, 255);
        padding: 31px 20px 31px;
    }

.shadow-box {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

    .main-menu .main-menu__list > li > ul > li + li,
    .main-menu .main-menu__list > li > ul > li > ul > li + li,
    .stricky-header .main-menu__list > li > ul > li + li,
    .stricky-header .main-menu__list > li > ul > li > ul > li + li {
        border-top: none;
        margin-top: 10px;
    }

    .main-menu .main-menu__list > li > ul > li > a,
    .main-menu .main-menu__list > li > ul > li > ul > li > a,
    .stricky-header .main-menu__list > li > ul > li > a,
    .stricky-header .main-menu__list > li > ul > li > ul > li > a {
        position: relative;
        font-size: 16px;
        line-height: 16px;
        color: var(--givewell-black);
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        padding: 12px 20px 12px;
        -webkit-transition: 500ms;
        transition: 500ms;
        background-color: var(--givewell-white);
    }

    .main-menu .main-menu__list > li > ul > li:hover > a,
    .main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
    .stricky-header .main-menu__list > li > ul > li:hover > a,
    .stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
        background-color: var(--givewell-extra);
        color: var(--givewell-black);
    }

    .main-menu .main-menu__list > li > ul > li > a::before,
    .main-menu .main-menu__list > li > ul > li > ul > li > a::before,
    .stricky-header .main-menu__list > li > ul > li > a::before,
    .stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
        position: absolute;
        top: 50%;
        right: 20px;
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f105";
        font-size: 14px;
        color: var(--givewell-base);
        transform: translateY(-50%) scale(0);
        -webkit-transition: 500ms;
        transition: 500ms;
    }

    .main-menu .main-menu__list > li > ul > li:hover > a::before,
    .main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
    .stricky-header .main-menu__list > li > ul > li:hover > a::before,
    .stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
        transform: translateY(-50%) scale(1);
    }

    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        top: 0;
        left: 100%;
    }

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu,
.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
    position: static;
}

    .main-menu-four__main-menu-box .main-menu__list > .megamenu > ul,
    .main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
    .main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
    .main-menu__wrapper .main-menu__list > .megamenu > ul {
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: transparent;
    }

        .main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
        .main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
        .main-menu__wrapper .main-menu__list > .megamenu > ul > li {
            padding: 0 !important;
        }

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--givewell-base);
    cursor: pointer;
}

    .mobile-nav__buttons a + a {
        margin-left: 10px;
    }

    .mobile-nav__buttons a:hover {
        color: var(--givewell-base);
    }

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--givewell-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

    .main-menu .mobile-nav__toggler:hover {
        color: var(--givewell-black);
    }

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--givewell-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--givewell-white);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .mobile-nav__content .main-menu__list > li > ul,
    .mobile-nav__content .main-menu__list > li > ul > li > ul {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0.5em;
    }

        .mobile-nav__content .main-menu__list > li:not(:last-child),
        .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
        .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

    .mobile-nav__content .main-menu__list > li > a > .main-menu-border {
        display: none !important;
    }

    .mobile-nav__content .main-menu__list > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 30px;
        color: #ffffff;
        font-size: 14px;
        font-family: var(--givewell-font, "Rubik", sans-serif);
        font-weight: 500;
        height: 46px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
            color: var(--givewell-base);
        }

    .mobile-nav__content .main-menu__list li a.expanded {
        color: var(--givewell-base);
    }

    .mobile-nav__content .main-menu__list > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
        width: 30px;
        height: 30px;
        background-color: var(--givewell-base);
        border: none;
        outline: none;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: -webkit-transform 500ms ease;
        transition: -webkit-transform 500ms ease;
        transition: transform 500ms ease;
        transition: transform 500ms ease, -webkit-transform 500ms ease;
        padding: 0;
    }

        .mobile-nav__content .main-menu__list > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            background-color: #fff;
            color: var(--givewell-base);
        }

    /* no menu after 2rd level dropdown */
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
        display: none !important;
    }

    .mobile-nav__content .main-menu__list li.cart-btn span {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .mobile-nav__content .main-menu__list li.cart-btn i {
        font-size: 16px;
    }

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .mobile-nav__top .main-menu__login a {
        color: var(--givewell-text-dark);
    }

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: var(--givewell-white);
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 30px;
        }

        .mobile-nav__social a:hover {
            color: var(--givewell-base);
        }

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .mobile-nav__contact li {
        color: var(--givewell-text-dark);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .mobile-nav__contact li + li {
            margin-top: 15px;
        }

        .mobile-nav__contact li a {
            color: #ffffff;
            -webkit-transition: 500ms;
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--givewell-base);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--givewell-base);
            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;
            text-align: center;
            font-size: 11px;
            margin-right: 10px;
            color: #fff;
        }

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
    margin-top: -31px;
    margin-bottom: -31px;
}

.home-showcase__inner {
    padding: 40px 42px 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 20px;
}

.home-showcase__item {
    position: relative;
    display: block;
    margin-bottom: 7px;
}

.home-showcase__image {
    position: relative;
    overflow: hidden;
}

    .home-showcase__image > img {
        width: 100%;
        transition: filter 500ms ease;
        filter: blur(0px);
    }

    .home-showcase__image:hover > img {
        filter: blur(2px);
    }

    .home-showcase__image:hover .home-showcase__buttons {
        transform: scale(1, 1);
        opacity: 1;
        transform-origin: top center;
    }

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
    background-color: rgba(var(--givewell-black-rgb), .70);
}

.home-showcase__buttons__item {
    justify-content: center;
    width: 162px;
}

    .home-showcase__buttons__item + .home-showcase__buttons__item {
        margin-top: 10px;
    }

.home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--givewell-black);
    margin-top: 18px;
    text-transform: capitalize;
    font-family: var(--givewell-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--givewell-white, #ffffff);
}

.mobile-nav__content .home-showcase {
    margin-top: 0;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-two__top {
    position: relative;
    display: block;
}

.main-header-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--givewell-primary);
    padding: 10px 60px 10px;
}

.main-header-two__top-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header-two__top-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-two__top-icon span {
        font-size: 19px;
        color: var(--givewell-base);
        position: relative;
        display: inline-block;
    }

.main-header-two__top-icon-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--givewell-white);
}

    .main-header-two__top-icon-text a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        color: var(--givewell-white);
    }

        .main-header-two__top-icon-text a:hover {
            color: var(--givewell-base);
        }

.main-header-two__search-box {
    position: relative;
    display: block;
}

.main-header-two__search {
    position: relative;
    display: block;
    max-width: 220px;
    width: 100%;
    margin-left: auto;
}

.main-header-two__search-input {
    position: relative;
    display: block;
}

    .main-header-two__search-input:before {
        content: "";
        position: absolute;
        top: 3px;
        bottom: 3px;
        left: 33px;
        width: 1px;
        background-color: rgba(var(--givewell-white-rgb), .20);
    }

    .main-header-two__search-input input[type="search"] {
        display: block;
        outline: none;
        background-color: transparent;
        font-size: 16px;
        font-weight: 500;
        padding-left: 50px;
        width: 100%;
        padding-right: 0;
        border: 0;
        color: var(--givewell-white);
        border-radius: 0;
    }

    .main-header-two__search-input button[type="submit"] {
        color: var(--givewell-white);
        font-size: 22px;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 0px;
        background-color: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.main-header-two__bottom {
    position: relative;
    display: block;
}

.main-header-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 13px 60px 13px;
}

.main-header-two__lan-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header-two__lan-switcher-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
}

    .main-header-two__lan-switcher-icon span {
        position: relative;
        display: inline-block;
        font-size: 20px;
        color: var(--givewell-base);
    }

    .main-header-two__lan-switcher-icon p {
        font-weight: 600;
        color: var(--givewell-black);
    }

.main-header-two__lan-switcher .select-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.main-header-two__lan-switcher .nice-select {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 0;
    border: none;
    width: 100%;
    height: 26px;
    color: var(--givewell-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    outline: none;
    padding-left: 0;
    padding-right: 32px;
    transition: all 0.2s ease-in-out;
    font-family: var(--givewell-font);
}

    .main-header-two__lan-switcher .nice-select:after {
        position: absolute;
        right: 17px;
        top: 50%;
        margin-top: -5px;
        display: block;
        border-bottom: 1px solid var(--givewell-black);
        border-right: 1px solid var(--givewell-black);
        content: '';
        width: 8px;
        height: 8px;
        pointer-events: none;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
    }

    .main-header-two__lan-switcher .nice-select .list {
        background-color: var(--givewell-primary);
        border-radius: 20px;
        box-shadow: 0 0 10px rgb(0 0 0 / 10%);
        padding: 0px 0 0px;
        margin-top: 0px;
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scale(1.0) translateY(30px);
        -ms-transform: scale(1.0) translateY(30px);
        transform: scale(1.0) translateY(30px);
        -webkit-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear;
        height: 0;
        width: 120px;
        right: 0px !important;
        left: auto !important;
    }

    .main-header-two__lan-switcher .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        height: auto;
    }

    .main-header-two__lan-switcher .nice-select .option {
        color: var(--givewell-white);
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
        font-weight: 500;
        line-height: 40px;
        min-height: 40px;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
    }

        .main-header-two__lan-switcher .nice-select .option + .option {
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }

        .main-header-two__lan-switcher .nice-select .option:hover,
        .main-header-two__lan-switcher .nice-select .option.focus,
        .main-header-two__lan-switcher .nice-select .option.selected.focus {
            color: var(--givewell-white) !important;
            background-color: var(--givewell-base);
        }

.main-header-two__contact {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-header-two__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-two__contact-icon span {
        position: relative;
        display: inline-block;
        font-size: 25px;
        color: var(--givewell-base);
    }

.main-header-two__contact-text {
    font-weight: 500;
}

    .main-header-two__contact-text a {
        color: var(--givewell-black);
    }

        .main-header-two__contact-text a:hover {
            color: var(--givewell-base);
        }

.main-menu-two__wrapper {
    position: relative;
    display: block;
}

.main-menu-two__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu-two__logo {
    display: block;
    position: relative;
}

    .main-menu-two__logo a {
        position: relative;
        display: flex;
        align-items: center;
        height: 80px;
        background-color: var(--givewell-white);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
        padding: 4px 25px 5px;
        border-top-right-radius: 20px;
    }

.main-menu-two__left {
    display: flex;
    align-items: center;
    background-color: var(--givewell-black);
    padding: 0 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.main-menu-two__main-menu-box {
    display: block;
}

.main-menu-two__right {
    position: relative;
    display: block;
}

.main-menu-two__btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: var(--givewell-base);
    padding: 14px 35px 14px;
    border-top-left-radius: 20px;
}

    .main-menu-two__btn span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background-color: var(--givewell-white);
        border-radius: 50%;
        font-size: 25px;
        color: var(--givewell-black);
    }

    .main-menu-two__btn p {
        color: var(--givewell-white);
        font-weight: 600;
        line-height: 26px;
    }


.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .main-menu-two .main-menu__list > li > a,
    .stricky-header.main-menu-two .main-menu__list > li > a {
        color: var(--givewell-white);
    }

        .main-menu-two .main-menu__list > li > a::before,
        .stricky-header.main-menu-two .main-menu__list > li > a::before {
            background-color: var(--givewell-base);
        }

    .main-menu-two .main-menu__list > li.dropdown > a:after {
        color: var(--givewell-white);
    }

    .main-menu-two .main-menu__list > li.current > a::after,
    .main-menu-two .main-menu__list > li:hover > a::after,
    .stricky-header.main-menu-two .main-menu__list > li.current > a::after,
    .stricky-header.main-menu-two .main-menu__list > li:hover > a::after {
        color: var(--givewell-base);
    }

    .main-menu-two .main-menu__list > li.current > a,
    .main-menu-two .main-menu__list > li:hover > a,
    .stricky-header.main-menu-two .main-menu__list > li.current > a,
    .stricky-header.main-menu-two .main-menu__list > li:hover > a {
        color: var(--givewell-base);
    }

.stricky-header.main-menu-two {
    background-color: var(--givewell-black);
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-three__top {
    position: relative;
    display: block;
}

    .main-header-three__top .container {
        max-width: 1624px;
    }

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #122f2a;
    padding: 10px 140px 10px;
}

.main-header-three__top-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header-three__top-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-three__top-icon span {
        font-size: 19px;
        color: var(--givewell-base);
        position: relative;
        display: inline-block;
    }

.main-header-three__top-icon-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--givewell-white);
}

    .main-header-three__top-icon-text a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        color: var(--givewell-white);
    }

        .main-header-three__top-icon-text a:hover {
            color: var(--givewell-base);
        }

.main-header-three__contact {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-header-three__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-three__contact-icon span {
        position: relative;
        display: inline-block;
        font-size: 25px;
        color: var(--givewell-base);
    }

.main-header-three__contact-text {
    font-weight: 500;
}

    .main-header-three__contact-text a {
        color: var(--givewell-white);
    }

        .main-header-three__contact-text a:hover {
            color: var(--givewell-base);
        }

.main-menu-three__search-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    color: var(--givewell-white);
    border: 1px solid rgba(255, 255, 255, 0.20);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-three__search-toggle:hover {
        color: var(--givewell-black);
        background-color: var(--givewell-white);
    }

.main-menu-three__wrapper {
    position: relative;
    display: block;
}

.main-menu-three__container {
    max-width: 100%;
    padding-left: 64px;
    padding-right: 64px;
}

.main-menu-three__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.main-menu-three__logo {
    display: block;
    position: relative;
}

    .main-menu-three__logo a {
        position: relative;
        display: block;
    }

.main-menu-three__left {
    display: flex;
    align-items: center;
    gap: 16px;
}





.main-menu-three__left {
    align-items: stretch;
}

.main-menu-three__main-menu-box {
    display: flex;
    align-items: center;
}

.main-menu-three__btn-box {
    display: flex;
    align-items: stretch;
    margin-left: 0;
}

.main-menu-three__btn {
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

    .main-menu-three__btn span {
        height: 56px;
        width: 56px;
        font-size: 26px;
    }

    .main-menu-three__btn p {
        margin: 0;
        line-height: 20px;
        font-size: 15px;
    }




.main-menu-three__main-menu-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(58, 162, 239, 0.62) 0%, rgba(24, 124, 208, 0.50) 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    padding: 12px 28px;
    border-radius: 26px;
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    box-shadow: 0 18px 40px rgba(13, 68, 116, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.main-menu-three__main-menu-box .main-menu__list {
    flex: 1 1 auto;
    padding-right: 14px;
}

.main-menu-three__btn-box {
    position: relative;
    display: block;
}

.main-menu-three__btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 86px;
    background: linear-gradient(135deg, rgba(255, 154, 71, 0.74) 0%, rgba(255, 123, 31, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 14px 28px;
    border-radius: 24px;
    box-shadow: 0 18px 35px rgba(209, 104, 15, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-three__btn span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 48px;
        background-color: rgba(255, 255, 255, 0.20);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        font-size: 22px;
        color: var(--givewell-white);
    }

    .main-menu-three__btn p {
        color: var(--givewell-white);
        font-weight: 700;
        line-height: 24px;
        font-size: 16px;
    }

    .main-menu-three__btn:hover {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
        box-shadow: 0 24px 40px rgba(209, 104, 15, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.30);
    }


.main-menu-three .main-menu__list > li,
.stricky-header.main-menu-three .main-menu__list > li {
    padding-top: 18px;
    padding-bottom: 18px;
}

    .main-menu-three .main-menu__list > li > a,
    .stricky-header.main-menu-three .main-menu__list > li > a {
        color: var(--givewell-white);
        font-size: 16px;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: 16px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .main-menu-three .main-menu__list > li.dropdown > a:after,
    .stricky-header.main-menu-three .main-menu__list > li.dropdown > a:after {
        display: none;
    }

    .main-menu-three .main-menu__list > li.dropdown > a,
    .stricky-header.main-menu-three .main-menu__list > li.dropdown > a {
        padding-right: 16px;
    }

    .main-menu-three .menu-dropdown-icon,
    .stricky-header.main-menu-three .menu-dropdown-icon {
        margin-left: 8px;
        font-size: 13px;
        line-height: 1;
    }

    .main-menu-three .main-menu__list > li.dropdown > a:after {
        color: var(--givewell-white);
        font-size: 15px;
        top: 30%;
    }

    .main-menu-three .main-menu__list > li + li,
    .stricky-header.main-menu-three .main-menu__list > li + li {
        margin-left: 24px;
    }

    .main-menu-three .main-menu__list > li.current > a::after,
    .main-menu-three .main-menu__list > li:hover > a::after,
    .stricky-header.main-menu-three .main-menu__list > li.current > a::after,
    .stricky-header.main-menu-three .main-menu__list > li:hover > a::after {
        color: var(--givewell-white);
    }

    .main-menu-three .main-menu__list > li.current > a,
    .main-menu-three .main-menu__list > li:hover > a,
    .stricky-header.main-menu-three .main-menu__list > li.current > a,
    .stricky-header.main-menu-three .main-menu__list > li:hover > a {
        color: var(--givewell-white);
        background: rgba(255, 255, 255, 0.14);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    }

    .main-menu-three .main-menu__list > li.current > a::before,
    .main-menu-three .main-menu__list > li:hover > a::before,
    .stricky-header.main-menu-three .main-menu__list > li.current > a::before,
    .stricky-header.main-menu-three .main-menu__list > li:hover > a::before {
        transform: scale(0, 1);
    }

.main-menu-three .main-menu__list > li > ul,
.main-menu-three .main-menu__list > li > ul > li > ul,
.stricky-header.main-menu-three .main-menu__list > li > ul,
.stricky-header.main-menu-three .main-menu__list > li > ul > li > ul {
    top: calc(100% + 8px);
    min-width: 310px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(109, 176, 224, 0.34);
    box-shadow: 0 18px 45px rgba(9, 38, 64, 0.20);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

    .main-menu-three .main-menu__list > li > ul::before,
    .main-menu-three .main-menu__list > li > ul > li > ul::before,
    .stricky-header.main-menu-three .main-menu__list > li > ul::before,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > ul::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.05) 100%);
        pointer-events: none;
    }

    .main-menu-three .main-menu__list > li > ul > li,
    .main-menu-three .main-menu__list > li > ul > li > ul > li,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > ul > li {
        z-index: 1;
    }

.main-menu-three .main-menu__list > li > ul > li + li,
.main-menu-three .main-menu__list > li > ul > li > ul > li + li,
.stricky-header.main-menu-three .main-menu__list > li > ul > li + li,
.stricky-header.main-menu-three .main-menu__list > li > ul > li > ul > li + li {
    margin-top: 8px;
}

    .main-menu-three .main-menu__list > li > ul > li > a,
    .main-menu-three .main-menu__list > li > ul > li > ul > li > a,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > a,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > ul > li > a {
        color: var(--givewell-white);
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 16px;
        padding: 13px 18px;
        line-height: 1.45em;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .main-menu-three .main-menu__list > li > ul > li:hover > a,
    .main-menu-three .main-menu__list > li > ul > li > ul > li:hover > a,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li:hover > a,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > ul > li:hover > a {
        color: var(--givewell-white);
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.18);
        transform: translateX(4px);
    }

    .main-menu-three .main-menu__list > li > ul > li > a::before,
    .main-menu-three .main-menu__list > li > ul > li > ul > li > a::before,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > a::before,
    .stricky-header.main-menu-three .main-menu__list > li > ul > li > ul > li > a::before {
        color: var(--givewell-white);
        opacity: .85;
    }

.stricky-header.main-menu-three {
    background-color: var(--givewell-white);
}


/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four .main-header-three__top-inner {
    background-color: rgba(var(--givewell-white-rgb), .12);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.main-menu-four .main-menu-three__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--givewell-white);
    padding: 4.5px 30px 4.5px;
    border-bottom-right-radius: 20px;
    height: 80px;
}







/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-active .search-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-popup .color-layer {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 38, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidenav-bar-visible .search-popup {
    display: none;
}

.search-popup__content {
    position: relative;
    width: min(680px, calc(100% - 32px));
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(67, 170, 233, 0.96) 0%, rgba(45, 147, 221, 0.94) 100%);
    box-shadow: 0 30px 70px rgba(10, 38, 63, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: translateY(24px) scale(0.96);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-active .search-popup__content {
    transform: translateY(0) scale(1);
}

.search-popup__content-inner {
    position: relative;
}

.search-popup__sub-title {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.search-popup__title {
    margin: 0 0 24px;
    color: var(--givewell-white);
    font-size: 34px;
    line-height: 1.2em;
}

.search-popup .close-search {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--givewell-white);
    font-size: 18px;
    z-index: 2;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .search-popup .close-search:hover {
        background-color: var(--givewell-white);
        color: var(--givewell-base);
    }

.search-popup form {
    position: relative;
    margin: 0;
}

.search-popup .form-group {
    position: relative;
    margin: 0;
}

    .search-popup .form-group input[type="text"],
    .search-popup .form-group input[type="search"] {
        width: 100%;
        height: 72px;
        padding: 0 92px 0 28px;
        border: none;
        border-radius: 22px;
        background-color: rgba(255, 255, 255, 0.96);
        color: var(--givewell-black);
        font-size: 18px;
        font-weight: 500;
        text-transform: none;
        box-shadow: 0 16px 32px rgba(13, 68, 116, 0.14);
    }

        .search-popup .form-group input[type="text"]:focus,
        .search-popup .form-group input[type="search"]:focus {
            outline: none;
        }

    .search-popup .form-group input[type="submit"],
    .search-popup .form-group button {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 18px;
        background: var(--givewell-primary);
        color: var(--givewell-white);
        font-size: 18px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .search-popup .form-group input[type="submit"]:hover,
        .search-popup .form-group button:hover {
            background-color: var(--givewell-black);
        }

.search-popup input::placeholder {
    color: #6c7a89;
}


/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/




















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* =========================================================
   SAVAŞ BEY: HOME = BORDER YOK | INNER = BORDER VAR
   Givewell Theme Override (root yok)
   ========================================================= */

/* 0) Ortak: kartlarda premium shadow */
.gw-card,
.gw-box,
.gw-panel,
.gw-block {
    border-radius: var(--givewell-bdr-radius);
    box-shadow: var(--givewell-shadow, 0 8px 20px rgba(0,0,0,0.05));
    background: var(--givewell-white);
}

/* 1) Ana Sayfa: border YOK */
body.home .gw-card,
body.home .gw-box,
body.home .gw-panel,
body.home .gw-block,
body.home .shadow-box,
body.home .home-showcase__inner,
body.home .donation-page__content,
body.home .blog-details,
body.home .table-responsive {
    border: none !important;
}


/* 3) PDF / Doküman / Tablo / Uzun Metin blokları (her zaman border + shadow) */
.pdf-list-area,
.pdf-list,
.document-area,
.doc-area,
.table-area,
.long-text-block,
.content-block,
.page-content-block {
    border: 1px solid #E6EEF6 !important;
    border-radius: var(--givewell-bdr-radius);
    box-shadow: var(--givewell-shadow, 0 8px 20px rgba(0,0,0,0.05));
    background: var(--givewell-white);
    overflow: hidden;
}
/*==============================================
   Counter One
===============================================*/
.counter-one {
    position: relative;
    display: block;
    background-color: #f1f6f7;
    padding: 120px 0 90px;
    overflow: hidden;
    z-index: 1;
}

.counter-one__shape-1 {
    position: absolute;
    bottom: -275px;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

    .counter-one__shape-1 img {
        width: auto;
    }

.counter-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .counter-one__list li {
        position: relative;
        display: block;
        margin-bottom: 30px;
        margin-left: 35px;
    }

.counter-one__single {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.counter-one__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

    .counter-one__icon span {
        position: relative;
        display: inline-block;
        font-size: 60px;
        color: var(--givewell-primary);
        transition-delay: 0.1s;
        transition: all 500ms ease;
    }

.counter-one__single:hover .counter-one__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-one__icon-shape-1 {
    position: absolute;
    top: -25px;
    left: -30px;
    opacity: .15;
    z-index: -1;
}

    .counter-one__icon-shape-1 img {
        width: auto;
    }

.counter-one__list li:nth-child(2) .counter-one__icon span {
    color: var(--givewell-base);
}

.counter-one__list li:nth-child(3) .counter-one__icon span {
    color: #8139e7;
}

.counter-one__list li:nth-child(4) .counter-one__icon span {
    color: #44c895;
}

.counter-one__content {
    position: relative;
    display: block;
    flex: 1;
    text-align: right;
    z-index: 2;
}

.counter-one__content-count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 17px;
}

    .counter-one__content-count h3 {
        font-size: 50px;
        color: #122627;
        font-weight: 900;
        line-height: 50px;
    }

    .counter-one__content-count span {
        font-size: 50px;
        color: #122627;
        font-weight: 900;
        line-height: 50px;
    }

.counter-one__text {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--givewell-white);
    padding: 8px 20px 8px;
    border-radius: 21px;
}


.main-slider-three {
    margin-bottom: 0;
}

.main-slider-three__slide {
    position: relative;
    min-height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 35%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.main-slider-three__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27,42,78,.78) 0%, rgba(27,42,78,.35) 55%, rgba(27,42,78,.05) 100%);
    border-radius: 0 0 32px 32px;
}

.main-slider-three__content {
    position: relative;
    max-width: 650px;
    padding: 90px 0;
    color: #fff;
}

.main-slider-three__sub-title {
    font-family: var(--givewell-font-two);
    font-weight: 500;
    color: #EEF6FD;
    margin: 0 0 10px;
}

.main-slider-three__title {
    font-family: var(--givewell-font-two);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    font-size: 52px;
    margin: 0 0 16px;
    text-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.main-slider-three__btn-box {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.main-slider-three__btn {
    border-radius: 14px !important;
    padding: 18px 22px 16px;
}

.main-slider-three__btn--primary {
    background: var(--givewell-cta, var(--givewell-base));
    color: #fff;
}

    .main-slider-three__btn--primary:hover {
        background: var(--givewell-cta-hover, var(--givewell-primary));
        color: #fff;
    }

.main-slider-three__btn--ghost {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
}

    .main-slider-three__btn--ghost:hover {
        background: rgba(255,255,255,.18);
    }


.main-slider-three__shape-1,
.main-slider-three__shape-2 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.main-slider-three__shape-1 {
    right: 20px;
    bottom: 40px;
    opacity: .65;
}

.main-slider-three__shape-2 {
    right: 120px; /* önceki: 180px → sağa yaklaştırıldı */
    top: 90px;
    opacity: .65;
}

@media (max-width: 992px) {
    .main-slider-three__slide {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 500px;
        min-height: auto;
    }

    .main-slider-three__title {
        font-size: 40px;
    }

    .main-slider-three__shape-1, .main-slider-three__shape-2 {
        display: none;
    }
}


.feature-three {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 60px;
}


.main-menu-three__wrapper {
    border-radius: 0 0 20px 20px;
    box-shadow: 0 2px 16px rgba(27,42,78,.10);
}

.stricky-header .main-menu-three__wrapper {
    border-radius: 0 0 20px 20px;
}




.main-menu-three__btn {
    background-color: #F97316 !important; /* turuncu */
    color: #fff !important;
    border: 1.5px solid #F97316 !important; /* ince kenarlık */
    border-radius: 50px !important; /* tam yuvarlak hap şekli */
    padding: 10px 26px !important;
    font-weight: 600;
    transition: background .25s, border-color .25s, transform .2s;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
}

    /* Ok ikonunu gizle */
    .main-menu-three__btn .icon-right-up,
    .main-menu-three__btn [class*="icon-arrow"],
    .main-menu-three__btn span[class^="icon"] {
        display: none !important;
    }

    .main-menu-three__btn:hover {
        background-color: #ea6c0a !important;
        border-color: #ea6c0a !important;
        color: #fff !important;
        transform: translateY(-1px);
    }

.main-menu-three__btn-text {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-one__input-box input:invalid:not(:placeholder-shown),
.contact-one__input-box textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231,76,60,.15);
}

.contact-one__input-box input:valid,
.contact-one__input-box textarea:valid {
    border-color: #2ecc71 !important;
}

/* ============================================================
           7. ANASAYFA GÜNCEL DUYURU / İÇERİKLER KART DÜZENİ
           ============================================================ */
#homeNewsArea {
    align-items: stretch;
}

    #homeNewsArea > li {
        display: flex;
        margin-bottom: 30px;
    }

    #homeNewsArea .blog-three__single {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    #homeNewsArea .blog-three__title {
        line-height: 1.35;
        min-height: 96px;
        margin-bottom: 16px;
    }

    #homeNewsArea .blog-three__single-shape {
        min-height: 20px;
    }

    #homeNewsArea .blog-three__img-box {
        margin-top: auto;
    }

    #homeNewsArea .blog-three__img {
        width: 100%;
        height: 260px;
        overflow: hidden;
    }

        #homeNewsArea .blog-three__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    #homeNewsArea .blog-three__client-info {
        margin-top: 18px;
    }

@media (max-width: 1199px) {
    #homeNewsArea .blog-three__title {
        min-height: 88px;
    }

    #homeNewsArea .blog-three__img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    #homeNewsArea .blog-three__title {
        min-height: 80px;
    }
}

@media (max-width: 767px) {
    #homeNewsArea .blog-three__title {
        min-height: auto;
    }

    #homeNewsArea .blog-three__img {
        height: 220px;
    }
}


.main-menu-three__main-menu-box {
    border-radius: 22px;
    padding: 6px 18px;
    margin-top: 8px;
    margin-bottom: 8px;
}


.main-menu-three__btn-box {
    display: flex;
    align-items: center;
}

.main-menu-three__btn {
    height: 85px;
    min-height: 62px;
    padding: 0 24px;
    border-radius: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.announcement-modal .modal-dialog {
    padding: 10px;
}

.announcement-modal__content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,.18);
    background: #fff;
}

.announcement-modal__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 320px;
}

.announcement-modal__media {
    position: relative;
    background: #f5f7fa;
}

.announcement-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.announcement-modal__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
}

.announcement-modal__body {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.announcement-modal__title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.announcement-modal__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    opacity: .9;
}

.announcement-modal__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.announcement-modal__btn {
    padding: 14px 22px;
}

.announcement-modal__secondary {
    border: 1px solid rgba(0,0,0,.15);
    background: transparent;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
}

.announcement-modal__note {
    margin-top: 14px;
    font-size: 12px;
    opacity: .7;
}

.announcement-modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.9);
    display: grid;
    place-items: center;
    z-index: 3;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 991px) {
    .announcement-modal__grid {
        grid-template-columns: 1fr;
    }

    .announcement-modal__media {
        min-height: 200px;
    }

    .announcement-modal__body {
        padding: 22px 20px;
    }

    .announcement-modal__title {
        font-size: 20px;
    }
}

.hearing-alert-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.hearing-alert-fixed__text {
    background: rgba(255, 255, 255, 0.96);
    color: #2b2b2b;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.hearing-alert-fixed__icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    overflow: visible;
}


    .hearing-alert-fixed__icon img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        position: relative;
        z-index: 3;
    }

.hearing-alert-fixed__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(239, 129, 38, 0.45);
    animation: hearingEcho 2s infinite;
    z-index: 1;
}

.hearing-alert-fixed__ring--delay {
    animation-delay: 1s;
}

.hearing-alert-fixed:hover .hearing-alert-fixed__icon {
    transform: scale(1.07);
}

.hearing-alert-fixed:hover .hearing-alert-fixed__text {
    transform: translateX(-2px);
}

@keyframes hearingEcho {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@media (max-width: 768px) {

    .hearing-alert-fixed {
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }

    .hearing-alert-fixed__text {
        font-size: 11px;
        padding: 7px 10px;
        max-width: 155px;
        white-space: normal;
    }

    .hearing-alert-fixed__icon {
        width: 54px;
        height: 54px;
    }

        .hearing-alert-fixed__icon img {
            width: 30px;
            height: 30px;
        }
}