* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f17110;
  --secondary: #232426;
  --bg: #f0f0f0;
  --bg2: #f9faf7;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--primary);
}

.container {
  padding: 0 4vw;
}

p {
  line-height: 1.5;
}

h1 {
  font-family: "Lufga", sans-serif !important;
}

h2,
h3 {
  font-weight: 400 !important;
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
/* loader-animation-starts-here */
#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--secondary);
}

.loading-text {
  align-self: flex-start;
  font-size: clamp(22px, 5vw, 5vw);
  color: white;
  margin-top: 10px;
  margin-left: 10px;
}

.percentage {
  align-self: flex-end;
  font-size: clamp(60px, 15vw, 15vw);
  font-weight: 400;
  color: #fff;
  margin-right: 20px;
  margin-bottom: 20px;
}

#overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: 1001;
}
#topButton {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1002;
  transition: background-color 0.3s ease;
  opacity: 0;
  right: -100px;
  bottom: -100px;
}
#topButton:hover {
  background-color: #e05d00;
}
#topButton svg {
  width: 24px;
  height: 24px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  color: inherit;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 40px;
}
