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

html, button, input, textarea {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
  transform-style: preserve-3d;
}

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

@media (min-width: 769px) {
  .mb_show {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .dt_show {
    display: none !important;
  }
}
.container {
  width: calc(100% - 50px);
  max-width: 1200px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
  position: relative;
}
h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #fab702;
  margin-top: 10px;
  bottom: -10px;
  left: 0;
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

.btn {
  display: inline-block;
  padding: 20px;
  background: #fab702;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.95;
}
@media (max-width: 768px) {
  .btn {
    padding: 15px;
    font-size: 12px;
  }
}

.dark_bg {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform-style: preserve-3d;
}
.dark_bg.show {
  display: flex;
}
.dark_bg > div {
  display: none;
}
.dark_bg > div.active {
  display: block;
}
.dark_bg .thank_you, .dark_bg .contact_popup {
  width: 95%;
  max-width: 500px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dark_bg .thank_you h3, .dark_bg .contact_popup h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fab702;
}
.dark_bg .thank_you p, .dark_bg .contact_popup p {
  font-size: 18px;
  margin-bottom: 20px;
}
.dark_bg .thank_you .btn, .dark_bg .contact_popup .btn {
  margin-top: 20px;
}
.dark_bg .thank_you .fa-times, .dark_bg .contact_popup .fa-times {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}
.dark_bg .thank_you input, .dark_bg .contact_popup input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
}
.dark_bg .thank_you input:not(:last-of-type), .dark_bg .contact_popup input:not(:last-of-type) {
  margin-bottom: 15px;
}

.request_call {
  opacity: 0;
  pointer-events: none;
  position: sticky;
  bottom: 40px;
  left: 40px;
  width: 70px;
  height: 70px;
  background: #fab702;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 500;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.request_call:hover {
  background: #ffcc00;
}
.request_call.active {
  opacity: 1;
  pointer-events: all;
}

header {
  background-color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
header .logo {
  height: 60px;
}
header .logo img {
  height: 100%;
}
header.fix {
  padding: 10px 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
header .container {
  align-items: stretch;
}
header nav > ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-left: auto;
  height: 100%;
}
header nav > ul > li, header nav > ul > li a {
  color: #999;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  position: relative;
  display: block;
}
header nav > ul > li + ul, header nav > ul > li a + ul {
  display: none;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  width: auto;
}
header nav > ul > li + ul li, header nav > ul > li a + ul li {
  width: -moz-fit-content;
  width: fit-content;
}
header nav > ul > li:hover, header nav > ul > li a:hover {
  color: #fab702;
}
header nav > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header nav > ul > li:hover ul {
  display: flex;
}
header nav > ul > li > ul {
  display: none;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  top: 100%;
  left: 0;
  width: auto;
  position: absolute;
  padding: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
header .lang {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-left: 60px;
}
header .lang p {
  font-size: 1rem;
  color: #999;
  font-weight: 600;
  color: #fab702;
}
header .lang a {
  color: #999;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
header .lang a:hover {
  color: #fab702;
}
header .burger {
  align-self: center;
  color: #999;
  font-size: 22px;
}
@media (max-width: 768px) {
  header .logo {
    height: 35px;
  }
  header .logo img {
    height: 100%;
  }
}

footer {
  background: #111;
  padding: 40px 0;
  z-index: 1;
  position: relative;
  margin-bottom: -70px;
}
footer .container {
  display: flex;
  align-items: start;
  -moz-column-gap: 3%;
       column-gap: 3%;
  position: relative;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
}
footer .container > div:not(.social) {
  width: 22.75%;
}
@media (max-width: 768px) {
  footer .container > div:not(.social) {
    width: 100%;
  }
}
footer .container > div:not(.social) p, footer .container > div:not(.social) a, footer .container > div:not(.social) ul {
  color: #eee;
  font-size: 13px;
  line-height: 1.5;
}
footer h4 {
  color: #eee;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
footer .social {
  position: absolute;
  left: 0;
  top: -60px;
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 10px 18px;
  background: #fab702;
  color: #111;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.2);
}
footer .social p {
  font-size: 13px;
  font-weight: 300;
}
footer .social ul {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #111;
  color: #111;
  font-size: 13px;
  text-decoration: none;
}
footer .about p {
  font-weight: 300;
  color: #999 !important;
}
footer .menu ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
footer .menu ul li {
  width: -moz-fit-content;
  width: fit-content;
}
footer .contacts ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
  color: #999 !important;
}
footer .contacts ul i {
  margin-right: 8px;
}
footer .contacts ul li:last-of-type {
  cursor: pointer;
  text-decoration: underline;
}
footer .work_time ul {
  display: flex;
  flex-direction: column;
  color: #999 !important;
}
footer .work_time ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
footer .work_time ul li:not(:last-child) {
  border-bottom: 1px solid #333;
}

.mobile_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 80px 25px 25px;
  transform-style: preserve-3d;
}
.mobile_menu.show {
  transform: translateX(0);
}
.mobile_menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.mobile_menu a {
  color: #999;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.mobile_menu .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
}
.mobile_menu .lang p {
  font-weight: 600;
  color: #fab702;
  font-size: 18px;
}

#main_screen {
  height: 80vh;
  position: relative;
  transform-style: preserve-3d;
}
@media (max-width: 768px) {
  #main_screen {
    height: 70vh;
  }
}
#main_screen::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url(../assets/img/main_block.mp4) center center no-repeat;
  background-size: cover;
  transform: translateZ(-1px) scale(2.02);
}
@media (max-width: 768px) {
  #main_screen::before {
    transform: translateZ(-1px) scale(2.2);
  }
}
#main_screen video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transform: translateZ(-1px) scale(2.02);
}
@media (max-width: 768px) {
  #main_screen video {
    transform: translateZ(-1px) scale(2.2);
  }
}
#main_screen .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#main_screen h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  width: 70%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #main_screen h1 {
    font-size: 30px;
    width: 100%;
  }
}
#main_screen p {
  width: 70%;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #main_screen p {
    width: 100%;
    font-size: 14px;
  }
}

#services {
  padding: 100px 0;
  z-index: 1;
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  #services {
    padding: 50px 0;
  }
}
#services h2 + p {
  margin-bottom: 20px;
  font-size: 18px;
}
#services ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  width: 100%;
}
#services ul li {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  #services ul li {
    width: calc((100% - 30px) / 2);
  }
}
#services ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
#services ul li a:hover {
  color: #fab702;
}
@media (max-width: 768px) {
  #services ul li a {
    font-size: 16px;
  }
}
#services ul li img {
  width: 100%;
  aspect-ratio: 1/0.6;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

#cta {
  position: relative;
  height: 50vh;
  transform-style: preserve-3d;
  padding: 100px 0;
  z-index: -1;
}
@media (max-width: 768px) {
  #cta {
    height: 60vh;
    padding: 50px 0;
  }
}
#cta::before {
  background: linear-gradient(to bottom, rgba(255, 155, 4, 0.5), rgba(255, 155, 4, 0.5)), url(../assets/img/chemical.jpg) center center no-repeat;
  transform-origin: center center;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 150%;
  transform: translateZ(-1px) scale(2.5);
  z-index: -1;
}
#cta .container {
  height: 100%;
  flex-direction: column;
  align-items: center;
}
#cta h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#cta h2::after {
  display: none;
}
@media (max-width: 768px) {
  #cta h2 {
    font-size: 20px;
  }
}
#cta .btn {
  background-color: #fff;
  color: #fab702;
}

#advantages {
  padding: 100px 0;
  z-index: 1;
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  #advantages {
    padding: 50px 0;
  }
}
#advantages ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  width: 100%;
  align-items: start;
}
#advantages ul li {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  #advantages ul li {
    width: 100%;
  }
}
#advantages ul li img {
  display: block;
  width: 40%;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  #advantages ul li img {
    width: 30%;
  }
}
#advantages ul li p {
  font-size: 18px;
  color: #333;
  text-align: center;
}
@media (max-width: 768px) {
  #advantages ul li p {
    font-size: 16px;
  }
}

#works {
  padding: 100px 0;
  background-color: #111;
}
@media (max-width: 768px) {
  #works {
    padding: 50px 0;
  }
}
#works h2 {
  color: #fff;
}
#works .slider {
  display: flex;
}
#works .slider img {
  width: 30%;
}
@media (max-width: 768px) {
  #works .slider img {
    width: 100%;
  }
}

#about {
  padding: 100px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  #about h2 + div {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
#about .about_text {
  width: 50%;
  margin-right: 30px;
}
@media (max-width: 768px) {
  #about .about_text {
    width: 100%;
    margin-right: 0;
  }
}
#about .about_text p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #about .about_text p {
    font-size: 14px;
  }
}
#about .about_img {
  width: calc(50% - 30px);
  aspect-ratio: 1/0.5;
}
@media (max-width: 768px) {
  #about .about_img {
    width: 100%;
  }
}
#about .about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-404 {
  text-align: center;
  padding: 100px 0;
}
#page-404 h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fab702;
  margin-bottom: 20px;
}
#page-404 p {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

#contact-page .main_screen {
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../assets/img/contact-bg.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#contact-page .main_screen h1 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  width: calc(100% - 50px);
  margin: 0 auto;
}
#contact-page section.container {
  padding: 50px 0;
}
#contact-page section.container > .flex {
  align-items: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 768px) {
  #contact-page section.container > .flex {
    flex-direction: column;
    row-gap: 30px;
  }
}
#contact-page section.container form {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  #contact-page section.container form {
    width: 100%;
  }
}
#contact-page section.container form input, #contact-page section.container form textarea {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: calc(50% - 7.5px);
}
@media (max-width: 768px) {
  #contact-page section.container form input, #contact-page section.container form textarea {
    width: 100%;
  }
}
#contact-page section.container form textarea {
  width: 100%;
  height: 150px;
  resize: none;
}
#contact-page section.container .location > .flex {
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#contact-page section.container .location > .flex div {
  width: calc(40% - 10px);
}
#contact-page section.container .location > .flex div:last-of-type {
  width: calc(60% - 10px);
}
@media (max-width: 768px) {
  #contact-page section.container .location > .flex div {
    width: 100%;
  }
}
#contact-page section.container .location > .flex div i {
  margin-right: 10px;
}
#contact-page section.container .location > .flex div p {
  color: #111;
  margin-bottom: 10px;
}
#contact-page section.container .location > .flex div a {
  display: block;
  color: #fab702;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
#contact-page section.container .location > .flex div a:hover {
  color: #111;
}
#contact-page section.container .location h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#contact-page section.container .location iframe {
  width: 100%;
}

#about-page .main_screen {
  height: 70vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../assets/img/about-bg.jpg) center center no-repeat;
  background-size: cover;
}
#about-page .main_screen .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#about-page .main_screen h1 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #about-page .main_screen h1 {
    font-size: 30px;
    width: 100%;
  }
}
#about-page .main_screen p {
  color: #fff;
  font-size: 20px;
  width: 70%;
}
@media (max-width: 768px) {
  #about-page .main_screen p {
    font-size: 16px;
    width: 100%;
  }
}
#about-page h2 {
  margin-top: 50px;
}
#about-page .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
#about-page .specs li {
  width: calc((100% - 30px) / 2);
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: stretch;
}
@media (max-width: 768px) {
  #about-page .specs li {
    width: 100%;
  }
}
#about-page .specs li b {
  color: #fab702;
  margin-bottom: 10px;
  display: inline-block;
}
#about-page .specs li .img {
  width: 20%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  padding: 20px;
  align-self: start;
}
@media (max-width: 768px) {
  #about-page .specs li .img {
    padding: 5px;
  }
}
#about-page .specs li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about-page .list {
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#about-page .list li {
  list-style: disc;
}
#about-page .final {
  margin: 30px 0 50px;
  font-size: 18px;
}

.service_main {
  height: 60vh;
  position: relative;
  transform-style: preserve-3d;
}
.service_main::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../assets/img/agro-bg.jpg) center center no-repeat;
  background-size: cover;
  transform: translateZ(-1px) scale(2.5);
}
.service_main#chemical_waste::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../assets/img/chemical-bg.jpg) center center no-repeat;
  background-size: cover;
}
.service_main#farmacy_waste::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../assets/img/farm-bg.jpg) center center no-repeat;
  background-size: cover;
}
.service_main .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service_main h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .service_main h1 {
    font-size: 25px;
    width: 100%;
  }
}

.service_content {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .service_content {
    padding: 30px 0;
  }
}
.service_content .container {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: start;
}
@media (max-width: 768px) {
  .service_content .container {
    flex-direction: column;
    row-gap: 30px;
  }
}
.service_content .left-menu {
  position: sticky;
  top: 80px;
  width: 25%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service_content .left-menu {
    position: relative;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 3;
  }
}
.service_content .left-menu li a {
  color: #777;
  padding: 15px 20px 15px 0;
  display: block;
  text-decoration: none;
}
@media (max-width: 768px) {
  .service_content .left-menu li a {
    padding: 10px 15px 10px 0;
  }
}
.service_content .left-menu li a:hover {
  color: #fab702;
}
.service_content .left-menu li span {
  padding: 15px 20px 15px 0;
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  color: #fab702;
  position: relative;
}
@media (max-width: 768px) {
  .service_content .left-menu li span {
    padding: 10px 15px 10px 0;
  }
}
.service_content .left-menu li span::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  color: #fab702;
  top: 0;
  right: 10px;
  background: url(../assets/img/next.svg) center center no-repeat;
  background-size: contain;
}
.service_content .content p {
  margin-bottom: 20px;
  line-height: 1.5;
}
.service_content .content ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.service_content .content ul li {
  padding-left: 25px;
  line-height: 1.5;
  font-size: 15px;
  position: relative;
}
.service_content .content ul li::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 0;
  background: url(../assets/img/recycle.svg) center center no-repeat;
  background-size: contain;
}/*# sourceMappingURL=style.css.map */