@import url("https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap");
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-Light.otf) format("opentype");
  font-weight: 100;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-Medium.otf) format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-Regular.otf) format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-Bold.otf) format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-ExtraLight.otf) format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-ExtraBold.otf) format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "CapturaNow";
  src: url(../fonts/CapturaNow-Black.otf) format("opentype");
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #181818;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Schibsted Grotesk", sans-serif;
}

a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
}
body {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(100% - 260px);
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .container {
    padding: 0 15px;
    max-width: calc(100% - 150px);
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
    max-width: calc(100% - 60px);
  }
}

.hidden {
  overflow: hidden;
  height: 100vh;
}

.def-checkbox {
  color: rgba(0, 0, 0, 0.81);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-top: 15px;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
  white-space: nowrap;
}
.def-checkbox input {
  display: none;
}
.def-checkbox input:checked ~ span {
  background: #00B140;
  border: 2px solid #00B140;
}
.def-checkbox input:checked ~ span:after {
  opacity: 1;
}
.def-checkbox span {
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #b2b2b2;
  position: relative;
  margin-right: 14px;
  transition: 0.3s;
}
.def-checkbox span:after {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-47deg);
  position: absolute;
  top: 4px;
  opacity: 0;
  transition: 0.3s;
}

.btn-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.75rem;
  border-radius: 2.25rem;
  background: #00B140;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  transition-delay: 1.3s;
  opacity: 0;
}
.btn-submit:hover {
  background: #00bd47;
}

.def-input {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-bottom: 0.625rem;
}
.def-input.active span {
  transform: translateY(12px);
  opacity: 1;
  font-size: 0.9rem;
}
.def-input.active input, .def-input.active textarea {
  border-bottom: 2px solid #00B140;
}
.def-input.disabled {
  background: transparent;
  cursor: default;
}
.def-input.disabled input, .def-input.disabled textarea {
  background: transparent;
  cursor: default;
}
.def-input.disabled span {
  cursor: default;
}
.def-input span {
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  color: #000;
  transform: translateY(2.1875rem);
  transition: 0.3s;
  cursor: text;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.def-input input, .def-input textarea {
  width: 100% !important;
  height: 3.125rem;
  border: 0;
  border-bottom: 2px solid #000;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4375rem;
  color: #000;
  transition: 0.3s;
  resize: none;
}
.def-input-error {
  color: #EA4001;
  font-size: 11px;
  font-weight: 400;
  line-height: 12.6px;
  letter-spacing: -0.1px;
  margin-top: 5px;
  position: absolute;
  top: calc(100% - 5px);
}
@media (max-height: 720px) {
  .def-input-error {
    font-size: 9.5px;
  }
}

.btn-slider {
  width: 40px;
  height: 40px;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 1rem;
  cursor: pointer;
  font-size: 20px;
}

.preloader {
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  animation: close-preloader infinite 1s;
  animation-delay: 10s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
@keyframes close-preloader {
  0% {
    visibility: visible;
    opacity: 1;
    height: 100vh;
  }
  90% {
    visibility: hidden;
    opacity: 0;
    height: 100vh;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    height: 0;
  }
}
.preloader-line {
  transition: 0.3s;
  width: 64px;
  height: 2px;
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: anim-line infinite 9s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  background: #000;
  background-size: 100% auto;
}
@media (max-width: 567px) {
  .preloader-line {
    animation: anim-line-576 infinite 9s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}
@keyframes anim-line {
  0% {
    left: 20%;
    width: 64px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  15% {
    left: 50%;
    width: 64px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  35% {
    left: 50%;
    width: 36.875rem;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  45% {
    left: 50%;
    width: 36.875rem;
    height: 4rem;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  55% {
    left: 50%;
    width: 36.875rem;
    height: 4rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
  90% {
    left: 50%;
    width: 36.875rem;
    height: 4rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 50%;
    width: 36.875rem;
    height: 4rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
}
@keyframes anim-line-576 {
  0% {
    left: 20%;
    width: 64px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  15% {
    left: 50%;
    width: 64px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  35% {
    left: 50%;
    width: 18.125rem;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  45% {
    left: 50%;
    width: 18.125rem;
    height: 2.5rem;
    background-color: #000;
    transform: translate(-50%, -50%);
  }
  55% {
    left: 50%;
    width: 18.125rem;
    height: 2.5rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
  90% {
    left: 50%;
    width: 18.125rem;
    height: 2.5rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 50%;
    width: 18.125rem;
    height: 2.5rem;
    background-color: transparent;
    transform: translate(-50%, -50%);
  }
}

.nav {
  width: 100%;
  height: 7.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  position: relative;
}
@media (max-width: 576px) {
  .nav {
    height: 70px;
  }
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .nav .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.nav.no-animation .nav-logo img {
  animation: unset;
  opacity: 1;
  position: relative;
  top: 0;
  width: 175px;
  height: auto;
}
.nav.no-animation .nav-menu {
  opacity: 1;
  animation: unset;
  margin-right: -10px;
}
.nav-logo img {
  width: 36.875rem;
  height: auto;
  position: absolute;
  left: 50%;
  top: calc(50vh - 27px);
  transform: translateX(-50%);
  animation: anim-logo 9s;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes anim-logo {
  0% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  15% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  30% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  31% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  43% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  55% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  68% {
    opacity: 1;
    top: 3.125rem;
    left: 8.125rem;
    transform: translateX(0);
    width: 12.5rem;
  }
  100% {
    opacity: 1;
    top: 3.125rem;
    left: 8.125rem;
    transform: translateX(0);
    width: 12.5rem;
  }
}
@keyframes anim-logo-1180 {
  0% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  15% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  30% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  31% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  43% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  55% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  68% {
    opacity: 1;
    top: 3.125rem;
    left: 4.6875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
  100% {
    opacity: 1;
    top: 3.125rem;
    left: 4.6875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
}
@keyframes anim-logo-1024 {
  0% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  15% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  30% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  31% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  43% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  55% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  68% {
    opacity: 1;
    top: 3.125rem;
    left: 1.875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
  100% {
    opacity: 1;
    top: 3.125rem;
    left: 1.875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
}
@keyframes anim-logo-768 {
  0% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  15% {
    opacity: 0;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  30% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  31% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  43% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  55% {
    opacity: 1;
    top: calc(50vh - 1.6875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 36.875rem;
  }
  68% {
    opacity: 1;
    top: 43px;
    left: 2.3125rem;
    transform: translateX(0);
    width: 12.5rem;
  }
  100% {
    opacity: 1;
    top: 43px;
    left: 2.3125rem;
    transform: translateX(0);
    width: 12.5rem;
  }
}
@keyframes anim-logo-576 {
  0% {
    opacity: 0;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  15% {
    opacity: 0;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  30% {
    opacity: 1;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  31% {
    opacity: 1;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  43% {
    opacity: 1;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  55% {
    opacity: 1;
    top: calc(50vh - 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 18.125rem;
  }
  68% {
    opacity: 1;
    top: 2.15rem;
    left: 1.875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
  100% {
    opacity: 1;
    top: 2.15rem;
    left: 1.875rem;
    transform: translateX(0);
    width: 12.5rem;
  }
}
@media (max-width: 1180px) {
  .nav-logo img {
    animation: anim-logo-1180 infinite 9s;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}
@media (max-width: 1024px) {
  .nav-logo img {
    animation: anim-logo-1024 infinite 9s;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}
@media (max-width: 768px) {
  .nav-logo img {
    animation: anim-logo-768 infinite 9s;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}
@media (max-width: 576px) {
  .nav-logo img {
    animation: anim-logo-576 infinite 9s;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}
@media (max-width: 576px) {
  .nav-logo img {
    width: 145px;
  }
}
.nav-menu {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
  animation: anim-nav-menu infinite 1s;
  animation-delay: 9s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
@media (max-width: 576px) {
  .nav-menu {
    margin-right: -5px;
  }
}
@keyframes anim-nav-menu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .nav-menu {
    font-size: 16px;
  }
}
.nav-menu:hover {
  color: #00B140;
}
.nav-menu:hover .nav-menu-icon:before {
  background-color: #00B140;
}
.nav-menu:hover .nav-menu-icon:after {
  background-color: #00B140;
}
.nav-menu-opened {
  display: none;
}
.nav-menu.active .nav-menu-icon {
  top: -3px;
}
@media (max-width: 576px) {
  .nav-menu.active .nav-menu-icon {
    top: -4px;
  }
}
.nav-menu.active .nav-menu-icon:after {
  transform: rotate(45deg);
  width: 17px;
  top: 17px;
}
.nav-menu.active .nav-menu-icon:before {
  transform: rotate(-45deg);
  width: 17px;
  left: 0;
  top: 17px;
}
.nav-menu.active .nav-menu-opened {
  display: block;
}
.nav-menu.active .nav-menu-closed {
  display: none;
}
.nav-menu-icon {
  width: 30px;
  height: 30px;
  position: relative;
  margin-left: 1rem;
}
.nav-menu-icon:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 16px;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
  transform: rotate(0);
}
.nav-menu-icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
  transform: rotate(0);
}

body.active-slider footer {
  height: 90px;
  padding-bottom: 25px;
  background-color: transparent;
  margin-top: 120px;
}
@media (max-height: 1000px) {
  body.active-slider footer {
    margin-top: 160px;
  }
}
body.active-slider .slider-content-info {
  opacity: 0;
}

@media (max-width: 768px) {
  .slider-content {
    display: none;
  }
}
.slider-content .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: calc(100vh - 350px);
  transition: 0.3s;
  position: relative;
}
.slider-content.active .container {
  height: calc(100vh - 190px);
}
.slider-content-max {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.8s;
  left: 0;
  top: 100vh;
}
.slider-content-max.active {
  height: calc(43.4782608696% - 3rem) !important;
  top: 1.5rem !important;
  opacity: 0;
  visibility: hidden;
}
.slider-content-max.active .slider-content-img {
  width: 20%;
  right: 80%;
}
.slider-content-max.active .slider-content-max-title {
  left: 23%;
  bottom: 22%;
}
.slider-content-max.active .slider-content-max-title span {
  transition-delay: 0s !important;
  margin-top: 0;
  background-color: transparent;
  color: #00B140;
}
.slider-content-max.active .slider-content-max-title .type {
  bottom: 100%;
  transition-delay: 0s !important;
}
.slider-content-max img, .slider-content-max video {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  object-fit: cover;
  transition: 0.8s;
  cursor: pointer;
}
.slider-content-max-logo {
  width: 10rem !important;
  height: auto !important;
  position: absolute !important;
  right: 2rem !important;
  bottom: 2rem !important;
  top: unset !important;
}
.slider-content-max-title {
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40rem;
  transition: 0.8s;
  cursor: pointer;
}
.slider-content-max-title span {
  color: #FFF;
  font-family: "CapturaNow", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 800;
  padding: 0 10px;
  line-height: 116%;
  text-transform: uppercase;
  background: #00B140;
  display: inline-block;
  opacity: 0;
  transition: 0.8s;
  transform: translateX(-100px);
  margin-top: -10px;
}
.slider-content-max-title span:first-child {
  margin-top: 0;
}
.slider-content-max-title .type {
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  bottom: calc(100% + 15px);
  opacity: 0;
  transition: 0.8s;
  transition-delay: 1s;
}
.slider-content-max.show img, .slider-content-max.show video {
  width: calc(100% - 250px);
}
.slider-content-max.show .slider-content-max-title span {
  opacity: 1;
  transform: translateX(0);
}
.slider-content-max.show .slider-content-max-title .type {
  opacity: 1;
}
.slider-content-info {
  width: calc(100% - 12.5rem);
  height: 100%;
  position: relative;
  transition: 0.8s;
}
.slider-content-info-content {
  height: 100%;
  z-index: 1;
  overflow: auto;
}
.slider-content-info-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.slider-content-info-content .scroll-content {
  height: 100%;
}
.slider-content-info-content.active {
  overflow: hidden;
}
.slider-content-item {
  width: 100%;
  height: 43.4782608696%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E7E7E7;
  transition: 0.8s;
  background-color: #fff;
}
.slider-content-item:last-child {
  margin-bottom: 25%;
}
@media (max-width: 1024px) {
  .slider-content-item:last-child {
    margin-bottom: 55%;
  }
}
.slider-content-item.active {
  height: 100%;
  border-color: transparent;
  z-index: 1;
  top: 0;
  left: 0;
  margin-bottom: 0;
}
.slider-content-item.active .slider-content-item-img {
  right: 0;
  width: 86% !important;
  transform: scale(1) !important;
  cursor: default;
}
.slider-content-item.active .slider-content-item-type {
  display: none;
}
.slider-content-item.active .slider-content-item-title {
  left: 0 !important;
  top: unset !important;
  bottom: 1.5rem;
  transition: 0.8s left, top;
  width: 31%;
  transform: scale(1) !important;
}
.slider-content-item.active .slider-content-item-title .type {
  display: block;
  transform: scale(1) !important;
}
.slider-content-item.active .slider-content-item-title span {
  color: #FFF;
  font-size: 76px;
  line-height: 1.16;
  padding: 0 8px;
  background: #00B140;
  display: inline-block;
  font-weight: 800;
  margin-bottom: -10px;
}
.slider-content-item.active .slider-content-item-title span:last-child {
  margin-bottom: 0;
}
.slider-content-item.active .slider-content-item-title br {
  display: none;
}
.slider-content-item-img {
  width: 20%;
  height: calc(100% - 3rem);
  object-fit: cover;
  position: absolute;
  right: 80%;
  top: 1.5rem;
  transform-origin: left top;
  transform: scale(0.7);
  cursor: pointer;
}
.slider-content-item-type {
  position: absolute;
  left: 16%;
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.25rem;
  font-weight: 400;
  top: 30px;
  transform-origin: left;
  transform: scale(0.7);
}
.slider-content-item-type br {
  display: none;
}
.slider-content-item-title {
  position: absolute;
  left: 16%;
  top: 60px;
  transform-origin: left top;
  transform: scale(0.7);
  min-width: 50rem;
}
.slider-content-item-title .type {
  font-size: 20px;
  font-weight: 400;
  transform-origin: left;
  transform: scale(0.7);
  position: absolute;
  left: 0;
  display: none;
  bottom: calc(100% + 10px);
}
.slider-content-item-title span {
  color: #00B140;
  font-size: max(3vw, 3rem);
  line-height: 1.16;
  text-transform: uppercase;
  font-weight: 800;
  transition: 0.3s;
  font-family: "CapturaNow", serif;
}
.slider-content-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 100%;
  position: relative;
  right: -5rem;
}
@media (max-width: 1024px) {
  .slider-content-buttons {
    right: -2rem;
  }
}
.slider-content-buttons i {
  transition: 0.3s;
}
.slider-content-buttons-next {
  font-size: 21px !important;
}
.slider-content-buttons-next .progress-bar {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(closest-side, white 90%, transparent 80%), conic-gradient(#00B140 var(--percent), #fff 0);
  z-index: -1;
}
.slider-content-buttons-play {
  position: relative;
}
.slider-content-buttons-play:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 17px;
  height: 8px;
  border: 1.5px solid #000;
  border-bottom-color: transparent;
  border-radius: 2px 2px 0 0;
  transition: 0.2s;
}
.slider-content-buttons-play:after {
  content: "";
  position: absolute;
  top: 19px;
  width: 17px;
  height: 8px;
  border: 1.5px solid #000;
  border-top-color: transparent;
  border-radius: 0 0 2px 2px;
  transition: 0.2s;
}
.slider-content-buttons-play.active:before {
  top: 10px;
  height: 6px;
  border-bottom-color: #000;
  border-radius: 2px;
}
.slider-content-buttons-play.active:after {
  top: 21px;
  height: 6px;
  border-top-color: #000;
  border-radius: 2px;
}

.video-propagation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border: 3.8px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.video-propagation i {
  margin-left: 2px;
}

.footer-video-status {
  color: #000;
  font-family: "Schibsted Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}

.show-projects, .show-projects-mobile {
  display: flex;
  width: 246px;
  height: 64px;
  padding: 0 24px 2px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 36px;
  background: #00B140;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.show-projects:hover, .show-projects-mobile:hover {
  background: #0bbd4a;
}

.mobile {
  transition: 1s;
}
.mobile .show-projects-mobile-parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .show-projects-mobile {
  position: relative;
  left: 0;
  bottom: 0;
  transform: none;
}
.mobile .mobile-slider-video-volume {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 32px;
  align-self: stretch;
  color: #7C7B7B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
  margin-top: 16px;
}

.mobile-video-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mobile-video-block video {
  object-fit: cover;
}
.mobile-video-block .video-propagation-mobile {
  width: 56px;
  height: 56px;
  font-size: 25px;
  margin-left: 0;
  border: 3.8px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  width: 100%;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  background-color: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer {
    display: none;
  }
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-hashtags {
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer-hashtags-item {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-right: 1rem;
  transition: 0.3s;
  cursor: pointer;
}
.footer-hashtags-item.active {
  font-weight: 700;
}
.footer-hashtags-item:hover {
  color: #00B140;
}
.footer-contact {
  color: #000000;
  font-size: 1.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.footer-contact i {
  margin-left: 1.125rem;
}
.footer-contact:hover {
  color: #00B140;
}

.menu {
  position: fixed;
  top: 7.625rem;
  right: 0;
  background-color: #fff;
  height: calc(100vh - 7.625rem);
  z-index: 10;
  width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 1s;
}
@media (max-width: 576px) {
  .menu {
    top: 70px;
    height: calc(100% - 70px);
    box-shadow: -1px 40px 40px #dcdcdc;
  }
}
.menu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40%;
  position: relative;
}
@media (max-width: 768px) {
  .menu .container {
    flex-direction: column;
    height: 90%;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .menu .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 50px);
  }
}
.menu.active .menu-right {
  opacity: 1;
}
.menu .btn-submit {
  margin-top: 20px;
}
.menu-back-contact {
  position: absolute;
  left: 0;
  top: -10rem;
  opacity: 0;
  transition-delay: 0.5s;
  transition: 0.8s;
  visibility: hidden;
  cursor: pointer;
}
@media (max-width: 1184px) {
  .menu-back-contact {
    left: 12px;
  }
}
@media (max-width: 768px) {
  .menu-back-contact {
    left: 0;
    top: -1rem;
  }
}
.menu-back-contact.active {
  opacity: 1;
  visibility: visible;
}
.menu-left {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1000px) {
  .menu-left {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .menu-left {
    width: 100%;
  }
}
.menu-left .def-input {
  height: 80px;
  min-height: 80px;
  transform: translateY(100px);
  transition: 0.8s;
  opacity: 0;
  position: relative;
}
@media (max-height: 670px) {
  .menu-left .def-input {
    min-height: 60px;
  }
}
.menu-left .def-input textarea {
  margin-top: 0;
  min-height: 10.125rem;
}
@media (max-width: 1024px) {
  .menu-left .def-input textarea {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .menu-left .def-input textarea {
    margin-top: 10px;
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  .menu-left .def-input {
    height: 60px;
    margin-bottom: 10px;
  }
}
.menu-left-item {
  color: #000;
  text-align: center;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 3.5rem;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(-100px);
  cursor: pointer;
}
@media (max-height: 513px) {
  .menu-left-item {
    font-size: 2rem;
  }
}
.menu-left-item:hover {
  transition: 0.3s !important;
  transition-delay: 0s !important;
  color: #00B140;
}
.menu-contact {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  transition: 1s;
}
.menu-contact-title {
  position: absolute;
  top: -25px;
  transform: translateY(-100%);
  color: #000;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 3.5rem;
}
@media (max-width: 768px) {
  .menu-contact {
    flex-direction: column;
    height: 100vh;
    background: #fff;
  }
}
.menu-contact-left {
  width: 40%;
  padding-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
@media (max-height: 722px) {
  .menu-contact-left .def-input:nth-of-type(1), .menu-contact-left .def-input:nth-of-type(2) {
    width: calc(50% - 5px);
  }
}
@media (max-height: 540px) {
  .menu-contact-left .def-input:nth-of-type(3), .menu-contact-left .def-input:nth-of-type(4) {
    width: calc(50% - 5px);
  }
}
@media (max-height: 590px) {
  .menu-contact-left {
    margin-top: -40px;
  }
}
@media (max-width: 768px) {
  .menu-contact-left {
    width: 100%;
    padding-right: 0;
  }
  .menu-contact-left .btn-submit, .menu-contact-left .def-checkbox {
    display: none;
  }
}
.menu-contact-right {
  width: 60%;
  padding-right: 5rem;
}
.menu-contact-right .btn-submit, .menu-contact-right .def-checkbox {
  display: none;
}
@media (max-width: 1000px) {
  .menu-contact-right {
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .menu-contact-right {
    width: 100%;
    padding-right: 0;
  }
  .menu-contact-right .btn-submit, .menu-contact-right .def-checkbox {
    display: flex;
  }
  .menu-contact-right .btn-submit {
    margin-top: 25px;
  }
}
.menu-contact.active {
  visibility: visible;
}
@media (max-width: 768px) {
  .menu-contact.active {
    top: 80px;
  }
}
.menu-contact.active .def-input {
  transform: translateY(0);
  opacity: 1;
}
.menu-contact.active .contact-body-right {
  opacity: 1;
}
.menu-contact.active .contact-title, .menu-contact.active .def-checkbox, .menu-contact.active .btn-submit {
  opacity: 1;
}
.menu-items {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .menu-items {
    height: 60%;
    min-height: 60%;
    justify-content: start;
    gap: 40px;
  }
}
@media (max-height: 740px) {
  .menu-items {
    gap: 20px;
  }
}
@media (max-height: 513px) {
  .menu-items {
    gap: 0;
  }
}
@media (max-height: 470px) {
  .menu-items {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-height: 560px) {
  .menu-items {
    height: 80%;
    min-height: 80%;
  }
}
.menu-items.active .menu-left-item {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.menu-right {
  width: 40%;
  height: 100%;
  transition: 0.8s;
  transition-delay: 0.5s;
  opacity: 0;
}
@media (max-width: 1000px) {
  .menu-right {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .menu-right {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
}
.menu-right-language {
  display: flex;
  justify-content: start;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-height: 552px) {
  .menu-right-language {
    margin-bottom: 1.5rem;
  }
}
.menu-right-language-item {
  color: #000;
  font-size: 1.25rem;
  line-height: 130%;
  transition: 0.3s;
  margin-right: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.menu-right-language-item:hover {
  color: #00B140;
}
.menu-right-language-item.active {
  font-weight: 700;
  border-bottom: 2px solid #00B140;
}
.menu-right-content {
  margin-bottom: 8rem;
  display: none;
}
@media (max-width: 576px) {
  .menu-right-content {
    margin-bottom: 4rem;
  }
}
@media (max-height: 663px) {
  .menu-right-content {
    margin-bottom: 4rem;
  }
}
@media (max-height: 600px) {
  .menu-right-content {
    margin-bottom: 1.5rem;
  }
}
.menu-right-content.active {
  display: block;
}
.menu-right-content ul {
  list-style: none;
}
.menu-right-content ul li {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 8px;
}
.menu-right-content ul li span {
  width: 6rem;
}
.menu-right-content ul li a {
  color: #000;
}
.menu-right-socials {
  display: flex;
  justify-content: start;
  align-items: center;
}
.menu-right-socials a {
  margin-right: 1.4rem;
  transition: 0.3s;
}
.menu-right-socials a svg, .menu-right-socials a * {
  transition: 0.3s;
}
.menu-right-socials a:hover svg, .menu-right-socials a:hover path {
  stroke: #00B140;
}

@media (max-width: 768px) {
  [data-page=studio] .menu-back-contact {
    left: 32px;
    top: -18px !important;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}
.mobile-buttons {
  padding: 0 2rem 2rem;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
.mobile-buttons .btn-slider {
  margin-right: 0;
}
.mobile-buttons-next {
  font-size: 21px !important;
}
.mobile-buttons-next .progress-bar-mobile {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(closest-side, white 90%, transparent 80%), conic-gradient(#00B140 var(--percentMobile), #fff 0);
  z-index: -1;
}
.mobile .footer-contact {
  width: 50%;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .mobile .footer-contact {
    width: 100%;
  }
}
.mobile-slider {
  width: 100%;
  transition: 0.3s;
  transform-origin: center;
}
.mobile-slider.scale {
  transform: scale(0.8);
}
.mobile-slider-body {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 17px;
  transform-origin: left;
  transition: 0.8s;
}
.mobile-slider-hashtags {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  padding: 0 2rem 2rem;
  margin-top: -10px;
}
@media (max-height: 710px) {
  .mobile-slider-hashtags {
    padding-bottom: 10px;
  }
}
@media (max-height: 600px) {
  .mobile-slider-hashtags {
    margin-top: 30px;
  }
}
.mobile-slider-hashtags-item {
  color: #7C7B7B;
  margin-right: 1rem;
  transition: 0.3s;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 15px;
}
@media (max-width: 420px) {
  .mobile-slider-hashtags-item {
    margin-bottom: 8px;
  }
}
.mobile-slider-hashtags-item.active {
  font-weight: 700;
  color: #000;
}
.mobile-slider-hashtags-item:hover {
  color: #00B140;
}
.mobile-slider-item {
  width: 100vw;
  min-width: 100vw;
  transition: 0.3s;
  transform-origin: center;
}
@media (max-height: 600px) {
  .mobile-slider-item {
    display: flex;
    justify-content: start;
    align-content: start;
  }
}
.mobile-slider-item-body {
  width: 100%;
  position: relative;
  height: 40vh;
}
@media (max-width: 450px) {
  .mobile-slider-item-body {
    height: 35vh;
  }
}
.mobile-slider-item-body-logo {
  position: absolute;
  width: 60px;
  height: auto;
  right: 8px;
  bottom: 8px;
}
.mobile-slider-item-body-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-slider-item-content {
  padding: 2rem;
}
@media (max-height: 600px) {
  .mobile-slider-item-content {
    padding-top: 0;
  }
}
.mobile-slider-item-content h4 {
  align-self: stretch;
  color: rgba(0, 0, 0, 0.81);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.mobile-slider-item-content h4 br {
  display: none;
}
.mobile-slider-item-content h2 {
  align-self: stretch;
  font-family: "CapturaNow", serif;
  color: #00B140;
  font-size: 32px;
  font-weight: 800;
  line-height: 116%;
  text-transform: uppercase;
}
.mobile-slider-item-content h2 span {
  font-family: "CapturaNow", serif;
}
.mobile-slider-item-content h2 br {
  display: none;
}

body[data-page=studio] {
  scroll-behavior: unset;
}
body[data-page=studio] .container {
  max-width: 1180px;
}
body[data-page=studio] .menu {
  z-index: 100;
}
body[data-page=studio] .nav .nav-logo img {
  animation: unset;
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  width: 12.5rem;
}
@media (min-width: 1438px) {
  body[data-page=studio] .nav .container {
    width: 100%;
    max-width: calc(100% - 260px);
  }
}
body[data-page=studio] .hidden {
  height: auto;
}
body[data-page=studio] .menu .container {
  padding: 0 15px 0 0;
}
@media (max-width: 1180px) {
  body[data-page=studio] .menu .container {
    padding: 0 15px 0 32px;
  }
}
@media (max-width: 576px) {
  body[data-page=studio] .menu .container {
    padding: 0 15px 0 25px;
  }
}
@media (max-width: 1180px) {
  body[data-page=studio] .nav .container {
    padding: 0 55px 0 33px;
  }
}
@media (max-width: 576px) {
  body[data-page=studio] .nav .container {
    padding: 0 35px 0 25px;
  }
}
@media (max-width: 576px) {
  body[data-page=studio] .nav .container img {
    width: 162px;
  }
}

.studio-content {
  width: 100%;
  height: 100%;
}
.studio-content .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
.studio-content .container .info {
  width: 15.4375rem;
  height: 100%;
}
.studio-content .container .content {
  width: calc(100% - 15.4375rem);
  padding-left: 4rem;
  height: 100%;
}

.studio-anim {
  color: #000;
  font-size: 6rem;
  font-style: normal;
  font-weight: 200;
  line-height: 116%;
  letter-spacing: -11px;
  position: fixed;
  left: 50%;
  top: calc(100% - 150px);
  transform: translateX(-50%);
  transition: 0.8s;
  z-index: 100;
  transition-timing-function: ease-in;
}
@media (max-width: 768px) {
  .studio-anim {
    font-size: 4rem;
    letter-spacing: -5px;
  }
}
.studio-anim span {
  position: relative;
  top: 150px;
  transition: 0.3s;
  font-weight: 400;
}
.studio-anim span.active {
  top: 0;
}

.modal-to-video {
  width: 100%;
  height: 100dvh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: 0.5s;
  z-index: 1000000;
}
.modal-to-video.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.modal-to-video-close {
  position: absolute;
  top: 0;
  right: 20px;
  color: #fff;
  font-size: 3rem;
  transform: rotate(45deg);
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
}
.modal-to-video-close:hover {
  color: #e8e8e8;
}
.modal-to-video .video-js {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
}

.anim-text {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
.anim-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.8s;
}
.anim-text.active {
  border-bottom: 1px;
}
.anim-text.active:before {
  top: 100%;
}

.hero {
  height: 31.25rem;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero .container .info {
    width: 100%;
    padding: 0 15px 0 15px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .hero .container .info {
    width: calc(100% - 30px);
  }
}
@media (max-width: 768px) {
  .hero .container .content {
    width: 100%;
    padding-left: 0;
  }
}
.hero-title {
  color: #000;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin-left: -2px;
}
.hero .info {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
}
.hero .info-subtitle {
  color: rgba(0, 0, 0, 0.81);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero .info-subtitle {
    display: none;
  }
}
.hero-video {
  width: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/studio-hero.png") no-repeat center left;
  background-size: cover;
  overflow: hidden;
  transition: 0.8s;
}
@media (max-width: 768px) {
  .hero-video {
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
  }
}
.hero-video-play {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 3.803px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 45px;
  transition: 0.3s;
  cursor: pointer;
  transform: scale(1);
  opacity: 0;
}
.hero-video-play:hover {
  transform: scale(1.1);
}
.hero-video-play i {
  position: relative;
  left: 3px;
}

.about {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .about .container .info {
    display: none;
  }
}
@media (max-width: 768px) {
  .about .container .content {
    width: 100%;
    padding: 0 2rem 2rem;
  }
}
.about-text {
  width: 100%;
  max-width: 620px;
  color: #000;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 15px;
}
.about-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-text {
    max-width: 100%;
  }
}
.about-text span {
  background-color: #00B140;
  color: #fff;
}

@media (max-width: 768px) {
  .owners .container {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .owners .container .info {
    display: none;
  }
}
@media (max-width: 768px) {
  .owners .container .content {
    width: 100%;
    padding-left: 0;
  }
}
.owners .owners-names {
  border-bottom: 1px solid #E7E7E7;
  padding: 1.5rem 0;
}
.owners .owners-names span {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  transition: 0.3s;
}
.owners .owners-names h4 {
  color: rgba(0, 0, 0, 0.81);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  transition: 0.3s;
}
.owners .owners-names.active h4, .owners .owners-names.active span {
  font-weight: 700;
}
.owners-description {
  margin-top: 4rem;
  width: 100%;
  max-width: 620px;
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .owners-description {
    max-width: 100%;
    padding: 0 2rem 0 2rem;
  }
}
.owners-lists {
  margin-top: 4rem;
  list-style: none;
  width: 100%;
  max-width: 38.75rem;
}
.owners-lists li {
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 1.6875rem;
  display: flex;
  justify-content: start;
  align-items: start;
}
@media (max-width: 768px) {
  .owners-lists li {
    padding: 0 2rem 0 2rem;
  }
}
.owners-lists li:before {
  content: "";
  display: block;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1px;
  background-color: #00B140;
  margin-right: 12px;
  margin-top: 10px;
}
.owners-lists li span {
  color: #00B140;
}
.owners-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .owners-images {
    gap: 2rem;
  }
}
.owners-images .mobile {
  display: none;
}
@media (max-width: 576px) {
  .owners-images .mobile {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
  }
  .owners-images .mobile .owners-images-owner {
    display: flex;
    justify-content: end;
    align-items: center;
  }
}
.owners-images-owner span {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .owners-images-owner span {
    display: none;
  }
}
.owners-images-left {
  width: 50%;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 4rem;
  flex-direction: column;
}
@media (max-width: 768px) {
  .owners-images-left {
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .owners-images-left {
    width: 100%;
  }
}
.owners-images-left img {
  width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .owners-images-left img {
    width: calc(100% - 2rem);
  }
}
.owners-images-right {
  width: 50%;
}
@media (max-width: 576px) {
  .owners-images-right {
    display: none;
  }
}
.owners-images-right img {
  width: 100%;
  height: auto;
}

.partners {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 4rem;
}
.partners-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6.5625rem;
  margin-bottom: 4rem;
  transition: 0.3s;
}
.partners-item img {
  height: 40px;
}
@media (max-width: 576px) {
  .partners-item img {
    width: auto;
    height: 40px;
  }
  .partners-item img[src="images/partners/lukoil.svg"] {
    height: 80px;
  }
  .partners-item img[src="images/partners/wb.svg"] {
    height: 30px;
  }
}
@media (max-width: 768px) {
  .partners-item {
    margin-bottom: 2rem;
  }
}
.partners-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9rem;
}
.partners-footer span {
  cursor: pointer;
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .partners-footer span {
    font-size: 16px;
  }
  .partners-footer span i {
    font-size: 14px;
  }
}
.partners-footer span i {
  margin-left: 16px;
  font-size: 18px;
}

body[data-page=projects] {
  overflow-y: auto;
  scroll-behavior: unset;
}
body[data-page=projects] .container {
  max-width: 1180px;
}
body[data-page=projects] .menu {
  z-index: 100;
}
body[data-page=projects] .nav .nav-logo img {
  animation: unset;
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
}
body[data-page=projects] .hidden {
  height: auto;
}
body[data-page=projects] .menu .container {
  padding: 0 15px;
}
body[data-page=projects] .nav .container {
  padding: 0 15px;
}
@media (max-width: 1180px) {
  body[data-page=projects] .nav .container {
    padding: 0 55px 0 33px;
  }
}
@media (max-width: 576px) {
  body[data-page=projects] .nav .container {
    padding: 0 35px 0 25px;
  }
}
@media (max-width: 576px) {
  body[data-page=projects] .nav .container img {
    width: 162px;
  }
}

.mt-64 {
  margin-top: 4rem;
}

.mb-64 {
  margin-bottom: 4rem;
}

.projects-content {
  width: 100%;
  height: 100%;
}
.projects-content .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
@media (max-width: 768px) {
  .projects-content .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.projects-content .container .info {
  width: 15.4375rem;
  height: 100%;
}
@media (max-width: 768px) {
  .projects-content .container .info {
    display: none;
  }
}
.projects-content .container .content {
  width: calc(100% - 15.4375rem);
  padding-left: 4rem;
  height: 100%;
}
@media (max-width: 768px) {
  .projects-content .container .content {
    width: 100%;
    padding-left: 0;
  }
}
.projects-header {
  width: 100%;
  height: calc(100vh - 7.625rem);
  background: url("../images/projects/header.png") no-repeat center;
  background-size: cover;
}
@media (max-width: 576px) {
  .projects-header {
    height: 60vh;
  }
}
.projects-header .content {
  display: flex;
  justify-content: start;
  align-items: end;
  position: relative;
}
.projects-header-title {
  align-self: stretch;
  color: #fff;
  font-family: "CapturaNow", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  left: 4rem;
  bottom: -0.5rem;
}
@media (max-width: 768px) {
  .projects-header-title {
    left: 32px;
    font-size: 5rem;
  }
}
@media (max-width: 700px) {
  .projects-header-title {
    display: none;
  }
}
.projects-slider {
  width: 100%;
  overflow: hidden;
  height: auto;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}
.projects-slider-body {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  transition: 0.8s;
}
.projects-slider-body-item {
  height: 20.5rem;
  transition: 0.3s;
  opacity: 0.5;
}
.projects-slider-body-item.active {
  opacity: 1;
}
.projects-slider-body-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-footer {
  margin-bottom: 44px;
}
.projects-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 850px) {
  .projects-footer .container {
    flex-direction: column;
  }
}
.projects-footer-hashtags {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 850px) {
  .projects-footer-hashtags {
    display: none;
  }
}
.projects-footer-hashtag {
  color: #7C7B7B;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
  cursor: pointer;
}
.projects-footer-hashtag:hover {
  color: #00B140;
}
.projects-footer-hashtag.active {
  font-weight: 700;
}
.projects-footer-contact {
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .projects-footer-contact {
    font-size: 16px;
  }
}
.projects-footer-contact i {
  font-size: 1.125rem;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .projects-footer-contact i {
    font-size: 13px;
  }
}

.process-slider {
  padding-top: 8rem;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: start;
}
@media (max-width: 850px) {
  .process-slider {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .process-slider {
    height: 450px;
  }
}
.process-slider .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
}
.process-slider-prev {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 116%;
  transition: 0.3s;
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.process-slider-prev i {
  margin-right: 1.25rem;
  font-size: 1.375rem;
}
@media (max-width: 650px) {
  .process-slider-prev span {
    display: none;
  }
}
.process-slider-prev:hover {
  color: #00B140;
}
@media (min-width: 650px) {
  .process-slider-prev:hover .process-slider-prev-info {
    opacity: 1;
  }
}
.process-slider-prev-info {
  position: absolute;
  left: calc(100% + 16px);
  top: 0;
  transform: translateY(-20%);
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 650px) {
  .process-slider-prev-info.prev-true {
    opacity: 1;
    top: 90px;
    width: 90vw;
    left: -12px;
  }
  .process-slider-prev-info.prev-true img {
    width: 100%;
  }
}
.process-slider-prev-info img {
  width: 22.5rem;
  height: 10.375rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.process-slider-prev-info-type {
  align-self: stretch;
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.process-slider-prev-info-title {
  align-self: stretch;
  font-family: "CapturaNow", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 116%;
  text-transform: uppercase;
  color: #00B140;
}
.process-slider-next {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 116%;
  transition: 0.3s;
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.process-slider-next i {
  margin-left: 1.25rem;
  font-size: 1.375rem;
}
.process-slider-next span {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 650px) {
  .process-slider-next span {
    display: none;
  }
}
.process-slider-next .up-next {
  display: none;
  color: #00B140;
  text-align: right;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 650px) {
  .process-slider-next .up-next {
    display: block;
  }
}
.process-slider-next:hover {
  color: #00B140;
}
.process-slider-next:hover .process-slider-next-info {
  opacity: 1;
}
.process-slider-next-info {
  position: absolute;
  right: calc(100% + 16px);
  top: 0;
  transform: translateY(-20%);
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 650px) {
  .process-slider-next-info {
    opacity: 1;
    width: 90vw;
    left: 0;
    margin-left: -5vw;
    transform: translateX(calc(-100% + 114px)) translateY(60px);
  }
  .process-slider-next-info img {
    width: 100% !important;
    height: 168px;
  }
  .process-slider-next-info .process-slider-next-info-type {
    padding-left: 32px;
    margin-bottom: 4px;
  }
  .process-slider-next-info .process-slider-next-info-title {
    padding-left: 32px;
  }
}
.process-slider-next-info img {
  width: 22.5rem;
  height: 10.375rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.process-slider-next-info-type {
  align-self: stretch;
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.process-slider-next-info-title {
  align-self: stretch;
  font-family: "CapturaNow", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 116%;
  text-transform: uppercase;
  color: #00B140;
}

.mobile-socials {
  display: none;
  justify-content: start;
  align-items: center;
  gap: 16px;
  padding-left: 32px;
}
@media (max-width: 576px) {
  .mobile-socials {
    display: flex;
  }
}

.wrapper .info {
  padding-top: 64px;
}
.wrapper-info {
  color: rgba(0, 0, 0, 0.81);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  padding-top: 16px;
  border-top: 1px solid #E7E7E7;
}
.wrapper-info:nth-of-type(1) {
  margin-bottom: 500px;
}
.wrapper-title {
  align-self: stretch;
  font-size: 6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  color: #00B140;
  margin-top: 20px;
  position: relative;
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .wrapper-title {
    margin-bottom: 2.5rem;
  }
}
.wrapper-title span {
  display: none;
}
@media (max-width: 700px) {
  .wrapper-title span {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .wrapper-title {
    padding-left: 32px;
  }
}
@media (max-width: 700px) {
  .wrapper-title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .wrapper-title {
    font-size: 32px;
  }
}
.wrapper-title img {
  position: absolute;
  left: 30%;
  bottom: -3.5rem;
}
@media (max-width: 576px) {
  .wrapper-title img {
    width: 210px;
    bottom: -4rem;
  }
}
.wrapper .section-max-image {
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .wrapper .section-max-image {
    width: calc(100% - 32px);
    position: relative;
    left: 32px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .wrapper .section-max-image.left {
    left: 0;
    right: 32px;
  }
}
.wrapper .section-max-image.amwaj-user {
  width: 100%;
  max-width: 556px;
}
@media (max-width: 620px) {
  .wrapper .section-max-image.amwaj-user {
    max-width: calc(100% - 64px);
  }
}
.wrapper .section-text {
  width: 100%;
  max-width: 620px;
  color: rgba(0, 0, 0, 0.81);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .wrapper .section-text {
    margin-left: 32px;
  }
}
@media (max-width: 620px) {
  .wrapper .section-text {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 576px) {
  .wrapper .section-text {
    max-width: calc(100% - 40px);
  }
}
.wrapper .section-text span {
  color: #fff;
  background-color: #00B140;
}
.wrapper .section-images {
  width: 100%;
  height: auto;
  margin-bottom: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
}
@media (max-width: 992px) {
  .wrapper .section-images {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .wrapper .section-images {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 4rem;
  }
}
.wrapper .section-images img {
  width: calc(50% - 2rem);
  height: auto;
}
.wrapper .section-images img:nth-of-type(2) {
  position: relative;
  top: 4rem;
}
@media (max-width: 768px) {
  .wrapper .section-images img:nth-of-type(1) {
    width: calc(100% - 32px);
  }
  .wrapper .section-images img:nth-of-type(2) {
    width: calc(100% - 32px);
    position: relative;
    left: 32px;
    top: 0;
  }
}
.wrapper .section-title {
  color: #00B140;
  font-family: "CapturaNow", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .wrapper .section-title {
    padding-left: 32px;
  }
}
@media (max-width: 576px) {
  .wrapper .section-title {
    font-size: 24px;
  }
}
.wrapper .section-title.one {
  margin-bottom: 0.5rem;
}
.wrapper .section-subtitle {
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .wrapper .section-subtitle {
    padding-left: 32px;
  }
}
.wrapper .section-selected-text {
  width: 100%;
  max-width: 496px;
  color: rgba(0, 0, 0, 0.81);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  border-left: 1px solid #00B140;
  margin-bottom: 4rem;
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .wrapper .section-selected-text {
    margin-left: 32px;
    font-size: 22px;
  }
}
@media (max-width: 496px) {
  .wrapper .section-selected-text {
    width: calc(100% - 35px);
  }
}
.wrapper .section-selected-text i {
  display: block;
  color: #00B140;
  font-size: 20px;
  margin-bottom: 16px;
}
.wrapper .section-backstage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8rem;
  color: #00B140;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .wrapper .section-backstage {
    padding: 0 32px;
  }
}
.wrapper .section-backstage-socials {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 576px) {
  .wrapper .section-backstage-socials {
    display: none;
  }
}
.wrapper .section-backstage-socials a svg, .wrapper .section-backstage-socials a path {
  transition: 0.3s;
}
.wrapper .section-backstage-socials a:hover path {
  stroke: #00B140;
}
.wrapper .section-backstage-socials a:nth-of-type(2) {
  transform: translateY(5px);
}
.wrapper .section-backstage-socials a:nth-of-type(3):hover path {
  fill: #00B140;
}

.user-direction {
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
  border-radius: 120px;
  background: radial-gradient(176.24% 147.36% at 20% 24.17%, rgba(37, 42, 49, 0.2) 0%, rgba(37, 42, 49, 0) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: fixed;
  left: 10px;
  top: 100px;
  opacity: 0;
}
@media (max-width: 768px) {
  .user-direction {
    display: none;
  }
}

[data-move=View] {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(3px);
}
.modal img {
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  object-fit: cover;
}
.modal-close {
  display: flex;
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 96px;
  background: radial-gradient(176.24% 147.36% at 20% 24.17%, rgba(37, 42, 49, 0.2) 0%, rgba(37, 42, 49, 0) 100%);
  backdrop-filter: blur(10px);
  color: #fff;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  cursor: pointer;
  font-size: 20px;
}
.modal-close span {
  transform: rotate(-45deg);
  font-size: 2.5rem;
  font-weight: 200;
}

body[data-page="404"] .nav .nav-logo img {
  width: 12.5rem;
}

.pnf-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
}
@media (max-width: 576px) {
  .pnf-container {
    max-width: calc(100% - 30px);
  }
}
@media (max-height: 500px) {
  .pnf-container {
    margin-top: -10vh;
  }
}
.pnf-container-body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 380px;
  gap: 36px;
  position: relative;
}
@media (max-width: 768px) {
  .pnf-container-body {
    flex-direction: column;
  }
}
.pnf-container-body .empty {
  width: 100%;
  max-width: 518px;
  opacity: 0;
  transform: translateX(-1000px);
}
@media (max-width: 1100px) {
  .pnf-container-body .empty {
    max-width: unset;
    height: 30vh;
  }
}
.pnf-container-body .empty.active {
  transition: 1s;
  opacity: 1;
  transform: translateX(0);
}
.pnf-container-body .nf {
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-36%);
  opacity: 0;
}
@media (max-width: 768px) {
  .pnf-container-body .nf {
    top: 250px;
  }
}
.pnf-container-body-info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
@media (max-width: 992px) {
  .pnf-container-body-info {
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .pnf-container-body-info {
    gap: 16px;
  }
}
@media (max-height: 650px) {
  .pnf-container-body-info {
    gap: 3vh;
  }
}
.pnf-container-body-info h1 {
  color: #000;
  font-family: "CapturaNow", serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 116%;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(1000px);
}
@media (max-width: 1100px) {
  .pnf-container-body-info h1 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .pnf-container-body-info h1 {
    font-size: 24px;
  }
}
@media (max-height: 650px) {
  .pnf-container-body-info h1 {
    font-size: 5vh;
  }
}
.pnf-container-body-info h1.active {
  transition: 2s;
  opacity: 1;
  transform: translateX(0);
}
.pnf-container-body-info h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(1000px);
  width: 100%;
  max-width: 535px;
}
@media (max-width: 576px) {
  .pnf-container-body-info h3 {
    font-size: 14px;
  }
}
@media (max-height: 650px) {
  .pnf-container-body-info h3 {
    font-size: 3vh;
  }
}
.pnf-container-body-info h3.active {
  transition: 2s;
  opacity: 1;
  transform: translateX(0);
}
.pnf-container-body-info .back-to-home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 55px 0 55px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 36px;
  background: #00B140;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 576px) {
  .pnf-container-body-info .back-to-home {
    width: 100%;
  }
}
.pnf-container-body-info .back-to-home.active {
  transition: 2s;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
