html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.navbar .nav-link {
  font-size: 20px;
  font-weight: 350;
}
@media (min-width: 998px) {
    .navbar .nav-link {
        font-size: 28px;
        font-weight: 350;
    }
}


.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #3099A9 !important;
}

.navbar .nav-link.active {
  color: #3099A9 !important;
  font-weight: 500;
}

footer a {
  color: #d1d1d1 !important;
  transition: color 0.2s ease-in-out;
}

footer a:hover,
footer a:focus,
footer a:active {
  color: #ffffff !important;
}

.custom-hr {
  width: 100px;
  height: 3px;
  background-color: rgb(105, 1, 126);
  border: none;
  margin-left: 0;
  opacity: 1;
}

.text-muted {
  color: rgb(119, 119, 119) !important;
}

.service-item {
  position: relative;
  padding: 2rem 1rem;
}

@media (min-width: 992px) {
  .service-item:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #cccccc;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #cccccc;
  }
}

@media (max-width: 767px) {
  .service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60%;
    height: 1px;
    background-color: #cccccc;
  }
}

.service-icon {
  font-size: 5rem;
  color: var(--bs-onebit-secondary);
  margin-bottom: 1.5rem;
}