* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  color: rgba(0, 0, 0, 0.8705882353);
}

main {
  width: 100%;
}
main section {
  flex: 1;
  padding: 1rem;
}

#leftSection {
  background: url("./weldha-cdn/sideBG.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#leftSection b {
  color: #faa61a;
  line-height: 2.4rem;
}

#rightSection {
  padding: 120px 80px !important;
}
#rightSection img {
  width: clamp(100px, 20vw, 150px);
}
#rightSection .head p {
  color: #b7213b;
  font-size: 12px !important;
  line-height: 2px;
}

.loadingcircle {
  width: 150px;
  height: 150px;
  border: 15px solid #f3f3f3;
  border-top: 15px solid #b7213b;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  margin-top: 50px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  #leftSection {
    display: none;
  }
  #rightSection {
    padding: 20px !important;
  }
}/*# sourceMappingURL=index.css.map */