@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  src: local("Manrope B"),
    url("../../../static/fonts/Manrope/Manrope-Bold.ttf") format("opentype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  src: local("Manrope L"),
    url("../../../static/fonts/Manrope/Manrope-Light.ttf") format("opentype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: local("Manrope R"),
    url("../../../static/fonts/Manrope/Manrope-Regular.ttf") format("opentype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar {
  display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

body {
  font-family: "Manrope", sans-serif;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  color: #eab849;
}

#nprogress .bar {
  background: #eab849 !important;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: auto;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 2s ease-in-out;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16) !important;
  border-radius: 100px !important;
  width: 48px !important;
  height: 8px !important;
}

@media only screen and (max-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}

.footer {
  padding: 50px 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  font-size: 1.1rem;
  background: #000;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.custom-checkbox:hover {
  color: #eab849;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox__checkmark {
  margin-right: 10px;
  height: 15px;
  width: 15px;
  border: 1px solid #8d8d8d;
}

.custom-checkbox__checkmark i {
  transform: scale(0);
  transition: transform 0.3s ease;
}

input:checked ~ .custom-checkbox__checkmark {
  background-color: #eab849;
  border: 1px solid #eab849;
  color: #fff;
}

input:checked ~ .custom-checkbox__checkmark > i {
  transform: scale(1);
}

/* Add your variable customizations of layout here */
/* Add your customizations of layout here */
.page-wrapper {
  margin: 0 auto;
  padding: 2% 17%;
  background: #e5e5e5;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 0;
  }
}
