html, body, nav ul li a, nav ul li a:visited {
  font-family: 'futura-pt' !important;
}

body{
  background-color: white;
}

img.logoMenu {
  display: none;
}

.checkbox input[type="checkbox"]:focus + label::before, .checkbox input[type="radio"]:focus + label::before {
  outline: 5px auto red !important;
}

.checkbox label::before {
  border-radius: 0 !important;
  top: 10px;
}

.checkbox label::after {
  color: #FF0000 !important;
  top: 10px !important;
}

.form-group:has(.checkbox) {
  margin-top: 0;
  margin-bottom: 0;
}

input[type="checkbox"] {
  display: none;
}

h2 {
  color: #FF0000;
  font-family: 'futura-pt-bold';
  font-weight: 700 !important;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

form .btn {
  background-color: rgba(227,6,19, 1);
  color: white;
}

nav ul li a::after {
  background-color: rgba(227,6,19, 1);
}

nav ul li a {
  font-size: 18px !important;
  text-transform: none;
  color: #707070 !important;
  font-weight: 600 !important;
  letter-spacing: 1px;

  &::after {
    visibility: hidden !important;
  }

  &.active, &:hover {
    color: #FF0000 !important;
  }
}

nav ul li{

  display: flex;
  align-items: center;

  &:not(:last-child)::after{
    content: "/";
    padding-left: 5px;
    padding-right: 5px;
    color: #C4C4C4 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
  }
}

.mobile {
  display: none;
}

.form-link {
  color: inherit;
  font-weight: 500;
  transition: 0.3s;

  &:hover {
    color: #FF0000 !important;
  }
}

.regulations-pl {
  width: 100%;
  text-align: center;
  color: #707070;
}

@media only screen and (max-width: 576px) {
  .mobile {
    display: block !important;
  }

  .desktop {
    display: none;
  }
}