* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}


/* fonts */

@font-face {
    font-family: "nunito_extralightregular";
    src: url("../fonts/nunito-variablefont_wght-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "nunitoregular";
    src: url("../fonts/nunito-regular.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "nunitosemibold";
    src: url("../fonts/nunito-semibold.woff") format("woff");
    font-weight: 1000;
}

/* logo    
 */





.dropdown-menu {
    display: none;
    position: absolute;
    transform-origin: top;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    font-family: "nunitoregular";
    text-align: start;
    background-color: #0e0f1154;
}

.languages .selected2 {
    opacity: 1;
}

.languages {
    display: inline-flex;
    font-family: "nunitoregular";
    border-top: 1px solid gray;
    text-align: center;
    width: 40%;
    justify-content: space-between;
    margin-top: 3rem;
    font-size: 3vh;
    padding-top: 2rem;
}

.languages p {
    color: white;
    opacity: 0.5;
    padding-right: 2rem;
    animation: phonemenu2 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    transform: translateX(0px);
}

@keyframes phonemenu2 {
    from {
        transform: translateX(-150px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 0.5;
    }
}

.dropdownwrap {
    display: none;
}

.dropdown-menu p {
    padding: 0.3rem;
    color: white;
    opacity: 0.5;
}

.dropdown-menu p:hover {
    background-color: rgba(255, 255, 255, 0.295);
}

.dropdown-menu.active {
    display: block;
    transform: scaleY(0);
    animation-name: dropdown;
    animation-fill-mode: forwards;
}

.upside {
    transform: scaleY(-1);
    transition: all 0.2s;
}

.arrowup {
    font-size: 30px;
    cursor: pointer;
    line-height: 28px;
    padding-top: 0.8rem;
}

.dropdown {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.dropdown h4 {
    font-family: "nunitoregular";
    padding-top: 0;
    font-size: 20px;
    padding: 0.6rem;
}

@keyframes dropdown {
    to {
        transform: scaleY(1);
    }
}

#container {
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.success-message {
    font-family: "nunitoregular";
}

.error-message {
    font-family: "nunitoregular";
}


/* header */

header {
    height: 128px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    left: 0;
    user-select: none;
    top: 0;
}

#home-section {
    background-image: url(../img/bg/mainbg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
}


/* #home-section:after {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 71vh;
    bottom: -190px;
    z-index: -1;
    margin-bottom: 13rem;
} */


/* @supports (-webkit-touch-callout: none) {
    #home-section:after {
        content: "";
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        width: 100%;
        height: 71vh;
        bottom: -328px;
        z-index: -1;
        margin-bottom: 13rem;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    #home-section:after {
        bottom: -321px;
    }
} */

.quote-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    min-height: auto;
    padding-top: 5rem;
    margin-top: 0;
}

.quote {
    display: none;
    width: 80%;
    text-align: justify;
    font-family: "nunitosemibold";
    line-height: 25px;
    position: relative;
}

.quote p {
    color: gray;
    max-width: 100ch;
    font-size: 14px;
    line-height: 40px;

    /* transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1); */
}

.quoteb {
    color: black;
    font-family: "nunitosemibold";
    font-weight: bolder;
}


@keyframes scale {
    100% {
        transform: scale(1);
    }
}

span {
    /* display: inline-block; */
    opacity: 0;
    filter: blur(4px);
}

span:nth-child(1) {
    animation: fade-in 1s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(2) {
    animation: fade-in 1s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(3) {
    animation: fade-in 1s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(4) {
    animation: fade-in 1s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(5) {
    animation: fade-in 1s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(6) {
    animation: fade-in 1s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(7) {
    animation: fade-in 1s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(8) {
    animation: fade-in 1s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(9) {
    animation: fade-in 1s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(10) {
    animation: fade-in 1s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(11) {
    animation: fade-in 1s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(12) {
    animation: fade-in 1s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(13) {
    animation: fade-in 1s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(14) {
    animation: fade-in 1s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(15) {
    animation: fade-in 1s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(16) {
    animation: fade-in 1s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(17) {
    animation: fade-in 1s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(18) {
    animation: fade-in 1s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(19) {
    animation: fade-in 1s 1.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(20) {
    animation: fade-in 1s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* .quote:after {
    background-image: url(../img/2x/buttom.png);
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -74px;
    bottom: -99px;
}

.quote:before {
    background-image: url(../img/2x/top.png);
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -72px;
    top: -120px;
} */

/* .by {
    font-family: "nunitoregular";
    padding-top: 4rem;
    text-align: center;
    color: gray;
    font-size: 14px;
} */
.icononly {
    /* background-image: url(../img/logos/ArchitectANA-logo-Architecture-&-Engineering-.png); */
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 50px;
    position: relative;
    top: 34px;
    left: 30px;
    animation: circly 2s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes circly {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}


.border {
    position: absolute;
    margin-top: 1rem;
    content: "";
    width: 250px;
    height: 83px;
    border-left: 1px;
    left: 84px;
    top: 0;
    overflow: hidden;
    animation-direction: alternate;
}




.logobox {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;


}




.nameonly {
    /* background-image: url(../img/logos/ArchitectANA-logo-Architecture-&-Engineering.png); */
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 20px;
    animation: name1ani 2s ease-in-out;
    animation-direction: normal;
    position: absolute;
    left: 26px;
    top: 28px;
    line-height: 28px;
    overflow: hidden;

}


@keyframes name1ani {
    0% {

        transform: translateX(-330px);

    }

    100% {

        transform: translateX(0px);
    }
}

.stital span {
    color: black;
    font-family: "nunitosemibold";
}

.stital h6 {
    font-size: 9.4px;
    font-family: "nunitoregular";
    color: black;
    text-align: center;
    animation: stital 1s 2s forwards;
    animation-direction: normal;
    position: absolute;
    top: 52px;
    width: 290px;
    left: -47px;
    opacity: 0;

}


@keyframes stital {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.sticky .stital h6 {
    color: rgb(95, 95, 95);
}



/* ------------------------------------------------------------------ */
a {
    text-decoration: none;
    color: whitesmoke;
}

nav ul {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: #262626ea;
    padding-left: 5rem;
    display: none;
    z-index: 998;
}

.verborgen {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.hide {
    display: none;
}

nav ul li {
    text-align: start;
    list-style: none;
    padding-top: 4rem;
}

.nomenu {
    display: none;
}

li {
    font-family: "nunito_extralightregular";
    animation: phonemenu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    transform: translateX(0px);
    font-size: 3vh;
}

@keyframes phonemenu {
    0% {
        transform: translateX(400px);
    }

    100% {
        transform: translateX(0px);
    }
}


/* //////////////////////////home section */

.wrapper-menu {
    position: fixed;
    top: 42px;
    right: 40px;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
    z-index: 1000;
}

.wrapper-menu.open {
    transform: rotate(-45deg);
}

.line-menu {
    background-color: #000000;
    border-radius: 20px;
    width: 100%;
    height: 3px;
}

.line-menu.half {
    width: 50%;
}

.line-menu.end {
    align-self: flex-end;
    transition: transform 400ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.line-menu.start {
    transition: transform 400ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
    background-color: #F4F4F4;
}

.open .line-menu.end {
    transform: rotate(-90deg) translateX(-3px);
    background-color: #F4F4F4;
}

.open .line-menu {
    background-color: #F4F4F4;
}


/*/////////////////////////////////////////////////////////////////////////////////// services /*/

section {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
}

.homemain h1 {
    font-family: "nunito_extralightregular";
}

.services-wrap {
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    background-color: #F4F4F4;
}


/* .servicesbg {
    background-image: url(../img/bg/bg21.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-attachment: fixed;
    overflow: hidden;
} */

.icons-wrap {
    background-color: rgb(255 255 255 / 80%);
    width: 100%;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 2rem;
    justify-content: center;
    overflow: hidden;
}

.icons-wrap.p-block {
    background-color: rgb(255 255 255 / 80%);
    width: 100%;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 2rem;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
}

.icon-box {
    width: 44%;
    height: 252px;
    padding-top: 3rem;
    font-family: "nunitoregular";
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.icon-box h4 {
    font-family: "nunitoregular";
    padding-top: 1rem;
    padding-bottom: 3rem;
    color: black;
    width: 100%;
    text-align: center;
}

.icon.show {
    opacity: 1;
}

.icon {
    background-color: #ffffffc9;
    width: 120px;
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    border: 1px solid rgba(51, 51, 51, 0.507);
    text-align: center;
}

.icon:hover {
    background-color: transparent;
    transform: scale(1.1);
    cursor: pointer;
    border: none;
}

.icon1 {
    background-image: url(../img/services-icons/1x/Certificate-PEB-Wallonie.png);
}

.icon2 {
    background-image: url(../img/services-icons/1x/Energy-Performance-Analysis-and-Optimisation.png);
}

.icon3 {
    background-image: url(../img/services-icons/1x/Project-mangement.png);
}

.icon4 {
    background-image: url(../img/services-icons/1x/Execution-Control.png);

}

.icon5 {
    background-image: url(../img/services-icons/1x/Security-Coordination.png);

}

.icon7 {
    background-image: url(../img/services-icons/1x/conception.png);

}

.icon8 {
    background-image: url(../img/services-icons/1x/3d-render.png);

}

.icon9 {
    background-image: url(../img/services-icons/1x/Bim-coordination.png);

}

.icon10 {
    background-image: url(../img/services-icons/1x/solar-studies.png);

}

.icon11 {
    background-image: url(../img/services-icons/1x/PermisDeLocation.png);

}

.icon12 {
    background-image: url(../img/services-icons/1x/Expertise-judiciaire-Conseil-technique.png);

}

.icon13 {
    background-image: url(../img/services-icons/1x/Drone-inspections.png);

}


.fixedphone {
    position: fixed;
    top: 50px;
    right: 50px;
}


/*;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; icons anim */

.nobox {
    display: none;
}


/* .p-none {
    display: none;
} */

.border-left {
    border-left: 1px solid gray;
    opacity: 0;
}

.icon-box p {
    text-align: justify;
    font-family: "nunitoregular";
    width: 100%;
    display: none;
    line-height: 1.7rem;
    padding-top: 4rem;
    padding: 1rem;
    animation: slide-in-left 1s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 15px;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.icon-box.p-block {
    width: 80%;
    display: flex;
    height: auto;
    align-items: center;
    align-content: flex-start;
}

.icon-box.p-block .icon.show {
    border: none;
    background-color: transparent;
}

button {
    font-family: "nunitoregular";
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    color: #0e0f11;
    margin-top: 3rem;
    height: 60px;
}

button:hover {
    opacity: 0.5;
}

.fadeInLeft {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-40%);
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

section {
    margin-top: 8rem;
}


/*/////////////////////////////////////////////////////////////////////////////////// services section/*/


/*=======================================================================projects section */

.buttons {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: space-between;
    align-items: center;
    padding-bottom: 2rem;

}

#projects-section h3 {
    width: 100%;
    text-align: center;
    font-family: "nunitoregular";
}

.buttons-border {
    border-bottom: gray 1px solid;
}

.buttons-border2 {
    border-top: gray 1px solid;
}

.buttons-border:hover {
    opacity: 1;
    transition: all 0.2s;
    cursor: pointer;
}

.projectsbg {
    background-image: url(../img/hermeeFRONT.JPG);
    height: 45vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    filter: grayscale(100%);
}

.projectsbg2 {
    background-image: url(../img/projects/InteriorProjects/ModernSalondesign2/interior\ 2.JPG);
    filter: grayscale(100%);

    height: 45vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.projectsbg3 {
    background-image: url(../img/afterpeb.JPG);
    filter: grayscale(100%);
    height: 45vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.projectsbg4 {
    background-image: url(../img/floorplan-workshop_N3BPNPN0FY.jpg);
    filter: grayscale(100%);

    height: 45vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.projectsbg-title {
    height: 100px;
    width: 80%;
    background-color: #24242470;
    position: absolute;
    bottom: -40px;
    left: 0px;
    text-align: end;
    line-height: 100px;
    padding-right: 1rem;
    color: #F4F4F4;
    opacity: 0;
    transition: opacity 1s ease, transform 0.5s ease;
}

h2 {
    font-size: 33px;
    font-family: "nunito_extralightregular";
}

.mission h5 {
    font-size: 16px;
}

.projects-text {
    min-height: auto;
    margin-top: 12rem;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
}

.text-wrap {
    text-align: justify;

    width: 70%;
    min-height: auto;
    padding-left: 3rem;
}

.text-wrap p {
    color: gray;
    padding-bottom: 1rem;
    font-family: "nunitoregular";
}

.unclicked {
    opacity: 0.3;
}

.unclicked1 {
    opacity: 0.3;
}


/* .Architecture{
    display: none;
} */
.Interior {
    display: none;
}

.peb {
    display: none;
}

.coordinate {
    display: none;
}


.btn1,
.btn2,
.btn3,
.btn4 {
    opacity: 0.5;
    margin-bottom: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: "nunitosemibold";
    font-weight: 1200;
}

/* .btn1{opacity: 1;} */
#ourprojects-section .buttons {
    font-size: 13px;
}

.button {
    background-color: #242424;
    width: 200px;
    height: 50px;
    margin: 3rem;
    line-height: 50px;
}

.button h3 {
    color: #F4F4F4;
    cursor: pointer;
}

.button:hover {
    background-color: #888888;
}



.projects-title {
    margin-bottom: 7rem;
}


/*///////////////////////////////////////////////////////////////////// about section */

.about-text {
    margin-left: 2rem;
    min-height: auto;
    margin-bottom: 3rem;
    text-align: justify;


}

.border-left2 {
    border-left: black 1px solid;
}


#about-section p {
    padding: 1rem;
    font-family: "nunitoregular";
}

.content-wrap {
    margin-top: 5rem;
    min-height: 100%;
}

.A {
    background-size: cover;
    height: 55px;
    width: 50px;
    float: left;
}

.about-image {
    background-image: url(../img/bg/aboutbg\ -\ Copy.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.crew-title {
    background-color: #bbbbbb1c;
    height: 80px;
    margin-top: -45px;
}

.crew-title h1 {
    text-align: center;
    padding: 0;
    line-height: 80px;
    font-size: 6vw;
}

.crew-wrap {
    min-height: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.crew-text {
    text-align: justify;
    border-left: 1px solid gray;
    margin: 0 auto;
    width: 80%;

}

.crew-imgs {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.foto-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding: 2rem;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

strong {
    font-family: "nunitosemibold";
}

.foto {
    border: solid 1px white;
    width: 180px;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.abd {
    background-image: url(../img/team-pic/abd.jpg);
}

.hayat {
    background-image: url(../img/team-pic/hayat.jpg);
}

.Numan {
    background-image: url(../img/team-pic/numan.jpg);
}

.Aymeric {
    background-image: url(../img/team-pic/ArchitectANA-Architect-Aymeric-BOUDOT.jpg);
}

.Sena {
   background-image: url(../img/team-pic/ArchitectANA-Architecte-Sena-UNAL.jpg)
}



.foto-wrap h3 {
    text-align: center;
    padding-top: 2rem;
    font-family: "nunito_extralightregular";
}

.foto-wrap p {
    text-align: center;
    height: 50px;
    font-size: 15px;
}

.title {
    height: 100px;
    width: 80%;
    background-color: #242424;
    text-align: end;
    color: #F4F4F4;
    line-height: normal;
    padding-right: 1rem;
    opacity: 0;
}

.title h1 {
    font-size: 35px;
    line-height: 100px;
}


/* tussentitles  */

.title.in-view {
    opacity: 1;
    transition: opacity 1s ease, transform 0.5s ease;
    transform: translateX(-50px);
}


/* tussentitles  */

.t2.t2-view {
    opacity: 1;
    transition: opacity 1s ease, transform 0.5s ease;
    transform: translateX(-50px);
}


/* ///////////////////////////////////////////////////////////////contact section */

.contact-text {
    color: white;
    font-family: "nunitoregular";
    padding-top: 2rem;
    padding-bottom: 2.5rem;

}

.lastinfo {
    font-weight: 900;
    display: flex;
}

.lastinfo:hover {
    color: #c5c5c5;
}



.con {
    display: flex;
    align-items: center;
    color: white;
    font-family: "nunitoregular";
    padding-bottom: 0;


}

.con p {
    padding-left: 0.4rem;
}

.adresse,
.email,
.phones {
    padding-bottom: 1rem;
}

.adresse a {
    text-decoration: underline white solid;
}

.contact-title {

    background-color: #F4F4F4;
    padding: 2rem;
    font-size: 1.4rem;
}

#contact-section {
    background-color: #0e0f11;
}

.contact-text p {
    color: white;
    text-align: justify;

}

.contact-wrap {
    padding: 2rem;


}

.phones {
    font-family: "nunitoregular";
}

.emailicon {
    background-image: url(../img/socials-icons/MailWhiteicon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.phoneicon {
    background-image: url(../img/socials-icons/PhoneWhiteIcon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.locationicon {
    background-image: url(../img/socials-icons/LocationWhiteIcon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.lastinfo strong {
    font-family: sans-serif;
    font-weight: 600;
}


#contact {
    padding: 2rem;
    margin-top: 4rem;
}

.consultbutton {
    width: 230px;
    margin-top: 3rem;
    text-align: center;

}

.consultbutton p {
    border: white 1px solid;
    padding: 0.8em;
    font-family: "nunitoregular";

}

.consultbutton :hover {
    background-color: #F4F4F4;
}

.consultbutton p:hover {
    color: black;
}

.phones a p {
    padding-left: 3rem;
    padding-top: 0.5rem;
}


/* footer */

.arrow {
    color: white;
    font-size: 30px;
    height: 25px;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.arrow:hover {
    color: gray;
    cursor: pointer;
}

footer {
    background-color: #0e0f11;
    width: 100%;
    min-height: 130px;
    padding: 3rem 2rem 3rem 2rem;
    ;



}

footer p {
    color: white;
    font-family: "nunito_extralightregular";
    text-align: center;
    font-size: 0.8rem;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: column-reverse;
    align-content: space-between;
}

.left-content {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    padding-top: 1.2rem;
}

.right-content {
    display: flex;
    gap: 15px;
}

.socials {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}



/* PolitiqueDVP */
footer a {
    font-family: "nunitoregular";
    text-decoration: underline white solid;
    text-underline-offset: 5px;

}

.PolitiqueDVP :hover {
    color: gray;
}

.pbox {
    text-align: justify;
    width: 80%;
}

.pbox h1 {
    font-family: "nunitosemibold";
    text-align: center;
    padding: 2rem;

}


.pbox p {
    font-family: "nunitoregular";
    line-height: 1.6rem;

}

.pbox h3 {
    font-family: "nunitosemibold";
    padding-top: 1rem;

}

.pbox table {
    font-family: "nunitoregular";

}

.pbox th {
    font-family: "nunitosemibold";

}



.faceicon {
    background-image: url(../img/socials-icons/facebookwhite.png);
}

.instaicon {
    background-image: url(../img/socials-icons/instagramwhite.png);
}

.inicon {
    background-image: url(../img/socials-icons/linkedinwhite.png);
}

.xicon {
    background-image: url(../img/socials-icons/x-icoon.png);
}



/* projects.html */

#ourprojects-section {
    /* padding-top: 5rem; */
    margin-top: 4rem;
} 

#ourprojects-section h3 {
    font-family: "nunitosemibold";
    font-weight: 1200;
    width: 100%;
    text-align: center;
    padding-bottom: 0.2rem;
}

.ourprojects-wrap1,
#ourprojects-wrap2 {
    width: 90%;
    margin: 0 auto;
}

.buttons a {
    color: black;
}

.projectbox {
    width: 100%;
    min-height: 400px;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

main {
    width: 100%;
}

.box1 {
    opacity: 0;
    animation: projectbox-animation2 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.box2 {
    opacity: 0;
    animation-delay: 0.1s;
    animation: projectbox-animation 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes projectbox-animation {
    0% {
        opacity: 1;
        transform: translatex(200px);
    }

    100% {
        opacity: 1;
        transform: translatex(0);
    }
}

@keyframes projectbox-animation2 {
    0% {
        opacity: 1;
        transform: translatex(-200px);
    }

    100% {
        opacity: 1;
        transform: translatex(0);
    }
}

.icon.show {
    opacity: 1;
}

.projectbox h4 {
    font-family: "nunitosemibold";
    text-align: center;
    color: #535353;
}

.projectbox p {
    font-family: "nunitoregular";
    text-align: start;
    padding: 1rem;
}

.aprojecttext1 {

    width: 100%;
}

.aprojecttext1 p {
    text-align: justify;
}

/* slider  */

.project1pop {
    position: relative;
    width: 90%;
    margin: 0 auto;
    min-height: auto;
    margin-top: 2rem;
}

@keyframes popOut {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.container2 {
    animation: popOut 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.numbertext {
    font-family: "nunitoregular";
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    width: 100%;
}

.slider {
    display: block;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 10px;
    background-color: white;
    overflow: hidden;
    transition: filter 0.3s ease-in-out;
    /* add transition effect to make the transition smooth */
    filter: grayscale(100%);
}

.slider__slides {
    width: 100%;
    padding-top: 66%;
}

.slider__slide {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1s;
    opacity: 0;
}

.slider__slide.active {
    opacity: 1;
}

.slider__slide img {
    width: 100%;
}

.slider__nav-button {
    position: absolute;
    height: 16px;
    width: 16px;
    opacity: .8;
    cursor: pointer;
    margin: 1rem;
}

.slider__nav-button:hover {
    opacity: 1;
    height: 20px;
    width: 20px;
}

#nav-button--prev {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#nav-button--next {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#nav-button--prev::after,
#nav-button--next::after {
    content: "";
    position: absolute;
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    width: 40%;
    height: 40%;
}

#nav-button--next::after {
    top: 50%;
    right: 50%;
    transform: translate(25%, -50%) rotate(-45deg);
}

#nav-button--prev::after {
    top: 50%;
    right: 50%;
    transform: translate(75%, -50%) rotate(135deg);
}

.slider__nav {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 540px;
}

.slider__navlink {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #838383;
    opacity: 1;
    margin: 0 10px 0 10px;
    cursor: pointer;
    transition: 1s all linear;
}

.slider__navlink.active {
    background-color: #fff;
}

.slider:hover {
    filter: grayscale(0%);
}

#thumbnail-slider {
    max-width: 700px;
    margin: 0 auto;
}

.projectbox .aprojecttext1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.project1pop .slider {
    filter: grayscale(0%);
    width: 100%;
    margin: 0 auto;
    max-width: 2000px;
}

.project1pop .container {
    max-width: 2000px;
}


/* Style the thumbnail images */

.mySlides img {
    width: 100%;
}

.co2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    min-height: auto;
    padding-bottom: 7rem;
}

.mySlides {
    position: relative;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.backp h3 {
    font-family: "nunitoregular";
    font-size: 15px;
    color: white;
    height: 32px;
    line-height: 32px;
    background-color: #0e0f11;
    width: 100%;
    cursor: pointer;
    text-align: center;
    margin-top: 4rem;
}

.backp:hover {
    opacity: 0.5;
}

.aprojecttext1 {
    font-family: "nunitoregular";
    padding-top: 1rem;
    width: 100%;
}

.project1pop {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.aprojecttext1 h4 {
    font-family: "nunitosemibold";
    font-weight: bolder;
    color: black;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.aprojecttext1 p {
    padding-bottom: 1rem;
    padding-left: 1rem;
}


/* Style the active thumbnail */

.container2 {
    position: relative;
}

a.underline.readmore {
    text-decoration: underline;
    color: black;
    height: 50px;
}


/* Hide the images by default */


/* Add a pointer when hovering over the thumbnail images */

.cursor {
    cursor: pointer;
}


/* Next & previous buttons */

.prev,
.next2 {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}


/* Position the "next button" to the right */

.next2 {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next2:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* Container for image text */

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Six columns side by side */

.column {
    float: left;
    width: 16.66%;
}


/* Add a transparency effect for thumnbail images */

.demo {
    filter: grayscale(100%);
}

.active2,
.demo:hover {
    cursor: pointer;
    filter: grayscale(0);
}


/* projects.html */


/*/////////////////// media  //////////////////////////////////////*/
@media (max-width:495px) {
    .t2s h2 {
        font-size: 12px;
    }

    .buttons {
        width: 80%;
    }

}


@media (min-width:500px) {
    .buttons {

        gap: 20px;
    }
}

@media (max-width:440px) {


    .icon {
        width: 100px;
        height: 100px;
    }

    .icon-box {
        font-family: "nunito_extralightregular";
        width: 50%;
        height: 258px;
    }

    .icons-wrap {
        background-color: rgb(255, 255, 255);
        width: 100%;
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        padding: 2rem;
        justify-content: flex-start;
        overflow: hidden;
    }

    .title {
        height: 65px;
        width: 90%;
        background-color: #242424;
        text-align: end;
        color: #F4F4F4;
        line-height: normal;
        padding-right: 1rem;
        opacity: 0;
    }

    .title h1 {
        font-size: 30px;
        line-height: 65px;
    }

    .wrapper-menu {
        right: 27px;
    }



    /* .crew-imgs {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    } */

    /* .foto-wrap {
        display: flex;
        flex-wrap: wrap;
        width: 80%;
        align-content: center;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    } */

    .projectsbg-title {
        height: 100px;
        width: 90%;
    }

    h2 {
        font-size: 30px;
    }

    .crew-title {
        background-color: #bbbbbb1c;
        height: 80px;
        margin-top: -81px;
    }

    .about-image {
        height: 32vh;
        width: 100%;
    }

    .icon-box.p-block {
        width: 100%;
    }

    .services-wrap {
        background-image: none;
    }
}

@media (max-width:600px) {

    .buttons h3 {
        font-size: 13px;
    }



    .crew-title {
        background-color: #bbbbbb1c;
        height: 80px;
        margin-top: 3px;
    }



}

@media (max-width:680px) {
    .t2s h2 {
        font-size: 5vw;
    }

    .buttons {
        font-size: 14px;
        width: 90%;
        margin: 0 auto;
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-content: space-between;
        align-items: center;
    }

}

@media (max-width:900px) {






    .projectsbg {
        height: 40vh;
        width: 100%;
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        position: relative;
        background-attachment: scroll;
    }

    .projectsbg2,
    .projectsbg3,
    .projectsbg4 {
        height: 40vh;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        background-attachment: scroll;
    }

    .projectsbg3 {
        background-position: left;

    }
}

@media (min-width:560px) {



    #home-section {
        height: 600px;
    }

    .quote-section {
        min-height: auto;
        margin-bottom: 5rem;
    }

    .quote {
        font-family: "nunitosemibold";
        line-height: 40px;
        font-size: 20px;
    }

    .icons-wrap {
        width: 603px;
    }

    h4 {
        padding-top: 1rem;
        text-align: center;
    }

    .about-image {
        background-size: cover;
        height: 50vh;
        width: 100%;
    }

    .content-wrap {
        align-items: normal;
    }

    .crew-title {
        margin-top: 0px;
    }

    .ourprojects-wrap1,
    #ourprojects-wrap2 {
        width: 90%;
        margin: 0 auto;
    }

    .aprojecttext1 {
        margin-bottom: 2rem;
    }
}


/*/////////////////// media  min 900 ////////////////////////////////---------------------//////*/

@media (min-width:924px) {

    .icononly {
        /* background-image: url(../img/logos/ArchitectANA-logo-Architecture-&-Engineering-.png); */
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 100%;
        height: 40px;
        position: relative;
        top: 25px;
        left: 10px;
        animation: circly 2s cubic-bezier(0.77, 0, 0.175, 1);
    }

    @keyframes circly {
        0% {
            opacity: 0;

        }

        100% {
            opacity: 1;

        }
    }


    .border {
        position: absolute;
        margin-top: 1rem;
        content: "";
        width: 250px;
        height: 83px;
        border-left: 1px;
        left: 90px;
        top: 0;
        overflow: hidden;
        animation-direction: alternate;
    }




    .logobox {
        display: flex;
        flex-direction: column;
        align-content: flex-end;
        flex-wrap: wrap;


    }




    .nameonly {
        /* background-image: url(../img/logos/ArchitectANA-logo-Architecture-&-Engineering.png); */
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 100%;
        height: 30px;
        animation: name1ani 2s ease-in-out;
        animation-direction: normal;
        position: absolute;
        left: 26px;
        top: 10px;
        line-height: 28px;
        overflow: hidden;

    }


    @keyframes name1ani {
        0% {

            transform: translateX(-330px);

        }

        100% {

            transform: translateX(0px);
        }
    }

    .stital span {
        color: black;
        font-family: "nunitosemibold";
    }

    .stital h6 {
        font-size: 14px;
        font-family: "nunitoregular";
        color: black;
        text-align: center;
        animation: stital 1s 2s forwards;
        animation-direction: normal;
        position: absolute;
        top: 47px;
        width: 290px;
        left: -12px;
        opacity: 0;

    }


    @keyframes stital {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .sticky .stital h6 {
        color: rgb(95, 95, 95);
    }


    .backp h3 {
        font-family: "nunitoregular";
        font-size: 15px;
        color: white;
        height: 32px;
        line-height: 32px;
        background-color: #0e0f11;
        width: 20%;
        cursor: pointer;
        text-align: center;
        margin-top: 4rem;
    }

    .aprojecttext1 p {
        padding-bottom: 1rem;
        padding-left: 1rem;
        width: 80%;
    }

    #home-section {
        height: 1300px;
    }

    .dropdownwrap {
        margin-top: 2.7rem;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-left: 2rem;
        user-select: none;
        padding: 0.2rem;
        padding-right: 0.5rem;
    }

    .dropdown-menu .selected2 {
        opacity: 1;
    }

    .languages {
        display: none;
    }

    .nodrop {
        display: flex;
    }

    /* @supports (-webkit-appearance: none) {
        #home-section:after {
            content: "";
            background-image: url(../img/svg/wave.svg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            width: 100%;
            height: 500px;
            bottom: -650px;
            z-index: -1;
            margin-bottom: 13rem;
        }
    } */
    .co2 {
        padding-bottom: 7rem;
    }

    .container2 {
        width: 95%;
    }

    a.underline.readmore {
        text-decoration: none;
    }

    .aprojecttext1 h4 {
        font-family: "nunitosemibold";
        font-size: 21px;
        margin: 0 auto;
        max-width: 700px;
    }

    .project1pop {
        width: 80%;
        margin-top: 4rem;
    }

    .project1pop .aprojecttext1 {
        width: 100%;
    }

    .row img {
        max-width: 180px;
    }

    .sliderblock {
        display: flex;
        flex-wrap: nowrap;
    }

    iframe {
        height: 501px;
    }

    .btn {
        width: 400px;
    }

    #ourprojects-section .buttons {
        width: 50%;
        /* margin: 0 auto; */
        font-size: 23px;
        margin-left: 0;
    }

    .buttons {
        margin: 0 auto;
        font-size: 19px;
    }

    .border-bottom {
        width: 400px;
    }

    #ourprojects-section h3 {
        font-size: 18px;
    }

    /* @media not all and (min-resolution:.001dpcm) {
        #home-section:after {
            content: "";
            background-image: url(../img/svg/wave.svg);
            margin-bottom: 0rem;
            height: 50vh;
            bottom: -255px;
        }
    } */
    .icon-box.p-block {
        width: 80%;
        display: flex;
        height: auto;
        align-items: center;
        align-content: center;
    }

    .icon-box p {
        font-size: 20px;
    }

    .title h1 {
        font-size: 50px;
    }

    .services-wrap {
        filter: grayscale(100%);
        height: 120vh;
        background-size: cover;
        display: flex;
        align-content: center;
        background-image: url(../img/services-bg-2024.jpg);
    }

    /* .servicesbg {
        height: 100vh;
    } */
    .icons-wrap {
        padding: 3rem;
        min-height: 800px;
        width: 1000px;
        margin-top: 2rem;
    }

    .icon-box {
        width: 30%;
        height: 250px;
    }

    .icon-box h4 {
        padding-bottom: 4rem;
    }

    .icon {
        width: 110px;
        height: 110px;
    }

    .content-wrap {
        display: flex;
        flex-wrap: nowrap;
        align-content: flex-start;
        align-items: center;
    }

    .about-image {
        background-image: url(../img/bg/aboutbg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        width: 50%;
        margin: 0 auto;
    }

    .about-text {
        width: 50%;
        font-size: 18px;
        padding-bottom: 4rem;
        margin-left: 5rem;
    }

    /* crew////////////////////////////// */
    .crew-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .crew-text {
        width: 70%;
        border-left: 1px solid gray;
        font-size: 18px;
    }

    /* .crew-imgs {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    } */

    /* .foto-wrap {
        display: flex;
        flex-wrap: wrap;
        width: 50%;
        align-content: center;
        justify-content: center;
    } */

    .foto {
        width: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .abd {
        background-image: url(../img/team-pic/abd.jpg);
    }

    .hayat {
        background-image: url(../img/team-pic/hayat.jpg);
    }

    .foto-wrap h3 {
        text-align: center;
    }

    .foto-wrap p {
        text-align: center;
        height: 50px;
        font-size: 18px;
    }

    .wrapper-menu {
        display: none
    }

    header {
        display: flex;
        padding-left: 10px;
        padding-right: 10px;
    }

    .border {
        top: 15px;
        left: 100px;

    }

    .icononly {
        top: 0;
        height: 70px;
    }




    nav {
        padding: 0;
        position: static;
        width: 60%;
        height: 12%;
    }

    .verborgen ul {
        display: block;
    }

    .verborgen {
        display: flex;
        align-content: flex-end;
    }

    nav ul {
        position: static;
        height: auto;
        text-align: end;
        background-color: transparent;
        padding: 0;
    }

    .logo {
        margin-top: 2rem;
        display: block;
    }

    nav ul li {
        display: inline-block;
    }

    nav ul li a {
        color: #000000;
        background-color: transparent;
    }

    li {
        font-family: nunitoregular;
        font-size: 1.5vw;
        margin-left: 1.6rem;
    }



    nav ul li a.active {
        border-bottom: 1px solid black;
        color: #0e0f11;
    }

    .underline {
        position: relative;
    }

    .underline::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 1.5px;
        background-color: #000000;
        transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    @media (hover: hover) and (pointer: fine) {
        .underline:hover::before {
            left: 0;
            right: auto;
            width: 100%;
        }
    }

    .sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        height: 120px;
        background-color: rgb(255 255 255 / 80%);
        backdrop-filter: blur(5px);
        transition: all 1s ease-in-out;
    }



    /* .sticky li {
        padding-top: 3rem;
    } */

    .sticky a {
        font-weight: 100;
    }

    .contact-title {
        padding: 3rem;
        font-size: 2rem;
    }

    .contact-wrap {
        padding: 5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 2;
        margin: 0 auto;

    }

    .contact-text {
        padding-top: 0;
        grid-column: 2;
        grid-row: 1/2 span;
        font-size: 1.1rem;

    }

    .personalinfo {
        grid-column: 1;
        grid-row: 1;
    }

    .consultbutton {
        grid-column: 1;
        grid-row: 2;
    }





    .location {
        display: inline-block;
        width: 100%;
    }

    .pbox h1 {
        padding: 4rem;
    }

    footer {
        background-color: #0e0f11;
        width: 100%;
        min-height: 130px;
        padding: 3rem 8rem 3rem 8rem;
        ;



    }

    footer p {
        color: white;
        font-family: "nunito_extralightregular";
        text-align: center;
        font-size: 0.8rem;
    }


    .left-content {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: row;
    }

    .right-content {
        display: flex;
        gap: 15px;
    }

    .socials {
        width: 30px;
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }

}

@media (max-width:900px) {
    .quote p {
        line-height: 30px;

    }

}

@media (min-width:1000px) {
    .footer-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }



}

/*/////////////////// media  min 1199 //////////////////////////////////////*/
@media (min-width: 901px) and (max-width: 1170px) {
    .projectsbg3 {
        background-size: contain;
    }
}

@media (min-width:1200px) {

    .foto-wrap {
        padding: 3rem;
    }

    header {
        padding-left: 45px;
        padding-right: 45px;
    }

    .border {
        width: 300px;
        left: 130px;

    }

    .logobox {
        display: block;
    }

    .icononly {
        top: 17px;
        left: 0px;
    }

    .nameonly {
        top: 14px;

    }



    .sticky .icononly {
        top: 25px;

    }

    /* header select animation */
    .dropdownwrap {
        top: 10px;
        margin-top: 2.5rem;
    }

    .container2 {
        width: 90%;
    }

    .sliderblock {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .aprojecttext1 p {
        font-size: 20px;
    }

    .mission h5 {
        font-size: 20px;
    }

    .next {
        right: 97px;
    }

    .full-width {
        max-width: 90%;
    }

    li {
        font-family: nunitoregular;
        font-size: 20px;
        margin-left: 2rem;
        transition: all 1s;
    }

    .by {
        font-size: 20px;
    }

    .logo {
        width: 300px;
        height: 100%;
        display: block;
        margin: 0;
        margin-left: 0;
        padding-top: 1rem;
    }

    .name1 {
        width: 100%;
        min-height: auto;
        top: 6px;
        right: 40px;
    }






    /* section services media ///////////////////////////////////////////////////////////*/
    /*////////////////////////////////////// quote section */
    .quote {
        font-family: "nunitosemibold";
        width: 60%;
        line-height: 60px;
        font-size: 25px;
    }

    .quote p {
        font-size: 20px;
    }

    /* .quote:after {
        width: 200px;
        height: 200px;
        right: -57px;
        bottom: -104px
    }

    .quote:before {
        width: 200px;
        height: 200px;
        left: -106px;
        top: -143px;
    } */

    /* projects section */
    .buttons {
        width: 80%;

    }

    .projectsbg {
        height: 70vh;
    }

    .projectsbg2,
    .projectsbg3,
    .projectsbg4 {
        height: 70vh;
    }

    .projectsbg3 {
        background-position: center;

    }

    .projectsbg-title {
        height: 160px;
        width: 80%;
        line-height: 160px;
        padding-right: 3rem;
        bottom: -60px;
    }

    .title {
        height: 160px;
        width: 60%;
        line-height: 160px;
        padding-right: 3rem;
    }

    .title h1 {
        font-size: 70px;
        line-height: 160px;
    }

    h2 {
        font-size: 60px;
        font-family: "nunito_extralightregular";
    }

    .projects-text {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        flex-direction: column;
    }

    .text-wrap {
        width: 40%;
        padding-left: 7rem;
        margin-left: 7rem;
    }

    .text-wrap p {
        padding-bottom: 2rem;
    }

    .button {
        margin-left: 14rem;
    }

    .button h3 {
        color: #F4F4F4;
        cursor: pointer;
    }

    .about-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        width: 80%;
    }

    .content-wrap {
        display: flex;
        flex-wrap: nowrap;
        align-content: flex-start;
        align-items: center;
        justify-content: center;
    }

    .about-text {
        width: 70%;
        margin-left: 4rem;
    }

    .about-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        width: 80%;
    }

    .content-wrap {
        display: flex;
        flex-wrap: nowrap;
        align-content: flex-start;
        align-items: center;
        justify-content: center;
    }

    .about-text {
        width: 70%;
        margin-left: 10rem;
    }

    /* crew */
    .crew-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .crew-text {
        border-left: 1px solid gray;
        font-size: 20px;

    }

    /* 
    .crew-imgs {
        width: 70%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
 */






    .crew-title {
        height: 155px;
    }

    .crew-title h1 {
        font-size: 70px;
        line-height: 155px;
    }

    .sticky .logo {
        margin-top: -0.5rem;
    }

    .sticky {
        height: 125px;
    }

    .sticky li {
        padding-top: 4rem;
    }

    #ourprojects-section {
        min-height: 800px;
        /* padding-top: 7rem; */
    }


    #ourprojects-interior,
    .ourprojects-architecture {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .projectbox {
        width: 50%;
        padding-bottom: 4rem;
    }




}

.mission h5 {
    padding-left: 3rem;
    padding-bottom: 1rem;

}

.projectborder {
    border-left: 1px solid;
}

@media (min-width:1400px) {
    .pbox {
        width: 60%;
    }

    .contact-wrap {
        padding: 8REM;
    }
}

/*/////////////////// media  min 1400 //////////////////////////////////////*/

@media (min-width:1670px) {
    .contact-title {
        font-size: 2.7rem;
        padding-left: 3.8rem;
    }


    .con p {
        padding-left: 0.8rem;
    }

    .consultbutton {
        width: 300px;
    }

    .contact-wrap p {
        font-size: 1.2rem;
    }

    .co2 {
        margin-top: 0;
    }

    .quote p {
        font-size: 20px;
    }

    .row {
        padding-bottom: 2rem;
    }

    .quote {
        line-height: 50px;
        padding-top: 4rem;
    }

    /* .quote:after {
        width: 300px;
        height: 300px;
        right: -166px;
        bottom: -210px;
    }

    .quote:before {
        width: 300px;
        height: 300px;
        left: -222px;
        top: -180px;
    } */

    .services-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        background-color: #F4F4F4;
    }

    .text-wrap {
        width: 40%;
        font-size: 20px;
    }

    li {
        margin-left: 4rem;
    }

    .crew-title {
        height: 150px;
    }

    .about-text {
        font-size: 23px;
    }





    #ourprojects-section {
        min-height: 900px;
    }
}





/* before and after */



div#comparison {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

div#comparison figure>img {
    position: relative;
    width: 100%;
}

div#comparison .HammeA {
    background-image: url(../img/projects/ArchitectureProjects/Hamme/hammeB2.jpg);
    background-size: cover;
    position: relative;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}



div#comparison .HammeA div {
    background-image: url(../img/projects/ArchitectureProjects/Hamme/hammeA22.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    bottom: 0;
    border-right: 2px solid white;

    height: 100%;
}


div#comparison .viseA {
    background-image: url(../img/projects/ArchitectureProjects/vise/before\ -1copy.JPG);
    background-size: cover;
    position: relative;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;

}


div#comparison .viseA div {
    background-image: url(../img/projects/ArchitectureProjects/vise/after.JPG);
    background-size: cover;
    position: relative;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    bottom: 0;
    height: 100%;
    border-right: 2px solid white;
}

div#comparison .HERSTALA {
    background-image: url(../img/projects/ArchitectureProjects/HERSTAL/before2.JPG);
    background-size: cover;
    position: relative;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;

}

div#comparison .HERSTALA div {
    background-image: url(../img/projects/ArchitectureProjects/HERSTAL/2024_Architecture_Herstal_Exterior\ 2.jpg);
    background-size: cover;
    position: relative;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    bottom: 0;
    height: 100%;
    border-right: 2px solid white;
}

/*  */

div#comparison .HERSTAL2A {
    background-image: url(../img/projects/ArchitectureProjects/HERSTAL2/BEFORE-HERSTAL2.jpg);
    background-size: cover;
    position: relative;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}


div#comparison .HERSTAL2A div {
    background-image: url(../img/projects/ArchitectureProjects/HERSTAL2/1.png);
    background-size: cover;
    position: relative;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    bottom: 0;
    height: 100%;
    border-right: 2px solid white;
}



input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]:active {
    outline: none;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    position: relative;
    outline: none;
}





input[type="range"]::-webkit-slider-thumb {
    background-image: url(../img/arrow2.png);
    background-size: cover;

    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: e-resize;
}

input[type="range"]::-moz-range-thumb {
    background-image: url(../img/arrow2.png);
    cursor: e-resize;
    background-size: cover;
    -moz-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
}





/* input[type="range"]:focus::-webkit-slider-thumb {
    background: rgba(255, 255, 255, 0.63);
}

input[type="range"]:focus::-moz-range-thumb {
    background: rgba(255, 255, 255, 0.603);
} */