﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800;900&display=swap');

body {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif !important;
}

.navbar .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
}

a.nav-link.active {
    border-bottom: 5px solid #e5a126;
    color: #fff !important;
}

.navbar .navbar-nav a {
    text-decoration: none;
}

.navbar {
    padding: 20px 10px !important;
    background-color: #063cba;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 0.9rem;
        margin-left: 0.9rem;
    }
}

.dropdown-menu {
    color: #723082;
    font-weight: 700;
    background-color: #ffffffd9;
}

.dropdown-item {
    color: #723082;
    font-weight: 700;
}

    .dropdown-item:focus, .dropdown-item:hover {
        color: #d4742e;
    }

.blink {
    animation: blinker 1.8s linear infinite;
}

.altbaslik1 {
    color: #063cba;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 1rem
}

.altbaslik2 {
    color: #000;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 1rem
}

.altbaslik {
    color: #063cba;
    font-weight: bold;
}

#section1 {
    position: relative;
    z-index: 999;
}

#section2 {
    background-color: #ededed;
    position: relative;
    margin-top: -128px;
}

@media only screen and (max-width: 768px) {
    #section2 {
        margin-top: 1rem !important;
    }

    .sag-gorsel {
        margin: 18px 0 !important;
    }

    .sol-gorsel {
        margin: 30px 0 !important;
    }
}

footer {
    background-color: #063cba;
    padding: 50px;
    border-top: 7px solid #f9ba4b;
}

.footer-logo {
    float: right;
}

@media only screen and (max-width: 768px) {
    .footer-logo {
        float: none;
        margin-bottom: 10px;
    }

    .sosyal-medya {
        margin-bottom: 10px;
    }
}

.footer-mail {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

    .footer-mail:hover {
        color: #fff;
    }

.sosyalmedya {
    transition: 1.02s all;
    padding: 3px;
}

    .sosyalmedya:hover {
        transform: rotate(360deg);
    }

.ikon {
    padding: 10px 50px 0 50px;
}

.blue {
    color: #063cba;
}

.justify {
    text-align: justify
}


/*btn*/

.k-btn {
    --main-size: 1.5em;
    --color-text: #ffffff;
    --color-background: #ff135a;
    --color-background-hover: #ff1472;
    --color-outline: #ff145a40;
    --color-shadow: #00000040;
    cursor: pointer;
    text-decoration: none;
    border: none;
    border-radius: calc(var(--main-size) * 100);
    padding: 0.33em 0 0.33em 0.66em;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: var(--main-size);
    color: var(--color-text);
    background: var(--color-background);
    box-shadow: 0 0 0.2em 0 var(--color-background);
    transition: 1s;
}

    .k-btn a {
        text-decoration: none !important;
        color: #fff !important;
    }


    .k-btn:active {
        transform: scale(0.95);
    }

    .k-btn:hover {
        outline: 0.1em solid transparent;
        outline-offset: 0.2em;
        box-shadow: 0 0 1em 0 var(--color-background);
        animation: ripple 1s linear infinite, colorize 1s infinite;
        transition: 0.5s;
    }

    .k-btn span {
        margin-right: 0.3em;
        transition: 0.5s;
    }

    .k-btn:hover span {
        text-shadow: 5px 5px 5px var(--color-shadow);
    }

    .k-btn:active span {
        text-shadow: none;
    }

    .k-btn svg {
        height: 0.8em;
        fill: var(--color-text);
        margin-right: -0.16em;
        position: relative;
        transition: 0.5s;
    }

    .k-btn:hover svg {
        margin-right: 0.66em;
        transition: 0.5s;
        filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
    }

    .k-btn:active svg {
        filter: none;
    }

    .k-btn svg polygon:nth-child(1) {
        transition: 0.4s;
        transform: translateX(-60%);
    }

    .k-btn svg polygon:nth-child(2) {
        transition: 0.5s;
        transform: translateX(-30%);
    }

    .k-btn:hover svg polygon:nth-child(1) {
        transform: translateX(0%);
        animation: opacity 1s infinite 0.6s;
    }

    .k-btn:hover svg polygon:nth-child(2) {
        transform: translateX(0%);
        animation: opacity 1s infinite 0.4s;
    }

    .k-btn:hover svg polygon:nth-child(3) {
        animation: opacity 1s infinite 0.2s;
    }

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes colorize {
    0% {
        background: var(--color-background);
    }

    50% {
        background: var(--color-background-hover);
    }

    100% {
        background: var(--color-background);
    }
}

@keyframes ripple {
    0% {
        outline: 0em solid transparent;
        outline-offset: -0.1em;
    }

    50% {
        outline: 0.2em solid var(--color-outline);
        outline-offset: 0.2em;
    }

    100% {
        outline: 0.4em solid transparent;
        outline-offset: 0.4em;
    }
}

/*btn*/
