* {
  font-family: 'Calibri', sans-serif;
}

html {
  overscroll-behavior: none;
}

body, body * {
  font-family: 'Calibri', sans-serif;
}

.main-navigation {
  align-items: center; /* Add this line to vertically center your nav items */
  display: flex; /* Aligns the navigation items horizontally */
  margin-left: 20px; /* Adjust the margin as needed */
  flex-grow: 1; /* Allow the navigation to take up remaining space */
  justify-content: space-between; /* Distribute space between items */
}

.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* Adjust the space between menu items */
  align-items: center; /* Center items vertically */
}


.main-navigation li {
  margin: 10px; /* Adjust spacing around buttons */
}

.main-navigation a:hover {
    color: rgb(255, 170, 13); /* Slow transition to orange color */
}

/* Header Styles */
.site-header {
  height: 60px;
  position: fixed; /* Keeps the header at the top */
  width: 100%;
  top: 0;
  z-index: 100; /* Make sure this is higher than the slideshow's z-index */
  backdrop-filter: blur(10px); /* Apply the blur effect */
  background-color: rgba(90, 90, 90, 0.637); /* Semi-transparent background; adjust as needed */
}

.header-flex-container {
  display: flex;
  justify-content: flex-start;
  align-items: center; /* This ensures vertical centering */
  padding: 0 20px;
  max-width: 1200px;
  margin: auto; /* Center the container */
  height: 60px; /* Adjust based on your header height */
}

.logo {
  height: 48px; /* Keep the height as you have set */
  width: auto; /* Ensure the width adjusts proportionally */
  max-width: auto; /* You can set a max-width to prevent it from becoming too wide */
  flex-shrink: 0; /* Prevent the logo from shrinking */
  margin-right: 100px; /* Add margin to the right of the logo */
}

.main-navigation a {
  text-decoration: none;
  color: whitesmoke; /* Original font color */
  font-weight: bold;
  font-size: 1.2em;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 2px solid transparent;
  transition: color 1s;
}

.pagination {
  position: absolute;
  width: 100%;
  text-align: center;
  right: 0;
  padding: 0;
  bottom: 60px;
  z-index: 999;
}
.pagination__item {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  font-size: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  margin: 0 5px;
  transition: 0.2s ease-in-out;
}
.pagination__item.is-current, .pagination__item:hover {
  background-color: #fff;
}


/* Add these styles for the Position Aware button effect */
.btn-6 {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 250px; /* or your desired width */
  margin: 1rem auto;
  text-transform: uppercase;
  border: 1px solid black;
  line-height: 80px; /* or your desired height */
  color: whitesmoke;
}

.btn-6 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #00115e; /* Updated to your specified shade of blue */
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-6:hover span {
  width: 225%; /* Control the size of the hover effect */
  height: 200px; /* Control the size of the hover effect */
  background-color: #00115e;
}

.btn-6:hover {
  color: rgb(255, 255, 255); /* Change text color on hover */
}



.container {
  position: relative;
  margin: 0 auto;
}
@media (max-width: 699px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 700px) and (max-width: 1599px) {
  .container {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
    max-width: 140rem;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-right: 9.5625rem;
    padding-left: 9.5625rem;
    max-width: 144.125rem;
  }
}

.background-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
}

.slideshow {
  position: relative; /* No change needed here */
  color: #ffffff;
  background-color: #1e1e22;
  overflow: hidden;
  height: 100vh;
  min-height: 400px;
  margin-top: 0; /* Make sure the slideshow starts at the top */
}

.slideshow__slide {
  visibility: hidden;
  transition: visibility 0s 1.7s;
}
.slideshow__slide.is-current {
  visibility: visible;
  transition-delay: 0s;
}
@media (max-width: 699px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 700px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.slideshow__slide-background-load-wrap {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
  overflow: hidden;
}

.is-loaded .slideshow__slide-background-load-wrap {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax,
.slideshow__slide.is-next .slideshow__slide-background-parallax {
  transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow__slide-background-parallax,
.slideshow__slide.is-next-section .slideshow__slide-background-parallax {
  transform: none !important;
}

.slideshow__slide-background-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, -50%, 0);
}

.is-loaded .slideshow__slide-background-load {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-background-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
  transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
  transition: none;
}

.slideshow__slide-background {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
  overflow: hidden;
}

.slideshow__slide.is-prev .slideshow__slide-background, .slideshow__slide.is-next .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-background, .slideshow__slide.is-next-section .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
  transform: translate3d(0, 50%, 0);
}

.slideshow__slide-image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
}

.slideshow__slide.is-prev .slideshow__slide-image, .slideshow__slide.is-next .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-image, .slideshow__slide.is-next-section .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image::before, .slideshow__slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.35;
}

.slideshow__slide-image::before {
  background-color: #1e1e22;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust the 0.5 value to make it darker or lighter */
  z-index: 9999;
  
}

.slideshow__slide-image::after {
  background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
}

.slideshow__slide.is-prev .slideshow_container,
.slideshow__slide.is-next .slideshow_container {
  transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow_container,
.slideshow__slide.is-next-section .slideshow_container {
  transform: none !important;
}

.slideshow__slide-caption-text {
  position: relative;
  height: 100%;
  padding-top: 33vh;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0);
  transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0);
  transition: none;
}

.slideshow__slide-caption {
  position: relative;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.is-loaded .slideshow__slide-caption {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-title {
  line-height: 1;
}
@media (max-height: 500px) {
  .slideshow__slide-caption-title {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 699px) {
  .slideshow__slide-caption-title {
    font-size: 40px;
    margin-bottom: 150px;
  }

  .slideshow.-full .slideshow__slide-caption-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) {
  .slideshow__slide-caption-title {
    font-size: 5.625rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .slideshow__slide-caption-title {
    font-size: 4.375rem;
  }
}
@media (min-width: 1600px) {
  .slideshow__slide-caption-title {
    font-size: 6.25rem;
  }
}
.slideshow__slide-caption-title.-full {
  width: 100%;
}

.slideshow__slide-caption-subtitle {
  display: inline-block;
  padding: 1.875rem 0;
  line-height: 1.5; /* Adjust the line height as needed */
  font-size: 28px; /* Adjust font size as needed */
}

.slideshow__slide-caption-subtitle.-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .slideshow__slide-caption-subtitle.-load {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .slideshow__slide-caption-subtitle.-load, body[data-route-option=next-section] .slideshow__slide-caption-subtitle.-load {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-subtitle-label {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  display: inline-block;
}

.o-hsub.-link:hover .slideshow__slide-caption-subtitle-label, .o-hsub-wrap:hover .slideshow__slide-caption-subtitle-label {
  transform: translateX(20px);
}

/* OLD */
.c-header-home_heading {
  line-height: 1;
}

@media (max-height: 500px) {
  .c-header-home_heading {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 699px) {
  .c-header-home_heading {
    font-size: 40px;
    margin-bottom: 150px;
  }

  .c-header-home.-full .c-header-home_heading {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) {
  .c-header-home_heading {
    font-size: 5.625rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_heading {
    font-size: 4.375rem;
  }
}
@media (min-width: 1600px) {
  .c-header-home_heading {
    font-size: 6.25rem;
  }
}
.c-header-home_heading.-full {
  width: 100%;
}

.c-header-home_subheading {
  display: inline-block;
  padding: 1.875rem 0;
}

.c-header-home_subheading.-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_subheading.-load, body[data-route-option=next-section] .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

.c-header-home_footer {
  display: flex;
  justify-content: center; /* Horizontally centers the content */
  align-items: center; /* Vertically centers the content */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3; /* Keeps it on top of other content */
}

.c-header-home_controls, .c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

.c-header-home_controls {
  position: static; /* Resets the position so it's no longer absolutely positioned */
  transform: none; /* Removes transform if it was previously set */
}

/* Ensure the controls are visible */
.c-header-home_controls .o-button {
  font-size: initial; /* Resets the font size to default if it was previously set to 0 */
}

@media (max-width: 699px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 5.625rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}
.is-loaded .c-header-home_controls, .is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_controls, body[data-route-option=prev-section] .c-header-home_buttons, body[data-route-option=next-section] .c-header-home_controls, body[data-route-option=next-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}
.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}
@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}
@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}
button, .c-header-filters_button,
.o-button {
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button:hover, .c-header-filters_button:hover,
.o-button:hover {
  text-decoration: none;
}

@media (min-width: 1200px) {
  body {
    overflow: hidden;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .o-scroll {
    height: 100%;
  }
}
::-moz-selection {
  background: #0084c0;
  color: #ffffff;
}

::selection {
  background: #0084c0;
  color: #ffffff;
}

img, svg {
  max-width: 100%;
}

a, .o-link {
  color: #1a0dab;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover, .o-link:hover {
  color: #13097c;
}

a.-normal, .o-link.-normal {
  color: currentColor;
  text-decoration: none;
}

a.-normal:hover, .o-link.-normal:hover {
  text-decoration: underline;
}

a.-blue:hover, .o-link.-blue:hover {
  text-decoration: none;
  color: #0084c0;
}

a.-hover, .o-link.-hover {
  position: relative;
  text-decoration: none;
  color: #ffffff;
}

a.-hover::after, .o-link.-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  border-bottom: 1px solid;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

a.-hover:hover::after, .o-link.-hover:hover::after {
  transform: scaleX(1);
}

p {
  margin: 0;
}

.o-wrap {
  overflow: hidden;
}

.o-page.-anim {
  transform: translate3d(0, 9.375rem, 0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-loaded .o-page.-anim {
  transform: translate3d(0, 0, 0);
}

.o-barba, .o-barba_container {
  height: 100%;
}

strong {
  font-weight: 700;
}

.js-parallax {
  transform: translateZ(0);
  will-change: transform;
}

.scroll-content {
  overflow: hidden;
}

.o-blockquote.-nomargin {
  margin: 0;
}

.o-action-link {
  display: block;
  padding-top: 12.8125rem;
  padding-bottom: 7.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 699px) {
  .o-action-link {
    font-size: 40px;
    padding-top: 120px;
  }
}
@media (max-width: 1199px) {
  .o-action-link {
    color: #1e1e22;
  }
}
@media (min-width: 700px) {
  .o-action-link {
    font-size: 5.625rem;
  }
}
@media (min-width: 1200px) {
  .o-action-link {
    color: #ffffff;
  }
}
.o-action-link:hover {
  color: #ffffff;
}

.o-action-link_label {
  display: inline-block;
  position: relative;
}

.o-action-link_label::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 0.1875rem solid;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-action-link:hover .o-action-link_label::after {
  transform: scaleX(1);
}

.o-h, h1, .o-h1, h2, .o-h2, h3, .o-h3, h4, .o-h4, h5, .o-h5, h6, .o-h6 {
  font-weight: 700;
  margin-top: 0;
  line-height: 1.1;
}

@media (max-width: 699px) {
  h1, .o-h1 {
    font-size: 26px;
  }
}
@media (min-width: 700px) {
  h1, .o-h1 {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  h1, .o-h1 {
    font-size: 4.375rem;
  }
}
@media (max-width: 1599px) {
  h2, .o-h2 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  h2, .o-h2 {
    font-size: 2.25rem;
  }
}
h3, .o-h3 {
  font-size: 1.5625rem;
}

h4, .o-h4 {
  font-size: 1rem;
}

h5, .o-h5 {
  font-size: 0.8125rem;
}

h6, .o-h6 {
  font-size: 0.6875rem;
}

.o-hsub {
  font-size: 0.75rem;
  padding: 1.25rem 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.o-hsub::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-bottom: 1px solid;
  width: 1.5rem;
  background-color: #1e1e22;
  margin-right: 1.125rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

.o-hsub.-link {
  color: #ffffff;
  text-decoration: none;
}

.o-hsub.-link:hover::before, .o-hsub-wrap:hover .o-hsub.-link::before {
  transform: scaleX(1.5);
}

.o-hsub.-link.-dark {
  color: #1e1e22;
}

.o-hsub.-link.-dark:hover {
  color: #1e1e22;
}

.o-hsub.-h {
  vertical-align: middle;
}

@media (max-width: 699px) {
  .o-hsub.-h {
    display: block;
    margin-top: 20px;
  }
}
@media (min-width: 700px) {
  .o-hsub.-h {
    margin-left: 2.5rem;
  }
}
.o-hsub_label {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  display: inline-block;
}

.o-hsub.-link:hover .o-hsub_label, .o-hsub-wrap:hover .o-hsub_label {
  transform: translateX(20px);
}

.is-loaded .o-loader {
  visibility: hidden;
  transition-delay: 0.6s;
}

.o-container {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 699px) {
  .o-container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .o-container.-small {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 700px) and (max-width: 1599px) {
  .o-container {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
    max-width: 140rem;
  }
}
@media (min-width: 1600px) {
  .o-container {
    padding-right: 9.5625rem;
    padding-left: 9.5625rem;
    max-width: 144.125rem;
  }
}
.o-section {
  position: relative;
}

.o-section.-offset {
  margin-top: -9.375rem;
  background-color: #f6f6f6;
}

.o-section.-padding {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.o-section.-padding-top {
  padding-top: 7.5rem;
}

@media (max-width: 699px) {
  .o-section.-bottom {
    padding-bottom: 60px;
  }
}
@media (min-width: 700px) {
  .o-section.-bottom {
    padding-bottom: 7.5rem;
  }
}
.o-section.-left {
  margin-right: 15rem;
}

.o-section.-right {
  margin-left: 15rem;
}

.o-section.-left-large {
  margin-right: 22.5rem;
}

.o-section.-right.-padding {
  padding-left: 9.5625rem;
}

.o-section_image {
  position: relative;
  overflow: hidden;
}

.o-section_image.-small {
  padding-bottom: 57.144%;
}

.o-section_image.-large {
  padding-bottom: 55%;
}

.o-section_image.-padding-left {
  margin-left: 7.5rem;
}

.o-section_image.-left {
  margin-right: 15rem;
}

@media (max-width: 1599px) {
  .o-section_image.-left {
    margin-left: -7.5rem;
  }
}
@media (min-width: 1600px) {
  .o-section_image.-left {
    margin-left: -9.5625rem;
  }
}
.o-section_image.-right {
  margin-left: 15rem;
}

@media (max-width: 1599px) {
  .o-section_image.-right {
    margin-right: -7.5rem;
  }
}
@media (min-width: 1600px) {
  .o-section_image.-right {
    margin-right: -9.5625rem;
  }
}
.o-section_image img {
  width: 100%;
}

.o-grid {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}

.o-grid.-margin {
  margin-left: -3.75rem;
}

.o-grid_item {
  display: inline-block;
  padding-left: 0;
  width: 100%;
  vertical-align: top;
  font-size: 1rem;
}

@media (max-width: 699px) {
  .o-grid_item.-button {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button {
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .o-grid_item.-button {
    width: 18.75rem;
  }
}
@media (max-width: 699px) {
  .o-grid_item.-button-content {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button-content {
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .o-grid_item.-button-content {
    width: calc(100% - 18.75rem);
  }
}
.o-grid.-margin .o-grid_item {
  padding-left: 3.75rem;
}

@media (min-width: 700px) {
  .o-grid_item.-half {
    width: 50%;
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-half.-large {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-half.-medium {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-third {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .o-grid_item.-third {
    width: 33.3333333333%;
  }
}
.o-form {
  padding-bottom: 11.25rem;
}

@media (max-width: 699px) {
  .o-form_item {
    margin-bottom: 35px;
  }
}
@media (min-width: 700px) {
  .o-form_item {
    margin-bottom: 2.9375rem;
  }
}
.o-form_fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

@media (max-width: 699px) {
  .o-form_fieldset {
    margin-bottom: 20px;
  }
}
@media (min-width: 700px) {
  .o-form_fieldset {
    margin-bottom: 3.75rem;
  }
}
.o-form_button {
  text-align: right;
}

.o-label {
  display: block;
  height: 100%;
  color: #b3b3b3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-label {
    font-size: 9px;
  }
}
@media (min-width: 700px) {
  .o-label {
    font-size: 0.5625rem;
  }
}
.o-input-wrap .o-label {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input:focus ~ .o-label, .o-select:focus ~ .o-label, .o-textarea:focus ~ .o-label, .o-label.is-active {
  transform: translateY(-1.875rem);
}

.o-input.has-error ~ .o-label, .has-error.o-select ~ .o-label, .has-error.o-textarea ~ .o-label {
  color: #cc3d3d;
}

.o-input-wrap {
  position: relative;
}

.o-input, .o-select, .o-textarea {
  padding: 0.875rem;
  background-color: transparent;
  border-bottom: 1px solid #b3b3b3;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-input, .o-select, .o-textarea {
    font-size: 14px;
  }
}
@media (min-width: 700px) {
  .o-input, .o-select, .o-textarea {
    font-size: 0.875rem;
  }
}

.o-input:-ms-input-placeholder, .o-select:-ms-input-placeholder, .o-textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

.o-input::-moz-placeholder, .o-select::-moz-placeholder, .o-textarea::-moz-placeholder {
  color: #b3b3b3;
}

.o-input::placeholder, .o-select::placeholder, .o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.-search, .-search.o-select, .-search.o-textarea {
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  border-bottom: none;
}

@media (max-width: 699px) {
  .o-input.-search, .-search.o-select, .-search.o-textarea {
    font-size: 26px;
  }
}
@media (min-width: 700px) {
  .o-input.-search, .-search.o-select, .-search.o-textarea {
    font-size: 3.75rem;
  }
}

.o-input.-search:-ms-input-placeholder, .-search.o-select:-ms-input-placeholder, .-search.o-textarea:-ms-input-placeholder {
  color: #000000;
}

.o-input.-search::-moz-placeholder, .-search.o-select::-moz-placeholder, .-search.o-textarea::-moz-placeholder {
  color: #000000;
}

.o-input.-search::placeholder, .-search.o-select::placeholder, .-search.o-textarea::placeholder {
  color: #000000;
}

.-mobile .o-input.-search, .-mobile .-search.o-select, .-mobile .-search.o-textarea {
  font-size: 26px;
  padding: 0;
}

.o-input.-search.-light, .-search.-light.o-select, .-search.-light.o-textarea {
  color: #1e1e22;
}

.o-input.-search.-light:-ms-input-placeholder, .-search.-light.o-select:-ms-input-placeholder, .-search.-light.o-textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

.o-input.-search.-light::-moz-placeholder, .-search.-light.o-select::-moz-placeholder, .-search.-light.o-textarea::-moz-placeholder {
  color: #b3b3b3;
}

.o-input.-search.-light::placeholder, .-search.-light.o-select::placeholder, .-search.-light.o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.has-error, .has-error.o-select, .has-error.o-textarea {
  border-color: #cc3d3d;
}

.o-input:focus, .o-select:focus, .o-textarea:focus {
  outline: none;
}

.o-input-line {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #1e1e22;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

.o-input:focus ~ .o-input-line, .o-select:focus ~ .o-input-line, .o-textarea:focus ~ .o-input-line {
  transform: scaleX(1);
}

.o-input-lines::before, .o-input-lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-right: 1px solid #b3b3b3;
  height: 0.375rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input.has-error ~ .o-input-lines::before, .has-error.o-select ~ .o-input-lines::before, .has-error.o-textarea ~ .o-input-lines::before, .o-input.has-error ~ .o-input-lines::after, .has-error.o-select ~ .o-input-lines::after, .has-error.o-textarea ~ .o-input-lines::after {
  border-color: #cc3d3d;
}

.o-input-lines::before {
  left: 0;
  transition-delay: 0.3s;
}

.o-input-lines::after {
  right: 0;
}

.o-input:focus ~ .o-input-lines::before, .o-select:focus ~ .o-input-lines::before, .o-textarea:focus ~ .o-input-lines::before, .o-input:focus ~ .o-input-lines::after, .o-select:focus ~ .o-input-lines::after, .o-textarea:focus ~ .o-input-lines::after {
  border-color: #1e1e22;
}

.o-input:focus ~ .o-input-lines::before, .o-select:focus ~ .o-input-lines::before, .o-textarea:focus ~ .o-input-lines::before {
  transition-delay: 0s;
}

.o-input:focus ~ .o-input-lines::after, .o-select:focus ~ .o-input-lines::after, .o-textarea:focus ~ .o-input-lines::after {
  transition-delay: 0.3s;
}

.o-checkbox, .o-radio {
  position: absolute;
  width: 0;
  opacity: 0;
}

.o-checkbox:checked + .o-checkbox-label::after, .o-radio:checked + .o-checkbox-label::after, .o-checkbox:checked + .o-radio-label::after, .o-radio:checked + .o-radio-label::after {
  transform: scale(1);
}

.o-checkbox-label, .o-radio-label {
  position: relative;
  display: inline-block;
  margin-right: 0.5em;
  line-height: 1.4;
  margin-right: 4.0625rem;
  cursor: pointer;
  padding-top: 0.125rem;
}

@media (max-width: 699px) {
  .o-checkbox-label, .o-radio-label {
    font-size: 12px;
    padding-left: 27px;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label, .o-radio-label {
    font-size: 0.875rem;
    padding-left: 1.1875rem;
  }
}
.o-checkbox-label.-uppsercase, .-uppsercase.o-radio-label {
  text-transform: uppercase;
}

.o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  padding: 0;
  content: "";
  border: 1px solid;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
    margin-top: -0.28125rem;
    width: 0.5625rem;
    height: 0.5625rem;
  }
}
.o-checkbox-label::after, .o-radio-label::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #1e1e22 transparent transparent transparent;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::after, .o-radio-label::after {
    border-width: 12px 12px 0 0;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label::after, .o-radio-label::after {
    border-width: 0.5625rem 0.5625rem 0 0;
  }
}
.o-checkbox-label.has-error::before, .has-error.o-radio-label::before {
  border-color: #cc3d3d;
}

.o-checkbox-label_text {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.o-checkbox-label:hover .o-checkbox-label_text, .o-radio-label:hover .o-checkbox-label_text {
  transform: translateX(0.3125rem);
}

.o-radio-label::before, .o-radio-label::after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.o-radio-label::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
  background-size: 6px;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.o-radio:checked + .o-radio-label::after {
  transform: scale(1);
}

.o-select {
  position: relative;
  z-index: 1;
  padding-right: 2.5rem;
}

.o-select:focus {
  border-bottom-color: #1e1e22;
}

.o-select-wrap {
  position: relative;
}

.o-select-wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.o-textarea-wrap {
  position: relative;
}

.o-textarea {
  min-height: 9.375rem;
}

.o-button {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #1e1e22;
  white-space: nowrap;
  font-size: 0;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.o-button > * {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
}

@media (max-width: 699px) {
  .o-button {
    height: 60px;
    padding: 0 20px;
  }
}
@media (min-width: 700px) {
  .o-button {
    height: 3.75rem;
    padding: 0 1.875rem;
  }
}
.o-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1e1e22;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:hover {
  color: #ffffff;
  transition-delay: 0s;
}

.o-button:hover::after {
  transform: scaleX(1);
  transition-delay: 0s;
}

@media (min-width: 1200px) {
  .o-button.-anim {
    border-color: transparent;
  }
}
.o-button.-left::after {
  transform-origin: center right;
}

.o-button.-white {
  border-color: #ffffff;
}

.o-button.-white::after {
  background-color: #ffffff;
}

.o-button.-white:hover {
  color: #000000;
}

@media (max-width: 699px) {
  .o-button.-width {
    width: 100%;
  }
}
@media (min-width: 700px) {
  .o-button.-width {
    width: 15rem;
  }
}
.o-button.-form {
  width: 11.25rem;
}

.o-button.-form:focus {
  color: #ffffff;
  transition-delay: 0s;
}

.o-button.-form:focus::after {
  transform: scaleX(1);
  transition-delay: 0s;
}

.o-button.-square {
  padding: 0;
}

@media (max-width: 699px) {
  .o-button.-square {
    width: 60px;
  }
}
@media (min-width: 700px) {
  .o-button.-square {
    width: 3.75rem;
  }
}
.o-button-group .o-button + .o-button {
  border-left: none;
}

@media (max-width: 699px) {
  .o-button.-padding {
    padding: 1.25rem;
  }
}
@media (min-width: 700px) {
  .o-button.-padding {
    padding: 1.25rem 2.5rem;
  }
}
.o-button_label {
  display: inline-block;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  line-height: 1.4;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.75rem;
}

.o-button:hover .o-button_label {
  transform: translateX(0.5rem);
  transition-delay: 0.075s;
}

.o-button.-left:hover .o-button_label {
  transform: translateX(-0.5rem);
}

.o-button.-square:hover .o-button_label {
  transform: translateX(0.375rem);
}

.o-button.-left.-square:hover .o-button_label {
  transform: translateX(-0.375rem);
}

.o-button-group {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}

.o-button_icon {
  position: relative;
  width: 1.1875rem;
  height: 1.1875rem;
  fill: #1e1e22;
  transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button.-white .o-button_icon {
  fill: #ffffff;
}

.o-button:hover .o-button_icon {
  fill: #f6f6f6;
  transition-delay: 0s;
}

.o-button.-white:hover .o-button_icon {
  fill: #1e1e22;
}

.o-button_line::before, .o-button_line::after {
  content: "";
  position: absolute;
  background-color: #1e1e22;
}

.is-mobile .o-button_line::before, .is-mobile .o-button_line::after {
  display: none;
}

.o-button_line::before {
  width: 1px;
  top: 0;
  bottom: 0;
  transform: scaleY(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line::after {
  height: 1px;
  right: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line:first-of-type::before {
  left: 0;
  transform-origin: center bottom;
}

.o-button_line:first-of-type::after {
  top: 0;
  transform-origin: center left;
}

.o-button_line:last-of-type::before {
  right: 0;
  transform-origin: center top;
}

.o-button_line:last-of-type::after {
  bottom: 0;
  transform-origin: center right;
}

.o-button.is-inview .o-button_line::before {
  transform: scaleY(1);
}

.o-button.is-inview .o-button_line::after {
  transform: scaleX(1);
}

.o-button.is-inview .o-button_line:first-of-type::before {
  transition-delay: 1.15s;
}

.o-button.is-inview .o-button_line:first-of-type::after {
  transition-delay: 0.1s;
}

.o-button.is-inview .o-button_line:last-of-type::before {
  transition-delay: 0.55s;
}

.o-button.is-inview .o-button_line:last-of-type::after {
  transition-delay: 0.7s;
}

.c-header-home_footer {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-header-home_controls, .c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 5.625rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls, .c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}
.is-loaded .c-header-home_controls, .is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_controls, body[data-route-option=prev-section] .c-header-home_buttons, body[data-route-option=next-section] .c-header-home_controls, body[data-route-option=next-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}
.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}
@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}
@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}
.smart-characteristics {
  list-style-type: square;
  padding-left: 20px; /* Adjust padding for bullet points */
  margin-top: 10px; /* Increase distance from the text above */
  line-height: 1; /* Adjust the line height as needed */
}

.smart-characteristics li {
  margin-bottom: 10px; /* Adjust space between bullet points */
  font-size: 24px; /* Increase font size as needed */
  font-weight: bold;
}
/* Place this at the end of your existing CSS */

.copyright-footer {
  position: fixed; /* Keeps footer at the bottom */
  bottom: 5px; /* Adjust the distance from the bottom */
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10px; /* Smaller font size */
  color: white; /* Adjust the color as needed */
  background-color: rgba(0,0,0,0.5); /* Optional: slight background for readability */
  padding: 5px 0; /* Reduced padding */
  z-index: 1000; /* Ensures it stays on top of other content */
}


/*Partners*/

.partners-title {
  transform: translateX(4.1cm) translateY(280px); /* Keeps the title in the original position */
  font-weight: bolder;
  color: orange;
}

.partners-subtitle {
  transform: translateX(3.7cm) translateY(350px); /* Keeps the subtitle in the original position */
  font-size: 28px;
  font-weight:bolder;
  color: white;
  margin-left: 0; /* Ensures the subtitle is aligned with the title */
}

.partners-logos {
  position: relative;
  left: 7cm; /* Moves the entire block slightly to the left */
  top: 0.6cm; /* Moves the entire block slightly down */
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Aligns all rows to the right */
  gap: 10px; /* Equal vertical spacing between rows */
}

.partners-subtitle .text-container {
  margin-bottom: 20px; /* Adds space below the text */
  padding: 10px 20px; /* Adds padding around the text */
  color: white; /* Ensures text color is white */
  max-width: 20cm; /* Sets the maximum width of the text container */
}

.logo-row {
  display: flex;
  justify-content: flex-end; /* Aligns logos to the right */
  gap: 20px; /* Equal horizontal spacing between logos */

}

.partner-logo {
  width: 2.5cm; /* Maintained width */
  height: 2.5cm; /* Maintained height */
  object-fit: contain; /* Prevents stretching of logos */
}

.logo-row-1 { margin-right: 0cm; } /* Top row, aligned to the right */
.logo-row-2 { margin-right: 1.5cm; } /* Slightly shifted left */
.logo-row-3 { margin-right: 3cm; } /* Further shifted left */
.logo-row-4 { margin-right: 4.5cm; } /* Even further shifted left */
.logo-row-5 { margin-right: 6cm; } /* Most shifted to the left */

.partners-section {
  /* Ensure it has a max-width */
  max-width: 1920px;
  margin: 0 auto; /* Center the section */
  width: 100%; /* Make it responsive */
}

.partners-container {
  width: 100%;
  max-width: 80%; /* Limit the container width */
  margin: 0 auto; /* Center the container */
  position: relative;
  padding-right: 20%;
  box-sizing: border-box;
}


.partners-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://i.imgur.com/TO8Xgbj.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) blur(7px);
  z-index: -1;
}

.glow-word {
  color: rgba(0, 17, 94, 1); /* Original text color */
  text-shadow: 0 0 20px rgba(0, 17, 94, 0); /* Initial glow effect (no glow) */
  animation: shine 1.5s infinite alternate; /* Apply the "shine" animation */
}

@keyframes shine {
  0% {
    text-shadow: 0 0 20px rgba(255, 208, 0, 0); /* No glow */
  }
  100% {
    text-shadow: 0 0 20px rgb(255, 255, 255); /* Full glow */
  }
}

/* Animated Header */
.large-header {
  position: relative;
  width: 100%;
  background: #333;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

#large-header {
  background-image: url('https://www.marcoguglie.it/Codepen/AnimatedHeaderBg/demo-1/img/demo-1-bg.jpg');
  filter: saturate(50%);
  overflow: hidden;
}

#container {
  color: white;
  position: absolute;
  margin: auto;
  width: 100vw;
  height: 80pt;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  filter: url(#threshold) blur(0.6px);
}

#text1, #text2 {
  font-weight: 700;
  position: absolute;
  width: 100%;
  display: inline-block;
  font-family: 'Calibri', sans-serif;
  font-size: 80pt;
  text-align: center;
  user-select: none;
}

#text1.bold-large, #text2.bold-large {
  font-size: 120pt;
  font-weight: bold;
  line-height: 65pt;
  vertical-align: middle;
}

/* General body styles */
body.home-page {
  margin: 0;
  height: auto; /* Ensures body height is based on content, making the page scrollable */
  overflow-y: auto; /* Ensures vertical scroll is available if the content overflows */
  overscroll-behavior: none;
}

/* Styling for the additional box on the homepage */
.additional-box {
  background-color: #808080;
  color: white;
  padding: 40px 0;
  flex-wrap: wrap;
}

/* Footer container styling with flexbox */
.footer-container {
  display: flex;
  justify-content: space-between; /* Ensures space distribution between columns */
  align-items: flex-start; /* Aligns content to the top */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box; /* Includes padding in width */
}

/* Individual column styling within the footer */
.footer-column {
  flex: 1; /* Equal flex basis for each column */
  padding: 0 20px; /* Ensures padding on both sides */
  text-align: center; /* Centers all content in the column */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Starts content alignment from the top */
  height: 200px; /* Adjust as needed to ensure all columns have the same height */
}

.footer-column-newsletter h3{
  padding-left: 1.5cm; /* Previously 2cm, now increased to 3cm */
}

/* Adds vertical lines between footer columns */
.footer-column:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ffffff;
  transform: translateX(-50%); /* Centers the line on the left edge of the column */
}

/* Styling for headings within footer columns */
.footer-column h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

/* Styling for social media icons */
.social-icons {
  display: flex;
  justify-content: center; /* Centers icons horizontally */
  padding: 10px 0; /* Adds vertical padding */
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  padding: 8px;
  background: #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px; /* Aligns the icon vertically */
  color: white; /* Icon color */
  font-size: 24px; /* Icon size */
  text-align: center;
}

.social-icon:hover {
  background: #555; /* Slightly lighter background on hover */
  color: #ddd; /* Slightly lighter icon color on hover */
}

/* Styling for the newsletter form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Aligns form items to the center */
  padding-left: 2cm; /* Adds 2cm padding to the left to increase space next to the line */
}

.newsletter-form input,
.newsletter-form button {
  width: 100%; /* Full width for responsiveness */
  padding: 10px;
  margin-bottom: 10px; /* Spacing between form items */
}

.newsletter-form button {
  background: #333;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  
  .footer-column {
      padding: 0;
      margin-bottom: 20px;
      align-items: center; /* Ensures content is centered on smaller screens */
  }

  .footer-column:not(:first-child)::before {
      content: none; /* Removes the lines on smaller screens */
  }

  .newsletter-form input,
  .newsletter-form button {
      width: 100%; /* Full width on smaller screens */
  }
}


/* Contacts page */
.contact-page-container {
  background-image: url('https://i.imgur.com/TO8Xgbj.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh; /* Ensure the container covers the entire viewport */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-box-subtitle a {
  color: #ffffff; /* Stellt sicher, dass die Schriftfarbe immer weiß ist */
  text-decoration: none; /* Entfernt die Standard-Unterstreichung für Links */
  display: inline-block; /* Ermöglicht die Verwendung von transform */
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for the scaling effect */
}

.contact-box-subtitle a:hover {
  color: #ffffff; /* Stellt sicher, dass die Schriftfarbe auch bei verschiedenen Link-Zuständen weiß bleibt */
  transform: scale(1.1); /* Vergrößert die Schrift um 10% */
}

.contact-left .contact-map {
  width: 100%;
  height: calc(450px + 2mm); /* Adjusted height */
  border: 0;
  margin-top: 1px; /* Move the map 1 pixel down */
}

.contact-content {
  text-align: center;
  width: 100%; /* Full width */
}

.contact-content h1 {
  position: relative;
  display: inline-block; /* Ensures the ::after pseudo-element is only as wide as the text */
  font-family: 'Calibri', sans-serif;
  font-weight:bolder;
  font-size: 36px;
  color: #000000;
  margin: 0 auto;
  padding-bottom: 30px; /* Adjusted padding to accommodate underline */
}

.contact-content h2 {
  font-family: 'Calibri', sans-serif;
  font-size: 28px; /* Making subtitle smaller */
  color: #333;
  margin: 0 auto; /* Center align */
  color: white;
}

.contact-form-container {
  width: 100%;
  max-width: 880px;
  height: 500px; /* Adjust the height as needed */
  border: 1px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
  margin: 20px auto; /* Center align */
  display: flex;
  align-items: center;
}

.contact-left, .contact-right {
  flex: 1;
  height: 100%;
  position: relative;
}

.contact-image {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
}

.contact-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  margin-right: -20px; /* Adjust this value as needed to match the left spacing */
}

/* Adjusts for the line separator */
.contact-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}

.contact-box {
  background-color: #333;
  border: 1px solid #ccc;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 220px; /* Adjust height as needed */
}

/* Styles for social media icons to be white */
.contact-box-icons i {
  color: #fff; /* White color */
}

.contact-box-title {
  font-family: 'Calibri', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0;
}

.contact-box-subtitle {
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin: 5px 0;
  padding-bottom: 10px;
}

.contact-box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px; /* Adjust size as needed */
  height: 48px; /* Adjust size as needed */
  background-color: #ffffff; /* Circle background color */
  border-radius: 50%; /* Makes the div circular */
  margin-bottom: 10px;
  color: #000000; /* Icon color */
}

.contact-box-icons i, .contact-box-icon i {
  font-size: 24px; /* Icon size inside the circle */
}

.contact-box-icons img {
  width: 24px; /* Size of the icons */
  height: 24px; /* Size of the icons */
  margin: 0 5px;
}

.contact-box-icon {
  width: 48px; /* Size of the icons */
  height: 48px; /* Size of the icons */
  margin-bottom: 10px;
}

.contact-content h1::after {
  content: '';
  display: block;
  background-color: #333; /* Color of the underline */
  height: 4px; /* Thickness of the underline */
  position: absolute;
  left: 0;
  right: 0;
  width: 100%; /* Start at full width of text */
  transform-origin: center;
  animation: expandRetract 2s ease-in-out infinite; /* Animation for the line */
}

@keyframes expandRetract {
  0%, 100% {
    transform: scaleX(1); /* Full width */
  }
  50% {
    transform: scaleX(0.75); /* Scale down to 75% width */
  }
}

/* Side Navigation Styles */
.side-navigation {
  width: 350px; /* Adjust the width as needed */
  position: fixed;
  right: 0;
  top: 150px;
  transform: translateY(-50%);
  z-index: 100;
  background-color: rgba(128, 128, 128, 0.5);
}

.side-navigation, .side-navigation * {
  background-color: rgba(128, 128, 128, 0.5) !important;
  z-index: 9999;
}

.side-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.side-navigation-item {
  color: #FFF;
  padding: 10px 30px; /* Consistent padding */
  cursor: pointer;
  background: #333;
  transition: color 0.3s ease-out, font-size 0.3s ease-out, background-color 0.3s ease-out;
  font-size: 16px; /* Initial font size */
  position: relative; /* Needed for the pseudo-element positioning */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block; /* Ensure the element is block-level */
}

.side-navigation-item::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #FFFFFF; /* This is your underline color */
  transition: width 0.5s ease-in-out; /* Smooth transition for the underline */
  position: absolute;
  bottom: 0;
  left: 0;
}

.side-navigation-item.active::after, .side-navigation-item:hover::after {
  width: 100%; /* Full width on hover/active */
  background: #242424; /* Gold color for a bit of flair */
}

.side-navigation-item.active, .side-navigation-item:hover {
  font-size: 18px; /* Increased font size on hover/active */
  background: #555;
  color: #242424; /* Changing text color to match the underline for active/hover state */
}

.side-navigation-item.active {
  background: #555; /* Active state background */
}

.side-navigation-item.active::after {
  width: 100%; /* Full width on hover */
}

.side-navigation-item:hover::after {
  width: 100%; /* Full width on hover */
}

.side-navigation-item.active {
  font-weight: bold; /* Active state font weight */
  background: #555; /* Active state background */
  transform: scale(1.1); /* Slightly scale up active item */
}

body.mtm-page {
  background-color: #575757; /* Hintergrundfarbe des gesamten Seitenbereichs */
  margin: 0; /* Kein Außenabstand für den Körper */
  padding: 0; /* Kein Innenabstand für den Körper */
  font-family: Calibri, sans-serif; /* Standardschriftart für den Text */
}

/* Stil für den Login-Bereich */
.login-section {
  display: flex; /* Verwenden von Flexbox für die Ausrichtung */
  justify-content: center; /* Zentriert den Inhalt horizontal */
  align-items: center; /* Zentriert den Inhalt vertikal */
  height: 100vh; /* Setzt die Höhe auf 100% der Bildschirmhöhe */
}

/* Stil für den Container um das Login-Formular */

.login-wrapper {
  padding: 0.5cm; /* Abstand zum inneren Rechteck */
  border: 1px solid white; /* Weißer Rahmen */
  display: inline-block; /* So dass der Rahmen nur um den Inhalt herum ist */
}

.login-container {
  background: rgba(255, 255, 255, 0.3); /* Weißer Hintergrund mit 80% Transparenz */
  backdrop-filter: blur(10px); /* Weichzeichner-Effekt */
  padding: 20px 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Stil für das Passwort-Eingabefeld */
input[type="password"] {
  width: calc(100% - 80px); /* Breite des Passwortfelds abzüglich des linken und rechten Paddings der Box */
  padding: 12px; /* Innenabstand für das Passwortfeld */
  margin-bottom: 10px; /* Abstand nach unten für das Passwortfeld */
  border: 1px solid #ccc; /* Rand für das Passwortfeld */
  border-radius: 0; /* Eckradius des Passwortfelds auf 0 setzen (eckig machen) */
}

/* Stil für den Einloggen-Button */
button[type="submit"] {
  width: calc(100% - 80px); /* Breite des Einloggen-Buttons abzüglich des linken und rechten Paddings der Box */
  padding: 12px; /* Innenabstand für den Button */
  background-color: #007bff; /* Hintergrundfarbe des Buttons */
  color: #fff; /* Schriftfarbe des Buttons */
  border: none; /* Kein Rand für den Button */
  border-radius: 0; /* Eckradius des Buttons auf 0 setzen (eckig machen) */
  cursor: pointer; /* Zeiger-Cursor für den Button */
  margin-top: 10px; /* Abstand nach oben für den Button */
}

/* Übergangseffekt für den Button beim Hovern */
button[type="submit"]:hover {
  background-color: #0056b3; /* Farbe für den Button beim Hovern */
}

/* Stil für die Label-Elemente */
label {
  display: block; /* Anzeige als Blockelement mit Margin unten */
  margin-bottom: 10px; /* Margin unten für die Label */
  margin-top: 10px; /* Abstand nach oben für die Label */
  font-weight: bold; /* Fettschrift für die Label */
}

/*LOGIN */

input.error {
  border: 2px solid red; /* Fügt einen roten Rand hinzu, wenn ein Fehler auftritt */
}

/* Allgemeiner Stil für die MTM-Seite */

.mtm-page {
  font-family: 'Calibri', sans-serif;
}

.content-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 168px); /* Adjust for header height */
  padding-top: 30px; /* Adjust padding to control space from the top */
}

.mtm-section {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center; /* Zentriert den Text und alle Inhalte innerhalb der Sektion */
}

/* Stil für die Tabelle innerhalb der Systemüberwachung */
.data-table {
  width: 60%; /* Reduziert die Breite der Tabelle */
  border-collapse: collapse;
  margin: 10px auto; /* Zentriert die Tabelle und setzt den vertikalen Abstand */
  border: 2px solid #004080; /* Dunkelblauer Rand */
  table-layout: fixed; /* Setzt das Layout der Tabelle auf fixed */
}

.data-table th,
.data-table td {
  border: 1px solid #004080; /* Dunkelblauer Rand */
  padding: 8px;
  text-align: center; /* Zentriert den Text */
  background-color: white; /* Hintergrundfarbe weiß */
  font-size: 16px; /* Konsistente Schriftgröße */
  font-family: Calibri, sans-serif; /* Konsistente Schriftart */
  font-weight: bold; /* Fettgedruckt für bessere Sichtbarkeit */
  color: #333; /* Dunkelgraue Farbe */
}

.data-table th:nth-child(1),
.data-table td:nth-child(1) {
  width: 65%; /* Breiter für den Namen des Elements */
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
  width: 35%; /* Schmaler für den letzten Wert */
}

.data-table th {
  background-color: #004080; /* Dunkelblauer Hintergrund für Kopfzellen */
  color: white; /* Weißer Text für Kopfzellen */
}

.data-table tr:nth-child(even) {
  background-color: #f2f2f2; /* Hellgrauer Hintergrund für gerade Zeilen */
}

.data-container {
  width: 50%; /* Reduziert die Breite des Containers */
  margin: 0 auto; /* Zentriert den Container */
  margin-bottom: -15px;}

.mtm-container {
  max-width: 1200px; /* Maximale Breite */
}

.mtm-h1 {
  text-align: center;
  color: white;
  font-size: 6.25rem; /* 100px */
  font-weight: 700; /* Bold */
  margin-top: 20px; /* Abstand zum oberen Rand */
}

h2.mtm-h2 {
  font-size: 28px; /* Schriftgröße */
  text-align: center;
  font-weight: 700;
  color: white;
  padding: 0 20px; /* Padding links und rechts für besseren Abstand */
}

h3.mtm-h3 {
  font-size: 28px; /* Schriftgröße */
  text-align: center;
  font-weight: 700;
  color: white;
  margin-top: -10px;
}

h4.mtm-h4 {
  font-size: 28px; /* Schriftgröße */
  text-align: center;
  font-weight: 700;
  color: white;
  margin-top: -10px;
}

h5.mtm-h5 {
  font-size: 28px; /* Schriftgröße */
  text-align: center;
  font-weight: 700;
  color: white;
  margin-top: -10px;
}

p.environment-description,
p.system-description,
p.application-description {
  font-size: 24px; /* Schriftgröße */
  font-weight: bold;
  color: white;
  text-align: center;
  padding: 0 20px; /* Padding links und rechts für besseren Abstand */
  margin-top: 10px; /* Abstand nach oben */
}


/* Link-Stil für physische Überwachung */
.mtm-link1, .mtm-link2 {
  color: #0066cc;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: inline-block; /* Ermöglicht margin */
  margin-top: 10px; /* Abstand nach oben */
  margin-bottom: -10px;
}

.mtm-link1:hover, .mtm-link2:hover {
  text-decoration: underline; /* Fügt eine Unterstreichung beim Überfahren hinzu */
}

.mtm-link:hover {
  text-decoration: underline; /* Fügt eine Unterstreichung beim Überfahren hinzu */
}

/* Stil für einzelne Sektionen */


/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
  .mtm-container {
    width: 95%;
    padding: 10px;
  }

  .mtm-h1, .mtm-h2, .mtm-h3, .mtm-h4 {
    font-size: 1.5rem; /* Kleinere Schriftgröße für bessere Lesbarkeit */
  }
}

/* Stil für die Statusanzeigen in der Webseiten-Überwachung */

.mtm-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://i.imgur.com/LMDES1F.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: grayscale(100%) brightness(80%) blur(3px);
}

/* Additional styles for better visibility of dynamic data */
.data-table tbody tr td {
  font-weight: bold;
  color: #333;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.button-container button {
  background-color: white; /* Weiße Buttons */
  border: 1px solid #004080; /* Grüner Rand */
  color: black; /* Schwarzer Text */
  padding: 5px 15px; /* Kleinere Padding-Werte */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px; /* Kleinere Schriftgröße */
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 0; /* Keine abgerundeten Ecken */
}

.button-container button:hover {
  background-color: #f0f0f0; /* Helleres Grau beim Überfahren */
}

.button-container button.active {
  background-color: #004080; /* Grüner Hintergrund für den aktiven Button */
  color: white; /* Weißer Text für den aktiven Button */
}

.status-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* This will ensure that the items wrap if there's not enough space */
  margin-top: 15px; /* Adds space between the Webservices text and the buttons */
}

.status-check {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  min-width: 150px; /* Ensures that the buttons are of minimum width */
  font-family: Calibri, sans-serif; /* Ensures consistent font */
  font-size: 16px;
}

#status-circuitt-ch.online, #status-circuitt-com.online, #status-lendhof-com.online {
  background-color: #4CAF50; /* Green background for online */
  color: white;
}

#status-circuitt-ch.offline, #status-circuitt-com.offline, #status-lendhof-com.offline {
  background-color: #f44336; /* Red background for offline */
  color: white;
}