@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #121212;
  color: #EAEAEA;
  cursor: default;
}

a,
button,
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet {
  cursor: pointer !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  animation: pulse 2s infinite ease-in-out;
}

#preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ----------------------------------------- */
/* --- ESTILOS DE LA BARRA DE SCROLL --- */
/* ----------------------------------------- */
html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
html::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 10px;
}
html::-webkit-scrollbar-thumb {
  background-color: #005A9C;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: rgb(0, 119.4230769231, 207);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #005A9C #1a1a1a;
}

.fade-up, .fade-in, .slide-in-left, .slide-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
  opacity: 1;
  transform: none !important;
}

.fade-up {
  transform: translateY(50px);
}

.fade-in {
  transform: scale(0.95);
}

.slide-in-left {
  transform: translateX(-50px);
}

.slide-in-right {
  transform: translateX(50px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.navbar.scrolled {
  background-color: rgba(18, 18, 18, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 5%;
}
.navbar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 10;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.navbar__item {
  position: relative;
}
.navbar__link {
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  display: block;
  border-radius: 8px;
  transition: color 0.3s;
}
.navbar__link.is-active {
  color: #121212;
}
.navbar__magic-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #FFFFFF;
  z-index: -1;
  border-radius: 8px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s;
}
.navbar__cta {
  padding: 0.75rem 1.5rem;
  background-color: #005A9C;
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}
.navbar__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 90, 156, 0.3);
}
@media (max-width: 900px) {
  .navbar .navbar__link {
    color: #FFFFFF !important;
  }
  .navbar .navbar__link:hover {
    color: #FFFFFF !important;
  }
  .navbar .navbar__link.is-active {
    color: #FFFFFF !important;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: block;
    cursor: pointer;
    z-index: 10;
  }
  .navbar__hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
  }
  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 60%;
    max-width: 300px;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }
  .navbar__menu.is-active {
    transform: translateX(0);
  }
  .navbar__magic-line {
    display: none;
  }
  .navbar__link:hover {
    color: #FFFFFF;
  }
  .navbar__hamburger.is-active .navbar__hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar__hamburger.is-active .navbar__hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.is-active .navbar__hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.button:hover {
  transform: translateY(-3px);
}
.button--primary {
  background-color: #005A9C;
  color: #FFFFFF;
}
.button--primary:hover {
  box-shadow: 0 10px 20px rgba(0, 90, 156, 0.3);
}

.btn-floating {
  position: fixed;
  right: 25px;
  overflow: hidden;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  border: 2px solid transparent;
  z-index: 1000;
  color: white;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  background-color: rgba(26, 26, 26, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.btn-floating:hover {
  width: auto;
  padding: 0 25px;
  cursor: pointer;
}
.btn-floating span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  display: none;
  vertical-align: middle;
}
.btn-floating:hover span {
  display: inline-block;
}
.btn-floating i {
  vertical-align: middle;
}

/* --- Posiciones y Colores Específicos --- */
/* WhatsApp */
.btn-floating.whatsapp {
  bottom: 240px;
  border-color: #46C254;
  color: #46C254;
}
.btn-floating.whatsapp:hover {
  box-shadow: 0 0 20px 0 rgba(70, 194, 84, 0.7);
  background-color: #46C254;
  color: #fff;
}

/* Phone */
.btn-floating.phone {
  bottom: 170px;
  border-color: #005A9C;
  color: #005A9C;
}
.btn-floating.phone:hover {
  box-shadow: 0 0 20px 0 rgba(0, 90, 156, 0.7);
  background-color: #005A9C;
  color: #fff;
}

/* Email */
.btn-floating.email {
  bottom: 100px;
  border-color: #AAB3BE;
  color: #AAB3BE;
}
.btn-floating.email:hover {
  box-shadow: 0 0 20px 0 rgba(170, 179, 190, 0.7);
  background-color: #AAB3BE;
  color: #1a1a1a;
}

/* LinkedIn */
.btn-floating.linkedin {
  bottom: 30px;
  border-color: #0A66C2;
  color: #0A66C2;
}
.btn-floating.linkedin:hover {
  box-shadow: 0 0 20px 0 rgba(10, 102, 194, 0.7);
  background-color: #0A66C2;
  color: #fff;
}

/* --- Responsividad para Móviles --- */
@media (max-width: 767px) {
  .btn-floating {
    width: 50px;
    height: 50px;
    right: 15px;
    font-size: 22px;
  }
  .btn-floating:hover {
    width: 50px;
    padding: 0;
  }
  .btn-floating:hover span {
    display: none;
  }
  .btn-floating.whatsapp {
    bottom: 20px;
  }
  .btn-floating.phone {
    bottom: 85px;
  }
  .btn-floating.email {
    bottom: 150px;
    display: none;
  }
  .btn-floating.linkedin {
    bottom: 215px;
    display: none;
  }
}
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  color: #FFFFFF;
  background-color: #121212;
}

.hero-slider {
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.hero-slider .hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transform: scale(1.15);
  transition: transform 8s ease-out;
}
.swiper-slide-active .hero-slider .hero__bg-image {
  transform: scale(1);
}
.hero-slider .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.6);
  z-index: 2;
}
.hero-slider .hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
.hero-slider .hero__content.is-visible {
  opacity: 1;
}
.hero-slider .hero__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero-slider .hero__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-slider .hero__title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.hero-slider .hero__subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-slider .hero__subtitle {
    font-size: 1.1rem;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .hero-slider .hero__subtitle {
    font-size: 1rem;
  }
}
.swiper-slide-active .hero-slider {
  opacity: 1;
  transform: scale(1.1) translateY(-10px);
}
.swiper-slide-next .hero-slider, .swiper-slide-prev .hero-slider {
  opacity: 0.5;
  transform: scale(1.05) translateY(10px);
}
.hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  transition: background-color 0.3s;
}
.hero-slider .swiper-pagination-bullet-active {
  background: #005A9C;
}
.hero-slider .swiper-parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pan-background {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.about {
  margin: 2rem 2rem 2rem 2rem;
  background-color: #121212;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  padding: 5rem 5%;
  padding: 6rem 5%;
  background-color: #121212;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    margin: 1rem 1rem 1rem 1rem;
    padding: 3.5rem 5%;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern-bg.jpg");
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
  animation: pan-background 60s linear infinite;
}
.about__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.about__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #005A9C;
  margin-bottom: 1.5rem;
}
.about__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #EAEAEA;
}
@media (min-width: 1600px) {
  .about__container {
    max-width: 1400px;
    gap: 6rem;
  }
  .about__title {
    font-size: 3rem;
  }
  .about__text {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .about__container {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 6rem 5%;
  position: relative;
  background-color: #000000;
  margin: 1rem 1rem 1rem 1rem;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  padding: 5rem 5%;
}

.services__animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  border-radius: 16px;
  overflow: hidden;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2000px;
  will-change: transform;
  transition: transform 0.5s ease-out;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.services__container {
  margin: 2rem 2rem 2rem 2rem;
  background-color: #121212;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .services__container {
    margin: 1rem 1rem 1rem 1rem;
    padding: 3.5rem 5%;
  }
}

.services__sticky-pane {
  position: sticky;
  top: calc(44vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.services__image-wrapper {
  width: 95%;
  max-width: 600px;
  max-height: 600px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #222;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
}

.services__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.services__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-item {
  padding-bottom: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-item:last-child {
  padding-bottom: 0;
}
.service-item__title {
  font-size: 2.5rem;
  color: #005A9C;
  margin-bottom: 1rem;
}
.service-item__description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  color: #EAEAEA;
}

@media (max-width: 900px) {
  .services__container {
    grid-template-columns: 1fr;
    margin: 1rem -1rem 1rem -1rem !important;
    padding: 3.5rem 5%;
  }
  .services__sticky-pane {
    position: relative;
    top: auto;
  }
  .services__image-wrapper {
    height: 50vh;
    aspect-ratio: unset;
    margin-bottom: 2rem;
  }
  .service-item {
    padding-bottom: 4rem;
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
.products {
  margin: 2rem 2rem 2rem 2rem;
  background-color: #121212;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  padding: 5rem 5%;
  padding: 6rem 0;
  background-color: #121212;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .products {
    margin: 1rem 1rem 1rem 1rem;
    padding: 3.5rem 5%;
  }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.particles-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.products__container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.products__main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #FFFFFF;
}

.products__carousel {
  width: 100%;
  padding: 2rem 0;
}
.products__carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
}
.products__carousel .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
  transition: all 0.3s;
}
.products__carousel .swiper-pagination-bullet-active {
  background-color: #005A9C;
  transform: scale(1.2);
  opacity: 1;
}
.products__carousel .swiper-button-prev,
.products__carousel .swiper-button-next {
  color: #005A9C;
  width: 50px;
  height: 50px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 50%;
  transition: all 0.3s;
}
.products__carousel .swiper-button-prev::after,
.products__carousel .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: 900;
}
.products__carousel .swiper-button-prev:hover,
.products__carousel .swiper-button-next:hover {
  background-color: #005A9C;
  color: #121212;
}

.product-card {
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2e2e2e;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.swiper-slide-active .product-card {
  border-color: rgb(0, 119.4230769231, 207);
  box-shadow: 0 0 25px rgba(0, 90, 156, 0.2);
}
.product-card:hover {
  transform: translateY(-10px);
}

.product-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.product-card__description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #EAEAEA;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.partners {
  margin: 2rem 2rem 2rem 2rem;
  background-color: #121212;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  padding: 5rem 5%;
  padding: 6rem 5%;
  background-color: #121212;
}
@media (max-width: 768px) {
  .partners {
    margin: 1rem 1rem 1rem 1rem;
    padding: 3.5rem 5%;
  }
}
.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.partners__main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: #FFFFFF;
}
.partners__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
}
.partners__logo {
  height: 65px;
  max-width: 250px;
  animation: floatAnimation 6s ease-in-out infinite;
  transition: transform 0.3s, filter 0.3s;
}
.partners__logo:nth-child(2) {
  animation-delay: 2s;
}
.partners__logo:nth-child(3) {
  animation-delay: 4s;
}
.partners__logo:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  filter: drop-shadow(0 8px 15px rgba(0, 90, 156, 0.25));
}
.partners__logo.spotlight-bg {
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 90, 156, 0.1), transparent 25%);
}

.partners.spotlight-bg {
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 90, 156, 0.18) 0%, rgba(0, 90, 156, 0.1) 40%, transparent 100%);
  transition: background 0.2s ease;
}

@keyframes move-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.footer {
  padding: 6rem 5% 0;
  background-color: #1a1a1a;
  background: linear-gradient(-45deg, #121212, #1a1a1a, #2e2e2e, #005A9C);
  background-size: 400% 400%;
  animation: move-gradient 20s ease infinite;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.footer__description {
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.footer__contact-details p {
  margin-bottom: 0.5rem;
}
.footer__contact-details p a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.footer__contact-details p a:hover {
  color: #005A9C;
}
.footer__bottom-bar {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #2e2e2e;
  color: #888;
  font-size: 0.9rem;
}

.footer__form .form-group {
  margin-bottom: 1.5rem;
}
.footer__form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer__form .form-group input, .footer__form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: #2e2e2e;
  border: 1px solid #444;
  border-radius: 4px;
  color: #EAEAEA;
  font-family: inherit;
  transition: border-color 0.3s;
}
.footer__form .form-group input:focus, .footer__form .form-group textarea:focus {
  outline: none;
  border-color: #005A9C;
}
.footer__form .form-group textarea {
  resize: vertical;
}

.thank-you-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.thank-you-card {
  background-color: #1a1a1a;
  padding: 4rem;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  max-width: 600px;
}
.thank-you-card__title {
  font-size: 2.5rem;
  color: #005A9C;
  margin-bottom: 1rem;
}
.thank-you-card__text {
  margin-bottom: 2rem;
  line-height: 1.6;
}/*# sourceMappingURL=main.css.map */