html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
}
html body {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #ce3d45;
}

button {
  display: flex;
  cursor: pointer;
  align-items: center;
  background: #ce3d45;
  border: 3px solid #ce3d45;
  border-radius: 15px;
  padding: 1rem 2rem;
  color: white;
  column-gap: 15px;
  text-transform: uppercase;
  color: white;
  transition: all 0.5s;
}
button:hover {
  background: #2c474d;
  border-color: #2c474d;
}
button img {
  width: 20px;
}

.pad-block-0 {
  padding-block: 0;
}

.pad-block-3 {
  padding-block: 3rem;
}

.primary-bg {
  background: #ce3d45;
}

.secondary-bg {
  background: #2c474d;
}

.secondary-color {
  color: #2c474d;
}

.white, .white * {
  color: white;
}

img {
  width: fit-content;
  max-width: 100%;
  position: relative;
}

.offset-img--left {
  max-width: 130%;
  margin-left: -30%;
}
@media screen and (max-width: 600px) {
  .offset-img--left {
    margin-bottom: 1rem;
  }
}

.offset-img--top {
  margin-top: -25rem;
}
@media screen and (max-width: 1200px) {
  .offset-img--top {
    margin-top: -15rem;
  }
}
@media screen and (max-width: 1100px) {
  .offset-img--top {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 600px) {
  .offset-img--top {
    margin-top: -5rem;
  }
}

.inset-txt--left {
  padding-left: 10rem;
}
@media screen and (max-width: 1100px) {
  .inset-txt--left {
    padding-left: 0;
  }
}

.inset-txt--top {
  padding-top: 10rem;
}
@media screen and (max-width: 1100px) {
  .inset-txt--top {
    padding-top: 0;
  }
}

h1, h2, h3, h4, h5, h6, p, a, ul, li {
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-style: normal;
  margin-bottom: 0;
  margin-top: 0;
}

h1 {
  font-size: 10.2rem;
  line-height: 1.2;
  color: #2c474d;
}

h2 {
  font-size: 6rem;
  color: #ce3d45;
}

h3 {
  font-size: 4rem;
  color: #ce3d45;
}

h4 {
  font-size: 2.4rem;
  color: #ce3d45;
}

p, a {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #2c474d;
  margin-block: 1rem;
}

li {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-block: 1rem;
  color: #2c474d;
}

@media screen and (max-width: 1450px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
}
button {
  font-family: "Gabarito", sans-serif;
  font-size: 1.6rem;
}

section {
  padding-block: 3rem;
  overflow: hidden;
  position: relative;
}

#the-site {
  padding-bottom: 0;
}
@media screen and (max-width: 1400px) {
  #the-site .flex-row {
    align-items: flex-end;
  }
}
@media screen and (max-width: 600px) {
  #the-site .flex-row .half-col {
    width: 100%;
  }
}

#the-development {
  padding-bottom: 0;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .content-wrapper {
    padding-inline: 5rem;
  }
}

@media screen and (max-width: 600px) {
  section .content-wrapper > .flex-row {
    flex-direction: column;
    row-gap: 3rem;
  }
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  display: flex;
  column-gap: 10rem;
}
@media screen and (max-width: 1400px) {
  .flex-row {
    column-gap: 5rem;
  }
}
.flex-row:not(:last-child) {
  margin-bottom: 5rem;
}
.flex-row .full-col {
  width: 100%;
}
.flex-row .half-col {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .flex-row .half-col {
    width: 100%;
  }
}
.flex-row .two-third-col {
  width: 60%;
}
.flex-row .one-third-col {
  width: 40%;
}
.flex-row .nine-tenth-col {
  width: 90%;
}
.flex-row .shaped-white-col {
  background: white;
  padding: 6rem;
  clip-path: polygon(100% 0, 100% calc(100% - 20rem), calc(100% - 20rem) 100%, 0 100%, 0 0);
}
@media screen and (max-width: 600px) {
  .flex-row .shaped-white-col {
    clip-path: polygon(100% 0, 100% calc(100% - 10rem), calc(100% - 10rem) 100%, 0 100%, 0 0);
  }
}

.flex-row--small-gap {
  column-gap: 5rem;
}

.full-width-wrapper {
  max-width: 100%;
}
.full-width-wrapper .two-third-col {
  padding-left: max(20px, (100% - 1400px) / 2);
  padding-right: 60px;
}
.full-width-wrapper .one-third-col {
  padding-right: max(20px, (100% - 1400px) / 2);
  padding-left: 40px;
}
.full-width-wrapper .full-col {
  padding-left: max(20px, (100% - 1400px) / 2);
  padding-right: max(20px, (100% - 1400px) / 2);
}

.justify--space-between {
  justify-content: space-between;
}

footer {
  color: #fff;
  padding-inline: 5rem;
}
@media screen and (max-width: 1400px) {
  footer {
    padding-inline: 0;
  }
}
footer .flex-row {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  justify-content: space-between;
  gap: 15px;
  padding: 70px 0;
}
@media screen and (max-width: 1100px) {
  footer .flex-row {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 800px) {
  footer .flex-row {
    grid-template-columns: 70% 30%;
  }
}
@media screen and (max-width: 600px) {
  footer .flex-row {
    grid-template-columns: 100%;
  }
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: block;
  margin-bottom: 28px;
  text-decoration: none;
}
.footer-logo img {
  width: 80%;
}

.footer-col p {
  margin: 0 0 22px;
  line-height: 1.8;
}

.footer-links ul {
  columns: 2;
  column-gap: 70px;
  list-style: none;
  padding: 45px 0 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .footer-links ul {
    column-gap: 0;
  }
}
@media screen and (max-width: 800px) {
  .footer-links ul {
    columns: 1;
    padding-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer-links ul {
    columns: 2;
  }
}
.footer-links li {
  break-inside: avoid;
  margin-bottom: 26px;
}
@media screen and (max-width: 600px) {
  .footer-links li {
    margin-top: 0;
  }
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-contact {
  max-width: 380px;
  padding-top: 42px;
}
.footer-contact h4 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #dfa33b;
  line-height: 1.5;
}
.footer-contact h4 span {
  color: #dfa33b;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-phone {
  display: block;
  margin-bottom: 12px;
}

.footer-email {
  display: block;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dfa33b;
  color: #284a50;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
}
.footer-social a i {
  line-height: 1;
  color: #2c474d;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
}
.footer-bottom p {
  margin: 0;
  padding: 12px 0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom span {
  margin: 0 14px;
}

header {
  background: url(assets/header-img.png);
  background-size: contain;
  background-position: 120% 0%;
  height: 100vh;
  max-height: 900px;
  background-repeat: no-repeat;
  max-width: 2000px;
  margin: auto;
}
@media screen and (max-width: 1800px) {
  header {
    max-height: 750px;
  }
}
@media screen and (max-width: 1650px) {
  header {
    max-height: 650px;
    background-position: 145% 0%;
  }
}
@media screen and (max-width: 1400px) {
  header {
    background-position: 170% 100%;
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 1400px) {
  header {
    background-position: 250% 100%;
    background-size: 90%;
  }
}
@media screen and (max-width: 1100px) {
  header {
    background: url(assets/header-img-mobile.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 800px;
    max-height: fit-content;
  }
}
@media screen and (max-width: 1100px) {
  header {
    min-height: 700px;
  }
}
@media screen and (max-width: 600px) {
  header .content-wrapper {
    padding-inline: 0;
  }
}

.nav-bar {
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}
.nav-bar nav ul {
  display: flex;
  column-gap: 50px;
  list-style: none;
}
@media screen and (max-width: 1400px) {
  .nav-bar nav ul {
    column-gap: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .header--title {
    text-align: center;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 800px) {
  .header--title {
    margin-top: 0;
  }
}

.header--txt {
  width: 45%;
}
@media screen and (max-width: 1300px) {
  .header--txt {
    width: 40%;
  }
}
@media screen and (max-width: 1100px) {
  .header--txt {
    margin: auto;
    width: 60%;
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 600px) {
  .header--txt {
    width: 100%;
  }
}
.header--txt p {
  font-size: 2.5rem;
}
@media screen and (max-width: 1300px) {
  .header--txt p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .header--txt a {
    margin: auto;
    width: fit-content;
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .nav-btn {
    display: none;
  }
}

.mobile-header-banner {
  display: none;
}
@media screen and (max-width: 1100px) {
  .mobile-header-banner {
    display: block;
    text-align: center;
    padding: 2rem 3rem;
  }
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.hamburger:hover {
  border-color: white;
  background: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ce3d45;
  margin: 7px 0;
  transition: 0.3s;
}
.hamburger.active span {
  background: white;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .hamburger {
    display: block;
  }
  header nav {
    display: none;
  }
  header nav.open {
    display: block;
    background: #ce3d45;
    border: 3px solid white;
    width: 30%;
    padding: 0 3rem;
    border-radius: 10px;
    position: absolute;
    top: 1rem;
    right: 7rem;
    z-index: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
  header nav.open {
    width: 50%;
    right: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  header nav ul {
    flex-direction: column;
    row-gap: 20px;
    padding: 10px 0;
  }
}
.fixed--nav-bar {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: fit-content;
  z-index: 100;
  background: rgba(44, 71, 77, 0.8117647059);
  border-radius: 15px;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.fixed--nav-bar nav {
  display: none;
}
.fixed--nav-bar nav.open {
  display: block;
}
.fixed--nav-bar nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fixed--nav-bar nav ul li {
  color: white;
}

.fixed-hamburger {
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.fixed-hamburger:hover {
  background: none;
}
.fixed-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  margin: 7px 0;
  transition: 0.3s;
}
.fixed-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.fixed-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.fixed-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.banner .flex-row {
  column-gap: 3rem;
}

.banner-title {
  display: flex;
  align-items: center;
}

.banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

@media screen and (max-width: 1400px) {
  #about-us .flex-row, #core-principles .flex-row {
    flex-wrap: wrap;
    text-align: center;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 1400px) {
  #about-us .banner-title, #core-principles .banner-title {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #about-us .banner-title, #core-principles .banner-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1400px) {
  #about-us .banner-item, #core-principles .banner-item {
    min-width: 25%;
    padding-inline: 5%;
  }
}
@media screen and (max-width: 1400px) {
  #about-us .banner-item, #core-principles .banner-item {
    min-width: calc(50% - 2rem);
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #about-us .banner-item, #core-principles .banner-item {
    min-width: calc(100% - 2rem);
  }
}

#core-principles .flex-row {
  column-gap: 3rem;
}
@media screen and (max-width: 1400px) {
  #core-principles .flex-row {
    row-gap: 3rem;
  }
}
#core-principles .flex-align-left {
  align-items: flex-start;
  justify-content: center;
}
#core-principles .banner-title {
  padding-inline: 5rem;
}
@media screen and (max-width: 1100px) {
  #core-principles .banner-title {
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
    align-items: center;
    padding-inline: 0;
  }
}
@media screen and (max-width: 1100px) {
  #core-principles .banner-title br {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  #core-principles .banner-item {
    min-width: calc(50% - 2rem);
    padding-inline: 5%;
  }
}
@media screen and (max-width: 600px) {
  #core-principles .banner-item {
    min-width: calc(100% - 2rem);
  }
}
#core-principles .banner-item img {
  min-height: 95px;
  margin-bottom: 2rem;
}
#core-principles p {
  font-size: 1.4rem;
}

#the-development {
  overflow: visible;
}
@media screen and (max-width: 1400px) {
  #the-development .content-wrapper {
    padding-left: 0;
  }
}

.development-img {
  position: absolute;
  right: -30%;
  height: 115%;
  top: 0;
}
@media screen and (max-width: 1850px) {
  .development-img {
    height: 100%;
  }
}
@media screen and (max-width: 1600px) {
  .development-img {
    right: -40%;
  }
}
@media screen and (max-width: 1600px) {
  .development-img {
    right: -40%;
    width: 65%;
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  .development-img {
    width: 100%;
    right: 0;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .development-img {
    content: url(assets/development-img-set-mobile.png);
  }
}

.house-types {
  display: grid;
  column-gap: 2rem;
  row-gap: 4rem;
  margin-bottom: 3rem;
  grid-template-columns: 35% 35%;
  justify-items: stretch;
}
@media screen and (max-width: 1000px) {
  .house-types {
    justify-items: center;
    justify-content: center;
    margin-block: 5rem;
  }
}
.house-types .house-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  row-gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#the-stratagy {
  padding-top: 3rem;
}
#the-stratagy::before {
  content: "";
  top: 0;
  position: absolute;
  height: 50%;
  background: #2c474d;
  z-index: -1;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 1500px) {
  #the-stratagy::before {
    height: 30%;
  }
}
@media screen and (max-width: 1000px) {
  #the-stratagy::before {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  #the-stratagy .stratagy-img {
    content: url(assets/stratagy-infographic-img-mobile.png);
  }
}
@media screen and (max-width: 1000px) {
  #the-stratagy .flex-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  #the-stratagy .flex-row .two-third-col, #the-stratagy .flex-row .one-third-col, #the-stratagy .flex-row .nine-tenth-col, #the-stratagy .flex-row .half-col {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  #the-stratagy .banner-title {
    justify-content: center;
  }
}
#the-stratagy .bg-graphic-left {
  position: absolute;
  top: 10rem;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  #the-stratagy .bg-graphic-left {
    height: 40%;
  }
}
@media screen and (max-width: 1000px) {
  #the-stratagy .bg-graphic-left {
    height: 600px;
  }
}
@media screen and (max-width: 600px) {
  #the-stratagy .bg-graphic-left {
    display: none;
  }
}

.stratagy-logo-bg-graphics {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}
@media screen and (max-width: 1000px) {
  .stratagy-logo-bg-graphics {
    display: none;
  }
}
.stratagy-logo-bg-graphics .stratgy-logo-bg--1 {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 900px;
  aspect-ratio: 1/1;
  background: #ce3d45;
  z-index: -1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 1600px) {
  .stratagy-logo-bg-graphics .stratgy-logo-bg--1 {
    height: auto;
    width: 135%;
  }
}
.stratagy-logo-bg-graphics .stratgy-logo-bg--2 {
  content: "";
  position: absolute;
  right: 0;
  bottom: 40rem;
  height: 800px;
  aspect-ratio: 1/2;
  background: #2c474d;
  z-index: -1;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media screen and (max-width: 1800px) {
  .stratagy-logo-bg-graphics .stratgy-logo-bg--2 {
    height: 600px;
    bottom: 60rem;
  }
}
@media screen and (max-width: 1600px) {
  .stratagy-logo-bg-graphics .stratgy-logo-bg--2 {
    height: 400px;
    bottom: 73rem;
  }
}
@media screen and (max-width: 1200px) {
  .stratagy-logo-bg-graphics .stratgy-logo-bg--2 {
    display: none;
  }
}
.stratagy-logo-bg-graphics img {
  margin-bottom: 15rem;
}

.timeline {
  display: flex;
  column-gap: 3rem;
}
@media screen and (max-width: 1400px) {
  .timeline {
    flex-wrap: wrap;
    row-gap: 3rem;
  }
}
.timeline .timeline-arrow {
  position: absolute;
  top: 4.5rem;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .timeline .timeline-arrow {
    display: none;
  }
}
.timeline .flex-item {
  width: 25%;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .timeline .flex-item {
    width: calc(50% - 3rem);
  }
}
@media screen and (max-width: 600px) {
  .timeline .flex-item {
    width: calc(100% - 3rem);
  }
}
.timeline .flex-item img {
  margin-bottom: 2rem;
}

.feedback-form {
  font-family: Arial, sans-serif;
  color: #24434a;
  max-width: 1200px;
  font-size: 14px;
}
.feedback-form .section {
  margin-bottom: 24px;
}
.feedback-form .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}
.feedback-form .number {
  background: #d63d4a;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: 0 0 18px;
}
.feedback-form .options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.feedback-form label {
  font-weight: 700;
}
.feedback-form input[type=radio], .feedback-form input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #ef9da3;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  cursor: pointer;
}
.feedback-form input[type=radio]:checked, .feedback-form input[type=checkbox]:checked {
  background: #d63d4a;
  box-shadow: inset 0 0 0 4px #fff;
}
.feedback-form input[type=text], .feedback-form input[type=email], .feedback-form input[type=tel] {
  width: 100%;
  border: 0;
  background: #f3f3f3;
  border-radius: 6px;
  padding: 14px;
  box-sizing: border-box;
  font: inherit;
}
.feedback-form textarea {
  width: 100%;
  border: 0;
  background: #f3f3f3;
  border-radius: 6px;
  padding: 14px;
  box-sizing: border-box;
  font: inherit;
  min-height: 56px;
  resize: vertical;
}
.feedback-form .ratings {
  border-collapse: collapse;
  margin-top: 8px;
}
@media screen and (max-width: 600px) {
  .feedback-form .ratings {
    width: 100%;
    overflow: overlay;
    position: relative;
    display: block;
    border: 3px solid #ce3d45;
    padding: 1.5rem;
  }
}
.feedback-form .ratings th,
.feedback-form .ratings td {
  padding: 6px 18px;
  text-align: center;
}
.feedback-form .ratings th:first-child,
.feedback-form .ratings td:first-child {
  text-align: left;
  padding-left: 0;
  font-weight: 700;
}
.feedback-form .ratings th {
  font-size: 11px;
  line-height: 1.1;
}
.feedback-form .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 12px;
  margin-top: 18px;
}
.feedback-form .full {
  grid-column: 1/2;
}
.feedback-form .field label {
  display: block;
  margin-bottom: 8px;
}
.feedback-form .consent {
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
}
.feedback-form button {
  background: #d63d4a;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}
.feedback-form .section.error {
  border: 2px solid #d63d4a;
  border-radius: 8px;
  padding: 20px;
}

.field-error {
  color: #d63d4a;
  margin-left: 8px;
}

.has-error {
  color: #d63d4a;
}
.has-error input,
.has-error textarea {
  border: 2px solid #d63d4a;
}

@media screen and (max-width: 1200px) {
  #next .flex-row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1400px) {
  #next .banner-title {
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  #next .banner-title {
    width: 100%;
    display: block;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  #next .banner-title br {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  #the-plan .flex-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  #the-plan .flex-row .two-third-col, #the-plan .flex-row .one-third-col {
    width: 100%;
  }
}

.featured-cutout {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 70%;
  padding-left: 10rem;
}
@media screen and (max-width: 1000px) {
  .featured-cutout {
    max-width: 100%;
  }
}
.featured-cutout::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #ce3d45;
  z-index: -1;
  clip-path: polygon(calc(50% - 6rem) 0, calc(50% + 5.5rem) 0, 100% calc(0% + 65rem), 100% 100%, 0 100%, 0 calc(0% + 61rem));
}
@media screen and (max-width: 1600px) {
  .featured-cutout::before {
    clip-path: polygon(calc(0% + 15rem) 0, calc(50% + 5.5rem) 0, 100% calc(0% + 46rem), 100% 100%, 0 100%, 0 calc(0% + 15rem));
  }
}
@media screen and (max-width: 600px) {
  .featured-cutout::before {
    clip-path: polygon(calc(0% + 15rem) 0, calc(100% + 5.5rem) 0, 100% calc(0% + 46rem), 100% 90%, 0 80%, 0 calc(0% + 15rem));
  }
}
.featured-cutout::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  background: #2c474d;
  z-index: -2;
}
@media screen and (max-width: 600px) {
  .featured-cutout::after {
    height: 10%;
  }
}
.featured-cutout img {
  display: block;
  margin: auto;
  margin-bottom: 10rem;
}
@media screen and (max-width: 600px) {
  .featured-cutout img {
    margin-bottom: 5rem;
  }
}
.featured-cutout .featured-cutout--content {
  padding-left: 10rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1600px) {
  .featured-cutout .featured-cutout--content {
    padding-left: 10rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1600px) {
  .featured-cutout .featured-cutout--content {
    padding-left: 3rem;
    padding-right: 15rem;
  }
}
@media screen and (max-width: 1600px) {
  .featured-cutout .featured-cutout--content {
    padding-right: 3rem;
  }
}

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