@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;900&display=swap");
body {
  overflow: auto;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar-brand {
  display: none;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-link, .nav-phone, .nav-adress {
  padding: 16px 16px;
}

.nav-link a, .nav-phone a, .nav-adress a {
  font-weight: 200;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.nav-phone {
  margin-left: 40px;
}

.nav-phone a {
  color: #00FF6D;
  font-weight: 500;
}

.nav-adress a {
  font-weight: 500;
}

#services, #works, #contacts {
  scroll-margin-top: 85px;
}

.card, .owl-carousel .owl-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 365px;
  width: 250px !important;
  padding: 15px;
  margin: 20px;
  background-color: #fff;
  border-radius: 25px;
  border: none;
  -webkit-box-shadow: -0.4rem 0 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: -0.4rem 0 0.5rem rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  position: relative;
  /*   margin-left: -50px; */
}

.card:first-child, .owl-carousel .owl-item:first-child {
  margin-left: 10px;
}

.card:not(:first-child), .owl-carousel .owl-item:not(:first-child) {
  margin-left: -35px;
}

.card:last-child .circle .icon svg, .owl-carousel .owl-item:last-child .circle .icon svg {
  left: 32px;
}

.card:hover, .owl-carousel .owl-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.card:hover ~ .card, .owl-carousel .owl-item:hover ~ .card {
  position: relative;
  left: 0px;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.card:hover .filledbar, .owl-carousel .owl-item:hover .filledbar {
  width: 120px;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.card:hover .stroke, .owl-carousel .owl-item:hover .stroke {
  stroke-dashoffset: 100;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.card-button {
  outline: none;
  border: 1px solid #000;
  color: black;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.card-button:hover {
  background: #000;
  color: #fff;
}

.card__bottom p {
  font-size: 18px;
  margin-left: 15px;
  font-weight: 500;
}

.title {
  margin-top: 15px;
  color: #000;
  font-weight: 400;
  font-size: 1.2em;
  left: 20px;
  top: 15px;
}

.title::after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 10px 5px;
  display: block;
  background: #000;
}

.subtitle {
  color: #5f5f5f;
  font-size: 1em;
  line-height: 20px;
  font-weight: 300;
}

.bar {
  position: absolute;
  top: 100px;
  left: 20px;
  height: 5px;
  width: 150px;
}

.emptybar {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}

.filledbar {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 0px;
  height: 100%;
  background: #009ad9;
  background: -webkit-gradient(linear, left top, right top, from(#009ad9), color-stop(65%, #d99300), to(#ffba00));
  background: linear-gradient(90deg, #009ad9 0%, #d99300 65%, #ffba00 100%);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.circle .icon svg {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 25px;
  left: 25px;
  fill: #000;
}

.circle {
  position: relative;
}

.stroke {
  stroke: black;
  stroke-dasharray: 390;
  stroke-dashoffset: 390;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.circle svg {
  fill: #ff4d4d;
  stroke-width: 2px;
}

.main-screen {
  background-image: url("../img/bg.jpg");
  background-size: cover;
  width: 100%;
  height: 650px;
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

.main-screen::before {
  content: '';
  background-color: rgba(49, 49, 49, 0.44);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.main-screen .main-screen-items {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 500px;
}

.main-screen .row {
  padding: 30px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
}

.main-screen .row h1 {
  font-weight: 900;
  font-size: 55px;
}

.main-screen .row h2 {
  font-size: 50px;
}

.main-screen .row img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative !important;
}

.services {
  margin: 40px 20px;
}

.services .service {
  height: 340px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  margin: 15px;
}

.services .service:first-of-type {
  background: url(/img/podveska.jpg);
  background-size: cover;
}

.services .service .overlay {
  position: absolute;
  bottom: 0;
  font-size: 24px;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.services .service .overlay .more {
  font-size: 18px;
  display: none;
}

.services .service .overlay .more p {
  margin: 0;
  color: #fff;
}

.services .service .overlay a {
  color: #fff;
}

.heading {
  font-weight: 900;
  font-size: 45px;
  margin-bottom: 10px;
}

.request {
  background: url("/img/zapchasti.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 50px;
  padding: 45px 0;
}

.request::before {
  content: '';
  background-color: rgba(49, 49, 49, 0.44);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.request-heading {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  z-index: 100;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.request-heading span {
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}

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

.form-input input {
  background: rgba(231, 231, 231, 0.29);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 6px 16px;
  border-radius: 10px;
  font-weight: 200;
  margin-right: 15px;
  outline: none;
}

.form-submit button {
  padding: 6px 16px;
  min-width: 200px;
  font-size: 22px;
  font-weight: 200;
  color: #fff;
  border-radius: 10px;
  background: #2FCF73;
  height: 100%;
  border: 2px solid transparent;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.form-submit button:hover {
  border: 2px solid #2FCF73;
  background: transparent;
  color: #fff;
  -webkit-box-shadow: 0px 0px 20px #2fcf73;
          box-shadow: 0px 0px 20px #2fcf73;
}

.work-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
}

.work-item {
  position: relative;
  overflow: hidden;
  margin: 10px;
  width: 25%;
  height: 250px;
  color: #fff;
  text-align: left;
  line-height: 1.4em;
  font-size: 16px;
  border-radius: 10px;
}

.work-item:first-child {
  background: url("/img/kolodki.jpg");
  background-size: cover;
}

.work-item:nth-child(2) {
  background: url("/img/maslo.jpg");
  background-size: cover;
}

.work-item:nth-child(3) {
  background: url("/img/diagnostika1.jpg");
  background-size: cover;
}

.work-item:nth-child(4) {
  background: url("/img/podveska.jpg");
  background-size: cover;
}

.work-item * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.work-item img {
  max-width: 100%;
  vertical-align: top;
}

.work-item figcaption {
  position: absolute;
  top: calc(70%);
  width: 100%;
  background-color: rgba(45, 45, 45, 0.9);
  padding: 12px 25px 45px;
  position: absolute;
  content: '';
  z-index: 2;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 130px;
}

.work-item h3, .work-item p {
  margin: 0 0 7px;
}

.work-item h3 {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2em;
}

.work-item p {
  letter-spacing: 1px;
  opacity: 0.9;
}

.work-item a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.work-item:hover figcaption, .work-item.hover figcaption {
  top: 120px;
}

.map {
  margin-top: 40px;
}

footer {
  background: #2D2D2D;
  padding: 20px;
  text-align: center;
  color: #b0b0b0;
}

footer img {
  max-height: 70px;
}

.contacts-item {
  color: black;
  margin-bottom: 15px;
}

.contacts-item svg {
  height: 55px;
  width: 55px;
  margin-right: 15px;
}

.contacts-item a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.contacts-item a:hover {
  text-decoration: underline;
}

.contacts-item p {
  font-size: 18px;
  display: inline;
}

@media screen and (max-width: 576px) {
  .cards__container {
    -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;
  }
  .card, .owl-carousel .owl-item {
    height: 360px;
    width: 300px;
    margin: 20px 0;
    margin-left: 0;
  }
  .card:not(:first-child), .owl-carousel .owl-item:not(:first-child) {
    margin-left: 5px;
  }
  .main-screen-items img {
    max-height: 100px;
    margin-bottom: 10px;
  }
  .main-screen {
    margin-top: 0;
    background-position: right;
    height: 470px;
  }
  .main-screen .main-screen-items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-screen .row h1 {
    font-size: 35px;
    margin-bottom: 10px;
  }
  .main-screen .row h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .work-items {
    -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;
  }
  .work-item {
    width: 100%;
  }
  .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .request-heading {
    font-size: 30px;
  }
  .request-heading span {
    font-size: 28px;
  }
  .request {
    height: auto;
    line-height: normal;
  }
  .form-input input {
    margin-bottom: 10px;
  }
  .heading {
    font-size: 30px;
  }
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar-brand img {
    height: 60px;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .nav-phone {
    margin-left: 0;
  }
  .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .nav-link, .nav-phone, .nav-adress {
    padding: 10px 10px 10px 0;
  }
}
/*# sourceMappingURL=main.css.map */