@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --white: #fff;
  --primary: #5fcf86;
}

html {
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
select,
textarea {
  background-color: transparent;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 0;
}

body {
  font-size: 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1;
  background-color: var(--white);
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  list-style-type: none;
}

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

body::-webkit-scrollbar {
  width: 3px;
  background-color: #eee;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 2px;
}

h1,
h2 {
  font-weight: 700;
}

h6 {
  font-size: 2rem;
  font-weight: 600;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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