section.intro {
  padding-left: 50px;
  padding-right: 50px;
  background: #F2F2F2;
  height: 90vh;
  display: flex;
  align-items: center;
  min-height: 700px;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 992px) {
  section.intro {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  section.intro {
    padding-left: 20px;
    padding-right: 20p;
    min-height: auto;
    max-height: 800px;
  }
}

section.intro .center {
  z-index: 1
}

section.intro h1 {
  font-size: 70px;
  line-height: 80px;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  section.intro h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 1200px) {
  section.intro h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  section.intro h1 {
    font-size: 19px;
    line-height: 29px;
  }
}

.intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.intro-top {
    display: flex; 
    justify-content: center;
    gap: 150px;
    background-color: rgba(255, 255, 255, 0.1); 
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}


@media (max-width: 767px) { 
    .intro-top {
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }
}

.top-mawoh {
    background-size: contain;
    background-repeat: no-repeat;
    width: 350px;
    height: 350px;
    background-position: center;
    transition: all 0.3s ease;
}

.top-itsa {
    background-size: contain;
    background-repeat: no-repeat;
    width: 350px;
    height: 350px;
    transition: all 0.3s ease; 
}

@media (max-width: 767px) { 
    .top-mawoh {
        width: 150px;
        height: 150px;
    }

    .top-itsa {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767px) { 
    .top-mawoh {
        width: 150px;
        height: 150px;
    }

    .top-itsa {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
     .top-mawoh {
        width: 250px;
        height: 250px;
    }

    .top-itsa {
        width: 250px;
        height: 250px;
    }
}


.top-mawoh:hover {
  transform: scale(1.1); 
  cursor: pointer; 
}



.top-itsa:hover {
  transform: scale(1.1); 
  cursor: pointer;  
}

.intro-bottom h2 {
    text-align: center;
    backdrop-filter: blur(3px);
}

.intro-button, #sticky-button {
    align-self: center;
    font-weight: 600;
    color: #fff;
    background-color: #BA0000;
    border: 2px solid #BA0000;
    display: inline-block;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 54px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 20px 0 0 0;
    text-align: center;
    transition: all ease .3s;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 111, 0, 0.3);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
}

.intro-button:hover,
#sticky-button:hover
{
    cursor: pointer;  
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
    .intro-button {
        font-size: 14px;
        padding: 10px 15px;
        margin: 0;
        width: 250px;
    }
}

section.intro {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom; 
    animation: scrollBackground 20s infinite linear;
    will-change: background-position;
}

@keyframes scrollBackground {
  0% {
    background-position: center bottom; 
  }
  50% {
    background-position: center center; 
  }
  100% {
    background-position: center bottom; 
  }
}

.intro-button {
    align-items: center;
    display: flex;
    gap: 15px;
}

.intro-button-icon {
    height: 35px; 
    width: 35px;
    background-size: contain;
    background-repeat: no-repeat;
}

section.intro p {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin: 0;
  max-width: 800px
}

@media (max-width: 992px) {
  section.intro p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  section.intro p {
    font-size: 16px;
    line-height: 26px;
  }
}

section.cta-leistung {
  padding: 50px;
  background-color: #333332;
}

@media (max-width: 992px) {
  section.cta-leistung {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  section.cta-leistung {
    padding: 20px;
  }
}

section.cta-leistung h2,
section.cta-leistung p {
  color: #FFFFFF;
}

section.cta-leistung-details {
  background-color: #F2F2F2;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 992px) {
  section.cta-leistung-details {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  section.cta-leistung-details {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

section.cta-leistung-details .leistungen .col {
  width: 33.32%;
  float: left;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  section.cta-leistung-details .leistungen .col {
    width: 100%;
    float: none;
    max-width: 500px;
    margin: 0 auto 40px auto;
  }
}

section.cta-leistung-details .leistungen .col h3 {
  color: #BA0000;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin: 20px 0;
}

@media (max-width: 992px) {
  section.cta-leistung-details .leistungen .col h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
  }
}

section.cta-leistung-details .leistungen .col p {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 5px 0;
}

@media (max-width: 992px) {
  section.cta-leistung-details .leistungen .col p {
    font-size: 14px;
    line-height: 22px;
  }
}

section.cta-leistung-details .cta {
  text-align: center;
  padding-top: 40px;
  display: inline-block
}

@media (max-width: 992px) {
  section.cta-leistung-details .cta {
    padding-top: 20px;
  }
}

section.cta-leistung-details .leistungen .col:last-child {
  margin-bottom: 20px;
}

section.cta-leistung-details .leistungen:before,
section.cta-leistung-details .leistungen:after {
  content: '';
  display: table;
}

section.cta-leistung-details .leistungen:after {
  clear: both;
}

section.cta-leistung p.fingers-right:before {
  content: "";
  background-image: url('../img/finger_points_right.svg');
  display: inline-block;
  width: 24px;   
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 5px;
  top: 2px;
}


section.cta-leistung p.lock::before {
  content: "";
  background-image: url('../img/lock_white.svg');
  display: inline-block;
  width: 24px;   
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 5px;
  top: 2px;
}

.img-small {
  width: 50%;
  float: left;
}

.img-small,
.img-large {
  height: 500px;
}

@media (max-width: 1800px) {
  .img-small,
  .img-large {
    height: 400px;
  }
}

@media (max-width: 1400px) {
  .img-small,
  .img-large {
    height: 300px;
  }
}

@media (max-width: 992px) {

  .img-small,
  .img-large {
    height: 250px;
  }
}

@media (max-width: 450px) {
  .img-small,
  .img-large {
    height: 180px;
  }
}

.img-small,
.img-large {
  overflow: hidden;
  border: 5px solid #ffffff;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.cta-leistung {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.itsa-info-block {
  margin-top: 50px;
  color: #FFFFFF

}

.itsa-info-block__inner {
  border-radius: 30px;
  padding: 20px;
  background-image: linear-gradient(to bottom left, rgba(10, 172, 198, 1), rgba(0, 50, 80, 1)) !important;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 100px;
}

.itsa-info-block__inner_col_right {
  background-color: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 111, 0, 0.3);
}

.itsa-info-block__inner_col {
  line-height: 40px;
}

.itsa-logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 280px;
  width: 350px;
}

@media (max-width: 1250px) {
  .itsa-logo {
    height: 170px;
    width: 250px;
  }
}

@media (max-width: 1150px) {
  .itsa-info-block__inner_col_right{ 
    display:none
  }
}


.itsa-meta-info {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itsa-navbar {
  display: flex;
  justify-content: space-between;
}

.itsa-navbar .item {
  align-items: center;
  border-left: 1px solid white;
  padding-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  white-space: nowrap;
  line-height: 25px;
}

.itsa-navbar .item:first-of-type {
  border-left: none;
}


.itsa-navbar .item .icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 35px;
  width: 35px;
}

@media (max-width: 767px) { 
  .itsa-navbar {
    align-self: center;
    flex-direction: column;
    gap: 15px;
  }

  .itsa-navbar .item {
    border-left: none;
  }

  .itsa-navbar .item .icon {
    background-size: contain;
    background-repeat: no-repeat;
    height: 25px;
    width: 25px;
  }
}

#sticky-button {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 490px;
  animation-delay: 0;
}

