/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.hero-section {
  width: 100%;
  height: calc(100svh - 5.6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-height: 71rem;
}
.hero-section .h-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .hero-section .h-image {
    width: 100%;
  }
}
.hero-section .h-image .gradient {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 16rem;
}
@media only screen and (max-width: 768px) {
  .hero-section .h-image .gradient {
    width: 100%;
    background: rgb(235, 235, 236);
    background: -webkit-gradient(linear, left top, right top, color-stop(80%, rgba(235, 235, 236, 0.8)), color-stop(80%, rgba(235, 235, 236, 0.8)));
    background: linear-gradient(90deg, rgba(235, 235, 236, 0.8) 80%, rgba(235, 235, 236, 0.8) 80%);
  }
}
.hero-section .h-image .gradient span {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .hero-section .h-image .gradient span {
    display: none;
  }
}
.hero-section .h-image .gradient span:nth-child(1) {
  left: 0;
  background: var(--background);
  top: 0;
  opacity: 0.8;
}
.hero-section .h-image .gradient span:nth-child(2) {
  left: 4rem;
  background: var(--background);
  top: 0;
  opacity: 0.6;
}
.hero-section .h-image .gradient span:nth-child(3) {
  left: 8rem;
  background: var(--background);
  top: 0;
  opacity: 0.4;
}
.hero-section .h-image .gradient span:nth-child(4) {
  left: 12rem;
  background: var(--background);
  top: 0;
  opacity: 0.2;
}
.hero-section .h-image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .h-image .play-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10000px;
  border: 2px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: 5rem;
  right: 5rem;
}
@media only screen and (max-width: 768px) {
  .hero-section .h-image .play-button {
    display: none;
  }
}
.hero-section .h-image .play-button:hover {
  background: #F6CA55;
  cursor: pointer;
}
.hero-section .eco-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 0.8333333333;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .hero-section .eco-title {
    margin: 0 auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hero-section h1 {
  padding: 0;
  padding-top: 1.6rem;
  padding-bottom: 4rem;
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-section h1 {
    text-align: center;
    line-height: 3.9rem;
  }
}
@media only screen and (max-width: 1000px) {
  .hero-section h1 {
    font-size: 3.9rem;
  }
}
@media only screen and (max-width: 800px) {
  .hero-section h1 {
    font-size: 3.1rem;
  }
}
@media only screen and (max-width: 500px) {
  .hero-section h1 {
    font-size: 2.6rem;
  }
}
.hero-section .buttons-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .hero-section .buttons-list {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.swiper-section {
  width: var(--100);
}

.section-heading {
  padding-bottom: 2.4rem;
  line-height: 1.375;
}
@media only screen and (max-width: 768px) {
  .section-heading {
    text-align: center;
    font-size: 2.7rem;
    padding-bottom: 1.4rem;
  }
}

.odpady-postup {
  background: #fff;
  width: var(--100);
  padding: 2.4rem;
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  height: 100%;
}
@media only screen and (max-width: 1000px) {
  .odpady-postup {
    padding: 1.6rem;
  }
}
.odpady-postup .number {
  color: #fff;
  padding-bottom: 1.6rem;
  font-size: 0;
}
.odpady-postup .number svg, .odpady-postup .number img {
  -o-object-fit: contain;
     object-fit: contain;
}
.odpady-postup .content h3 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
.odpady-postup .content p {
  font-size: 14px;
  line-height: 1.5714285714;
  color: #343A3F;
  padding: 8px 0;
}

.odpady-postup-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--100);
  min-height: 196px;
  padding: 3.2rem 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--green);
  border-radius: 4px;
  height: 100%;
}
.odpady-postup-green h3 {
  max-width: 15.8rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
}
.odpady-postup-green .play-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10000px;
  border: 2px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.odpady-postup-green .play-button:hover {
  background: #F6CA55;
  cursor: pointer;
}

.what-paid-content p {
  max-width: 629px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .what-paid-content p {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .what-paid-content p {
    font-size: 2rem;
  }
}

.img-info-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  margin-top: 6rem;
  border-bottom: 1px solid #16181A;
  position: relative;
}
.img-info-box img, .img-info-box svg {
  max-width: var(--100);
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 20rem;
  z-index: 0;
}
.img-info-box .info-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  padding: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10000px;
  border: 2px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  bottom: -2.4rem;
  z-index: 998;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .img-info-box .info-button {
    bottom: -2.4rem;
  }
}
.img-info-box .info-button:hover {
  background: #F6CA55;
  cursor: pointer;
}
.img-info-box .info-help {
  max-width: 29rem;
  width: 29rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  border-radius: 4px;
  z-index: 999;
  top: 120%;
  left: 40%;
  border-radius: 0.8rem;
  display: none;
}
.img-info-box .info-help h1, .img-info-box .info-help h2, .img-info-box .info-help h3, .img-info-box .info-help h4 {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.4rem;
}
@media screen and (max-width: 992px) {
  .img-info-box .info-help {
    left: 0;
  }
}
.img-info-box.active .info-help {
  display: block;
}

.desatero-col-left {
  width: calc(100% - 76.8rem - 1.6rem);
  width: calc(100% - 76.8rem - 1.6rem);
  position: sticky;
  top: 0%;
  /* width: 40%; */
  display: inline-block;
  vertical-align: top;
  max-height: 60rem;
}
@media only screen and (max-width: 1000px) {
  .desatero-col-left {
    width: var(--100);
  }
}
.desatero-col-left .section-heading {
  max-width: 28rem;
}
@media screen and (max-width: 1000px) {
  .desatero-col-left .section-heading {
    max-width: unset;
    text-align: center;
  }
}

.desatero-col-right {
  width: 75.2rem;
}
@media only screen and (max-width: 1000px) {
  .desatero-col-right {
    width: var(--100);
  }
}

.desatero-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.desatero-box .desatero-box-img {
  width: var(--100);
  height: 28rem;
  position: relative;
}
.desatero-box .desatero-box-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--100);
  height: var(--100);
  background: #fff;
}
.desatero-box .desatero-box-img .hidden-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100px;
  width: var(--100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.desatero-box .desatero-box-img .hidden-text-box .content {
  display: none;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.desatero-box .desatero-box-img .hidden-text-box .desatero-title-box {
  padding: 12px 0;
  font-weight: 600;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .desatero-box:hover {
    cursor: pointer;
  }
  .desatero-box:hover .desatero-box-img .hidden-text-box {
    padding: 2.4rem 2.4rem;
    max-height: 100%;
    height: 100%;
    overflow: auto;
  }
  .desatero-box:hover .desatero-box-img .hidden-text-box .content {
    display: block;
    opacity: 1;
  }
  .desatero-box:hover .desatero-box-img .desatero-title-box img, .desatero-box:hover .desatero-box-img .desatero-title-box svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  .desatero-box.active {
    cursor: pointer;
  }
  .desatero-box.active .desatero-box-img .hidden-text-box {
    padding: 2.4rem 2.4rem;
    max-height: 100%;
    height: 100%;
    overflow: auto;
  }
  .desatero-box.active .desatero-box-img .hidden-text-box .content {
    display: block;
    opacity: 1;
  }
  .desatero-box.active .desatero-box-img .desatero-title-box img, .desatero-box.active .desatero-box-img .desatero-title-box svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.desatero-box:focus {
  cursor: pointer;
}
.desatero-box:focus .desatero-box-img .hidden-text-box {
  padding: 2.4rem 2.4rem;
  max-height: 100%;
  height: 100%;
  overflow: auto;
}
.desatero-box:focus .desatero-box-img .hidden-text-box .content {
  display: block;
  opacity: 1;
}
.desatero-box:focus .desatero-box-img .desatero-title-box img, .desatero-box:focus .desatero-box-img .desatero-title-box svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.desatero-box .desatero-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 2.4rem;
  background: #fff;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.desatero-box .desatero-title-box .title {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  color: #16181A;
  font-family: "PretendardVariable", sans-serif;
}
.desatero-box .desatero-title-box img, .desatero-box .desatero-title-box svg {
  margin-left: auto;
}
.desatero-box:hover > .desatero-title-box {
  color: #fff;
}
.desatero-box:hover > .desatero-title-box p, .desatero-box:hover > .desatero-title-box img, .desatero-box:hover > .desatero-title-box svg, .desatero-box:hover > .desatero-title-box .title {
  opacity: 0;
}

.important-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--100);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.important-link img, .important-link svg {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 5.4rem;
}

.team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  background: var(--white);
  width: var(--100);
  background: var(--white);
  overflow: hidden;
  border-radius: 8px;
  padding: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .team-card {
    padding: 1.6rem;
  }
}
.team-card .team-profile-image {
  width: var(--white);
  position: relative;
  height: 20rem;
  border-radius: 8px;
  overflow: hidden;
  width: var(--100);
  height: auto;
  aspect-ratio: 240/202;
}
.team-card .team-profile-image img, .team-card .team-profile-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--100);
}
.team-card .team-profile-content {
  width: var(--100);
  width: var(--100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team-card .team-profile-content .name {
  width: 100%;
  font-size: 2rem;
  line-height: 1.2;
}
.team-card .team-profile-content .position {
  padding-bottom: 1.6rem;
  color: #343A3F;
  width: 100%;
  color: var(--grey-grey-500, #343A3F);
  /* Tag text */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.team-card .team-profile-content .contact-text {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  text-decoration: underline;
  color: #343A3F;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.team-card .team-profile-content .contact-text:hover {
  color: #F2B002;
}

.chart-inner {
  position: relative;
  max-width: 310px;
}
@media only screen and (max-width: 768px) {
  .chart-inner {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 400px) {
  .chart-inner {
    display: none;
  }
}

.chart-inner svg.first-chart {
  position: relative;
  z-index: 2;
}

.chart-inner svg.second-chart {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

.rozbor-heading {
  padding-bottom: 2.4rem;
}

.rozbor-obsah {
  padding-bottom: 8rem;
  max-width: 70.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .rozbor-obsah {
    padding-bottom: 4rem;
  }
}
.rozbor-obsah p {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6rem;
}
@media screen and (max-width: 600px) {
  .rozbor-obsah p {
    font-size: 2rem;
    line-height: normal;
  }
}
.rozbor-obsah p strong {
  color: #777B7E;
}

.rozbor-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  line-height: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 3.2rem;
}
.rozbor-title.green {
  color: #1A7233;
}
.rozbor-title.red {
  color: #DA1E28;
}
@media screen and (max-width: 768px) {
  .rozbor-title.red {
    padding-top: 4rem;
  }
}

.rozbor-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 1.6rem 0.8rem 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-top: 1px solid var(--grey-grey-100, #C0C2C3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rozbor-item:hover {
  cursor: pointer;
}
.rozbor-item.active {
  background: rgba(255, 255, 255, 0.5882352941);
}
@media screen and (max-width: 400px) {
  .rozbor-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.rozbor-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.rozbor-item .ricon {
  width: 4rem;
  height: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
  height: auto;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rozbor-item .ricon img, .rozbor-item .ricon svg {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.rozbor-item .rtitle {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.2rem;
  font-weight: 600;
  max-width: 13.5rem;
}
@media screen and (max-width: 400px) {
  .rozbor-item .rtitle {
    max-width: unset;
  }
}
.rozbor-item .rpodil {
  font-size: 12px;
  line-height: 1.8333333333;
  color: #777B7E;
}
.rozbor-item .rbutton {
  margin-left: auto;
}
@media screen and (max-width: 400px) {
  .rozbor-item .rbutton {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: left;
    padding-left: 4.8rem;
  }
}
.rozbor-item .rbutton .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 113px;
  height: 3.2rem;
  padding: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 10000px;
  border: 2px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  font-size: 14px;
  line-height: 1.6rem;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 1.75rem;
}
.rozbor-item .rbutton .link:hover {
  background: #F6CA55;
}
.rozbor-item .rbutton .link img, .rozbor-item .rbutton .link svg {
  width: 11px;
  height: 10.695px;
}

.more-info-green-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 4.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  background: #0F441E;
  border-radius: 8px;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .more-info-green-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2.4rem;
    gap: 2rem;
  }
}
.more-info-green-box p {
  font-weight: 600;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 600;
  max-width: 70%;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .more-info-green-box p {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }
}
.more-info-green-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 3px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  margin-left: auto;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .more-info-green-box a {
    margin: 0 auto;
    max-width: 100%;
  }
}
.more-info-green-box a:hover {
  background: #F6CA55;
}

.mapa-wrap {
  width: var(--100);
  height: 60rem;
  background: rgba(119, 119, 119, 0.157);
}
.mapa-wrap iframe {
  width: 100%;
  height: 100%;
}

.mt-32 {
  margin-top: 3.2rem;
}

.swiper-button-prev {
  border: 3px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 10000px;
  left: -3.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1300px) {
  .swiper-button-prev {
    left: 0rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1240px) {
  .swiper-button-prev {
    left: 0.5rem;
  }
}
@media only screen and (max-width: 380px) {
  .swiper-button-prev {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
    left: 0;
  }
}
.swiper-button-prev:hover {
  background-color: #F6CA55;
}
.swiper-button-prev::after {
  content: "";
}

.swiper-button-next {
  border: 3px solid var(--yellow-yellow-300, #F6CA55);
  background: var(--yellow-yellow-500, #F2B002);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 10000px;
  right: 8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
}
@media screen and (max-width: 1300px) {
  .swiper-button-next {
    right: 8rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 1240px) {
  .swiper-button-next {
    right: 0.5rem;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
@media only screen and (max-width: 380px) {
  .swiper-button-next {
    -webkit-transform: translate(50%, -50%) scale(0.7);
            transform: translate(50%, -50%) scale(0.7);
    right: 0;
  }
}
.swiper-button-next:hover {
  background-color: #F6CA55;
}
.swiper-button-next::after {
  content: "";
}

.paddt-4 {
  padding-top: 4rem;
}

.modal {
  padding: 0;
  border-radius: 0;
  font-size: 0;
  max-width: 850px;
}
.modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.to-right-viewport h2 {
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .to-right-viewport h2 {
    padding-bottom: 1.4rem;
  }
}

.bottom-line-there {
  width: 33.3%;
}
@media screen and (max-width: 778px) {
  .bottom-line-there {
    width: 100%;
    margin-top: 5rem;
  }
}

.nogap {
  gap: 0px;
}

.row-grid-desatero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .row-grid-desatero {
    gap: 0.8rem;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 650px) {
  .row-grid-desatero {
    grid-template-columns: 1fr;
  }
}

.row-grid-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .row-grid-team {
    gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .row-grid-team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 470px) {
  .row-grid-team {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 30rem;
  }
}

.map-fullscreen-btn {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 18px;
  font-size: 10px;
  color: white;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(54, 70, 78, 0.85);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.35px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  gap: 4px;
}
.map-fullscreen-btn svg {
  margin-right: 1rem;
}
.map-fullscreen-btn:hover {
  background-color: rgb(54, 70, 78);
  cursor: pointer;
}

.chart-inner svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: transparent;
}
.chart-inner svg path.active {
  -webkit-transform: scale(1.06) translateX(-10px) translateY(-10px);
          transform: scale(1.06) translateX(-10px) translateY(-10px);
  z-index: 99;
}
.chart-inner svg path:hover {
  -webkit-transform: scale(1.06) translateX(-10px) translateY(-10px);
          transform: scale(1.06) translateX(-10px) translateY(-10px);
  z-index: 99;
}

.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
/*# sourceMappingURL=home.css.map */
