html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body{
    margin: 0 auto;
    box-sizing: content-box;
    font-family: 'Roboto';     
}

.mainwrapper{
    background-color: #f2f2f2;
    justify-content: center;
    display: flex;
    position: relative;
}

* {box-sizing: border-box;}

img{
    height: auto;
    display: block;
}

h1{
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

button{
    padding: 0px;
    border-width: 0px;
    border: none;
    cursor: pointer;
}

a{
    position: relative;
    text-decoration: none;
}

* {box-sizing:border-box}

.maxwidth{
    max-width: 1500px;
    display: flex;
    align-items: center;
    margin-left: 7%;
    margin-right: 7%;
    margin-bottom: 100px;
}

.imgwidth2{
    width: 100%;
}

/* navbar */

nav{
    position: fixed;
    height: 100px;
    z-index: 1000;
    transition: height 300ms ease-in-out 0ms,padding 300ms ease-in-out 0ms,background 300ms ease-in-out 0ms;
    color: #fff;
    right: 0;
    left: 0px;
}

#navbar{
    height: 90px;
    position: fixed;
    transition: height 300ms ease-in-out 0ms,padding 300ms ease-in-out 0ms,background 300ms ease-in-out 0ms;
    border-bottom: 2.5px solid #897053;    
}

.navwrapper{
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 7%; 
    letter-spacing: .18em;
}

.navbarchange{
    background-color: rgb(36, 70, 81);
}

/* logo */
.logocontainer{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 90px;
    width: 33.333%;
    cursor: pointer;
    z-index: -2;
}

.logo{
    height: 46px;
}

.logodescription{
    font-size: 20px;
    padding-top: 10px;
    padding-left: 10px;
    text-transform: capitalize;
}

/* navmenu*/

ul.menu {
    list-style: none;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    width: 33.333%;
    margin: 0;
    padding: 0;
    border-left: 2.5px solid #897053;
}

ul.menu li{
    display: flex;
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: letter-spacing .5s ease-in-out;
    letter-spacing: .18em;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    border-right: 2.5px solid #897053;
}

ul.menu :hover{
    letter-spacing: .40em;
    transition: letter-spacing .5s ease-in-out;
}

/* menu button */
.menubuttonborder{
    position: relative;
    height: 90px;
    justify-content: center;
    display: flex;
    align-content: center;
    align-items: center;
    width: 20%;
}
.menubutton{
    height: 18px;
    cursor: pointer;
    position: relative;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .2s ease-in-out;
}


.menuicon{
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 300ms ease-in-out 0ms;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.menubutton span:first-child{
    position: relative;
    width: 30px;
    margin: 0;
    border: 1px solid #fff;
    transition: transform 300ms ease-in-out 0ms,bottom 300ms ease-in-out 300ms,opacity 0ms ease-in-out 300ms;
    border-radius: 1px;
}

.menubutton span:nth-child(2){
    position: relative;
    width: 30px;
    border: 1px solid #fff;
    transition: transform 300ms ease-in-out 0ms,top 300ms ease-in-out 300ms,opacity 0ms ease-in-out 300ms;
    border-radius: 1px;
}

.menubutton span:nth-child(3){
    position: relative;
    width: 30px;
    border: 1px solid #fff;
    transition: transform 300ms ease-in-out 0ms,top 300ms ease-in-out 300ms,opacity 0ms ease-in-out 300ms;
    border-radius: 1px;
}

.mobilmenu .menuicon{
    opacity: 1;
}

.menuiconcontainer{
    top: 0;
    right: 0;
    left: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    opacity: 0;
    position: fixed;
    overflow: auto;
    transform: translate(100px, 0);
    background: white;
    transition: transform 300ms ease-in-out 0ms,opacity 300ms ease-in-out 0ms;
    flex-direction: column;
    pointer-events: none;
    justify-content: flex-start;
    z-index: -1;
    color: #111;
    padding: 10%;
    cursor: default;
}
.menuiconcontainer :hover{
    cursor: default;
}
.menuiconcontainer :active{
    cursor: default;
}

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

.mobilmenu .menuiconcontainer{
    opacity: 1;
    transform: translate(0, 0);
    
}

.mobilmenu span:first-child{
    bottom: -9px;
    transform: rotate(45deg);
    transition: bottom 300ms ease-in-out 0ms,transform 300ms ease-in-out 300ms;
    border: 1px solid #111;
}

.mobilmenu span:nth-child(2){
    opacity: 0;
}

 .mobilmenu span:nth-child(3){
    top: -8px;
    transform: rotate(-45deg);
    transition: top 300ms ease-in-out 0ms,transform 300ms ease-in-out 300ms;
    border: 1px solid #111;
}

/* Hero images*/
.heroimages{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    max-height: 100vh;
    min-height: 500px;
    transition: opacity .2s ease-in-out;
    z-index: 100;
    background-color: rgb(36, 70, 81)
}

.heroContainer {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: opacity .2s ease-in-out;
}

.heroGraphic {
    margin: 0 auto;
    position: absolute;
    transform: scale(1);
    animation: move 12s linear 0s infinite normal;
    animation-delay: 0s;
    transform-origin: top;
    width: 100vw;
    left: 0;
    right: 0;
}

@-moz-keyframes move {
    0% {
      opacity: 0;
      transform: scale(2.5);
    }
    58.3% {
      opacity: 0;
    }
    66.6% {
      opacity: 1;
    }
    91.6% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: scale(2);
    }
  }

.progressiveImage {
    filter: blur(0px);
    transition: filter .8s ease-in;
}

.heroImage-1 {
    animation-delay: -8s;
    width: 100vw;
}

.heroImage-2 {
    animation-delay: -4s;
    width: 100vw;
    
}

.heroImage-3 {
    animation-delay: 0s;
    width: 100vw;
}

/* tagline */
.taglineContainer {
    top: 0;
    left: -1%;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 100;
}

.taglinewrapper{
    top: 38%;
    left: 0;
    right: 0;
    width: 66%;
    color: #fff;
    margin: 0 auto;
    display: flex;
    position: absolute;
    font-size: 12vw;
    text-align: center;
    align-items: stretch;
    line-height: 12vw;
    font-family: Rhode, Impact, Verdana;
    font-weight: 500;
    flex-direction: row;
    justify-content: left;
}

.taglineContainer-1{
    position: relative;
    text-align: left;
    text-decoration: underline;
}

.tagline {
    top: 38%;
    left: 0;
    right: 0;
    width: 66%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: left;
    position: relative;
}

.taglineWord-1 {
    margin: 0 16px;
    position: relative;
    text-align: left;
    font-family: Rhode, Impact, Verdana;
    font-weight: 500;
}

/* fixed background*/
.fixedtext{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw; 
    font-family: Rhode, Impact, Verdana;
    font-weight: 500;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("assets/marble-white.jpg");
    display: flex;
    justify-content: center;
    align-content: center;
    height: 100vh;
}

.fixedlogo{   
    position: relative;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    font-size: 6vw;
    margin-top: 40vh;
    max-width: 500px; 
}

.LogofixedBG{
    max-width: 400px;  
}

.fixedlogodescription{
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    letter-spacing: .12em;
}

.rotatingline{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    max-width: 100vw; 

}
 
.goldline{
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.rotating{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    display: flex;
    width: 30%;
    top: 100px;
    max-width: 600px;
    min-width: 200px;
}

#rotating {
    -webkit-animation: rotation 50s infinite linear;
}

@-webkit-keyframes rotation {
    from {
            -webkit-transform: rotate(0deg);
    }
    to {
            -webkit-transform: rotate(359deg);
    }
}

/*  About container */
.about{
    background-color: rgb(36, 70, 81);
    color: #fff;
    font-size: 20px;
    margin-top: 70vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutimg{
    position: absolute;
    width: 20%;
    z-index: -1;
    transform: rotate(60deg); 
    min-width: 400px;
}

.aboutpadding{
    padding-left: 13%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-top: 15%;
    padding-bottom: 15%;
}

.abouttitle{
    width: 50%;
}

.abouttext{
    width: 50%;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: .05em;
}

.paddingtext{
    margin-left: 13%;
    padding-right: 10%;
    margin-bottom: 50px;  
}

.aboutbuttun{
    position: relative;
    cursor: pointer;
    width: max-content;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .18em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);  
    margin-left: 13%;
}

.aboutbuttun ::after{
    display: flex;
    content: "";
    width: 60px;
    border-bottom: 2.5px solid #897053;
    padding-top: 10px;
    position: absolute;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.aboutbuttun :hover::after{
    width: 150px;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
} 

.aboutbuttun :hover{
    letter-spacing: .40em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.aboutbtn1{
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);  
}


/* project Slideshow container */

.projectsection{
    height: 800px;
    max-height: 800px;
    position: relative;
    display: flex;
    z-index: 100;
    background-color:#fff;
    margin-top: -100px;
    max-width: 1500px;
    width: 100%;
    margin-right: 7%;
    margin-left: 7%;
}

.slideshow-container{
    overflow: hidden;
}

.mySlides {
    display: none;
}

.ms-touch.mySlides{
    overflow-x: scroll;
    overflow-y: hidden;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

.overflow{
    overflow: hidden;
    height: 800px;
    width: 100%;
    position: relative;
    display: flex;
    margin-left: 0px;
    margin-right: 0px;
}

.projecttext{
    width: 50%;
    position: relative;
    align-content: left;
    text-align: left;
    display: flex;
    z-index: 1;
    justify-content: center;
    
}
.padding{
    padding-left: 13%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-top: 15%;
    padding-bottom: 15%;
}

.projecttextinside{
    padding-right: 10px;
}

.projecttexth1{
    margin: 50px 50px 50px 0px;
}

.projectsubtitle{
    position: relative;
    display: flex;
    align-items: center;
}

.projecttext p{
    font-size: 18px;
    padding-right: 100px;
    line-height: 30px;
    margin-bottom: 50px;   
    letter-spacing: .05em;
}

.projectsubtitle ::before{
    border-bottom: 1px solid
    #000000;
    max-width: 9100px;
    width: 100px;
    text-align: left;
    content: "";
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 10px;
}

.projectbutton{
    position: relative;
    cursor: pointer;
    width: max-content;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .18em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);  
    line-height: 30px;
}

.projectbutton ::after{
    display: flex;
    content: "";
    width: 45px;
    border-bottom: 2.5px solid #897053;
    padding-top: 10px;
    position: absolute;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    cursor: pointer;
}

.projectbutton :hover::after{
    width: 240px;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.projectbutton :hover{
    letter-spacing: .40em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.projectbtn1{
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86); 
}

.imgwidth{
    width: 50%;
}

.imagedescription {
    color: #111;
    font-size: 20px;
    position: absolute;
    z-index: 100000;
    text-align: center;
    writing-mode: vertical-lr;
    display: block;
    margin-left: -40px;
    top: 180px;
    letter-spacing: 15px;
}

/* Number text (1/3 etc) */
.Number{
    font-family: 'Vidaloka', serif;
    font-weight: lighter;
    display: block;
    position: absolute;
    margin-left: -50px;
    font-size: 150px;
    font-weight: 900;
    font-style: normal;
    bottom: 0;
    z-index: 1;
    top:10px;
    color: #897053
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
  
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 10px;
    color: #897053;
    font-size: 50px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 1000;
    border: 2.5px solid;
}

.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}
.prev{
    left: 0px;
}

/* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
} 
  
/*portfoliosection*/
.processicon{
    width: 20%;
    position: absolute;
    left: 0;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    min-width: 110px;
    bottom: -25%;
    min-width: 200px;
}

.processsection{
    background-color: #f2f2f2;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.processtext{
    position: relative;
    align-content: center;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 5%;
    z-index: 100;
    flex-direction: column;
    margin-left: 7%;
    margin-right: 7%;
    max-width: 1500px;
    overflow: hidden;
}

.processsubtitle{
    position: relative;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.processsubtitle ::before{
    border-bottom: 1px solid
    #000000;
    max-width: 9100px;
    width: 100px;
    text-align: left;
    content: "";
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 10px;
}

.processsubtitle ::after{
    border-bottom: 1px solid
    #000000;
    max-width: 9100px;
    width: 100px;
    text-align: left;
    content: "";
    display: inline-block;
    margin-bottom: 5px;
    margin-left: 10px;
}

.processstitle{
    margin-top: 50px;
    margin-bottom: 50px;
}

.rotatingshape{
    margin-left: auto;
    margin-right: auto;
}

.process{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 6.5%;
    padding-right: 6.5%;
}

.process1, .process2, .process3{
   width: 25%;
   display: flex;
   flex-direction: column;
   text-align: left;
}

.processtitle h1{
    font-size: 25px;
    border-bottom: 2.5px solid #897053;
    width: max-content;
    border-spacing: 27px;
    line-height: 50px;
}

.processt1, .processt2, .processt3{
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    align-content: center;
    display: flex;
    align-items: center;
    color: #897053;
    font-family: 'Vidaloka', serif;
}

.processtext1, .processtext2, .processtext3{
    letter-spacing: .05em;
    font-size: 16px;
    line-height: 28px;
}

/* Team container*/
.teamsection{
    display: flex;
    position: relative; 
    height: 800px;
    max-height: 800px;
    z-index: 100;
    background-color: #fff;
    margin-right: 7%;
    margin-left: 7%;
    max-width: 1500px;
    overflow: hidden;
}
.padding3{
    padding-left: 13%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-top: 15%;
    padding-bottom: 15%;
}

.teamimg{
    width: 100%;
}

.teamimg1{
    width: 50%;
    position: relative;
    overflow: hidden;
}

.team{
    width: 50%;
    position: relative;
    display: flex;
    margin-left:0px;
    margin-right: 0px;
    align-items: center;
}

.teamtext p{
    font-size: 18px;
    line-height: 30px;
    margin-top: 0;
    padding-right: 10%;
    letter-spacing: .05em;
    margin-bottom: 50px;  
}

.teambutton{
    position: relative;
    cursor: pointer;
    width: max-content;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .18em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);   
    line-height: 30px;
}

.teambutton :hover{
    letter-spacing: .40em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.teambutton ::after{
    display: flex;
    content: "";
    width: 40px;
    border-bottom: 2.5px solid #897053;
    padding-top: 10px;
    position: absolute;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.teambutton :hover::after{
    width: 120px;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.teambtn :hover{
    letter-spacing: .40em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.teambtn {
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);  
}

/* Contact container*/
.contactsection{
    display: flex;
    position: relative;  
    height: 600px;
    align-items: center;
    z-index: 1;
    padding-left: 7%;
    padding-right: 7%;
    background-image: url("assets/marble-white.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -100px;
}

.contacticon{
    width: 20%;
    position: absolute;
    left: 0;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
    min-width: 300px;
}
.contactpadding{
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.contacttitle{
    width: 50%;
}

.contacth1{
    padding-left: 13%;
}

p .contacttitle {
    margin: 100px;
}

.contacttext{
    width: 50%;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: .05em;
}

.contactp{
    padding-left: 13%;
    padding-right: 10%;
}

/* Footer container*/
footer{
    background-color: rgb(36, 70, 81);
    z-index: 1;
    position: relative;
    border-top: 2.5px solid #897053; 
    padding-left: 7%;
    padding-right: 7%;
    font-size: 14px;
}

.footer{
    justify-content: center;
    display: flex;
    border-right: 2.5px solid #897053;
    border-left: 2.5px solid #897053;
    height: 150px;
    border-bottom: 2.5px solid #897053;
}

.footersection1{
    width: 33.333%;
    color: #f2f2f2;
    flex-direction: column;
    display: flex;
    align-items: first baseline;
}

.footerblog{
    display: flex;
    text-align: left;
    letter-spacing: .18em;
    padding-left: 10%;
    align-items: center;
    height: 33.333%;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative;
}

.footerblog span{
    cursor: pointer;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.footerblog :hover{
    position: relative;
    letter-spacing: .40em;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.Weeklynewsletter{
    justify-content: center;
    width: 33.333%;
    color: #f2f2f2;
    text-transform: uppercase;
    border-right: 2.5px solid #897053;
    border-left: 2.5px solid #897053;
    letter-spacing: .18em;
}

.newslettertitle{
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

input{
    padding: 0px;
    overflow: visible;
    border: none;
}

.enteryouremail{
    width: 100%;
    text-align: center;
    background: none;
    color: #fff;
    height: 50%;
    transition: all .5s ease-in-out;
    background-color: unset;
    text-decoration: underline;
    font-size: 16px;
    letter-spacing: .2em;
}

.enteryouremail :hover{
    background-color: rgba(255, 255, 255, 0.384);
    transition: all .5s ease-in-out;
}

input.enteryouremail:focus{
    background-color: rgba(255, 255, 255, 0.801);
    transition: all .5s ease-in-out;
    color: rgb(0, 0, 0);
}
.subscribe{
    width: 100%;
    height: 100%;
    font-size: 16px;
}
    
.subscribebutton{
    width: 100%;
    justify-content: center;
    display: flex;
    text-transform: uppercase;
    letter-spacing: .18em;
    transition: letter-spacing .5s ease-in-out;
    position: relative;
    background-color: #897053;
    color: #fff;
    align-items: center;
    height: 50%;
}

.subscribebutton :hover{
    letter-spacing: .40em;
    transition: all .5s ease-in-out;
    position: relative;
    background-color: #725738;
}

.subscribebutton span{
    width: 100%;
    transition: all .5s ease-in-out;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footersection3{
    width: 33.333%;
    color: #f2f2f2;
    justify-content: center;
    display: flex;
    letter-spacing: .18em;
}

.footercopyright{
    font-size: 9px;
    color: #fff;
    justify-content: center;
    position: relative;
    display: flex;
    text-transform: lowercase;
    height: 50px;
    align-items: center;
    text-align: center;
}
.footercopyright p{
    margin: 5px
}

.footersection3{
    width: 33.333%;
    color: #f2f2f2;
    flex-direction: column;
    display: flex;
    align-items: first baseline;
}

.footercontact{
    display: flex;
    text-align: center;
    padding-left: 10%;
    align-items: center;
    height: 33.333%;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative; 
}

.footercontact :hover{
    position: relative;
    letter-spacing: .40em;
    transform: translateX(3px);
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.footercontact span{
    margin-right: 40px;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    cursor: pointer;
}
.footersocialmedia{
    display: flex;
    text-align: center;
    padding-left: 10%;
    align-items: center;
    height: 33.333%;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative; 
}
.footersocialmedia span{
    margin-right: 40px;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    cursor: pointer; 
}

.fa {
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

.fa:hover {
    opacity: 0.7;
    
  }
  
.fa-facebook {
    color: white;
  }
  
.fa-twitter {
    color: white;
    
  }

.fa-instagram {
    color: white;
  }  

.test01{
    display: flex;
    position: relative;
}



/* Responsive media*/

@media (min-width:1500px){
    .imgwidth2 img{
        width: 100%;
    }
}
@media (max-width:1430px){
    .servicessection{
        height: auto;
    }
}

@media (max-width: 1250px){
    .navwrapper{
        margin: 0px;
    }
}

@media (max-width:1150px){

    .projecttext p{
        padding-right: 50px;
    }
}

@media (min-width:1100px){
    .menubuttonborder{display: none;}
    .logodescription{
        display: none;
    }
}

@media (max-width: 1099px) {
    ul.menu li{
        display: none;
    }
    #menuToggle{
        display: block;
    }
    .projecttext p{
        padding-right: 100px;
        margin:10px 0px 10px 0px;}
        .projecttext h1{
        margin:20px 0px 20px 0px;
    }
    ul.menu{
        border-left: 0;
        width: unset;
    }
    .button1{
        display: none;
    }
    .logocontainer{
    border-left: 2.5px solid #897053;
    border-right: 2.5px solid #897053;
    width: 80%;
    }
}

@media (max-width:1110px){
    .fixedtext{
        display: none;
    }
    .heroGraphic{
        width:auto;
        height: 100%;
    }
    .Number{display: none;
    }
    .projectsection{
        height: 1000px;
        max-height: 1000px;
        display: none;
    }
    .overflow{display: block;
        height: 1000px;
    }
    .projecttext{
        width: 100%;
        justify-content: left;
    }
    .imgwidth {
        width: 100%;
        height: 800px;
    }
    .imagedescription{
        display: none;
    }
    .padding{
        padding: 4%;
    }  
    .projecttexth1{
        margin: 20px 0 20px 0px;
    } 
    .projectbutton{
        display: none;
    } 
    .projecttext p{
        display: none;
    }
    .imgwidth img {
        width: 100%;
    }
    .about{
        margin-top: 0;
    }
    .aboutpadding{
        padding: 8%;
    }
    .process{
        padding-left: 4%;
        padding-right: 4%;
    }
    .contacth1 {
        padding-left: 8%;
    }
    .slideshow-container{
        width: 100%;
    }
    .prev, .next{
        display: none;
    }
    h1{
        font-size: 70px;
    }
    .teamimg1{
        width: 100%;
        display: flex;
    }
    .teamsection{
        flex-direction: column;
        height: 1500px;
        max-height: 1500px;
    }
    .team{
        width: 100%;
    }
    .imgwidth2 img{
        width: 100%;
    }


@media (max-width:920px){
   
    .about{
        padding-bottom: 0; 
    }
}

@media (max-width:800px){

    .paddingtext{
        margin-left: 0px;
    }  
    .aboutbuttun{
        margin-left: 0px;
    }  
    .menubutton{
        right: 0;
        margin-right: 0;
        
    }
    h1{
        font-size: 60px;
    }

    ul.menu{
        justify-content: center;
    }
   
    .logocontainer{
        width: 80%;
    }
    .process{
        flex-direction: column;
    }
    .process1, .process2, .process3{
        width: 100%;
    }
    footer{
        padding: 0;
        
    }

}

@media (max-width: 850px){
    .heroimages{
        height: 800px;
    }

    .taglinewrapper{
        top: 25%;
        font-size: 19vw;
        flex-direction: column;
    }

    .tagline{
        margin: 0;
    }

    .taglineWord-1{
        margin: 10vh 0 0 0;
    }

    .logodescription{
        font-size: 16px;
    }

    .projectssection{
      display: inline-block;}
    
    .projecttext{
        width: 100%;}

    .projecttext h1{
        margin:20px 0px 20px 0px;
            }
  
    .imagedescription{
        writing-mode: horizontal-tb;
        top: 0;
        right: 0;
        margin-left: -30;
    }
    .imagesection  {
        width: 100%;
        overflow: hidden;
        height: 600px;
    }  
    .imagesection2{
        width: 100%;
        overflow: hidden;
        height: 400px;

    }
    .overflow img{
      max-height: none;
      min-width: none;
      height: auto;
  }
    .button1{display: none;}
    .fixedtext{
        top: -100px;
    }
    .numbertext{
        display: none;
    }
    .imagedescription{
        display:none ;
    }
    }

    @media (max-width:700px){
        .maxwidth{
            flex-direction: column;
        }
        .abouttitle{
            width: 100%;
        }
        .aboutpadding{
            padding: 4%;
        }
        .abouttext{
            width: 100%;
            padding-bottom: 8%;
        }
        .paddingtext{
            margin-left: 4%;
            margin-top: 0;
            margin-bottom: 4%;
        }
        .aboutbuttun{
            margin-left: 4%;
        }
        .overflow{
            height: 800px;
        }
        .projectsection{
            height: 800px;
        }
    }

    @media (max-width:600px){
        .LogofixedBG{
           max-width:300px;      
        }
        .fixedlogo{
            max-width: 300px;
        }
        .fixedlogodescription{
            font-size: 20px;
            line-height: 30px;
        }
    }
