@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root {
  --primary: #ab0d0d;
  --secondary: #ab0d0d;
  --contrast: #ffffff;
}
body,th,td,div,p {
  font-family: 'Roboto', sans-serif;
  font-weight:300;
  color: #383838;
}
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight:500;
  color: #383838;
}
h2,h3 {
  color: #ab0d0d;
}
.navbar-nav .nav-link {
  font-weight: 400;
}
.navbar-nav .nav-link {
  padding-left:  0 !important;
  padding-right: 0 !important;
}
@media(min-width:1200px){
  .navbar-nav > li + li:not(:last-child) > ::before {
    content: " \00A0\00A0\00A0 | \00A0\00A0 ";
  }
}
.navbar-nav a.nav-link {
  display: inline-block;
}
.navbar-nav a.active,.navbar-nav a:hover:not(.initials-circle) {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.nav-link.initials-circle {
  background-color: #ab0d0d;  /* Background color */
  color: #fff;  /* Text color */
  border-radius: 50%;  /* Makes it a circle */
  width: 36px;  /* Set fixed width */
  height: 36px;  /* Set fixed height */
  display: flex;  /* Enable flexbox */
  justify-content: center;  /* Center horizontally */
  align-items: center;  /* Center vertically */
  text-align: center;  /* Aligns text to center */
}
.navbar-light .nav-link.initials-circle,.navbar-light .nav-link.initials-circle:focus{
  color: #fff;
}
.navbar-light .nav-link.initials-circle:hover{
  color: #ab0d0d;
  background-color: #efefef;
}
.content > div,.content > form,.content .intro {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
.content > form {
  max-width: 970px;
}
ul.steps li.checked {
  background-color:  #ab0d0d;
  border: 2px solid  #ab0d0d;
}
ul.steps li.active {
  color:  #ab0d0d;
  border: 2px solid  #ab0d0d;
}
ul.steps li.checked:before,ul.steps li.checked:after,ul.steps li.active:after {
  background-color:  #ab0d0d;
}
ul.steps:before,ul.steps:after {
  background-color:  #ab0d0d;
}
button,.btn {
  color: #fff;
  background-color: #ab0d0d;
}
button:hover, .btn:hover,
button:focus, .btn:focus {
  color: #ab0d0d;
  background-color: #f0f0f0;
}
footer {
  border-top: 4px solid #ab0d0d !important;
  background-color: rgb(249,249,249);
}
footer p {
  color: #646464;
}