:root{
    --font-family: "Special Elite" ;
}

body {
    font-family: var(--font-family), serif!important;
    font-style: normal;
    font-size: 22px;
    line-height: 29px;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
.img-prot {
    -webkit-user-select: none; /* Disable selection on Safari */
    -moz-user-select: none;    /* Disable selection on Firefox */
    -ms-user-select: none;     /* Disable selection on IE */
    user-select: none;         /* Standard user-select property */
    pointer-events: none;      /* Disable pointer events */
    -webkit-touch-callout: none; /* Disable long-press menu on iOS Safari */
}
.startingContainer{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

}
.niceFadeOut{
    opacity: 0;
    animation: fadeOut 2s forwards;
    transition: all 0.5s ease-in-out 0s;
}
.startingContainer img{
    display: block;
margin: .5em auto;
    width: 250px;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}
.startingContainer h1{
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}

.neskesNavbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;

background-color: transparent;
}
.barsContainer{
    padding: 2em ;
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.barsContainer img {
    cursor: pointer;
    width: 40px;
    aspect-ratio: 1/1;

}
.logoContainer{
    padding: 2em ;
}
.logoContainer img {
    width: 80px;
    aspect-ratio: 1/1;
}


.heroSection {
    height: calc(100vh);
    background-size: cover;
    background-image: url('../img/bg1.webp');
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.58);
}
.projects{
    height: calc(100vh);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.58);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;

}
.projects img{
    max-height: 250px;
}
.projects h2{
  font-size: 30px;
    margin: .5em auto;
}
.projects p{
    width: 60%;
    text-align: center;
    font-size: 23px;
    margin: .5em auto;
}
.projects a{
    color: white;
    text-decoration: underline;
    font-size: 24px;
    margin: 1em auto;
}

.heroSection2{
    height: calc(100vh);
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
}
.projectsRow{
    width: 90%;
    margin: .5em auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.projectsRow h2{
    width: 100%;
    text-align: center;
    color: white;

}
.projectsRow a{
    width: 20%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out 0s;
}
.projectsRow a h2{
    opacity: 0;
    color: white;
    text-decoration: unset;
    transition: all 0.5s ease-in-out 0s;
}
.projectsRow a:hover{
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.34);
    transition: all 0.5s ease-in-out 0s;
}
.projectsRow a.labyrinthBg{
    background-image: url('../img/redLabyringIcon.png');
}
.projectsRow a.labyrinthBg:hover{
    transition: all 0.5s ease-in-out 0s;
    background-image: url('../img/projects/labyrinth.webp');
}

.projectsRow a.labyrinthBg{
    background-image: url('../img/redLabyringIcon.png');
}
.projectsRow a.labyrinthBg:hover{
    transition: all 0.5s ease-in-out 0s;
    background-image: url('../img/projects/labyrinth.webp');
}

.projectsRow a.lawBg{
    background-image: url('../img/redLawIcon.png');
}
.projectsRow a.lawBg:hover{
    transition: all 0.5s ease-in-out 0s;
    background-image: url('../img/projects/law.webp');
}

.projectsRow a.medievalBg{
    background-image: url('../img/redMedievalIcon.png');
}
.projectsRow a.medievalBg:hover{
    transition: all 0.5s ease-in-out 0s;
    background-image: url('../img/projects/medieval.webp');
}
.projectsRow a.natureBg{
    background-image: url('../img/redNatureIcon.png');
}
.projectsRow a.natureBg:hover{
    transition: all 0.5s ease-in-out 0s;
    background-image: url('../img/projects/nature.webp');
}

.projectsRow a:hover h2{
    opacity: 1;
    color: white;
    transition: all 0.5s ease-in-out 0s;
}

@media screen and (max-width: 858px) {
    .projectsRow a{
        width: 45%;
        aspect-ratio: 1/1;
        margin: .5em auto;
    }
    .projectsRow a h2{
        font-size: 20px;
    }
}


@media screen and (max-width: 700px) {
    .projects img{
        max-height: 150px;
    }

    .projects h2{
        font-size: 30px;
        margin: .5em auto;
    }
    .projects p{
        width: 100%;
        text-align: center;
        font-size: 20px;
        margin: .5em auto;
    }
    .projects a{
        color: white;
        text-decoration: underline;
        font-size: 24px;
        margin: 1em auto;

    }
}

.menuBar{
    max-height: 50px;
}

.keskesMenu{
    width: 80%;
    margin: .5em auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.keskesMenu  img{
    cursor: pointer;
    display: block;
    margin: .5em auto;
   height: 100px;
    aspect-ratio: 1/1;
}
.keskesMenuList{
    width: 70%;
    margin: .5em auto;

}

.keskesMenuList a img{
    margin: 0 .3em;
    max-height: 50px;
}
.keskesMenuList a {

    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: black;
    text-decoration: none;
    font-size: 20px;
    margin: 1em auto;
}

.projectSection{
    min-height: 70vh;
    background-size: cover;
    background-image: url('../img/bg1.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.58);
    display: flex;
    justify-content: center;
    align-items: center;
}
.innerProject{
    width: 80%;
    margin:.5em auto;
text-align: center;
    color: white;
}
.innerProject h1{
    width: 70%;
    margin: .5em auto;
    font-size: 60px;

    font-weight: 700;
}
.innerProject p{
    width: 70%;
    margin: .5em auto;
    font-size:23px;
    font-weight: 600;
}
.projectDetails{
    min-height: 50vh;
    background-color: black;
}
.projectDetails h4{
    color: white;
    padding: 1em;
    text-align: center;
    font-size: 30px;
    text-decoration: underline;
}
.projectDetails h4[aria-expanded="true"] span{
    display: none;

}
.projectDetails .projectInfos p{
    width: 80%;
    margin: .5em auto;
    color: white;
    text-align: start;
    font-size: 20px;
}
.projectImage{
    width: 80%;
    height: 250px;
    margin: 1em auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 2em;
    cursor: pointer;
    transition: all 0.5s ease-in-out 0s;
}
.projectImage h2{
    width: 95%;
    margin: .5em auto;
    text-align: center;
    opacity: 0;
    color: white;
    transition: all 0.5s ease-in-out 0s;
}

.projectImage:hover{
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.45);
    transition: all 0.5s ease-in-out 0s;
}
.projectImage:hover h2{
    opacity: 1;
    transition: all 0.5s ease-in-out 0s;
}

@media screen and (max-width: 700px) {
    .innerProject{

        width: 100%;
        position: relative;
        top: 2.5em;

    }
    .innerProject h1{
        width: 70%;
        margin: .3em auto;
        font-size: 30px;

    }
    .innerProject p{
        width: 80%;
        margin: .3em auto;
        font-size:18px;
        font-weight: 600;
    }
}


.animationFadeIn{
    opacity: 0;
    animation: fadeIn 2s forwards;
    transition: all 0.5s ease-in-out 0s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/*ABOUT PAGE STARTS HERE*/
.aboutSection{
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.66);
    display: flex;
    justify-content: center;
    align-items: center;
}
 .aboutInfos{
    width: 70%;
    margin: 1em auto;
     text-align: center;
     color: white;
}
.aboutInfos img{
    width: 200px;
    height: 200px;
    margin: 1em auto;
    display: block;
}
.aboutInfos p{
    font-family: var(--font-family), system-ui;
    font-size: 23px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
}
@media screen and (max-width: 700px) {
    .aboutInfos{
        width: 90%;

        text-align: center;
        color: white;
    }
    .aboutInfos img{
        width: 150px;
        height: 150px;
        margin: 1em auto;
        display: block;
    }
    .aboutInfos p{
        font-size: 20px;
        line-height: 25px;
    }
}
@media screen and (max-width: 400px) {
    .aboutInfos p{
        font-size: 17px;
        line-height: 22px;

    }
}
/*ABOUT PAGE ENDS HERE*/

.neskesModal{
    min-height: 600px;
    background-image: url("../img/modalBg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.7);
}
.neskesModal .closeBtn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1em;
}
.projectModalInfos{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.imagesContainer{
    width: 45%;
    min-height: 400px;
    margin: auto;
}
.mainImageContainer{
    width: 100%;
    min-height: 400px;
}
.mainImageContainer img{
    max-height: 350px;
    display: block;
    margin: auto;

}
.secondImagesContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: .5em 0;
}
.secondImagesContainer img{
    height: 100px;
    aspect-ratio: 1/1;

}
.projectInfosContainer{
    font-family: var(--font-family), system-ui;
    width: 45%;
    margin: 0 auto;

    color: black;
}
.projectInfosContainer h1{

    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
    padding: 0;
}
.projectInfosContainer p{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
}
.projectButtons{
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: .5em auto;

}
.projectButtons button{
    background-color: transparent;
    color: black;
    border: 1px solid black;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    padding: .2em;
    border-radius: .3em;
    min-width: 150px;
    margin: .5em 0;
}
.projectButtons button.active{
    background: #D9D9D9;
}
.projectRecap{
    display: none;!important;
    border-top: 2px solid black;
    padding: .5em 0!important;
    margin: .5em 0!important;
}
.ctaContainer{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.ctaContainer button {
    background-color: transparent;
    color: black;
    border: 2px solid black;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    padding: .2em;
    font-weight: 700;
    border-radius: .3em;
    min-width: 150px;
    margin: .5em 0;
    text-decoration: unset;
    transition: all 0.5s ease-in-out 0s;
}
.ctaContainer button:hover{
    background: black;
    color: white;
    transition: all 0.5s ease-in-out 0s;

}
.projectModalDetails{
    border-top: 2px solid black;
    margin: .5em auto;
    padding: .5em 0;
}
.projectModalDetails p:nth-child(1):after,#formDimensions:after{
    content: " cm";

}

.formContainer{
    width: 60%;
    margin: .5em auto;
}
.formContainer h1{
    font-size: 25px;
    padding: 0;
    margin: .5em 0;
    font-weight: 700;
}
.formContainer h2{
    font-size: 20px;
    padding: .5em 0;
    margin: .2em 0;

}
.formContainer .last{
    border-bottom: 2px solid black;
}
.formContainer h4{
    font-size: 22px;
    padding: 0;
    margin: .5em 0;
    font-weight: 700;
}
.formContainer button{
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
    padding: .5em;
    font-weight: 700;
    border-radius: .5em;
    width: 100%;
    margin: .5em auto;
    text-decoration: unset;
    transition: all 0.5s ease-in-out 0s;
}

@media screen and (max-width: 996px) {

    .imagesContainer,.projectInfosContainer{
        width: 90%;
        min-height: unset;
        margin: auto;
    }

}

@media screen and (max-width: 378px) {
    .projectButtons button{
       width: 90%;
        margin: .5em auto;
    }
    .ctaContainer button{
        width: 90%;
        margin: .5em auto;
    }
    .projectModalDetails{
        text-align: center;
    }

}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border {
    width: 4rem;
    height: 4rem;
    color: darkgoldenrod !important;
}

/*CONTACT PAGE START*/
.contactInfos{

    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contactInfos img{

    aspect-ratio: 1/1;
}
.iconBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    margin: 1em auto;
}
.iconBox i {
    text-decoration: unset;
    color: white;
    font-size: 30px;
}
.iconBox a {
    text-decoration: unset;
    color: white;
    font-size: 22px;
}

.contactCard{
    width: 100%;
    min-height: 500px;
    background-image: url("../img/modalBg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
border-radius: 1em;
    padding: 1em;
}
.contactCard h3{
    font-size: 30px;
    color: black;
    text-align: center;
    margin: .5em auto;
}
.contactCard form{
    width: 90%;
    margin: .5em auto;
}
.contactCard input, .contactCard textarea{
    width: 100%;
    padding: .5em;
    margin: .8em auto;
    border: 1px solid black;
    border-radius: .2em;
    color: black;
}
.contactCard button{
    width: 100%;
    padding: .5em;
    margin: .8em auto;
    border: none;
    border-radius: .2em;
    color: white;
    background-color: black;
}

/*CONTACT PAGE ENDS*/
