@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

:root {
    --main: #1BA8B4;
    --dark: #00172b;
    --poppins: "Poppins", serif;
    --title: 'Gilroy-Bold', sans-serif;
    --shadow: 0 0 5px 2px #44444411;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--poppins) !important;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #fcfbfb;
}

a {
    text-decoration: none;
}

.logo {
    width: 5rem;
}

.navbar {
    box-shadow: var(--shadow)
}

.navbar .nav-link {
    font-size: .9rem;
    font-weight: 500;
    margin: 0 .4rem;
}

.navbar button,
.navbar .account {
    background: none;
    border: none;
    color: var(--dark);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.btn-success {
    background-color: var(--main);
    border-color: var(--main);
    border-radius: 100rem;
    font-weight: 500;
    font-size: .9rem;
}

.btn-success:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    border-radius: 100rem;
}

.banner-area {
    margin-top: 2.5rem;
}

.banner-area img {
    width: 100%;
    height: 30rem;
    border-radius: .5rem;
    object-fit: cover;
}

.banner-area .splide__arrow {
    background-color: var(--main);
    border-radius: .3rem;
}

.banner-area .splide__arrow svg {
    fill: #fff;
}

.banner-area .splide__pagination__page.is-active {
    background: var(--dark);
    transform: scale(1);
}

.banner-area .splide__pagination__page {
    background: var(--main);
}

.relative-area {
    position: relative;
}

.info-absolute {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
    transition: all .3s ease-in;
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    border-radius: 50rem;
    transition: all .3s ease-in;
}

.category-area {
    margin: 4rem 0;
    padding: 1rem 0;
}

.category-flex-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 20px;
}

.category-card {
    padding: .8rem 1rem;
    border-radius: .5rem;
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #00172b07;
}

.icon {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    display: flex;
    justify-content: center !important;
    margin: 0rem auto;
}

.icon img {
    max-width: 100%;
    max-height: 100%;
}

.category-name {
    font-size: 1.2rem;
    color: var(--main);
    margin: 0;
    width: 100%;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.category-flex-scroll::-webkit-scrollbar {
    height: 5px;
}

.category-flex-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

.category-flex-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.donate-card {
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow);
    border-radius: .75rem;
    text-align: center;
}

.donate-card img {
    border-radius: .75rem .75rem 0 0;
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.donate-card input {
    border-radius: 0;
    text-align: center;
    box-shadow: none !important;
}

.donate-card input:focus {
    border-color: var(--main);
}

.btn-outline-success {
    width: 100%;
    border-radius: 0;
    color: #fff;
    background-color: var(--dark);
    border-radius: 0;
    border-color: var(--dark);
}

.btn-outline-success:hover {
    background-color: var(--main);
    border-color: var(--main);
}

.donate-card h2 a {
    font-size: .9rem;
    color: var(--main);
    margin: 1rem 0;
}

.title-area {
    display: flex;
}

.title-area h1 {
    text-align: start;
    margin-bottom: 2rem;
    font-family: var(--title);
    color: transparent;
    font-size: 2rem;
    position: relative;
    background: linear-gradient(-90deg, #1BA8B4, #00172b);
    -webkit-background-clip: text;
    background-clip: text;
}

.project-area .nav-link {
    background-color: #fff;
    color: var(--dark);
    font-weight: 500;
    font-size: .9rem;
    border: none;
    border-radius: 0;
}

.project-area .nav-link.active {
    background: var(--main);
    color: #fff;
}

.project-area .splide__list img {
    width: 100%;
}

.project-area .splide__list h2 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark);
    border-bottom: 1px solid #00172b10;
    padding-bottom: 1rem;
}

.project-area .splide__list p {
    text-align: start;
    font-size: .85rem;
    color: #6e6e6e;
    padding-top: .5rem;
}

.flex-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body {
    padding: 1rem 2rem;
}

.btn-warning {
    background: none;
    border: none;
    color: #00172b;
    font-weight: 500;
    font-size: .85rem;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:checked+.btn,
.btn-warning.active,
.btn-warning.show,
.btn-warning:first-child:active,
:not(.btn-warning)+.btn-warning:active {
    background: none;
    border: none;
    color: #00172b;
    font-weight: 500;
    font-size: .85rem;
}

.card-img-top {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.project-area .splide__arrow {
    opacity: 1 !important;
    background-color: var(--main);
    border: 5px solid #fff;
    font-size: 1.3rem;
}

.project-area .splide__arrow:hover {
    background-color: var(--dark);
}

.project-area .splide__arrow--prev {
    left: -1rem;
    padding: .5rem;
}

.project-area .splide__arrow--next {
    right: -1rem;
    padding: .5rem;
}

.project-area .splide__arrow--prev svg,
.project-area .splide__arrow--next svg {
    fill: #fff;
}

.news-area {
    margin-top: 3.5rem;
}

.title-area-2 {
    margin-bottom: 2rem;
}

.title-area-2 h1 {
    text-align: start;
    margin-bottom: 2rem;
    font-family: var(--title);
    text-transform: none;
    color: transparent;
    font-size: 2rem;
    position: relative;
    background: linear-gradient(45deg, #1BA8B4, #00172b);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
}

.title-area-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    background: var(--dark);
    padding: 5rem 0;
    padding-bottom: 1rem;
    margin-top: 5rem;
}

.footer-logo {
    width: 8rem;
}

footer .descrip {
    color: #fff;
    font-size: .75rem;
    margin-top: 1.5rem;
}

.flexed-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.one-foot {
    width: 25%;
}

.two-foot {
    width: 15%;
}

.three-foot {
    text-align: end;
    width: 25%;
}

.two-foot h6,
.three-foot h6 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.two-foot a,
.three-foot a {
    color: #fff;
    font-size: .9rem;
}

footer .social-area a {
    color: #fff;
    margin-right: 1rem;
}

.line-footer {
    height: .1px;
    width: 100%;
    background-color: #1ba7b42f;
    margin: 1.5rem 0;
    margin-bottom: 1.2rem;
}

footer h5 {
    color: var(--main);
    font-size: .75rem;
    margin-bottom: .2rem;
    margin-top: .7rem;
    font-weight: 300;
}

.sub-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-footer .two p {
    font-size: .9rem;
    color: var(--main);
    margin-bottom: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--main);
}

.dropdown-item {
    color: var(--dark);
    font-weight: 500;
}

header {
    position: absolute;
    z-index: 999;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #fff;
}

.margin-main {
    margin-bottom: 9rem;
}

.whatsapp-btn {
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    z-index: 99999;
    width: 65px;
    height: 65px;
    background-color: #26D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
    box-shadow: var(--shadow);
}

.whatsapp-btn a {
    font-size: 2.2rem;
    color: #fff;
}

.fixed-menu {
    position: fixed;
    top: 0;
    transition: all .3s ease;
}

#search-input {
    transition: width 0.3s ease;
    width: 0;
    opacity: 0;
    padding: 5px;
    box-shadow: var(--shadow);
    border-radius: 10rem;
    border: none;
    color: var(--dark);
    padding-left: 1rem;
}


#search-input::placeholder {
    color: var(--dark);
    font-weight: 500;
}

#search-input.open {
    width: 200px;
    opacity: 1;
}

#search-results {
    position: absolute;
    top: 2rem;
    left: 0rem;
    width: 250px;
    display: none;
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
}

.search-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    top: .2rem;
    right: .2rem;
}

.close-btn:hover {
    color: #f44336;
}

.result-item {
    padding: 10px;
    font-size: .9rem;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.result-item a:hover {
    color: var(--main);
}

#search-results.show {
    display: block;
    /* Arama yapıldığında göster */
}


.lasted-header {
    position: relative;
}

.top-header {
    background-color: var(--dark);
    padding: .5rem .5rem;
    text-align: end;
    color: #fff;
}

.top-header h6 {
    font-size: .75rem;
    font-weight: 400;
}

.top-header a {
    color: var(--main);
}

.navbar-toggler {
    box-shadow: none !important;
    border: none !important;
    outline: 0 !important;
}

.mobile-btn {
    display: none;
}

@media(max-width:991.98px) {
    .mobile-btn {
        display: block;
    }

    .bagis-btn {
        margin-right: 0rem;
        margin-left: 2.5rem;

    }

    .navbar button,
    .navbar .account {
        margin-right: 0;
    }
}

.tl-icon {
    position: relative;
}

.absolute-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.news-area .card {
    height: 100%;
}

.card-footer {
    background-color: #fff;
}

.alert {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999999;
}

.basket-btn {
    font-size: .9rem;
    color: var(--main);
}