/* ===============
Where we operate section
=============== */

.where-we-operate-section {
  padding: 60px 30px;
}

.where-we-operate-section__wrapper {
  margin: 0 auto;
  max-width: 481px;

  @media screen and (min-width: 768px) {
    max-width: 1170px;
  }
}

.where-we-operate-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.where-we-operate-section__row {
  width: 100%;
  display: flex;
  gap: 22px;

  @media screen and (min-width: 768px) {
    justify-content: space-between;
  }
}

.where-we-operate-section__single-element {
  position: relative;
  text-align: center;
  width: 50%;

  @media screen and (min-width: 768px) {
    max-width: 410px;
  }
}

.where-we-operate-section__single-element__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  color: #86c5ca;
  margin: 0;

  @media screen and (min-width: 768px) {
    font-size: 30px;
    line-height: 30px;
  }
}

.where-we-operate-section__single-element__text {
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  margin: 0 auto;
  max-width: 310px;

  @media screen and (min-width: 820px) {
    max-width: none;
  }
}

.where-we-operate-section__single-element__mobile-arrow {
  @media screen and (min-width: 1024px) {
    display: none;
  }
}

.where-we-operate-section__single-element__desktop-arrow {
  display: none;

  @media screen and (min-width: 1024px) {
    display: block;
  }
}

.where-we-operate-section__single-element__desktop-arrow--top-left {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 32px;

  @media screen and (min-width: 1280px) {
    transform: translateX(0);
    left: auto;
    right: 12px;
  }
}

.where-we-operate-section__single-element__desktop-arrow--top-right {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  margin-top: 32px;

  @media screen and (min-width: 1280px) {
    transform: translateX(0);
    right: auto;
    left: 12px;
  }
}

.where-we-operate-section__single-element__desktop-arrow--bottom-left {
  position: absolute;
  bottom: calc(100% + 32px);
  left: 50%;
  transform: translateX(-50%);

  @media screen and (min-width: 1280px) {
    transform: translateX(0);
    left: auto;
    right: 12px;
  }
}

.where-we-operate-section__single-element__desktop-arrow--bottom-right {
  position: absolute;
  bottom: calc(100% + 32px);
  right: 50%;
  transform: translateX(50%);

  @media screen and (min-width: 1280px) {
    transform: translateX(0);
    right: auto;
    left: 12px;
  }
}

.where-we-operate-section__outer-circle {
  width: 305px;
  height: 305px;
  border-radius: 100%;
  border: 1px solid #86c5ca;
  display: flex;
  align-items: center;
  justify-content: center;

  @media screen and (min-width: 768px) {
    width: 348px;
    height: 348px;
  }
}

.where-we-operate-section__middle-circle {
  width: 293px;
  height: 293px;
  border-radius: 100%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;

  @media screen and (min-width: 768px) {
    width: 335px;
    height: 335px;
  }
}

.where-we-operate-section__inner-circle {
  width: 265px;
  height: 265px;
  border-radius: 100%;
  border: 8px solid #86c5ca;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  @media screen and (min-width: 768px) {
    width: 303px;
    height: 303px;
  }
}

.where-we-operate-section__inner-circle__image {
  position: absolute;
  opacity: 0.5;
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.where-we-operate-section__inner-circle__text {
  font-size: 30px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}
