@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotateHeaderIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* to have to change only one font-size we use 10px (for easier calcualtion) on the root of the document:
all other sizes used in the document will be converted into rem */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

::selection {
  background-color: #f7a052;
  color: #ffffff;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Improves performance */
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 62.5%;
  line-height: 1.7;
  color: #ffffff;
  background-color: #071322;
}
body#Contact {
  background-color: #ffffff;
  color: #071322;
}
body#Contact h3 {
  color: #f9a01b;
}
body#Contact .header {
  background-color: #566c7b;
}

.heading-primary {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: rotateHeaderIn;
  animation-duration: 3s;
  /*
  animation-delay: 3s;
  animation-iteration-count: 3;
  animation-timing-function: ease-in;
  */
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.7rem;
  animation-name: moveInRight;
  animation-duration: 2s;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #f9a01b, #f59432);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(7, 19, 34, 0.2);
}

.heading-tertiary {
  font-size: 62.5%;
  font-weight: 700;
  text-transform: uppercase;
}

.paragraph {
  font-size: 62.5%;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.8rem;
}

h5 {
  font-size: 2.3rem;
}

a {
  text-decoration: none;
}

p {
  font-size: 18px;
}

.social {
  font-size: 20px;
}
.social_icons {
  padding-top: 1rem;
}
.social_icon {
  height: 30px;
}

button {
  border: none; /* Removes the grey border */
  background-color: transparent; /* Removes default background */
  outline: none; /* Removes focus outline */
}

/* For removing the outline/box-shadow on click/focus */
button:focus {
  outline: none;
  box-shadow: none;
}

li {
  list-style: none;
  font-size: 25px;
}

.asterisk {
  color: #f9a01b;
}

.cta {
  font-size: 24px;
  padding: 1rem 1.5rem;
  background-color: #f9a01b;
  width: fit-content;
  margin-top: 5rem;
}
.cta a {
  color: #ffffff;
}
.cta-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header {
  background-color: transparent;
  position: sticky;
  top: 0;
  height: 148px;
  z-index: 1000;
}
.header-page {
  background-color: rgba(255, 255, 255, 0.8);
}
.header {
  transition: background-color 0.4s ease-in-out;
}
.header.scrolled {
  background-color: #071322;
  opacity: 0.98;
}
.header_logo {
  z-index: 9999;
  position: fixed;
  top: 0;
}
.header_logo img {
  width: 115px;
  height: 145px;
  margin-left: 40px;
}

.blue-gradient {
  background: radial-gradient(at 75% 0%, #aebcc7 0%, #788b9b, #2f4254, #071322 90%);
  background-color: rgba(0, 0, 0, 0);
  background-color: #2a3b4c;
}

.blue-linear-gradient {
  background: linear-gradient(to right, #071322, #071322, #282e33);
  background-color: rgba(0, 0, 0, 0);
  background-color: #2a3b4c;
}

.brown-gradient {
  background: radial-gradient(at 45% 0%, #ac9576 0%, #816444, #51412f, #422b13, #20130c 90%);
  /* Fallback for older browsers (optional, but good practice) */
  background-color: #51412f;
}

.brown-card-gradient {
  background: linear-gradient(to right, #422b13 0%, #51412f, #816444, #ac9576 90%);
  border: 0px solid transparent; /* Set a transparent border */
  border-radius: 25px;
  /* Fallback for older browsers (optional, but good practice) */
  background-color: #51412f;
}
.brown-card-border-gradient {
  border: 3px solid transparent; /* Set a transparent border */
  border-radius: 25px; /* Apply rounded corners */
  /* Two background layers: the top one is the element's solid background,
  the bottom one is the gradient for the border */
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom right, #ffffff, #816444, #c9bcae, #ffffff, #816444, #ffffff) border-box;
  background-clip: padding-box, border-box; /* Clip the backgrounds accordingly */
}

.soft-blue-gradient-background {
  background: radial-gradient(ellipse at top left, #9bbec3, #fffaf0, transparent), radial-gradient(ellipse at bottom right, #e0f0f5, #fffaf0, transparent), radial-gradient(ellipse at top right, #f0deca, #fffaf0, transparent), radial-gradient(ellipse at bottom left, #516b77, #fffaf0, transparent);
  width: 100%;
}

.soft-brown-gradient-background {
  background: linear-gradient(to bottom left, #f2e3cd 0%, #ffffff, #afb4b2 100%);
  width: 100%;
}

.footer-gradient-background {
  background: radial-gradient(circle at top, #4c6576, transparent), radial-gradient(ellipse at top right, #4c6576, transparent), radial-gradient(ellipse at right, #4c6576, transparent), radial-gradient(ellipse at bottom left, #f9a01b, transparent);
}

.block-w100 {
  display: block;
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.ambient-gradient-bg {
  width: 100%;
  background-color: #000000; /* Dark canvas base */
  /* Layering the blue and orange glowing orbs */
  background-image: radial-gradient(circle at 55% 25%, rgba(52, 107, 160, 0.45) 0%, rgba(31, 68, 104, 0.2) 35%, rgba(0, 0, 0, 0) 70%), radial-gradient(circle at 60% 45%, rgba(44, 88, 131, 0.35) 0%, rgba(20, 45, 70, 0.15) 40%, rgba(0, 0, 0, 0) 70%), radial-gradient(circle at 30% 65%, rgb(108, 69, 11) 0%, rgba(92, 53, 8, 0.15) 45%, rgba(0, 0, 0, 0) 75%);
  background-blend-mode: screen; /* Smoothly mixes overlapping glows */
}

.amber-glow-background {
  width: 100%;
  /* The core gradient effect */
  background: radial-gradient(circle at center, #a27435 0%, #5a3d1a 40%, #1a1107 75%, #000000 100%);
}

.blue-glow-background {
  width: 100%;
  background-color: #000000; /* Fallback black */
  /* Off-center radial gradient */
  background: radial-gradient(circle at 60% 35%, #2c445a 0%, #131e2a 35%, #05080c 70%, #000000 100%);
}

.card-blue-slate-bg {
  width: 100%;
  height: 100%; /* Adjust to fit your card container */
  position: relative;
  overflow: hidden;
  /* The main diagonal gradient flowing from top-right to bottom-left */
  background: linear-gradient(205deg, #3b5a75 0%, #253644 30%, #161e24 65%, #0f1113 100%);
}

.facade-background {
  width: 100%;
  height: 100vh; /* Full viewport height */
  /* Layer 1: The Ambient Spotlight Gradient */
  background-image: radial-gradient(circle at 25% 0%, #a88e66 0%, #534735 25%, #1d2226 60%, #111416 100%);
}

.navigation_checkbox {
  display: none;
}
.navigation_button {
  background-color: #ffffff;
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: 3rem;
  right: 6rem;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}
.navigation_background {
  width: 6rem;
  height: 6rem;
  position: fixed;
  top: 4.5rem;
  right: 6.5rem;
  background-color: #071322;
  z-index: 1000;
  box-shadow: 0 1rem 3rem rgba(7, 19, 34, 0.1);
  transition: transform 0.6s;
}
.navigation_nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -70px;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s step-start 0.1s;
}
.navigation_list {
  list-style: none;
  text-align: center;
  margin-top: 10rem;
}
.navigation_item {
  display: block;
  margin: 1rem;
  list-style: none;
  counter-increment: customlistcounter;
}
.navigation_link {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background-size: 220%;
  transition: all 0.4s;
}
.navigation_link.active {
  color: #f7a052;
}
.navigation_link:hover, .navigation_link:active {
  background-position: 100%;
  color: #f7a052;
  transform: translateX(1rem);
}
.navigation_checkbox:checked ~ .navigation_background {
  transform: scale(80);
}
.navigation_checkbox:checked ~ .navigation_nav {
  opacity: 1;
  width: 100%;
  right: 70px;
}
.navigation_icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation_icon, .navigation_icon::before, .navigation_icon::after {
  width: 3rem;
  height: 2px;
  background-color: #f7a052;
  display: inline-block;
}
.navigation_icon::before, .navigation_icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation_icon::before {
  top: -0.8rem;
}
.navigation_icon::after {
  top: 0.8rem;
}
.navigation_button:hover .navigation_icon::before {
  top: -1rem;
}
.navigation_button:hover .navigation_icon::after {
  top: 1rem;
}
.navigation_checkbox:checked + .navigation_button .navigation_icon {
  background-color: transparent;
}
.navigation_checkbox:checked + .navigation_button .navigation_icon:before {
  top: 0;
  transform: rotate(135deg);
}
.navigation_checkbox:checked + .navigation_button .navigation_icon:after {
  top: 0;
  transform: rotate(-135deg);
}

.hero {
  position: relative;
  margin-top: -148px;
  height: 760px;
}
.hero_text {
  width: 90%;
  margin: auto;
  position: absolute;
  top: 30%;
  height: auto;
}
.hero_text_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 85%;
  margin: auto;
}
.hero h1,
.hero h2 {
  color: white;
  z-index: 99;
}
.hero h2 {
  font-size: 35px;
}
.hero .cta_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .cta {
  margin-top: 10rem;
}
.hero_img {
  float: right;
}
.hero_img {
  position: relative; /* Establishes a positioning context for children */
  display: inline-block; /* Wraps container tightly around the image */
  width: 100%;
}
.hero_image {
  opacity: 0.69;
  display: block;
  width: 100%; /* Ensure image fills the container width */
  height: 760px;
}
.hero .circle_position {
  position: absolute;
  width: 1148.19px;
  height: 1148.19px;
  transform: translate(-180px, -300px);
}
.hero .circle .w-100 {
  width: 100%;
}
.hero .circle-glass {
  width: 1200px;
  height: 1200px;
}
.hero .orange-blur {
  clip-path: polygon(526.246px 683.395px, 1423.21px 683.395px, 1423.21px 1423.21px);
  position: absolute;
  top: -405px;
  left: -345px;
}
.hero .blue-blur {
  position: absolute;
  top: -390px;
  left: -200px;
}

/* Common polygon mask used to clip the containers into hexagons */
.hexagon-border,
.hexagon-icon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Outer Hexagon (The Border Layer) */
.hexagon-border {
  width: 100px;
  /* The exact geometric height ratio for an equilateral hexagon */
  aspect-ratio: 1/1.1547;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -56px;
}

/* Inner Hexagon (The Fill/Content Layer) */
.hexagon-icon {
  /* Dynamically shrink the inner hexagon based on the border thickness */
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #566c7b;
  /* Center the icon directly inside the hexagon */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon Styling */
.icon {
  color: #ffffff;
  font-size: 35px; /* Responsive icon sizing */
  line-height: 1;
}

section.blue-gradient {
  position: relative;
  z-index: 999;
}
section .section {
  width: 70%;
  margin: auto;
  padding: 3rem 0;
}

.vision {
  display: flex;
  gap: 8rem;
}
.vision-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.vision-left p:not(:last-child) {
  padding-bottom: 4rem;
}
.vision-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vision-right h2 {
  line-height: 1.2;
}
.vision-right h2:not(:last-child) {
  margin-bottom: 6rem;
}

.expertise {
  color: #071322;
}
.expertise h2 {
  text-align: center;
}
.expertise h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.expertise h4 {
  padding: 3rem 0;
}
.expertise-wrapper {
  display: flex;
  gap: 8rem;
  padding-top: 5rem;
}

.portfolio h2 {
  text-align: center;
}
.portfolio h4 {
  padding: 3rem 0;
}
.portfolio-wrapper {
  display: flex;
  gap: 8rem;
  padding-top: 5rem;
}

.about {
  background: url("/_resources/themes/tpcc/images/house construction.png");
  background-size: cover;
  background-color: #ffffff;
  color: #071322;
}
.about-bg {
  background-color: rgba(255, 255, 255, 0.8);
}
.about-wrapper {
  display: flex;
  gap: 8rem;
  padding-top: 5rem;
}
.about p:not(:last-child) {
  padding-bottom: 4rem;
}

.services {
  background-color: #f6f6e9;
  color: #071322;
}
.services h2 {
  text-align: center;
  padding: 3rem;
}
.services h3 {
  font-weight: inherit;
  padding: 2rem 0;
}
.services li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.services .service-wrapper {
  display: flex;
}

.structual-wrapper {
  display: flex;
  justify-content: space-between;
}
.structual h2 {
  text-align: center;
  padding-bottom: 3rem;
}
.structual h3 {
  font-weight: inherit;
  padding: 2rem 0;
}
.structual li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.structual-right {
  display: flex;
  justify-content: space-between;
  width: 50%;
  align-items: flex-start;
}
.structual-wall {
  margin-top: -3rem;
}

.maintenance {
  background-color: #f6f6e9;
  color: #071322;
}
.maintenance-wrapper {
  display: flex;
}
.maintenance h2 {
  text-align: center;
  padding-bottom: 3rem;
}
.maintenance h3 {
  padding-bottom: 3rem;
}
.maintenance li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.facade-wrapper {
  display: flex;
  gap: 3rem;
  background-image: url("/_resources/themes/tpcc/images/facade-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.facade-left, .facade-right {
  width: 50%;
}
.facade-right {
  padding-right: 3rem;
}
.facade h2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.facade h3 {
  padding: 3rem 0;
}
.facade-img {
  width: 100%;
}
.facade li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.retrofit {
  background-color: #f6f6e9;
  color: #071322;
}
.retrofit-wrapper {
  display: flex;
  gap: 8rem;
  padding-top: 5rem;
}
.retrofit h2 {
  text-align: center;
  padding-bottom: 3rem;
}
.retrofit h3 {
  padding: 3rem 0;
}
.retrofit li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.earthquake {
  background: url("/_resources/themes/tpcc/images/welding-work.jpg");
  background-size: cover;
}
.earthquake-strengthening {
  background-color: rgba(0, 0, 0, 0.4);
}
.earthquake h2 {
  text-align: center;
  padding-bottom: 3rem;
}
.earthquake-wrapper {
  display: flex;
  gap: 8rem;
  padding-top: 5rem;
  align-items: flex-end;
}
.earthquake-left {
  width: 50%;
}
.earthquake h3 {
  padding: 3rem 0;
}
.earthquake li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.commitment {
  color: #071322;
}
.commitment h2 {
  text-align: center;
  padding-bottom: 3rem;
}

.standards h1 {
  text-align: center;
  padding-bottom: 3rem;
}
.standards h3 {
  text-align: center;
  padding-top: 3rem;
}
.standards h4 {
  padding-bottom: 1.5rem;
}
.standards .h4 {
  padding-top: 3rem;
}
.standards-wrapper {
  padding-top: 5rem;
}

.passive-house {
  background-color: #6a5740;
}
.passive-house h2 {
  text-align: center;
  margin-bottom: 10rem;
}
.passive-house .cards {
  gap: 8rem 2rem;
}
.passive-house .card {
  padding: 3.5rem 3rem 1rem 3rem;
}
.passive-house .card h5 {
  padding: 3.5rem 0 0;
}
.passive-house .card p {
  font-size: 1.8rem;
  text-align: center;
}

.significance h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.significance h3 {
  text-align: center;
  padding-bottom: 7rem;
}
.significance h5 {
  align-self: flex-start;
}
.significance .cards {
  gap: 4rem;
}
.significance .cards:not(:last-child) {
  margin-bottom: 4rem;
}
.significance .card {
  border-radius: 25px;
  padding: 2rem !important;
}
.significance .card.card-left-gradient-bg {
  width: 100%;
  height: 100%; /* Adjust to fit your card container */
  /* Diagonal gradient from top-left to bottom-right */
  background: linear-gradient(75deg, #291a0c 0%, #53391b 45%, #7a562b 100%);
}
.significance .card.middle-card-bg {
  width: 100%;
  height: 100%; /* Adjust to fit your card container */
  /* Vertical linear gradient moving from top to bottom */
  background: linear-gradient(to top, #53391b 0%, #805a28 50%, #715029 100%);
}
.significance .card.right-card-bg {
  width: 100%;
  height: 100%; /* Adjust to fit your card container */
  /* Diagonal gradient from bottom-left to top-right */
  background: linear-gradient(325deg, #291a0c 0%, #7a562b 55%, #805a28 100%);
}
.significance .card p {
  font-size: 1.8rem;
}
.significance .card img {
  align-self: end;
  height: 54px;
}
.significance .card img.money {
  height: 64px;
}

.about-us h1 {
  text-align: center;
  margin-bottom: 10rem;
}
.about-us .flex-card {
  margin-top: 5rem;
}
.about-us .flex-card .card-header {
  display: flex;
  justify-content: space-around;
  align-items: start;
  padding: 2rem 0;
}
.about-us .flex-card h2 {
  font-size: 3rem;
}

.healthier-nz {
  background-color: #f6f6e9;
  color: #071322;
}
.healthier-nz h2 {
  text-align: center;
  margin: 5rem 0;
}
.healthier-nz h3 {
  margin-bottom: 3rem;
}
.healthier-nz h3:not(:first-child) {
  margin-top: 3rem;
}
.healthier-nz p:not(:first-child) {
  margin-bottom: 2rem;
}
.healthier-nz li {
  list-style-type: disc;
  margin-left: 2.2rem;
}
.healthier-nz .icon {
  width: 100px;
  margin-right: 2rem;
}

.metallic-container {
  /* This represents your dark container background */
  background-color: #0b1116;
  min-height: 100px;
  /* The "Border-Top" Magic */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(144, 168, 191, 0.4) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(144, 168, 191, 0.4) 70%, rgba(255, 255, 255, 0) 100%), linear-gradient(to right, #1c2a38 0%, #2b4156 35%, #35506b 50%, #2b4156 65%, #1c2a38 100%);
  /* Subtle dark shadow underneath to give it a 3D bevel effect */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background-position: top center;
  background-size: 100% 3px; /* 3px is the thickness of the border */
  background-repeat: no-repeat;
  /* Optional: Adds the soft dark shadow directly beneath the border */
}
.metallic-container.card {
  padding: 0.3rem 0 0 !important;
}
.metallic-container p {
  padding: 0 1rem;
}

.floated-image {
  /* Step 1: Float the image to the left (or right) */
  float: left;
  /* Step 2: Set a width so the text has room on the side */
  width: 500px;
  height: auto;
  /* Step 3: Add margin to prevent the text from touching the image */
  margin-right: 20px;
  margin-bottom: 10px;
}

.cards {
  display: grid;
  /* This creates responsive columns that are a minimum of 250px wide and fill available space */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* This is the key line: it makes all rows the same height as the tallest item in that row */
  grid-auto-rows: 1fr;
  gap: 2rem; /* Adds space between the cards */
}
.cards:not(:last-child) {
  margin-bottom: 10rem;
}
.cards .card {
  background-color: #071322;
  color: #ffffff;
  /* Turning the card into a column flexbox unlocks perfect spacing controls */
  display: flex;
  flex-direction: column;
  /* Ensures the card expands fully to meet the Grid's automatic 1fr row height */
  height: 100%;
  align-items: center;
  padding: 3rem;
  position: relative;
}
.cards h5 {
  padding: 2.5rem 0;
}

.flex-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}
.flex-card .card {
  width: 31%;
  padding: 2rem;
}

.card-content {
  padding: 0 1rem;
}

.glass-card {
  /* Semi-transparent background */
  background: rgba(255, 255, 255, 0.15);
  /* The frosted glass blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  /* Light, translucent border to highlight the edges */
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* Rounded corners give a modern glass panel feel */
  border-radius: 16px;
  /* Drop shadow gives depth and separates the card from the background */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  /* Optional: Padding and sizing */
  padding: 25px;
  width: 350px;
}

footer .footer_content {
  display: flex;
  justify-content: start-between;
  align-items: self-start;
  width: 80%;
  margin: auto;
  padding: 5rem;
}
footer .footer_left {
  display: flex;
  width: 75%;
}
footer .footer_logo {
  width: 120px;
  height: 120px;
}
footer .copyright {
  font-size: 16px;
  text-align: center;
  padding: 1.5rem;
}

#Contact .container {
  width: 750px;
  margin: 5rem auto;
}
#Contact .container h1 {
  color: #f9a01b;
}
#Contact .container .notes {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

label {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 0.7rem;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}

input,
textarea,
select {
  font-size: 1.5rem;
  color: #071322;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: lightgrey;
  border: #071322;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  width: 100%;
}

.btn-toolbar {
  margin-top: 3rem;
}
.btn-toolbar .action {
  background-color: #f9a01b;
}
.btn-toolbar .action:hover {
  background-color: #f59432;
}

.error {
  font-size: 1.2rem;
  color: #e56e47;
}

/*# sourceMappingURL=style.css.map */
