/* styles.css */
/* General Styles */
/* General Styles End */
/* width, height, and color of the scrollbar track */
/* color of the scrollbar handle */
/* color on the top and bottom of the scrollbar handle */
/* corner radius of the scrollbar handle */
/* corner radius of the scrollbar track */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

h6 {
  margin: 0;
}

p {
  margin: 0;
}

li {
  list-style: none;
}

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

body {
  background: #FDFFFD;
}

:root {
  --white: #fff;
  --swiper-theme-color: #69FAB4;
}

.container {
  max-width: 1420px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #6af5b2;
}
::-webkit-scrollbar-thumb :vertical {
  border-radius: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
::-webkit-scrollbar-track :horizontal {
  border-radius: 12px;
}
/*# sourceMappingURL=common.css.map */
