body {
  font-family: 'Inter', sans-serif;
  color: #0E1035;
}

.rounded-1 {
  border-radius: 8px;
}

.rounded-bottom-1 {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.rounded-2 {
  border-radius: 16px;
}

.rounded-bottom-2 {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.rounded-top-2 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.rounded-3 {
  border-radius: 24px;
}

.rounded-bottom-3 {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.rounded-top-3 {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.anim-hover-up {
  cursor: pointer;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
}

.anim-hover-up:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.anim-up {
  cursor: pointer;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
}

.anim-up:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.anim-hover-right {
  cursor: pointer;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
}

.anim-hover-right:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}

.anim-right {
  cursor: pointer;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
}

.anim-right:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}

.shadow {
  box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(35, 38, 45, 0.125) !important;
}

.fea {
  stroke-width: 1.8;
}

.fea.icon-sm {
  height: 16px;
  width: 16px;
}

.fea.icon-ex-md {
  height: 20px;
  width: 20px;
}

.fea.icon-m-md {
  height: 28px;
  width: 28px;
}

.fea.icon-md {
  height: 35px;
  width: 35px;
}

.fea.icon-lg {
  height: 42px;
  width: 42px;
}

.fea.icon-ex-lg {
  height: 52px;
  width: 52px;
}

.animated-img {
  cursor: pointer;
  animation: bounce 1s ease infinite alternate;
  -webkit-animation: bounce 1s ease infinite alternate;
}

@-webkit-keyframes bounce {
  0% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}

.hero .poin-1 {
  background-image: url(../img/span-1.svg);
  display: inline-block;
  width: 64px;
  height: 32px;
  background-size: cover;
}

.hero .poin-2 {
  background-image: url(../img/span-2.svg);
  display: inline-block;
  width: 64px;
  height: 32px;
  background-size: cover;
}

.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .icon-form-control {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

#back-to-top {
  display: none;
  position: fixed;
  color: #FAFAFA;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
  bottom: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  z-index: 1030;
  background-color: rgba(0, 0, 0, 0.22);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

#back-to-top:hover {
  background-color: #5F6AF6;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575.98px) {
  #back-to-top {
    z-index: 1029;
  }
}
/*# sourceMappingURL=main.css.map */