* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}
.container {
  max-width: 1500px !important;
}
/* Start first section */
.first-section-container {
  font-family: "Open Sans", sans-serif;
  /*background-image: linear-gradient(to right, #2a556a, #577e8f);*/
  background: linear-gradient(to right, #2a556a, #3b6a7c);
  margin-bottom: 80px;
  padding-bottom: 70px;
}

.main-header {
  color: white;
  padding-top: 80px;
}

.header__title {
  letter-spacing: 0.22em;
  margin-top: 50px;
  font-size: 1rem; /* 1 rem -> 16px */
  font-weight: 400;
}
.header__second-title {
  font-size: 50px;
  padding: 30px 0 50px 0;
  font-weight: bold;
  margin-bottom: 0;
}
.header_pargraph {
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 63%;
}
.special-text {
  font-size: 19px;
  line-height: 43px;
  font-weight: 800;
      text-transform: uppercase;
    letter-spacing: 2px;
}
/* End first section */
/* Second-section */
.second-section {
  font-family: "Open Sans", sans-serif;
}
.second-section__title {
  color: #004a64;
  letter-spacing: 0.22em;
  font-size: 17px;
  font-weight: 400;
}
.second-section__second-title {
  font-size: 34px;
  margin-top: 22px;
  margin-bottom: 38px;
  color: #004a64;
  font-weight: 800;
  line-height: 43px;
  text-align: left !important;
}
.second-section_pargraph {
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
  text-align: left !important;
}
/* End of Second section */

/* Third Section */
.third-section {
  font-family: "Open Sans", sans-serif;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1500px;
  margin: auto;
}
.third-section img{
  max-width: 100% !important;
}

/* .third__section__right > div {
  margin-top: 15px;
} */

.third-section .container {
  max-width: 1791px !important;
}
.third__section__right {
  max-width: 42% !important;
}
.third__section__right .third__section__right__title {
  color: #fd3c22;
  letter-spacing: 3.52px;
  font-weight: 400;
  font-size: 18px;
}
h5.third__section__right__title{
  padding-left: 40px !important;
  letter-spacing: 2px;
  color:#fd3c22 !important;
}
.section-title {
  color: #004a64;
  font-weight: 800;
  margin-top: 5px;
  margin-bottom: 23px;
  font-size: 21px;
}

.third__section__right .section-pargraph__li {
  line-height: 27px;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 15px;
}

.section-pargraph ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-pargraph li, .accordion .accordion-content p {
  padding-left: 1em;
  text-indent: -0.7rem;
  font-size: 19px;
    padding-bottom: 10px;
    line-height: 28px;
}

.section-pargraph li::before {
  content: "• ";
  color: red; /* or whatever color you prefer */
}

/* Second FAQ */
.faqcontainer {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 75px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #004a64;
}
.accordion .accordion-item:last-child {
  border-bottom: 0px solid #004a64;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #004a64;
}
.accordion-title {
    color: #004a64;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding-top: 35px;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion-button-1 {
  padding-bottom: 40px;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #fd3c22;
}

button:focus {
  outline: none !important;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #fd3c22;
  border: 1px solid #fd3c22;
}
.accordion button .icon {
  color: #004a64;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  /* top: 27px; */
  right: -2px;
  width: 22px;
  height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: #fd3c22;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 28em;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 200ms linear, max-height 200ms linear;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p::before {
  content: "• ";
  color: red; /* or whatever color you prefer */
}
.accordion .accordion-content p {
  line-height: 27px;
  font-size: 19px;
  font-weight: 400;
  margin: 1em 0;
  padding-left: 1em;
  text-indent: -0.9rem;
}
.accordion .accordion-content ul {
  margin: 1em 0;
}
.accordion .accordion-content ul {
  margin: 16px 0 80px 0;
}
@media screen and (max-width: 992px) {
  .accordion-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 497px) {
  .accordion-title {
    font-size: 14px;
  }
}
/* End of FAQ */
/* End of Third Section */
/* Fourt Section */
.fourth-section {
  background-image: url(../img/Rechteck13.png);
  font-family: "Open Sans", sans-serif;
  padding: 60px 0 50px 0;
}

.fourth__section__left {
  margin-top: 20px;
}

.fourth__section__left__title {
  color: #004a64;
  letter-spacing: 3.52px;
  font-weight: 400;
  font-size: 17px;
}
.fourth__section__left h5, .fourth__section__left h1, .fourth__section__left h3, .fourth__section__left p{
  text-align: right !important;
}
.fourth__section__second-title {
  font-weight: 800;
  color: #004a64;
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.fourth-section .section-pargraph {
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 35px;
}
.fourth__section__last__title {
  color: #fd3c22;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
      padding-bottom: 15px;
}
.fourth__section__right img{
  margin-top: 25px;
}
.justify-content-around{
  justify-content: flex-end !important;
}
/* End of fourth section */
@media screen and (max-width: 1200px) {
  .faqcontainer{
    padding: 0 25px;
  }
  .header_pargraph{
    max-width: 100%;
  }
  .third__section__left img {
    height: auto;
    max-width: 100%;
  }
  .third__section__right {
    max-width: 100% !important;
  }
  .accordion .accordion-content p,
  .third__section__right .section-pargraph__li {
    font-size: 18px;
  }
  .accordion button[aria-expanded="true"] + .accordion-content {
    max-height: 30em;
  }
  .second-section__second-title {
    font-size: 34px;
    max-width: 100%;
  }
  .fourth__section__second-title {
    font-size: 26px;
  }
  .fourth__section__right img {
    width: 100% !important;
  }
  .second-section_pargraph {
    max-width: 100%;
  }
  .fourth__section__last__title{
    padding-bottom: 30px;
    font-size: 24px !important;
  }
  p.text-center,img.text-center,h1.text-center,h2.text-center,h3.text-center,h3.text-center, h5.text-center, span.text-center{
    text-align: left !important;
  }
  div.align-items-center{
    align-items: start !important;
  }
}
@media (max-width: 455px){
  .third__section__right .third__section__right__title{
    font-size: 16px;
  }
}