.hero.worldwide {
  /* background-image: url(../img/img_hero_worldwide.png); */
}

.worldwide {
}
.worldwide .worldwide__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 36px;
  max-width: 1600px;
  padding: 70px 180px;
  margin: 0 auto;
}

.card__worldwide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-radius: 2px;
  background: #f5f5f5;
  padding: 24px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-family: var(--secondary-font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
.card__worldwide h3 {
  color: var(--Charcoal, #222731);
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 420;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 12px;
}
.card__worldwide p {
  color: var(--Charcoal, #222731);
  font-family: var(--secondary-font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
  text-transform: lowercase;
}
.card__worldwide img {
  width: 45px;
}
.card__worldwide .btn__worldwide {
  padding: 7px 28px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-transform: capitalize;
  margin-top: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--secondary-font);
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #2c3131;
  opacity: 0.55;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  z-index: 100;
}
.hidden {
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 1;
}
.modal {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  z-index: 101;
  width: auto;
  max-width: 1120px;
  padding: 80px 72px;
  background-color: #fff;
  position: fixed;
  top: 4%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 12px 16px rgba(7, 14, 30, 0.08);
  box-shadow: 0px 12px 16px rgba(7, 14, 30, 0.08);
  border-radius: 24px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.modal__worldwide {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 920px;
  padding: 60px 48px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
.modal__container .modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
}
.modal__container .modal__close svg {
  cursor: pointer;
}
.modal__container .modal__close svg:hover path {
  fill: #009cde;
}
.modal__container .modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.modal__container .modal__content h2 {
  color: var(--Dark-blue, #13161b);
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 120%;
  text-transform: uppercase;
}
.modal__container .modal__content p {
  color: var(--gray-focus, #505356);
  font-family: var(--third-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}
.modal__container .modal__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}
.modal__container .modal__bottom h3 {
  color: var(--Dark-blue, #13161b);
  text-align: center;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 420;
  line-height: 120%;
  text-transform: uppercase;
}
.modal__container .modal__bottom .modal__btn__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1080px) {
  .worldwide .worldwide__container {
    padding: 70px 44px 120px;
    grid-template-columns: 1fr 1fr;
  }
  .modal__worldwide {
    width: 90%;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero .hero__container.small {
    padding: 82px 0;
  }
  .worldwide .worldwide__container {
    grid-template-columns: 1fr;
    padding: 40px 30px 100px;
    gap: 36px;
  }
  .card__worldwide p {
    font-size: 1rem;
  }
  .card__worldwide .btn__worldwide {
    width: 100%;
  }
  .modal__worldwide {
    width: 95%;
    padding: 80px 48px;
  }
  .modal__container {
    gap: 32px;
  }
  .modal__container .modal__content h2 {
    font-size: 1.5rem;
  }
  .modal__container .modal__bottom .modal__btn__group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 24px;
  }
}

@media (orientation: landscape) {
  .modal__worldwide {
    width: 95%;
    padding: 40px 48px;
  }
}
