* {
  position: relative;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  background-color: white;
  font-family: "Open Sans", sans-serif;
  min-width: 320px;
}

body {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  height: 55px;
}

.nav-contact-container {
  width: 38px;
  height: 38px;
  position: absolute;
  left: 5px;
  top: 8px;
  z-index: 1000;
}

.nav-icon-container {
  width: 100%;
  height: 100%;
}

.nav-icon-container img {
  width: 100%;
}

.nav-contact-list {
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  transition: transform 0.5s;
  top: 60px;
  z-index: 1000;
  transform-origin: top left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-contact-list-inner {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-contact-list-item {
  color: white;
  margin: 5px;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid white;
  height: 80px;
}

.nav-contact-list-icon {
  width: 40px;
  height: 40px;
}

.nav-contact-list-icon img {
  width: 100%;
}

.nav-contact-list-label {
  height: 20px;
  margin: 0;
  font-size: 14px;
}

.nav-contact-list.hidden {
  transform: scale(0%);
}

#nav-phone {
  background-color: rgba(48, 86, 235, 0.6705882353);
}

#nav-whatsapp {
  background-color: rgba(72, 211, 22, 0.568627451);
}

#nav-email {
  background-color: rgba(220, 135, 93, 0.6901960784);
}

.nav-grid {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  grid-template-rows: 55px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 55px;
}

.logo {
  width: 125px;
  height: 50px;
  color: white;
}

.logo svg {
  width: 100%;
  height: auto;
}

.logo-h2 {
  color: white;
  font-size: clamp(16px, 4dvw, 25px);
  margin: 0;
  margin-top: -10px;
  font-weight: 600;
}

.navbar .navigation {
  position: relative;
  top: 4px;
  right: 4px;
  width: auto;
  display: flex;
  flex-direction: column;
}

.menu-container {
  width: 100%;
  height: 40px;
}

.menu {
  width: 50px;
  display: flex;
  align-items: flex-start;
  height: 50px;
  justify-content: flex-start;
  z-index: 10000;
}

.menu ul {
  position: absolute;
  right: -49px;
  top: -25px;
  width: 100vw;
  list-style: none;
  padding: 0px;
  margin: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-300%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
}

.menu input:checked ~ ul {
  transform: none;
  padding: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.menu ul li {
  display: block;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 16px;
  width: 100%;
}

.menu ul li a:last-child {
  border-bottom: none;
}

.menu ul li a:hover {
  color: #d94a4c;
}

.hamburger {
  display: inline-block;
  position: relative;
  top: 21px;
}

.hamburger input {
  display: inline-block;
  width: 50px;
  height: 45px;
  position: absolute;
  top: -18px;
  left: 0px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
  margin: 0;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 5px;
  position: absolute;
  background: #ffffff;
  z-index: 1;
  transform-origin: 3px -1px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  left: 7px;
  top: -10px;
}

.hamburger span:first-child {
  top: 0px;
  transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  top: 10px;
}

.hamburger span:nth-last-child(3) {
  transform-origin: 0% 100%;
  top: 0px;
}

.hamburger input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -4px);
  background: white;
}

/*
* But let's hide the middle one.
*/
.hamburger input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
.hamburger input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0px, 0px);
}

.menu-h5 {
  color: white;
  font-weight: 100;
  font-size: 16px;
  position: absolute;
  left: 48px;
  top: -23px;
}

@media (min-width: 1058px) {
  .navbar .navigation {
    max-width: 100%;
    border: 0;
  }
  .hamburger {
    top: 0;
  }
  .hamburger input, .hamburger span {
    display: none;
  }
  .menu {
    width: auto;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: flex-end;
    align-items: center;
  }
  .menu ul {
    position: relative;
    top: 0;
    right: 2px;
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 20px;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    transform: translate(0, 0);
    background-color: unset;
    height: 40px;
    overflow: hidden;
    background-color: none;
  }
  .menu ul li {
    margin-right: 0px;
    width: 90px;
    text-align: center;
  }
  .menu ul li a {
    border-bottom: 0;
    font-weight: 400;
    color: white;
  }
  .menu ul li {
    display: inline;
  }
  .menu ul li a {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
  }
  .menu ul li a:hover {
    color: #d94a4c;
  }
  .menu-h5 {
    display: none;
  }
}
.card {
  padding: 10px;
  border: 1px solid #bbb;
  width: 100%;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 1;
}

.card.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card.nobg {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid white;
  padding-bottom: 80px;
}

.cta {
  margin-top: 37px;
}

.card-image-container {
  min-height: 100px;
}

.card-image {
  width: 100%;
  min-height: 100px;
}

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

.card-header h2, .card h2.no-image {
  font-weight: 400;
  color: #838383;
  font-size: 24px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-header h2::after {
  width: 200px;
  height: 4px;
  background-color: #ff9e06;
  position: absolute;
  left: calc(50% - 100px);
  right: auto;
  display: inline-block;
  content: "";
  bottom: -5px;
}

.card-header h2.single-underline::after {
  width: 80px;
  left: calc(50% - 40px);
}

.cta .card-header h3 {
  font-size: 18px;
  width: 200px;
  margin-top: 10px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 400;
  color: #346aae;
}

.card h2.no-image {
  font-size: 32px;
}

.card.no-color h2.no-image {
  color: #888;
}

.card-text, .card-link {
  width: 90%;
  margin-left: 5%;
}

.cta .card-text {
  width: 80%;
  margin-left: 10%;
}

.card-text p, .card-link p, .card-text li {
  color: #444;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
}

.nobg .card-text p {
  color: white;
}

.card.no-color .card-text p {
  color: #444;
}

.card-link p {
  font-size: 15px;
}

.card-link a {
  text-decoration: none;
  font-weight: 800;
  color: rgb(172, 104, 86);
  font-size: 15px;
}

.white-bg {
  color: #888 !important;
}

.card-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.card-cta-button {
  width: 200px;
  padding: 10px;
  background-color: #51a04a;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2666666667);
  text-align: center;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.card-cta-button.margintop {
  margin-top: 30px;
}

.card-cta-button.phone {
  background-color: #bc560c;
}

.card-cta-button.email {
  background-color: #0c6abc;
}

.cta-page {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-1 {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: scaleY(50%);
}

.page-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transform: scaleY(50%);
}

.cta-page-ontop {
  opacity: 1;
  transform: scaleY(100%);
}

.cta-cancel {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #888;
  color: #888;
  position: absolute;
  top: -133px;
  right: -16px;
  z-index: 10001;
  background-color: white;
}

.form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-bottom: 80px;
}

.form-input-group {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.form-input-group.important {
  display: none;
}

.form-input-label {
  width: 100%;
  color: #555;
  font-weight: 400;
}

.form-input-text {
  width: 100%;
  height: 40px;
  margin-top: 10px;
}

.form-input-textarea {
  width: 100%;
  height: 200px;
}

.form-input-group .btn {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(41, 97, 27);
  color: white;
  border: none;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3333333333);
}

.margin-top-80px {
  margin-top: 80px;
}

.margin-bottom-80px {
  margin-bottom: 80px;
}

.fixed-width {
  width: 220px;
}

.form .important {
  display: none;
}

footer {
  width: 100%;
  margin-top: 120px;
  background-color: #505265;
  color: white;
  padding-top: 40px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer li {
  height: 30px;
}

.xe3v8dz {
  fill: white;
}

.contact-block {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-block-header {
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  margin-top: 68px;
  width: 100%;
}

.buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 660px;
  justify-content: space-around;
  margin-top: 40px;
}

.buttons .btn {
  display: flex;
  width: 200px;
  height: 60px;
  background-color: #ff9e06;
  border-radius: 10px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  color: white;
  font-family: "Raleway", sans-serif;
  border: 1px solid white;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3333333333);
}

.buttons.max-width {
  width: 220px;
}

.btn.whatsapp {
  background-color: #25d366;
}

.btn.email {
  background-color: #2da3af;
}

.btn .icon {
  width: 32px;
  margin-right: 6px;
}

.btn .icon img {
  width: 100%;
}

.cta-action .btn {
  margin-bottom: 22px;
}

/* @use 'cta';

@use 'contactblock';
@use 'table'; */
.hero {
  min-height: 500px;
}

.container, section, .row, .hero-image, .hero-image img {
  width: 100%;
}

.extra-top-bottom {
  padding-top: 95px;
  padding-bottom: 100px;
}

.container.solid {
  background-color: #505265;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row.stretch {
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}

.three-cols, .two-cols, .multi-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.col {
  flex: 1 1 320px;
  padding: 10px;
  max-width: 500px;
  margin-bottom: 40px;
}

.col-sm {
  flex: 1 1 250px;
  padding: 10px;
  max-width: 340px;
  margin-bottom: 40px;
}

.col .orange-cube {
  width: 30px;
  height: 30px;
  background-color: #ff9e06;
  position: absolute;
  top: -10px;
  left: -10px;
}

.col .orange-cube.cube-2 {
  top: unset;
  left: unset;
  bottom: -10px;
  right: -10px;
}

.col .number-block {
  width: 55px;
  height: 55px;
  position: absolute;
  left: 1px;
  top: 1px;
  border-radius: 100%;
  background-color: rgba(255, 158, 6, 0.8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  font-size: 43px;
}

.col .number-block p {
  margin: 0;
  padding: 0;
  margin-top: -11px;
}

.hero {
  align-items: stretch;
  margin-bottom: 100px;
}

.hero.grid {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 100%;
  grid-template-areas: "row1" "row2" "row3";
}

.hero-section-1 {
  background: url(../images/nutec/nutec-wendy-houses_0009.jpg) no-repeat center left;
  background-size: cover;
  max-height: 50vh;
  grid-area: row1;
  padding-top: 80%;
}

.hero-section-1.nutec-bg {
  background: url(../images/nutec/nutec-wendy-houses_0012.jpg) no-repeat center left;
  background-size: cover;
}

.hero-section-1.wooden-bg {
  background: url(../images/wooden/wooden-wendy-houses_0001.jpg) no-repeat center center;
  background-size: cover;
}

.hero-section-2 {
  padding: 10px;
  grid-area: row3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta {
  width: 300px;
}

.hero-section-3 {
  margin-top: -22px;
  grid-area: row2;
  min-height: 300px;
  padding-left: 7px;
  padding-right: 7px;
}

.hero-section-3-inner {
  background-color: rgba(255, 255, 255, 0.7333333333);
  padding: 26px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section-header {
  display: none;
}

.hero-h1 {
  margin: 0px;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
}

.hero-blurb {
  font-size: 16px;
  font-weight: 400;
  max-width: 550px;
}

.hero-image-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  max-width: 750px;
}

.hero-image-bar-img-cont {
  width: 30%;
}

.hero-image-bar-img {
  width: 100%;
}

.triple-col, .double-col {
  flex: 1 1 33%;
  min-width: 320px;
  max-width: 550px;
  padding: 20px;
}

.center-text {
  text-align: center;
}

.h1 {
  font-weight: 400;
  color: #565a67;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  margin-top: 80px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.solid .h1 {
  color: white;
}

.h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  width: 90%;
  font-size: 24px;
  color: #1b1a1c;
  width: 202px;
  margin-top: 0;
}

.below-fold.solid-bg {
  background-color: #674a4a;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-top: 100px;
}

.below-fold .h2 {
  font-size: 40px;
  margin-top: 80px;
  width: 100%;
  padding: 10px;
  color: #5d5960;
  text-align: center;
  margin-bottom: 0px;
}

.below-fold.solid-bg .h2 {
  color: white;
}

.below-fold .h4 {
  font-weight: 400;
  color: #444;
  text-align: center;
}

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

.hero-content .h1 {
  width: 100%;
  text-align: center;
  margin-top: -23vw;
  font-size: 9.3vw;
  line-height: 1.2;
  color: #c9c6e6;
  background: rgb(48, 44, 44);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4666666667) 45%, rgba(0, 0, 0, 0) 100%);
}

.hero-content .h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  width: 90%;
  font-size: 23px;
  color: #1b1a1c;
  margin-top: -6px;
  text-align: center;
  margin-bottom: 16px;
}

/*.dark-card {
    padding: 20px;
    background-color: #33435a;
    color: white;
    font-weight: 100;
    width: 80%;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    box-shadow: 6px 6px 10px #0005;
}*/
.white-card {
  padding: 20px;
  color: #505265;
  font-weight: 400;
  width: 80%;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3333333333);
  border: 1px solid #a4b2c4;
  font-family: "Raleway", sans-serif;
  margin-bottom: 60px;
}

.spacer {
  margin-top: 200px;
}

.large-image-container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: 0 0;
  transform: scale(0%);
  transition: all 0.5s;
  z-index: 10000000;
}

.large-image-inner {
  width: 100%;
  height: 100%;
  max-width: 80%;
  max-height: 80vh;
  background-color: white;
  padding: 10px;
}

.large-image-close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444;
  background-color: white;
  border: 2px solid #444;
  border-radius: 100%;
}

.large-image-container.open-large-image {
  transform: scale(100%);
}

.large-image-img-cont {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.large-image {
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 650px) {
  .hero.grid {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "row1a row1b" "row2 row2";
  }
  .hero-section-1 {
    grid-area: row1a-start/row1a-start/row1b-end/row1b-end;
    padding-top: unset;
    height: 80vh;
    min-height: 800px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .hero-section-2 {
    grid-area: row1b;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-section-3 {
    margin-top: 50px;
    grid-area: row2;
  }
  .hero-section-3-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-section-header {
    display: inline-block;
    color: white;
    margin-left: 20px;
    width: 280px;
  }
  .hero-section-header .hero-section-header-h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 55px;
    text-transform: uppercase;
    text-shadow: -1px -1px 0 var(--shadow), 1px -1px 0 var(--shadow), -1px 1px 0 var(--shadow), 1px 1px 0 var(--shadow);
    --shadow: #b9a8a8;
  }
  .hero-h1 {
    font-size: 36px;
    max-width: 705px;
  }
}
@media (min-width: 640px) {
  .hero-content .h1 {
    margin-top: -11.5vw;
    font-size: 4.6vw;
  }
}
@media (min-width: 1104px) {
  .hero-content .h1 {
    font-size: 51px;
    margin-top: -125px;
  }
  .hero-section-header {
    margin-left: 90px;
    width: 380px;
  }
  .hero-section-header .hero-section-header-h1 {
    font-size: 72px;
    line-height: 65px;
  }
}/*# sourceMappingURL=styles.css.map */