body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding-top: 0px;
  padding-left: 72px;
  padding-right: 0px;
  padding-bottom: 0px;
  background-color: rgb(248, 248, 248);
}

p {
  margin-top: 0px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: black;
}

a.in-black:link {
  color: #999;
}

a.in-black:visited {
  color: #999;
}

a.in-black:hover {
  color: rgba(245, 222, 179, 1);
}

h1 {
  color: rgb(51, 51, 51);
  font-size: 2rem;
  font-weight: normal;
  padding-bottom: 24px;
  margin-top: 0px;
}

.project-head {
  font-family: "Roboto Flex", sans-serif;
  font-size: 28px;
  font-weight: 200;
  font-style: normal;
  color: rgb(51, 51, 51);
  line-height: normal;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.h1-pattern {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: rgb(51, 51, 51);
  line-height: normal;
  /* расстояние между строк */
  margin-top: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1em;
}

.h1-pattern-in-black {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: wheat;
  line-height: normal;
  /* расстояние между строк */
  margin-top: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1em;
}

h2 {
  color: rgb(51, 51, 51);
  font-size: 24px;
  font-weight: normal;
  padding-bottom: 24px;
  margin-top: 0px;
}

.h2-product {
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

h2.in-black {
  color: rgba(245, 222, 179, 1);
}

.header-article {
  padding-top: 25px;
  padding-bottom: 0px;
  color: rgba(51, 51, 51, 0.9);
  font-size: 20px;
}

.header-article-blog {
  padding-top: 60px;
  padding-bottom: 0px;
  color: rgba(51, 51, 51, 0.9);
  font-size: 20px;
}



h3 {
  font-size: 18px;
  font-weight: normal;
  margin-top: 0px;
}


.logo {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 190%;
  color: black;

  text-shadow: 1px 1px 1px rgba(245, 222, 179, 0.2);
}

.logo:hover {
  text-shadow: 1px 1px 1px rgba(121, 131, 166, 0.2);
}

.logo-description {
  text-align: center;
  margin-top: -13px;
  font-style: normal;
  font-size: 45%;
}

.article-list {
  margin-bottom: 20px;
  /* Отступ между списками */
  padding-left: 15px;
  /* Сдвигаем маркеры левее */
}

.last-paragraph {
  margin-bottom: 40px;
}

.ul-product {
  padding-left: 15px;
  padding-bottom: 15px;
}

/* SLIDER START */
.slideshow {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.slideshow-item {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  animation: slideanim 40s infinite;
}

.slideshow-item.visible {
  opacity: 1;
  animation: none;
}

.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img {
  animation-delay: 0;
}

.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img {
  animation-delay: 10s;
}

.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img {
  animation-delay: 20s;
}

.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img {
  animation-delay: 30s;
}

.slideshow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 40s infinite;
}

.slideshow-item-text {
  max-width: 50%;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  padding: 20px 30px;
  font-family: Verdana, sans-serif;
}

.slideshow-item-text h5 {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #BFE2FF;
}

.slideshow-item-text p {
  font-size: 15px;
  margin-bottom: 10px;
}

@keyframes slideanim {
  12.5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  37.5% {
    opacity: 0;
  }
}

@keyframes zoom {
  50% {
    transform: scale(1.3);
  }
}

/* SLIDER END */



/* color of the text selection */
::selection {
  background: rgb(121, 131, 166, 0.3);
  color: black;

}

.contacts-text {
  color: rgb(102, 102, 102);
  font-size: 16px;
  padding-right: 10px;
}


/* Breadcrumbs */
nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  padding: 0px;
  font-size: small;
  color: rgb(102, 102, 102);
}

nav[aria-label="breadcrumb"] li {
  margin-right: 5px;

}

nav[aria-label="breadcrumb"] li a {
  text-decoration: none;
}

nav[aria-label="breadcrumb"] li a:hover {
  text-decoration: underline;
}

nav[aria-label="breadcrumb"] li::after {
  content: '/';
  margin-left: 5px;
}

nav[aria-label="breadcrumb"] li:last-child::after {
  content: '';
}

/* Breadcrumbs end */


/* HEADER */

.header {
  height: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(228, 228, 228);
}

.left-section {
  display: flex;
  align-items: center;
}

.hamburger-menu {
  height: 24px;
  margin-left: 24px;
  margin-right: 24px;
}

.youtube-logo {
  height: 55px;
}

.search-button {
  height: 40px;
  width: 66px;
  background-color: rgb(240, 240, 240);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(192, 192, 192);
  margin-left: -1px;
  margin-right: 10px;
}

.search-button,
.voice-search-button,
.upload-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search-button .tooltip,
.voice-search-button .tooltip,
.upload-icon-container .tooltip {
  position: absolute;
  background-color: gray;
  color: white;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 2px;
  font-size: 12px;
  bottom: -30px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  white-space: nowrap;
}

.search-button:hover .tooltip,
.voice-search-button:hover .tooltip,
.upload-icon-container:hover .tooltip {
  opacity: 1;
}

.search-icon {
  height: 25px;
}

.voice-search-button {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  border: none;
  background-color: rgb(245, 245, 245);
}

.voice-search-icon {
  height: 24px;
}

.contacts {
  margin-right: 50px;
}

.phone-number {
  font-weight: 600;
}

.upload-icon {
  height: 20px;
}

.youtube-apps-icon {
  height: 24px;
}

.notifications-icon {
  height: 24px;
}

.notifications-icon-container {
  position: relative;
}

.notifications-count {
  position: absolute;
  top: -2px;
  right: -5px;
  background-color: rgb(200, 0, 0);
  color: white;
  font-size: 11px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 10px;
}

.current-user-picture {
  height: 32px;
  border-radius: 16px;
}

/* HEADER END */

/* TOP MENU */

.middle-section {
  flex: 1;
  margin-left: 50px;
  margin-right: 50px;
  max-width: 300px;
  display: flex;
  align-items: center;
  font-size: 14px;

}

/* menu middle-section for mobile */
@media screen and (min-width: 0px) and (max-width: 660px) {
  .middle-section {
    margin-left: 40px;
    margin-right: 25px;
  }
}

.right-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  font-size: 80%;
}

.menu:hover {
  /*
  background-color: rgba(245, 222, 179, 0.5);
  */
  font-weight: 900;

}

.menu {
  flex: 1;
  height: 55px;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 300px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

/* menu for mobile */
@media screen and (min-width: 0px) and (max-width: 660px) {
  .menu {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.menu-align {
  flex: 1;
  height: 55px;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 300px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.menu-telegram:hover {
  color: rgba(0, 153, 255, 1);
}

.menu-whatsapp:hover {
  color: rgba(0, 255, 102, 1);
}

/* TOP NENU END*/

/* SIDEBAR */

.sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 55px;
  background-color: rgb(121, 131, 166, 0.3);
  width: 72px;
  /*z-index: 200;*/
  padding-top: 5px;
}

.sidebar-link {
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.sidebar-link:hover {
  /*  background-color: rgba(245, 222, 179, 0.5); */
  background-color: rgba(255, 255, 255, 0.4);


  .sidebar-home {}

  .sidebar-phone {}

  .sidebar-email {}

  .sidebar-telegram {
    color: rgba(0, 153, 255, 1);
  }

  .sidebar-whatsapp {
    color: rgb(0, 153, 51);
  }

  .sidebar-instagram {
    color: rgb(229, 18, 187);
  }

}

.video-preview:hover {
  background-color: rgba(245, 222, 179, 0.2);
}

.sidebar-link img {
  height: 24px;
  margin-bottom: 4px;
}

.sidebar-link div {
  font-size: 10px;
}

.sidebar2 {
  background-color: rgb(147, 99, 99);
  width: 702px;
}

.text-top {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/10.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* Растягиваем  фон по высоте и ширине */
  background-position: center;
  /* Позиция фона по центру */
  height: 350px;
  /* Высота блока */
  font-size: 40px;
  color: rgb(255, 255, 255);
  text-align: center;
  text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.199);
  font-weight: 200;
}

.sidebar-icon {
  padding-bottom: 5px;
}

/* SIDEBAR END */

/* BURGER MENU */

.burger-menu {
  flex: 1;
  text-align: center;
  margin-left: 25px;
  margin-right: 25px;
  max-width: 22px;
  /*width of lines*/
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}

.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 17px;
}

.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  /*border-radius: 10px;*/
  background: #000000;
}

.burger::before {
  top: 0;
  box-shadow: 0 8px 0 #000000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}

.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}

.burger-checkbox:checked+.burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 6px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}

.menu-list {
  top: 56px;
  left: 72px;
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 55px 0;
  margin: 0;
  background-color: rgb(0, 0, 0, 0.8);
  /*burger-menu background*/
  list-style-type: none;
  transform: translateX(100%);
  transition: .3s;
  width: 100%;
}

.menu-item {
  display: block;
  padding: 8px;
  margin-right: 50px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

.menu-item:hover {
  /*background: rgba(245, 222, 179, 0.6)*/
  background: linear-gradient(to right, rgba(0, 0, 0, 0), black, rgba(0, 0, 0, 0));
  color: wheat;
  transition: .3s;
}

.burger-checkbox:checked~.menu-list {
  transform: translateX(0);
}

/* BURGER MENU END */

/* BUTTONS */

.button-more {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: rgb(90, 90, 90);
  background-color: rgb(121, 131, 166, 0.2);
  font-size: medium;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 1px rgba(245, 222, 179, 0.3);

  &:hover {
    color: #000000;
    background-color: rgba(245, 222, 179, 0.3);
    box-shadow: 1px 1px 1px rgba(121, 131, 166, 0.2);
  }
}

.button-container {
  padding-top: 0px;
  padding-bottom: 48px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.socials-footer {
  font-family: "Roboto Flex", sans-serif;
  font-size: 12px;
  font-weight: 100;
  font-style: normal;

  color: #999;
  padding-bottom: 5px;

}

.socials-footer:hover {
  color: wheat;
}

/* BUTTONS END */

/* BLACK BUTTON SHOW MORE */

.circle-button-container {
  padding-top: 0px;
  padding-bottom: 48px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.circle-button {
  position: relative;
  display: inline-block;
  width: 20rem;
  height: 3rem;
  text-decoration: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
}

.icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  background: rgb(45, 45, 45);
  /* фон кнопки */
  border-radius: 1.625rem;
}

.arrow {
  position: absolute;
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: rgb(45, 45, 45);
  /* затемненная стрелка */
  top: 50%;
  transform: translateY(-50%);
}

.arrow::before {
  content: '';
  position: absolute;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid white;
  border-right: 0.125rem solid white;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 20px 20px 1.85rem;
  /* отступ круга до текста */
  color: rgba(45, 45, 45);
  line-height: 1.6;
  text-align: center;
  z-index: 1;
}

.circle-button:hover .icon {
  width: 100%;
}

.circle-button:hover .arrow {
  background: white;
  /* появляется цвет */
  transform: translate(1rem, 0);
}

.circle-button:hover .text {
  color: rgb(220, 220, 220);
}

/* BLACK BUTTON SHOW MORE */

.faq-element {
  line-height: 1.8; 
}

.faq-element:hover {
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
padding-top: 10px;
padding-bottom: 20px;
font-weight: 300;
}

/* FLEX-CONTAINER */

.flex-container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 40px;
  padding-top: 60px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 96px;
  /*background: rgba(255, 177, 32, 0.04);*/
  max-width: 1200px;
  margin: 0 auto;
}

.flex-container-mini {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 40px;
  padding-top: 0px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 0px;
  /*background: rgba(255, 177, 32, 0.04);*/
  max-width: 1200px;
  margin: 0 auto;
}

.flex-container-cover {
  background: rgba(255, 177, 32, 0.04);
}

.flex-container-cover-gradient {
  background: linear-gradient(to bottom, rgba(255, 177, 32, 0.04) 0%, rgba(255, 177, 32, 0.04) 60%, rgb(248, 248, 248) 100%);
}

.flex-container-cover-gradient-light {
  background: linear-gradient(to bottom, rgb(248, 248, 248) 0%, rgba(255, 177, 32, 0.04) 30%, rgba(255, 177, 32, 0.04) 100%);
}

.flex-container-cover-black {
  background-color: rgb(45, 45, 45);
}

.flex-container-cover-white {
  background-color: rgb(255, 255, 255);
}

.flex-container-breadcrumbs {
  font-size: small;
  color: rgb(102, 102, 102);
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 15px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs-product-gap {
  padding-top: 60px;
}

.flex-container-contacts {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 40px;
  padding-top: 60px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.flex-container-map {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 40px;
  padding-top: 0px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 96px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {

  .flex-container,
  .flex-container-mini,
  .flex-container-contacts,
  .flex-container-map,
  .flex-container-breadcrumbs {
    grid-template-columns: 1fr;
    padding-left: 25px;
    padding-right: 25px;
  }

  .flexcontainer-article-header {
    font-size: 20px;
  }

  .h1 {
    font-size: 20px;
  }
}

@media (min-width: 901px) and (max-width: 999px) {

  .flex-container,
  .flex-container-mini,
  .flex-container-contacts,
  .flex-container-map,
  .flex-container-breadcrumbs {
    grid-template-columns: 0.5fr 1fr;
  }

  .flexcontainer-article-header {
    font-size: 24px;
  }

  .h1 {
    font-size: 24px;
  }
}

@media (min-width: 1000px) {

  .flex-container,
  .flex-container-mini,
  .flex-container-contacts,
  .flex-container-map,
  .flex-container-breadcrumbs {
    grid-template-columns: 0.5fr 1fr;
  }

  .flexcontainer-article-header {
    font-size: 28px;
  }

  .h1 {
    font-size: 28px;
  }
}

.flexcontainer-module-row {
  margin-bottom: 8px;
  position: relative;
}

.flexcontainer-module-row-contacts {
  margin-bottom: 48px;
  padding-right: 10px;
  position: relative;
}

.flexcontainer-article {
  width: 100%;
}

.flexcontainer-article-header-h2 {
  font-size: 18px;
  margin-bottom: 10px;

}

.flexcontainer-article-text {
  color: rgb(102, 102, 102);
  font-size: 16px;
}

.flexcontainer-article-product-text {
  color: rgb(102, 102, 102);
  font-size: 14px;
}

.product-information {
  color: rgb(102, 102, 102);
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 4px;
  padding-top: 0px;
  padding-bottom: 0px;

}

.product-description {
  color: rgb(102, 102, 102);
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.product-description-paragraph {
  margin-bottom: 12px;
}

.product-technical-data {
  color: rgb(102, 102, 102);
  font-size: 14px;
}

.flexcontainer-article-text-in-black {
  color: rgba(245, 222, 179, 0.58);
  font-size: 16px;
}

.background-black {
  color: wheat;
  background-color: rgb(45, 45, 45);

}

.two-columns {
  display: grid;
  grid-template-columns: 0.2fr;
}

.two-columns-module-row {
  padding-bottom: 60px;
  padding-right: 24px;
  position: relative;
}

.two-columns-H3 {
  padding-bottom: 24px;
}


@media (max-width: 750px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 751px) and (max-width: 999px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1000px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.two-columns-photo {
  width: 100%;
  opacity: 0.5;
  padding-top: 36px;
}

.production-article-header {
  padding-bottom: 20px;
}

.two-columns-photo:hover {
  opacity: 1;
}

/* hide for mobile */
@media screen and (min-width: 0px) and (max-width: 660px) {
  .hide-for-mobile {
    display: none !important;
  }
}

/* hide for non-mobile */
@media (min-width: 661px) {
  .hide-for-non-mobile {
    display: none !important;
  }
}

/* FLEXCONTAINER END */

/* BLOG */
.blog-article {
  padding-top: 120px;
}

/* BLOG END */

/* VIDEO */

.top-image {
  width: 100%;
}

.article-image {
  height: 50px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.video-title {
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}

.article-title {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 15px;
}

.video-info-grid {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding-bottom: 15px;
}

.article-section {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 36px;
  padding-top: 36;
}

.profile-picture {
  width: 36px;
  border-radius: 50px;
}

.thumbnail-row {
  margin-bottom: 8px;
  position: relative;
}

.video-author,
.video-stats {
  font-size: 12px;
  color: rgb(96, 96, 96);
}

.article-text {
  font-size: 12px;
  color: rgb(96, 96, 96);
  margin-bottom: 10px;
}

.video-author {
  margin-bottom: 4px;
}

.type-container {
  background-color: rgba(245, 222, 179, 0.1);
}

.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0px;
  row-gap: 40px;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
  row-gap: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-modul {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 16px;
  row-gap: 40px;
}

@media (max-width: 500px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 501px) and (max-width: 750px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 751px) and (max-width: 999px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1000px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.video-time {
  font-size: 12px;
  font-weight: 500;
  padding: 4px;
  border-radius: 2px;
  background-color: black;
  color: white;
  position: absolute;
  bottom: 8px;
  right: 5px;
  opacity: 0;
}

.video-time:hover {
  opacity: 1;
}

.project-pointer {
  padding-left: 10px;
  color: rgb(121, 131, 166);
}

/* VIDEO END */

/* SLIDER */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thumbnail {
  /* width: 100px;*/
  cursor: pointer;
  /*transition: transform 0.3s;*/
}

.thumbnail:hover {
  transform: scale(1.05);
  /*opacity: 1;*/
  /* transform: scale(1.2);*/
  transition: 0.5s;
}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.lightbox.active {
  display: flex;
}

.large-image {
  max-width: 100%;
  max-height: 100%;
  /* border: 2px solid white; */
  /* border-radius: 10px; */
}

.close,
.prev,
.next {
  position: absolute;
  color: white;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.close {
  top: 20px;
  right: 20px;
}

.prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* SLIDER END */

/* PROJECTS */

.project-h1 {
  color: rgb(51, 51, 51);
  font-size: 24px;
  font-weight: normal;
  padding-bottom: 24px;
  margin-top: 0px;
}

.product-h1 {
  color: rgb(51, 51, 51);
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 24px;
  margin-top: 0px;
}

.slideshow-project {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 0px 0;
}

.slideshow-item-project img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  animation: zoom 40s 1;
}

.project-main-image {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  margin: 0px 0;
}

.project-image {
  width: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
  row-gap: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 40px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

@media (max-width: 500px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 501px) and (max-width: 750px) {
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 751px) and (max-width: 999px) {
  .project-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .project-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* Page about */
.project-grid-about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
  row-gap: 40px;
  padding-left: 0px;
  padding-right: 24px;
  padding-bottom: 36px;
}

@media (max-width: 500px) {
  .project-grid-about {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 501px) and (max-width: 899px) {
  .project-grid-about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .project-grid-about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .project-grid-about {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Page about end */

.project-row {
  margin-bottom: 8px;
  position: relative;
}

/* Image magnification by click start*/

img[data-src-big] {
  cursor: pointer;
  transition-property: width, height, left, top;
  background: url('<путь к иконке "загрузка">') no-repeat center;
}

.image-enlager-animation-normal {
  transition-duration: 0.2s;
  /* скорость увеличения и уменьшения */
}

.image-enlager-animation-fast {
  transition-duration: 0.001s;
}

.image-enlager-arrow {
  background-color: rgba(245, 222, 179, 0.3);
  /* цвет фона с боков */
  position: fixed;
  top: 0px;
  width: 30%;
  /*z-index: 3;*/
}

.image-enlager-arrow:hover {
  cursor: pointer;
}

.image-enlager-left-arrow:hover {
  background: url('<путь к стрелке влево>') no-repeat left;
}

.image-enlager-right-arrow:hover {
  background: url('<путь к стрелке вправо>') no-repeat right;
}

.image-enlager-no-arrows:hover {
  cursor: default;
  background: none;
}


.image-enlager-background {
  background-color: rgba(48, 48, 48, 0.6);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
}

.image-enlager-placeholder {
  background-color: rgb(200, 200, 200);
}

@media screen and (max-width: 1080px) {
  .image-enlager-left-arrow:hover {
    background: none
  }

  .image-enlager-right-arrow:hover {
    background: none
  }

  .image-enlager-arrow {
    width: 20%;
  }
}

/* Imaga magnification by click end */

.project-container:hover {
  background-color: rgba(245, 222, 179, 0.2);

  .project-image-cover {
    opacity: 1;
  }
}

.project-name-box {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding-bottom: 0px;
}

.project-location-box {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* for a single project page*/
.project-name {
  color: rgb(51, 51, 51);
  font-size: 36px;
  font-weight: normal;
  line-height: normal;
  /* расстояние между строк */
  margin-top: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1.5em;
}

/* for the projects list */
.project-list-name {
  color: rgb(0, 0, 0);
  font-size: 36px;
  font-weight: normal;
  line-height: normal;
  /* расстояние между строк */
  margin-top: 0;

  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 14px;
}

.project-list-name-description {
  padding-top: 12px;
}

.project-type {
  font-size: small;
  font-weight: 400;
  color: rgb(96, 96, 96);
  padding-top: 12px;
  padding-bottom: 4px;
  margin: 0px;
}

.project-type-location {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
}

.project-location {
  font-size: 11px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
}

.project-list-location {
  font-size: 11px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
}

.project-description {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
  padding-left: 12px;
  padding-right: 12px;
}

.project-description-mini {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
  padding-left: 0px;
  padding-right: 12px;
}

.project-list {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  padding-top: 4px;
  padding-left: 5px;
}

.project-location-homepage {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
  margin-bottom: 4px;
  margin-top: 10px;
}

.project-time-homepage {
  font-size: 12px;
  font-weight: 300;
  color: rgb(96, 96, 96);
}

.project-location-fa {
  font-size: 12px;
  color: rgb(96, 96, 96);
  padding-left: 12px;
}

.project-list-todo {
  font-size: 12px;
  color: rgb(96, 96, 96);
  padding-left: 12px;
  padding-top: 0px;
  margin-top: 0px;
}

.project-list-item {
  padding-bottom: 5px;
}

.project-list-title {
  font-size: 12px;
  font-weight: 600;
  color: rgb(96, 96, 96);
  padding-left: 12px;
}

.project-list-line {
  margin: 0px;
  padding: 0px;
}

.project-name-fa {
  padding-left: 8px;
  color: rgba(60, 60, 60, 0.8);
}

.project-image-cover-box {
  margin-bottom: 8px;
  position: relative;
}

.type-image {
  margin-bottom: 8px;
  padding-left: 5px;
  width: 50%;
  position: relative;
}

.project-image-cover {
  width: 100%;
  opacity: 0.85;
}

@media (max-width: 500px) {
  .project-image-cover {
    opacity: 1;
  }
}

/* PROJECTS END*/

/* FOOTER */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 40px;
  padding-top: 36px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 160px;
  background-color: rgb(45, 45, 45);

  max-width: 1200px;
  margin: 0 auto;
}

.footer-menu {
  padding-top: 36px;
  color: #999;
}

.footer-menu-header {
  padding-bottom: 24px;
  font-weight: 600;
  color: rgba(153, 153, 153, 0.95);
}

.footer-menu-list {
  font-size: smaller;
  padding-bottom: 10px;
}

/* footer-menu-list for non-mobile */
@media (min-width: 661px) {
  .footer-menu-list {
    font-size: smaller;
    padding-bottom: 10px;
  }
}

/* footer-menu-list for mobile */
@media screen and (min-width: 0px) and (max-width: 660px) {
  .footer-menu-list {
    font-size: smaller;
    padding-top: 6px;
    padding-bottom: 12px;
  }
}

.footer-menu-list-contacts {
  font-size: smaller;
  padding-bottom: 10px;
}


.footer-menu-list:hover {
  color: rgba(245, 222, 179, 1);
}

svg {
  fill: #e1e1e4;
}

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width:551px) and (max-width: 750px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 751px) and (max-width: 999px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
}

.socials-line {
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.socials-space {
  margin-left: 30px;

}

/* FOOTER END */