@import "fonts/stylesheet.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Color styles */
  --black-logo: #050708;
  --action: #EF3F50;
  --white: #FFFFFF;
  --text: #151616;
  --grey: #B1B1B1;
}
/* width */
::-webkit-scrollbar {
  width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(81.21deg, #A23FEF -36.24%, #EF3F50 47.89%, #FFA87A 106.06%);
}
body {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Euclid Circular B', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
a,
input,
textarea,
button,
svg,
svg path,
svg circle,
svg line {
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  outline: none;
  text-decoration: none;
}
input,
select {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Euclid Circular B', sans-serif;
}
h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 96px;
  text-transform: uppercase;
}
h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.title {
  text-align: center;
}
.row {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col {
  padding: 0 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(81.21deg, #A23FEF -36.24%, #EF3F50 47.89%, #FFA87A 106.06%);
  border-radius: 50px;
  padding: 24px 32px 28px 32px;
  border: 0;
  margin: 0;
  font-family: 'Euclid Circular B', sans-serif;
  font-weight: 600;
  font-size: 16px;
  max-height: 64px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 3px 3px 26px #ef3f50ba;
}
.btn svg {
  margin-left: 0;
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: auto;
}
.btn:hover svg {
  margin-left: 24px;
  visibility: visible;
  opacity: 1;
  width: 14px;
}
.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 16px;
  margin-top: 48px;
  width: 100%;
}
.slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  outline: none;
  border: 0;
  font-size: 0;
  cursor: pointer;
  background: #B1B1B1;
}
.slick-dots button:hover {
  background: #EF3F50;
}
.slick-dots .slick-active button {
  width: 30px;
  border-radius: 10px;
  background: #EF3F50;
}
@keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
@keyframes bg-scrolling-reverse {
  100% {
    background-position: 4002px 0;
  }
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 200% 0;
  }
  50% {
    background-position: 400% 0;
  }
  75% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
