/* General */
.rrr * {
  letter-spacing: 0 !important;
}

.lity-container {
  background-color: #fff !important;
}

.lity-content img {
  max-height: 80vh !important;
}

/* Intro */
.rrr__intro {
  height: 675px;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}

.rrr__intro-wrap {
  display: flex;
  justify-content: end;
}

.rrr__intro-title {
  line-height: 1.1;
  max-width: 400px;
  font-size:50px;
}

.rrr__intro-text {
  padding-top: 24px;
  padding-bottom: 48px;
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.4;
  max-width: 350px;
}

.white-rounded-btn {
  display: inline-block;
  border-radius: 32px;
  background-color: #244C5A;
  font-size: 20px;
  line-height: 32px;
  color: white;
  font-weight: 500;
  font-family: "Roboto";
  text-align: center;
  padding: 15px 40px;
}

/* Image */
.rrr__image {
  margin-top: 120px;
  color: #254d5b;
}

.rrr__image-img img {
  display: block;
}

.rounded-btn {
  display: inline-block;
  border-radius: 32px;
  background-color: #254d5b;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  font-family: "Roboto";
  text-align: center;
  padding: 13px 32px;
  width: fit-content;
  min-width: 136px;
}

.rounded-btn:hover {
  background-color: #00A886;
  color: #fff;
}

.rrr__image-wrap {
  display: grid;
  grid-template-columns: 450px 640px;
  gap: 20px 60px;
  justify-content: center;
}

.rrr__image-content {
  display: flex;
  flex-direction: column;
}

.rrr__image-content-title {
  max-width: 520px;
  line-height: 1.3;
}

.rrr__image-content-text {
  font-weight: bold;
}


.rrr__image-content-info {
  color: #4a4a4a;
  padding: 20px 0;
  max-width: 640px;
}

.rrr__image-content-info *+* {
  margin-top: 20px;
}

.rrr__image-btn {
  margin-top: auto;
}

@media(max-width: 1200px) {
  .rrr__image-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* Maps */
.rrr__maps {
  margin-top: 120px;
  color: #254d5b;
}

.rrr__maps-wrap {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
}

.rrr__maps-points {
  margin-top: 20px;
}

.rrr__maps-points li {
  font-family: 'Roboto';
  font-size: calc(20 / 16 * 1rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rrr__maps-points li+li {
  margin-top: 16px;
}

.rrr__maps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rrr__maps-item {
  background-color: #EFEFEF;
  padding: 40px;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rrr__maps-item::after {
  content: '';
  background-color: rgba(0, 0, 0, .7);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.2s ease 0s;
}

.rrr__maps-item:hover::after {
  opacity: 1;
}

.rrr__maps-item-img {
  grid-area: 1/1;
}

.rrr__maps-item-title {
  text-align: center;
  line-height: 1.2;
  grid-area: 1/1;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s ease 0s;
}

.rrr__maps-item:hover .rrr__maps-item-title {
  opacity: 1;
}

.rrr__maps-btn {
  display: block;
  margin-top: 40px;
}

@media(max-width: 1000px) {
  .rrr__maps-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media(max-width: 640px) {
  .rrr__maps-list {
    grid-template-columns: 1fr;
  }
}

/* Infographic */
.rrr__infographic {
  margin-top: 120px;
  background-color: #EAF6EE;
  color: #254d5b;
}

.rrr__infographic-arrow {
  background-color: #EAF6EE;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: calc(50% - 60px);
  transform: translate(0%, -50%);
}

.rrr__infographic-wrap {
  padding-top: 120px;
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.rrr__infographic-title {
  max-width: 500px;
}

.rrr__infographic-text {
  max-width: 450px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #4a4a4a;
}

@media(max-width: 1200px) {
  .rrr__infographic-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .rrr__infographic-title {
	text-align: center;
  }
  .rrr__infographic-text p {
    text-align: center;
  }
  .rrr__infographic-content {
    display: grid;
    justify-items: center;
  }
}

/* Impact */
.rrr__impact {
  margin-top: 90px;
  color: #254d5b;
}

.rrr__impact-wrap {
  display: grid;
}

.rrr__impact-title {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 500;
  text-align: center;
}

.rrr__impact-img {
  max-width: 640px;
  margin: 0 auto;
}

.rrr__impact-big {
  font-family: "Roboto";
  text-align: center;
  font-size: calc(30 / 16 * 1rem);
  line-height: 1.5;
  font-weight: bold;
  max-width: 760px;
  margin: 0 auto;
}

.rrr__impact-btn {
  margin: 0 auto;
  margin-top: 40px;
}

/* CTA */
.rrr__cta {
  margin-top: 120px;
  color: #fff;
  background-color: #CCCCCC;
  padding-top: 90px;
  padding-bottom: 60px;
}

.rrr__cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rrr__cta-img {
  display: flex;
  justify-content: end;
}

.rrr__cta-title {
  max-width: 440px;
  color:#244C5A;
}

.rrr__cta-btn {
  margin-top: 60px;
}

@media(max-width: 1000px) {
  .rrr__cta-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}