body {
  font-family: "Inter", sans-serif;
   
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; 
}

.container {
  max-width: 1325px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #37b2f7;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10000px;

  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.primary-button:hover {
  opacity: 0.8;
}

.section-header {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #000000;
}

.section-description {
  color: #6e6e6e;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.02em;
}

.right-text {
  color: #000000;
  font-weight: 500; 
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em; 

  img{
    height: 24px !important;
    width: 24px !important;
  }
  
}


@media (min-width: 640px) {
  .section-header {
    font-size: 25px;
    line-height: 46px;
  }
}


@media (min-width: 1024px) {
  .section-header {
    font-size: 48px;
    line-height: 54px;
  }
}


.secondary-button {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid #cccccc;
  border-radius: 10000px;

  transition: all 0.5s ease-in-out;
  background: transparent;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
}

.secondary-button:hover {
  color: #fff;
  border-color: transparent;
}

.secondary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #37b2f7;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.secondary-button:hover::before {
  opacity: 1;
}
.secondary-button-2 {
  position: relative;
  overflow: hidden;
  color: #282772;
  border: 1px solid #282772;
  border-radius: 10000px;

  transition: all 0.5s ease-in-out;
  background: transparent;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
}

.secondary-button-2:hover {
  color: #fff;
  border-color: transparent;
}

.secondary-button-2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #37b2f7;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.secondary-button-2:hover::before {
  opacity: 1;
}

.tag {
  border-radius: 99px;
  padding: 8px 12px;
  border: 1px solid #0000001a;
  box-shadow: 0px 1px 0px 0px #0000000d;
  color: #18a0fb;

  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
}
