.section__home {
  position: relative;
  background-image: url(../images/section-home-patern.png), linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../images/section-home-bg.jpg);
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: left 0px top 0px, left 0px top 0px, center center;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, scroll;
  background-color: rgb(0, 0, 0);
  padding: 200px 0 100px 0;
}

@media (min-width: 62.06125em) {
  .home__container {
    display: grid;
    grid-template-columns: 40% auto;
  }
}
@media (min-width: 62.06125em) {
  .home__column:first-child {
    order: 1;
  }
}
.home__title {
  display: block;
}
.home__title-first {
  display: block;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 10px;
}
@media (min-width: 48.06125em) {
  .home__title-first {
    font-size: 60px;
  }
}
.home__title-second {
  display: block;
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary-color);
  padding: 10px 10px;
  border-radius: 15px;
}
@media (min-width: 48.06125em) {
  .home__title-second {
    font-size: 80px;
  }
}
.home__title-third {
  display: block;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 10px;
}
@media (min-width: 48.06125em) {
  .home__title-third {
    font-size: 40px;
  }
}
.home__title-fourth {
  display: block;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  padding: 0 10px;
}
.home__list {
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  gap: 50px;
  margin: 50px 0 0 0;
}
@media (min-width: 48.06125em) {
  .home__list {
    grid-template-columns: 1fr 1fr;
    margin: 50px 0 0 0;
  }
}
@media (min-width: 62.06125em) {
  .home__list {
    grid-template-columns: auto;
    justify-items: start;
    margin: 0;
  }
}
.home__list-item {
  display: flex;
  gap: 20px;
}
.home__list-item-icon svg {
  display: block;
  width: 100px;
  height: auto;
  fill: var(--primary-color);
}
.home__list-item-title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.home__list-item-title b {
  font-size: 80px;
  font-weight: 900;
}

.section__home-catalog {
  background: rgb(0, 0, 0);
  padding: 30px 0;
}
@media (min-width: 48.06125em) {
  .section__home-catalog {
    padding: 60px 0;
  }
}
.section__home-catalog h1, .section__home-catalog .h1 {
  color: #fff;
  margin: 0 0 30px 0;
}
@media (min-width: 48.06125em) {
  .section__home-catalog h1, .section__home-catalog .h1 {
    margin: 0 0 60px 0;
  }
}
.section__home-catalog .btn {
  max-width: 300px;
  margin: 30px auto 0 auto;
}
@media (min-width: 48.06125em) {
  .section__home-catalog .btn {
    margin: 60px auto 0 auto;
  }
}

.catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  counter-reset: section;
}
@media (min-width: 48.06125em) {
  .catalog {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62.06125em) {
  .catalog {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.catalog__item {
  position: relative;
  display: block;
  counter-increment: section;
}
.catalog__item:hover .catalog__title {
  transform: scale(1.2) translateX(30px);
}
.catalog__image {
  display: block;
  padding: 0 0 50px 50px;
}
.catalog__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.catalog__title {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 70%;
  background: var(--primary-color);
  border-radius: 15px;
  padding: 30px 30px;
  z-index: 2;
  overflow: hidden;
  transition: 0.3s;
}
@media (min-width: 48.06125em) {
  .catalog__title:after {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    line-height: 150px;
    font-weight: 900;
    color: #000;
    content: counter(section);
  }
}
.catalog__title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin: 0 0 5px 0;
}
.catalog__title p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0 0;
}
.catalog__title b {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.section__home-about {
  background: rgb(255, 255, 255);
  padding: 30px 0;
  min-height: 500px;
}

.home-about__container {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
}
@media (min-width: 62.06125em) {
  .home-about__container {
    grid-template-columns: 35% auto;
  }
}
.home-about__column {
  position: relative;
}
.home-about__form {
  position: relative;
  display: block;
  top: -50px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 15px;
  padding: 30px 30px;
  margin: 0 0 -20px 0;
  z-index: 2;
}
@media (min-width: 48.06125em) {
  .home-about__form {
    top: -70px;
    margin: 0 0 -30px 0;
  }
}
.home-about__form h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px 0;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 48.06125em) {
  .home-about__form h2 {
    font-size: 50px;
  }
}
.home-about__form p {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 30px 0;
}
.home-about__form button {
  display: block;
  max-width: 300px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  padding: 20px 30px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  background: #000;
  border-radius: 5px;
  border: 0;
  transition: 0.3s;
}
.home-about__form button:hover {
  box-shadow: 11px 11px 0px 0px rgba(0, 0, 0, 0.15);
}
.home-about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 48.06125em) {
  .home-about__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62.06125em) {
  .home-about__list {
    grid-template-columns: 1fr;
  }
}
.home-about__list-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 100px;
  padding: 0 0 0 50px;
}
@media (min-width: 48.06125em) {
  .home-about__list-item {
    padding: 0 0 0 100px;
  }
}
.home-about__list-item span {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100px;
  display: block;
  float: left;
  font-size: 50px;
  line-height: 100px;
  font-weight: 900;
  color: var(--primary-color);
}
@media (min-width: 48.06125em) {
  .home-about__list-item span {
    width: 70px;
    font-size: 100px;
  }
}
.home-about__list-item h4 {
  flex-basis: 100%;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 48.06125em) {
  .home-about__list-item h4 {
    font-size: 30px;
  }
}
.home-about__list-item p {
  flex-basis: 100%;
  margin: 0;
}
.home-about__image {
  position: relative;
  width: 100%;
  filter: saturate(0%);
  margin: 0 0 30px 0;
}
.home-about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.home-about__image:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(../images/section-home-patern.png), linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat, no-repeat;
  background-position: left 0px top 0px, left 0px top 0px;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  content: "";
  z-index: 2;
  border-radius: 5px;
}

.section__service {
  position: relative;
  margin: 0 0 -80px 0;
}
.section__service:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: -80px;
  background: #fff;
  border-radius: 0 0 0 15px;
  content: "";
  z-index: -1;
}
@media (min-width: 48.06125em) {
  .section__service h1, .section__service .h1 {
    margin: 0 0 60px 0;
  }
}

.service {
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .service {
    grid-template-columns: 1fr 1fr;
  }
  .service > div:nth-child(1) {
    order: 1;
  }
  .service > div:nth-child(2) {
    order: 2;
  }
  .service > div:nth-child(3) {
    order: 4;
  }
  .service > div:nth-child(4) {
    order: 3;
  }
  .service > div:nth-child(5) {
    order: 5;
  }
  .service > div:nth-child(6) {
    order: 6;
  }
  .service > div:nth-child(7) {
    order: 8;
  }
  .service > div:nth-child(8) {
    order: 7;
  }
  .service > div:nth-child(9) {
    order: 9;
  }
  .service > div:nth-child(10) {
    order: 10;
  }
  .service > div:nth-child(11) {
    order: 12;
  }
  .service > div:nth-child(12) {
    order: 11;
  }
}
.service__container {
  position: relative;
  z-index: 2;
  padding: 30px 45px 30px 45px;
}
@media (min-width: 48.06125em) {
  .service__container {
    padding: 60px 45px 30px 45px;
  }
}
.service__container:after {
  position: absolute;
  display: block;
  left: 15px;
  bottom: 0;
  height: 80px;
  width: 100vw;
  background: #fff;
  border-radius: 0 0 0 15px;
  content: "";
  z-index: -1;
}
.service__item {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  align-content: center;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.15);
  padding: 20px 20px;
}
.service__item h4 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px 0;
}
@media (min-width: 48.06125em) {
  .service__item h4 {
    margin: 0 0 10px 0;
  }
}
@media (min-width: 62.06125em) {
  .service__item h4 {
    font-size: 30px;
    margin: 0 0 20px 0;
  }
}
.service__item p {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 20px 0;
}
@media (min-width: 48.06125em) {
  .service__item p {
    margin: 0 0 10px 0;
  }
}
@media (min-width: 62.06125em) {
  .service__item p {
    font-size: 20px;
    margin: 0 0 20px 0;
  }
}
.service__item .btn {
  max-width: 300px;
  padding: 5px 5px;
}
@media (min-width: 62.06125em) {
  .service__item .btn {
    padding: 20px 20px;
  }
}
.service__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.service__image span {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 180px;
  font-weight: 700;
  line-height: 80px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.service__image img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.service-home {
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .service-home {
    grid-template-columns: 1fr 1fr;
  }
}
.service-home__item {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  align-content: center;
  border-radius: 15px;
  background-color: #000;
  background-size: 100%;
  padding: 30px 30px;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.5s;
}
.service-home__item:hover {
  background-size: 110%;
}
.service-home__item:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}
.service-home__item h4 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px 0;
  z-index: 2;
}
@media (min-width: 62.06125em) {
  .service-home__item h4 {
    font-size: 36px;
    margin: 0 0 30px 0;
  }
}
.service-home__item p {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
  z-index: 2;
}
@media (min-width: 62.06125em) {
  .service-home__item p {
    font-size: 20px;
    margin: 0 0 30px 0;
  }
}
.service-home__item .btn {
  max-width: 300px;
  padding: 10px 10px;
}
@media (min-width: 62.06125em) {
  .service-home__item .btn {
    padding: 20px 20px;
  }
}

.section__consul {
  position: relative;
  background-color: rgb(0, 0, 0);
  background-image: url(../images/section-consul-bg.jpg);
  background-repeat: no-repeat;
  background-position: 80% center;
  background-size: cover;
  background-attachment: fixed;
  background-clip: border-box;
  padding: 160px 0 80px 0;
}
@media (min-width: 48.06125em) {
  .section__consul {
    background-position: center center;
  }
}
.section__consul:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  content: "";
}
@media (min-width: 48.06125em) {
  .section__consul {
    padding: 140px 100px 100px 100px;
  }
}
.section__consul h1, .section__consul .h1 {
  color: #fff;
  margin: 0 0 10px 0;
}
.section__consul p {
  color: #fff;
  text-align: center;
  margin: 0 0 30px 0;
}

.consul__container {
  position: relative;
  z-index: 2;
}
.consul__btns {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.consul__btns .btn {
  flex-basis: 240px;
}
/*# sourceMappingURL=home.min.css.map */
