/* Created By AkinaCss */
/* Fonts area */

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica/Geologica-VariableFont.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'poppins-regular';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
    font-family: 'future-bold';
    src: url('../fonts/TheFuture-Bold.otf') format('truetype');
    font-style: normal;
}

/* ============================================================================== */

:root {
    --bg-color: #32373B;

    --btn-clr: #89909F;

    --orange: #F17300;
    --orangeDark: #c76000;
    --orangeLight: #F19A3E;

    --blueLight: #2f93ff;
    --blueDark: #155ba7;
    --blue: #1d79d9;

    --greenLight: #c1ff44;
    --greenDark: #7ca529;
    --green: #99cc33;

    --white: #FFFFFF;
    --black: #000000;

    --gray: #f0f0f0;

    --whiteLight: #ebebeb;

    --header: 'Geologica';
    --text: 'poppins-regular';
    --text2: 'future-bold';
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Geologica';
}

body {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: auto;
    background-color: var(--white);
    transition: background-color .5s;
}

a {
    text-decoration: none;
    color: var(--textClr);
    transition: 0.3s;
}

/* ===================================================== */

/* Header Css Start */

header {
    width: 100%;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    background-color: var(--blue);
}

.bottom-header {
    width: 80%;
    height: 45px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    transition: 0.3s;
}

.logoNone {
    height: 90%;
    object-fit: scale-down;
    display: flex;
    margin: auto;
    margin-left: 0;
    font-family: var(--text2);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    letter-spacing: 1.5px;
}

.bottom-header nav {
    height: 100%;
}

.bottom-header ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.3s;
    gap: 30px;
}

.bottom-header ul li {
    list-style: none;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iletisimBtn {
    height: 45px !important;
    color: var(--white) !important;
    background-color: var(--blueLight) !important;
    border: 3px solid var(--blueLight) !important;
}
.iletisimBtn:hover {
    color: var(--white) !important;
    background-color: var(--blueDark) !important;
    border: 3px solid var(--blueDark) !important;
}

.sertBtn {
    height: 45px !important;
    color: var(--white) !important;
    background-color: var(--green) !important;
    border: 3px solid var(--green) !important;
}
.sertBtn:hover {
    color: var(--white) !important;
    background-color: var(--greenDark) !important;
    border: 3px solid var(--greenDark) !important;
}

.btnLang {
    border: none;
    outline: none;
    background: none;
    color: var(--white);
    height: 100%;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 10px;
}
.btnLang:hover {
    background-color: var(--blueLight);
}

.search-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    margin: 20px auto;
    padding: 0px 0px 0px 10px;
    transition: 0.3s;
    border: 3px solid var(--white);
    background-color: var(--white);
    color: var(--black);
}
.search-container:hover {
    border: 3px solid var(--white);
}

.search-input {
    border: none;
    height: 100%;
    flex-grow: 1;
    font-size: 16px;
    outline: none;
    background: none;
    transition: 0.3s;
    color: var(--black);
    max-width: 70px;
}
.search-input::placeholder {
    color: var(--black);
}

.search-input::-webkit-input-placeholder {
    color: var(--black);
}
.search-input::-moz-placeholder {
    color: var(--black);
}
.search-input:-ms-input-placeholder {
    color: var(--black);
}

.search-container:hover .search-input,
.search-container:hover .search-input:focus {
    color: var(--black);
    max-width: 150px;
}
.search-input:focus {
    max-width: 150px;
}

.search-input:focus ~ .search-container {
    border: 3px solid var(--white);
}
.search-button {
    color: var(--black);
    background: none;
    outline: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    height: 100%;
    border-left: 1px solid var(--whiteLight);
}

.search-button i {
    font-size: 18px;
}

.search-button:hover {
    color: var(--white);
    background-color: var(--blue);
    border-left: 1px solid transparent;
}

.hamburgerMenu {
    position: fixed;
    top: 45px;
    left: 0;
    width: 70px;
    height: 70px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--white);
    background-color: var(--green);
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 10px;
}

.hamburgerMenu:hover {
    background-color: var(--blueLight);
}

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: -250px;
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    padding-bottom: 20px;
}

/* width */
.sidenav::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.sidenav::-webkit-scrollbar-track {
  background: var(--bg-color); 
}
 
/* Handle */
.sidenav::-webkit-scrollbar-thumb {
  background: #555; 
}

/* Handle on hover */
.sidenav::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.sidenav a {
    padding: 8px 8px 8px 12px;
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    transition: 0.3s;
}

.sidenav a:hover {
    color: var(--orange);
}

.sidenav button {
    border: none;
    outline: none;
    padding: 0;
    background: none;
    padding: 8px 8px 8px 12px;
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}
.sidenav button:hover {
    color: var(--orangeLight);
}

.sidenav button a {
    padding: 0px;
}

.sidenav button i {
    font-size: 18px;
    color: var(--orangeLight);
    transition: 0.3s;
}

.sidenav button:hover i {
    color: var(--orange);
}

.sidenav button.active {
    color: var(--orangeLight);
}
.sidenav button.active i {
    color: var(--orange);
    transform: rotate(135deg);
}

.navdrow a {
    padding: 8px 8px 8px 20px;
}

.navdrow {
    background-color: #1d2022;
}

.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
    color: var(--orangeLight);
    transition: 0.3s;
}
.sidenav .closebtn:hover {
    color: var(--orange);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: 0.5s;
}


@media (max-width: 768px) {
    .bottom-header ul li a {
        display: none;
    }

    .bottom-header {
        justify-content: space-between;
    }

    .hamburgerMenu {
        width: 50px;
        height: 50px;
        font-size: 35px;
    }
}

@media (max-width: 520px) {
    .search-container {
        position: absolute;
        top: 45px;
        left: 50px;
        right: 0px;
        width: calc(100% - 50px);
        margin: 0px;
        height: 50px;
    }
    .search-input {
        max-width: 100%;
    }
    .search-container:hover .search-input, .search-container:hover .search-input:focus {
        color: var(--black);
        max-width: 100%;
    }
}

@media (max-width: 390px) {
    .logoNone {
        font-size: 25px;
    }
}


#whatsapp-icon {
    width: 80px;
    height: 80px;
    transition: transform .3s;
}

#whatsapp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000000;
}