body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
}

/* SECTION 1 */
.services-sec1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}

.sec1-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40rem;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  p {
    margin: 1rem 0 0;
  }
  span {
    font-weight: bold;
  }
  h2 {
    font-weight: 100;
    font-size: 50px;
    color: var(--blue);
    margin: 6rem 0 0;
    line-height: 1;
  }
  h1 {
    font-family: var(--playfair);
    font-size: 100px;
    font-style: italic;
    color: var(--blue);
    margin: 0;
    line-height: 1;
  }
}

/* SECTION 2 */
.services-sec2 {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 680px;
  margin-bottom: 2rem;
}

.circle1-wrap, .circle2-wrap {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  gap: 4rem;
  position: absolute;
  transition: all 0.6s ease;
}

.circle1, .circle2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 540px;
  width: 540px;
  padding: 4rem;
  outline: 10px solid white;
  border-radius: 50%;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.119), 0 1.5px 6px rgba(0, 0, 0, 0.152);
  gap: 2rem;
  transition: all 0.6s ease;
  span {
    font-size: 30px;
    font-weight: bold;
    color: var(--blue);
    line-height: 1.2;
    transition: all 0.6s ease;
  }
  p {
    display: none;
    transition: all 0.6s ease;
  }
}

.circle1-info, .circle2-info {
  display: none;
  width: 580px;
  margin-top: 7rem;
  transition: all 0.3s ease;
  summary {
    font-size: 20px;
    color: var(--blue);
    transition: all 0.3s ease;
  }
  summary:hover {
    color: var(--orange);
    font-weight: bold;
  }
  details[open] > summary:first-of-type {
    font-weight: bold;
    color: var(--orange);
  }
  hr {
    color: var(--blue);
    opacity: 100%;
  }
  p {
    font-size: 16px;
  }
  li {
    font-size: 16px;
    list-style: disc;
  }
}

summary::-webkit-details-marker {
  display: none;
}
summary::marker {
  content: "";
}
.accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.accordion summary::after {
  display: inline-block;
  transition: transform 0.2s ease;
  content: " +";
  font-weight: 600;
}
.accordion[open] summary::after {
  content: " -";
  transform: scale(1.1);
}
.accordion .content {
  overflow: hidden;
}

.circle1-wrap.active,
.circle2-wrap.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.circle1-wrap.active .circle1 p,
.circle2-wrap.active .circle2 p {
  display: block;
  max-height: 1000px;
  pointer-events: auto;
}

.circle1-wrap.active .circle1-info,
.circle2-wrap.active .circle2-info {
  display: flex;
  flex-direction: column;
  
}

.circle1-wrap.inactive,
.circle2-wrap.inactive {
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle1-wrap.inactive {
  top: 10%;
  left: 13%;
}
.circle2-wrap.inactive {
  top: 10%;
  right: 13%;
}

.circle1-wrap.inactive .circle1,
.circle2-wrap.inactive .circle2 {
  height: 110px;
  width: 110px;
  background-color: white;
  outline: none;
}

.circle1-wrap.inactive .circle1:hover,
.circle2-wrap.inactive .circle2:hover {
  background-color: var(--blue);
}

.circle1-wrap.inactive .circle1:hover span,
.circle2-wrap.inactive .circle2:hover span {
  color: white;
}

.circle1-wrap.inactive .circle1 span,
.circle2-wrap.inactive .circle2 span {
  font-size: 16px;
}

@media (max-width: 1225px) {
  .services-sec2 {
    margin-bottom: 0;
  }
  .circle1-wrap, .circle2-wrap {
    gap: 2rem;
  }
  .circle1, .circle2 {
    height: auto;
    width: 400px;
    aspect-ratio: 1/1;
  }
  .circle1-info, .circle2-info {
    width: 330px;
  }
}

@media (max-width: 1090px) {
  .services-sec1 {
    padding: 4rem 1.5rem 0;
  }
  .sec1-text {
    text-align: center;
    height: 25rem;
    h1 {
      font-size: 60;
    }
    h2 {
      font-size: 30;
    }
  }
}

@media (max-width: 776px) {
  .sec1-text {
    height: auto;
    h2 {
      font-size: 25px;
      margin: 3rem 0 0;
    }
    h1 {
      font-size: 40px;
    }
  }
  .circle1-wrap  {
    flex-direction: column;
  }
  .circle2-wrap {
    flex-direction: column-reverse;
  }
  .circle1-info, .circle2-info {
    margin-top: 0;
  }
  .services-sec2 {
    height: auto;
    margin-top: 6rem;
  }
  .circle1-wrap.inactive {
    top: -20px;
    left: 5%;
  }
  .circle2-wrap.inactive {
    top: -20px;
    right: 5%;
  }
}

@media (max-width: 546px) {

  .circle1, .circle2 {
    width: 350px;
    span {
      font-size: 20px;
    }
  }

  .circle1-wrap.inactive {
    top: -35px;
    left: 0%;
  }
  .circle2-wrap.inactive {
    top: -35px;
    right: 0%;
  }

  .services-sec2 {
    height: auto;
  }

  .circle1-info, .circle2-info {
    height: 400px;
  }
}