@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgb(10, 108, 255);
    color: #fff
}

::-webkit-scrollbar-thumb {
    background: rgb(10, 108, 255);
    border-radius: 15px
}

::-webkit-scrollbar-track {
    background: #0f0f0f
}

::-webkit-scrollbar {
    width: 5px
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(239, 239, 239);
    color: rgb(0, 0, 0);
    font-weight: 500;
}

a {
    text-decoration: none
}

img {
    user-select: none;
    vertical-align: middle
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 10px 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 70px;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header nav a {
    color: rgb(0, 0, 0, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    text-transform: uppercase;
}

header nav a:hover {
    color: rgb(10, 108, 255);
}

header nav .tel-ozel {
    background-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 14px 15px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

header nav .tel-ozel div span {
    display: block;
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    font-weight: 600;
}

header nav .tel-ozel:hover {
    color: rgb(0, 0, 0);
}

header nav .tel-ozel svg path {
    fill: rgb(255, 255, 255);
}

header nav .tel-ozel div span.tagg {
    font-weight: 500;
    font-size: 13px;
}

header nav .tel-ozel svg {
    width: 35px;
    height: 35px;
    aspect-ratio: 1/1;
}

header nav .tel-ozel:hover {
    background-color: rgb(10, 108, 255);
}

footer {
    padding: 50px 10% 10px 10%;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

footer img {
    height: 120px;
    margin-bottom: 5px;
}

footer span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

footer .telefon-footer {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background-color: rgb(10, 108, 255);
    padding: 10px 15px;
    border: 2px solid rgb(10, 108, 255);
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
    margin-bottom: 30px;
}

footer .telefon-footer:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(10, 108, 255);
}

footer p {
    font-size: 16px;
    font-weight: 400;
}

.butonlar {
    position: fixed;
    bottom: 30px;
    right: 20px;
    flex-direction: column;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.butonlar a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(10, 108, 255);
    border-radius: 50%;
    aspect-ratio: 1/1;
    padding: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.butonlar a.whatsapp {
    background-color: rgb(37, 211, 102);
}

.butonlar a svg {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}

@media screen and (max-width:1050px) {
    header {
        padding: 10px 5%;
    }

    header img {
        height: 70px;
    }

    header nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    header nav a {
        font-size: 15px;
    }

    header nav .tel-ozel {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width:850px) {
    header {
        padding: 10px 3%;
        flex-direction: column;
    }

    header img {
        height: 60px;
    }

    header nav {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    header nav a {
        font-size: 15px;
    }

    header nav .tel-ozel {
        display: block;
        background-color: rgb(10, 108, 255);
        margin: auto;
        text-align: center;
        color: rgb(255, 255, 255);
        padding: 8px 20px;
        font-size: 16px;
        border: 2px solid rgb(10, 108, 255);
    }

    header nav .tel-ozel svg {
        width: 30px;
        height: 30px;
    }

    footer {
        padding: 50px 5% 10px 5%;
    }

    footer img {
        height: 80px;
    }

    footer span {
        font-size: 16px;
    }

    footer .telefon-footer {
        font-size: 16px;
        padding: 8px 15px;
    }

    footer p {
        font-size: 14px;
    }

    .butonlar {
        position: fixed;
        bottom: 30px;
        right: 20px;
    }

    .butonlar a {
        padding: 15px;
    }

    .butonlar a svg {
        width: 35px;
        height: 35px;
    }
}