@media (min-width: 992px) {
  .grundtext {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--bs-gray-600);
  }
}

@media (max-width: 768px) {
  .grundtext {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--bs-gray-600);
  }
}

@media (min-width: 992px) {
  .grundtext-main {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--bs-gray-600);
  }
}

@media (max-width: 576px) {
  .grundtext-main {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--bs-gray-600);
  }
}

@media (max-width: 380px) {
  .grundtext-main {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--bs-gray-600);
  }
}

@media (max-width: 576px) {
  .text-header {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .text-header {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .trapez-bg {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
  }
}

@media (min-width: 992px) {
  .trapez-bg {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
  }
}

@media (max-width: 992px) {
  .trapez-bg-revers-container {
    clip-path: polygon(0 0%, 100% 2%, 100% 98%, 0 100%);
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
  }
}

@media (min-width: 992px) {
  .trapez-bg-revers-container {
    clip-path: polygon(0 0%, 100% 10%, 100% 90%, 0 100%);
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
  }
}

@media (max-width: 992px) {
  .trapez-bg-revers {
    /*clip-path: polygon(0 0%, 100% 2%, 100% 90%, 0 98%);*/
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (min-width: 992px) {
  .trapez-bg-revers {
    /*clip-path: polygon(0 0%, 100% 10%, 100% 90%, 0 100%);*/
    background: #3697b1;
    background: linear-gradient(-91deg, #3697b1, #54adc5 52%, #3697b1), #3697b1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

#navbarNav {
  color: #3f3f3f;
}

#navbarNav a {
  color: #3f3f3f;
  /*font-weight: bold;*/
}

#navbarNav a:hover {
  color: #3697b1;
  transition-duration: 0.35s;
}

#navbarNav .nav-item:hover {
  background-color: rgba(246,168,0,0.5);
  transition-duration: 0.5s;
}

.fit-cover {
  border: 7px solid #ffffff;
  box-shadow: 6px 6px 6px 0px;
}

@media (max-width:576px) {
  .flex-xs-column-reverse {
    flex-direction: column-reverse!important;
  }
}

.read-more-container {
  margin-bottom: 15px;
}

.short-text {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 1s ease-out, opacity 0.5s ease-out;
  opacity: 1;
}

.full-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in, opacity 0.5s ease-in;
  opacity: 0;
}

.full-text.expanded {
  max-height: 5000px;
  opacity: 1;
}

.short-text.collapsed {
  max-height: 0;
  opacity: 0;
}

.read-more-button {
  background-color: #3697b1;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #f6a800;
}

@media (min-width:1200px) {
  .display-1 {
    font-size: 7rem;
  }
}

