@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap");
body {
  font-family: 'Inter', sans-serif;
}

body.open {
  overflow: hidden;
}

.title {
  font-family: 'Roboto Slab', serif;
  margin: 0;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  color: #2B2B2B;
}

.subtitle {
  margin: 0;
  margin-bottom: 100px;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
}

input.form-control {
  padding: 0;
  padding-bottom: 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(70, 70, 70, 0.3);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #8C7959;
}

.custom-btn {
  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;
  width: 290px;
  max-width: 100%;
  padding: 20px 0;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #8C7959;
  border: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.custom-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-btn:hover {
  background-color: #7D6B4B;
  text-decoration: none;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/* Scroll up button */
.go-top {
  position:fixed;
  bottom: 30px;
  right: 15px;
  width: 50px;
  height: 50px;
  display:none;
  cursor: pointer;
	-webkit-font-smoothing: antialiased;
}

.go-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 20px;
  z-index: 1;
}

.go-top:after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #8C7959;
  position: absolute;
  border-radius: 50px;
}

.overlay {
  position: fixed;
  background: #8C7959;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 5;
}

.overlay.open {
  opacity: .95;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: .55s;
          animation-delay: .55s;
}

.overlay nav {
  position: relative;
  height: 100%;
  font-weight: 400;
  text-align: center;
}

.overlay nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
}

.overlay nav ul li {
  display: block;
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
}

.overlay nav ul li a {
  display: block;
  position: relative;
  color: #FFF;
  font-size: 24px;
  text-decoration: none;
  overflow: hidden;
}

.overlay nav .header-info_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.overlay nav .header-info_phone small {
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.header {
  margin: 15px 0;
  border-top: 1px solid #F8F8F8;
  border-bottom: 1px solid #F8F8F8;
}

.header-logo {
  padding: 15px 0;
}

.header-logo a img {
  width: 200px;
}

.header-menu {
  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;
  height: 100%;
}

.header-menu ul {
  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;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu ul li {
  height: 100%;
}

.header-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #2B2B2B;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header-menu ul li a:hover {
  color: #8C7959;
  background-color: #F8F8F8;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

.header-info_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 30px;
}

.header-info_phone a {
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  color: #2B2B2B;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header-info_phone a:hover {
  color: #8C7959;
}

.header-info_phone small {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.header-info_hamburger {
  display: none;
}

.header-info_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-info_lang select {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background-image: url('../img/arrow-brown.svg'); 
  background-position: right;
  background-repeat: no-repeat;
  font-style: normal;
  font-weight: bold;
}
 
.header-info_lang select:focus {
  outline: none;
  box-shadow: none;
}

.header-info_lang select option {
  display: block;
  margin-right: 5px;
  font-size: 18px;
  color: #2B2B2B;
}

.main {
  position: relative;
  padding: 100px 0;
  background-image: url(../img/main-background.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.main h1 {
  color: #fff;
  font-size: 54px;
}

.main .subtitle {
  width: 500px;
  max-width: 100%;
  margin-bottom: 60px;
}

.main .get-consultation {
  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;
  width: 320px;
  max-width: 100%;
  margin-top: 60px;
  padding: 20px 0;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.main .get-consultation:hover {
  color: #fff;
  background-color: #8C7959;
}

.main-form {
  position: relative;
}

.main-form form {
  position: relative;
  padding: 30px;
  background-color: #fff;
  -webkit-animation: animate 3s linear infinite;
          animation: animate 3s linear infinite;
}

.main-form h4 {
  margin: 0;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #2B2B2B;
}

.main-form .mb-3 {
  margin-bottom: 20px !important;
}

.main-form button.custom-btn {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

.services {
  position: relative;
  padding: 100px 0;
}

.services h2 {
  margin-bottom: 15px;
  color: #2B2B2B;
  text-align: center;
}

.services .subtitle {
  width: 100%;
  margin-bottom: 100px;
  color: #2B2B2B;
  text-align: center;
  opacity: .5;
}

.services-card {
  position: relative;
  display: block;
  padding: 25px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

.services-card:hover {
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.09);
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.services-card i.icon {
  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;
  margin-bottom: 15px;
}

.services-card i.icon img {
  width: 50px;
  height: 50px;
}

.services-card .strong {
  font-family: 'Roboto Slab', serif;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000000;
}

.services-card p {
  margin: 0;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #2B2B2B;
  text-align: center;
  opacity: .7;
}

.services-card .read-more {
  display: block;
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #2B2B2B;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.services-card .read-more:hover {
  color: #8C7959;
}

.services-card .read-more::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.services-card .read-more:hover::after {
  margin-left: 10px;
}

.services-gallery {
  padding-bottom: 100px;
}

.gallery-carousel.slick-slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.services-gallery .gallery-carousel__item {
  margin-left: 15px;
  margin-right: 15px;
}

.services-gallery .gallery-carousel__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.services-gallery .gallery-carousel__item .strong {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  opacity: .5;
}

.services-gallery .services-gallery__arrows {
  margin-top: 50px;
}

.services-gallery .services-gallery__arrows ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-gallery .services-gallery__arrows ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #8C7959;
  border-radius: 50px;
  margin-right: 15px;
}

.services-gallery .services-gallery__arrows ul li:last-child {
  margin-right: 0;
}

.services-gallery .services-gallery__arrows ul li img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.about {
  position: relative;
  padding: 100px 0;
  background-color: #F8F8F8;
}

.about-image {
  height: 610px;
}

.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.about-content h2 {
  color: #2B2B2B;
}

.about-content p {
  margin: 0;
  margin-bottom: 15px;
  color: #2B2B2B;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  opacity: .6;
}

.about-content__count {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding: 30px 60px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about-content__count small {
  position: absolute;
  top: 45%;
  left: -21px;
  display: block;
  padding: 5px;
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-transform: lowercase;
  color: #8C7959;
  background-color: #F8F8F8;
  -webkit-transform: rotate(-90deg) translateY(-50%);
          transform: rotate(-90deg) translateY(-50%);
}

.about-content__count .strong {
  display: block;
  margin-right: 20px;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: #8C7959;
}

.about-content__count ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-content__count ul li {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  opacity: .5;
}

.about-content__count ul li:nth-of-type(1) {
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  text-transform: lowercase;
  color: #8C7959;
  opacity: 1;
}

.advantages {
  position: relative;
  padding: 30px 0;
  background-color: #8C7959;
}

.advantages-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.advantages-card.last {
  border: 0;
}

.advantages-card__icon {
  margin-right: 20px;
}

.advantages-card__content .strong {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
}

.advantages-card__content small {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.warranty {
  position: relative;
  padding: 100px 0 70px 0;
}

.warranty h2 {
  margin-bottom: 15px;
  text-align: center;
}

.warranty .subtitle {
  color: #2B2B2B;
  text-align: center;
  opacity: .5;
}

.warranty-card {
  margin-bottom: 30px;
  background-color: #F8F8F8;
}

.warranty-card__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.warranty-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.warranty-card__content h4 {
  margin: 0;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  color: #8C7959;
}

.warranty-card__content p {
  margin: 0;
  margin-top: 15px;
  font-style: normal;
  font-weight: normal;
  color: #2B2B2B;
  font-size: 16px;
  line-height: 26px;
  opacity: .6;
}

.contact {
  overflow: hidden;
}

.contact-info {
  position: relative;
  padding: 100px 0;
  background-color: #8C7959;
}

.contact-info::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #8C7959;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
}

.contact-info h5 {
  font-family: 'Roboto Slab', serif;
  margin: 0;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 37px;
  color: #FFFFFF;
}

.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info ul li {
  margin-bottom: 15px;
}

.contact-info ul li ul li {
  margin: 0;
}

.contact-info ul li small {
  display: block;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  opacity: .7;
}

.contact-info ul li a {
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}

.contact-info ul li p {
  margin: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.contact-form h5 {
  font-family: 'Roboto Slab', serif;
  margin: 0;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 37px;
  color: #2B2B2B;
}

.contact-form h5 span {
  display: none;
}

.contact-form p {
  margin: 0;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #2B2B2B;
  opacity: .5;
}

.contact-form form .form-control {
  width: 400px;
  max-width: 100%;
  padding: 15px;
  border: 1px solid #8C7959;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer {
  padding: 30px 0;
}

body.page-template-thanks-page .footer {
  margin-top: 0;
}

.footer .footer-logo img {
  width: 200px;
}

.footer-copyright {
  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;
  height: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #2B2B2B;
  opacity: .5;
}

.footer-copyright br {
  display: none;
}

.footer-politic {
  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;
  height: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  opacity: .5;
}

.footer-politic a {
  color: #2B2B2B;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.footer-politic a:hover {
  color: #8C7959;
}

.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 114px);
  padding: 100px 0;
}

.thanks h1 {
  text-align: center;
}

.thanks p.subtitle {
  margin-bottom: 50px;
  color: #2B2B2B;
  text-align: center;
}

.thanks a.custom-btn {
  margin: 0 auto;
  text-decoration: none;
}

.thanks a.custom-btn:hover {
  color: #fff;
}

.consultation-modal {
  width: 786px;
  max-width: 100%;
}

.consultation-modal::after {
  content: "";
  display: block;
  width: 380px;
  max-width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: linear-gradient(105deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  position: absolute;
  top: 0;
  right: 70px;
  bottom: 0;
}

.consultation-modal .angel {
  position: absolute;
  right: 0;
  bottom: 0;
}

.consultation-modal .flowers {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 0;
}

.consultation-modal .contact-form {
  position: relative;
  z-index: 1;
}

.consultation-modal .contact-form p {
  width: 360px;
  max-width: 100%;
}

.consultation-modal .contact-form form .form-control {
  border: 1px solid #EDEDED;
  background: rgba(255,255,255,.6);
}

.privacy-policy {
  width: 576px;
  max-width: 100%;
}

.privacy-policy p {
  margin: 0;
  margin-bottom: 15px;
}

.privacy-policy p:last-child {
  margin: 0;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), 0 0 0 0 rgba(255, 255, 255, .7);
  }

  40% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, .0), 0 0 0 0 rgba(255, 255, 255, .7);
  }

  80% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, .0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, .0);
  }
}

@media screen and (max-width: 1200px) {
  .header-menu ul li {
    height: 100%;
  }
  .header-menu ul li a {
    padding: 0 5px;
    font-size: 15px;
  }
  .main h1 {
    font-size: 44px;
    line-height: 54px;
  }
  .main .subtitle {
    width: 450px;
    font-size: 16px;
    line-height: 26px;
  }
  .main .get-consultation {
    width: 300px;
    font-size: 16px;
  }
  .main-form h4 {
    font-size: 16px;
  }
  .services-card {
    padding: 25px 15px;
  }
  .services-card .strong {
    font-size: 16px;
    line-height: 26px;
  }
  .services-card p {
    font-size: 14px;
    line-height: 24px;
  }
  .about-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .about-content__count {
    margin-top: 15px;
    padding: 20px 60px;
  }
  .about-content__count::before {
    top: auto;
  }
  .about-content__count .strong {
    font-size: 70px;
  }
  .about-content__count ul li {
    font-size: 16px;
  }
  .about-content__count ul li:nth-of-type(1) {
    font-size: 25px;
    line-height: 1;
  }
  .advantages-card__content .strong {
    font-size: 18px;
  }
  .advantages-card__content small {
    font-size: 14px;
  }
  .warranty-card__content h4 {
    font-size: 24px;
  }
  .warranty-card__content p {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-info ul li {
    margin-bottom: 15px;
  }
  .contact-info ul li a {
    font-size: 18px;
  }
  .contact-info ul li p {
    font-size: 18px;
  }
  .contact-form h5 {
    font-size: 24px;
    line-height: 34px;
  }
  .contact-form p {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .title {
    font-size: 28px;
  }
  .subtitle {
    font-size: 16px;
  }
  .header-logo {
    padding: 0;
  }
  .header-menu {
    display: none;
  }
  .header-info_phone {
    display: none;
  }
  .header-info_hamburger {
    display: block;
    margin-right: 15px;
  }
  .header-info_hamburger .button_container {
    position: relative;
    height: 21px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
  }
  .header-info_hamburger .button_container.active .top {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
            transform: translateY(9px) translateX(0) rotate(45deg);
    background: #FFF;
  }
  .header-info_hamburger .button_container.active .middle {
    opacity: 0;
    background: #FFF;
  }
  .header-info_hamburger .button_container.active .bottom {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
            transform: translateY(-9px) translateX(0) rotate(-45deg);
    background: #FFF;
  }
  .header-info_hamburger .button_container span {
    background: #8C7959;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
  }
  .header-info_hamburger .button_container span:nth-of-type(2) {
    top: 9px;
  }
  .header-info_hamburger .button_container span:nth-of-type(3) {
    top: 18px;
  }
  .main {
    padding: 80px 0;
  }
  .main h1 {
    font-size: 40px;
  }
  .main .subtitle {
    margin-bottom: 30px;
  }
  .main .get-consultation {
    width: 300px;
	margin-top: 0;
    font-size: 16px;
  }
  .main .main-content {
    margin-bottom: 60px;
  }
  .main-form h4 {
    font-size: 16px;
  }
  .services {
    padding: 50px 0;
  }
  .services .subtitle {
    margin-bottom: 50px;
  }
  .services-card {
    margin-bottom: 30px;
  }
  .about {
    padding: 50px 0;
  }
  .advantages-card {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages-card__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .advantages-card__icon img {
    width: 40px;
    height: 40px;
  }
  .advantages-card__content .strong {
    font-size: 16px;
  }
  .advantages-card__content small {
    font-size: 14px;
  }
  .warranty .subtitle {
    margin-bottom: 50px;
  }
  .warranty-card__image {
    height: 100%;
  }
  .warranty-card__content {
    padding: 30px 0;
  }
  .contact-info {
    padding: 50px 0;
  }
  .contact-info ul li {
    margin-bottom: 15px;
  }
  .contact-info ul li a {
    font-size: 16px;
  }
  .contact-info ul li p {
    font-size: 16px;
  }
  .consultation-modal .contact-form {
    text-align: left;
  }
  .contact-form h5 {
    font-size: 21px;
    line-height: 31px;
  }
  .contact-form p {
    font-size: 14px;
  }
  .footer {
    padding: 15px 0;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-copyright {
    height: auto;
    margin: 15px 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .services-gallery {
    padding-bottom: 50px;
  }
  .services-gallery .gallery-carousel__item img {
    height: 250px;
  }
  .about-content h2 {
    text-align: center;
  }
  .about-content p {
    text-align: center;
  }
  .about-content__count {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .advantages {
    padding-bottom: 0;
  }
  .advantages-card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    border: 0;
  }
  .advantages-card__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .advantages-card__icon img {
    width: 40px;
    height: 40px;
  }
  .advantages-card__content {
    text-align: center;
  }
  .advantages-card__content .strong {
    font-size: 16px;
  }
  .advantages-card__content small {
    font-size: 14px;
  }
  .warranty {
    padding: 100px 0 30px 0;	
  }
  .warranty .subtitle {
    margin-bottom: 50px;
  }
  .warranty-card__image {
    height: 300px;
  }
  .warranty-card__content {
    text-align: center;
    padding: 30px;
  }
  .contact {
    padding-bottom: 30px;
  }
  .contact .container .row {
    flex-direction: column-reverse;
  }
  .contact .contact-form form .form-control {
    margin: 0 auto;
  }
  .contact-info {
	margin-top: 30px;
    padding: 50px 0;
    text-align: center;
  }
  .contact-info::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #8C7959;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100%;
  }
  .contact-form {
    margin-top: 0;
    text-align: center;
  }
  .contact-form h5 span {
    display: none;
  }
  .contact-form button.custom-btn {
    display: inline-block;
    margin: 15px auto 0;
  }
  .consultation-modal {
    width: auto;
  }
  .consultation-modal .contact-form {
    margin: 0;
  }
  .consultation-modal .contact-form button.custom-btn {
    width: 100%;	
  }
  .consultation-modal .angel,
  .consultation-modal .flowers {
    display: none;  
  }
  .consultation-modal::after {
    display: none;  
  }
}

@media screen and (max-width: 576px) {
  .services-gallery .services-gallery__arrows ul li {
    width: 50px;
    height: 50px;
  }
  .services-gallery .services-gallery__arrows ul li img {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 375px) {
  .about-content__count {
    padding: 20px 30px;
  }
  .warranty {
    padding: 50px 0 20px 0;
  }
  .warranty-card__image {
    height: 100%;
  }
  .warranty-card__content {
    padding: 20px;
  }
  .warranty-card__content h4 {
    font-size: 18px;
  }
  .contact-form button.custom-btn {
    width: 100%;
  }
  .footer-copyright {
    height: auto;
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
  }
  .footer-copyright br {
    display: block;
  }
}

@media screen and (max-width: 320px) {
  .main {
    padding: 80px 0;
  }
  .main h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .main .get-consultation {
    width: 300px;
    font-size: 16px;
  }
  .main-form h4 {
    font-size: 16px;
  }
}
/*# sourceMappingURL=main.css.map */