/*
 * Project: Ertürk Elektronic
 * Date: 2022 - 2023
 * Coder: Er Design
*/

/* RESET */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

.Shadow-1 {
    -webkit-box-shadow: 0px 3px 14px 5px rgba(0, 0, 0, 0.44);
    box-shadow: 0px 3px 14px 5px rgba(0, 0, 0, 0.44);
}

.Shadow-2 {
    -webkit-box-shadow: 0px 10px 13px -7px #000000,
        0px 3px 14px 5px rgba(0, 0, 0, 0);
    box-shadow: 0px 10px 13px -7px #000000, 0px 3px 14px 5px rgba(0, 0, 0, 0);
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Title-Section {
    margin-bottom: 50px;
    display: block;
    position: relative;
}

.Title-Section h1 {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    font-size: 38px;
    color: var(--Kirmizi-Renk);
    font-family: var(--Link-Font);
    font-weight: 500;
    text-shadow: -1px 2px 3px var(--Beyaz-Renk);
}

.Title-Section h1:before {
    content: "";
    width: 50%;
    display: block;
    height: 3px;
    background: var(--Hover-Color);
    position: absolute;
    bottom: -16px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.Title-Section h1:after {
    content: "";
    width: 50%;
    display: block;
    height: 3px;
    background: var(--Hover-Color);
    position: absolute;
    bottom: -30px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.Title-Section:after {
    content: "";
    width: 50%;
    display: block;
    height: 7px;
    background: var(--Kirmizi-Renk);
    position: absolute;
    bottom: -25px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.Title-Section-1 {
    margin-bottom: 50px;
    display: block;
    position: relative;
}

.Title-Section-1 h1 {
    margin: 0;
    padding: 0;
    display: block;
    text-align: left;
    font-size: 38px;
    color: var(--Kirmizi-Renk);
    font-family: var(--Link-Font);
    font-weight: 500;
    text-shadow: -1px 2px 3px var(--Beyaz-Renk);
}

.Title-Section-1 h1:before {
    content: "";
    width: 100%;
    display: block;
    height: 3px;
    background: var(--Hover-Color);
    position: absolute;
    bottom: -16px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.Title-Section-1 h1:after {
    content: "";
    width: 100%;
    display: block;
    height: 3px;
    background: var(--Hover-Color);
    position: absolute;
    bottom: -30px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.Title-Section-1:after {
    content: "";
    width: 100%;
    display: block;
    height: 7px;
    background: var(--Kirmizi-Renk);
    position: absolute;
    bottom: -25px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

@media (max-width: 768px) {
    section {
        margin: 0;
        height: 100%;
    }

    .Title-Section-1 h1,
    .Title-Section h1 {
        font-size: 30px;
    }
}