/* --------------------- RESET ---------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Merriweather", serif;
  line-height: 1.5;
}

body {
  min-width: 320px;
}

body::before {
  content: "";
  margin-top: 81.39px;
  display: block;
}

@media (min-width: 1200px) {
  body::before {
    margin-top: 105px;
  }
}

.mt {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .mt {
    margin-top: 3rem;
  }
}

.msg-err {
  color: red;
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

.msg-succ {
  color: green;
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex--col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex--ac {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#name-error,
#email-error,
#message-error,
#checkbox-error {
  display: block;
  font-size: 12px;
  margin: 0.3rem 0;
  color: red;
}

/* ------------------------------ HEADER ------------------------------ */
.header__title {
  margin: 2rem 0;
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
  color: #daa520;
  padding: 0 2rem;
  font-family: "Lora", serif;
}

@media (min-width: 768px) {
  .header__title {
    padding: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .header__title {
    font-size: 1.4rem;
    padding: 5rem;
    width: 60%;
    margin: 0 auto;
  }
}

/* ------------------ NAV ------------------------- */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #123922;
  color: white;
  width: 100%;
  border-bottom: 1px solid black;
  -webkit-box-shadow: 0 0 25px black;
          box-shadow: 0 0 25px black;
  padding: 1rem 0.5rem 1rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

@media (min-width: 1200px) {
  .nav {
    padding: 0 3rem;
  }
}

.nav__brand-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: white;
}

.nav__brand-text {
  margin-left: 2rem;
}

.nav__logo {
  width: 3rem;
}

.nav__menu {
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: #124025;
  text-align: center;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9999;
  height: 0%;
  overflow: hidden;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 533px) {
  .nav__menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: auto;
  }
}

@media (min-width: 1200px) {
  .nav__menu {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background-color: #123922;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
  }
}

.nav__menu--active {
  height: 25rem;
}

@media (min-width: 553px) {
  .nav__menu--active {
    height: 15rem;
  }
}

@media (min-width: 768px) {
  .nav__menu--active {
    height: 25rem;
  }
}

@media (min-width: 1200px) {
  .nav__menu--active {
    height: auto;
  }
}

.nav__list {
  padding: 1rem;
}

@media (min-width: 768px) {
  .nav__list {
    padding: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav__item {
  list-style: none;
}

.nav__item:not(:first-child) {
  margin-top: 2rem;
}

@media (min-width: 1200px) {
  .nav__item:not(:first-child) {
    margin-top: 0;
    margin-left: 3rem;
  }
}

@media (min-width: 1366px) {
  .nav__item:not(:first-child) {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.nav__link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem;
}

@media (min-width: 1200px) {
  .nav__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .nav__link:hover {
    color: #daa520;
  }
}

.nav__btn-menu {
  font-size: 1.3rem;
  background: transparent;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
}

@media (min-width: 1200px) {
  .nav__btn-menu {
    display: none;
  }
}

/* ------------------ SLIDER ------------------------- */
.swiper-slide p {
  font-size: 1rem;
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  width: 80%;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

@media (min-width: 768px) {
  .swiper-slide p {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .swiper-slide p {
    width: 45%;
    top: 52%;
    left: 50%;
  }
}

.swiper-slide h2 {
  text-align: center;
  font-size: 1.2rem;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  width: 80%;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  .swiper-slide h2 {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .swiper-slide h2 {
    width: 45%;
    font-size: 2.2rem;
  }
}

.simple-slider .swiper-slide {
  height: 25rem;
}

@media (min-width: 1200px) {
  .simple-slider .swiper-slide {
    height: 35rem;
  }
}

#slide1 {
  background: url("../assets/img/slide1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

#slide1::before,
#slide2::before,
#slide3::before {
  content: "";
  display: block;
  background-color: rgba(12, 12, 12, 0.685);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#slide2 {
  background: url("../assets/img/slide2.webp");
  background-size: cover;
  position: relative;
  background-position: center;
}

#slide3 {
  background: url("../assets/img/slide3.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  height: 1rem;
}

@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: 2.5rem;
  }
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23189c51'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23189c51'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination-bullet-active {
  background: #189c51;
}

/* ------------------ BOX COMPONENT ----------- */
.box {
  background: #103522;
  margin: 3rem auto;
  padding: 3rem 3rem 5rem 3rem;
  position: relative;
  width: 100%;
  color: white;
}

@media (min-width: 768px) {
  .box {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .box {
    width: 90%;
    padding: 5.5rem 4rem;
  }
}

@media (min-width: 1200px) {
  .box {
    padding: 7rem;
    width: 75%;
    margin-bottom: 6rem;
  }
}

.box__img {
  width: 5rem;
  margin-bottom: 1rem;
}

.box__title {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  color: #daa520;
}

.box__list-item {
  margin: 1rem 0;
}

.box__droplist {
  margin-top: 0.8rem;
  margin-left: 1.3rem;
}

/* ----------------- SECTION my-spec --------------------- */
.my-spec {
  margin-top: 3rem;
}

/* ------------------ SECTION explication -------------- */
.explication {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 53, 34, 0.9)), to(rgba(16, 53, 34, 0.7))), url("../assets/img/wroclaw.webp") center/cover no-repeat;
  background: linear-gradient(rgba(16, 53, 34, 0.9), rgba(16, 53, 34, 0.7)), url("../assets/img/wroclaw.webp") center/cover no-repeat;
  padding: 2rem 2rem 5rem 2rem;
  color: white;
}

@media (min-width: 768px) {
  .explication {
    padding: 7.5rem 4rem 7.5rem 4rem;
  }
}

@media (min-width: 1200px) {
  .explication {
    padding: 9rem 15rem;
    margin-bottom: 8rem;
    background-attachment: fixed;
  }
}

.explication__title {
  padding: 2rem 0;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .explication__title {
    font-size: 2.2rem;
  }
}

.explication__subtitle {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

@media (min-width: 1200px) {
  .explication__subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1200px) {
  .explication__text {
    font-size: 1.1rem;
    width: 85%;
  }
}

/* ------------------- FOOTER -------------------------- */
.footer {
  margin-top: 3rem;
  background-color: #103522;
  color: white;
  padding: 3rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1024px) and (min-width: 1200px) {
  .footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .footer {
    padding: 4rem 15rem;
  }
}

.footer__col {
  margin: 1rem auto;
}

@media (min-width: 1024px) {
  .footer__col {
    margin: 0 0;
  }
}

.footer__img {
  width: 5rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@media (min-width: 1200px) {
  .footer__img {
    width: 5.5rem;
    right: 2rem;
    top: 1.5rem;
  }
}

.footer__icon {
  margin-right: 0.5rem;
}

.footer__icon-fb {
  margin-right: 0.8rem;
  font-size: 14px;
  background-color: #1877f2;
  border-radius: 3px;
  padding: 0.3rem 0.35rem 0 0.4rem;
}

.footer__phone, .footer__mail, .footer__copyr {
  text-decoration: none;
  color: white;
}

.footer__mail {
  margin: 1rem 0;
}

.footer__ccart {
  margin-bottom: 1rem;
}

/* ------------------- Section about -------------------------- */
.about {
  margin: 5rem 0;
  padding: 4rem 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 53, 34, 0.9)), to(rgba(16, 53, 34, 0.7))), url("../assets/img/wroclaw2.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(16, 53, 34, 0.9), rgba(16, 53, 34, 0.7)), url("../assets/img/wroclaw2.jpg") center/cover no-repeat;
}

@media (min-width: 768px) {
  .about {
    padding: 4rem;
  }
}

@media (min-width: 1200px) {
  .about {
    padding: 8rem 15rem;
    margin: 8rem 0;
  }
}

.about__title {
  color: #daa520;
  font-weight: 700;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .about__title {
    font-size: 1.8rem;
    width: 60%;
  }
}

.about__subtitle {
  margin: 2rem 0;
  color: #daa520;
  font-size: 1.1rem;
}

@media (min-width: 1200px) {
  .about__subtitle {
    width: 55%;
    margin-top: 3rem;
  }
}

.about__text {
  margin-top: 2rem;
  color: white;
}

@media (min-width: 1200px) {
  .about__text {
    width: 90%;
    margin-top: 4rem;
  }
}

.about__list {
  margin-top: 0.5rem;
  color: white;
}

.about__item {
  margin-top: 1rem;
  margin-left: 1rem;
}

.services {
  padding-bottom: 0.3rem;
}

.services__title {
  text-align: center;
  margin-top: 3rem;
  color: #daa520;
  letter-spacing: 2px;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .services__title {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
}

/* ------------------------------ SECTION OPINIONS ------------------ */
.opinions__title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 1rem;
  color: #daa520;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .opinions__title {
    font-size: 1.8rem;
  }
}

.opinions__add {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #daa520;
  letter-spacing: 2px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 15rem;
  margin: 0 auto;
  padding: 1rem 0;
}

.opinions__add:active, .opinions__add:link, .opinions__add:visited {
  color: #103522;
}

@media (min-width: 1200px) {
  .opinions__add {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .opinions__add:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

.opinion {
  padding: 3rem 2rem;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  margin: 4rem 1rem;
}

@media (min-width: 768px) {
  .opinion {
    width: 80%;
    margin: 4rem auto 4rem auto;
    padding: 3.3rem 2.5rem;
  }
}

@media (min-width: 1200px) {
  .opinion {
    width: 50%;
    padding: 4.5rem 2.5rem;
  }
}

.opinion__positive {
  color: #00aa00;
}

.pricelist {
  padding: 2rem;
}

@media (min-width: 768px) {
  .pricelist {
    padding: 4rem;
  }
}

@media (min-width: 1200px) {
  .pricelist {
    padding: 4rem 15rem;
  }
}

.pricelist__title {
  color: #daa520;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .pricelist__title {
    font-size: 1.8rem;
  }
}

.pricelist__subtitle:nth-child(3) {
  margin-bottom: 2rem;
}

.pricelist__subtitle:nth-child(2) {
  font-style: italic;
  font-weight: 200;
  font-size: 1.2rem;
}

.pricelist__text {
  margin: 1.5rem 0;
}

.contact {
  margin: 4rem 0;
}

@media (min-width: 1024px) {
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  .contact {
    width: 75%;
    margin: 5rem auto;
  }
}

.contact__title {
  margin-bottom: 1rem;
  color: #daa520;
  font-size: 1.3rem;
}

@media (min-width: 1200px) {
  .contact__title {
    font-size: 1.8rem;
  }
}

.contact__subtitle {
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

.contact__col {
  padding: 2.3rem 2rem;
}

@media (min-width: 1024px) {
  .contact__col:nth-of-type(1) {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .contact__col:nth-of-type(2) {
    width: 50%;
  }
}

.contact__address {
  margin-top: 0.8rem;
}

.contact__phone, .contact__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-decoration: none;
  margin-top: 0.8rem;
}

.contact__phone:active, .contact__phone:link, .contact__phone:visited, .contact__email:active, .contact__email:link, .contact__email:visited {
  color: black;
}

.contact__phone-icon, .contact__email-icon {
  margin-right: 0.5rem;
}

.contact__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1024px) {
  .contact__map {
    width: 100%;
  }
}

.contact__map .map {
  width: 100%;
  height: 20rem;
}

@media (min-width: 1024px) {
  .contact__map .map {
    height: 25rem;
  }
}

@media (min-width: 1200px) {
  .contact__map .map {
    height: 30rem;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form__title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.form__input, .form__textarea {
  padding: 0.5rem;
  margin: 0.2rem 0;
}

.form__textarea {
  min-height: 15rem;
}

.form__label {
  margin: 1rem 0;
  font-size: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__checkbox {
  margin-right: 0.5rem;
}

.form__button {
  padding: 0.9rem;
  width: 11rem;
  margin: 2rem auto;
  border: 1px solid black;
  background-color: transparent;
  color: black;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  border-radius: 3px;
}

@media (min-width: 1200px) {
  .form__button {
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
  }
  .form__button:hover {
    background-color: #103522;
    color: #daa520;
  }
}
/*# sourceMappingURL=style.css.map */