@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
}

h1, h2, h3 {
  font-family: "Inter", sans-serif;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
}

header {
  margin: 5rem 10rem;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 10rem;
  border-radius: 60px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}
header .logo {
  width: 8.5rem;
  transition: ease 0.3s all;
}
header .logo:hover {
  transform: scale(1.1);
}
header .logo img {
  width: 100%;
  height: 100%;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header nav ul li {
  margin: 0 1.25rem;
  transition: ease 0.3s all;
}
header nav ul li:hover {
  transform: scale(1.1);
}
header nav ul li a {
  font-size: 2.2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header nav ul li a svg {
  width: 2.6rem;
  fill: #ffffff;
}

section {
  padding: 5rem 10rem;
}

#prolog .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
#prolog .row .imgs {
  margin-right: 2rem;
}
#prolog .row .imgs img {
  margin: 1.5rem;
  width: 25rem;
  height: 45rem;
}
#prolog .row .text {
  margin-left: 2rem;
  max-width: 58rem;
}
#prolog .row .text hr {
  width: 8rem;
  height: 6px;
  background-color: #000000;
}
#prolog .row .text h1 {
  font-size: 5rem;
  text-transform: uppercase;
  padding: 1rem 0rem;
}
#prolog .row .text p {
  font-size: 2rem;
  padding: 2rem 0rem;
  padding-bottom: 4rem;
}
#prolog .icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 5rem 0rem;
}
#prolog .icons .icon {
  margin: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#prolog .icons .icon .circle {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0rem 2rem;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}
#prolog .icons .icon .circle img {
  width: 5rem;
}
#prolog .icons .icon .icon-text h2 {
  font-size: 2.2rem;
  padding-bottom: 0.5rem;
}
#prolog .icons .icon .icon-text p {
  font-size: 1.8rem;
  max-width: 40rem;
}

.btn {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  padding: 1rem 4rem;
  border-radius: 60px;
  position: relative;
  display: inline-block;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  animation: swing ease-in-out 0.3s infinite alternate;
}

@keyframes swing {
  0% {
    transform: rotate(1.5deg);
  }
  100% {
    transform: rotate(-1.5deg);
  }
}
#why {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-top: 0;
}
#why .text {
  margin: 0 2.5rem;
}
#why .text h2 {
  font-size: 4rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 2rem;
}
#why .text ul {
  font-size: 1.8rem;
  list-style: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
}
#why .text ul .f {
  list-style: none;
  padding-bottom: 0.5rem;
}
#why .img-c {
  position: relative;
  margin: 0 2.5rem;
}
#why .img-c img {
  width: 60rem;
  border-radius: 10px;
}
#why .img-c #c1 {
  width: 19rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-8.5rem, 8.5rem);
}

#order {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}
#order h2 {
  font-size: 4rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 2rem;
  margin-top: 2rem;
}
#order p {
  font-size: 1.8rem;
}
#order a {
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: bold;
}
#order .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-top: 4rem;
}
#order .row .text {
  margin: 0 2.5rem;
}
#order .row .text ul {
  font-size: 1.8rem;
  list-style: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
}
#order .row .text ul .f {
  list-style: none;
  padding-bottom: 0.5rem;
}
#order .row .svg {
  width: 60rem;
  margin: 0 2.5rem;
}
#order .row .svg svg {
  width: 100%;
  height: 100%;
}
#order #c2 {
  width: 15rem;
  position: absolute;
  top: 0;
  right: 0;
}

#how {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  position: relative;
  background: #F4F4F4;
}
#how h2 {
  font-size: 4rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 10rem;
  padding-top: 5rem;
}
#how .steps {
  display: grid;
  grid-template-columns: repeat(2, 50%) repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
#how .step {
  width: 50rem;
  margin: 2rem;
}
#how .step .step-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 4rem;
}
#how .step .step-heading .circle {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  border-radius: 100%;
  margin-right: 2rem;
}
#how .step .step-heading h3 {
  font-size: 3rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
#how .step .step-heading .num {
  position: absolute;
  width: 10rem;
  height: 10rem;
  transform: translateX(2.5rem);
}
#how .step p {
  font-size: 1.8rem;
}
#how .step1 {
  grid-area: 1/1/2/2;
}
#how .step2 {
  grid-area: 2/2/3/3;
}
#how .step3 {
  grid-area: 3/1/4/2;
}
#how .step4 {
  grid-area: 4/2/5/3;
}
#how .step5 {
  grid-area: 5/1/6/2;
}
#how #c3 {
  width: 6rem;
  position: absolute;
  top: 0;
  right: 0;
}
#how #c4 {
  width: 14rem;
  position: absolute;
  left: 0;
  right: 0;
}
#how #c5 {
  width: 18rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

#references {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F4F4F4;
  padding-top: 0;
}
#references .swiper {
  width: 100%;
  min-height: 35rem;
}
#references .swiper .swiper-wrapper .swiper-slide {
  background: #ffffff;
  min-height: 30rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  width: calc(100% - 4rem) !important;
  margin: 0 2rem;
}
#references .swiper .swiper-wrapper .swiper-slide p {
  font-size: 1.8rem;
}
#references .swiper .swiper-wrapper .swiper-slide h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 2rem;
}
#references .swiper .swiper-wrapper .swiper-slide .review {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 2rem;
  left: 4rem;
}
#references .swiper .swiper-wrapper .swiper-slide .review img {
  width: 100%;
}
#references h2 {
  font-size: 4rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 4rem;
}

.swiper-pagination-bullet {
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%) !important;
}

footer {
  width: 100%;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
}
footer .upper-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 3rem;
}
footer .upper-row .column {
  display: flex;
  flex-direction: column;
  text-align: center;
}
footer .upper-row .column a {
  font-size: 1.8rem;
  padding: 1rem;
  color: #ffffff;
}
footer .upper-row .social a svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #ffffff;
  margin: 0.5rem;
}
footer .lower-row {
  border-top: 3px solid #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 3rem;
}
footer .lower-row p {
  font-size: 1.8rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .lower-row p svg {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.5rem;
  fill: #ffffff;
}
footer .lower-row p a {
  margin-left: 0.5rem;
}
footer .lower-row a {
  font-size: 1.8rem;
  color: #ffffff;
}

.toggle {
  display: none;
}

.active {
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.3rem;
}

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 37.8rem);
}
#services .text-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 4rem;
}
#services .text-row .heading {
  font-size: 3.5rem;
  text-transform: uppercase;
  padding-right: 8rem;
}
#services .text-row .text {
  font-size: 1.8rem;
  max-width: 75rem;
  padding-left: 8rem;
  border-left: 5px solid #000000;
}
#services .icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 4rem 0rem;
}
#services .icons .icon {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#services .icons .icon .circle {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0rem 2rem;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}
#services .icons .icon .circle img {
  width: 5rem;
}
#services .icons .icon .icon-text {
  text-align: center;
  margin-top: 2rem;
}
#services .icons .icon .icon-text h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
#services .icons .icon .icon-text p {
  font-size: 1.8rem;
  max-width: 40rem;
}
#services .opportunities {
  text-align: center;
  margin: 4rem 0rem;
}
#services .opportunities h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 4rem;
}
#services .opportunities .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#services .opportunities .row .opportunity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 2rem 8rem;
}
#services .opportunities .row .opportunity .circle {
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  margin-right: 1rem;
}
#services .opportunities .row .opportunity h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
#services .price-list {
  margin: 4rem 0rem;
  width: 100%;
  overflow-x: auto;
}
#services .price-list h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 4rem;
  text-align: center;
}
#services .price-list table {
  width: 100%;
  border-collapse: collapse;
}
#services .price-list table td, #services .price-list table th {
  border: 1px solid #000000;
  padding: 1rem;
  font-size: 1.8rem;
}
#services .price-list table th {
  font-weight: bold;
  font-size: 2rem;
  color: #ffffff;
}
#services .price-list table tr:nth-child(even) {
  background-color: #ddd;
}
#services .price-list table thead {
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  text-transform: uppercase;
}
#services .cowork {
  margin: 4rem 0rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#services .cowork h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-bottom: 4rem;
  text-align: center;
}
#services .cowork .swiper {
  max-width: 140rem;
  margin: 2rem;
  margin-top: 0;
  position: relative;
}
#services .cowork .swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: baseline;
  flex-direction: row;
}
#services .cowork .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  padding: 2rem 4rem;
}

#gallery {
  width: 100%;
  min-height: calc(100vh - 37.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}
#gallery .filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}
#gallery .filters select {
  border: none;
  font-size: 1.8rem;
  border: 2px solid #000000;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
#gallery .gallery-enters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 48rem);
  grid-auto-rows: auto;
  grid-gap: 3rem;
  margin: 4rem 0;
  justify-content: center;
}
#gallery .gallery-enters .gallery-enter {
  width: 48rem;
  height: 32rem;
  position: relative;
}
#gallery .gallery-enters .gallery-enter .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
#gallery .gallery-enters .gallery-enter .layer .layer-text {
  text-align: center;
  border-bottom: 2px solid #ffffff;
  width: 100%;
  padding: 1rem;
}
#gallery .gallery-enters .gallery-enter .layer .layer-text h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  text-shadow: 1px 1px 2px black;
  text-align: center;
}
#gallery .gallery-enters .gallery-enter .layer .layer-text p {
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
#gallery .load {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  padding: 1rem 2rem;
  border: 2px solid #000000;
  border-radius: 5px;
  margin-top: 2rem;
  transition: 0.3s all ease;
}
#gallery .load:hover {
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
}
#gallery .pagination {
  margin: 2rem 0rem;
  font-size: 1.6rem;
}
#gallery .pagination a {
  padding: 0 0.5rem;
}
#gallery .pagination .active {
  font-weight: bold;
}

#gallery-opened {
  width: 100%;
  min-height: calc(100vh - 37.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}
#gallery-opened h1 {
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
#gallery-opened .gallery-fotos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 36rem);
  grid-auto-rows: auto;
  grid-gap: 2rem;
  margin: 4rem 0;
  justify-content: center;
}
#gallery-opened .gallery-fotos img {
  width: 36rem;
  height: 24rem;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}
#gallery-opened .pagination {
  margin: 2rem 0rem;
  font-size: 1.6rem;
}
#gallery-opened .pagination a {
  padding: 0 0.5rem;
}
#gallery-opened .pagination .active {
  font-weight: bold;
}

.contact-heading {
  background: url(./img/contact-background.png);
  padding-top: 5rem;
}
.contact-heading header {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-heading .toggle {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-heading .heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
}
.contact-heading .heading .column {
  padding: 2rem;
}
.contact-heading .heading .column h1 {
  font-size: 4.5rem;
  color: #ffffff;
}
.contact-heading .heading .column hr {
  width: 8rem;
  height: 6px;
  background-color: #ffffff;
  border: none;
}

#contact {
  background-color: #F4F4F4;
  position: relative;
}
#contact .socials {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
#contact .socials .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 2rem;
}
#contact .socials .social .circle {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
}
#contact .socials .social .circle svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #ffffff;
}
#contact .socials .social p, #contact .socials .social a {
  font-size: 2rem;
  font-weight: bold;
  padding: 1.5rem;
  text-align: center;
}
#contact .form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  width: 90rem;
  background: #ffffff;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  margin: 5rem auto;
  border-radius: 10px;
}
#contact .form-container h2 {
  font-size: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 1rem;
}
#contact .form-container p {
  font-size: 1.8rem;
  padding: 1rem;
  text-align: center;
}
#contact .form-container form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
#contact .form-container form input {
  width: 35rem;
  padding: 0.5rem;
  font-size: 1.8rem;
  outline: none;
  border: none;
  border-bottom: 2px solid #A4A4A4;
  margin: 2rem 1rem;
}
#contact .form-container form input[type=submit] {
  width: 20rem;
  font-size: 1.8rem;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  padding: 1rem 2rem;
  border-radius: 60px;
  position: relative;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  align-self: flex-end;
}
#contact .form-container form textarea {
  width: 72rem;
  height: 15rem;
  margin: 2rem 1rem;
  padding: 0.5rem;
  font-size: 1.8rem;
  outline: none;
  border: 2px solid #A4A4A4;
  resize: vertical;
}
#contact .form-container form .long {
  width: 72rem;
}
#contact #c6 {
  width: 6rem;
  position: absolute;
  top: 20%;
  right: 0;
}
#contact #c7 {
  width: 14rem;
  position: absolute;
  top: 60%;
  left: 0;
}
#contact #c8 {
  width: 18rem;
  position: absolute;
  bottom: 10%;
  right: 0;
}

#rules {
  width: 80%;
  min-height: calc(100vh - 37.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  margin: 0 auto;
}
#rules h1 {
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 2rem;
}
#rules h2 {
  align-self: start;
  font-size: 3rem;
  text-transform: uppercase;
}
#rules p {
  font-size: 1.8rem;
  padding-bottom: 3rem;
}

#audiobook {
  min-height: calc(100vh - 37.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  margin: 0 auto;
}
#audiobook h1 {
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 2rem;
  padding-bottom: 0;
}
#audiobook hr {
  width: 15rem;
  height: 5px;
  border: 2px solid #bf1cd5;
  color: #9124DC;
  background-color: #bf1cd5;
  margin: 1.5rem auto;
}
#audiobook p {
  font-size: 1.8rem;
  padding: 2rem;
  padding-top: 0;
  text-align: center;
}
#audiobook .text {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 2rem;
}
#audiobook .text h2 {
  font-size: 3.5rem;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 2rem;
  padding-bottom: 0;
}
#audiobook .text p {
  text-align: unset;
  padding: 2rem;
}
#audiobook .text img {
  width: 40rem;
  margin: 2rem auto;
}
#audiobook .text a {
  margin: 2rem auto;
}
#audiobook .text video {
  width: 75rem;
  margin: 4rem auto;
}
#audiobook .imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 2rem 0rem;
}
#audiobook .imgs h2 {
  font-size: 3.5rem;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 2rem;
  padding-bottom: 0;
  text-align: center;
}
#audiobook .imgs .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#audiobook .imgs .row img {
  width: 40rem;
  margin: 4rem;
}
#audiobook .imgs .row video {
  width: 40rem;
  margin: 4rem;
}
#audiobook .imgs .row .twentytwenty-container {
  width: 40rem;
  height: 40rem;
  margin: 4rem;
}
#audiobook .imgs .row .twentytwenty-container img {
  width: 40rem;
  height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}

.additional-offer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.additional-offer h2 {
  font-size: 3.5rem;
  background-image: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: 2rem;
  padding-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.additional-offer .specials {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.additional-offer .specials a {
  background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
  color: #ffffff;
  font-size: 2rem;
  color: #ffffff;
  border-radius: 5px;
  padding: 1.5rem 4rem;
  margin: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s all;
}
.additional-offer .specials a:hover {
  transform: scale(1.05);
}
.additional-offer .specials a img {
  width: 3rem;
  height: 3rem;
  margin-right: 1.5rem;
}

@media (max-width: 1668px) {
  header {
    margin: 3rem 3rem;
  }
  section {
    padding: 3rem 5rem;
  }
  #prolog .row .imgs {
    margin-right: 2rem;
  }
  #prolog .row .imgs img {
    margin: 1rem;
    width: 20rem;
    height: 36rem;
  }
  #prolog .row .text {
    margin-left: 2rem;
  }
  #prolog .row .text hr {
    width: 7rem;
    height: 5px;
  }
  #prolog .row .text h1 {
    font-size: 4.5rem;
  }
  #prolog .row .text p {
    font-size: 1.8rem;
  }
  #prolog .icons {
    margin: 4rem 0rem;
  }
  #prolog .icons .icon {
    margin: 1.5rem;
  }
  #prolog .icons .icon .circle {
    width: 8rem;
    height: 8rem;
  }
  #prolog .icons .icon .circle img {
    width: 4rem;
  }
  #prolog .icons .icon .icon-text h2 {
    font-size: 2rem !important;
  }
  #prolog .icons .icon .icon-text p {
    font-size: 1.6rem;
    max-width: 30rem;
  }
  #services .text-row .heading h1 {
    font-size: 4.5rem;
  }
  #services .cowork .swiper {
    max-width: 120rem;
  }
  #services .price-list {
    width: 90%;
  }
  #gallery .gallery-enters {
    grid-template-columns: repeat(auto-fit, 42rem);
  }
  #gallery .gallery-enters .gallery-enter {
    width: 42rem;
    height: 28rem;
  }
}
@media (max-width: 1440px) {
  p {
    font-size: 1.6rem !important;
  }
  h2 {
    font-size: 3.5rem !important;
  }
  header nav ul li a {
    font-size: 2rem;
  }
  header nav ul li a svg {
    width: 2.4rem;
  }
  #prolog .row .imgs {
    margin-right: 2rem;
  }
  #prolog .row .imgs img {
    margin: 0.8rem;
    width: 18rem;
    height: 32rem;
  }
  #prolog .icons .icon {
    margin: 1rem;
  }
  #why .text {
    margin: 0 2rem;
  }
  #why .text ul li {
    font-size: 1.6rem;
  }
  #why .img-c {
    margin: 0 2rem;
  }
  #why .img-c img {
    width: 50rem;
  }
  #why .img-c #c1 {
    width: 15rem;
    transform: translate(-7.5rem, 7.5rem);
  }
  #order .row .text ul li {
    font-size: 1.6rem;
  }
  #order .row .svg {
    width: 50rem;
  }
  #order #c2 {
    width: 12rem;
  }
  #how h2 {
    padding-bottom: 5rem;
  }
  #how .step .step-heading {
    margin-bottom: 3rem;
  }
  #how .step .step-heading .circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  #how .step .step-heading h3 {
    font-size: 2.8rem;
  }
  #how .step .step-heading .num {
    width: 8rem;
    height: 8rem;
    transform: translateX(2.5rem);
  }
  #how .step p {
    font-size: 1.8rem;
  }
  #how #c3 {
    width: 4rem;
  }
  #how #c4 {
    width: 8rem;
  }
  #how #c5 {
    width: 12rem;
  }
  footer .upper-row {
    padding: 1rem 3rem;
  }
  footer .upper-row .column a {
    font-size: 1.6rem;
  }
  footer .upper-row .social a svg {
    width: 3rem;
    height: 3rem;
  }
  footer .lower-row {
    padding: 1rem 3rem;
  }
  footer .lower-row p a {
    font-size: 1.6rem;
  }
  #services .text-row .heading {
    padding-right: 4rem;
  }
  #services .text-row .text {
    padding-left: 4rem;
  }
  #services .icons .icon h2 {
    font-size: 2.5rem !important;
  }
  #services .cowork .swiper {
    max-width: 100rem;
  }
  #services .price-list {
    width: 90%;
  }
  #gallery .gallery-enters {
    grid-template-columns: repeat(auto-fit, 36rem);
  }
  #gallery .gallery-enters .gallery-enter {
    width: 36rem;
    height: 24rem;
  }
  #gallery .gallery-enters .gallery-enter .layer .layer-text h2 {
    font-size: 2rem !important;
  }
  #contact .socials .social {
    margin: 1rem;
  }
  #contact .socials .social .circle {
    width: 7.5rem;
    height: 7.5rem;
  }
  #contact .socials .social .circle svg {
    width: 3rem;
    height: 3rem;
    fill: #ffffff;
  }
  #contact .socials .social p {
    font-size: 1.8rem !important;
  }
  #contact .form-container {
    width: 80rem;
  }
  #contact .form-container form input {
    width: 30rem;
  }
  #contact .form-container form textarea {
    width: 62rem;
  }
  #contact .form-container form .long {
    width: 62rem;
  }
  #contact #c6 {
    width: 6rem;
  }
  #contact #c7 {
    width: 12rem;
  }
  #contact #c8 {
    width: 14rem;
  }
  #rules {
    width: 90%;
  }
  #rules h1 {
    font-size: 4rem;
  }
  #rules h2 {
    font-size: 2.5rem;
  }
  #rules p {
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }
  #audiobook h2 {
    font-size: 3rem !important;
  }
  #audiobook .imgs .row img {
    width: 30rem;
    margin: 2rem;
  }
}
@media (max-width: 1365px) {
  header {
    padding: 0.2rem 5rem;
  }
  header .logo {
    width: 7rem;
  }
  header nav ul li {
    margin: 1rem;
  }
  #prolog {
    width: 100%;
    padding-top: 0;
  }
  #prolog .row {
    width: 100%;
    flex-wrap: wrap-reverse;
  }
  #prolog .row .text {
    max-width: none;
    margin: 2rem 4rem;
  }
  #prolog .row .imgs {
    width: 100%;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  #prolog .row .imgs img {
    width: 22.5rem;
    height: 40.5rem;
    margin: 1.5rem;
  }
  #why .img-c img {
    width: 40rem;
  }
  #why .img-c #c1 {
    width: 10rem;
    transform: translate(-2rem, 5rem);
  }
  #order .row .svg {
    width: 40rem;
  }
  #how .step {
    width: 40rem;
  }
  #how #c3 {
    top: 2rem;
  }
  #how #c4 {
    width: 7rem;
  }
  #how #c5 {
    width: 10rem;
  }
  #services .text-row .heading {
    padding-right: 3rem;
  }
  #services .text-row .heading h1 {
    font-size: 4rem;
  }
  #services .text-row .text {
    padding-right: 3rem;
  }
  #services .icons {
    margin: 4rem 0rem;
  }
  #services .icons .icon h2 {
    font-size: 2.2rem !important;
  }
  #services .icons .icon p {
    max-width: 35rem !important;
  }
  #services .cowork .swiper {
    max-width: 100rem;
  }
  #services .price-list {
    width: 90%;
  }
}
@media (max-width: 1250px) {
  #gallery .gallery-enters {
    grid-template-columns: repeat(auto-fit, 33rem);
  }
  #gallery .gallery-enters .gallery-enter {
    width: 33rem;
    height: 22rem;
  }
  header nav ul li {
    margin: 0.7rem;
  }
  header nav ul li a {
    font-size: 1.9rem;
  }
}
@media (max-width: 1024px) {
  .toggle {
    margin: 5rem 5rem;
    margin-bottom: 0;
    background: linear-gradient(270deg, #EF15CE 0%, #9124DC 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 5rem;
    border-radius: 60px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  }
  .toggle .logo {
    width: 7rem;
    transition: ease 0.3s all;
  }
  .toggle .logo:hover {
    transform: scale(1.1);
  }
  .toggle .logo img {
    width: 100%;
    height: 100%;
  }
  .toggle svg {
    width: 3.5rem;
    height: 3.5rem;
    fill: #ffffff;
    cursor: pointer;
  }
  header {
    width: 80%;
    justify-content: center;
    padding: 5rem;
    border-radius: 0;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
  }
  header .logo {
    display: none;
  }
  header nav ul {
    flex-wrap: wrap;
  }
  #prolog {
    padding-top: 5rem;
  }
  .active-menu {
    opacity: 1;
    visibility: visible;
  }
  .not-active-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  #prolog {
    width: 100%;
    padding-top: 3rem;
  }
  #prolog .row {
    width: 100%;
    flex-wrap: wrap-reverse;
  }
  #prolog .row .text {
    max-width: none;
    margin: 2rem 4rem;
  }
  #prolog .row .imgs {
    width: 100%;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  #prolog .row .imgs img {
    width: 17.5rem;
    height: 31.5rem;
    margin: 1rem;
  }
  #prolog .icons {
    margin: 3rem 0rem;
  }
  #prolog .icons .icon {
    margin: 1.5rem 1rem;
  }
  #prolog .icons .icon .circle {
    width: 7rem;
    height: 7rem;
  }
  #prolog .icons .icon .circle img {
    width: 3.5rem;
    height: 3.5rem;
  }
  #prolog .icons .icon .icon-text p {
    max-width: 20rem;
  }
  #why {
    flex-wrap: wrap;
  }
  #why .text {
    margin: 2rem;
  }
  #why .img-c {
    margin: 2rem;
  }
  #order .row {
    flex-wrap: wrap;
  }
  #order .row .text {
    margin: 2rem;
  }
  #order .row svg {
    margin: 2rem;
  }
  #order #c2 {
    width: 8em;
  }
  #how .steps {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 2rem;
  }
  #how .step1 {
    grid-area: 1;
  }
  #how .step2 {
    grid-area: 2;
  }
  #how .step3 {
    grid-area: 3;
  }
  #how .step4 {
    grid-area: 4;
  }
  #how .step5 {
    grid-area: 5;
  }
  #how #c3 {
    width: 3rem;
  }
  #how #c4 {
    width: 6rem;
  }
  #how #c5 {
    width: 8rem;
  }
  #services .text-row {
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  #services .text-row .heading {
    width: 100%;
    padding-right: 3rem;
    margin-bottom: 3rem;
  }
  #services .text-row .heading h1 {
    font-size: 4rem;
    text-align: center;
  }
  #services .text-row .heading h1 br {
    display: none;
  }
  #services .text-row .text {
    padding-right: 3rem;
  }
  #services .icons {
    margin: 2rem 0;
  }
  #services .cowork {
    margin: 2rem 0;
  }
  #services .cowork .swiper {
    max-width: 75rem;
  }
  #services .opportunities {
    margin: 2rem 0;
  }
  #services .price-list {
    width: 95%;
  }
  #gallery .filters {
    margin-top: 3rem;
  }
  #gallery-opened h1 {
    margin-top: 3rem;
  }
  #contact .socials .social .circle {
    width: 6.5rem;
    height: 6.5rem;
  }
  #contact .socials .social .circle svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  #contact .socials .social p {
    font-size: 1.6rem !important;
    padding: 1rem;
  }
  #contact .socials .social a {
    font-size: 1.6rem !important;
  }
  #contact .form-container {
    width: 68rem;
  }
  #contact .form-container form input {
    width: 28rem;
  }
  #contact .form-container form textarea {
    width: 58rem;
  }
  #contact .form-container form .long {
    width: 58rem;
  }
  #contact #c6 {
    width: 4rem;
  }
  #contact #c7 {
    width: 6rem;
  }
  #contact #c8 {
    width: 8rem;
  }
  #rules {
    width: 100%;
    padding-top: 3rem;
  }
  #audiobook h1 {
    margin-top: 3rem;
  }
  #audiobook .text video {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section {
    padding: 3rem;
  }
  .toggle {
    margin: 3rem;
    margin-bottom: 0;
  }
  header {
    padding: 2rem;
    width: 80%;
  }
  header nav ul {
    flex-wrap: wrap;
  }
  #prolog .row .text {
    margin: 2rem;
  }
  #prolog .row .imgs {
    width: 100%;
    margin: 0rem;
    display: flex;
    flex-wrap: wrap;
  }
  #prolog .row .imgs img {
    width: 15rem;
    height: 27rem;
    margin: 1rem;
  }
  #why .img-c {
    width: 80%;
    margin: 2rem 0rem;
  }
  #why .img-c img {
    width: 100%;
  }
  #order .row .svg {
    width: 80%;
    margin: 2rem;
  }
  #order .row .svg svg {
    margin: 0;
  }
  #how .step {
    width: 100%;
  }
  #how #c4 {
    display: none;
  }
  #how #c5 {
    display: none;
  }
  #references .swiper .swiper-slide .review {
    display: none;
  }
  footer .upper-row {
    flex-wrap: wrap;
  }
  footer .lower-row {
    flex-wrap: wrap;
  }
  footer .lower-row p {
    margin: 0.5rem;
  }
  #services .text-row .heading {
    padding-left: 0;
  }
  #services .text-row .text {
    padding-right: 0;
    border: none;
  }
  #services .icons .icon {
    margin: 1rem;
  }
  #services .icons .icon .icon-text p {
    width: 30rem;
  }
  #services .cowork .swiper {
    max-width: 60rem;
    margin: 0;
  }
  #services .cowork .swiper .swiper-wrapper .swiper-slide img {
    padding: 1rem 2rem;
  }
  #services .opportunities {
    margin: 2rem 0;
  }
  #services .opportunities .row .opportunity {
    margin: 2rem;
  }
  #services .price-list {
    width: 100%;
  }
  #gallery-opened .gallery-fotos {
    grid-template-columns: repeat(auto-fit, 30rem);
  }
  #gallery-opened .gallery-fotos img {
    width: 30rem;
    height: 20rem;
  }
  .contact-heading .heading {
    min-height: 20rem;
  }
  .contact-heading .heading .column h1 {
    font-size: 4rem;
  }
  .contact-heading .heading .column hr {
    width: 7rem;
  }
  #contact {
    display: flex;
    flex-direction: column-reverse;
  }
  #contact .form-container {
    width: 62rem;
  }
  #contact .form-container form input {
    width: 27rem;
    margin: 1rem;
    margin: 1.5rem 1rem;
  }
  #contact .form-container form textarea {
    width: 56rem;
    margin: 1rem;
    margin: 1.5rem 1rem;
  }
  #contact .form-container form .long {
    width: 56rem;
    margin: 1.5rem 1rem;
  }
  #contact #c6 {
    display: none;
  }
  #contact #c7 {
    display: none;
  }
  #contact #c8 {
    display: none;
  }
}
@media (max-width: 650px) {
  #services .cowork .swiper {
    max-width: 42rem;
  }
  #contact .form-container {
    width: 100%;
    padding: 3rem;
    margin: 3rem 0rem;
    margin-bottom: 5rem;
  }
  #contact .form-container .row {
    flex-direction: column;
  }
  #contact .form-container form {
    width: 100%;
  }
  #contact .form-container form input {
    width: 100%;
    margin: 1.5rem 0rem;
  }
  #contact .form-container form textarea {
    width: 100%;
    margin: 1.5rem 0rem;
  }
  #contact .form-container form .long {
    width: 100%;
    margin: 1.5rem 0rem;
  }
  #audiobook h1 {
    margin-top: 3rem;
  }
  #audiobook .text img {
    width: 100%;
  }
}
@media (max-width: 425px) {
  h2 {
    font-size: 3rem !important;
  }
  .toggle {
    margin: 3rem 2rem;
    padding: 0.25rem 3rem;
    margin-bottom: 0;
  }
  .toggle .logo {
    width: 6rem;
  }
  .toggle svg {
    width: 3rem;
    height: 3rem;
  }
  header {
    padding: 2rem;
    width: 75%;
  }
  #prolog .row .text {
    margin: 2rem 0rem;
  }
  #prolog .row .text h1 {
    font-size: 4rem;
  }
  #prolog .row .text .btn {
    padding: 1rem 2.5rem;
  }
  #prolog .row .imgs img {
    width: 100%;
    height: auto;
    margin: 1rem;
    margin-top: 2rem;
  }
  #prolog .row .imgs .img2 {
    display: none;
  }
  #prolog .row .imgs .img3 {
    display: none;
  }
  #why .img-c {
    width: 100%;
  }
  #order .row {
    margin-top: 0;
  }
  #order .row .svg {
    width: 100%;
    margin: 0rem;
  }
  #order #c2 {
    width: 6rem;
  }
  #how {
    padding-bottom: 0;
  }
  #references {
    padding: 3rem 1.5rem;
    padding-top: 0;
  }
  #services .cowork .swiper {
    max-width: 36rem;
  }
  #services .opportunities .row .opportunity {
    margin: 1rem 1.5rem;
  }
  #services .opportunities .row .opportunity .circle {
    width: 2rem;
    height: 2rem;
  }
  #services .opportunities .row .opportunity h3 {
    font-size: 1.8rem;
  }
  #gallery-opened .gallery-fotos {
    grid-template-columns: repeat(auto-fit, 33rem);
  }
  #gallery-opened .gallery-fotos img {
    width: 33rem;
    height: 22rem;
  }
  #rules h1 {
    padding: 2rem 0rem;
  }
  #audiobook .prolog h1 {
    margin: 0;
    padding: 0;
    margin-top: 5rem;
  }
  #audiobook .prolog p {
    padding: 2rem 0rem;
  }
  #audiobook .text {
    width: 100%;
    margin: 2rem 0rem;
  }
  #audiobook .text h2 {
    padding: 0rem;
  }
  #audiobook .text p {
    padding: 2rem 0rem;
  }
  #audiobook .text a {
    margin: 4rem auto;
  }
  #audiobook .text video {
    margin: 0;
    margin-bottom: 4rem;
  }
  #audiobook .imgs h2 {
    padding: 0rem;
    padding-bottom: 2rem;
  }
  #audiobook .imgs .row img {
    margin: 2rem 0rem;
  }
  #audiobook .imgs .row video {
    width: 100%;
    height: auto;
    margin: 2rem 0rem;
  }
  #audiobook .imgs .row .twentytwenty-container {
    width: 30rem;
    margin: 2rem 0rem;
  }
  #audiobook .imgs .row .twentytwenty-container img {
    width: 100%;
  }
}
@media (max-width: 375px) {
  #gallery .gallery-enters {
    grid-template-columns: repeat(auto-fit, 30rem);
  }
  #gallery .gallery-enters .gallery-enter {
    width: 30rem;
    height: 20rem;
  }
  #gallery-opened .gallery-fotos {
    grid-template-columns: repeat(auto-fit, 30rem);
  }
  #gallery-opened .gallery-fotos img {
    width: 30rem;
    height: 20rem;
  }
}
@media (max-width: 320px) {
  header {
    width: 68%;
  }
  header nav ul li a {
    font-size: 1.8rem;
  }
  #prolog .row .text h1 {
    font-size: 3.5rem;
  }
  #prolog .row .imgs img {
    width: 190%;
  }
  #prolog .icons .icon {
    margin: 1rem 0rem;
  }
  #prolog .icons .icon .circle {
    width: 6rem;
    height: 6rem;
  }
  #prolog .icons .icon .circle img {
    width: 3rem;
    height: 3rem;
  }
  #references {
    padding: 3rem 0rem;
  }
  #services .cowork .swiper {
    max-width: 32rem;
  }
  #gallery .gallery-enters {
    grid-template-columns: repeat(auto-fit, 27rem);
  }
  #gallery .gallery-enters .gallery-enter {
    width: 27rem;
    height: 18rem;
  }
  #gallery-opened .gallery-fotos {
    grid-template-columns: repeat(auto-fit, 27rem);
  }
  #gallery-opened .gallery-fotos img {
    width: 27rem;
    height: 18rem;
  }
}