/* |> RESET */

@font-face {
    font-family: ;
}
:root {
    --bg-main: #F9F9F9;
    --color-main: #2DAF9C;
    /* Animation */
    --animate-delay: 0.25s;
}

body {
    background-color: var(--bg-main);
    font-family: 'Montserrat', sans-serif;
}

/* |> ANIMATIONS */
.animate-scalex {
    animation: scaleX 1s linear;
}

@keyframes scaleX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* |> BOOTSTRAP */
.btn-outline-main {
    color: var(--color-main);
    border-color: var(--color-main);
}

.text-main {
    color: var(--color-main) !important;
}

.text-hover-main:hover {
    color: var(--color-main) !important;
}

.bg-main {
    background-color: var(--color-main) !important;
}

.bg-hover-main:hover {
    background-color: var(--color-main) !important;
}

/* |> ANIMATES */
.animate__animated {
    opacity: 0;
}

/* |> CLASSES */
.object-cover {
    object-fit: cover;
}

.container-90 {
    width: 90%;
    margin: 0 auto;
}

.container-main {
    width: 100%;
}

@media (min-width: 1200px) {
    .container-main {
        width: calc(100% - 160px);
        margin: 0 auto;
    }
}

@media (min-width: 1400px) {
    .container-main {
        width: calc(100% - 200px);
    }
}

.container-80 {
    width: 80%;
    margin: 0 auto;
}

.icon-fill-white {
    filter: brightness(0) invert(1);
}

.btn-active-dark:hover img,
.btn-active-success:hover img {
    filter: brightness(0) invert(1);
}

/* |> HEADER */
#pageHeader {
    z-index: 9;
    transition: all 0.5s ease;
}

#pageHeader .bg-hover-main:hover img {
    filter: brightness(0) invert(1);
}

#mainMenu {
    z-index: 8;
    transition: visibility 0s, opacity 0.5s;
    overflow-y: auto;
}

#mainMenu.invisible {
    transition-delay: 0.5s, 0s;
}

#mainMenu .main-menu-link:after {
    content: "";
    display: block;
    width: 125%;
    border-bottom: 2px solid;
    margin-top: 5px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

#mainMenu .main-menu-link[aria-expanded='true'] {
    color: var(--bs-success);
}

#mainMenu .main-menu-link[aria-expanded='true']:after {
    transform: scaleX(1);
}

#mainMenu .main-menu-link[aria-expanded='true'] .fa {
    transform: rotate(90deg);
}

#mainMenu .main-submenu-list ul li a {
    position: relative;
    padding: 5px 10px;
    opacity: 0.7;
}

#mainMenu .main-submenu-list ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.9);
    border-radius: 1em;
    background-color: rgb(255 255 255 / 25%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#mainMenu .main-submenu-list ul li:hover a {
    opacity: 1;
    color: #fff;
}

#mainMenu .main-submenu-list ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.menu-swiper .swiper-slide > .img-fluid {
    transition: transform 0.5s ease;
}

.menu-swiper .swiper-slide:hover > .img-fluid {
    transform: scale(1.075);
}

.menu-swiper .swiper-button-prev,
.menu-swiper .swiper-button-next {
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    border-radius: 50%;
    background-color: var(--bs-success);
    color: #fff;
}

.menu-swiper .swiper-button-prev {
    left: calc(20% - 15px);
}

.menu-swiper .swiper-button-next {
    right: calc(20% - 15px);
}

.menu-swiper .swiper-button-prev:after,
.menu-swiper .swiper-button-next:after {
    font-size: 21px;
}

/* |> ANASAYFA */
#homeSwiper .slide-img-cover:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: no-repeat left url("../img/cover.png");
    background-size: cover;
    pointer-events: none;
    content: "";
}

#homeSlider .slide-context {
    position: absolute;
    left: 5%;
    bottom: 17.5%;
    z-index: 2;
    max-width: 40%;
    color: #fff;
}

#homeSwiper .home-swiper-pagination {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 10%;
    z-index: 1;
    width: auto;
}

#homeSwiper .home-swiper-bar {
    display: inline-block;
    width: 10%;
    height: 1px;
    position: relative;
    margin: 0 5px;
    background-color: #B4CBC8;
}

#homeSwiper .home-swiper-bar .state-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: left;
    transform: scaleX(0);
    background-color: black;
}

#homeSwiper .home-swiper-bar-active .state-bar {
    animation: scaleX 3s linear;
}

#homeSlider .scroll-down {
    height: 10vh;
}

#homeSlider .scroll-down-item {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #EEE;
}

#homeSlider .scroll-down-item:last-child {
    border-right: none;
}

#homeSwiperPlay {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 1;
    padding: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

#homeSwiperPlay .ripple,
#homeSwiperPlay .ripple span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#homeSwiperPlay .ripple span {
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: ripple 1.875s infinite;
}

#homeSwiperPlay .ripple span:nth-child(1) {
    animation-delay: 250ms;
}

#homeSwiperPlay .ripple span:nth-child(2) {
    animation-delay: 500ms;
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.75);
    }
}

@media screen and (max-width: 768px) {
    #homeSwiper .home-swiper-pagination {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    #homeSwiperPlay {
        padding: 1rem;
    }

    #homeSwiperPlay img {
        width: 30px;
        height: 30px;
    }
}

#istatistikler {
    background-color: #fff;
}

/* |> BILGILENDIRME */
#icerikBilgilendirme .icerik-row {
    padding: 10vh 0;
}

#icerikBilgilendirme .icerik-row:nth-child(even) {
    background-color: #fff;
}

#icerikBilgilendirme .section-image {
    float: right;
    margin-top: calc(-40% - 15px);
}

/* |> YATIRIM */
#istatistik {
    height: 500px;
    background: no-repeat center url('../img/hakkimizda-resim-fonuniq.jpg');
    background-size: cover;
    position: relative;
    z-index: 1;
}

#istatistik:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #1c3752;
    opacity: 0.6;
}

/* |> FOOTER */
#pageFooter .col-icon {
    position: relative;
    z-index: 1;
}

#pageFooter .col-icon:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 75%;
    padding-bottom: 75%;
    border-radius: 50%;
    background-color: #1CB19C;
}

#pageFooter .footer-row-label {
    display: inline-block;
}

#pageFooter .footer-row-label:after {
    content: "";
    display: block;
    width: calc(100% + 15px);
    border-bottom: 2px solid #1CB19C;
}

/* |> COOKIES */
#cookies {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 99;
    max-width: 420px;
}

#yetkibelgesi .yetki-card {
    background-color: #f8f8f8 !important;
}

.yetki-daire-left {
    left: -10px;
    background-color: #ffffff;
}

.yetki-daire-right {
    right: -10px;
    background-color: #ffffff;
}

#yetkibelgesi .card-title {
    color: #020b10 !important;
}

#yetkibelgesi .fs-5 {
    color: #939393 !important;
}

#loginKaydol span {
    color: #c1c1c1;
}

#loginKaydol:hover span {
    color: #2DAF9C;
}

#loginKaydol svg {
    fill: #c1c1c1;
}

#loginKaydol:hover svg {
    fill: #2DAF9C;
}
#loginUye span {
    color: #c1c1c1;
}

#loginUye:hover span {
    color: #2DAF9C;
}

#loginUye svg {
    fill: #c1c1c1;
}

#loginUye:hover svg {
    fill: #2DAF9C;
}
#loginUye::after{
    content: "";
    border-bottom: 1px solid #eff2f5;
    width: 100%;
    display: block;
    margin-top: 5px;

}
#loginKaydol::after{
    content: "";
    border-bottom: 1px solid #eff2f5;
    width: 100%;
    display: block;
    margin-top: 5px;
}
#sagBackground{
border-radius: 32px;
    opacity: 0.5;
}
sagBackground::after{

}
#sagİmg{
    top: 45px;
    left: 133px;
}
#destekButton{
    background-color: #1C3752;
}
.save-btn{
    background-color: #1C3752!important;
}

.back-btn{
    background-color: #2DAF9C!important;
}
#scrollUst{
    overflow-x: hidden;
}
#headerBg{
    position: fixed;
    height: 100px;
    z-index: 7;
    left: calc(5%);
    background-image: url("../img/bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.giris-icon-contain{
    display: flex;
    justify-content: center;
    padding-left: 3.33%;
    padding-top: 10px;
}
.giris-icon-contain a {
    color: #181c32;
}
.giris-icon{
    width: 35px;
    height: 35px;
}
.yatirim-satir{
    background-color: #f8f8f8!important;
    border-radius: 7px;
}
.yatirim-tablo-title{
    background-color: #f8f8f8!important;
    border-radius: 7px;
    font-weight: bold;
}
#urunkalemEkle{
    font-style: normal;
}
#hemenBasvur{
    background-color: #2DAF9C;
}
.sistem-onayi{
    background-color: #2DAF9C!important;
}
.sistem-about{
    background-color: #2DAF9C!important;
}
#finansalDegerler{
    background-color: #1C3752;
}
.border-style-none{
    border-style: hidden;
}
.text-darkblue{
    color: #1C3752!important;
    font-family:'Montserrat',sans-serif;
}
#ulasanCardlar div{
    border-radius: 0px!important;
}
input{
    border-radius: 0px!important;
}
.izin-ver{
    border-radius: 20px!important;
}
input::placeholder {
    font-size: 10px;
}
#checkBir .form-check-input:checked {
    background-color: #2DAF9C;
}
#kimlikDogrulama .form-check-input:checked {
    background-color: #2DAF9C;
}
#kampanyaInput .form-check-input:checked{
    background-color: #2DAF9C;
}
#fonInput .form-check-input:checked{
    background-color: #2DAF9C;
}
#profilInput .form-check-input:checked{
    background-color: #2DAF9C;
}
.bi-plus-circle-fill{
    color: #2DAF9C!important;
}
.kurumsal-renk{
    color: #2DAF9C;
}

.menu-link{
    border-bottom: 1px solid #00000029;
}
.investor-button-box:hover .investor-button {
    visibility: visible;
    top: 125%;
    opacity: 1;
    box-shadow: 5px 10px 20px 0px #00000052;
}

.investor-button {
    width: 214px;
    height: auto;
    position: absolute;
    padding: 21px;
    background-color: white;
    border-radius: 10%;
    top: 135%;
    bottom: auto;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .50s ease-in-out;
}

.investor-button::after {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background-color: white;
    top: -4px;
    right: 35px;
    transform: rotate(45deg);
}

ul.investor-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
}

li.investor-links {
    margin-bottom: 10px;
    border-bottom: 1px solid #00000029;
    width: 100%;
    display: block;
}

li.investor-links a {
    color: #000;
    font-size: 12px;
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    transform: translateY(9px);
    opacity: 0;
    transition: all .60s ease-in-out;
}

.investor-button-box:hover li.investor-links>a {
    opacity: 1;
    transform: translateY(0);
}

ul.investor-links>li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.investor-button-3 h4 {
    text-align: center;
}

.investor-button-3 p {
    text-align: center;
}

.investor-button-box {
    position: relative;
}

.investor-links-3 {
    padding-left: 0;
}

ul.investor-links-3>li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.investor-button-box:hover .investor-button-3 {
    top: 150%;
}
 .investor-button-3{
     right: 15px;
 }