.local-scope {
  font-size: 10px;
}
.local-scope .popUp {
  position: fixed;
  top: 5%;
  left: 0;
  transform: translateX(-100%);
  background-color: #212121;
  padding: 4em 3em;
  padding-top: 2em;
  box-sizing: border-box;
  border-radius: 4em;
  width: 50%;
  z-index: 2;
  border: 0.1rem solid #fff;
  transition: all 0.3s ease-in-out;
}
.local-scope .popUp .row-end {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2em;
}
.local-scope .popUp .row-end button {
  all: unset;
  cursor: pointer;
}
.local-scope .popUp .row-end button svg {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.local-scope .popUp .row-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.local-scope .popUp .row-buttons button {
  font-family: benzin-bold;
  letter-spacing: 1px;
  color: #fff;
  font-size: 1.6em;
  border: none;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 10em;
  cursor: pointer;
  padding: 1em;
  padding-bottom: 0.8em;
  outline: none;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(203deg, #1a7a3a, #2eab57);
}
.local-scope .popUp .row-buttons button:hover {
  color: #e6e6e6;
}
.local-scope .popUp .row-buttons button.active {
  background-image: linear-gradient(203deg, #0e5224, #1a7a3a);
}
.local-scope .popUp .container {
  max-height: 0;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 0;
  transition: all 0.3s ease-in-out;
  transform: translateX(10%);
}
.local-scope .popUp .container * {
  color: #fff;
  margin: 0;
  padding: 0;
}
.local-scope .popUp .container h3 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 30px;
}
.local-scope .popUp .container h3.mt-3 {
  margin-top: 30px;
}
.local-scope .popUp .container h3.mb-0 {
  margin-bottom: 0;
}
.local-scope .popUp .container p {
  font-size: 1.5em;
  font-weight: 400;
  margin-top: 10px;
}
.local-scope .popUp .container p.mt-3 {
  margin-bottom: 30px;
}
.local-scope .popUp .container .subtitle {
  font-size: 2.4em;
  font-weight: 600;
}
.local-scope .popUp .container .row {
  display: flex;
  justify-content: space-between;
  margin: 2em 0;
}
.local-scope .popUp .container .row .block {
  width: 48%;
}
.local-scope .popUp .container .row .block h4 {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 10px;
}
.local-scope .popUp .container .row .block p {
  font-size: 1.3em;
}
.local-scope .popUp .container ul {
  margin-top: 0;
  list-style: none;
  font-size: unset;
  padding-left: 0;
}
.local-scope .popUp .container ul li {
  margin-bottom: 5px;
  font-size: 1.3em;
}
.local-scope .popUp .container ul.disc {
  list-style: disc;
  padding-left: 2em;
  margin: 1em 0;
}
.local-scope .popUp .container ul.disc li {
  font-size: 1.4em;
}
.local-scope .popUp .container.active {
  max-height: 40em;
  padding-right: 1.5em;
  transform: translateX(0);
}
.local-scope .popUp.active {
  transform: translateX(-50%);
  left: 50%;
}
.overlayFullScreen {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.overlayFullScreen.active {
  transform: translateX(0);
}
@media screen and (max-width: 1025px) {
  .local-scope {
    font-size: 10px;
  }
  .local-scope .popUp {
    position: fixed;
    top: 2.5%;
    left: 0;
    transform: translateX(-100%);
    background-color: #212121;
    padding: 2em 1em;
    box-sizing: border-box;
    border-radius: 2.4em;
    width: 95%;
    z-index: 2;
    border: 0.1rem solid #fff;
    transition: all 0.3s ease-in-out;
  }
  .local-scope .popUp .row-end {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1em;
  }
  .local-scope .popUp .row-end button {
    all: unset;
    cursor: pointer;
  }
  .local-scope .popUp .row-end button svg {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
  }
  .local-scope .popUp .row-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .local-scope .popUp .row-buttons button {
    font-family: benzin-bold;
    letter-spacing: 1px;
    color: #fff;
    font-size: 1.5em;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 10em;
    cursor: pointer;
    padding: 0.6em;
    box-sizing: border-box;
    padding-bottom: 0.4em;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(203deg, #1a7a3a, #2eab57);
  }
  .local-scope .popUp .row-buttons button:hover {
    color: #e6e6e6;
  }
  .local-scope .popUp .row-buttons button.active {
    background-image: linear-gradient(203deg, #0e5224, #1a7a3a);
  }
  .local-scope .popUp .container {
    max-height: 0;
    overflow: hidden;
    overflow-y: scroll;
    margin-top: 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(10%);
  }
  .local-scope .popUp .container * {
    color: #fff;
    margin: 0;
    padding: 0;
  }
  .local-scope .popUp .container h3 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .local-scope .popUp .container h3.mt-3 {
    margin-top: 20px;
  }
  .local-scope .popUp .container h3.mb-0 {
    margin-bottom: 0;
  }
  .local-scope .popUp .container p {
    font-size: 1.4em;
    font-weight: 400;
    margin-top: 10px;
  }
  .local-scope .popUp .container p.mt-3 {
    margin-bottom: 20px;
  }
  .local-scope .popUp .container .subtitle {
    font-size: 1.8em;
    font-weight: 600;
  }
  .local-scope .popUp .container h4 {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .local-scope .popUp .container .row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1em 0;
  }
  .local-scope .popUp .container .row .block {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .local-scope .popUp .container .row .block h4 {
    font-size: 1.6em;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .local-scope .popUp .container .row .block p {
    font-size: 1.3em;
  }
  .local-scope .popUp .container .row .block:last-of-type {
    margin-bottom: 0;
  }
  .local-scope .popUp .container ul {
    margin-top: 0;
    list-style: none;
    font-size: unset;
    padding-left: 0;
  }
  .local-scope .popUp .container ul li {
    margin-bottom: 5px;
    font-size: 1.3em;
  }
  .local-scope .popUp .container ul.disc {
    list-style: disc;
    padding-left: 2em;
    margin: 1em 0;
  }
  .local-scope .popUp .container ul.disc li {
    font-size: 1.4em;
  }
  .local-scope .popUp .container.active {
    max-height: 35em;
    padding-right: 1.5em;
    transform: translateX(0);
    margin-top: 2em;
  }
  .local-scope .popUp.active {
    transform: translateX(-50%);
    left: 50%;
  }
}
