.about-us {
  padding: 60px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}

.about-item:first-of-type {
  padding: 0 20px;
}

.about-item p {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 25.5px */
  margin-top: 37px !important;
}

.about-item:last-of-type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about-item-img {
  width: 100%;
  position: relative;
}

.about-item-img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all .5s ease;
}

.about-item-active::after{
  background: rgba(0, 0, 0, 0);
}

.about-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#faq {
  padding-top: 100px;
}

.accordion {
  margin-top: 40px;
  border-top: 1px solid rgba(30, 115, 118, 0.4);
}

.accordion-item,
.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button:focus {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0 !important;
}

.accordion-item {
  border-bottom: 1px solid rgba(30, 115, 118, 0.4);
}

.accordion-item button,
.accordion-button:not(.collapsed) {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.accordion-button {
  padding: 25px 0 20px;
}

.accordion-body {
  padding: 0 0 25px;
}

.accordion-body p {
  color: #e1e1e1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.contact-us {
  color: #f2f2f2;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 25.5px */
  margin-top: 50px !important;
}

.contact-us a {
  color: inherit;
}

footer{
  border-top: 1px solid rgba(30, 115, 118, 0.40);
}

@media screen and (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 45% 55%;
    gap: 0;
  }

  .about-item p {
    font-size: 18px;
    font-weight: 500;
  }

  .accordion-item button,
  .accordion-button:not(.collapsed) {
    font-size: 20px;
  }
  .accordion-body p {
    font-size: 18px;
  }

  .contact-us {
    margin-top: 60px !important;
  }
}

@media screen and (min-width: 1440px) {
  .about-grid {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }
}
