* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
    height: 100%;
}

body {
  background-color: #74A9DD;
  background-image: url('images/uld-background-image.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  min-height: 100%;
  font-family: 'Open Sans', sans-serif;
}

.faq-page {
  height: 100%;
}

.faq-list {
  width: 100%;
  padding: 0 32px;
}

@media (max-width: 1024px) {
  .faq-list {
    padding: 0 16px;
  }
}

.faq-container {
  height: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 32px;
  padding-bottom: 16px;
}

@media (max-width: 1024px) {
  .faq-container {
    padding: 0 8px;
  }
}

.faq-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-content {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: white;
  padding-bottom: 32px;
}

.faq-content > h1 {
  text-align: center;
  padding: 2rem;
  padding-bottom: 1rem;
}

.faq-header-background {
  background-color: rgba(21, 70, 142, 1);
  position: absolute;
  bottom: 0;
  height: 35%;
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.img {
  z-index: 1;
  position: relative;
}

.faq-wrapper {
  position: relative;
  margin-top: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.accordion {
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 2rem 2rem;
  border: none;
  outline: none;
  width: 100%;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.accordion.active > span {
  font-weight:900;
}

.accordion i {
  font-size: 1.6rem;
  transition: transform 0.3s ease-in-out;
}

.accordion.active > i {
  transform: rotate(180deg);
}

.pannel {
  padding: 0 2rem 2.5rem 2rem;
  overflow: hidden;
  display: none;
}

.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
}