nav {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid #2B8C85;
  padding: 0rem 3.125rem;
}
@media screen and (max-width: 48rem) {
  nav {
    padding: 0rem 1.25rem;
  }
}
nav .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  height: 6.25rem;
}
nav .nav-wrapper .nav-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 48rem) {
  nav .nav-wrapper .nav-logo {
    max-width: 100px;
  }
}
nav .nav-wrapper .nav-logo img {
  width: 100%;
  height: auto;
}
nav .nav-wrapper .nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 48rem) {
  nav .nav-wrapper .nav-content {
    gap: 2rem;
  }
}
@media screen and (max-width: 48rem) {
  nav .nav-wrapper .nav-content .dp-button p {
    display: none;
  }
}
nav .nav-wrapper .language-selector a {
  font-weight: normal;
  color: #000;
}
nav .nav-wrapper .language-selector .gt-current-lang {
  font-weight: bold;
  color: #2B8C85;
}

.dp-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border: 2px solid #2B8C85;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.dp-button::after {
  content: "";
  width: 100%;
  height: 0%;
  background-color: #2B8C85;
  position: absolute;
  left: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.dp-button svg {
  width: 1.25rem;
  height: auto;
  fill: #2B8C85;
  z-index: 2;
}
.dp-button p {
  color: #000;
  margin: 0rem;
  margin-top: 2px;
  z-index: 2;
}
.dp-button:hover svg, .dp-button:focus svg, .dp-button:active svg {
  fill: #ffffff;
}
.dp-button:hover::after, .dp-button:focus::after, .dp-button:active::after {
  height: 100%;
}
.dp-button:hover p, .dp-button:focus p, .dp-button:active p {
  color: #ffffff;
}

.container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 3.125rem;
  overflow: hidden;
  flex-direction: column;
}
@media screen and (max-width: 48rem) {
  .container {
    padding: 0rem 1.25rem;
  }
}
.container .container-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
.container .container-wrapper .page-title {
  font-weight: bold;
  font-size: 2rem;
  width: 100%;
  text-align: left;
  margin-top: 3.125rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 48rem) {
  .container .container-wrapper .page-title {
    font-size: 1.5rem;
  }
}
.container .container-wrapper .wp-block-paragraph {
  line-height: 1.4;
  font-weight: 300;
  font-size: 1rem;
}
.container .container-wrapper .wp-block-heading {
  padding: 3.125rem 0rem;
  padding-bottom: 1.25rem;
  font-weight: bold;
}
.container .dp-page {
  justify-content: start;
  align-items: start;
}

.dp-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 48rem) {
  .dp-row {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
  }
}
.dp-row .dp-input {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 100%;
  width: 100%;
}
.dp-row .dp-input label {
  font-size: 0.825rem;
  color: #2B8C85;
  font-weight: bold;
  flex: 1;
  text-align: left;
  display: flex;
  justify-content: start;
  align-items: end;
}
.dp-row .dp-input input {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid #2B8C85;
  outline: none;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}
.dp-row .dp-input textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 5rem;
  min-height: 5rem;
  outline: none;
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid #2B8C85;
  outline: none;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}
.dp-row .dp-input-long {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
}
.dp-row .dp-input-long .dp-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.25rem;
  position: relative;
  background-color: #054240;
  padding: 0.615rem 1.25rem;
  border-radius: 0.625rem;
  cursor: pointer;
}
.dp-row .dp-input-long .dp-submit .wpcf7-spinner {
  position: absolute;
  right: 1%;
}
.dp-row .dp-input-long .dp-submit input[type=submit] {
  background-color: transparent;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 300;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.dp-row .dp-input-long .dp-submit svg {
  width: 1.25rem;
  height: auto;
  min-width: 1.25rem;
  fill: #ffffff;
}
.dp-row .dp-checkbox {
  grid-column: span 2;
}
.dp-row .dp-checkbox .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.dp-row .dp-checkbox input {
  width: auto;
}

.dp-row-title {
  grid-template-columns: 1fr;
}
.dp-row-title h2 {
  font-weight: bold;
  padding: 1.25rem 0rem;
  font-size: 1.5rem;
}

.wpcf7-response-output {
  outline: none;
  border: none;
  padding: 1.25rem !important;
  background-color: #ffffff;
  border-color: none !important;
  border-radius: 1.25rem;
}

.wpcf7-not-valid-tip {
  font-weight: bold;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.625rem;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.home-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 1.25rem 3.125rem;
}
@media screen and (max-width: 48rem) {
  .home-container {
    padding: 1.25rem;
  }
}
.home-container .home-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
.home-container .home-wrapper .home-slogan {
  width: 100%;
  height: auto;
  padding: 2rem 0rem;
}
.home-container .home-wrapper .home-slogan h1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}
.home-container .home-wrapper .home-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .home-container .home-wrapper .home-select {
    grid-template-columns: 1fr;
  }
}
.home-container .home-wrapper .home-select .select-tile {
  width: 100%;
  min-width: 300px;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.125rem 1.5rem;
  padding-bottom: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.home-container .home-wrapper .home-select .select-tile h3 {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  text-align: left;
}
.home-container .home-wrapper .home-select .select-tile h2 {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  width: 100%;
  text-align: left;
  margin-bottom: 3.125rem;
}
.home-container .home-wrapper .home-select .select-tile .select-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  align-self: flex-end;
  margin-top: auto;
  cursor: pointer;
}
.home-container .home-wrapper .home-select .select-tile .select-btn p {
  font-size: 0.75rem;
  font-weight: normal;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-container .home-wrapper .home-select .select-tile .select-btn svg {
  width: 14px;
  height: auto;
  stroke: #ffffff;
}
.home-container .home-wrapper .home-select .select-tile .bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.home-container .home-wrapper .home-select .select-tile .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-container .home-wrapper .home-select .select-tile .incoming {
  width: 100%;
  height: 0;
  background-color: rgba(43, 140, 133, 0.8);
  position: absolute;
  left: 0;
  margin-top: -1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  cursor: not-allowed;
}
.home-container .home-wrapper .home-select .select-tile .incoming p {
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  user-select: none;
}
.home-container .home-wrapper .home-select .select-tile:hover .bg-image img, .home-container .home-wrapper .home-select .select-tile:active .bg-image img, .home-container .home-wrapper .home-select .select-tile:focus .bg-image img, .home-container .home-wrapper .home-select .select-tile:active .bg-image img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.home-container .home-wrapper .home-select .select-tile:hover .select-btn p, .home-container .home-wrapper .home-select .select-tile:active .select-btn p, .home-container .home-wrapper .home-select .select-tile:focus .select-btn p, .home-container .home-wrapper .home-select .select-tile:active .select-btn p {
  text-decoration: underline;
}
.home-container .home-wrapper .home-select .select-tile:hover .incoming, .home-container .home-wrapper .home-select .select-tile:active .incoming, .home-container .home-wrapper .home-select .select-tile:focus .incoming, .home-container .home-wrapper .home-select .select-tile:active .incoming {
  height: 100%;
}
.home-container .home-wrapper .home-select .select-tile:nth-child(1) {
  transition-delay: 0.1s;
}
.home-container .home-wrapper .home-select .select-tile:nth-child(2) {
  transition-delay: 0.3s;
}
.home-container .home-wrapper .home-select .select-tile:nth-child(3) {
  transition-delay: 0.5s;
}
.home-container .home-wrapper .home-select .select-tile:nth-child(4) {
  transition-delay: 0.7s;
}

.production-facility header {
  width: 100%;
  max-width: 75rem;
  height: auto;
  margin-top: 3.125rem;
  display: flex;
  align-items: start;
  position: relative;
}
@media screen and (max-width: 48rem) {
  .production-facility header {
    flex-direction: column;
  }
}
.production-facility header .content {
  flex: 1;
  width: 50%;
}
@media screen and (max-width: 48rem) {
  .production-facility header .content {
    width: 100%;
  }
}
.production-facility header .content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 3.5rem;
  white-space: nowrap;
  line-height: 1.2;
}
@media screen and (max-width: 48rem) {
  .production-facility header .content h1 {
    margin-bottom: 1.5rem;
    white-space: unset;
    font-size: 2.5rem;
    text-align: center;
  }
}
.production-facility header .content h1 span {
  color: #2B8C85;
  font-size: 3.5rem;
  font-weight: 600;
  white-space: wrap;
}
@media screen and (max-width: 48rem) {
  .production-facility header .content h1 span {
    font-size: 2.5rem;
  }
}
.production-facility header .content p {
  font-size: 1.125rem;
  color: #000;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 48rem) {
  .production-facility header .content p {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.production-facility header .image {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -5.25rem;
  margin-top: 6.2rem;
}
@media screen and (max-width: 48rem) {
  .production-facility header .image {
    margin: 0;
    width: 100%;
  }
}
.production-facility header .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  overflow: hidden;
  max-height: 21.875rem;
}
@media screen and (max-width: 48rem) {
  .production-facility header .image img {
    margin: 0;
    max-width: 30rem;
  }
}
.production-facility .main-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  height: auto;
  margin-top: 3.125rem;
  max-width: 75rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .production-facility .main-info {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.production-facility .main-info .info-box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.production-facility .main-info .info-box .info-icon {
  background-color: #054240;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.438rem;
  height: 3.438rem;
  border-radius: 0.625rem;
  margin-bottom: 0.938rem;
}
.production-facility .main-info .info-box .info-icon img {
  width: 60%;
  height: auto;
}
.production-facility .main-info .info-box h2 {
  font-size: 0.9rem;
}
.production-facility .main-info .info-box h3 {
  font-size: 0.813rem;
  font-weight: 400;
}
.production-facility .main-info .info-box:nth-child(1) {
  transition-delay: 0.1s;
}
.production-facility .main-info .info-box:nth-child(2) {
  transition-delay: 0.3s;
}
.production-facility .main-info .info-box:nth-child(3) {
  transition-delay: 0.5s;
}
.production-facility .main-info .info-box:nth-child(4) {
  transition-delay: 0.7s;
}

.detailed-information {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.125rem;
  background-color: #054240;
}
@media screen and (max-width: 48rem) {
  .detailed-information {
    padding: 3.125rem 1.25rem;
  }
}
.detailed-information .detailed-information-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
  max-width: 75rem;
  height: auto;
  position: relative;
}
.detailed-information .detailed-information-wrapper .top {
  width: 100%;
}
.detailed-information .detailed-information-wrapper .top h2 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 48rem) {
  .detailed-information .detailed-information-wrapper .top h2 {
    text-align: center;
    width: 100%;
  }
}
.detailed-information .detailed-information-wrapper .top p {
  font-size: 1rem;
  color: #9FC4BC;
  font-weight: 300;
}
@media screen and (max-width: 48rem) {
  .detailed-information .detailed-information-wrapper .top p {
    text-align: center;
    width: 100%;
  }
}
.detailed-information .detailed-information-wrapper .bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
  margin-top: 3rem;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost {
  background-color: #EFEEEB;
  padding: 1.25rem;
  display: flex;
  justify-content: stretch;
  align-items: center;
  max-width: 240px;
  min-width: 240px;
  gap: 1.25rem;
  border-radius: 0.625rem;
  flex: 1;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost.first {
  grid-column: 2;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost.first {
    margin-bottom: 1rem;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost .icon {
  width: 2rem;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  background-color: #054240;
  border-radius: 0.625rem;
  flex: 1;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost .icon img {
  width: 100%;
  height: auto;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost p {
  flex: 1;
  line-height: 1.4;
  font-weight: 200;
  font-size: 0.8rem;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .hidden-costs-tiles {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .hidden-costs-tiles {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .hidden-costs-tiles.second-row {
    margin-top: 1rem;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost-group {
  width: 100%;
  grid-column: span 3;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost-group {
    grid-column: span 2;
  }
}
@media screen and (max-width: 35rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .cost-group {
    grid-column: span 1;
    flex-direction: column;
    width: 100%;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .line {
  width: 100%;
  height: 5px;
  border-bottom: 5px dashed #9FC4BC;
  z-index: 2;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .hidden-cost-text {
  display: none;
  position: absolute;
  top: 1rem;
  left: 0;
  color: #2B8C85;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .hidden-cost-text {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .image {
  position: absolute;
  left: 4.5rem;
  top: 0;
  display: flex;
  justify-content: end;
  align-items: end;
  margin-top: -7rem;
  z-index: 1;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .image {
    display: none;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .image img {
  width: 300px;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator .image p {
  position: absolute;
  top: 55%;
  left: 40%;
  color: #054240;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator p {
  position: absolute;
  top: -2rem;
  left: 0;
  color: #9FC4BC;
}
@media screen and (max-width: 56.25rem) {
  .detailed-information .detailed-information-wrapper .bottom .hidden-costs .separator p {
    width: 100%;
    text-align: center;
  }
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .detailed-information-footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.detailed-information .detailed-information-wrapper .bottom .hidden-costs .detailed-information-footer p {
  color: #9FC4BC;
  max-width: 35rem;
  font-weight: 400;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
}

.calculator-container {
  background-color: #EFEEEB;
  padding-top: 6.25rem;
  padding-bottom: 3.125rem;
}
.calculator-container .container-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: start;
  align-items: start;
  max-width: 75rem;
  gap: 1.25rem;
}
@media screen and (max-width: 56.25rem) {
  .calculator-container .container-wrapper {
    grid-template-columns: 1fr;
  }
}
.calculator-container .calculator-content h2 {
  font-size: 2rem;
  font-weight: bold;
}
.calculator-container .calculator-content h2 span {
  color: #2B8C85;
  font-weight: bold;
}
@media screen and (max-width: 56.25rem) {
  .calculator-container .calculator-content h2 {
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.calculator-container .calculator-content p {
  max-width: 350px;
  line-height: 1.4;
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 4rem;
}
@media screen and (max-width: 56.25rem) {
  .calculator-container .calculator-content p {
    width: 100%;
    height: auto;
    text-align: center;
    max-width: unset;
    margin-bottom: 3.125rem;
  }
}
.calculator-container .calculator {
  background-color: #ffffff;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 11px 11px 31px 6px rgba(0, 0, 0, 0.25);
}
.calculator-container .calculator .calculator-wrapper {
  padding: 1.5rem;
}
.calculator-container .calculator .calculator-wrapper .calculator-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .calculator-container .calculator .calculator-wrapper .calculator-header {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.calculator-container .calculator .calculator-wrapper .calculator-header .icon {
  width: 3.125rem;
  height: 3.125rem;
}
.calculator-container .calculator .calculator-wrapper .calculator-header .icon img {
  width: 100%;
  height: auto;
}
.calculator-container .calculator .calculator-wrapper .calculator-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .calculator-container .calculator .calculator-wrapper .calculator-header h2 {
    text-align: center;
    width: 100%;
  }
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result {
  margin-top: 1.25rem;
  background-color: #054240;
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .estimated-annual {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  border-bottom: 1px solid #9FC4BC;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .estimated-annual p {
  font-size: 0.825rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #9FC4BC;
  width: 100%;
  text-align: center;
  height: fit-content;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .estimated-annual h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  width: 100%;
  color: #ffffff;
  text-align: center;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .estimated-annual input {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  width: 100%;
  color: #ffffff;
  text-align: center;
  border: none;
  background-color: transparent;
  outline: none;
  pointer-events: none;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 30%));
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 48rem) {
  .calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer {
    grid-template-columns: 1fr;
  }
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer .footer-result {
  margin-top: 1.25rem;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer .footer-result h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.625rem;
  text-align: center;
  width: 100%;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer .footer-result p {
  color: #9FC4BC;
  font-size: 0.825rem;
  font-weight: 300;
  text-align: center;
  width: 100%;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-result .calculator-result-footer .footer-result input {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.625rem;
  text-align: center;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  pointer-events: none;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button {
  margin-top: 3.125rem;
  background-color: #054240;
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button::after {
  content: "";
  width: 100%;
  height: 0%;
  background-color: #9FC4BC;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button svg {
  width: 1.4rem;
  height: auto;
  fill: #ffffff;
  z-index: 2;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button p {
  z-index: 2;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button:hover::after, .calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button:focus::after, .calculator-container .calculator .calculator-wrapper .calculator-body .calcutor-button:active::after {
  height: 100%;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-footer {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1.25rem;
  padding: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .calculator-container .calculator .calculator-wrapper .calculator-body .calculator-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-footer .shield-icon {
  width: 2rem;
  min-width: 2rem;
  height: auto;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-footer .shield-icon svg {
  fill: #054240;
  width: 100%;
  height: auto;
}
.calculator-container .calculator .calculator-wrapper .calculator-body .calculator-footer p {
  font-size: 0.625rem;
  line-height: 1.4;
  font-weight: 300;
}

.localization {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 0rem;
}
@media screen and (max-width: 48rem) {
  .localization {
    padding: 0rem;
  }
}
.localization .container-wrapper {
  width: 100%;
  justify-content: start;
  align-items: start;
}
.localization .localization-header {
  padding: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .localization .localization-header {
    padding: 3.125rem 1.25rem;
  }
}
.localization .localization-header h2 {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .localization .localization-header h2 {
    width: 100%;
    text-align: center;
  }
}
.localization .localization-header p {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 48rem) {
  .localization .localization-header p {
    width: 100%;
    text-align: center;
  }
}
.localization .localization-columns {
  width: 100%;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  background-color: #054240;
  background-clip: padding-box;
  padding: 3.125rem;
  gap: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .localization .localization-columns {
    padding: 3.125rem 1.25rem;
    flex-direction: column;
  }
}
.localization .localization-columns .column-left {
  width: 40%;
  height: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 5.125rem;
}
@media screen and (max-width: 48rem) {
  .localization .localization-columns .column-left {
    width: 100%;
  }
}
.localization .localization-columns .column-left .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid #9FC4BC;
  padding-bottom: 1.25rem;
  max-width: 200px;
}
.localization .localization-columns .column-left .item h2 {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 400;
  flex: 1;
}
.localization .localization-columns .column-left .item h3 {
  font-size: 0.825rem;
  color: #ffffff;
  font-weight: 200;
  flex: 1;
}
.localization .localization-columns .column-right {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  margin-top: -3.125rem;
  margin-right: -3.125rem;
  height: 100%;
  max-width: 75%;
  max-height: 21.5rem;
  flex: 1;
}
@media screen and (max-width: 48rem) {
  .localization .localization-columns .column-right {
    width: 100%;
    max-width: 100%;
  }
}
.localization .localization-columns .column-right .map {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 90%;
}
@media screen and (max-width: 48rem) {
  .localization .localization-columns .column-right .map {
    width: 100%;
    max-width: 100%;
  }
}

.advantages {
  background-color: #EFEEEB;
}
.advantages .container-wrapper {
  padding: 3.125rem 0rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  max-width: 75rem;
  gap: 3.125rem;
}
@media screen and (max-width: 56.25rem) {
  .advantages .container-wrapper {
    flex-direction: column;
  }
}
.advantages .container-wrapper .column-left {
  width: 60%;
}
@media screen and (max-width: 56.25rem) {
  .advantages .container-wrapper .column-left {
    width: 100%;
  }
}
.advantages .container-wrapper .column-left h2 {
  font-size: 2rem;
  line-height: 1.2;
  padding-top: 1.25rem;
  padding-bottom: 3.125rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .advantages .container-wrapper .column-left h2 {
    width: 100%;
    text-align: center;
  }
}
.advantages .container-wrapper .column-left .advantages-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 34.375rem) {
  .advantages .container-wrapper .column-left .advantages-wrapper {
    grid-template-columns: 1fr;
  }
}
.advantages .container-wrapper .column-left .advantages-wrapper .single-adv {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.advantages .container-wrapper .column-left .advantages-wrapper .single-adv h3 {
  font-size: 2rem;
  color: #054240;
  font-weight: 300;
}
@media screen and (max-width: 48rem) {
  .advantages .container-wrapper .column-left .advantages-wrapper .single-adv h3 {
    width: 100%;
    text-align: center;
  }
}
.advantages .container-wrapper .column-left .advantages-wrapper .single-adv h2 {
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 0.625rem;
}
.advantages .container-wrapper .column-left .advantages-wrapper .single-adv p {
  font-weight: 200;
  line-height: 1.4;
}
@media screen and (max-width: 48rem) {
  .advantages .container-wrapper .column-left .advantages-wrapper .single-adv p {
    width: 100%;
    text-align: center;
  }
}
.advantages .container-wrapper .column-right {
  width: 40%;
}
@media screen and (max-width: 56.25rem) {
  .advantages .container-wrapper .column-right {
    width: 100%;
  }
}
.advantages .container-wrapper .column-right .adnvantages-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 34.375rem) {
  .advantages .container-wrapper .column-right .adnvantages-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.advantages .container-wrapper .column-right .adnvantages-visuals .visual {
  width: 100%;
  height: auto;
}
.advantages .container-wrapper .column-right .adnvantages-visuals .visual img {
  width: 100%;
  height: auto;
}
.advantages .container-wrapper .column-right .adnvantages-visuals .visual:last-child {
  grid-column: span 2;
  max-width: none;
}
.advantages .container-wrapper .column-right .adnvantages-visuals .visual:last-child p {
  font-size: 0.8rem;
  font-weight: 200;
  width: 100%;
  text-align: center;
}

.contains {
  width: 100%;
  height: auto;
}
.contains .container-wrapper {
  padding: 3.125rem 0rem;
  max-width: 75rem;
}
.contains .container-wrapper h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .contains .container-wrapper h2 {
    text-align: center;
  }
}
.contains .container-wrapper .price {
  margin-top: 3.125rem;
  padding: 1.25rem;
  background-color: #EFEEEB;
  border-radius: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .contains .container-wrapper .price {
    width: 100%;
  }
}
.contains .container-wrapper .price h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}
.contains .container-wrapper .include-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .contains .container-wrapper .include-tiles {
    grid-template-columns: 1fr;
  }
}
.contains .container-wrapper .include-tiles .single-tile {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  background-color: #EFEEEB;
  padding: 1.25rem;
  border-radius: 1.25rem;
}
.contains .container-wrapper .include-tiles .single-tile .tile-header {
  width: 100%;
  display: flex;
  justify-content: stertch;
  align-items: center;
  padding-bottom: 1.25rem;
  gap: 1.25rem;
}
.contains .container-wrapper .include-tiles .single-tile .tile-header .icon {
  width: 3.125rem;
  min-width: 3.125rem;
  height: 3.125rem;
  background-color: #054240;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contains .container-wrapper .include-tiles .single-tile .tile-header .icon img {
  width: 80%;
  height: auto;
}
.contains .container-wrapper .include-tiles .single-tile .tile-header h2 {
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .contains .container-wrapper .include-tiles .single-tile .tile-header h2 {
    text-align: left;
  }
}
.contains .container-wrapper .include-tiles .single-tile .tile-body ul {
  list-style: none;
  padding-left: 1.25rem;
}
.contains .container-wrapper .include-tiles .single-tile .tile-body ul li {
  position: relative;
  font-weight: 300;
}
.contains .container-wrapper .include-tiles .single-tile .tile-body ul li::after {
  content: "";
  width: 0.313rem;
  height: 0.313rem;
  min-width: 0.313rem;
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  background-color: #054240;
  border-radius: 50%;
}

.issues {
  width: 100%;
  height: auto;
  background-color: #EFEEEB;
  padding-bottom: 3.125rem;
}
.issues .container-wrapper {
  width: 100%;
  max-width: 75rem;
  padding: 3.125rem 0rem;
}
.issues .container-wrapper h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 56.25rem) {
  .issues .container-wrapper h2 {
    text-align: center;
    width: 100%;
  }
}
.issues .container-wrapper .issues-wrapper {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 56.25rem) {
  .issues .container-wrapper .issues-wrapper {
    flex-direction: column;
  }
}
.issues .container-wrapper .issues-wrapper .issues-column {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  padding: 2.2rem;
  flex: 1;
  gap: 2rem;
}
@media screen and (max-width: 56.25rem) {
  .issues .container-wrapper .issues-wrapper .issues-column:nth-child(2) {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 48rem) {
  .issues .container-wrapper .issues-wrapper .issues-column:nth-child(2) {
    margin-top: 0rem;
  }
}
.issues .container-wrapper .issues-wrapper .issues-column::after {
  width: 37%;
  height: 100%;
  content: "";
  z-index: 1;
  background-color: #D9D9D9;
  position: absolute;
  padding: 1.25rem;
  padding-bottom: 0rem;
  border-radius: 1.25rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 56.25rem) {
  .issues .container-wrapper .issues-wrapper .issues-column::after {
    left: 9%;
  }
}
@media screen and (max-width: 48rem) {
  .issues .container-wrapper .issues-wrapper .issues-column::after {
    display: none;
  }
}
.issues .container-wrapper .issues-wrapper .issues-column .issue {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 56.25rem) {
  .issues .container-wrapper .issues-wrapper .issues-column .issue {
    width: 100%;
  }
}
@media screen and (max-width: 48rem) {
  .issues .container-wrapper .issues-wrapper .issues-column .issue {
    width: 100%;
    flex-direction: column;
    gap: 1.25rem;
    background-color: #D9D9D9;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
}
.issues .container-wrapper .issues-wrapper .issues-column .issue img {
  max-width: 50px;
  min-width: 50px;
  width: 100%;
  padding-left: 0.625rem;
}
@media screen and (max-width: 48rem) {
  .issues .container-wrapper .issues-wrapper .issues-column .issue img {
    transform: rotate(90deg);
  }
}
.issues .container-wrapper .issues-wrapper .issues-column .issue p {
  max-width: 200px;
  text-align: center;
  font-weight: 300;
}

.support {
  width: 100%;
  height: auto;
  background-color: #EFEEEB;
  padding-bottom: 4rem;
}
.support .container-wrapper {
  width: 100%;
  max-width: 75rem;
  padding: 3.125rem 0rem;
  flex-direction: row;
  gap: 1.25rem;
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper {
    flex-direction: column;
    gap: 3.125rem;
  }
}
.support .container-wrapper .left {
  width: 50%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .left {
    width: 100%;
  }
}
@media screen and (max-width: 56.25rem) {
  .support .container-wrapper .left {
    justify-content: center;
    align-items: center;
  }
}
.support .container-wrapper .left h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .left h2 {
    width: 100%;
  }
}
@media screen and (max-width: 56.25rem) {
  .support .container-wrapper .left h2 {
    text-align: center;
    width: 100%;
  }
}
.support .container-wrapper .left p {
  font-weight: 250;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media screen and (max-width: 56.25rem) {
  .support .container-wrapper .left p {
    text-align: center;
    width: 100%;
  }
}
.support .container-wrapper .left .dp-button p {
  margin-bottom: 0;
}
.support .container-wrapper .right {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 350px;
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .right {
    width: 60%;
  }
}
@media screen and (max-width: 48rem) {
  .support .container-wrapper .right {
    width: 100%;
    flex-direction: column;
    max-width: unset;
    max-height: unset;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
  }
}
.support .container-wrapper .right img {
  width: auto;
  height: 100%;
  min-height: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 48rem) {
  .support .container-wrapper .right img {
    display: none;
  }
}
.support .container-wrapper .right .single-support {
  z-index: 2;
  position: absolute;
  max-width: 8.5rem;
}
@media screen and (max-width: 48rem) {
  .support .container-wrapper .right .single-support {
    position: unset;
    width: 100%;
    max-width: unset;
    max-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.support .container-wrapper .right .single-support h3 {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
  text-align: center;
}
@media screen and (max-width: 48rem) {
  .support .container-wrapper .right .single-support h3 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px dashed #2B8C85;
  }
}
.support .container-wrapper .right .single-support p {
  font-size: 0.8rem;
  font-weight: 300;
}
@media screen and (max-width: 48rem) {
  .support .container-wrapper .right .single-support p {
    font-weight: 300;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    max-width: 28.125rem;
  }
}
.support .container-wrapper .right .single-support:nth-child(1) {
  top: -2%;
  left: 11%;
}
@media screen and (max-width: 75rem) {
  .support .container-wrapper .right .single-support:nth-child(1) {
    left: 7%;
  }
}
@media screen and (max-width: 68.75rem) {
  .support .container-wrapper .right .single-support:nth-child(1) {
    left: 2%;
  }
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .right .single-support:nth-child(1) {
    left: 6%;
  }
}
@media screen and (max-width: 56.875rem) {
  .support .container-wrapper .right .single-support:nth-child(1) {
    left: 2%;
  }
}
@media screen and (max-width: 56.875rem) {
  .support .container-wrapper .right .single-support:nth-child(1) {
    left: -4%;
  }
}
.support .container-wrapper .right .single-support:nth-child(2) {
  top: 41%;
  right: 11%;
}
@media screen and (max-width: 75rem) {
  .support .container-wrapper .right .single-support:nth-child(2) {
    right: 6%;
  }
}
@media screen and (max-width: 68.75rem) {
  .support .container-wrapper .right .single-support:nth-child(2) {
    right: 3%;
  }
}
@media screen and (max-width: 65.625rem) {
  .support .container-wrapper .right .single-support:nth-child(2) {
    right: -1%;
  }
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .right .single-support:nth-child(2) {
    right: 7%;
  }
}
@media screen and (max-width: 56.875rem) {
  .support .container-wrapper .right .single-support:nth-child(2) {
    right: -4%;
  }
}
.support .container-wrapper .right .single-support:nth-child(3) {
  bottom: -22%;
  left: 11%;
}
@media screen and (max-width: 75rem) {
  .support .container-wrapper .right .single-support:nth-child(3) {
    left: 7%;
  }
}
@media screen and (max-width: 68.75rem) {
  .support .container-wrapper .right .single-support:nth-child(3) {
    left: 2%;
  }
}
@media screen and (max-width: 65.625rem) {
  .support .container-wrapper .right .single-support:nth-child(3) {
    left: -1%;
  }
}
@media screen and (max-width: 62.5rem) {
  .support .container-wrapper .right .single-support:nth-child(3) {
    left: 6%;
  }
}
@media screen and (max-width: 56.875rem) {
  .support .container-wrapper .right .single-support:nth-child(3) {
    left: -4%;
  }
}

.team {
  width: 100%;
  height: auto;
}
.team .container-wrapper {
  padding: 3.125rem 0rem;
  max-width: 75rem;
}
.team .container-wrapper h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .team .container-wrapper h2 {
    text-align: center;
  }
}
.team .container-wrapper .team-members {
  margin-top: 4rem;
  padding: 3.125rem;
  border-radius: 1.25rem;
  box-shadow: 11px 11px 31px 6px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 48rem) {
  .team .container-wrapper .team-members {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.team .container-wrapper .team-members .member {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.team .container-wrapper .team-members .member img {
  max-width: 250px;
  border-radius: 1.25rem;
  overflow: hidden;
}
.team .container-wrapper .team-members .member h2 {
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  font-size: 1.2rem;
  text-align: left;
}
.team .container-wrapper .team-members .member p {
  font-size: 0.8rem;
  color: #2B8C85;
}

.faq {
  width: 100%;
  height: auto;
  background-color: #EFEEEB;
}
.faq .container-wrapper {
  padding: 3.125rem 0rem;
  max-width: 75rem;
}
.faq .container-wrapper h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .faq .container-wrapper h2 {
    text-align: center;
  }
}
.faq .container-wrapper .faq-accordion {
  background-color: #ffffff;
  padding: 1.25rem 3.125rem;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 70%;
}
@media screen and (max-width: 48rem) {
  .faq .container-wrapper .faq-accordion {
    max-width: 100%;
    padding: 1.25rem;
  }
}
.faq .container-wrapper .faq-accordion details {
  padding: 1.25rem 0rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
}
.faq .container-wrapper .faq-accordion details summary {
  width: 100%;
  flex: 1;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.faq .container-wrapper .faq-accordion details summary::-webkit-details-marker {
  display: none;
}
.faq .container-wrapper .faq-accordion details summary .faq-icon {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.faq .container-wrapper .faq-accordion details summary .faq-icon span {
  width: 100%;
  height: 2px;
  background-color: #2B8C85;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq .container-wrapper .faq-accordion details summary .faq-icon span:nth-child(2) {
  transform: rotate(90deg);
}
.faq .container-wrapper .faq-accordion details .faq-answer {
  flex: 1;
  padding-top: 1.25rem;
}
.faq .container-wrapper .faq-accordion details .faq-answer p {
  font-weight: 300;
  line-height: 1.4;
}
.faq .container-wrapper .faq-accordion details[open] summary .faq-icon span:nth-child(2) {
  transform: rotate(0deg);
}

.contact {
  width: 100%;
  height: auto;
  background-color: #054240;
}
.contact .container-wrapper {
  padding: 3.125rem 0rem;
  max-width: 75rem;
  flex-direction: row;
  gap: 3.125rem;
  justify-content: start;
  align-items: start;
}
@media screen and (max-width: 48rem) {
  .contact .container-wrapper {
    flex-direction: column;
  }
}
.contact .container-wrapper .left {
  width: 50%;
}
@media screen and (max-width: 48rem) {
  .contact .container-wrapper .left {
    width: 100%;
  }
}
.contact .container-wrapper .left h2 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3.125rem;
  color: #ffffff;
}
@media screen and (max-width: 48rem) {
  .contact .container-wrapper .left h2 {
    text-align: center;
  }
}
.contact .container-wrapper .left p {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 3.125rem;
}
.contact .container-wrapper .left .contact-ways {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 1.25rem;
}
.contact .container-wrapper .left .contact-ways .contact-way {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.contact .container-wrapper .left .contact-ways .contact-way .icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
}
.contact .container-wrapper .left .contact-ways .contact-way .icon img {
  width: 100%;
  height: auto;
}
.contact .container-wrapper .left .contact-ways .contact-way a {
  text-decoration: none;
  color: #ffffff;
}
.contact .container-wrapper .right {
  width: 50%;
}
@media screen and (max-width: 48rem) {
  .contact .container-wrapper .right {
    width: 100%;
  }
}
.contact .container-wrapper .right .contact-form {
  background-color: #ffffff;
  padding: 1.25rem;
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}

footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 3.125rem;
  padding-top: 3.125rem;
}
footer .footer-wrapper {
  width: 100%;
  height: 100%;
  max-width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
}
@media screen and (max-width: 48rem) {
  footer .footer-wrapper {
    flex-direction: column;
  }
}
footer .footer-wrapper .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 48rem) {
  footer .footer-wrapper .footer-top {
    flex-direction: column;
    gap: 3.125rem;
  }
}
footer .footer-wrapper .footer-top .logo {
  width: 100%;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-wrapper .footer-top .logo img {
  width: 100%;
  height: auto;
}
footer .footer-wrapper .footer-top .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
footer .footer-wrapper .footer-top .socials p {
  font-size: 0.8rem;
  font-weight: 300;
}
footer .footer-wrapper .footer-top .socials .socials-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
footer .footer-wrapper .footer-top .socials .socials-icon a {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
}
footer .footer-wrapper .footer-top .socials .socials-icon a svg {
  width: 100%;
  height: auto;
  transition: fill 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  fill: #000;
}
footer .footer-wrapper .footer-top .socials .socials-icon a:hover svg {
  fill: #2B8C85;
}
footer .footer-wrapper .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 48rem) {
  footer .footer-wrapper .footer-bottom {
    flex-direction: column-reverse;
    gap: 3.125rem;
    text-align: center;
  }
}
footer .footer-wrapper .footer-bottom .caption {
  grid-row: 2;
  grid-column: 2;
  font-size: 0.8rem;
  font-weight: 300;
}
footer .footer-wrapper .footer-bottom .caption a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #2B8C85;
}
footer .footer-wrapper .footer-bottom .important-links {
  grid-row: 2;
  grid-column: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  footer .footer-wrapper .footer-bottom .important-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
footer .footer-wrapper .footer-bottom .important-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.8rem;
  font-weight: 300;
}
footer .footer-wrapper .footer-bottom .important-links a:hover, footer .footer-wrapper .footer-bottom .important-links a:focus, footer .footer-wrapper .footer-bottom .important-links a:active {
  color: #2B8C85;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  scroll-behavior: smooth;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.gd-download ul {
  list-style: none;
}
.gd-download ul li {
  padding: 0.625rem 1.25rem;
  background-color: #EFEEEB;
  color: #2B8C85;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}
.gd-download ul li a {
  text-decoration: underline;
  color: #2B8C85;
}

.gd-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gd-container .gd-sign-form {
  padding: 1.25rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 1.25rem;
}
.gd-container .gd-sign-form label {
  font-size: 0.825rem;
  color: #2B8C85;
  font-weight: bold;
  flex: 1;
  text-align: left;
  display: flex;
  justify-content: start;
  align-items: end;
}
.gd-container .gd-sign-form input {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid #2B8C85;
  outline: none;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}
.gd-container .gd-sign-form .accept {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.8rem;
}
.gd-container .gd-sign-form .accept input {
  width: auto;
}
.gd-container .gd-sign-form .accept a {
  color: #2B8C85;
}
.gd-container .gd-sign-form button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border: 2px solid #2B8C85;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  position: relative;
  cursor: pointer;
  background-color: unset;
  overflow: hidden;
  font-size: 1rem;
}
.gd-container .gd-sign-form button::after {
  content: "";
  width: 100%;
  height: 0%;
  background-color: #2B8C85;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.gd-container .gd-sign-form button:hover, .gd-container .gd-sign-form button:focus, .gd-container .gd-sign-form button:active {
  color: #ffffff;
}
.gd-container .gd-sign-form button:hover::after, .gd-container .gd-sign-form button:focus::after, .gd-container .gd-sign-form button:active::after {
  height: 100%;
}

.hidden-input-row {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
/*# sourceMappingURL=main.min.css.map */
