/* Start Hero */
.hero.hero--endotherapy h1 {
  max-width: 450px;
}
.hero-image--endotherapy {
  width: 56.95vw;
  height: 36.05vw;
  right: calc(14vw - 200px);
  margin-top: 6.5%;
}
.hero__content {
  max-width: 582px;
}
@media (max-width: 1024px) {
}
@media (max-width: 850px) {
  .hero-image--endotherapy {
    width: 120%;
    max-width: 678px;
    height: auto;
  }
}
/* End Hero */
.values__title {
  margin-bottom: calc(25px + 1.25vw);
}
.values__content{
  margin-bottom: 90px;
}

/* Start Endotherapy Process */
.endotherapy-process {
  padding: 80px var(--sidePadding) 100px;
  background: var(--greenDark);
}

.endotherapy-process__wrapper {
  max-width: var(--maxScreenWidth);
  margin: 0 auto;
}
.endotherapy-process__header {
  display: flex;
  gap: 50px;
  margin-bottom: 35px;
}
.endotherapy-process__header > * {
  width: 50%;
}
.endotherapy-process__title {
  font-size: var(--textFontSizeL);
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  line-height: 1;
}
.endotherapy-process__content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  color: white;
  font-weight: 400;
  text-align: justify;
}
.endotherapy-process__content strong {
  font-weight: 600;
}
.endotherapy-process__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.endotherapy-process__item {
  display: flex;
  border: 1px solid #414042;
  border-radius: 30px;
  padding: 25px 35px;
  height: 150px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.endotherapy-process__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 248, 225, 0.8);
  z-index: -1;
  transition: all 0.2s ease;
}
.endotherapy-process__item:hover::after {
  background: #0c632fd9;
}
.endotherapy-process__item-title {
  font-size: var(--textFontSizeL);
  width: 100%;
  padding-right: 50px;
  border-right: 1px solid var(--grayDark);
  display: flex;
  align-items: center;
  color: var(--grayDark);
  transition: all 0.2s ease;
}
.endotherapy-process__item:hover .endotherapy-process__item-title {
  color: white;
  border-color: var(--green3);
}
.endotherapy-process__item-content {
  width: 100%;
  padding-left: 50px;
  border-left: 1px solid var(--grayDark);
  display: flex;
  align-items: center;
  color: var(--grayDark);
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  transition: all 0.2s ease;
}
.endotherapy-process__item:hover .endotherapy-process__item-content {
  color: white;
  border-color: var(--green3);
}
.endotherapy-process__item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease;
}
.endotherapy-process__item:hover .endotherapy-process__item-img {
  opacity: 1;
  transform: scale(1.1);
}

.endotherapy-process__content-bottom {
  margin-top: 60px;
}

@media (max-width: 899px) {
  .endotherapy-process__header {
    flex-direction: column;
  }
  .endotherapy-process__header > * {
    width: 100%;
    text-align: center;
  }
  .endotherapy-process__item {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 25px var(--sidePadding);
  }
  .endotherapy-process__item > * {
    border: none;
    width: 100%;
    padding: 0;
  }
  .endotherapy-process__item-title {
    border-bottom: 2px solid var(--grayDark);
    padding-bottom: 15px;
    margin-bottom: 10px;
    width: 100%;
  }
  .endotherapy-process__item-title p {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .endotherapy-process__item {
    text-align: center;
  }
}

/* End Endotherapy Process */

/* Start Endotherapy Moment */

.endotherapy-moment {
  padding: 0 var(--sidePadding) 50px;
  overflow: hidden;
  width: 100%;
}
.endotherapy-moment__wrapper {
  max-width: var(--maxScreenWidth);
  margin: 0 auto;
}
.endotherapy-moment__container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--grayDark);
}
.endotherapy-moment__title {
  max-width: 600px;
  text-align: center;
  font-size: var(--textFontSizeL);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 auto calc(24px + 2vw);
}
.endotherapy-moment__content {
  text-align: justify;
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  font-weight: 400;
}
.endotherapy-moment__content strong {
  font-weight: 600;
}
.endotherapy-moment__container-left {
  width: 50%;
  padding: 100px calc(33px + 3vw) 85px 0;
}
.endotherapy-moment__icon {
  position: absolute;
  width: calc(86px + 7vw);
  height: calc(86px + 7vw);
  background: var(--green3);
  border-radius: 50%;
  margin-left: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 15s linear infinite;
  z-index: 1;
}
.endotherapy-moment__icon > svg {
  width: 84px;
  height: 84px;
  object-fit: contain;
  --iconColor1: white;
}
.endotherapy-moment__icon > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.endotherapy-moment__icon > span > svg {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: contain;
}
.endotherapy-moment__container-right {
  width: 50%;
  position: relative;
  height: 630px;
}
.endotherapy-moment__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  border-bottom-left-radius: 30px;
  overflow: hidden;
}
.endotherapy-moment__slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s;
  user-select: none;
  opacity: 0;
}
.endotherapy-moment__slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.endotherapy-moment__slider li.active {
  opacity: 1;
}

@media (max-width: 899px) {
  .endotherapy-moment {
    padding: 85px var(--sidePadding);
  }
  .endotherapy-moment__container {
    flex-direction: column;
    gap: calc(calc(calc(86px + 7vw) / 2) + 25px);
  }
  .endotherapy-moment__container-right,
  .endotherapy-moment__container-left {
    width: 100%;
    padding: 0;
  }
  .endotherapy-moment__container-right {
    height: calc(240px + 40vw);
  }
  .endotherapy-moment__slider {
    width: 100%;
    position: relative;
  }
  .endotherapy-moment__icon {
    margin-left: 0;
    bottom: calc(calc(240px + 40vw) - calc(calc(86px + 7vw) / 2));
  }
  .endotherapy-moment__icon > span > svg {
    width: 86%;
    height: 86%;
    object-fit: contain;
  }
  .endotherapy-moment__icon > svg {
    width: 56%;
    height: 56%;
    object-fit: contain;
    position: absolute;
  }
}
/* Endotherapy Moment */

/* Start Endotherapy Professional */
.endotherapy-professional {
  padding: 50px var(--sidePadding) 85px;
}
.endotherapy-professional__wrapper {
  max-width: var(--maxScreenWidth);
  color: var(--grayDark);
  margin: 0 auto;
}
.endotherapy-professional__title {
  font-size: var(--textFontSizeL);
  text-transform: uppercase;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
}
.endotherapy-professional__container {
  display: grid;
  grid-template-columns: 5fr 6fr;
  column-gap: 45px;
}
.endotherapy-professional__content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  font-weight: 400;
  text-align: justify;
}
.endotherapy-professional__cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.endotherapy-professional__cta .button--primary{
  text-transform: uppercase;
}
.endotherapy-professional__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-column: 2/3;
  grid-row: 1/3;
}
.endotherapy-professional__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.endotherapy-professional__item-content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  font-weight: 600;
  text-align: justify;
}
.endotherapy-professional__item-content strong {
  font-weight: 600;
}

@media (max-width: 1250px) {
  .endotherapy-professional__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .endotherapy-professional__content {
    margin-bottom: 40px;
  }
  .endotherapy-professional__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (max-width: 899px) {
  .endotherapy-professional {
    padding: 85px var(--sidePadding);
  }
}
/* End Endotherapy Professional */

/* Start Endotherapy Efficiency */

.endotherapy-efficiency {
  padding: 80px var(--sidePadding);
  background: var(--greenLight);
}
.endotherapy-efficiency__wrapper {
  max-width: var(--maxScreenWidth);
  margin: 0 auto;
}
.endotherapy-efficiency__container {
  display: flex;
}
.endotherapy-efficiency__container > div {
  width: 50%;
}
.endotherapy-efficiency__container-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 500px;
  column-gap: 17px;
  row-gap: 34px;
  padding-right: calc(15px + 2vw);
}
.endotherapy-efficiency__container-left-item {
  overflow: hidden;
}
.endotherapy-efficiency__container-left-item:first-of-type {
  grid-column: 1/2;
  grid-row: 1/3;
}
.endotherapy-efficiency__container img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}
.endotherapy-efficiency__container-left-item:last-of-type img {
  width: 85%;
}
.endotherapy-efficiency__title {
  color: var(--grayDark);
  font-size: var(--textFontSizeL);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.endotherapy-efficiency__list {
  padding: 30px 35px;
  border-radius: 30px;
  background: var(--green3);
  color: white;
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 35px;
}
.endotherapy-efficiency__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.endotherapy-efficiency__list li strong {
  font-weight: 600;
}

.endotherapy-efficiency__list li:before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuMTI1IDUuNUg5Ljg3NU05Ljg3NSA1LjVMNS41IDEuMTI1TTkuODc1IDUuNUw1LjUgOS44NzUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.endotherapy-efficiency__content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  font-weight: 400;
  text-align: justify;
  color: var(--grayDark);
}
@media (max-width: 1050px) {
  .endotherapy-efficiency__container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .endotherapy-efficiency__container > div {
    width: 100%;
  }
  .endotherapy-efficiency__container-left {
    height: calc(350px + 20vw);
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .endotherapy-efficiency__container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .endotherapy-efficiency__container > div {
    width: 100%;
  }
  .endotherapy-efficiency__container-left {
    height: calc(350px + 20vw);
    padding-right: 0;
    gap: var(--sidePadding);
  }
  .endotherapy-efficiency__container-left-item:last-of-type img {
    width: 100%;
  }
}
@media (max-width: 499px) {
  .endotherapy-efficiency__container-left-item {
    min-height: calc(100px + 20vw);
  }
  .endotherapy-efficiency__container-left-item img {
    border-radius: 20px;
  }
  .endotherapy-efficiency__container-left-item:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .endotherapy-efficiency__list {
    padding: 20px var(--sidePadding);
    border-radius: 15px;
  }
}
@media (max-width: 360px) {
  .endotherapy-efficiency__container-left-item:first-of-type {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .endotherapy-efficiency__container-left {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
/* End Endotherapy Efficiency */
