@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* COLORS */
:root {
  --red: #ef4046;
  --blackbody: #232323;
  --white: #FFFFFF;
  --gray: #838383;
  --montserrat: "Montserrat", sans-serif;
  --nunito: "Nunito", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  color: var(--white);
  background-color: var(--blackbody);
}


/* CUSTOM PRELOAD */

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
  width: 100%;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
  background: #575757;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: linear-gradient(301deg, rgba(111, 12, 135, 0.20) -43.48%, rgba(228, 45, 83, 0.20) 37.34%, rgba(239, 86, 62, 0.20) 99.73%, rgba(245, 102, 53, 0.20) 170.63%, rgba(239, 64, 70, 0.20) 240.11%);
}

:focus,
:active,
:visited {
  outline: none;
}

.hidden {
  display: none !important;
}

/* TYPOGRAPHY */
a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: inherit;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}


.mySwiper {
  padding-left: 16px;
  padding-right: 16px;
}

.swiper {
  width: 100%;
  height: auto; 
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-self: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}


.swiper-pagination {
  bottom: -60px!important;
  left: 50%!important;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  background: var(--white);
  width: auto;
  padding: 5px 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 120px;
}

.swiper-pagination-bullet {
  margin-right: 10px;
  background-color: var(--gray);
  opacity: 1;

  &:last-child {
    margin-right: 0px;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--red);
}