.section-description{
  
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
}
.section-after-button{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  margin-bottom: -30px;

  .button-primary, 
  .button-secondary {
      margin: 0;
      font-size: 20px;
  }
}

.GridSection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;

  .GridSectionItem {
    flex-basis: calc(50% - 35px);
  }
}

.GridSectionItem {
  display: flex;
  flex-direction: column;
  gap: 20px;

  .GridSectionItem-image-container {
    width: 100%;
    padding-top: 58.54%;  /* 360 / 615 */
    margin-bottom: 10px;
    position: relative;
  }

  .GridSectionItem-image {
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;

    img {
      max-width: 100%;
      height: 100%;
      border-radius: 20px;
      display: block;
      object-fit: contain;
      box-shadow: 0px 2px 5px rgba(0,0,0, 0.1);
    }
  }

  .GridSectionItem-title {
    font-weight: 700;
    font-size: 25px;
  }

  .GridSectionItem-description {
    font-weight: 400;
    font-size: 20px;
    margin: 0;
  }
}

.ListSection {
  display: flex;
  flex-direction: column;
  gap: 50px;

  .ListSectionItem {
    &:nth-child(even) {
      flex-direction: row-reverse;
    }
  }
}

.ListSectionItem {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;

  .ListSectionItem-image {
    flex: 1;
    flex-shrink: 0;
    height: 430px;
    background-color: transparent;
    display: flex;
    align-items: center;

    img {
      width: 100%;
      max-height: 100%;
      border-radius: 20px;
      display: block;
      object-fit: contain;
      box-shadow: 0px 2px 5px rgba(0,0,0, 0.1);
    }
  }

  .ListSectionItem-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .ListSectionItem-content-title {
    font-weight: 700;
    font-size: 30px;
  }

  .ListSectionItem-content-description {
    font-weight: 400;
    font-size: 25px;
    margin: 0;
  }
}

.AccordionSection {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap:20px;
}

.AccordionSection-sections {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.AccordionSection-sections-section {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 25px;
  background-color: transparent;
  border: none;
  text-align: left;
  color: #FFFFFF80;
  cursor: pointer;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  justify-content: center;
  margin: -2px 0;
  transition: background-color .2s, color .2s;

  &:hover {
    background-color: #353634;
    color: var(--text-color);
  }

  &:last-child {
    border-bottom: none;
  }

  .AccordionSection-sections-section-title {
    font-weight: 700;
    font-size: 20px;
  }

  .AccordionSection-sections-section-description {
    font-weight: 400;
    font-size: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
  }

  &.active {
    background-color: #40423f;
    color: var(--text-color);

    .AccordionSection-sections-section-highlight {
      display: block;
    }

    .AccordionSection-sections-section-description {
      max-height: 200px;
      opacity: 1;
      padding-top: 10px;
    }
  }
}

.AccordionSection-sections-section-underline {
  width: 90%;
  margin: 0;
  border-color: rgba(255, 255, 255, .1);
  margin-left: auto;

  &:last-child {
    display: none;
  }
}

.AccordionSection-sections-section-highlight {
  position: absolute;
  display: none;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
}

.AccordionSection-images {
  flex: 1;
  height: 580px;
  position: relative;
}

.AccordionSection-image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  &.active {
    opacity: 1;
    z-index: 1;
  }

  img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
    box-shadow: 0px 2px 5px rgba(0,0,0, 0.1);
  }
}