@charset "UTF-8";
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", sans-serif;
  /* Tipografía moderna y legible */
  background-color: #1a1a1a;
  /* Fondo oscuro */
  color: #fff;
  /* Texto blanco */
  line-height: 1.6;
}

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

/* Centrado general */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Espaciado entre secciones */
section {
  padding: 60px 20px;
}

/* Títulos principales */
h1,
h2 {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  color: #fff;
}

button,
.btn {
  display: inline-block;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 100;
}
.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.navbar .container .navbar-date,
.navbar .container .navbar-logo,
.navbar .container .navbar-actions {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .container .navbar-date {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar .container .navbar-date .navbar-date-wrapper {
  font-size: 0.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 0.5px solid #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 32px 6px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 32px 6px;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.navbar .container .navbar-date .navbar-date-wrapper:hover {
  background-color: #000;
  border: 0.5px solid #000;
}
.navbar .container .navbar-date .navbar-date-wrapper .calendar-wrapper {
  border-radius: 50%;
  height: 30px;
  background-color: #fff;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.navbar .container .navbar-date .navbar-date-wrapper .calendar-wrapper .calendar {
  width: 25px;
  height: 25px;
}
.navbar .navbar-logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar .navbar-logo img {
  max-height: 75px;
}
.navbar .navbar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
.navbar .navbar-actions .navbar-register {
  background-color: #fff;
  color: #000;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.navbar .navbar-actions .navbar-register:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .navbar .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar .container .navbar-logo {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .navbar .container .navbar-logo img {
    max-height: 50px;
  }
  .navbar .container .navbar-actions {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .navbar .container .navbar-actions .navbar-register {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {
  .navbar .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}

#hero {
  background-image: url("/assets/img/HE_rocas.webp");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  #hero {
    padding: 120px 0 0;
  }
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  max-width: unset;
  padding: 0;
}
#hero .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), to(#1a1a1a));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #1a1a1a 100%);
  z-index: 3;
  pointer-events: none;
}
#hero .container .bike,
#hero .container .rocks,
#hero .container .mundobike-logo {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
#hero .container h1 {
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 0;
  font-family: "Anton", sans-serif;
  color: #fff;
  font-weight: 400;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #hero .container h1 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 567px) {
  #hero .container h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 480px) {
  #hero .container h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 390px) {
  #hero .container h1 {
    font-size: 3rem;
  }
}
#hero .container h1 .epic {
  font-size: 13rem;
}
@media screen and (max-width: 768px) {
  #hero .container h1 .epic {
    font-size: 12rem;
  }
}
@media screen and (max-width: 567px) {
  #hero .container h1 .epic {
    font-size: 11rem;
  }
}
@media screen and (max-width: 480px) {
  #hero .container h1 .epic {
    font-size: 10rem;
  }
}
@media screen and (max-width: 390px) {
  #hero .container h1 .epic {
    font-size: 8rem;
  }
}
#hero .container .by {
  z-index: 3;
  font-size: 2rem;
}
@media screen and (max-width: 567px) {
  #hero .container .by {
    font-size: 1.3rem;
  }
}
#hero .container .mundobike-logo {
  z-index: 3;
  max-width: 280px;
}
@media screen and (max-width: 567px) {
  #hero .container .mundobike-logo {
    max-width: 200px;
  }
}
#hero .container .bike {
  z-index: 2;
  margin-top: -170px;
  max-width: 650px;
}
@media screen and (max-width: 768px) {
  #hero .container .bike {
    max-width: 90%;
  }
}
@media screen and (max-width: 567px) {
  #hero .container .bike {
    margin-top: -150px;
  }
}
@media screen and (max-width: 480px) {
  #hero .container .bike {
    margin-top: -120px;
  }
}
@media screen and (max-width: 390px) {
  #hero .container .bike {
    margin-top: -100px;
  }
}
#hero .container .rocks {
  position: relative;
  z-index: 3;
  margin-top: -260px;
  max-width: 100%;
}
@media screen and (min-width: 1800px) {
  #hero .container .rocks {
    margin-top: -300px;
  }
}
@media screen and (min-width: 1960px) {
  #hero .container .rocks {
    margin-top: -350px;
  }
}
@media screen and (max-width: 991px) {
  #hero .container .rocks {
    margin-top: -200px;
  }
}
@media screen and (max-width: 768px) {
  #hero .container .rocks {
    margin-top: -150px;
  }
}
@media screen and (max-width: 567px) {
  #hero .container .rocks {
    margin-top: -100px;
  }
}
@media screen and (max-width: 390px) {
  #hero .container .rocks {
    margin-top: -90px;
  }
}
@media screen and (max-width: 332px) {
  #hero .container .rocks {
    margin-top: -70px;
  }
}

#event-info {
  padding-top: 10px;
}
#event-info .container {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #2b2b2b;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 60px;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 75px 80px;
  position: relative;
  width: 100%;
  z-index: 1;
}
#event-info .container .text-col {
  width: 50%;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#event-info .container .text-col .heading {
  line-height: 1.1;
  text-align: left;
  margin-bottom: 10px;
}
#event-info .container .text-col .description {
  font-size: 1.2rem;
  margin-top: 15px;
}
#event-info .container .text-col .info-items {
  margin-top: 15px;
}
#event-info .container .text-col .info-items .item {
  font-size: 1.2rem;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 500;
}
#event-info .container .text-col .info-items .item .icon {
  max-width: 20px;
}
#event-info .container .text-col .btn {
  margin-top: 20px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  padding: 12px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
#event-info .container .text-col .btn:hover {
  background-color: #000;
  color: #fff;
}
#event-info .container .video-col {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#event-info .container .video-col iframe {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media screen and (max-width: 991px) {
  #event-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 50px 20px;
  }
  #event-info .container .text-col,
  #event-info .container .video-col {
    width: 100%;
    text-align: center;
  }
  #event-info .container .text-col {
    margin-top: 40px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 991px) and (max-width: 567px) {
  #event-info .container .text-col {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  #event-info .container .text-col .heading {
    font-size: 1.5rem;
  }
  #event-info .container .text-col .description {
    font-size: 1rem;
    text-align: left;
  }
  #event-info .container .text-col .info-items .item {
    padding: 12px 0;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #event-info .container .text-col .btn {
    font-size: 0.9rem;
    padding: 10px 15px;
    margin-top: 25px;
  }
  #event-info .container .video-col iframe {
    height: 400px;
  }
}

#gradient-separator-1 {
  padding: 0;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#2b2b2b));
  background: linear-gradient(to bottom, #1a1a1a, #2b2b2b);
  width: 100%;
}
@media screen and (max-width: 991px) {
  #gradient-separator-1 {
    height: 50px;
  }
}

#general-description {
  background-color: #2b2b2b;
  color: #fff;
  padding: 60px 20px;
  text-align: left;
}
#general-description .container {
  background: #1a1a1a;
  border-radius: 60px;
  overflow: hidden;
  padding: 75px 80px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  #general-description .container {
    padding: 50px 20px;
  }
}
#general-description .container h2.heading {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  #general-description .container h2.heading {
    font-size: 1.5rem;
  }
}
#general-description .container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
#general-description .container .btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  margin: auto;
  margin-top: 40px;
}
#general-description .container .btn:hover {
  background-color: #000;
  color: #fff;
}
#general-description .container .accordion-section {
  margin: 40px 0;
}
#general-description .container .accordion-section .accordion {
  border: 1px solid #fff;
  border-radius: 12px;
  overflow: hidden;
}
#general-description .container .accordion-section .accordion .accordion-header {
  width: 100%;
  padding: 15px 20px;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#general-description .container .accordion-section .accordion .accordion-header:hover {
  background-color: #2b2b2b;
}
#general-description .container .accordion-section .accordion .accordion-content {
  display: none;
  background-color: #2b2b2b;
  padding: 20px;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
#general-description .container .accordion-section .accordion .accordion-content .description {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
#general-description .container .accordion-section .accordion .accordion-content .categories-table {
  width: 100%;
  border-collapse: collapse;
}
#general-description .container .accordion-section .accordion .accordion-content .categories-table th,
#general-description .container .accordion-section .accordion .accordion-content .categories-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #dee2e6;
}
#general-description .container .accordion-section .accordion .accordion-content .categories-table th {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
}
#general-description .container .accordion-section .accordion .accordion-content .categories-table tbody tr:nth-child(odd) {
  background-color: #1a1a1a;
}
#general-description .container .accordion-section .accordion .accordion-content .categories-table tbody tr:nth-child(even) {
  background-color: #2b2b2b;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#gradient-separator-2 {
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#1a1a1a));
  background: linear-gradient(to bottom, #2b2b2b, #1a1a1a);
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 991px) {
  #gradient-separator-2 {
    height: 50px;
  }
}

#sponsors {
  padding-top: 10px;
}
#sponsors .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 50px;
  width: 100%;
  z-index: 1;
}
#sponsors .container .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(20% - 40px);
          flex: 1 1 calc(20% - 40px);
  max-width: 180px;
  max-height: 200px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #sponsors .container .logo {
    max-width: 200px;
  }
}

footer {
  padding: 60px 20px 0 20px;
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 0;
  }
}
footer .container {
  background-color: #525252;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  opacity: 1;
  text-align: center;
  position: relative;
  width: 100%;
  padding-top: 60px;
}
footer .container .footer-bg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-position: center bottom;
     object-position: center bottom;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bg {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
footer .container .col-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991px) {
  footer .container .col-wrapper {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  footer .container .col-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .container .col-wrapper .footer-col {
  padding: 10px 30px;
  width: 30%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  footer .container .col-wrapper .footer-col {
    width: 100%;
    margin-top: 40px;
  }
  footer .container .col-wrapper .footer-col:first-of-type {
    margin-top: 0;
  }
}
footer .container .col-wrapper .footer-col .logo {
  max-width: 200px;
  margin-top: 20px;
}
footer .container .col-wrapper .footer-col .logo:first-of-type {
  margin-top: 0px;
}
footer .container .col-wrapper .footer-col .info {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
}
footer .container .col-wrapper .footer-col .btn {
  margin-top: 20px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  padding: 10px 12px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
footer .container .col-wrapper .footer-col .btn:hover {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 991px) {
  footer .container .col-wrapper .footer-col.spacer {
    display: none;
  }
}
footer .container .copyright {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  footer .container .copyright {
    margin-top: 40px;
  }
}/*# sourceMappingURL=main.css.map */