@import 'reset.css';
@import 'modal.css';
body, input {
  font-family: "Museo Cyrl";
  font-weight: 300;
}

body {
  line-height: 1.2;
}

a {
  color: black;
}

.wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  cursor: pointer;
}

.btn-call {
  padding: 22px 37px;
  background-color: #2A6B6B;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: 0.5s;
}
.btn-call:hover {
  background-color: #00B2B2;
}

header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 15px 10px 15px;
}
header .city-list {
  position: relative;
  color: #507d30;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
}
header .search-lists {
  background: white;
  display: none;
  position: absolute;
  width: 200px;
  left: 6px;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 9px 36.5px 1.5px rgba(100, 111, 122, 0.13);
  margin-top: 7px;
}
header .search-city {
  width: 100%;
  border: 1px solid rgba(224, 224, 224, 1);
  padding: 5px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
header .city-list ul {
  max-height: 255px;
  overflow: auto;
}
header .all-cities {
  background: #507d30;
  color: white;
  font-size: 14px;
  padding: 10px 5px;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}
header .all-cities:hover {
  background: #5f9439;
}
header .city-list ul li {
  padding: 5px 0;
}
.city-item.hidden {
  display: none;
}
header .city-list ul li a {
  color: #507d30;
  transition: all 0.4s;
}
header .city-list ul li a:hover {
  color: black;
}
header .city-list span {
  display: flex;
  align-items: center;
}
header .city-list span:before {
  content: "";
  width: 11px;
  height: 15px;
  background: url(../images/icons/point.webp) no-repeat center;
  display: inline-block;
  margin-right: 10px;
}
header .city-list span:after {
  content: "";
  width: 7px;
  height: 4px;
  background: url(../images/icons/arrow.webp) no-repeat center;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.4s;
}
header .city-list span.active:after {
  transform: rotate(-180deg);
}
header .time {
  color: black;
  font-size: 15px;
  font-weight: 300;
  display: flex;
}
header .time:before {
  content: "";
  width: 12px;
  height: 13px;
  background: url(../images/icons/time.webp) no-repeat center;
  display: inline-block;
  margin-right: 13px;
}
header .phone {
  background: url(../images/icons/phone.webp) no-repeat top left;
  padding-left: 30px;
}
header .phone a {
  color: black;
  font-size: 17px;
  font-weight: 700;
  display: block;
}
header.fixed {
  box-shadow: 0 9px 36.5px 1.5px rgba(100, 111, 122, 0.06);
}
.custom-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.burger {
  position: relative;
  width: 30px;
  height: 24px;
  display: none;
}
.burger span {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: opacity 0.3s ease-out;
}
.burger:after, .burger:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #000;
  transition: transform 0.3s;
}
.burger:after {
  top: 22px;
  transform: rotate(0deg);
}

.burger.active span {
  opacity: 0;
}

.burger.active:before {
  transform: translate(-1px, 11px) rotate(45deg);
}

.burger.active:after {
  transform: translate(-1px, -11px) rotate(-45deg);
}

.admin-bar header {
  top: 32px;
}

.frist-screen {
  width: 100%;
  min-height: 651px;
  background: url(../images/bg-first.webp) no-repeat center top;
  padding: 129px 0 50px;
}
.frist-screen h1 {
  color: white;
  font-size: 37px;
  font-weight: 600;
  margin-bottom: 20px;
}
.frist-screen .second-text {
  color: white;
  font-size: 22px;
  margin-bottom: 47px;
}
.frist-screen .call {
  padding: 30.5px 73.8px;
  background: #2A6B6B;
  border-radius: 41px;
  box-shadow: 6.9px 11px 18px rgba(0, 0, 0, 0.48);
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: 0.5s;
}
.frist-screen .call:hover {
  background: #007F7F;
}
.form-right {
  width: 364px;
  background-color: #007F7F;
  border-radius: 12px;
  padding: 35px 50px;

  position: absolute;
  top: -2px;
  right: 7px;
  text-align: center;
}
.form-right:before {
  content: "";
  width: 259px;
  height: 72px;
  background: url(../images/form-arrow.webp) no-repeat center;

  position: absolute;
  top: 227px;
  left: -372px;
}
.form-right .form-title {
  color: white;
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 33px;
}
.form-right .form-text {
  color: white;
  font-size: 19px;
  margin-bottom: 39px;
}
.form-right .btn-specialist {
  width: 100%;
  height: 68px;
  background-color: #2A6B6B;
  border-radius: 34px;

  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 68px;
}
.form-right .text-agree {
  color: white;
  font-size: 13px;
  margin-top: 30px;
}
.form-right .text-agree span {
  text-decoration: underline;
  cursor: pointer;
}

.services {
  padding: 60px 0 57px;
}

.title {
  color: #62534e;
  font-size: 25px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 53px;
}
.title span {
  font-weight: 600;
}

.services-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.services-block .service-item {
  width: 19.8%;
  padding: 7.5px;
}
.services-block .service-item .service-content {
  position: relative;
  min-height: 235px;
  border: 1px solid #A0A0A0;
  border-radius: 9px;
  padding: 37px 21px;
  transition: 0.5s;
}
.service-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.services-block .service-item .service-content .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 32px;
}
.services-block .service-item .service-content .service-icon img {
  display: block;
  margin: 0 auto;
  transition: 0.5s;
}
.services-block .service-item .service-content h4 {
  color: #404040;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  min-height: 48px;
}
.services-block .service-item .service-content h4 a {
  color: #404040;
}
.services-block .service-item .service-content:hover {
  background: #007F7F;
}
.services-block .service-item .service-content:hover img {
  filter: brightness(1) invert(0);
}
.services-block .service-item .service-content:hover h4 {
  color: #000000;
}

.advantages-block {
  background: url(../images/bg-advantages.webp) no-repeat bottom 20px right;
  max-width: 1030px;
  margin: 95px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.advantages-block .advantage-item {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 36px;
}
.advantages-block .advantage-item .advantage-icon {
  margin-bottom: 20px;
}
.advantages-block .advantage-item .advantage-icon img {
  margin: 0 auto;
  display: block;
}
.advantages-block .advantage-item h4 {
  color: #0a0a0a;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 11px;
}
.advantages-block .advantage-item p {
  color: #0a0a0a;
  font-size: 17px;
  font-weight: 200;
  text-align: center;
}

.portfolio {
  padding: 48px 0;
}
.portfolio .portfolio-wrap {
  position: relative;
}
.portfolio .title {
  margin-bottom: 87px;
}
.portfolio .portfolio-title {
  color: #62534e;
  font-size: 25px;
  font-weight: 200;
  margin-bottom: 35px;
}
.portfolio .portfolio-arrow {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: -10px;
  right: 0;
}
.portfolio .portfolio-slider {
  margin-left: -32.5px;
  margin-right: -32.5px;
  margin-bottom: 55px;
}
.portfolio .portfolio-slider .portfolio-item {
  position: relative;
  width: 374px;
  border-radius: 28px;
  margin: 0 32.5px;
  overflow: hidden;
}
.portfolio .portfolio-slider .portfolio-item img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  display: block;
}
.portfolio .portfolio-slider .portfolio-item .portfolio-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  transition: all 0.4s;
}
.portfolio .portfolio-slider .portfolio-item .play, .portfolio .portfolio-slider .portfolio-item .zoom {
  width: 53px;
  height: 53px;
  background: url(../images/icons/play.webp) no-repeat center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.4s;
}
.portfolio .portfolio-slider .portfolio-item .zoom {
  width: 92px;
  height: 94px;
  background: url(../images/icons/zoom.webp) no-repeat center;
}
.portfolio .portfolio-slider .portfolio-item:hover .portfolio-link {
  opacity: 0;
}
.portfolio .portfolio-slider .portfolio-item:hover .play, .portfolio .portfolio-slider .portfolio-item:hover .zoom {
  opacity: 1;
}
.portfolio .gallery .portfolio-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.portfolio .gallery .portfolio-slide .portfolio-item {
  width: 28% !important;
  margin-bottom: 55px;
}
.portfolio .gallery .slick-dots {
  margin-top: -19px;
}
.portfolio .slick-prev {
  margin-right: 20px;
}

.slick-arrow {
  position: relative;
  width: 47px;
  height: 47px;
  background: white;
  border-radius: 50%;
  border: 1px solid #507d30;
  padding: 0;
  margin: 0;
  font-size: 0;
  z-index: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.slick-arrow:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-top: 3px solid #507d30;
  border-right: 3px solid #507d30;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.slick-arrow.slick-prev:before {
  left: 16px;
  transform: rotate(225deg);
}
.slick-arrow:hover {
  background: #507d30;
}
.slick-arrow:hover:before {
  border-color: white;
}

.slick-dots {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  z-index: 1;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #e7e7e7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li.slick-active button {
  background: #507d30;
}

.form {
  min-height: 367px;
  position: relative;
  border: 10px solid #e9e9e9;
  padding: 70px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 177px 0 25px;
}
.form .form-title {
  color: #393939;
  font-size: 19px;
  font-weight: 600;
  line-height: 29px;
}
.form .form-right {
  max-width: 255px;
  text-align: center;
  margin-right: 16px;
}
.form .form-right .form-text {
  color: #393939;
  font-size: 15px;
  margin-top: 23px;
}
.form .form-right .form-phone {
  margin-top: 26px;
}
.form .form-right .form-phone a {
  color: black;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}
.form:before {
  content: "";
  width: 343px;
  height: 439px;
  background: url(../../../../img/manager.png) no-repeat center;
  position: absolute;
  right: 400px;
  bottom: -2px;
}

.about {
  background: #f9f9f9;
  padding: 51px 0;
}
.about .wrapper {
  display: flex;
  justify-content: space-between;
}
.about .about-text {
  max-width: 720px;
}

.entry-content strong {
  font-size: 17px;
  font-weight: 600;
}
.entry-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.entry-content ol {
  list-style-type: decimal;
  margin-left: 17px;
}
.entry-content li {
  margin-bottom: 15px;
}
.entry-content blockquote {
  font-weight: bold;
  font-style: italic;
}

.post-thumbnail {
  position: relative;
  min-height: 436px;
  padding: 140px 0 40px;
  background-size: cover !important;
  margin-bottom: 20px;
}
.post-thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(98, 83, 78, 0.6);
}
.post-thumbnail .post-title {
  max-width: 670px;
  color: white;
  font-size: 37px;
  font-weight: 600;
  margin-bottom: 50px;
}
.post-thumbnail .btn-call {
  background: #507d30;
}

.single .entry-content {
  margin-bottom: 60px;
}

.single .form {
  margin-bottom: 80px;
}

.single .footer-head {
  background: #fafbf9;
}

.btn-call.green {
  background: #507d30;
  display: table;
  margin: 0 auto 85px;
  transition: 0.5s;
}
.btn-call.green:hover {
  background: #5f9439;
}

footer, footer a {
  color: #908b8b;
  font-size: 15px;
}
footer .footer-logo {
  display: flex;
  align-items: center;
}
footer .footer-logo span {
  margin-left: 35px;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
}
footer .footer-head {
  padding: 30px 0;
}
footer .socials {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
footer .socials a {
  width: 35px;
  height: 35px;
  background: #0080ff;
  border-radius: 50%;
  margin: 0 2.5px;
  display: block;
  transition: all 0.4s;
}
footer .socials a:hover {
  opacity: 0.7;
}
footer .socials .vk {
  background: #0080ff url(../images/icons/vk.webp) no-repeat center;
}
footer .socials .inst {
  background: #ff0078 url(../images/icons/inst.webp) no-repeat center;
}
footer .socials .what {
  background: #24c100 url(../images/icons/what.webp) no-repeat center;
}
footer .footer-item.right {
  max-width: 216px;
  text-align: right;
}
footer .footer-address {
  max-width: 345px;
  display: flex;
  margin-bottom: 20px;
}
footer .footer-address:before {
  content: "";
  width: 11px;
  height: 15px;
  background: url(../images/icons/point.webp) no-repeat center;
  display: inline-block;
  margin-right: 10px;
}
footer .footer-email:before {
  content: "";
  width: 16px;
  height: 11px;
  background: url(../images/icons/email.webp) no-repeat center;
  display: inline-block;
  margin-right: 10px;
}
footer .footer-phone {
  background: url(../images/icons/phone.webp) no-repeat top left;
  padding-left: 30px;
  display: table;
  margin: 28px auto 0;
}
footer .footer-phone a {
  color: black;
  font-size: 17px;
  font-weight: 700;
  display: table;
}
footer .footer-copyright {
  border-top: 1px solid #eeeeee;
  padding: 20px 0;
}
footer .footer-copyright .copyright {
  color: black;
}
footer .footer-copyright .privacy {
  text-decoration: underline;
  cursor: pointer;
}

header .phone, footer .footer-phone {
  position: relative;
  display: flex;
  align-items: center;
}
a.whatsapp {
  height: 25px;
  display: block !important;
  background: url(../images/whatsapp.svg) no-repeat center left;
  margin-right: 15px;
  position: absolute;
  top: 26px;
  left: 0;
  font-size: 14px !important;
  font-weight: 300 !important;
  width: 250px;
  padding-left: 35px;
  text-align: left;
}

.flex-phone .whatsapp {
  position: static;
  margin-top: 15px;
}
.slog {
  position: absolute;
  width: 278px;
  top: 30px;
  left: 0;
  font-size: 14px;
}