@font-face {
  font-family: Manrope;
  src: url(../Manrope-VariableFont_wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

a {
  cursor: pointer;
}

.main .bg-detail {
  position: absolute;
  background: #fff;
}
.main #main-bg-1 {
  height: 10vw;
  width: 17.5vw;
  position: absolute;
  left: 0;
  top: 35%;
  animation: float 3s ease-in-out infinite;
}
.main #main-bg-2 {
  height: 10vw;
  width: 17.5%;
  position: absolute;
  left: 22.5%;
  top: 20%;
  animation: float 3s ease-in-out -1s infinite;
}
.main #main-bg-3 {
  height: 10vw;
  width: 40%;
  position: absolute;
  right: 0%;
  top: 8%;
  animation: float 3s ease-in-out -2s infinite;
}
.main #main-bg-4 {
  height: 9vw;
  width: 9vw;
  position: absolute;
  right: 4%;
  top: 35%;
  animation: float 3s ease-in-out 0s infinite;
}
.main #main-bg-5 {
  height: 9vw;
  width: 22%;
  position: absolute;
  right: 16%;
  top: 35%;
  animation: float 3s ease-in-out -1s infinite;
}
.main #main-bg-6 {
  height: 9vw;
  width: 25%;
  position: absolute;
  right: 5%;
  bottom: 12.5%;
  animation: float 3s ease-in-out -6s infinite;
}
.main #main-bg-7 {
  height: 9vw;
  width: 30%;
  position: absolute;
  right: 20%;
  bottom: -4.5vw;
  animation: float 3s ease-in-out -0.5s infinite;
}
.main #main-bg-8 {
  height: 9vw;
  width: 30%;
  position: absolute;
  left: 5%;
  bottom: 10%;
  animation: float 3s ease-in-out -5s infinite;
}

@media only screen and (max-width: 610px) {
  .main #main-bg-1 {
    height: 20vw;
    animation: float-mobile 3s ease-in-out infinite;
  }
  .main #main-bg-2 {
    height: 20vw;
    width: 35vw;
    left: auto;
    right: 10%;
    top: 15%;
    animation: float-mobile 3s ease-in-out -1s infinite;
  }
  .main #main-bg-3 {
    top: 60%;
    right: auto;
    left: 10%;
    height: 20vw;
    animation: float-mobile 3s ease-in-out -2s infinite;
  }
  .main #main-bg-4 {
    height: 15vw;
    width: 15vw;
    top: 50%;
    animation: float-mobile 3s ease-in-out 0s infinite;
  }
  .main #main-bg-5 {
    right: 30%;
    height: 15vw;
    width: 30vw;
    animation: float-mobile 3s ease-in-out -1s infinite;
  }
  .main #main-bg-6 {
    height: 20vw;
    animation: float-mobile 3s ease-in-out -6s infinite;
  }
  .main #main-bg-7 {
    height: 20vw;
    animation: float-mobile 3s ease-in-out -0.5s infinite;
  }
  .main #main-bg-8 {
    height: 20vw;
    animation: float-mobile 3s ease-in-out -5s infinite;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7.5%);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes float-mobile {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes float-gentle {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes about1 {
  0% {
    transform: translate(-50%, -50%) translateZ(0);
  }
  25% {
    transform: translate(-50%, calc(-50% + 10vw)) translateZ(0);
  }
  50% {
    transform: translate(-50%, -50%) translateZ(0);
  }
  75% {
    transform: translate(calc(-50% + 10vw), -50%) translateZ(0);
  }
  100% {
    transform: translate(-50%, -50%) translateZ(0);
  }
}
@keyframes about2 {
  0% {
    transform: translate(-50%, -50%) translateZ(0);
  }
  25% {
    transform: translate(-50%, calc(-50% - 10vw)) translateZ(0);
  }
  50% {
    transform: translate(-50%, -50%) translateZ(0);
  }
  75% {
    transform: translate(calc(-50% - 10vw), -50%) translateZ(0);
  }
  100% {
    transform: translate(-50%, -50%) translateZ(0);
  }
}
@media only screen and (max-width: 610px) {
  @keyframes about1 {
    0% {
      transform: translate(-50%, -50%) translateZ(0);
    }
    25% {
      transform: translate(-50%, calc(-50% + 20vw)) translateZ(0);
    }
    50% {
      transform: translate(-50%, -50%) translateZ(0);
    }
    75% {
      transform: translate(calc(-50% + 20vw), -50%) translateZ(0);
    }
    100% {
      transform: translate(-50%, -50%) translateZ(0);
    }
  }
  @keyframes about2 {
    0% {
      transform: translate(-50%, -50%) translateZ(0);
    }
    25% {
      transform: translate(-50%, calc(-50% - 20vw)) translateZ(0);
    }
    50% {
      transform: translate(-50%, -50%) translateZ(0);
    }
    75% {
      transform: translate(calc(-50% - 20vw), -50%) translateZ(0);
    }
    100% {
      transform: translate(-50%, -50%) translateZ(0);
    }
  }
}
footer {
  background: #b4b4b4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
}
footer .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
footer .left .logo {
  height: 7.5rem;
  width: 7.5rem;
  background: #fff;
  position: relative;
  margin-left: 5rem;
}
footer .left .logo img {
  height: 2rem;
  position: absolute;
  bottom: 2rem;
  left: -4rem;
}
footer .left .contacts {
  height: 7.5rem;
  width: 7.5rem;
  background: #fff;
  position: relative;
  overflow: visible;
}
footer .left .contacts p {
  position: absolute;
  bottom: 1.5rem;
  right: -26rem;
  width: 30rem;
  font-size: 1.25em;
  font-weight: 400;
  color: #881FF1;
}
footer .left .contacts p a {
  font-weight: 600;
  color: #881FF1;
  text-decoration: none;
}
footer .right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
footer .right a, footer .right p {
  text-decoration: none;
  color: #881FF1;
  font-size: 1.5em;
  font-weight: 600;
}

@media only screen and (max-width: 1200px) {
  footer .left .logo {
    height: 5rem;
    width: 5rem;
  }
  footer .left .logo img {
    height: 1.5rem;
    bottom: 1rem;
  }
  footer .left .contacts {
    height: 5rem;
    width: 5rem;
  }
  footer .left .contacts p {
    font-size: 1.15em;
    bottom: 0.75rem;
  }
}
@media only screen and (max-width: 1000px) {
  footer .left .contacts p {
    font-size: 0.9em;
    width: 40vw;
    right: -20rem;
  }
}
@media only screen and (max-width: 850px) {
  footer .left .contacts p {
    font-size: 0.9em;
    width: 40vw;
    right: -17rem;
  }
}
@media only screen and (max-width: 750px) {
  footer {
    justify-content: center;
    flex-flow: column;
    row-gap: 2rem;
  }
  footer .left {
    flex-flow: column;
    align-items: center;
    width: 100%;
  }
  footer .left .logo {
    margin: 0;
  }
  footer .left .contacts {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .left .contacts p {
    font-size: 0.9em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
  }
}
#loading, #loading-next {
  height: 100vh;
  width: 100vw;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 1s ease-in-out;
}

#loading-next {
  transform: translateX(-100%);
}

.main {
  height: 100vh;
  width: 100vw;
  background: #b4b4b4;
  background-size: cover;
  background-position: start center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: start;
  align-items: start;
}
.main .main-img {
  height: 100%;
  z-index: 2;
}
.main header {
  height: 7rem;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem 5%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.main header img {
  height: 2rem;
}
.main header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin: 0 1rem;
}
.main header nav a, .main header nav p {
  color: #fff;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}
.main header nav a:hover, .main header nav a.active {
  color: #881FF1;
}
.main h1 {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: #881FF1;
  font-size: 5.5em;
  font-weight: 800;
  line-height: 1em;
  z-index: 3;
}
.main .main-text {
  color: #881FF1;
  font-size: 1em;
  font-weight: 400;
  width: 20rem;
  margin-top: 7rem;
  line-height: 1.25em;
  z-index: 3;
}

.gray-bar {
  height: 6rem;
  background: #c4c4c4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 10%;
}
.gray-bar h1 {
  font-size: 4em;
  color: #fff;
  font-weight: 800;
  transform: translateY(0.65em);
  z-index: 3;
  line-height: 1em;
  font-weight: 500;
}
.gray-bar h3 {
  font-size: 1.5em;
  color: #881FF1;
  font-weight: 300;
}

.offer {
  position: relative;
  width: 100%;
  padding: 5rem 10% 10rem;
  background: #881FF1;
}
.offer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  row-gap: 1.5rem;
  width: 100%;
}
.offer .content .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
}
.offer .content .row p {
  text-align: center;
  color: #fff;
  font-size: 1.25em;
  font-weight: 400;
}

.about-us {
  width: 100%;
  position: relative;
  padding: 5rem 0;
}
.about-us h1 {
  position: absolute;
  left: 10%;
  top: 0;
  transform: translateY(-1em);
  font-size: 4em;
  color: #fff;
  font-weight: 500;
}
.about-us .row {
  display: flex;
  justify-content: space-around;
  align-items: start;
  position: relative;
}
.about-us .row.center {
  justify-content: center;
  padding: 0 5%;
}
.about-us .row:nth-child(3) {
  margin-top: 5rem;
}
.about-us .row:nth-child(3) .line.line1 {
  width: 70vw;
}
.about-us .row:nth-child(3) .line.line2 {
  width: 30vw;
  left: 70%;
}
.about-us .row .line {
  height: 15vh;
  width: 50vw;
  position: absolute;
  background: #b4b4b4;
  z-index: -1;
}
.about-us .row .line.line1 {
  left: 0;
  top: 45%;
}
.about-us .row .line.line2 {
  left: 50%;
  top: calc(45% - 15vh);
}
.about-us .row .part {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 1.5rem;
  width: 33vw;
}
.about-us .row .part .image {
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-us .row .part .image img {
  width: 100%;
}
.about-us .row .part .image h3 {
  position: absolute;
  left: 0;
  bottom: 15%;
  transform: translateX(-40%);
  font-size: 4em;
  color: #881FF1;
  font-weight: 500;
}
.about-us .row .part p {
  width: 60%;
  font-size: 1.1em;
  color: #881FF1;
}

.bottom-bar {
  width: 100vw;
  height: 50vh;
  position: relative;
  padding: 2% 5%;
}
.bottom-bar .text {
  position: absolute;
  left: 15%;
  top: 40%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
}
.bottom-bar .text p {
  color: #881FF1;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.2em;
}
.bottom-bar .text p span {
  font-weight: 700;
}
.bottom-bar .button-parent {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding: 15px 15%;
  background: #8CF1A6;
  transform: translateY(-50%);
  display: flex;
  justify-content: end;
  align-items: center;
}
.bottom-bar .button-parent .reviews-button {
  background: #fff;
  padding: 1.5rem;
  border: none;
}
.bottom-bar .button-parent .reviews-button a {
  font-size: 1.8em;
  color: #881FF1;
  text-decoration: none;
  font-weight: 400;
}

@media only screen and (max-width: 1200px) {
  .main {
    justify-content: end;
  }
  .main .main-img {
    height: 70vh;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .main .main-text {
    margin-right: 3rem;
    font-size: 1.2em;
  }
  .gray-bar {
    justify-content: end;
  }
  .gray-bar h1 {
    position: absolute;
    left: 10%;
    font-size: 3em;
    transform: translateY(0.9em);
  }
  .about-us .row .part .image {
    width: 15rem;
  }
  .about-us .row .part .image h3 {
    font-size: 3em;
  }
  .about-us .row .part p {
    font-size: 1em;
    width: 70%;
  }
  .bottom-bar {
    background-size: cover;
  }
  .bottom-bar .text {
    left: 5%;
  }
  .bottom-bar .text p {
    font-size: 1.1em;
  }
  .bottom-bar .button-parent {
    padding: 15px 5%;
  }
}
@media only screen and (max-width: 1000px) {
  .main .main-img {
    height: 65vh;
  }
  .main h1 {
    font-size: 4em;
  }
  .main .main-text {
    font-size: 1em;
    margin-right: 1.5rem;
  }
  .gray-bar h1 {
    transform: translateY(115%);
  }
  .gray-bar h3 {
    font-size: 1.25em;
  }
  .about-us .row.center {
    padding: 0;
    gap: 10%;
  }
  .about-us .row .part .image h3 {
    font-size: 4em;
  }
  .bottom-bar .text p {
    font-size: 1em;
  }
}
@media only screen and (max-width: 850px) and (max-height: 850px) {
  .main .main-img {
    height: 50vh;
  }
  .main .main-text {
    font-size: 1.2em;
    margin-top: 8rem;
  }
  .gray-bar h1 {
    transform: translateY(70%);
  }
  .about-us .row {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .about-us .row.center {
    padding: 0;
    gap: 5%;
  }
  .about-us .row .part {
    width: 100%;
  }
  .about-us .part p {
    font-size: 1.5em;
  }
  .bottom-bar .text {
    left: 5%;
  }
  .bottom-bar .text p {
    font-size: 1.1em;
  }
  .bottom-bar .button-parent {
    padding: 15px 5%;
  }
}
@media only screen and (max-width: 750px) and (max-height: 750px) {
  .main h1 {
    font-size: 3.5em;
    top: 45%;
  }
  .main .main-text {
    font-size: 1em;
    margin-top: 6rem;
  }
  .gray-bar h1 {
    font-size: 1.5em;
    transform: translateY(135%);
  }
  .gray-bar h3 {
    font-size: 1em;
    text-align: center;
  }
  .offer {
    padding: 1.5rem 5%;
  }
  .offer .bg1, .offer .bg2 {
    width: 100%;
    height: 50%;
  }
  .offer .bg2 {
    top: 50%;
    left: 0;
  }
  .offer .content {
    row-gap: 1.5rem;
  }
  .offer .content .row {
    grid-template-columns: 1fr;
  }
  .offer .content .row p {
    font-size: 1.1em;
  }
  .offer .content .row p:last-child {
    color: #fff;
  }
  .offer .content .row:nth-child(2) {
    margin-bottom: 0.5rem;
  }
  .offer .content .row:nth-child(3) {
    margin-top: 0.5rem;
  }
  .about-us h1 {
    font-size: 1.5em;
  }
  .about-us .row {
    flex-flow: column;
  }
  .about-us .row.center {
    padding: 0;
    gap: 5%;
  }
  .about-us .row .part.middle .text {
    font-size: 0.9em;
  }
  .bottom-bar .text p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 610px) {
  .main {
    flex-flow: column;
    justify-content: start;
  }
  .main header {
    height: 5rem;
  }
  .main header img {
    height: 1.5rem;
  }
  .main header nav a, .main header nav p {
    font-size: 1.1em;
  }
  .main .main-img {
    height: auto;
    width: 80%;
  }
  .main h1 {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    order: 1;
    margin-top: 6rem;
    font-size: 2.5em;
    text-align: center;
    display: block;
    width: 100%;
    line-height: 1.15em;
  }
  .main .main-text {
    position: relative;
    order: 2;
    text-align: center;
    width: 80%;
    margin: 1rem auto 0 auto;
  }
  .gray-bar {
    padding: 10px 10% 30px;
  }
  .gray-bar h1 {
    transform: translateY(1.7em);
    font-size: 2em;
  }
  .gray-bar h3 {
    font-size: 1em;
    text-align: center;
  }
  .offer {
    padding: 5rem 10%;
  }
  .offer .content .row {
    grid-template-columns: 1fr;
  }
  .about-us h1 {
    transform: translateY(-1em);
    font-size: 2em;
  }
  .about-us .row {
    flex-flow: column;
    gap: 4rem;
  }
  .about-us .row:nth-child(3) .line.line1 {
    top: -3rem;
    width: 100%;
  }
  .about-us .row:nth-child(3) .line.line2 {
    top: 48%;
    width: 100%;
    left: 0;
  }
  .about-us .row.center {
    gap: 4rem;
  }
  .about-us .row .line.line1 {
    top: 33%;
    width: 100%;
  }
  .about-us .row .line.line2 {
    top: 66%;
    width: 100%;
    left: 0;
  }
  .about-us .row .part {
    width: 100%;
  }
  .about-us .row .part .image h3 {
    font-size: 2.5em;
  }
  .about-us .row .part p {
    font-size: 1em;
  }
  .bottom-bar .text p {
    width: 100%;
  }
  .bottom-bar .button-parent .reviews-button {
    padding: 1rem;
  }
  .bottom-bar .button-parent .reviews-button a {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 300px) {
  .main header {
    flex-flow: column;
    row-gap: 0.5rem;
  }
  .main h1 {
    font-size: 1.8em;
    margin-top: 8rem;
  }
  .main .main-text {
    font-size: 0.9em;
    margin: 0.5rem auto 0 auto;
  }
  .main .main-img {
    height: auto;
    width: 100vw;
  }
  .offer .content .row p {
    font-size: 1em;
  }
  .bottom-bar .text p {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */