@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  --webkey-color-primary: #304B6F;
  --webkey-color-success: #7CB342;
  --webkey-color-info: #03a9f4;
  --webkey-color-warning: #FF8833;
  --webkey-color-error: #ff1a1a;
  --webkey-color-text: #111827;
  --webkey-color-text-grey: #9ca3af;
  --webkey-font-family: "Inter";
  --webkey-margin-top: 0.5rem;
  --webkey-margin-right: 0.5rem;
  --webkey-margin-end-block: 100px;
  --webkey-padding: 0.375rem;
  --webkey-border-radius: 0.375rem;
  --webkey-border: 1px solid #D1D5DB;
  --webkey-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.2);
  font-family: var(--webkey-font-family);
  margin: 0;
  padding: 0; }

.home {
  position: relative;
  padding-bottom: 20rem;
  padding-top: 10rem;
  margin-bottom: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .home video {
    max-width: 100vw;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: flex;
    filter: brightness(0.5);
    top: 0;
    left: 0;
    z-index: -1; }
  .home_text {
    display: block; }
    .home_text h2 {
      max-width: 100%;
      word-wrap: break-word;
      color: white;
      font-weight: 800;
      font-size: 48px;
      line-height: 3.75rem; }
    .home_text p {
      display: inline-block;
      max-width: 620px;
      color: white; }

@media screen and (max-width: 576px) {
  .home {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 5px;
    padding-bottom: 150px;
    padding-top: 7rem; }
    .home_text {
      padding-top: 0;
      padding-bottom: 0; }
      .home_text h2 {
        font-size: 38px;
        line-height: 2.75rem; }
      .home_text p {
        font-size: 0.9rem; } }

.about {
  cursor: default; }
  .about__statistics {
    display: flex;
    justify-content: space-between; }
    .about__statistics_block {
      width: 100%;
      height: 180px;
      margin-right: 1rem;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      border-radius: var(--webkey-border-radius);
      border: var(--webkey-border);
      box-shadow: 0 0.125rem 0.25rem rgba(48, 75, 111, 0.2);
      text-align: center;
      padding: var(--webkey-padding);
      cursor: default; }
      .about__statistics_block:last-child {
        margin-right: 0; }
      .about__statistics_block h4 {
        font-weight: 800;
        font-size: 48px; }
        @media screen and (max-width: 576px) {
          .about__statistics_block h4 {
            font-size: 38px;
            line-height: 2rem; } }
        @media screen and (max-width: 320px) {
          .about__statistics_block h4 {
            font-size: 32px; } }
      .about__statistics_block:hover {
        box-shadow: var(--webkey-box-shadow);
        color: var(--webkey-color-primary); }

@media screen and (max-width: 768px) {
  .about__description {
    max-width: 100%; }
  .about__statistics {
    display: flex;
    flex-wrap: wrap; }
    .about__statistics_block {
      width: 45%;
      height: 180px;
      margin-right: 0;
      margin-bottom: 1rem; } }

@media screen and (max-width: 576px) {
  .about__statistics_block {
    width: 100%; } }

.project__content img {
  width: 100%;
  border-radius: var(--webkey-border-radius); }

.project__content_image {
  width: 100%;
  height: 350px;
  border-radius: var(--webkey-border-radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

@media screen and (max-width: 1024px) {
  .project__content_image {
    margin-top: 1rem;
    height: 300px; } }

@media screen and (max-width: 576px) {
  .project__content_image {
    height: 250px; } }

.services__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .services__body_block {
    display: flex;
    flex-direction: column;
    width: calc(50% - 1rem);
    height: 200px;
    border-radius: var(--webkey-border-radius);
    border: var(--webkey-border);
    box-shadow: var(--webkey-box-shadow);
    margin-bottom: 1rem;
    padding: 2rem; }
    .services__body_block:last-child {
      padding: 0;
      align-items: center;
      justify-content: center; }
    .services__body_block:hover {
      cursor: pointer;
      box-shadow: 0 0 0.75rem rgba(48, 75, 111, 0.2); }
    .services__body_block_p {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical; }
    .services__body_block h4 {
      font-weight: 600;
      font-size: 21px; }
      @media screen and (max-width: 576px) {
        .services__body_block h4 {
          font-size: 18px; } }
      @media screen and (max-width: 320px) {
        .services__body_block h4 {
          font-size: 16px; } }
@media screen and (max-width: 768px) {
  .services__body_block {
    width: calc(100%); } }

.products__image {
  width: 100%;
  height: 350px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--webkey-border-radius); }

@media screen and (max-width: 1024px) {
  .products__image {
    margin-top: 1rem;
    height: 300px; } }

@media screen and (max-width: 576px) {
  .products__image {
    height: 250px; } }

.news__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .news__body_block {
    width: calc(50% - 1rem);
    height: 425px;
    padding: 20px;
    margin-top: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: var(--webkey-border-radius);
    border: var(--webkey-border);
    box-shadow: var(--webkey-box-shadow); }
    .news__body_block:hover {
      cursor: pointer;
      box-shadow: 0 0 1.75rem rgba(48, 75, 111, 0.2); }
    .news__body_block__image {
      width: 100%;
      height: 250px;
      border-radius: var(--webkey-border-radius);
      background-position: center;
      background-size: cover; }
    .news__body_block__description {
      width: 100%; }
      .news__body_block__description_p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; }
      .news__body_block__description h4 {
        min-height: 45px;
        margin-top: var(--webkey-margin-top);
        font-weight: 800;
        display: flex;
        width: 100%;
        align-items: center; }

@media screen and (max-width: 1024px) {
  .news__body {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    .news__body_block {
      width: 100%;
      margin-bottom: 1rem; } }

.contact__body {
  display: flex;
  justify-content: space-between; }
  .contact__body__block {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    .contact__body__block_map {
      width: 100%; }
    .contact__body__block_info {
      width: 100%;
      padding: 1rem; }
      .contact__body__block_info__item {
        display: flex;
        justify-content: space-between; }
      .contact__body__block_info p {
        font-weight: 600;
        margin-bottom: 0; }
      .contact__body__block_info a {
        display: inline-block;
        margin-bottom: 1rem;
        text-align: end; }

@media screen and (max-width: 1024px) {
  .contact__body {
    display: flex;
    justify-content: space-between; }
    .contact__body__block {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-direction: column-reverse; } }

.news_details__body {
  width: calc(50% - 1rem);
  height: 425px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--webkey-border-radius);
  border: var(--webkey-border); }
  .news_details__body__image {
    width: 100%;
    height: 350px;
    background-size: cover;
    border-radius: var(--webkey-border-radius); }
    @media screen and (max-width: 1024px) {
      .news_details__body__image {
        margin-top: 1rem; } }
    @media screen and (max-width: 576px) {
      .news_details__body__image {
        height: 250px; } }
    .news_details__body__image a {
      display: block;
      width: 100%;
      height: 350px;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; }
      @media screen and (max-width: 576px) {
        .news_details__body__image a {
          height: 250px;
          margin-top: 1rem; } }
.stage {
  width: 100%;
  display: flex;
  flex-direction: column; }
  .stage h1 {
    margin-top: 75px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 48px;
    line-height: 3.75rem; }
    @media screen and (max-width: 576px) {
      .stage h1 {
        font-size: 32px;
        line-height: 2.25rem; } }
    @media screen and (max-width: 320px) {
      .stage h1 {
        font-size: 26px;
        line-height: 1.75rem;
        margin-top: 50px;
        margin-bottom: 15px; } }
  .stage__image {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .stage__image_item {
      width: 400px;
      height: 275px;
      margin-top: 1rem;
      border-radius: var(--webkey-border-radius);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; }
      .stage__image_item_big {
        width: 100%;
        height: 350px;
        margin-top: 1rem;
        border-radius: var(--webkey-border-radius);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat; }

@media screen and (max-width: 768px) {
  .stage__image_item {
    width: 100%; }
  .stage__image_item_big {
    height: 275px; } }

.project__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media screen and (max-width: 576px) {
    .project__body {
      flex-direction: column;
      justify-content: center; } }
  .project__body_block {
    width: calc(50% - 1rem);
    height: 350px;
    margin-top: 2rem;
    border-radius: var(--webkey-border-radius);
    border: var(--webkey-border);
    cursor: pointer;
    backdrop-filter: brightness(0.8); }
    @media screen and (max-width: 1024px) {
      .project__body_block {
        width: 100%; } }
    @media screen and (max-width: 576px) {
      .project__body_block {
        width: 100%;
        height: 250px;
        margin-top: 1rem; } }
    .project__body_block__image {
      position: relative;
      width: 100%;
      height: 350px; }
      @media screen and (max-width: 576px) {
        .project__body_block__image {
          height: 250px; } }
      .project__body_block__image .image-wrapper {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        filter: brightness(50%);
        border-radius: var(--webkey-border-radius);
        transition: transform 0.5s ease; }
        .project__body_block__image .image-wrapper:hover {
          transform: scale(1.1); }
      .project__body_block__image_category {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 1rem;
        flex-wrap: wrap;
        align-items: center;
        align-content: center; }
        .project__body_block__image_category p {
          display: inline-block;
          color: white;
          font-weight: 600;
          margin-bottom: 0; }
        .project__body_block__image_category_cycle {
          display: inline-block;
          width: 1rem;
          height: 1rem;
          border-radius: 100%;
          background-color: #03a9f4;
          margin-right: 5px; }
      .project__body_block__image h1 {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        max-width: calc(100% - 1rem);
        word-wrap: break-word;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 48px;
        color: white;
        line-height: 3.75rem; }
        @media screen and (max-width: 576px) {
          .project__body_block__image h1 {
            font-size: 32px;
            line-height: 2rem; } }
        @media screen and (max-width: 320px) {
          .project__body_block__image h1 {
            font-size: 26px; } }
.categories {
  display: flex;
  justify-content: flex-end; }
  @media screen and (max-width: 1024px) {
    .categories {
      justify-content: flex-start; } }
  .categories .selected {
    color: var(--webkey-color-primary) !important;
    font-weight: bold; }
  .categories a:first-child {
    border-radius: 0; }
  .categories .border {
    display: inline-block;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    border-right: 1px solid #000000 !important;
    transform: rotate(200deg); }

@media screen and (max-width: 576px) {
  .categories {
    display: none; } }

/*# sourceMappingURL=home.css.map */