/* styles first section */
body.page-id-1 .section-primary {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

body.page-id-1 .section__wrap {
  width: 100%;
}

body.page-id-1 .section-primary__content {
  max-width: 750px;
}

body.page-id-1 .section-primary__subtitle {
  margin-bottom: 25px;
}

body.page-id-1 .section-primary__title {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.4;
}

body.page-id-1 .section-primary__btn {
  margin-top: 40px;
}

body.page-id-1 .section-primary__video {
  width: 100%;
  height: 100%;
  position: absolute;
}

body.page-id-1 .section-primary__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-id-1 .section-primary__video::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--main-black-color);
  opacity: 0.9;
  position: absolute;
  left: 0;
  top: 0;
}

body.page-id-1 .section-primary__circles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}

body.page-id-1 .section-primary__circles div {
  position: absolute;
  border: 1px solid var(--main-primary-color1);
  border-radius: 100%;
}

body.page-id-1 .section-primary__circles div:nth-child(1) {
  width: 1300px;
  height: 1300px;
  left: calc(50% - 650px);
  top: calc(50% - 650px);
  opacity: 0.9;
  transition: 0.5s;
}

body.page-id-1 .section-primary__circles div:nth-child(2) {
  width: 1000px;
  height: 1000px;
  left: calc(50% - 500px);
  top: calc(50% - 500px);
  opacity: 0.7;
  transition: 0.7s;
}

body.page-id-1 .section-primary__circles div:nth-child(3) {
  width: 700px;
  height: 700px;
  left: calc(50% - 350px);
  top: calc(50% - 350px);
  opacity: 0.5;
  transition: 0.9s;
}

body.page-id-1 .section-primary__circles div:nth-child(4) {
  width: 400px;
  height: 400px;
  left: calc(50% - 200px);
  top: calc(50% - 200px);
  opacity: 0.3;
  transition: 1.1s;
}

body.page-id-1 .section-primary__circles.active div:nth-child(1) {
  transform: scale(1.2);
}

body.page-id-1 .section-primary__circles.active div:nth-child(2) {
  transform: scale(1.2);
}

body.page-id-1 .section-primary__circles.active div:nth-child(3) {
  transform: scale(1.2);
}

body.page-id-1 .section-primary__circles.active div:nth-child(4) {
  transform: scale(1.2);
}

body.page-id-1 .section-primary__scene {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.page-id-1 .section-primary__scene div img {
  position: absolute;
}

body.page-id-1 .section-primary__scene div:nth-child(1) img {
  left: 75vw;
  top: 25vh;
  transform: rotate(30deg);
}

body.page-id-1 .section-primary__scene div:nth-child(2) img {
  left: 65vw;
  top: 80vh;
  transform: rotate(80deg);
  width: 50px;
}

body.page-id-1 .section-primary__scene div:nth-child(3) img {
  left: 30vw;
  top: 85vh;
  transform: rotate(-60deg);
  width: 70px;
}

/* end styles first section */

/* styles work block */

body.page-id-1 .section-work {
  padding: 100px 0;
  position: relative;
}

body.page-id-1 .section-work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--main-black-color);
  box-shadow: 0px -20px 30px 30px var(--main-black-color);
}

body.page-id-1 .section-work__subtitle {
  text-align: center;
  margin-bottom: 20px;
}

body.page-id-1 .section-work__title {
  text-align: center;
}

body.page-id-1 .section-work__text {
  text-align: center;
  margin-top: 20px;
}

body.page-id-1 .section-work__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 100px;
  align-items: flex-end;
}

body.page-id-1 .section-work__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

body.page-id-1 .section-work__item {
  text-align: center;
  box-shadow: var(--main-box-shadow);
  padding: 50px 20px;
  transition: 0.3s;
  background-color: var(--main-black-color);
}

body.page-id-1 .section-work__item__icon {
  margin-bottom: 20px;
}

body.page-id-1 .section-work__item__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

body.page-id-1 .section-work__item__text {
  color: var(--main-light-gray-color);
}

body.page-id-1 .section-work__item:hover {
  background: linear-gradient(
    -45deg,
    var(--main-primary-color1) 0%,
    var(--main-primary-color3) 100%
  );
}

body.page-id-1 .section-work__item:hover .section-work__item__text {
  color: white;
}

body.page-id-1 .section-work__image {
  width: 100%;
  position: relative;
  user-select: none;
}

body.page-id-1 .section-work__image__car {
  width: 100%;
  opacity: 1;
  transition: 0.3s;
  pointer-events: none;
  user-select: none;
}

body.page-id-1 .section-work__image__led {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  user-select: none;
}

body.page-id-1 .section-work__image.active .section-work__image__led {
  opacity: 1;
}

/* end styles work block */

/* styles reviews block */

body.page-id-1 .section-reviews {
  padding: 100px 0;
  background: url(/resources/home/assets/section-reviews-bg.svg);
  background-size: contain;
  background-position: 120px bottom;
  background-repeat: no-repeat;
}

body.page-id-1 .section-reviews__subtitle {
  margin-bottom: 20px;
}

body.page-id-1 .section-reviews__text {
  margin-top: 20px;
}

body.page-id-1 .section-reviews__swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
}

body.page-id-1 .section-reviews__item__symb {
  color: var(--main-primary-color1);
  font-size: 100px;
  line-height: 75px;
  display: inline-block;
  vertical-align: bottom;
  height: 30px;
}

body.page-id-1 .section-reviews__item__text {
  margin-top: 40px;
  line-height: 1.4;
}

body.page-id-1 .section-reviews__item__client {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

body.page-id-1 .section-reviews__item__avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100px;
  object-position: top;
}

body.page-id-1 .section-reviews__item__meta {
  margin-left: 30px;
}

body.page-id-1 .section-reviews__item__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-light-gray-color);
}

body.page-id-1 .section-reviews__item__auto {
  color: var(--main-light-gray-color);
  margin-top: 5px;
  font-size: 14px;
}

/* end styles reviews block */

/* styles stat block */

body.page-id-1 .section-stat {
  padding: 100px 0;
  position: relative;
}

body.page-id-1 .section-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--main-black-color);
  box-shadow: 0px -20px 30px 30px var(--main-black-color);
}

body.page-id-1 .section-stat__subtitle {
  margin-bottom: 20px;
}

body.page-id-1 .section-stat__title {
  max-width: 700px;
}

body.page-id-1 .section-stat__text {
  margin-top: 20px;
}

body.page-id-1 .section-stat__btn {
  margin-top: 40px;
}

body.page-id-1 .section-stat__content {
  background-color: var(--main-primary-color1);
}

body.page-id-1 .section-stat__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding: 80px 0;
  margin-top: 100px;
}

body.page-id-1 .section-stat__item {
  background: linear-gradient(
    180deg,
    var(--main-primary-color1) 0%,
    var(--main-primary-color2) 100%
  );
  padding: 40px;
  text-align: center;
}

body.page-id-1 .section-stat__item__title {
  font-size: 20px;
  font-weight: 700;
}

body.page-id-1 .section-stat__item__num {
  font-size: 70px;
  font-weight: 800;
  margin-top: 10px;
}

body.page-id-1 .section-stat__item__text {
  font-weight: 300;
}

/* end styles stat block */

/* styles services block */

body.page-id-1 .section-services {
  padding: 100px 0;
}

body.page-id-1 .section-services__subtitle {
  margin-bottom: 20px;
}

body.page-id-1 .section-services__text {
  margin-top: 20px;
}

body.page-id-1 .section-services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 100px;
}

body.page-id-1 .section-services__item {
  box-shadow: var(--main-box-shadow);
  background-color: var(--main-black-color);
  padding: 40px;
}

body.page-id-1 .section-services__item__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

body.page-id-1 .section-services__item__text {
  color: var(--main-light-gray-color);
}

body.page-id-1 .section-services__item__meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-id-1 .section-services__item__services {
  color: var(--main-primary-color1);
}

body.page-id-1 .section-services__item:hover {
  background: linear-gradient(
    -45deg,
    var(--main-primary-color1) 0%,
    var(--main-primary-color3) 100%
  );
}

body.page-id-1 .section-services__item:hover .section-services__item__services,
body.page-id-1 .section-services__item:hover .section-services__item__text {
  color: white;
}

/* end styles services block */

@media (max-width: 1500px) {
}

@media (max-width: 1300px) {
}

@media (max-width: 1199.98px) {
  body.page-id-1 .section-services__items {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-id-1 .section-stat__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  body.page-id-1 .section-work__content {
    grid-template-columns: repeat(1, 1fr);
  }

  body.page-id-1 .section-work__image {
    margin-top: -100px;
    z-index: -1;
  }
}

@media (max-width: 900px) {
}

@media (max-width: 767.98px) {
  body.page-id-1 .section-primary__title {
    font-size: 30px;
  }

  body.page-id-1 .section-stat__items {
    grid-template-columns: repeat(1, 1fr);
  }

  body.page-id-1 .section-services__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 650px) {
}

@media (max-width: 575.98px) {
  body.page-id-1 .section-primary {
    height: 530px;
  }

  body.page-id-1 .section__wrap {
    margin-top: 40px;
  }

  body.page-id-1 .section-primary__title {
    font-size: 25px;
  }

  body.page-id-1 .section-work__items {
    grid-template-columns: repeat(1, 1fr);
  }

  body.page-id-1 .section-work__image {
    display: none;
  }
}
