@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,30&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:active,
:focus {
  outline: none;
}
a:active,
a:focus {
  outline: none;
}
aside,
footer,
header,
nav {
  display: block;
}
body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
button,
input,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
.form__title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 480px) {
  .form__title {
    font-size: 22px;
  }
}
.form__item {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}
.form__input {
  margin-top: 10px;
  border: solid 1px #000;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 18px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.form__input:focus {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.form__input._error {
  -webkit-box-shadow: 0 0 0 1px red;
  box-shadow: 0 0 0 1px red;
}
.form__button {
  width: 50%;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  background-color: #468966;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .form__button:hover {
    background-color: #025908;
  }
}
@media (max-width: 480px) {
  .form__button {
    width: 35%;
    font-size: 12px;
    min-height: 40px;
    border-radius: 10px;
  }
}
.form__personal-data {
  font-size: 12px;
  margin-bottom: 15px;
}
.form__personal-data_link {
  color: #468966;
}
textarea.form__input {
  min-height: 120px;
  resize: vertical;
  padding: 20px;
  margin-bottom: 20px;
}
textarea.form__input._error {
  -webkit-box-shadow: 0 0 0 1px red;
  box-shadow: 0 0 0 1px red;
}
.checkbox._error .checkbox__label:before {
  -webkit-box-shadow: 0 0 0 1px red;
  box-shadow: 0 0 0 1px red;
}
.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__label:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.checkbox__label {
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  height: 18px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 4px;
}
.checkbox__label:after {
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #468966;
  border-radius: 4px;
  -webkit-transform: scale(0);
  transform: scale(0);
}
body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}
body.lock {
  overflow: hidden;
}
.container {
  min-width: 320px;
  max-width: 1200px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
.uppercase {
  text-transform: uppercase;
}
.white {
  color: #fff;
}
.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.hidden {
  display: none;
}
.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.ibg img {
  display: none;
}
.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
.title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.row {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 480px) {
  .row {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
}
@media (hover: hover) and (pointer: fine) {
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0%;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .overlay:hover {
    opacity: 70%;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
  }
}
.gallery {
  padding: 10px 0;
}
.star {
  color: red;
}
.top-bar {
  background-color: #8e8e8e;
}
.top-bar__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 0 6px;
}
@media screen and (max-width: 991px) {
  .top-bar__row {
    padding: 5px 0 5px;
  }
}
.top-bar__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.top-bar__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 991px) {
  .top-bar__language {
    font-size: 14px;
  }
}
.top-bar__language .current-lang a {
  display: none;
}
.top-bar__language a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .top-bar__language a {
    font-size: 14px;
  }
}
.social__link {
  font-size: 18px;
}
.social__link:nth-child(n + 2) {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .social__link:nth-child(n + 2) {
    margin-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .social__link {
    font-size: 16px;
  }
}
.social__link_viber {
  margin-top: 1px;
}
.active:after {
  width: 100%;
}
.banner__body {
  height: 500px;
}
@media (min-width: 1921px) {
  .banner__body {
    height: 600px;
  }
}
@media (max-width: 480px) {
  .banner__body {
    height: 250px;
  }
}
@media (min-width: 481px) and (max-width: 667px) {
  .banner__body {
    height: 300px;
  }
}
@media (min-width: 668px) and (max-width: 992px) {
  .banner__body {
    height: 400px;
  }
}
@media (min-width: 1180px) and (max-width: 1920px) {
  .skip-lazy {
    max-height: 550px;
  }
}
.header {
  background-color: #fff;
  z-index: 50;
}
.header.fixed {
  background-color: #d9d9d9;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: space-between;
  justify-self: space-between;
  padding: 10px 0;
}
.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  z-index: 3;
}
.header__image {
  display: block;
  max-width: 320px;
  max-height: 22px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .header__image {
    max-width: 288px;
    max-height: 20px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .header__image {
    max-width: 240px;
    max-height: 17px;
  }
}
.header__menu {
  margin-left: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #c0c0c0;
    padding: 85px 10px 20px 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__menu.active {
    top: 0;
  }
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__list {
    display: block;
  }
}
.header__link {
  color: #000;
  font-size: 1rem;
  line-height: 1.5rem;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:after {
    display: block;
    content: "";
    background-color: #000;
    height: 1.6px;
    width: 0%;
    left: 50%;
    bottom: 1px;
    position: absolute;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .header__link {
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header__link {
    font-size: 0.875rem;
  }
}
.header__link:focus:after,
.header__link:hover:after {
  width: 100%;
}
.header__burger {
  display: none;
}
@media (max-width: 767px) {
  .header__burger {
    display: block;
    position: relative;
    margin-left: auto;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.header__burger:after,
.header__burger:before {
  content: "";
  background-color: red;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger_line {
  position: absolute;
  background-color: red;
  left: 0;
  width: 100%;
  height: 2px;
  top: 9px;
}
@media (max-width: 767px) {
  .header__burger_line.active {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}
.list__item:nth-child(n + 2) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .list__item:nth-child(n + 2) {
    margin: 15px 0 0;
  }
}
@media (min-width: 768px) {
  .list__item ._link-line._active-menu:after {
    width: 100%;
  }
}
.active:after {
  width: 100%;
}
/* .portfolio {
  padding: 80px 0;
}
@media (max-width: 480px) {
  .portfolio {
    padding: 10px 0;
  }
} */
.portfolio__prewiev {
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}
.portfolio__overlay {
  border-radius: 15px;
}
.overlay__title {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .overlay__title {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
  }
}
.prewiev__image {
  position: relative;
  padding: 0 0 85% 0;
}
.prewiev__title {
  text-align: center;
  padding-top: 15px;
  font-size: 18px;
}
@media (max-width: 480px) {
  .prewiev__title {
    font-size: 16px;
  }
}
.about {
  padding: 80px 0;
}
@media (max-width: 480px) {
  .about {
    margin: 0 auto;
    padding: 10px 0;
  }
}
.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .about__photo {
    text-align: center;
  }
}
.about__image {
  max-width: 300px;
  padding: 0 15px 15px 0;
}
@media (min-width: 481px) {
  .about__image {
    float: left;
  }
}
@media (max-width: 480px) {
  .about__image {
    clear: both;
  }
}
.about__text {
  line-height: 2;
  font-size: 18px;
}
.about__detail {
  cursor: pointer;
}
.contacts {
  padding: 80px 0;
  background-color: #f1f1f1;
  color: #000;
}
@media (max-width: 480px) {
  .contacts {
    padding: 15px 0 25px;
  }
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contacts__left {
  margin-top: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
@media (max-width: 480px) {
  .contacts__left {
    margin-right: auto;
    margin-top: 15px;
  }
}
.contacts__name {
  font-size: 20px;
}
@media (max-width: 480px) {
  .contacts__name {
    font-size: 18px;
  }
}
.contacts__email {
  font-size: 18px;
  margin: 20px 0;
}
@media (max-width: 480px) {
  .contacts__email {
    font-size: 16px;
    margin: 15px 0;
  }
}
@media (max-width: 480px) {
  .contacts__phone {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.contacts__messangers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .contacts__messangers {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media (min-width: 767px) {
  .contacts__messangers {
    gap: 30px;
  }
}
.contacts__link {
  color: #000;
}
.contacts__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .contacts__right {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 667px) {
  .contacts__right {
    margin-top: 25px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .contacts__form {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .contacts__form {
    max-width: 425px;
  }
}
.messengers__facebook:before {
  font-size: 28px;
  border-radius: 4px;
  padding: 6px 4px 5px 10px;
  background-color: #4267b2;
  color: #fff;
}
.messengers__instagram {
  font-size: 30px;
}
.messengers__instagram:before {
  padding: 4px;
  border-radius: 9px;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#405de6),
    color-stop(#5851db),
    color-stop(#833ab4),
    color-stop(#c13584),
    color-stop(#e1306c),
    color-stop(#fd1d1d),
    color-stop(#f56040),
    color-stop(#f77737),
    color-stop(#fcaf45),
    to(#ffdc80)
  );
  background: linear-gradient(to bottom right, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
}
.messengers__telegram {
  font-size: 36px;
}
.messengers__telegram:before {
  color: #229ed9;
}
.messengers__viber {
  font-size: 36px;
}
.messengers__viber:before {
  color: #7360f2;
}
.contact {
  font-size: 18px;
}
.footer {
  background-color: #8e8e8e;
  padding: 5px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 10px;
  }
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 14px;
    text-align: center;
  }
}
.footer__text {
  color: #fff;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer__social {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 10px;
  }
}
