@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
html {
  scroll-behavior: smooth;
}
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.theme-text {
  color: #0f1053;
}
.theme-div {
  background: #0f1053;
  color: #fff;
}
.btn {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  margin: 0px;
}

.btn-basic {
  color: #2a2a2a;
   font-size: 16px;
  font-style: normal;
  font-weight: 500;
   border: 2px solid #0f1053;
  transition: 0.3s;
}

.btn-basic:hover {
  background: #1e40af;
  color: rgb(0, 255, 21);
}
.btn-secondery {
  background: #0f1053;
  color: #fff;
   font-size: 16px;
  font-style: normal;
  font-weight: 500;
   border: 2px solid #0f1053;
  transition: 0.3s;
}

.btn-secondery:hover {
  background: #1e40af;
  color: #fff;
}
