.max {
  max-width: 1500px;
  margin: auto;
}
/* First Section */
.first-section-container {
  background-image: linear-gradient(to right, #2a556a, #3b6a7c);
  font-family: "Open Sans", sans-serif;
}
.header {
  color: white;
}
.header__image {
  margin-top: 66px;
}
.header__second-title {
  font-size: 28px;
  margin-top: 71px;
  margin-bottom: 74px;
}

/* End of first section */

/* Second FAQ */
.faqcontainer {
  margin: 0 auto;
  padding: 6rem 0;
  /* width: 48rem; */
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
}

.accordion .accordion-item {
  border-bottom: 1px solid #004c66;
  padding: 10px;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #004c66;
}
.accordion-title {
  color: #004c66;
  font-size: 24px;
  font-weight: 700;
  display: block;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.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 .accordion-title {
  padding: 0em 1.5em 0em 0;
}
.accordion button .icon {
  color: #fd3c22;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 30px;
  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: 9em;
  -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 {
  color: #004c66;
  font-size: 22px;
  font-weight: 400;
  padding-top: 15px;
}
@media screen and (max-width: 992px) {
  .accordion-title {
    font-size: 20px;
  }
  .accordion .accordion-content p{
    font-size: 18px;
  }
}
@media screen and (max-width: 497px) {
  .accordion-title {
    font-size: 20px;
  }
}
/* End of FAQ */
