/* ========== google fonts  ==========*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500&display=swap");
/* === font-family: 'Oswald', sans-serif; === */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap");
/*  font-family: 'Roboto', sans-serif;  */
@import url("https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap");
/*  font-family: 'Oranienbaum', serif;  */
/*========== end google fonts  ==========*/
/* ========== reset ===========*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*========== end reset ==========*/
/*========== sass variables  ==========*/
/*========== sass variables  ==========*/
/*========== sass variables  ==========*/
/*---------- fonts variables ----- */
/*---------- texts variables ----- */
/*---------- background variables ----- */
/*---------- margins and padding ----- */
/*========== end sass variables  ==========*/
/*========== page loader  ==========*/
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2c2e35;
}

.loader-logo {
  display: block;
  width: 162px;
  height: 247px;
}

.loader .loader-text-block {
  color: #bababa;
}

.loader .loader-text-block p {
  text-align: center;
  font-size: 0.9rem;
  font-family: "Oranienbaum", serif;
  text-transform: uppercase;
}

.loader .loader-text-block p span {
  display: block;
  font-size: 1.2rem;
}

.loader.hidden {
  -webkit-animation: page-loader-fade-out 1.5s forwards;
          animation: page-loader-fade-out 1.5s forwards;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes page-loader-fade-out {
  100% {
    opacity: 0.95;
    visibility: hidden;
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
  }
}

@keyframes page-loader-fade-out {
  100% {
    opacity: 0.95;
    visibility: hidden;
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
  }
}

/*========== end page loader  ==========*/
/*========== back to top button  ==========*/
#back-to-top {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
}

.button-up {
  position: relative;
  padding: 5px;
  margin: 30px auto;
  background: #2c2e35;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.button-up:hover {
  background: #000000;
}

.button-up::after {
  content: "";
  position: absolute;
  left: 11px;
  z-index: 11;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.back-to-top-fade-in {
  -webkit-animation: backtotopfadein 0.4s both;
          animation: backtotopfadein 0.4s both;
}

@-webkit-keyframes backtotopfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes backtotopfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.back-to-top-fade-out {
  -webkit-animation: backtotopfadeout 0.4s both;
          animation: backtotopfadeout 0.4s both;
}

@-webkit-keyframes backtotopfadeout {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes backtotopfadeout {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*========== end back to top button  ==========*/
/* ========== universal ==========*/
html,
body {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #ffffff;
  background-repeat: repeat;
  font-family: "Roboto", sans-serif;
  color: #3d3e3e;
  font-size: 18px;
  font-weight: 300;
}

h1 {
  font-size: 2.6rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
  letter-spacing: -0.09rem;
  color: #2c2e35;
  font-family: "Oranienbaum", serif;
  text-transform: uppercase;
  font-weight: 400;
}

h1::before {
  content: "";
  width: 4rem;
  height: 2px;
  display: block;
  background-color: #a87c4d;
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.777rem;
  line-height: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #2c2e35;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #2c2e35;
}

h4 {
  font-weight: 300;
  font-size: 1.111rem;
  line-height: 1.5rem;
  margin: 4rem 0 2rem 0;
  font-family: "Oswald", sans-serif;
  color: #3d3e3e;
  text-transform: uppercase;
}

h5 {
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #bc9147;
  margin-bottom: 2rem;
}

h5:after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: #bc9147;
  margin-left: 20px;
}

h6 {
  color: #042446;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 0.8rem;
  margin-bottom: 0.3rem;
}

p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
}

.standard-text-wrapper {
  padding: 10rem 8vw;
}

button {
  margin-top: 2rem;
}

.cta-link {
  margin-top: 1rem;
}

.cta {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  font-family: "Oswald", sans-serif;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 14px 28px;
  cursor: pointer;
}

.cta-dark {
  border: 2px solid #2c2e35;
  color: #2c2e35;
  background-color: transparent;
}

.cta-dark:hover {
  background-color: #2c2e35;
  color: #bababa;
}

.cta-light {
  border: 2px solid #56575a;
  color: #bababa;
  background-color: transparent;
}

.cta-light:hover {
  background-color: #bababa;
  border: 2px solid #bababa;
  color: #2c2e35;
}

.cta-thumb {
  margin-top: 0;
  position: absolute;
  top: 1rem;
  right: 2rem;
  border: 1px solid #2c2e35;
  text-transform: capitalize;
  font-weight: 100;
  font-size: 2rem;
  line-height: 1rem;
  font-family: "Oranienbaum", serif;
  letter-spacing: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 5px 5px;
  cursor: pointer;
}

/* ========== end universal ==========*/
/* ========== header ==========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 25vh;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 10000;
}

header.sticky {
  height: 80px;
}

#logo-section {
  width: 30vw;
  height: 100%;
  z-index: 10000;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
  position: relative;
  padding-left: 5vw;
}

#logo-section.active {
  height: 100%;
}

.main-logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-logo img {
  width: 180px;
}

.main-logo.main-logo-fade-out {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.secondary-logo {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.secondary-logo img {
  width: 180px;
}

.secondary-logo.secondary-logo-fade-in {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5vw;
}

.main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-menu ul li a {
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  margin-left: 2vw;
  font-family: "Oranienbaum", serif;
  text-transform: uppercase;
  color: #2c2e35;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: #a87c4d;
}

/* ---------- burger navigation ---------- */
#toggle {
  position: absolute;
  top: 50%;
  right: 5vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.nav-toggle {
  overflow: hidden;
  width: 1.5rem;
  height: 1.5em;
  position: fixed;
  top: 2.5rem;
  right: 1.5rem;
  z-index: 5500;
  -webkit-transition: opacity 0.25s cubic-bezier(0.6, 0.08, 0.06, 0.6);
  transition: opacity 0.25s cubic-bezier(0.6, 0.08, 0.06, 0.6);
}

.nav-toggle:hover {
  opacity: 0.8;
}

.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #2c2e35;
  content: "";
  height: 1px;
  width: 100%;
  margin: 0 auto;
}

.nav-toggle .nav-toggle-bar::after {
  width: 60%;
  margin-left: 40%;
}

.nav-toggle .nav-toggle-bar::before {
  width: 100%;
}

.nav-toggle .nav-toggle-bar {
  margin-top: 0;
}

.nav-toggle .nav-toggle-bar::after {
  margin-top: 7px;
}

.nav-toggle .nav-toggle-bar::before {
  margin-top: -7px;
}

.nav-toggle.expanded .nav-toggle-bar {
  background: transparent;
}

.nav-toggle.expanded .nav-toggle-bar::after,
.nav-toggle.expanded .nav-toggle-bar::before {
  margin-top: 0;
  background: #ffffff;
}

.nav-toggle.expanded .nav-toggle-bar::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
  margin-left: 0;
}

.nav-toggle.expanded .nav-toggle-bar::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
}

.secondary-links {
  display: none;
}

.nav-text-block {
  display: none;
}

.main-menu .secondary-links a {
  display: block;
  opacity: 1;
  color: #bababa;
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 1vh;
}

.main-menu .secondary-links a span {
  display: block;
  font-weight: 400;
}

.main-menu .nav-text-block p {
  color: #858585;
  font-size: 0.7rem;
  line-height: 1.1rem;
}

/* ========== end header ==========*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
  to {
    opacity: 1;
  }
}

.fade-in-element {
  -webkit-animation: fade-in 1s;
          animation: fade-in 1s;
}

.object-hidden {
  opacity: 0;
}

/* ========== hero section ==========*/
.hero {
  width: 95vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 10vh;
}

.hero-banner {
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: hero-slide-down 1s cubic-bezier(0.6, 0.08, 0.06, 0.6) forwards;
          animation: hero-slide-down 1s cubic-bezier(0.6, 0.08, 0.06, 0.6) forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  position: relative;
  background-color: #0a2b3d;
}

@-webkit-keyframes hero-slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hero-slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hero-caption-box {
  width: auto;
  height: auto;
  padding: 2rem 8vw 0 8vw;
  background-color: #e3e3e3;
  z-index: 10;
  position: absolute;
  left: 0;
  bottom: 0;
}

.hero-caption-text {
  color: #2c2e35;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.222rem;
  line-height: 1.6rem;
  max-width: 265px;
}

/* ========== hero section slider ==========*/
.hero__slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.hero__slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-animation-name: backgroundchangeFadeInOut;
          animation-name: backgroundchangeFadeInOut;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.08, 0.06, 0.6);
          animation-timing-function: cubic-bezier(0.6, 0.08, 0.06, 0.6);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(1) {
  background: url(../images/bonhill_6.jpg) no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(2) {
  background: url(../images/gayton_2.jpg) no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(3) {
  background: url(../images/linda-flora_3.jpg) no-repeat center top;
  background-size: cover;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(4) {
  background: url(../images/norman_1.jpg) no-repeat center top;
  background-size: cover;
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(5) {
  background: url(../images/pavia_4.JPG) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(6) {
  background: url(../images/saltair_3.jpg) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

.hero__slider--projects .hero__slider-slide:nth-of-type(7) {
  background: url(../images/gloaming-way_8.jpg) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(1) {
  background: url(../images/linda-flora_1.jpg) no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(2) {
  background: url(../images/gayton_1.jpg) no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(3) {
  background: url(../images/bonhill_1.jpg) no-repeat center top;
  background-size: cover;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(4) {
  background: url(../images/pavia_1.jpg) no-repeat center top;
  background-size: cover;
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(5) {
  background: url(../images/glenroy_1.jpg) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(6) {
  background: url(../images/saltair_1.jpg) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

.hero__slider--home .hero__slider-slide:nth-of-type(7) {
  background: url(../images/gloaming-way_2.jpg) no-repeat center bottom;
  background-size: cover;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@-webkit-keyframes backgroundchangeFadeInOut {
  0% {
    opacity: 0;
  }
  7.14% {
    opacity: 1;
  }
  21.42% {
    opacity: 1;
  }
  28.57% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes backgroundchangeFadeInOut {
  0% {
    opacity: 0;
  }
  7.14% {
    opacity: 1;
  }
  21.42% {
    opacity: 1;
  }
  28.57% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ========== end hero section slider ==========*/
/* ========== hero section static ==========*/
.hero__static {
  width: 100%;
  height: 100%;
  background-position: center center;
}

.hero__static--services {
  background: url(../images/services.jpg) no-repeat;
  background-size: cover;
}

.hero__static--structural-engineering {
  background: url(../images/structural.jpg) no-repeat;
  background-size: cover;
}

.hero__static--civil-engineering {
  background: url(../images/services-civil-engineering.jpg) no-repeat;
  background-size: cover;
}

.hero__static--title-24-services {
  background: url(../images/services-title24.jpg) no-repeat;
  background-size: cover;
}

.hero__static--seismic-retrofitting {
  background: url(../images/services-seismic.jpg) no-repeat;
  background-size: cover;
}

.hero__static--architectural-services {
  background: url(../images/services-architectural-drafting.jpg) no-repeat;
  background-size: cover;
}

.hero__static--careers {
  background: url(../images/careers.jpg) no-repeat;
  background-size: cover;
}

.hero__static--contact {
  background: url(../images/contact.jpg) no-repeat;
  background-size: cover;
}

.hero__static--modern-project-01 {
  background: url(../images/linda-flora_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--modern-project-02 {
  background: url(../images/gayton_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--modern-project-03 {
  background: url(../images/beloit-ave_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--modern-project-04 {
  background: url(../images/gloaming-way_13.jpg) no-repeat;
  background-size: cover;
}

.hero__static--modern-project-05 {
  background: url(../images/westgate_2.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-01 {
  background: url(../images/bonhill_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-02 {
  background: url(../images/norman_4.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-03 {
  background: url(../images/glenroy_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-04 {
  background: url(../images/saltair_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-05 {
  background: url(../images/pavia_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--traditional-project-06 {
  background: url(../images/19th-st_1.jpg) no-repeat;
  background-size: cover;
}

.hero__static--retro-fit-01 {
  background: url(../images/3509-Mentone-Avenue-01.jpg) no-repeat;
  background-size: cover;
}

.hero__static--retro-fit-02 {
  background: url(../images/5453-Kester-Avenue-01.jpg) no-repeat;
  background-size: cover;
}

.hero__static--retro-fit-03 {
  background: url(../images/3515-Mentone-Avenue-01.jpg) no-repeat;
  background-size: cover;
}

.hero__static--retro-fit-04 {
  background: url(../images/1324-N-Fuller-Avenue-01.jpg) no-repeat;
  background-size: cover;
}

.hero__static--architecture-01 {
  background: url(../images/3600-McLaughlin-01.jpg) no-repeat;
  background-size: cover;
}

.hero__static {
  background-position: center center;
}

/* ========== end hero section static ==========*/
/* ========== main section ==========*/
.main-section {
  width: 95vw;
  height: auto;
  background-color: #e3e3e3;
  padding: 10rem 8vw;
}

.main-section__text-block {
  width: 80%;
  max-width: 700px;
}

/* ========== end main section ==========*/
/* ========== standard section ==========*/
.standard-section {
  width: 95vw;
  height: auto;
  background-color: #efeded;
}

.standard-text-block {
  max-width: 600px;
}

/* ========== end standard section ==========*/
/* ========== structural engineering section ==========*/
.home-engineering {
  width: 95vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-engineering__image {
  width: 50%;
  min-height: 100vh;
  background: url(../images/linda-flora_7.jpg) no-repeat;
  background-size: cover;
}

.home-engineering__text {
  width: 50%;
  height: auto;
  background-color: #efeded;
}

.home-engineering__text .cta-link {
  margin-top: 3rem;
}

/* ========== end structural engineering section ==========*/
/* ============ footer  =============== */
footer {
  width: 95vw;
  height: auto;
  margin-bottom: 5vw;
}

.footer-wrapper {
  width: 100%;
  height: auto;
  background-color: #2c2e35;
  padding: 10rem 8vw 5rem 8vw;
}

.footer-title {
  width: 100%;
  height: auto;
  padding-bottom: 5rem;
}

.footer-title h2 {
  color: #bababa;
  font-family: "Oranienbaum", serif;
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

.footer-text-container {
  width: 100%;
  height: auto;
}

.footer-contact-block {
  width: 70%;
  float: left;
}

.footer-contact-list {
  width: 50%;
  height: auto;
  float: left;
}

.footer-contact-list-item,
.footer-contact-list-item a {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #b1b1b1;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.footer-contact-list-item a:hover {
  color: #a87c4d;
}

.footer-contact-list-item {
  margin-bottom: 2rem;
}

.footer-contact-list-item span {
  font-size: 0.7rem;
  line-height: 0.9rem;
  margin-bottom: 0.3rem;
  display: block;
  color: #a87c4d;
}

.footer-social-block {
  width: 30%;
  float: right;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-logo img {
  width: 150px;
  opacity: 0.3;
}

.social-button {
  margin-right: 1rem;
}

.social-button a button {
  min-width: 150px;
}

.disclaimer-box {
  width: 100%;
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.copy-right p,
.design-by a {
  font-size: 0.75rem;
  line-height: 0.9rem;
  display: block;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #bababa;
}

.design-by a::before {
  content: "";
  width: 2rem;
  height: 2px;
  display: block;
  background-color: #a87c4d;
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.design-by a:hover {
  color: #a87c4d;
}

.contact-map {
  width: 95vw;
  height: 500px;
  position: relative;
  background-color: #39270f;
  overflow: hidden;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}

/* ============ end footer  =============== */
/* ============ thumb gallery  =============== */
.thumbs-gallery {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2rem;
}

.thumbs-gallery li {
  width: calc(100% / 3 - 0.5rem);
  margin-bottom: 1rem;
  background-color: #e2dfdf;
  margin: 0 0.5rem 0.5rem 0;
}

.thumbs-gallery li a:hover .project-thumb-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.thumbs-gallery li .project-thumb-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.thumbs-gallery li .project-thumb-image img {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.thumbs-gallery li .project-thumb-info {
  width: 100%;
  height: auto;
  padding: 1rem 2rem;
  position: relative;
}

.thumb-project-location {
  font-size: 0.8rem;
  max-width: 300px;
  line-height: 0.9rem;
  color: #2c2e35;
}

/* ============ end thumb gallery  =============== */
/* ============ services page  =============== */
.service-list {
  margin: 2rem 0;
  max-width: 400px;
}

.service-list li {
  color: #a87c4d;
  margin-bottom: 1rem;
}

/* ============ end services page  =============== */
/* ============ career page  =============== */
.accordion {
  width: 70vw;
}

.accordion-item {
  background-color: #efeff0;
  margin: 1rem 0;
}

.accordion-item-header {
  padding: 1rem 3rem;
  line-height: 1.25rem;
  height: 6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #2c2e35;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-item-header:hover {
  background-color: #151619;
}

.accordion-item-header h3 {
  margin-bottom: 0;
  color: white;
}

.accordion-item-header p {
  display: inline-block;
  margin-left: 6rem;
  margin-bottom: 0;
  color: white;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  font-weight: 200;
  position: absolute;
  right: 3rem;
  color: white;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 4rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.accordion-item-body-content p {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  max-width: 600px;
  color: #3d3e3e;
}

/* ============ end career page  =============== */
/* ============ project page  =============== */
.project-info-list {
  width: 100%;
  height: auto;
}

.project-info-list-item,
.project-info-list-item a {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #3d3e3e;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.project-info-list-item a:hover {
  color: #a87c4d;
}

.project-info-list-item {
  margin-bottom: 2rem;
}

.project-info-list-item span {
  font-size: 0.85rem;
  line-height: 0.9rem;
  display: block;
  color: #8c8c8c;
}

.project-gallery {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: white;
  margin-bottom: 3rem;
}

.project-gallery li {
  margin-bottom: 1rem;
  width: 100%;
}

.project-gallery li.half-col {
  width: 50%;
}

.project-gallery li.half-col:nth-of-type(odd) {
  margin-left: auto;
}

.project-gallery li img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.projects-nav {
  width: 75vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.project-previous-btn {
  margin-right: 5px;
}

.project-next-btn {
  margin-left: 5px;
}

@-webkit-keyframes project-image-fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8, 0.8);
            transform: scale(0.8, 0.8);
  }
  to {
    opacity: 1;
  }
}

@keyframes project-image-fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8, 0.8);
            transform: scale(0.8, 0.8);
  }
  to {
    opacity: 1;
  }
}

.project-image-resize-fade {
  -webkit-animation: project-image-fade-in 1.3s cubic-bezier(0.6, 0.08, 0.06, 0.6);
          animation: project-image-fade-in 1.3s cubic-bezier(0.6, 0.08, 0.06, 0.6);
}

.project-image-hidden {
  opacity: 0;
}

/* ============ end project page  =============== */
/* ============ media querries =============== */
/* ============ media querries =============== */
/* ============ media querries =============== */
/* ============ media querries =============== */
@media (min-width: 721px) and (max-width: 1112px) {
  .thumbs-gallery li {
    width: calc(100% / 2 - 0.5rem);
    margin-bottom: 1rem;
    background-color: #e2dfdf;
    margin: 0 0.5rem 0.5rem 0;
  }
}

@media (max-width: 720px) {
  #logo-section {
    padding-left: 10vw;
  }
  .standard-text-wrapper {
    padding: 5rem 8vw;
  }
  h1 {
    font-size: 2rem;
    line-height: 2.1rem;
    margin-bottom: 2rem;
    letter-spacing: -0.04rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.2rem;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    color: #2c2e35;
  }
  .cta {
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.05rem;
    padding: 10px 16px;
  }
  .cta-thumb {
    margin-top: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid #2c2e35;
    text-transform: capitalize;
    font-weight: 100;
    font-size: 1.2rem;
    line-height: 0.7rem;
    font-family: "Oranienbaum", serif;
    letter-spacing: 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    padding: 5px 5px;
    cursor: pointer;
  }
  #toggle {
    position: absolute;
    top: 50%;
    right: 10vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    z-index: 23000;
  }
  .main-menu {
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #2c2e35;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    padding-top: 10vh;
    padding-left: 8vw;
    z-index: 20000;
  }
  .main-menu.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .main-menu ul {
    display: block;
  }
  .main-menu ul li a {
    color: #858585;
    letter-spacing: -0.05rem;
    display: block;
    opacity: 1;
    font-size: 2rem;
    line-height: 2.2rem;
    text-transform: uppercase;
    -webkit-transition: color 0.3s cubic-bezier(0.6, 0.08, 0.06, 0.6);
    transition: color 0.3s cubic-bezier(0.6, 0.08, 0.06, 0.6);
  }
  .secondary-links {
    display: block;
    margin-top: 1rem;
  }
  .nav-text-block {
    display: none;
    width: 70vw;
    height: auto;
    opacity: 1;
    position: absolute;
    bottom: 3rem;
    left: 10vw;
  }
  /* ========== mobile hero section ==========*/
  .hero {
    width: 90vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 10vh;
  }
  .hero-caption-box {
    padding: 8vw 8vw 0 8vw;
  }
  .hero-caption-text {
    font-size: 0.75rem;
    line-height: 1rem;
    max-width: 265px;
  }
  /* ========== main section ==========*/
  .main-section {
    width: 90vw;
    height: auto;
    background-color: #e3e3e3;
    padding: 5rem 8vw;
  }
  .main-section__text-block {
    width: 100%;
  }
  /* ========== standard section ==========*/
  .standard-section {
    width: 90vw;
  }
  /* ========== structural engineering section ==========*/
  .home-engineering {
    width: 90vw;
    height: auto;
    display: block;
  }
  .home-engineering__image {
    width: 100%;
    min-height: 100vh;
    background: url(../images/linda-flora_7.jpg) no-repeat;
    background-size: cover;
  }
  .home-engineering__text {
    width: 100%;
    height: auto;
    background-color: #efeded;
  }
  .home-engineering__text .cta-link {
    margin-top: 3rem;
  }
  /* ============ footer  =============== */
  footer {
    width: 90vw;
    margin-bottom: 10vw;
  }
  .footer-wrapper {
    padding: 5rem 8vw 5rem 8vw;
  }
  .footer-title h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .footer-title h2 span {
    display: block;
  }
  .footer-text-container {
    width: 100%;
    height: auto;
    display: block;
  }
  .footer-contact-block {
    width: 100%;
  }
  .footer-contact-list {
    width: 100%;
    margin-bottom: 4rem;
  }
  .footer-contact-list-item {
    margin-bottom: 1rem;
  }
  .footer-social-block {
    width: 100%;
    padding-left: 0%;
  }
  .social-media-buttons {
    display: block;
  }
  .social-button {
    margin-top: -1rem;
  }
  .disclaimer-box {
    margin-top: 5rem;
    display: block;
  }
  .copy-right p span {
    display: block;
  }
  .design-by a {
    margin-top: 3rem;
  }
  .contact-map {
    width: 90vw;
  }
  .thumbs-gallery {
    width: 100%;
    height: auto;
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 2rem;
  }
  .thumbs-gallery li {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #e2dfdf;
    margin: 0 0.5rem 0.5rem 0;
  }
  .thumbs-gallery li .project-thumb-info {
    width: 100%;
    height: auto;
    padding: 1rem 1rem;
    position: relative;
  }
  .thumb-project-location {
    font-size: 0.7rem;
    max-width: 300px;
    line-height: 0.9rem;
    color: #2c2e35;
  }
  .project-gallery li.half-col {
    width: 100%;
  }
  .project-gallery li.half-col:nth-of-type(odd) {
    margin-left: auto;
  }
  .accordion {
    width: 100%;
  }
  .accordion-item-header {
    padding: 1rem 1rem;
    line-height: 1.25rem;
    height: 6rem;
    display: block;
  }
  .accordion-item-header p {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
    color: white;
    font-size: 0.7rem;
  }
  .accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    font-weight: 100;
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: white;
  }
  .accordion-item-body-content {
    padding: 0.5rem;
  }
}
/*# sourceMappingURL=main.css.map */