body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

#loading-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.loading-logo {
  margin-bottom: 20px;
}

.loading-logo img {
  width: 90px; /* Adjust the size as needed */
  height: auto;
}

.loading {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid #B1810B;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotateOpacity 1s ease infinite 0.2s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotateOpacity {
  0% {
    transform: rotate(0deg);
    opacity: 0.1;
  }
  100% {
    transform: rotate(1turn);
    opacity: 1;
  }
}
