/* Basic styles */

/* Slider styles */

.slider-container {
  padding: 10px 0;

  max-height: 100vh;
}

.slides-wrapper {
  margin: auto;
  overflow: hidden;
}

.slides-container {
  padding: 0 10px;
}

.slider-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
  transition: 1s;
  max-height: calc(100vh - 80px);
}

.slider-item {
  /* background-color: #bdbdbd; */
  margin: 0 16px -4px 0;
}

.slider-item a {
  display: inline-block;
  width: 100%;
}

.slider-item img {
  width: 100%;
}

.slider-arrows {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  position: absolute;
  left: -65px;
  top: 50%;
  width: calc(100% + 120px);
  z-index: 99;
  background: transparent;
  background-color: transparent;
  transform: translate(0%, -50%);
}

.slider-arrow-prev,
.slider-arrow-next {
  border: none;
  background-color: transparent;
  color: #212121;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.slider-arrow-prev:hover,
.slider-arrow-next:hover {
  background-color: transparent;
}

/* import font from local url */
@font-face {
  font-family: "gilroy-semibold";
  src: url("fonts/gilroy-semibold.ttf") format("truetype");
}

@font-face {
  font-family: "gilroy-regular";
  src: url("fonts/gilroy-regular.ttf") format("truetype");
}

@font-face {
  font-family: "gilroy-bold";
  src: url("fonts/gilroy-bold.ttf") format("truetype");
}

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

a:hover {
  text-decoration: none;
}

.gilroy-semibold {
  font-family: "gilroy-semibold", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.gilroy-bold {
  font-family: "gilroy-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.gilroy-regular {
  font-family: "gilroy-regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter-thin {
  font-family: "Inter", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.inter-extralight {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.inter-light {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter-medium {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.inter-bold {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.inter-extrabold {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.inter-black {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
  overflow: hidden;
  height: 100%;
  background: #e8efff;
}

div,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

body {
  overflow-y: scroll;
}

.box-padding {
  width: 80%;
  max-width: 1080px;
  margin: auto;
}
