@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}
:root {
  --background: #ffffff;
  --background-delimiter: #f5f5f5;
  --text: #000000;
  --text-light: #646464;
  --main-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.1);
}

body.dark {
  --background: #333333;
  --background-delimiter: #2c2c2c;
  --text: #ffffff;
  --text-light: #b3b3b3;
  --main-shadow: 2px 2px 8px 2px rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, input, textarea, button {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.1rem;
  }
}

body {
  background-color: var(--background);
  color: var(--text);
  transition: background-color 0.3s ease;
}
body.dark .btn::after {
  background-image: url("../assets/img/arrow_light.svg");
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

main {
  padding-bottom: 40px;
}

.btn {
  border: none;
  padding: 5px 30px 5px 0;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  position: relative;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  position: absolute;
  top: 0;
  left: 0;
}
.btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../assets/img/arrow.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.btn:hover::before {
  animation: swipeLine 0.5s ease-in-out;
}
.btn:hover::after {
  transform: translateY(-50%) rotate(-45deg);
}

.flx {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.main_screen.bg_image {
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 40px;
}
@media (max-width: 768px) {
  .main_screen.bg_image {
    height: 50vh;
  }
}
.main_screen.bg_image h1 {
  color: white;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

header {
  display: flex;
  width: 100%;
  box-shadow: var(--main-shadow);
  justify-content: space-between;
}
header .burger {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
header > .flx {
  width: calc(100% - 80px);
}
header .logo {
  height: 20px;
  margin-right: auto;
  margin-left: 20px;
}
@media (max-width: 768px) {
  header .logo {
    height: 15px;
  }
}
header .logo img {
  height: 100%;
}
header nav {
  gap: 40px;
}
header nav a {
  display: block;
  color: var(--text);
  text-decoration: none;
  position: relative;
  font-weight: 600;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text);
  transition: 0.3s ease-in-out;
}
header nav a:hover::after {
  width: 100%;
}
header .lang a {
  display: none;
  padding: 0 20px;
  color: var(--text);
  font-weight: 700;
}
header .lang a.active {
  display: block;
}
header .switch_theme {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1/1;
  background: var(--text);
  cursor: pointer;
  margin-left: 20px;
}
@media (max-width: 768px) {
  header .switch_theme {
    width: 50px;
  }
}
header .switch_theme span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--background);
  border-radius: 50%;
  position: relative;
  transition: 0.3s ease-in-out;
}
header .switch_theme:hover span {
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
}

footer {
  padding: 40px 0;
  background-color: var(--background-delimiter);
}
footer a {
  color: var(--text-light);
  text-decoration: underline;
  font-weight: 400;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: calc(100% - 50px);
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
  }
}
footer .copy {
  font-size: 14px;
  font-weight: 300;
  max-width: 1200px;
  width: calc(100% - 50px);
  margin: 30px auto 0;
}
footer h4 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  footer h4 {
    margin-bottom: 20px;
  }
}
footer .container > div p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 15px;
}
@media (max-width: 768px) {
  footer .container > div p {
    margin-top: 8px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
}
.overlay .modal, .overlay .modal_submit {
  background: var(--background);
  padding: 20px;
  box-shadow: var(--main-shadow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  width: 500px;
  max-height: 90%;
  overflow-y: auto;
}
.overlay .modal ion-icon, .overlay .modal_submit ion-icon {
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.overlay .modal h3, .overlay .modal_submit h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.overlay .modal h3 + p, .overlay .modal_submit h3 + p {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}
.overlay .modal form, .overlay .modal_submit form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.overlay .modal form input, .overlay .modal form textarea, .overlay .modal_submit form input, .overlay .modal_submit form textarea {
  width: 100%;
  border: none;
  padding: 5px;
  border-bottom: 1px solid var(--text);
  background: none;
  color: var(--text);
  font-size: 1.2rem;
  outline: none;
}
.overlay .modal form input:focus, .overlay .modal form textarea:focus, .overlay .modal_submit form input:focus, .overlay .modal_submit form textarea:focus {
  border-bottom: 2px solid var(--text-light);
}
.overlay .modal form textarea, .overlay .modal_submit form textarea {
  resize: none;
  height: 150px;
}
.overlay .modal .btn, .overlay .modal_submit .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
.overlay .modal_submit {
  display: none;
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: var(--background);
  z-index: 10;
  transform: translateX(-120%);
  transition: 0.3s ease-in-out;
  padding: 20px 40px;
  box-shadow: var(--main-shadow);
}
.mobile_menu.active {
  transform: translateX(0);
}
.mobile_menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile_menu nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.5rem;
}
.mobile_menu ion-icon {
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

#not_found_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 300px);
  text-align: center;
}
#not_found_page h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #not_found_page h1 {
    font-size: 2rem;
  }
}

#home_page section:not(:first-of-type) {
  padding: 40px 0;
}
#home_page h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #home_page h2 {
    font-size: 1.8rem;
  }
}
#home_page .main_screen {
  height: 80vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  #home_page .main_screen {
    height: 60vh;
  }
}
#home_page .main_screen .main_slider {
  height: 100%;
  display: flex;
}
#home_page .main_screen .main_slider .slick-track,
#home_page .main_screen .main_slider .slick-list,
#home_page .main_screen .main_slider .slick-slide,
#home_page .main_screen .main_slider .slick-slide > div {
  height: 100%;
}
#home_page .main_screen .main_slider .slide {
  height: 100%;
}
#home_page .main_screen .main_slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page .main_screen .text {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 1;
  color: white;
}
@media (max-width: 768px) {
  #home_page .main_screen .text {
    left: 20px;
  }
}
#home_page .main_screen .text p {
  font-size: 1.2rem;
  margin: 20px 0;
  font-weight: 400;
  width: 70%;
}
@media (max-width: 768px) {
  #home_page .main_screen .text p {
    font-size: 0.95rem;
    width: 100%;
  }
}
#home_page .main_screen .text .btn {
  color: white;
}
#home_page .main_screen .text .btn::before {
  background-color: white;
}
#home_page .main_screen .text .btn::after {
  background-image: url("../assets/img/arrow_light.svg");
}
#home_page .description {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 70px auto;
}
@media (max-width: 768px) {
  #home_page .description {
    margin: 0 auto;
    flex-direction: column;
  }
}
#home_page .description .img {
  width: calc(40% - 20px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #home_page .description .img {
    width: 80%;
  }
}
#home_page .description .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#home_page .description p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  #home_page .description p {
    font-size: 1.2rem;
  }
}
#home_page .description p + a {
  margin: 20px auto 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
#home_page .light_type {
  text-align: center;
}
#home_page .light_type ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  #home_page .light_type ul {
    gap: 20px;
  }
}
#home_page .light_type ul li {
  width: calc((100% - 80px) / 3);
  border-radius: 10px;
  box-shadow: var(--main-shadow);
  overflow: hidden;
  display: flex;
}
@media (max-width: 768px) {
  #home_page .light_type ul li {
    width: 100%;
  }
}
#home_page .light_type ul li .img {
  width: 40%;
  aspect-ratio: 1/1;
  margin-right: 15px;
}
@media (max-width: 768px) {
  #home_page .light_type ul li .img {
    margin-right: 30px;
  }
}
#home_page .light_type ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page .light_type ul li p {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 768px) {
  #home_page .light_type ul li p {
    text-align: left;
  }
}
#home_page .light_type ul li p span {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
}
#home_page .light_type > a {
  margin-top: 40px;
}
#home_page .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page .projects {
  background: var(--background-delimiter);
}
#home_page .projects .project {
  padding: 0 15px;
}
#home_page .projects .project p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 10px 0 0;
  color: var(--text-light);
}
#home_page .advantages > .flx {
  flex-wrap: wrap;
  gap: 40px 20px;
}
@media (max-width: 768px) {
  #home_page .advantages > .flx {
    gap: 20px;
  }
}
#home_page .advantages > .flx > div {
  width: calc((100% - 80px) / 3);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #home_page .advantages > .flx > div {
    width: calc((100% - 40px) / 2);
  }
}
#home_page .advantages > .flx > div img {
  width: 100px;
  margin: 0 auto 20px;
}
#home_page .advantages > .flx > div span {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
  color: var(--text-light);
}
#home_page .reviews .review {
  padding: 0 30px;
  text-align: center;
}
#home_page .reviews .review img {
  margin: 0 auto 20px;
}
#home_page .reviews .review .text {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
#home_page .reviews .review .name {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-light);
}

#catalog_page .main_screen {
  background: url("/assets/img/catalog_bg.webp"), rgba(0, 0, 0, 0.39);
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  background-attachment: fixed;
}
#catalog_page .products {
  display: flex;
  align-items: start;
  gap: 40px;
  padding: 70px 0;
}
@media (max-width: 768px) {
  #catalog_page .products {
    padding: 40px 0;
    flex-direction: column;
  }
}
#catalog_page .products .product_listing {
  width: calc(70% - 20px);
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  #catalog_page .products .product_listing {
    width: 100%;
  }
}
#catalog_page .products .product_listing .product {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--background);
  padding: 15px;
  box-shadow: var(--main-shadow);
}
#catalog_page .products .product_listing .product img {
  width: 100%;
  aspect-ratio: 1/1;
}
#catalog_page .products .product_listing .product p:first-of-type {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
#catalog_page .products .product_listing .product p:last-of-type {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}
#catalog_page .products aside {
  width: calc(30% - 20px);
}
@media (max-width: 768px) {
  #catalog_page .products aside {
    order: -1;
    width: 100%;
  }
}
#catalog_page .products aside h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
#catalog_page .products aside ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#catalog_page .products aside ul li {
  list-style: none;
  font-weight: 300;
  color: var(--text-light);
  transition: all 0.3s ease-in-out;
  position: relative;
}
#catalog_page .products aside ul li a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.2;
}
#catalog_page .products aside ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2px;
  height: 0;
  background: var(--text);
  transition: all 0.3s ease-in-out;
}
#catalog_page .products aside ul li:hover {
  padding-left: 15px;
}
#catalog_page .products aside ul li:hover::before {
  height: 100%;
}
#catalog_page .products aside ul li span {
  font-size: 0.8rem;
}
#catalog_page .products aside ul + a {
  margin-top: 20px;
}

#contacts_page .map {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 400px;
}
#contacts_page .map iframe {
  width: 100%;
  height: 100%;
}
#contacts_page h1 {
  text-align: center;
  margin: 40px auto;
  width: 100%;
  max-width: 800px;
}
#contacts_page h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #contacts_page h3 {
    font-size: 1.5rem;
  }
}
#contacts_page h3 + p {
  font-size: 1.1rem;
  color: var(--text-light);
}
#contacts_page section:nth-of-type(2) > .flx {
  gap: 50px;
  align-items: start;
  margin: 60px 0;
}
@media (max-width: 768px) {
  #contacts_page section:nth-of-type(2) > .flx {
    margin: 30px 0;
    flex-direction: column;
  }
}
#contacts_page .contacts a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
}
#contacts_page .contacts a ion-icon {
  width: 25px;
  height: 25px;
}
#contacts_page .work_hours > .flx {
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
  margin-top: 10px;
}
#contacts_page .work_hours > .flx ion-icon {
  width: 25px;
  height: 25px;
  margin-top: 5px;
}
#contacts_page .work_hours > .flx li {
  list-style: none;
  font-size: 1.3rem;
}
#contacts_page .contact_form {
  margin-top: 30px;
}
#contacts_page .contact_form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}
#contacts_page .contact_form h2 + p {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}
#contacts_page .contact_form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 0 20px;
  max-width: 500px;
  margin: 15px auto 0;
}
#contacts_page .contact_form form input, #contacts_page .contact_form form textarea {
  width: 100%;
  border: none;
  padding: 5px;
  border-bottom: 1px solid var(--text);
  background: none;
  color: var(--text);
  font-size: 1.2rem;
  outline: none;
}
#contacts_page .contact_form form input:focus, #contacts_page .contact_form form textarea:focus {
  border-bottom: 2px solid var(--text-light);
}
#contacts_page .contact_form form textarea {
  resize: none;
  height: 150px;
}

#about_page .main_screen {
  background: url("../assets/img/about_bg.webp"), rgba(0, 0, 0, 0.39);
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  background-attachment: fixed;
}
#about_page .text_content {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  #about_page .text_content {
    gap: 20px;
  }
}
#about_page .text_content p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-light);
}
#about_page .text_content .img {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  #about_page .text_content .img {
    flex-direction: column;
    gap: 20px;
  }
}
#about_page .text_content .img > div {
  width: calc(30% - 15px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #about_page .text_content .img > div {
    width: 100%;
  }
}
#about_page .text_content .img > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#certification_page .main_screen {
  background: url("../assets/img/certification.webp"), rgba(0, 0, 0, 0.39);
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  background-attachment: fixed;
}
#certification_page > .container > p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  margin: 40px 0;
}
@media (max-width: 768px) {
  #certification_page > .container > p {
    font-size: 1rem;
  }
}
#certification_page ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #certification_page ul {
    gap: 10px;
    padding: 0;
  }
}
#certification_page ul li {
  list-style: none;
  width: calc((100% - 40px) / 3);
  flex-shrink: 0;
  background-color: var(--background-delimiter);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--main-shadow);
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  #certification_page ul li {
    width: calc((100% - 20px) / 2);
    padding: 10px;
  }
}
#certification_page ul li:hover {
  transform: translateY(-5px);
}
#certification_page ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#solutions_page .main_screen {
  background: url("../assets/img/solution.webp"), rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  background-attachment: fixed;
}
#solutions_page .type_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}
#solutions_page .type_list ul li {
  list-style: none;
  width: calc((100% - 20px) / 2);
  flex-shrink: 0;
  background-color: var(--background);
  padding: 0 0 20px;
  border-radius: 10px;
  box-shadow: var(--main-shadow);
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #solutions_page .type_list ul li {
    width: 100%;
  }
}
#solutions_page .type_list ul li .img {
  width: 100%;
  aspect-ratio: 5/3;
}
#solutions_page .type_list ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#solutions_page .type_list ul li p {
  font-size: 2rem;
  padding: 20px;
  line-height: 1.5;
  color: var(--text);
  text-transform: uppercase;
}
#solutions_page .type_list ul li a {
  margin-left: 20px;
}

.solution_type.text_content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 20px 0;
}

@keyframes swipeLine {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */