@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 90%;
  margin: 0 auto;
}

header {
  position: relative;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}
header .header-sup {
  background-color: #0e0e0e;
  display: none;
}
header .header-sup .container {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
}
header .header-sup .container a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .header-sup .container a i {
  margin-right: 0.4rem;
}
header .header-sup .container a:hover {
  color: #f1e400;
}
header .header-sup .container .sociales a {
  color: white;
  margin-left: 1rem;
}
header .header-sup .container .sociales a:hover {
  color: #f1e400;
}
@media (min-width: 768px) {
  header .header-sup {
    display: block;
  }
}
header .header-inf {
  width: 100%;
  background-color: #f1e400;
}
header .header-inf .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .header-inf .container .logo {
  width: 50%;
}
header .header-inf .container .logo img {
  width: 50%;
}
header .header-inf .container .menu-mobile {
  width: 50%;
}
header .header-inf .container .menu-mobile .fa-bars {
  font-size: 2rem !important;
  float: right;
  margin-right: 1rem;
  margin-top: 2rem;
  cursor: pointer;
}
header .header-inf .container .menu {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  padding-top: 0.1rem;
  padding-bottom: 0.7rem;
  margin-top: 0px;
  width: 100%;
}
header .header-inf .container .menu.show {
  max-height: 500px;
  margin-top: 1rem;
  border-top: 1px solid rgb(44, 44, 44);
}
header .header-inf .container .menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .header-inf .container .menu ul li {
  list-style: none;
  margin-top: 1rem;
}
header .header-inf .container .menu ul li a {
  font-size: 0.9rem;
  font-weight: bold;
  color: #0e0e0e;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
header .header-inf .container .menu ul li a:hover {
  color: #d01919;
}
@media (min-width: 768px) {
  header .fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #0e0e0e !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  header .new-aling-menu {
    display: flex;
    justify-content: end;
    align-items: center;
  }
  header .new-width-logo {
    width: 8% !important;
  }
  header .header-inf {
    background-color: rgba(0, 0, 0, 0.027);
    transition: all 0.3s ease;
  }
  header .header-inf .container .logo {
    width: 10%;
  }
  header .header-inf .container .logo img {
    width: 100%;
  }
  header .header-inf .menu-mobile {
    display: none;
  }
  header .header-inf .container .menu {
    max-height: none;
    width: 70%;
    border-top: 0px;
  }
  header .header-inf .container .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }
  header .header-inf .container .menu ul li {
    margin-left: 1.5rem;
  }
  header .header-inf .container .menu ul li a {
    color: #ffffff;
  }
  header .header-inf .container .menu ul li a:hover {
    color: #f1e400;
  }
}

@media (min-width: 768px) {
  header {
    position: absolute;
  }
}
.section-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.section-slider ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%) translateY(30px);
  text-align: center;
  color: white;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@media (min-width: 768px) {
  .slide-content {
    top: 30%;
  }
}
.slide-content h3 {
  font-size: 3rem;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 1.1rem;
  width: 75%;
  margin: 0 auto;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .slide-content h3 {
    font-size: 5.5rem;
  }
  .slide-content p {
    font-size: 1.5rem;
  }
}
@keyframes fadeUp {
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.slide-btn {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  padding: 17px 24px;
  background-color: #f1e400;
  color: #0e0e0e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1rem;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Círculos desde los lados */
.slide-btn::before,
.slide-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #0e0e0e;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.5s ease, width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

/* Uno entra desde la izquierda */
.slide-btn::before {
  left: -20px;
}

/* Otro entra desde la derecha */
.slide-btn::after {
  right: -20px;
}

/* Hover: círculos se encuentran y crecen */
.slide-btn:hover::before,
.slide-btn:hover::after {
  transform: translateY(-50%) scale(15);
}

/* Cambiar texto a oscuro cuando el fondo es amarillo */
.slide-btn:hover {
  color: #f1e400;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
}

.nav.prev {
  left: 20px;
}

.nav.next {
  right: 20px;
}

.section-promocion {
  display: flex;
  flex-wrap: wrap;
}
.section-promocion div {
  width: 100%;
  height: 280px;
  background-color: blue;
  padding: 1rem 2rem;
}
.section-promocion div i {
  font-size: 5rem;
  margin-top: 2rem;
  color: #f1e400;
}
.section-promocion div h2 {
  font-size: 1.8rem;
  padding: 1rem 0;
  text-transform: uppercase;
}
.section-promocion div p {
  padding-bottom: 1rem;
}
.section-promocion div:nth-child(1) {
  background-color: #0e0e0e;
}
.section-promocion div:nth-child(1) h2 {
  color: #ffffff;
}
.section-promocion div:nth-child(1) p {
  color: #ffffff;
}
.section-promocion div:nth-child(2) {
  position: relative;
  background: url("https://thepixelcurve.com/wp/fitner/wp-content/uploads/2024/10/FIT0053.jpg");
  background-size: 125%;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  order: 3;
}
.section-promocion div:nth-child(2) h2 {
  font-size: 2.7rem;
  color: #ffffff;
  text-align: center;
}
.section-promocion div:nth-child(2) button {
  background-color: #f1e400;
  color: #0e0e0e;
  border: none;
  padding: 1.2rem 2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-promocion div:nth-child(2) button:hover {
  background-color: #0e0e0e;
  color: #f1e400;
}
.section-promocion div:nth-child(2) > * {
  position: relative;
  z-index: 2; /* eleva los elementos hijos sobre el ::after */
}
.section-promocion div:nth-child(2)::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.section-promocion div:nth-child(3) {
  background-color: #f1e400;
  order: 2;
}
.section-promocion div:nth-child(3) i {
  color: #2c2c2c;
}
.section-promocion div:nth-child(3) h2 {
  color: #0e0e0e;
}
.section-promocion div:nth-child(3) p {
  color: #2c2c2c;
}
@media (min-width: 768px) {
  .section-promocion div {
    width: 33.33%;
    height: 400px;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
  }
  .section-promocion div:nth-child(2) {
    order: 2;
  }
  .section-promocion div:nth-child(3) {
    order: 3;
  }
}

@media (min-width: 768px) {
  .section-promocion {
    flex-wrap: nowrap;
  }
}
.section-clases {
  background-color: #2c2c2c;
}
.section-clases .container {
  text-align: center;
  padding: 1.5rem 0;
}
.section-clases .container h2 {
  font-size: 1.8rem;
  color: #f1e400;
}
.section-clases .container p {
  color: #ffffff;
  margin: 1rem 0;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .section-clases .container h2 {
    font-size: 3rem;
    margin-top: 2rem;
  }
  .section-clases .container p {
    width: 45%;
    font-size: 0.95rem;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .section-clases .container .clases {
    justify-content: space-between;
  }
}
.section-clases .container .clases {
  display: flex;
  flex-wrap: wrap;
}
.section-clases .container .clases .clase:hover .content-img::after {
  background-color: rgba(5, 5, 5, 0);
}
.section-clases .container .clases .clase {
  width: 100%;
}
.section-clases .container .clases .clase .content-img {
  background-color: yellow;
  position: relative;
}
.section-clases .container .clases .clase .content-img img {
  display: block;
  width: 100%;
}
.section-clases .container .clases .clase .content-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.15);
  transition: all 0.2s ease;
}
.section-clases .container .clases .clase .clase-text {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
.section-clases .container .clases .clase .clase-text span:first-child {
  color: #f1e400;
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.section-clases .container .clases .clase .clase-text span:last-child {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-clases .container .clases .clase {
    width: 23%;
  }
  .section-clases .container .clases .clase .clase-text {
    align-items: start;
  }
  .section-clases .container .clases .clase .clase-text span:first-child {
    font-size: 1.5rem;
  }
}

footer {
  background-color: #0e0e0e;
}
@media (min-width: 768px) {
  footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
    justify-content: space-between;
  }
}
footer .container {
  display: flex;
  flex-wrap: wrap;
}
footer .container div {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
@media (min-width: 768px) {
  footer .container div {
    width: 20%;
  }
  footer .container div:nth-child(1) {
    width: 30%;
  }
  footer .container div:nth-child(2) {
    width: 15%;
    padding-left: 1rem;
  }
  footer .container div:nth-child(5) {
    width: 100%;
  }
}
@media (min-width: 768px) {
  footer .container .footer-logo {
    padding-top: 0px;
  }
  footer .container .footer-logo img {
    margin-top: -30px;
  }
}
footer .container .footer-logo {
  padding: 0.5rem 0;
}
footer .container .footer-logo img {
  width: 30%;
}
footer .container .footer-logo p {
  margin-top: 1rem;
  color: #d8d6d6;
}
footer .container .footer-menu h3, footer .container .footer-sociales h3, footer .container .footer-contacto h3 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}
footer .container .footer-menu a, footer .container .footer-sociales a, footer .container .footer-contacto a {
  text-decoration: none;
  color: #d8d6d6;
  margin-top: 1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  width: auto;
}
footer .container .footer-menu a:hover, footer .container .footer-sociales a:hover, footer .container .footer-contacto a:hover {
  color: #f1e400;
}
footer .container .derechos {
  border-top: 1px solid #2c2c2c;
  padding: 1rem 0;
  text-align: center;
  color: #d8d6d6;
}
@media (min-width: 768px) {
  footer .container .derechos {
    padding-top: 2rem;
    margin-top: 4rem;
  }
}

.image-hero {
  width: 100%;
  height: 330px;
  position: relative;
}
.image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 1;
}

.image-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .image-hero {
    height: 70vh;
  }
}
.section-nosotros {
  background-color: #ffffff;
}
.section-nosotros .image-nosotros {
  width: 100%;
  height: 330px;
  position: relative;
}
.section-nosotros .image-nosotros img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-nosotros .image-nosotros h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 1;
}
.section-nosotros .image-nosotros::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .section-nosotros .image-nosotros {
    height: 70vh;
  }
}
@media (min-width: 768px) {
  .section-nosotros .nosotros .container {
    justify-content: space-between;
    padding-top: 2rem;
  }
}
.section-nosotros .nosotros .container {
  display: flex;
  flex-wrap: wrap;
}
.section-nosotros .nosotros .container .content-image {
  width: 100%;
  padding: 1rem 0;
}
.section-nosotros .nosotros .container .content-image img {
  width: 100%;
}
.section-nosotros .nosotros .container .content-nosotros {
  width: 100%;
}
.section-nosotros .nosotros .container .content-nosotros h2 {
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.section-nosotros .nosotros .container .content-nosotros p {
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.section-nosotros .nosotros .container .content-nosotros .btn-nosotros {
  text-decoration: none;
  margin: 2rem 0;
  background-color: #ffce25;
  padding: 1rem 2rem;
  display: block;
  width: 25%;
  text-align: center;
  color: #2c2c2c;
  transition: all 0.4s ease;
}
.section-nosotros .nosotros .container .content-nosotros .btn-nosotros:hover {
  background-color: #0e0e0e;
  color: #ffffff;
}
@media (min-width: 768px) {
  .section-nosotros .nosotros .container .content-image {
    width: 45%;
  }
  .section-nosotros .nosotros .container .content-nosotros {
    width: 50%;
  }
  .section-nosotros .nosotros .container .content-nosotros h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
  }
}

.section-trainers {
  background-color: #2c2c2c;
}
.section-trainers .container {
  padding: 2rem 0;
  text-align: center;
}
.section-trainers .container h2 {
  font-size: 2rem;
  color: #f1e400;
}
.section-trainers .container p {
  margin: 1rem 0;
  color: #ffffff;
}
.section-trainers .container .trainers {
  display: flex;
  flex-wrap: wrap;
}
.section-trainers .container .trainers .traine {
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}
.section-trainers .container .trainers .traine img {
  width: 100%;
}
.section-trainers .container .trainers .traine .content-text {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
}
.section-trainers .container .trainers .traine .content-text h3 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
}
.section-trainers .container .trainers .traine .content-text p {
  display: none;
  color: #ffffff;
  padding: 0 3rem;
}
.section-trainers .container .trainers .traine .content-text .sociales {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.section-trainers .container .trainers .traine .content-text .sociales a {
  font-size: 1.5rem;
  text-decoration: none;
  margin: 0 0.5rem;
  color: #ffffff;
}
.section-trainers .container .trainers .traine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s ease;
  background-color: rgba(0, 0, 0, 0);
}
.section-trainers .container .trainers .traine:hover::after {
  background-color: #f1e400;
}
.section-trainers .container .trainers .traine:hover .content-text h3,
.section-trainers .container .trainers .traine:hover .content-text p,
.section-trainers .container .trainers .traine:hover .content-text .sociales a {
  color: #0e0e0e;
}
.section-trainers .container .trainers .traine:hover .content-text p {
  display: block;
}
@media (min-width: 768px) {
  .section-trainers .container .trainers {
    justify-content: space-between;
  }
  .section-trainers .container .trainers .traine {
    width: 24%;
  }
  .section-trainers .container .trainers .traine .content-text h3 {
    font-size: 1.7rem;
  }
  .section-trainers .container .trainers .traine .content-text .sociales a {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .section-trainers .container {
    padding-bottom: 7rem;
  }
  .section-trainers .container h2 {
    font-size: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .section-trainers .container .parrafo-principal {
    margin-bottom: 3rem;
    padding: 0 20rem;
  }
}

.section-planes .content-planes .container {
  padding: 2rem 0;
  text-align: center;
}
.section-planes .content-planes .container h2 {
  font-size: 2rem;
  padding: 1rem 0;
  text-transform: uppercase;
}
.section-planes .content-planes .container p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-planes .content-planes .container h2 {
    font-size: 3rem;
  }
  .section-planes .content-planes .container p {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.section-planes .content-planes .container .planes .plan {
  background-color: #ffffff;
  margin: 1rem 0;
  padding: 1rem 0;
  border-radius: 0.5rem;
  border: 1px solid #ffce25;
}
.section-planes .content-planes .container .planes .plan h3 {
  font-size: 1.6rem;
  margin: 1rem 0;
}
.section-planes .content-planes .container .planes .plan span {
  font-size: 2rem;
  display: block;
  margin-bottom: 3rem;
  font-weight: bold;
}
.section-planes .content-planes .container .planes .plan p {
  color: #2c2c2c;
}
.section-planes .content-planes .container .planes .plan a {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: block;
  text-decoration: none;
  background-color: #ffce25;
  color: #0e0e0e;
  padding: 1rem 1.5rem;
  width: 40%;
  margin-left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.section-planes .content-planes .container .planes .plan a:hover {
  background-color: #2c2c2c;
}
@media (min-width: 768px) {
  .section-planes .content-planes .container .planes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .section-planes .content-planes .container .planes .plan {
    width: 31%;
  }
}

.section-galery {
  background-color: #ffffff;
}
.section-galery .content-galery .container {
  padding: 2rem 0;
}
.section-galery .content-galery .container h2 {
  margin: 2rem 0;
  font-size: 1.7rem;
  text-align: center;
  text-transform: uppercase;
}
.section-galery .content-galery .container .images-galery {
  display: flex;
  flex-wrap: wrap;
}
.section-galery .content-galery .container .images-galery .image-galery {
  width: 50%;
  cursor: pointer;
  overflow: hidden;
}
.section-galery .content-galery .container .images-galery .image-galery img {
  display: block;
  width: 100%;
}
.section-galery .content-galery .container .images-galery .image-galery:hover img {
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.section-galery .content-galery .container .lightbox {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}
.section-galery .content-galery .container .lightbox.show {
  opacity: 1;
  visibility: visible;
}
.section-galery .content-galery .container .lightbox-content {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(255, 210, 9, 0.5);
  border-radius: 8px;
  border: 2px solid #f1e400;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}
.section-galery .content-galery .container .lightbox.show .lightbox-content {
  transform: scale(1);
}
.section-galery .content-galery .container .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.section-galery .content-galery .container .close:hover {
  color: #ccc;
}
@media (min-width: 768px) {
  .section-galery .content-galery .container {
    padding: 3rem 0;
  }
  .section-galery .content-galery .container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .section-galery .content-galery .container .images-galery {
    padding-bottom: 3rem;
  }
  .section-galery .content-galery .container .images-galery .image-galery {
    width: 25%;
  }
}

.section-contact .contact {
  padding: 3rem 0;
}
.section-contact .contact .container {
  display: flex;
  flex-wrap: wrap;
}
.section-contact .contact .container .text-map {
  width: 100%;
}
.section-contact .contact .container .text-map h2 {
  margin: 2rem 0;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.section-contact .contact .container .text-map p {
  margin-bottom: 2rem;
}
.section-contact .contact .container .text-map .map iframe {
  width: 100%;
  height: 300px;
}
.section-contact .contact .container .text-map .date {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.section-contact .contact .container .text-map .date div {
  padding-top: 1rem;
  width: 100%;
}
.section-contact .contact .container .text-map .date div span:first-child {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}
.section-contact .contact .container .text-map .date div span:last-child {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #2c2c2c;
}
.section-contact .contact .container .text-map .date div span:last-child i {
  color: #0e0e0e;
  font-size: 1.1rem;
  background-color: rgb(247, 225, 104);
  padding: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  line-height: 20px;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .section-contact .contact .container .text-map .date div {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .section-contact .contact .container .text-map .date {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .section-contact .contact .container .text-map {
    width: 44%;
  }
}
.section-contact .contact .container .form-content {
  background-color: #f1e400;
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
}
.section-contact .contact .container .form-content h2 {
  color: #0e0e0e;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.section-contact .contact .container .form-content form {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.section-contact .contact .container .form-content form input, .section-contact .contact .container .form-content form textarea {
  width: 100%;
  margin: 1rem 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none;
  color: #2c2c2c;
  padding-left: 1rem;
}
.section-contact .contact .container .form-content form input:focus, .section-contact .contact .container .form-content form textarea:focus {
  outline: none;
}
.section-contact .contact .container .form-content form .btn-form {
  background-color: #0e0e0e;
  color: #f1e400;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}
.section-contact .contact .container .form-content form .btn-form:hover {
  background-color: #2c2c2c;
  color: #ffffff;
}
@media (min-width: 768px) {
  .section-contact .contact .container .form-content {
    width: 42%;
  }
}
@media (min-width: 768px) {
  .section-contact .contact .container {
    justify-content: space-between;
  }
}

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