@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Corben:wght@400;700&display=swap");
.opacity {
  transition: all 0.8s;
}
.opacity.hidden {
  opacity: 0;
}
.opacity.show {
  opacity: 1;
}

.show {
  transition: all 0.5s;
  transition-delay: 0.5s;
}
.show.hidden {
  opacity: 0;
  translate: 0 15px;
}
.show.show {
  opacity: 1;
  translate: 0 0;
}

.linkIcon div,
.linkIcon a {
  background-color: #222220;
  padding: 10px 15px;
  border-radius: 8px;
  color: #f8ae00;
  width: fit-content;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.linkIcon div:hover,
.linkIcon a:hover {
  color: #fff;
  background-color: #f8ae00;
}
.linkIcon div span,
.linkIcon a span {
  font-weight: 600;
}

.linkIconClean {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  color: #333333;
  font-weight: 600;
}
.linkIconClean:hover {
  gap: 10px;
  color: #f8ae00;
}

.etiqueta {
  position: absolute;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
}

.caja {
  border-radius: 10px;
  background-color: #222220;
  padding: 20px 25px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.light-mode .caja {
  border: 1px solid #b0b8c8;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}
.caja:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 5px 9px 3px rgba(0, 0, 0, 0.15);
}

.cajaSecundaria {
  border-radius: 10px;
  background-color: #222220;
  transition: all 0.2s;
}
.light-mode .cajaSecundaria {
  background-color: #fff;
  border: 1px solid #b0b8c8;
}

a {
  transition: all 0.2s;
}
a:hover {
  color: #29a9d8;
}

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

html h1 {
  font-size: clamp(2rem, 2.25vw + 1rem, 4rem);
  line-height: 1.25;
  font-weight: 800;
}
html h2 {
  font-size: clamp(1.25rem, 1.75vw + 1rem, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
}
html h3 {
  font-size: clamp(1rem, 1.25vw + 1rem, 1.75rem);
  line-height: 1.25;
  font-weight: 600;
}
html h4 {
  font-size: clamp(0.75rem, 1vw + 1rem, 1.5rem);
  line-height: 1.25;
  font-weight: 500;
}
html h5 {
  font-size: clamp(0.5rem, 0.75vw + 1rem, 1.5rem);
  line-height: 1.25;
  font-weight: 500;
}
html h6 {
  font-size: clamp(0.5rem, 0.7vw + 1rem, 1.25rem);
  line-height: 1.25;
  font-weight: 700;
}
html P {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
html P.texto-lg {
  font-size: 1.25rem;
  line-height: 1.5;
}
html a {
  font-size: 1rem;
  text-decoration: none;
}
html span {
  font-size: 1rem;
}
html i {
  font-size: 1.2rem;
}
html ul {
  list-style: none;
}
html ul li {
  list-style: none;
}
html ol {
  list-style: decimal;
  list-style-position: inside;
  margin: 0;
}
html i {
  color: currentColor;
}
html button {
  font-family: "Instrument Sans", sans-serif;
  padding: 20px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}

body {
  font-family: "Instrument Sans", sans-serif;
}

img {
  font-style: italic;
  max-width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  shape-margin: 1rem;
}

main {
  padding-inline: 15px;
}

input, textarea {
  height: 55px;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-inline: 15px;
  border: 1px solid #b0b8c8;
  background-color: #e6f0ff;
  color: #f8ae00;
}

input[type=text]:focus, input[type=search]:focus, textarea:focus {
  outline: 0;
  border: 1px solid #f8ae00;
  box-shadow: #f8ae00 0 0 0 1px inset, #222220 0 0 0 5px;
  background-color: #c5cedd;
}
input[type=text]::placeholder, input[type=search]::placeholder, textarea::placeholder {
  color: #f8ae00;
}

input[type=button] {
  background-color: #222220;
  color: #f8ae00;
  font-weight: 800;
  font-size: 18px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
input[type=button]:hover {
  color: #fff;
  background-color: #f8ae00;
}

body {
  color: #333333;
  background-color: #222220;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  min-height: 100vh;
  scroll-behavior: smooth;
}
body .bgMain {
  z-index: 1;
  position: fixed;
  left: 0;
  bottom: 0px;
  opacity: 0.02;
}
body .bgMain svg {
  width: 50vh;
  fill: #fff;
}

main {
  position: relative;
  padding-inline: 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  main {
    padding-inline: 15px;
  }
}

.header {
  width: 100%;
  z-index: 2;
  top: 15px;
  position: fixed;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  .header {
    top: 10px;
  }
}
.header__cont {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  padding: 15px;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  .header__cont {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .header__cont {
    margin: 0 10px !important;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0px;
  justify-content: center;
}
.header__logo img {
  height: 75px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .header__logo img {
    height: 55px;
  }
}
.header__logo svg {
  height: 80px;
  margin-left: -10px;
  fill: #e6f0ff;
}
.header__logo svg .st1 {
  fill: #f8ae00 !important;
}
.header__logo svg .st0 {
  fill: #fff !important;
}
@media screen and (max-width: 576px) {
  .header__logo svg {
    height: 40px;
  }
}
.header__tools {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222220;
}
.header__tools a {
  color: currentColor;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #f8ae00;
  border-radius: 10px;
}
.header__tools a:hover {
  background-color: #ac7800;
}
.header__tools a span {
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .header__tools a {
    padding: 8px 10px;
    border-radius: 5px;
  }
  .header__tools a span {
    font-size: 13px;
  }
}
.header__menuMobile {
  display: none;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-inline: 15px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .header nav {
    border-left: none;
  }
}
.header nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header nav ul a {
  color: #e6f0ff;
  font-weight: 600;
}
.header nav ul a:hover {
  color: #f8ae00;
}
@media screen and (max-width: 576px) {
  .header nav ul {
    display: none;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  align-items: center;
  color: #e6f0ff;
}
@media screen and (max-width: 576px) {
  .hero {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    display: flex;
    align-items: center;
    gap: 10px;
    align-items: center;
    height: 100vh;
    padding-block: 30px;
  }
}
.hero__logo {
  position: relative;
  transition: all 0.2s;
}
.hero__logo--eventos svg {
  fill: #f8ae00;
  width: 650px;
  max-width: 650px;
}
@media screen and (max-width: 576px) {
  .hero__logo--eventos svg {
    max-width: 300px;
  }
}
.hero__logo--eventos svg path #startPath {
  transform-origin: center center;
}
.hero__logo--star {
  position: absolute;
  top: -25px;
  right: -35px;
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (max-width: 576px) {
  .hero__logo--star {
    top: -15px;
    right: -25px;
  }
}
.hero__logo--star svg {
  fill: #f8ae00;
  width: 65px;
}
@media screen and (max-width: 576px) {
  .hero__logo--star svg {
    width: 40px;
  }
}
.hero__logo--star.visible {
  animation: shinePulse 1.5s ease-in-out;
}
@keyframes shinePulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 180, 32, 0.8));
  }
}
.hero__info {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 890px;
  align-items: flex-start;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: max-height 0.8s ease, opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.hero__info.visible {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 576px) {
  .hero__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.hero__info figure {
  max-width: 400px;
  flex-shrink: 0;
}
.hero__info--data {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 1;
}
.hero__info--data h2 {
  color: #f8ae00;
}
.hero__info--data h3 {
  font-weight: 400;
}
.hero__info--data h3 strong {
  font-weight: 700;
  color: #f8ae00;
}
.hero__info--data h3 b {
  font-weight: 700;
}
.hero__info--tools {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222220;
}
.hero__info--tools a {
  color: currentColor;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: #f8ae00;
  border-radius: 10px;
}
.hero__info--tools a:hover {
  background-color: #ac7800;
}
.hero__info--tools a span {
  font-weight: 600;
  font-size: 18px;
}
.hero__claim {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  .hero__claim {
    justify-content: flex-start;
    width: fit-content;
  }
}
.hero__claim h1 {
  text-align: right;
  font-size: 18px;
  font-weight: 400;
}
.hero__claim h1 strong {
  display: none;
}
@media screen and (max-width: 576px) {
  .hero__claim h1 {
    font-size: 14px;
    text-align: center;
  }
}
.hero__claim svg {
  fill: #fff;
  width: 220px;
}
@media screen and (max-width: 576px) {
  .hero__claim svg {
    width: 90px;
  }
}
.hero__claim--bg {
  width: 120%;
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
  pointer-events: none;
}
.hero__img {
  grid-column: 5/7;
  position: relative;
  height: 100vh;
}
.hero__img figure img {
  width: 800px;
}

.subhero {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #e6f0ff;
}
@media screen and (max-width: 576px) {
  .subhero {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .subhero {
    height: auto;
    padding-bottom: 30px;
  }
}
.subhero__cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .subhero__cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.subhero__cont--info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subhero__cont--info p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.subhero__btn {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}
@media screen and (max-width: 576px) {
  .subhero__btn {
    padding-inline: 15px;
  }
}
.subhero__btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f8ae00;
  color: #222220;
  padding: 20px 40px;
  font-size: 24px;
  border-radius: 20px;
  transition: all 0.2s;
}
.subhero__btn a:hover {
  opacity: 0.7;
}
.subhero__btn a span {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .subhero__btn a span {
    font-size: 18px;
  }
}

.steps {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  margin-block: 50px;
  background-color: #f8ae00;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 576px) {
  .steps {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .steps {
    padding: 10px;
    border-radius: 5px;
  }
}
.steps__header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #222220;
  padding: 5px 35px 15px 5px;
  color: #e6f0ff;
}
@media screen and (max-width: 576px) {
  .steps__header {
    position: relative;
    padding: 10px;
    background-color: transparent;
    color: #222220;
  }
}
.steps__header h3, .steps__header h5 {
  z-index: 5;
  position: relative;
}
.steps__header--bordes {
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .steps__header--bordes {
    display: none;
  }
}
.steps__header--bordes .borde-l-b {
  width: 50px;
  height: 50px;
  background-color: #222220;
  position: absolute;
  left: 0;
  top: 100%;
}
.steps__header--bordes .borde-l-b::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f8ae00;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 20px 0 0 0;
}
.steps__header--bordes .borde-r-t {
  width: 50px;
  height: 50px;
  background-color: #222220;
  position: absolute;
  right: -49px;
  top: 0;
}
.steps__header--bordes .borde-r-t::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f8ae00;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 50px 0 0 0;
}
.steps__header--bordes .borde-r-b {
  width: 50px;
  height: 50px;
  background-color: #f8ae00;
  position: absolute;
  right: 0;
  bottom: 0;
}
.steps__header--bordes .borde-r-b::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #222220;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 0 100px 0;
}
.steps__cont {
  padding-top: 80px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps__cont {
    padding-top: 30px;
  }
}
.steps__cont--slide {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.steps__cont--slide--item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  width: fit-content;
}
@media screen and (max-width: 576px) {
  .steps__cont--slide--item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.steps__cont--slide--item--info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: fit-content;
}
.steps__cont--slide--item--info a {
  color: currentColor;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  width: fit-content;
}
.steps__cont--slide--item--info a:hover {
  background-color: #ac7800;
}
.steps__cont--slide--item--info a span {
  font-weight: 600;
  font-size: 18px;
}
.steps__cont--slide--item--info h5 {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.steps__cont--slide--item--info h5 span {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background-color: #222220;
  color: #f8ae00;
  border-radius: 60px;
  width: 40px;
  height: 40px;
}
.steps__cont--slide--item--info h6 {
  font-weight: 400;
}
.steps__cont--slide--item figure {
  width: 100%;
}
.steps__cont--slide--item figure img {
  width: 500px;
  height: auto;
  display: block;
}
.steps__cont--slide--btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 250px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps__cont--slide--btn {
    justify-content: center;
    width: 100%;
  }
}

.steps {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  margin-block: 50px;
  background-color: #f8ae00;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 576px) {
  .steps {
    padding-inline: 15px;
  }
}
.steps.empresa {
  background-color: #141413;
}
.empresa .steps__header {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  background-color: #222220;
  padding: 5px 5px 15px 35px;
  color: #e6f0ff;
}
@media screen and (max-width: 576px) {
  .empresa .steps__header {
    position: relative;
    padding: 10px;
    right: auto;
    left: 0;
    background-color: transparent;
  }
}
.steps__header h3, .steps__header h5 {
  z-index: 5;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 576px) {
  .steps__header h3, .steps__header h5 {
    text-align: left;
  }
}
.steps__header--bordes-empresa {
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .steps__header--bordes-empresa {
    display: none;
  }
}
.steps__header--bordes-empresa .borde-l-b {
  width: 50px;
  height: 50px;
  background-color: #222220;
  position: absolute;
  right: 0;
  top: 100%;
}
.steps__header--bordes-empresa .borde-l-b::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #141413;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 20px 0 0;
}
.steps__header--bordes-empresa .borde-r-t {
  width: 50px;
  height: 50px;
  background-color: #222220;
  position: absolute;
  left: -49px;
  top: 0;
}
.steps__header--bordes-empresa .borde-r-t::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #141413;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 50px 0 0;
}
.steps__header--bordes-empresa .borde-r-b {
  width: 50px;
  height: 50px;
  background-color: #141413;
  position: absolute;
  left: 0;
  bottom: 0;
}
.steps__header--bordes-empresa .borde-r-b::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #222220;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 0 0 100px;
}
.steps__cont {
  padding-top: 80px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps__cont {
    padding-top: 30px;
  }
}
.steps__cont--slide-empresa {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.steps__cont--slide-empresa--item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: #e6f0ff;
}
@media screen and (max-width: 576px) {
  .steps__cont--slide-empresa--item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.steps__cont--slide-empresa--item--info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: fit-content;
}
.steps__cont--slide-empresa--item--info a {
  color: #222220;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  width: fit-content;
}
.steps__cont--slide-empresa--item--info a:hover {
  background-color: #ac7800;
}
.steps__cont--slide-empresa--item--info a span {
  font-weight: 600;
  font-size: 18px;
}
.steps__cont--slide-empresa--item--info h5 {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.steps__cont--slide-empresa--item--info h5 span {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background-color: #222220;
  color: #f8ae00;
  border-radius: 60px;
  width: 40px;
  height: 40px;
}
.steps__cont--slide-empresa--item--info h6 {
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .steps__cont--slide-empresa--item--info h6 {
    font-size: 15px;
    line-height: 1.5;
  }
}
.steps__cont--slide-empresa--item figure {
  width: 100%;
}
.steps__cont--slide-empresa--item figure img {
  width: 500px;
  height: auto;
  display: block;
}
.steps__cont--slide-empresa--btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 250px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps__cont--slide-empresa--btn {
    justify-content: center;
    width: 100%;
  }
}

.swiper-slide figure {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.swiper-slide-active figure {
  opacity: 1;
  transform: translateY(0);
}

footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #e6f0ff;
  background-color: #222220;
  padding: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  footer {
    padding-inline: 15px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  border: 1px solid #222220;
  padding: 10px 14px;
  border-radius: 50px;
  color: #fff;
  background-color: #222220;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.swiper-container {
  padding-bottom: 20px;
}

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  padding-block: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-pagination-bullets span {
  color: #222220;
}
.swiper-pagination-bullets span:not(.swiper-pagination-bullet-active) {
  opacity: 0.5;
}
.swiper-pagination-bullets span.swiper-pagination-bullet {
  width: 18px;
  height: 5px;
  border-radius: 3px;
  background-color: #222220;
}
.swiper-pagination-bullets span.swiper-pagination-bullet .swiper-pagination-bullet-active {
  opacity: 1;
}

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