@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');

:root {
    --black: rgb(34, 34, 34);
    --background: rgb(34, 34, 34);
    --header: rgb(170, 132, 83);
    --white: rgba(255, 255, 255, 1);
    --white-100: #e2e2e2;
    --grey: rgba(255, 255, 255, .7);
    --grey-200: #dcdcdc;
    --grey-300: rgb(176, 176, 176);
    --grey-400: rgba(255, 255, 255, .2);
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --size-11: 11px;
    --size-12: 12px;
    --size-13: 13px;
    --size-14: 14px;
    --size-15: 15px;
    --size-16: 16px;
    --size-17: 17px;
    --size-18: 18px;
    --size-20: 20px;
    --size-22: 22px;
    --size-24: 24px;
    --size-26: 26px;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sen", sans-serif !important;
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    font-size: var(--size-17);
    font-weight: var(--weight-400);
    color: var(--white);
    background: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
ul {
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
    list-style-type: none;
}

::selection {
    background-color: var(--header);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.row {
    padding-left: 20px;
    padding-right: 20px;
}
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1300px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main {
    padding-top: 100px;
}

.gap {
    margin: 70px 0 70px 0;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.margin-top {
    margin-top: 20px;
}

.header-color {
    color: var(--header);
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-thumb {
    background: var(--grey-300);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: var(--white-100);
}

.fixed-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1000;
}

:is(.whatsapp-button, .up-button) {
    color: var(--white);
    border: 1px solid var(--header);
    background: var(--header);
    display: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgb(38, 211, 103);
    border: 1px solid rgb(38, 211, 103);
}

.content-lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 25px;
}

.content-lists>li::before {
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 7px;
    font-size: var(--size-13);
    color: var(--header);
}

.link-highlight {
    opacity: 1;
    color: var(--header);
    font-weight: var(--weight-700);
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid var(--header);
}

.link-highlight:hover {
    color: rgb(245, 245, 220);
    border-bottom: 1px solid rgb(245, 245, 220);
}

.button {
    background: transparent;
    border: 1px solid transparent;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    font-size: var(--size-13);
    letter-spacing: 3px;
    font-weight: var(--weight-600);
    z-index: 500;
    white-space: nowrap;
    padding: 14px 30px 15px;
}

.button--yellow {
    border: 1px solid var(--header);
    background: var(--header);
    color: var(--white);
}

.button--yellow:hover {
    border: 1px solid var(--white);
    color: var(--header);
    background: var(--white);
}

/* header-nav css start */
.turgay-dogan-header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    top: 0;
    width: 100%;
    height: 100px;
    background: rgb(22, 22, 22);
    z-index: 700;
    padding: 20px 30px;
    box-sizing: border-box;
    gap: 10px;
    transition: all 0.3s ease-in;
}

.turgay-dogan-header-wrapper {
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-self: stretch;
    align-items: center;
}

.turgay-dogan-navigation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    transition: height 0.2s ease-in-out;
    height: 0px;
    background: rgb(22, 22, 22);
    color: var(--white);
    text-align: left;
    padding: 0 30px;
}

.turgay-dogan-navigation.active {
    position: absolute;
    top: 0;
    box-sizing: border-box;
    height: 100vh;
    padding: 20px 30px;
    overflow-y: auto;
    border-top: 1px solid var(--grey-400);
}

.navigation-social-media-wrapper {
    border-top: 1px solid var(--grey-400);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    padding-top: 15px;
    margin: 15px 0 0 0;
    box-sizing: border-box;
}

.navigation-social-media-wrapper>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--header);
    background: var(--header);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.navigation-social-media-wrapper>a:hover {
    background: var(--white);
    border: 1px solid var(--header);
    color: var(--header);
}

.main-menu--navigation>li>a {
    font-size: 19px;
    font-weight: var(--weight-600);
    color: var(--white);
}

.sub-menu--navigation>li {
    opacity: .8;
    margin: 12px 20px;
    font-size: var(--size-15);
    transition: all 0.4s ease-in-out;
    color: var(--white);
    font-weight: var(--weight-500);
    border-bottom: 1px solid transparent;
    width: max-content;
}

.sub-menu--navigation-item>li {
    margin: 10px 25px;
    transition: all 0.4s ease-in-out;
    font-weight: var(--weight-600);
}

.sub-menu--navigation-item>li::before {
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: var(--size-11);
}

.sub-menu--navigation>li:is(:hover, .active) {
    color: var(--header);
    opacity: 1;
    border-bottom: 1px solid var(--header);
    width: max-content;
}

.sub-menu--navigation>li.active {
    font-weight: var(--weight-600);
}

.sub-menu--navigation>li>a::before {
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 10px;
}

.main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.main-menu--navigation {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--grey-400);
    padding-top: 15px;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a {
    display: inline-block;
    font-size: var(--size-13);
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 5px;
    transition: 0.2s ease-in-out;
    font-weight: var(--weight-600);
    margin: 15px 3px 15px 3px;
    position: relative;
    color: var(--white);
}

.main-menu>li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}

.main-menu>li>a:is(:hover, .active) {
    opacity: 1;
    color: var(--header);
}

.main-menu>li>a.active {
    opacity: 1;
    color: var(--header);
}

.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: max-content;
    margin: 0;
    margin-top: 15px;
    left: 0;
    padding: 20px 0;
    background: rgb(22, 22, 22);
    border-radius: 2px;
    transition: visibility .3s ease-in, opacity .3s ease-in;
}

.sub-menu>li {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sub-menu>li>a {
    display: flex;
    align-items: center;
    line-height: 25px;
    padding: 0 20px 15px 27px;
    color: var(--white);
    font-size: var(--size-13);
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-weight: var(--weight-600);
    width: 100%;
}

.sub-menu>li>a::before {
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    margin-right: 5px;
    letter-spacing: 2px;
    color: var(--header);
}

.sub-menu>li>:is(a:hover, a.active) {
    color: var(--header);
    margin-left: 10px;
    font-weight: var(--weight-600);
}

/* header-nav css end */


/* footer css start */
.content-lists.content-lists--footer>li {
    width: max-content;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid transparent;
}

.content-lists.content-lists--footer>li:hover {
    width: max-content;
    border-bottom: 1px solid var(--white);
}

.footer-wrapper {
    position: relative;
    background: rgb(22, 22, 22);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 45px 30px 30px 30px;
    color: var(--white);
    z-index: 2;
}

.footer-top {
    padding-bottom: 30px;
    padding-top: 50px;
    text-align: left;
}

.footer-bottom {
    padding-top: 17px;
    border-top: 1px solid var(--grey-400);
}

.footer-social-button {
    border-radius: 0px;
    width: 5px;
    height: 5px;
}

.content-lists--footer {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.content-lists--footer>li {
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid transparent;
    width: max-content;
}

.content-lists--footer>li:hover {
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid var(--grey-200);
    margin-left: 10px;
}

.footer-social-media {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: start !important;
}

.footer-social-media>li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    padding: 10px;
    border: 1px solid var(--header);
    background: var(--header);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.content-lists--footer>li::before {
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 7px;
    font-size: var(--size-13);
    color: var(--white);
}

.footer-social-media>li:hover {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--header);
}

/* footer css end */

@media (max-width:575px) {

    .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .turgay-dogan-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .turgay-dogan-header {
        justify-content: space-between;
    }

    .header-title {
        font-size: 32px !important;
    }

    .error-title {
        font-size: 120px !important;
    }

    .parallax-title {
        font-size: 25px !important;
    }

    .form-container>:is(input, textarea, select) {
        width: 90% !important;
    }

    .slider-button {
        padding: 10px !important;
        font-size: 11px !important;
    }

    .header-subtitle{
        font-size: 30px !important;
    }

}

@media (min-width:576px) {

    .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .turgay-dogan-header {
        justify-content: space-between;
    }

    .turgay-dogan-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .header-title {
        font-size: 36px !important;
    }

    .error-title {
        font-size: 120px !important;
    }

    .parallax-title {
        font-size: 30px !important;
    }

    .slider-button {
        padding: 10px !important;
        font-size: 11px !important;
    }

    .form-container>:is(input, textarea, select) {
        width: 80% !important;
    }
}

@media (min-width:768px) {

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .turgay-dogan-header {
        justify-content: space-between;
    }

    .turgay-dogan-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-form-wrapper {
        width: 80% !important;
    }

    .header-title {
        font-size: 38px !important;
    }

    .error-title {
        font-size: 200px !important;
    }

    .parallax-title {
        font-size: 30px !important;
    }

    .slider-button {
        padding: 14px 30px 15px !important;
        font-size: 13px !important;
    }

    .form-container>:is(input, textarea, select) {
        width: 60% !important;
    }
}

@media (min-width:992px) {

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .turgay-dogan-header {
        justify-content: space-between;
    }

    .turgay-dogan-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .header-title {
        font-size: 43px !important;
    }

    .error-title {
        font-size: 220px !important;
    }

    .parallax-title {
        font-size: 36px !important;
    }

    .form-container>:is(input, textarea, select) {
        width: 40% !important;
    }
}

@media (min-width:1200px) {

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .turgay-dogan-header {
        justify-content: center;
    }

    .main-menu {
        display: flex;
    }

    .turgay-dogan-logo {
        display: flex;
        justify-content: center;
        width: max-content;
    }

    .social-button {
        display: none;
    }
}