* {
    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: 600;
    font-style: normal;
}

#container {
    margin: 0 auto;
}


/* header */

header {
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    left: 0;
    top: 0;
}

#home-section {
    background-image: url(../img/bg/sasha-yudaev-5t3SBRsdouQ-unsplash.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

#home-section:after {
    content: "";
    background-image: url(../img/svg/wavephone.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100vh;
    bottom: -507px;
    z-index: -1;
}

.quote-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 800px;
    padding-top: 7rem;
}

.quote {
    width: 80%;
    text-align: center;
    font-family: "nunitoregular";
    line-height: 25px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.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: -77px;
}

.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;
}

.logo {
    height: 15%;
    width: 300px;
    margin-left: 1rem;
    margin-top: 2rem;
    position: relative;
}

.name1 {
    background-image: url(../img/logos/1x/l.b.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 90px;
    animation: name1ani 2s ease-in-out;
    position: relative;
    top: 16px;
}

@keyframes name1ani {
    0% {
        transform: translate3d(-50px, 0, 0);
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.border {
    position: absolute;
    margin-top: 1rem;
    content: "";
    width: 150px;
    height: 53px;
    border-left: 1px black solid;
    right: -20px;
    top: 0;
    overflow: hidden;
    animation: bordr 1s ease-in;
    animation-direction: alternate;
}

@keyframes bordr {
    from {
        opacity: 0;
        transform: translateY(30px);
        height: 5%;
    }
    to {
        opacity: 1;
    }
}

.circle {
    background-image: url(../img/logos/LOGO\ ICON.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    position: absolute;
    animation: circly 3s cubic-bezier(0.86, 0, 0.07, 1);
    top: -5px;
}

@keyframes circly {
    0% {
        background-image: url(../img/logos/LOGO\ ICON.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 60px;
        height: 60px;
        top: -5px;
        transform: translateX(-130px);
    }
    50% {
        background-image: url(../img/logos/LOGO\ ICON.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 60px;
        height: 60px;
        top: -5px;
    }
    100% {
        background-image: url(../img/logos/LOGO\ ICON.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 60px;
        height: 60px;
        top: -5px;
        transform: translateX(0);
    }
}

a {
    text-decoration: none;
    color: whitesmoke;
}

nav ul {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100vh;
    background-color: #262626d7;
    padding: 6rem;
    display: none;
    z-index: 998;
}

.verborgen {
    display: block;
}

.hide {
    display: none;
}

nav ul li {
    text-align: start;
    list-style: none;
    padding-top: 4rem;
}

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: 5vh;
}

@keyframes phonemenu {
    0% {
        transform: translateX(400px);
    }
    100% {
        transform: translateX(0px);
    }
}


/* //////////////////////////home section */

.wrapper-menu {
    position: fixed;
    top: 50px;
    right: 50px;
    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: #242424;
    border-radius: 20px;
    width: 100%;
    height: 4px;
}

.color {
    background-color: #b6b6b6;
}

.line-menu.half {
    width: 50%;
}

.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: #d4d4d4;
}

.line-menu.end {
    align-self: flex-end;
    transition: transform 400ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.open .line-menu.end {
    transform: rotate(-90deg) translateX(-3px);
    background-color: #d4d4d4;
}

.open .line-menu {
    background-color: #d4d4d4;
}


/*/////////////////////////////////////////////////////////////////////////////////// services /*/

section {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
}

h1 {
    font-family: "nunito_extralightregular";
}

.services-wrap {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    background-color: #F4F4F4;
}

.servicesbg {
    background-image: url(../img/bg/raphael-lr-tYu0IvcbjxU-unsplash2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    background-attachment: fixed;

}

.icons-wrap {
    background-color: rgba(255, 255, 255, 0.568);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: space-evenly;
    padding: 2rem;
}

.icon-box {
    width: 40%;
    height: 220px;
    padding-top: 3rem;
    font-family: nunitoregular;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-box h4 {
    color: black;
    width: 100%;
    text-align: center;
}

.icon.show {
    opacity: 1;
}

.icon {
    background-color: white;
    width: 120px;
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.2s ease-out;
    border: 1px solid rgba(51, 51, 51, 0.507);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.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)
}

.fixedphone {
    position: fixed;
    top: 50px;
    right: 50px;
}


/*;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; icons anim */

.animation {
    display: none;
}

.close {
    position: absolute;
    right: 26px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    opacity: 0.6;
}

.close:hover {
    opacity: 1;
}

.close:before,
.close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

.p-none {
    width: 300px;
    display: none;
}

.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 {
    padding-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;
}

#projects-section h3 {
    width: 100%;
    text-align: center;
}

#projects-section {
    padding-top: 8rem;
}

.buttons-border {
    border-bottom: gray 1px solid;
    width: 200px;
    margin-bottom: 2rem;
}

.buttons-border:hover {
    opacity: 1;
    transition: all 0.2s;
    cursor: pointer;
}

.projectsbg {
    background-image: url(../img/bg/architecturebg.jpg);
    height: 50vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.projectsbg2 {
    background-image: url(../img/bg/interiordesignbg.jpg);
    height: 50vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    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: 5vh;
    font-family: "nunito_extralightregular";
}

.projects-text {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
}

.text-wrap {
    width: 70%;
    min-height: auto;
    padding-left: 3rem;
}

.text-wrap p {
    color: gray;
    padding-bottom: 1rem;
    font-family: "nunitoregular";
}

h3 {
    font-family: "nunito_extralightregular";
}

.unclicked {
    opacity: 0.5;
    transition: all 1s ease-in-out;
}

.button {
    background-color: #242424;
    width: 230px;
    height: 50px;
    margin: 3rem;
    line-height: 50px;
}

.button h3 {
    color: #F4F4F4;
    cursor: pointer;
}

.button:hover {
    background-color: #888888;
}

.Interior {
    display: none;
}

.projects-title {
    margin-bottom: 7rem;
}


/*///////////////////////////////////////////////////////////////////// about section */

.inleiding {
    font-size: 2vh;
    font-family: "nunitosemibold";
    width: 100%;
    margin-top: 4rem;
    margin-left: 2rem;
}

.about-text {
    margin-left: 2rem;
    min-height: auto;
    margin-bottom: 3rem;
}

.border-left {
    border-left: black 1px solid;
}

#about-section p {
    width: 80%;
    padding: 1rem;
    font-family: "nunitoregular";
}

.content-wrap {
    margin-top: 5rem;
    min-height: 100%;
}

.A {
    background-image: url(../img/logos/ARch.png);
    background-size: cover;
    height: 55px;
    width: 50px;
    float: left;
}

.about-image {
    background-image: url(../img/bg/aboutbg\ -\ Copy.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.crew-title {
    background-color: #bbbbbb1c;
    margin-top: -30px;
}

.crew-title h1 {
    line-height: 190px;
    text-align: center;
    padding: 0;
    font-size: 4vh;
}

.crew-wrap {
    height: 70vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.crew-text {
    border-left: 1px solid gray;
    margin-left: 1rem;
}

.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;
    flex-direction: column;
    align-items: center;
}

strong {
    font-family: "nunitosemibold";
}

.foto {
    border: solid 1px rgb(48, 48, 48);
    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);
}

.foto-wrap h3 {
    text-align: center;
    padding-top: 2rem;
}

.foto-wrap p {
    text-align: center;
    height: 50px;
    font-size: 1.4vh;
}

.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: 4vh;
    line-height: 100px;
}


/* tussentitles  */

.title.in-view {
    opacity: 1;
    transition: opacity 1s ease, transform 0.5s ease;
    transform: translateX(-50px);
}


/* .title.in-view2 {
    transform: translateX(-50px);
    background-color: transparent;
    border-bottom: #0e0f11 1px solid;
    color: #333;
} */


/* tussentitles  */

.t2.t2-view {
    opacity: 1;
    transition: opacity 1s ease, transform 0.5s ease;
    transform: translateX(-50px);
}


/* ///////////////////////////////////////////////////////////////contact section */

.contactbg {
    background-image: url(../img/bg/clu-soh-Aduq8OuJlq0-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-text {
    width: 70%;
    background-color: #24242470;
    /* padding: 2rem; */
    height: 219px;
    padding: 5rem 1rem 1rem 1rem;
    margin-right: 1rem;
}

.contact-text p {
    color: white;
    font-family: "nunito_extralightregular";
    font-size: 2vh;
    padding-left: 1rem;
    border-left: 1px solid white;
}

.container {
    max-width: 560px;
    width: 100%;
}

.email,
.phone {
    width: 300px;
    line-height: 45px;
    display: inline-flex;
    text-align: start;
}

.personalinfo {
    min-height: auto;
    /* padding: 3rem; */
    display: inline-flex;
    text-align: end;
    flex-direction: column;
    padding: 1rem;
}

.personalinfo h3 {
    font-family: "nunitoregular";
    width: 90%;
}

.contact-us {
    margin: 0 auto;
    padding: 1rem;
    width: 90%;
}

.emailicon {
    background-image: url(../img/socials-icons/emailblack.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

.phoneicon {
    background-image: url(../img/socials-icons/phoneblack.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
    font-family: "nunitoregular";
}

button[type="submit"]:hover {
    opacity: 0.5;
}

#contact {
    padding: 2rem;
    margin-top: 4rem;
}

#contact h3 {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

#contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: 400;
}

fieldset {
    border: medium none !important;
    margin-bottom: 2rem;
    padding: 0;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
    width: 100%;
    border: none;
    margin: 0 0 5px;
    padding: 10px;
    border-bottom: 1px solid #333;
}

#contact textarea {
    max-width: 100%;
    resize: none;
}

#contact button[type="submit"] {
    cursor: pointer;
    width: 100px;
    border: none;
    background: #000000;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

.copyright {
    text-align: center;
}

#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: none;
}

 ::-webkit-input-placeholder {
    color: #888;
}

 :-moz-placeholder {
    color: #888;
}

 ::-moz-placeholder {
    color: #888;
}

 :-ms-input-placeholder {
    color: #888;
}

label {
    font-family: "nunitoregular";
}


/* footer */

.arrow {
    color: white;
    font-size: 4vh;
    height: 25px;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.arrow:hover {
    color: gray;
    cursor: pointer;
}

footer {
    background-color: #0e0f11;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer p {
    color: white;
    font-family: "nunito_extralightregular";
    text-align: center;
    font-size: 1.5vh;
    padding: 1rem;
}

.footer-wrap {
    display: flex;
    justify-content: center;
}

.footer-wrap a {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
}

.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);
}

.socials {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    margin: 1rem;
}


/* Minimalist Contact Form Style */


/*/////////////////// media  //////////////////////////////////////*/

@media (max-width:480px) {
    .icon-box {
        font-family: "nunito_extralightregular";
        width: 100%;
        height: 250px;
    }
    #home-section:after {
        bottom: -107px;
        z-index: -1;
    }

}

@media (min-width:560px) {
    .quote-section {
        height: 900px;
    }
    .quote {
        font-family: "nunito_extralightregular";
        line-height: 40px;
        font-size: 3vh;
    }
    .icons-wrap {
        width: 650px;
    }
    h4 {
        padding-top: 1rem;
        text-align: center;
    }
    .about-image {
        background-size: cover;
        height: 50vh;
        width: 80%;
    }
    .content-wrap {
        align-items: normal;
    }
    .crew-title {
        margin-top: 0px;
    }
}


/*/////////////////// media  min 900 ////////////////////////////////---------------------//////*/

@media (min-width:924px) {
    .servicesbg {
        height: 100vh;
    }
    .icons-wrap {
        padding: 3rem;
    }
    .icon-box {
        width: 30%;
        height: 250px;
    }
    .icon {
        width: 110px;
        height: 110px;
    }
    .content-wrap {
        display: grid;
    }
    .about-image {
        background-image: url(../img/bg/aboutbg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 352px;
        grid-column: 2;
        grid-row: 2;
    }
    .about-text {
        width: 100%;
        grid-column: 1;
        grid-row: 2;
        font-size: 2vh;
        margin-left: 5rem;
    }
    .inleiding {
        font-size: 3vh;
    }
    /* crew////////////////////////////// */
    .crew-wrap {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .crew-text {
        border-left: 1px solid gray;
        font-size: 2vh;
        margin-left: 2rem;
    }
    .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 {
        border: solid 1px rgb(48, 48, 48);
        width: 280px;
        height: 380px;
        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: 1.4vh;
    }
    .wrapper-menu {
        display: none
    }
    header {
        display: flex;
        justify-content: space-around;
    }
    nav {
        padding: 0;
        position: static;
        width: 50%;
        height: 12%;
    }
    .verborgen ul {
        display: block;
    }
    nav ul {
        position: static;
        height: auto;
        text-align: end;
        background-color: transparent;
        padding: 0;
    }
    .logo {
        display: block;
    }
    nav ul li {
        display: inline-block;
    }
    nav ul li a {
        color: #000000;
        background-color: transparent;
    }
    li {
        font-family: nunitoregular;
        font-size: 1.6vh;
        margin-left: 1.6rem;
    }
    a:hover {
        color: #505050;
    }
    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: 100px;
        background-color: rgba(255, 255, 255, 0.527);
        backdrop-filter: blur(4px);
        transition: all 1s ease-in-out;
    }
    .sticky .logo {
        margin-top: 1rem;
    }
    .sticky li {
        padding-top: 3rem;
    }
    .sticky a {
        font-weight: 100;
    }
    .contact-text {
        padding: 4rem 1rem 1rem 4rem;
    }
    .contact-text p {
        font-size: 2.9vh;
        line-height: 35px;
    }
    .crew-title h1 {
        font-size: 5vh;
    }
    .personalinfo {
        margin-bottom: 6rem;
    }
}


/*/////////////////// media  min 1199 //////////////////////////////////////*/

@media (min-width:1200px) {
    /* header select animation */
    li {
        font-family: nunitoregular;
        font-size: 2vh;
        margin-left: 2rem;
        transition: all 1s;
    }
    #home-section {
        background-image: url(../img/bg/sasha-yudaev-5t3SBRsdouQ-unsplash.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #home-section:after {
        content: "";
        background-image: url(../img/svg/wave.svg);
        bottom: -580px;
    }
    .logo {
        width: 300px;
        height: 100%;
        display: block;
        margin: 0;
        margin-left: 0;
        padding-top: 1rem;
    }
    .name1 {
        width: 100%;
        min-height: auto;
        left: -19px;
        top: 6px;
    }
    .border {
        width: 400px;
        height: 90px;
        right: -350px;
        top: 4px;
    }
    @keyframes bordr {
        from {
            opacity: 0;
            transform: translateY(30px);
            height: 20%;
        }
        to {
            opacity: 1;
        }
    }
    .circle {
        width: 100px;
        height: 200px;
    }
    @keyframes circly {
        0% {
            background-image: url(../img/logos/LOGO\ ICON.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 100px;
            height: 200px;
            top: -5px;
            transform: translateX(-130px);
        }
        50% {
            background-image: url(../img/logos/LOGO\ ICON.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 100px;
            height: 200px;
            top: -5px;
        }
        100% {
            background-image: url(../img/logos/LOGO\ ICON.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 100px;
            height: 200px;
            top: -5px;
            transform: translateX(0);
        }
    }
    /* section services media ///////////////////////////////////////////////////////////*/
    /*////////////////////////////////////// quote section */
    .quote-section {
        height: 1000px;
    }
    .quote {
        font-family: "nunito_extralightregular";
        width: 70%;
        line-height: 60px;
        font-size: 3vh;
    }
    .quote:after {
        width: 200px;
        height: 200px;
        right: -57px;
        bottom: -104px
    }
    .quote:before {
        width: 200px;
        height: 200px;
        left: -106px;
        top: -143px;
    }
    /* projects section */
    .buttons {
        width: 70%;
        margin: 0 auto;
        font-size: 2vh;
    }
    .buttons-border {
        width: 350px;
        margin-bottom: 3rem;
    }
    .projectsbg {
        height: 60vh;
    }
    .projectsbg2 {
        height: 60vh;
    }
    .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 {
        line-height: 160px;
        font-size: 7vh;
    }
    h2 {
        font-size: 6vh;
        font-family: "nunito_extralightregular";
    }
    .projects-text {
        height: 100vh;
        width: 100%;
        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 {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .crew-text {
        border-left: 1px solid gray;
        font-size: 2vh;
        margin-left: 2rem;
    }
    .crew-imgs {
        width: 70%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
    .contact-us {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        align-items: flex-end;
    }
    .contact-text {
        width: 46%;
        height: 358px;
        padding: 8rem 1rem 1rem 4rem;
        margin-right: 4rem;
    }
    .contact-text p {
        font-size: 3vh;
        line-height: 40px;
    }
    .container {
        margin: 0;
    }
    .contactbg {
        justify-content: flex-end;
    }
    .crew-title h1 {
        font-size: 7vh;
    }
    .sticky .logo {
        margin-top: 0rem;
    }
    .sticky {
        height: 125px;
    }
    .sticky li {
        padding-top: 3.5rem;
    }
}


/*/////////////////// media  min 1400 //////////////////////////////////////*/

@media (min-width:1670px) {
    #home-section:after {
        content: "";
        background-image: url(../img/svg/wave.svg);
        bottom: -590px;
    }
    .quote {
        font-family: "nunito_extralightregular";
        line-height: 50px;
        padding-top: 4rem;
    }
    .quote:after {
        width: 400px;
        height: 400px;
        right: -166px;
        bottom: -210px;
    }
    .quote:before {
        width: 400px;
        height: 400px;
        left: -222px;
        top: -271px;
    }
    .services-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        background-color: #F4F4F4;
    }
    .text-wrap {
        width: 40%;
        font-size: 2vh;
    }
    li {
        margin-left: 4rem;
    }
    .crew-title {
        height: 150px;
    }
    .crew-text {
        margin-left: -13rem;
    }
    .contact-us {
        width: 70%;
        margin: 0 auto;
    }
    .contact-text {
        width: 40%;
        padding: 2rem;
        height: 400px;
        padding: 9rem 1rem 1rem 4rem;
        margin-right: 4rem;
    }
    .contact-text p {
        font-size: 3.6vh;
        line-height: 40px;
    }
    .contactbg {
        justify-content: flex-end;
    }
}


