* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #292929;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

.page-padding {
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0;
  }
}

.title {
  color: #4aa3d8;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
}
.title--white {
  color: #fff;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s;
}
.btn--rounded {
  border-radius: 0.8rem;
}
.btn--glassed {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.26);
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  display: inline-block;
  transition: all 0.2s ease-in;
}
.btn--glassed:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--whatsapp {
  background-color: #0cac24;
  border-radius: 0.8rem;
  align-items: center;
  font-size: 1.4rem;
  padding: 0.4rem 1.6rem;
}
.btn--whatsapp i {
  font-size: 2rem;
}
.btn--whatsapp:hover {
  background-color: #097c1a;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-blue {
  background-color: #4aa3d8;
}
.btn--bg-blue:hover {
  background-color: #267cb0;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
  position: absolute;
  left: -9999px;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea,
.form-group select {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid #c8c8c8;
  color: #292929;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
}
.form-group textarea {
  min-height: 12rem;
}

.form-submit {
  position: relative;
  text-align: left;
}
.form-submit .btn {
  min-width: 12rem;
  background-color: #4aa3d8;
  color: #fff;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #0cac24;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #0e9d45;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.footer {
  padding: 4rem 0;
}
.footer-form h2 {
  font-weight: 700;
  color: #4aa3d8;
  font-size: 4.8rem;
}
.footer-form > p {
  color: #4aa3d8;
}
.footer-contact {
  width: 51rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .footer-contact {
    margin-top: 2rem;
  }
}
.footer-contact h2 {
  font-weight: 700;
  color: #4aa3d8;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.footer-contact__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.footer-contact__item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.footer-contact__item img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.footer-contact__item img.img-whatsapp {
  width: 5rem;
  height: 5rem;
}
.footer-contact__item span,
.footer-contact__item address {
  color: #5d5b73;
  font-weight: 500;
  margin: 0;
}

.header {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background-color: #4aa3d8;
}
.header-contact__content {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__content > div {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.header-contact__item span,
.header-contact__item address {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .header-contact__item span,
  .header-contact__item address {
    display: none;
  }
}
.header-contact__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-contact__social .social-item {
  font-size: 2rem;
  color: #fff;
}
.header-contact__social .social-item.whatsapp {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background-color: #0e9d45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 1.6rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  width: 100%;
  left: 0;
}
@media (max-width: 1199px) {
  .header-main {
    width: 98%;
    left: 50%;
    transform: translate(-50%);
  }
}
.header-logo img {
  width: 24rem;
}
@media (max-width: 991px) {
  .header-logo img {
    width: 20rem;
  }
}
.header-nav {
  flex: 1;
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    background-color: #4aa3d8;
    overflow: auto;
    transition: all 0.2s ease-in;
  }
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 999999;
  }
  .header-nav .close-btn {
    background-color: transparent;
    border: none;
    padding: 2rem;
    color: #fff;
  }
}
.header-nav__mobile {
  display: none;
}
@media (max-width: 991px) {
  .header-nav__mobile {
    display: block;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    align-items: flex-start;
  }
}
.header-nav__list > li {
  padding: 3rem 0;
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    padding: 0.8rem 2rem;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 0.8rem 0rem;
  font-weight: 500;
  transition: all 0.2s;
  color: #424155;
  font-size: 1.8rem;
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  height: 2px;
  background-color: #4aa3d8;
  width: 0;
  transition: all 0.2s;
}
.header-nav__list > li:hover > a,
.header-nav__list > li:hover span a, .header-nav__list > li.active > a,
.header-nav__list > li.active span a {
  color: #4aa3d8;
}
.header-nav__list > li:hover > a::after,
.header-nav__list > li:hover span a::after, .header-nav__list > li.active > a::after,
.header-nav__list > li.active span a::after {
  width: 100%;
}
.header-nav__list > li.active > a {
  font-weight: 700;
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #4aa3d8;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #4aa3d8;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #4aa3d8;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.back-to-top {
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  background-color: #4aa3d8;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.back-to-top i {
  font-size: 2rem;
  color: #fff;
}
.back-to-top:hover {
  background: #74b8e1;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/500;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: bottom;
  z-index: -1;
}
.banner-item__content {
  height: 100%;
  padding: 4rem;
  padding-top: 20rem;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .banner-item__content {
    padding: 2rem;
  }
}
.banner-item__title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: right;
  line-height: 1;
}
@media (max-width: 767px) {
  .banner-item__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 400px) {
  .banner-item__title {
    font-size: 2.6rem;
  }
}
.banner-item__title strong {
  color: #4aa3d8;
  display: block;
}
.banner-item__cta {
  font-size: 2rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #292929 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #434343 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.home .about {
  padding: 4rem 0;
}
.home .about-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.home .about-image {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .home .about-image {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.home .about-image img {
  width: 100%;
}
.home .parallax {
  background-image: url("../images/parallax-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 12rem 0 6rem 0;
  position: relative;
}
.home .parallax:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.home .parallax-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.home .parallax-content__title {
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.37);
}
@media (max-width: 991px) {
  .home .parallax-content__title {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .home .parallax-content__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .home .parallax-content__title {
    font-size: 2.8rem;
  }
}
.home .parallax-content__title strong {
  color: #fff;
  display: block;
  font-weight: 700;
}
.home .parallax-content__cta {
  margin-top: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 767px) {
  .home .parallax-content__cta {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .home .parallax-content__cta {
    font-size: 2rem;
  }
}
.home .services {
  padding: 4rem 0;
}
.home .services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .home .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 370px) {
  .home .services-list {
    grid-template-columns: 1fr;
  }
}
.home .services-list .service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home .services-list .service-item__thumb {
  aspect-ratio: 4/3;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.home .services-list .service-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.home .services-list .service-item__text {
  flex: 1;
  padding: 1rem;
  border-radius: 0 0 1rem 1rem;
  color: #5d5b73;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.home .services-list .service-item__text h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
.home .services-list .service-item__text p {
  font-weight: 300;
  line-height: 1.2;
}
.home .projects {
  background-color: #4aa3d8;
  padding: 4rem 0;
  margin: 4rem 0;
  overflow: hidden;
}
.home .projects-carousel {
  margin-top: 2rem;
}
.home .projects-carousel .owl-prev,
.home .projects-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home .projects-carousel .owl-prev {
  left: -6rem;
}
@media (max-width: 1270px) {
  .home .projects-carousel .owl-prev {
    left: 0;
  }
}
.home .projects-carousel .owl-next {
  right: -6rem;
}
@media (max-width: 1270px) {
  .home .projects-carousel .owl-next {
    right: 0;
  }
}
.home .projects-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.home .projects-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.home .projects-carousel .owl-nav [class*=owl-]:hover {
  background-color: #fff !important;
  color: #0c1442 !important;
  opacity: 1;
  text-decoration: none;
}
.home .projects-carousel .owl-stage {
  display: flex;
}
.home .projects-carousel .owl-stage .owl-item {
  align-self: stretch;
  margin-bottom: 1rem;
}
.home .projects .project-item {
  display: block;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home .projects .project-item__thumb img {
  aspect-ratio: 1;
  object-fit: cover;
}
.home .projects .project-item__title {
  background-color: #81d0ff;
  border-radius: 0 0 0.8rem 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #5d5b73;
  text-align: center;
  padding: 0.8rem 2rem;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.home .projects-cta {
  margin-top: 2rem;
}
.home .testimonial {
  margin-bottom: 4rem;
}
.home .testimonial-header {
  text-align: center;
  margin-bottom: 3.6rem;
}
.home .testimonial-header p {
  color: #353e52;
}
.home .testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2rem;
}
.home .testimonial-item__blockquote {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  flex: 1;
}
.home .testimonial-item__blockquote > img {
  width: 8rem !important;
}
.home .testimonial-item__blockquote blockquote {
  line-height: 1.25;
  font-size: 1.4rem;
  padding-top: 2rem;
}
.home .testimonial-item__info {
  display: flex;
  margin-top: 4rem;
  padding-left: 0.8rem;
  align-items: center;
  gap: 0.8rem;
}
.home .testimonial-item__info-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
}
.home .testimonial-item__info-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .testimonial-carousel .owl-stage {
  display: flex;
}
.home .testimonial-carousel .owl-stage .owl-item {
  align-self: stretch;
  margin-bottom: 1rem;
}

.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #4aa3d8;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #4aa3d8;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #4aa3d8;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.default-main {
  padding-top: 4rem;
}

.container {
  max-width: 1280px;
}

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