/* header */

.header .active a{
  color: #DF3C14!important;
  text-decoration: underline!important;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
}

.header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 99999;
  padding: 30px 100px;
  font-family: 'Formular', sans-serif;
  display: flex;
  align-items: center;
  transition: background 0.3s;
  transition: background-color 0.3s;
  transition: padding 0.3s;
}

.smartlogo{
  background: url('../images/itc_black.svg');
  width: 73px;
  height: 44px;
}

.header li a{
  color: #000!important;
  font-weight: 500!important;
  font-size: 18px!important;
}

.header li a:hover{
  color: #DF3C14!important;
}

.header svg path{
  fill: #000;
}

.header .extramenu button {
  color: #000;
  border: 2px solid #000;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-left: 20px;
}

.header .aktiv{
  color: #DF3C14;
}

.scrolled .extramenu button:hover {
  color: #000;
  background-color: #000;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
}

.header li a:hover{
  color: #DF3C14;
}

.header .logo {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.blanker{
  height: 15vh;
}



/* contact us button */

.header button {
  color: #ffffff;
  background-color: rgba(0,0,0,0);
  border: 2px solid #ffffff;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-left: 20px;
}

.header button:hover {
  color: #000;
  background-color: #ffffff;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  margin-left: 2em;

}

.header .extramenu{
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  margin-left: auto;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #000;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 17px;
  margin: 35px 20px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #000;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 10px;
}

.header .menu-icon .navicon:after {
  top: -10px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 100vh;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


@media screen and (max-width: 768px) {
  .smartlogo {
    display: inline-block;
  }
  .header .menu-icon {
    padding: 0px 0px;
  }
  .header .menu-icon .navicon {
    height: 3px;
    width: 32px;
    margin: 20px 0px;
  }
}

/* responsive */

@media (min-width: 48em) {
  
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .extramenu li a{
    padding: 10px 20px;
  }
  .header .menu {
    clear: none;
    float: left;
    max-height: none;
  }
  .header .extramenu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

@media only screen and (max-width: 48em) {
  .header{
    padding: 20px 15px;
    display: block;
  }
  .header .menu-icon {
    float: right;
  }
  .header .menu {
    margin-left: 0em;
  }
  .header li a{
    text-align: center;
    color: #000;
  }
  .header img{
    max-width: 50px;
    height: auto;
  }
  .header .logo {
    padding: 20px 20px;
  } 
}

/* Increasing specificity by adding parent selectors for a lighter modal */
body .modal-content {
  background-color: #f8f9fa; /* Light background for the modal */
  color: #333; /* Darker text for contrast against the light background */
}

body .modal-header {
  border-bottom: 2px solid #DF3C14; /* Keeping the accent color */
  background-color: #fff; /* Light header for a clean look */
}

body .modal-title {
  font-weight: 700; /* Maintain bold title */
  color: #333; /* Ensuring the title is visible against the light header */
}

body .modal-body {
  padding: 20px; /* Spacing inside the modal */
}

body .modal-footer {
  border-top: 1px solid #dee2e6; /* Light border for separation, consistent with Bootstrap's defaults */
  background-color: #fff; /* Light footer to match the header */
}

/* Specificity for input and select fields */
body .modal-body .form-control, body .modal-body .form-select {
  background-color: #fff; /* Solid white background for input fields */
  border: 1px solid #ced4da; /* Light gray border, standard Bootstrap form border color */
  color: #495057; /* Bootstrap's default form text color for better readability */
}

/* Placeholder text more integrated with the light theme */
body .modal-body .form-control::placeholder {
  color: #6c757d; /* Bootstrap's default placeholder text color */
}

/* Select dropdown options styling for better visibility */
body .modal-body .form-select option {
  background-color: #fff; /* Light background for dropdown options for better visibility */
  color: #495057; /* Dark text for dropdown options */
}

/* Primary button styled with the main site color */
body .modal-footer .btn-primary {
  background-color: #DF3C14; /* Primary button color */
  border-color: #DF3C14; /* Consistent border color */
  color: #fff; /* White text for contrast */
}

/* Secondary button with a lighter appearance */
body .modal-footer .btn-secondary {
  background-color: #e2e6ea; /* Bootstrap's light gray secondary button color */
  border-color: #dae0e5; /* Slightly darker border for definition */
  color: #333; /* Dark text for contrast */
}

/* Adjusting the close button for the light theme */
body .modal-header .btn-close {
  filter: none; /* Removing any previous filters */
  color: #333; /* Dark 'X' for contrast against the light header */
}