/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/normalize-scss/sass/_normalize.scss ***!
  \*******************************************************************************************************************************************/

/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss ***!
  \**************************************************************************************************************/
@font-face {
  font-family: "Montserrat";
  src: url(static/fonts/montserrat-light.be142e6c3747b7b87e60.woff) format("woff");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(static/fonts/montserrat-regular.3db65dc4b858f0fed4fb.woff) format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(static/fonts/montserrat-medium.d42dad28f6470e5162c2.woff) format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(static/fonts/montserrat-semibold.197213592de7a2a62e06.woff) format("woff");
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(static/fonts/montserrat-bold.75ee4192581c503f2484.woff) format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-emperor: #555555;
  --color-cod-gray: #151515;
  --color-chateau-green: #39b54a;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input {
  all: unset;
}

textarea {
  all: unset;
}

.site-container {
  overflow: hidden;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.white {
  color: var(--color-white);
}

.black {
  color: var(--color-black);
}

.emperor {
  color: var(--color-emperor);
}

.green {
  color: var(--color-chateau-green);
}

.cod-gray {
  color: var(--color-cod-gray);
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.flex-start {
  justify-content: flex-start;
}

.flex-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.relative {
  position: relative;
}

.transparent {
  background-color: transparent;
}

.btn-reset {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.bg-reset {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-shadow {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

.element-show {
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 1s, transform 1s;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  opacity: 0;
  transition: opacity 1s;
}

.overlay-up {
  z-index: 2;
  opacity: 1;
  transition: opacity 1s;
}

.section-title {
  margin-top: 10rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 3px;
  z-index: 2;
}

.section-description {
  position: relative;
  margin-top: 1rem;
  text-align: center;
  font-size: 3rem;
  max-width: 80%;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-description {
    max-width: 100%;
    font-size: 2rem;
  }
}

.hline:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 40rem;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 2;
}
@media (max-width: 768px) {
  .hline:after {
    width: 80%;
    bottom: -20px;
  }
}

.header {
  padding: 25px;
  background-color: white;
}
.header__icon {
  width: 1.5rem;
  color: black;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .nav__list {
    overflow: scroll;
  }
}
.nav__item {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .nav__link {
    width: 10rem;
  }
}

.hero {
  width: 100vw;
  height: 85vh;
  min-height: 600px;
  background-image: url(static/images/about.64fb7b7216b606596ab5.jpeg);
}
.hero--garden {
  background-image: url(static/images/about-garden.2.jpeg);
}
.hero-container {
  height: 80%;
}
.hero__title {
  font-size: 3.4rem;
  width: 80%;
  max-width: 100%;
  line-height: 5rem;
  position: relative;
}
.hero__title:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  padding-top: 15rem;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #ccc;
}
.hero__buttons {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .hero__buttons {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
  }
}
.hero__button {
  padding: 1rem 2.8rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-right: 1rem;
  border: 2px solid var(--color-white);
  transition: color 1s, background-color 1s;
}
@media (max-width: 768px) {
  .hero__button {
    width: 100%;
  }
}
.hero__button:hover {
  color: var(--color-black);
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  .hero__button:first-child {
    margin-bottom: 1rem;
  }
}
.hero__link {
  padding: 10px 25px;
}
.hero__link:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.25);
}

.main-link {
  position: absolute;
  right: 0;
  bottom: 10%;
}

.about {
  background-color: white;
  padding-bottom: 7rem;
}
.about__section-title {
  margin-bottom: 5rem;
}
.about__section-title--top {
  margin-top: 2rem;
}
.about__container {
  width: 100%;
}
.about__image {
  width: 80%;
  height: auto;
}
.about__text {
  max-width: 80%;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .about__text {
    max-width: 100%;
    font-size: 1rem;
    text-align: left;
  }
}
.about__text--top {
  margin-top: 7rem;
}

.advantages {
  padding-bottom: 7rem;
  background-color: #2e2484;
}
.advantages__section-title {
  margin-bottom: 3rem;
}

.advantages-list {
  row-gap: 2rem;
  column-gap: 5rem;
}
@media (max-width: 768px) {
  .advantages-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.advantage {
  color: white;
  width: 20rem;
}
.advantage__name {
  font-size: 3rem;
}
.advantage__info {
  max-width: 85%;
}

.services {
  padding-bottom: 6rem;
  background-color: #2e2484;
}
.services__container {
  width: 100%;
  padding-top: 1rem;
}
.services--school {
  background-color: white;
}

.services-list {
  margin: 0 auto;
  margin-top: 10rem;
  column-gap: auto;
}
@media (max-width: 768px) {
  .services-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.services-list__item {
  margin-bottom: 3rem;
}
.services-list__item--link {
  margin-bottom: 2rem;
}

.service {
  padding-left: 15%;
}
.service__icon {
  width: 50px;
  height: 50px;
  margin-right: 1.4rem;
  color: white;
}
@media (max-width: 768px) {
  .service__icon {
    width: 40px;
    height: 40px;
  }
}
.service__icon--school {
  color: black;
}
.service__name {
  font-size: 1.6rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .service__name {
    font-size: 1.2rem;
  }
}
.service__info {
  margin-top: 0.6rem;
  color: var(--color-emperor);
  font-size: 1rem;
  line-height: 1.6rem;
}
@media (max-width: 768px) {
  .service__info {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
.service__info--garden {
  color: white;
}
.service__text {
  max-width: 80%;
}

.contact {
  background-size: cover;
  padding-bottom: 10rem;
  background-image: url(static/images/contact-bg.2ef3fcc55b8d344697de.jpeg);
}
.contact__window {
  margin-top: 7rem;
  width: 80%;
}
@media (max-width: 768px) {
  .contact__window {
    width: 100%;
    flex-direction: column;
  }
}
.contact__subtitle {
  margin-bottom: 3.4rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .contact__subtitle {
    text-align: center;
    margin-top: 2rem;
  }
}
.contact__form {
  width: 65%;
  padding: 3.8rem;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .contact__form {
    width: 100%;
    padding: 1rem;
  }
}
.contact__info {
  width: 35%;
  padding: 3.8rem;
  background-color: var(--color-cod-gray);
}
@media (max-width: 768px) {
  .contact__info {
    width: 100%;
    padding: 1rem;
  }
}
.contact label {
  width: 100%;
}
.contact__input {
  width: 100%;
  margin-top: 1.2rem;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border 0.7s color 0.7s;
}
.contact__input:focus {
  border-bottom: 1px solid var(--color-chateau-green);
  transition: border 0.5s;
}
.contact__button {
  margin-top: 3rem;
  background-color: var(--color-chateau-green);
  padding: 1rem;
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 1;
  transition: opacity 1s;
}
.contact__button:hover {
  opacity: 0.7;
}
.contact__socials {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .info-list__title, .info-list__text {
    text-align: center;
  }
}
.info-list__item {
  margin-bottom: 1.4rem;
}
.info-list__title {
  font-size: 1rem;
  padding-bottom: 1.2rem;
}
.info-list__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .contact-socials {
    margin: 0 auto;
    padding-bottom: 1rem;
  }
}
.contact-socials__item {
  margin-right: 5px;
}

.just-validate-error-label {
  margin: 0.6rem 0.5rem;
  color: white !important;
}

.works {
  padding-bottom: 10rem;
  background-color: var(--color-white);
}
.works:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45rem;
  background-color: rgba(0, 0, 0, 0.95);
}
.works .hline:after {
  background-color: var(--color-emperor);
}

.gallery {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
  }
}
.gallery__item {
  line-height: 0;
  overflow: hidden;
}
.gallery__image {
  width: 100%;
  transition: transform 1s;
}
.gallery__item:hover .gallery__image {
  transform: scale(1.2);
}
.gallery__overlay {
  opacity: 0;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.7s;
  z-index: 2;
}
.gallery__overlay:hover {
  opacity: 1;
}
.gallery-cw-1, .gallery-cw-2 {
  width: 50%;
}
@media (max-width: 768px) {
  .gallery-cw-1, .gallery-cw-2 {
    width: 100%;
    flex-direction: column;
  }
}
.gallery__icon {
  font-size: 2rem;
  position: absolute;
  top: 7%;
  left: 6%;
}
.gallery__link {
  top: 50%;
  left: 50%;
  font-size: 2rem;
  transform: translate(-50%, -50%);
}
.gallery__title {
  font-size: 0.9rem;
  position: absolute;
  letter-spacing: 1px;
  bottom: 11%;
  left: 6%;
}
.gallery__category {
  font-size: 0.8rem;
  position: absolute;
  letter-spacing: 1px;
  bottom: 7%;
  left: 6%;
}

.clients {
  padding-bottom: 7rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.clients-slider {
  margin: 0 auto;
  margin-top: 5rem;
  width: 90%;
  padding-bottom: 5rem;
  overflow: hidden;
}
.clients-slider .swiper-slide > i {
  opacity: 0.4;
  font-size: 9rem;
}
.clients-slider .swiper-pagination-bullet {
  background-color: var(--color-chateau-green);
  width: 12px;
  height: 12px;
  margin: 0 10px !important;
}

.testimonals-slider {
  width: 90%;
  overflow: hidden;
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .testimonals-slider {
    width: 95%;
  }
}
.testimonals-slider .swiper-button-prev:after,
.testimonals-slider .swiper-button-next:after {
  display: none;
}
.testimonals-slider .swiper-button-prev,
.testimonals-slider .swiper-button-next {
  top: 25%;
  color: var(--color-black);
}
.testimonals-slider .swiper-button-prev > i,
.testimonals-slider .swiper-button-next > i {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .testimonals-slider .swiper-button-prev,
.testimonals-slider .swiper-button-next {
    display: none;
  }
}

.testimonal__author {
  margin-top: 1.2rem;
}
.testimonal .testimonal-author__photo {
  width: 6rem;
  border-radius: 50%;
}
.testimonal .testimonal-author__name {
  margin-top: 1rem;
  font-size: 1rem;
}
.testimonal .testimonal-author__position {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.testimonal__text {
  font-size: 1.6rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: var(--color-emperor);
  line-height: 55px;
}
@media (max-width: 768px) {
  .testimonal__text {
    width: 98%;
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

.footer {
  background-color: white;
  padding-bottom: 3rem;
}
.footer-container {
  padding-top: 4rem;
}
.footer__text, .footer__subtitle, .footer__copyright {
  margin-bottom: 1rem;
}

.files {
  background-color: white;
  padding-bottom: 3rem;
}
.files__container {
  width: 100%;
  min-height: 60vh;
}

.files__list {
  background-color: white;
  margin: 0 auto;
  margin-top: 10rem;
}
.files__list__item {
  margin-bottom: 3rem;
}
.files__list__item--link {
  margin-bottom: 2rem;
}

.file {
  color: #2e2484;
  margin-bottom: 1.8rem;
}
.file__name {
  max-width: 75%;
  font-size: 1rem;
}
.file__icon {
  width: 40px;
  height: 40px;
  margin-right: 1.4rem;
}
@media (max-width: 768px) {
  .file__icon {
    width: 40px;
    height: 40px;
  }
}

.staff {
  background-color: white;
  padding-bottom: 3rem;
}
.staff__container {
  width: 100%;
  min-height: 60vh;
}
.staff__gallery {
  width: 100%;
  column-gap: 1rem;
  row-gap: 1rem;
}
@media (max-width: 768px) {
  .staff__gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
