:root {
    --renkMavi: #1D3557;
    --renkKirmizi: #991C15;
    --renkFont : #364153;
}
html{
    height: 100%;
    margin: 0;
}
body {
    background: #eee;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--renkFont);
    margin: 0;
    padding: 0;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a{
    text-decoration: none;
    color: var(--renkFont);
}
a:hover{
    color: var(--renkKirmizi);
}
.logo{
    max-height: 50px;
}
.bgWaves{
    background: url("../images/menu-bg.png") no-repeat center top;
    background-size: cover;
}
.bgMotif{
    background: url("../images/motif.png") repeat center center;
}
.bgLacivert{
    background-color: var(--renkMavi);
}
@media  (min-width:1199px) {
    .nav-item {
        width: 150px;
        text-align: center;
        border-right: 1px #dbdbdb solid;
    }

    .nav-item:last-child {
        border-right: none;
    }

    .nav-link {
        font-weight: 600;
        height: 100%;
    }

    .nav-link {
        border-bottom: 2px solid transparent;
        text-decoration: none;
        background-image: linear-gradient(to right, #df1600, var(--renkKirmizi) 50%, #e6e3e3 50%);
        background-size: 200% 100%;
        background-position: -100%;
        display: inline-block;
        padding: 0.225rem 0;
        position: relative;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.2s ease-in-out;
    }

    .nav-link:before {
        content: '';
        background: var(--renkKirmizi);
        display: block;
        position: absolute;
        bottom: -0.125rem;
        left: 0;
        width: 0;
        height: 0.125rem;
        transition: all 0.2s ease-in-out;
    }

    .nav-link:hover {
        background-position: 0;
    }

    .nav-link:hover:before {
        width: 100%;
    }


}
@media (max-width: 992px) {
    .offcanvas-collapse {
        position: fixed;
        top: 77px;
        /* Height of navbar */
        bottom: 0;
        left: 100%;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: var(--renkMavi);
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    }

    .offcanvas-collapse.open {
        visibility: visible;
        transform: translateX(-100%);
    }

    .butonlar {
        position: static;
        margin: 20px auto 20px auto;
        width: 100%;
    }
}
.dropdown-toggle::after {
    content: none;
}
.dropdown-item:active,
.dropdown-item.active {
    background-color: transparent !important;
    color: inherit !important;
}
.card-text{
    color: var(--renkFont);
}
.text-blur-2 {
    position: relative;
    max-height: 5.4em; /* ~3 satır (line-height:1.8em * 3) */
    overflow: hidden;
    line-height: 1.8em;
}

.text-blur-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.8em; /* 3. satır kadar yer kapla */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
}
@media (max-width: 575.98px) {
    .custom-mobile-width {
        width: 100% !important;
    }
}
@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.15;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 30px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}
.option-input:hover {
    background: #9faab7;
}
.option-input:checked {
    background: var(--renkKirmizi);
}
.option-input:checked::before {
    height: 30px;
    width: 30px;
    position: absolute;
    font-family: "bootstrap-icons", serif;
    content: "\F26E";
    display: inline-block;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}
.option-input:checked::after {
    -webkit-animation: click-wave 0.25s;
    -moz-animation: click-wave 0.25s;
    animation: click-wave 0.25s;
    background: var(--renkKirmizi);
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}
.option-input.radio {
    border-radius: 50%;
}
.option-input.radio::after {
    border-radius: 50%;
}
