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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
@media (max-width: 991px) {
  html {
    scroll-padding-top: 4rem;
  }
}

body {
  font-family: "Eurostar", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-color: #111111;
  color: #fff;
}
@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 {
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .title {
    font-size: 3.2rem;
  }
}
.title strong {
  color: #eb6900;
}

@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: 700;
  line-height: 1;
  padding: 1.4rem 2rem;
  border-radius: 0;
  transition: all 0.2s;
  position: relative;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: inherit;
  opacity: 1;
  transform: translateZ(-1px);
  top: 0;
  left: 0;
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::before {
  animation-name: buttonAnimation;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@keyframes buttonAnimation {
  0% {
    transform: scaleX(0.9) scaleY(0.9) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
  50% {
    transform: scaleX(1.1) scaleY(1.2) translateZ(-1px);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2) scaleY(1.4) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
}
.btn--skewed {
  transform: skewX(-17deg);
}
.btn--skewed > * {
  transform: skewX(17deg);
}
.btn--skewed:hover {
  transform: scale(1.05) skewX(-17deg);
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--orange {
  color: #eb6900;
}
.btn--orange:hover {
  color: #eb6900;
}
.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-orange {
  background-color: #eb6900;
}
.btn--bg-orange:hover {
  background-color: #9f4700;
}
.btn--bg-green {
  background-color: #03b31e;
}
.btn--bg-green:hover {
  background-color: #026811;
}

.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;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  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 {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.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: #25d366;
  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: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.footer {
  background-color: #eb6900;
  color: #fff;
  padding: 4rem 0;
}
@media (max-width: 575px) {
  .footer-logo {
    text-align: center;
  }
}
.footer-logo img {
  max-width: 100%;
  margin-bottom: 2rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 575px) {
  .footer-links ul {
    align-items: center;
  }
}
.footer-links ul li a {
  color: #fff;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-infos {
  margin-bottom: 2.4rem;
}
@media (max-width: 575px) {
  .footer-infos {
    text-align: center;
  }
}
.footer-infos__item {
  display: block;
  color: #fff;
}
.footer-infos__item:not(:last-child) {
  margin-bottom: 0.8rem;
}
.footer-infos__item:hover {
  text-decoration: underline;
}
.footer-title {
  display: block;
  font-weight: 900;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 575px) {
  .footer-social {
    text-align: center;
  }
}
.footer-social__items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 575px) {
  .footer-social__items {
    justify-content: center;
  }
}
.footer-social__item {
  font-size: 2.4rem;
  color: #fff;
  transition: all 0.2s ease-in;
}
.footer-social__item:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .footer-form {
    margin-top: 2rem;
  }
}
@media (max-width: 575px) {
  .footer-form .footer-title {
    text-align: center;
  }
}
.footer-form .form-group label {
  position: absolute;
  left: -9999px;
}
.footer-form .form-group input,
.footer-form .form-group textarea {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.footer-form .form-group input::placeholder,
.footer-form .form-group textarea::placeholder {
  color: #a34b03;
}
.footer-form .form-submit {
  text-align: right;
}
.footer-form .form-submit .btn {
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  min-width: 20rem;
}
.footer-copyright__content {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright__policies {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-copyright__policies a {
  color: #fff;
}
.footer-copyright__policies a:hover {
  text-decoration: underline;
}

.header {
  position: fixed;
  width: 100%;
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.05);
  background-color: rgba(25, 25, 25, 0.72);
  z-index: 5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header-main {
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 991px) {
  .header-main {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .header-logo img {
    width: 20rem;
  }
}
.header-nav {
  margin-left: auto;
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #292929;
  }
}
.header-nav__list > li {
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    text-align: center;
    text-align: left;
  }
  .header-nav__list > li > span {
    display: flex;
    justify-content: space-between;
  }
  .header-nav__list > li > span > a {
    padding: 1rem;
    color: #fff;
    display: block;
    font-weight: 400;
  }
  .header-nav__list > li > span > button {
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 0 2rem;
  }
  .header-nav__list > li > span > button i {
    transition: all 0.2s ease-in;
  }
  .header-nav__list > li > span > button.collapsed i {
    transform: rotate(-90deg);
  }
  .header-nav__list > li ul li:last-child {
    border: none;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 0.8rem 0rem;
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.2s;
  color: #fff;
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem;
    color: #fff;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 0;
  transition: all 0.2s;
}
.header-nav__list > li > a:hover::after,
.header-nav__list > li span a:hover::after {
  width: 100%;
}
.header-nav__list > li > a.active,
.header-nav__list > li span a.active {
  color: #eb6900;
}
.header-nav__list > li > a.active::after,
.header-nav__list > li span a.active::after {
  background-color: #eb6900;
}
.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: #fff;
  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: #fff;
}
.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: #fff;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-social {
    gap: 1.2rem;
  }
}
.header-social__item {
  transition: all 0.2s ease-in;
}
.header-social__item.instagram {
  font-size: 2rem;
  color: #fff;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.header-social__item:hover {
  transform: scale(1.1);
}
.header-social img {
  height: 2.4rem;
  width: auto;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  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: center;
}
.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 .hero {
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .home .hero {
    padding-top: 8rem;
  }
}
@media (max-width: 767px) {
  .home .hero {
    margin-bottom: 4rem;
  }
}
.home .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  margin-left: auto;
  width: 62.2rem;
  max-width: 100%;
  padding-left: 1.8rem;
}
@media (max-width: 767px) {
  .home .hero-content {
    padding-right: 1.8rem;
    margin: auto;
    gap: 1rem;
  }
}
.home .hero-content img {
  width: 20rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .home .hero-content img {
    display: none;
  }
}
.home .hero-subtitle p {
  margin-bottom: 0;
}
.home .hero-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .home .hero-image img {
    width: 40rem;
    max-width: 100%;
    display: block;
    margin: auto;
    margin-top: 4rem;
  }
}
.home .about {
  margin-bottom: 8rem;
  position: relative;
}
@media (max-width: 767px) {
  .home .about {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .home .about-text {
    margin-bottom: 2.4rem;
  }
}
.home .about-images {
  display: flex;
  gap: 1rem;
}
.home .about-images .about-image {
  flex: 1;
  position: relative;
}
.home .about-images .about-image::before {
  position: absolute;
  content: "";
  width: 8rem;
  height: 10rem;
  background-color: #eb6900;
}
.home .about-images .about-image img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.home .about-images .about-image:first-child::before {
  left: -0.8rem;
  bottom: -0.8rem;
}
.home .about-images .about-image:last-child::before {
  top: -0.8rem;
  right: -0.8rem;
}
.home .about-bg {
  position: absolute;
  width: 80rem;
  max-width: 100%;
  z-index: -1;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -35%);
}
.home .services {
  position: relative;
  padding-bottom: 4rem;
}
.home .services-header {
  text-align: center;
  margin-bottom: 2rem;
}
.home .services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 991px) {
  .home .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 474px) {
  .home .services-list {
    grid-template-columns: 1fr;
  }
}
.home .services-item {
  aspect-ratio: 323/400;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in;
}
.home .services-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.4s ease-in;
}
.home .services-item__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  transition: all 0.2s ease-in;
}
.home .services-item__title {
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
}
.home .services-item:hover {
  transform: scale(1.05);
}
.home .services-item:hover .services-item__image {
  filter: brightness(1.2);
}
.home .services-bg {
  position: absolute;
  width: 70rem;
  max-width: 100%;
  z-index: -1;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -35%);
}
.home .projects {
  position: relative;
  color: #1e1e1e;
  padding: 4rem 0;
  background-color: #fff;
}
.home .projects > .container {
  position: relative;
  z-index: 1;
}
.home .projects-header {
  text-align: center;
  margin-bottom: 2rem;
}
.home .projects-carousel {
  margin-bottom: 2.4rem;
}
.home .projects-carousel__item {
  aspect-ratio: 358/316;
  position: relative;
  display: block;
  transition: all 0.2s ease-in;
}
.home .projects-carousel__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.home .projects-carousel__item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.home .projects-carousel__item:hover {
  transform: scale(1.05);
}
.home .projects-carousel__item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 3.2rem;
  z-index: 2;
}
.home .projects-bg {
  position: absolute;
  width: 70rem;
  max-width: 100%;
  z-index: 0;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 10%);
}
.home .testimonial {
  padding: 4rem 0;
  position: relative;
}
.home .testimonial-header {
  text-align: center;
  margin-bottom: 2rem;
}
.home .testimonial-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.home .testimonial-carousel .owl-prev {
  left: -50px;
}
.home .testimonial-carousel .owl-next {
  right: -50px;
}
.home .testimonial-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem !important;
}
.home .testimonial-item {
  border: 1px solid #fff;
  padding: 1.2rem;
  height: 100%;
  transition: all 0.2s ease-in;
}
.home .testimonial-item__header {
  margin-bottom: 0.4rem;
}
.home .testimonial-item__author {
  display: block;
  font-weight: 900;
  font-size: 2.4rem;
}
.home .testimonial-item__stars {
  display: flex;
  gap: 0.2rem;
}
.home .testimonial-item__stars i {
  font-size: 1.2rem;
  color: #ffa200;
}
.home .testimonial-item blockquote {
  line-height: 1.53;
}
.home .testimonial-item:hover {
  background-color: #1e1e1e;
}
.home .testimonial-bg {
  position: absolute;
  width: 100rem;
  max-width: 100%;
  z-index: 0;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -30%);
}
.home .opening {
  background: url("../images/opening-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0;
}
.home .opening-content {
  width: 60rem;
  max-width: 100%;
  margin: auto;
  text-align: center;
  padding: 0 1.8rem;
}
.home .opening-content .subtitle {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .home .opening-content .subtitle {
    font-size: 2rem;
  }
}
.home .opening-content .btn {
  text-transform: uppercase;
  font-size: 2rem;
}

.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: #292929;
  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: 8rem 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: #292929;
  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: #292929;
}
.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 {
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.default {
  padding: 8rem 0;
}

.container {
  max-width: 1280px;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-prev {
  left: -60px;
}
@media (max-width: 1400px) {
  .owl-carousel .owl-prev {
    left: 0 !important;
  }
}
.owl-carousel .owl-next {
  right: -60px;
}
@media (max-width: 1400px) {
  .owl-carousel .owl-next {
    right: 0 !important;
  }
}
.owl-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.owl-carousel .owl-nav [class*=owl-] {
  width: 4rem;
  height: 4rem;
  background-color: #eb6900 !important;
  color: #fff !important;
  border-radius: 50%;
  font-size: 2.4rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.2s;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
  background-color: #ff831f !important;
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

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