body, h1, h2, h3, h4, p, ul, ol, li {
    margin: 0;
    padding: 0;
    }
*, *::before, *::after {
    box-sizing: border-box;
}
a, input, button {
    transition: all 0.3s ease-out;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .submit, p, ul, li, .copyright, span, .percentage {
    font-family: 'Quicksand', sans-serif;
}
a, button, textarea, input, .submit, label, .counter-value{
    font-family: 'Open Sans', sans-serif;
}
body {
    background: #EBF3FE;
}
/**header**/
.header_contact .container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.left_header_contact, .left_header_contact a {
    display: flex;
    padding: 0 40px 0 0;
    align-items: center;
}
.left_header_contact i {
    color: #3AA8DB;
    font-size: 20px;
    padding: 0 20px 0 0;
}
.left_header_contact p {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
}
.social_header i {
    color: #FFF;
    font-size: 15px;
    background: #3AA8DB;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 10px;
}
.social_header, .full_box_treat, .number__two {
    display: flex;
}
:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #2b72fb;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.menu ul, .language li {
  list-style: none;
}
.menu a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}
.btn {
  display: block;
  color: #FFF;
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  background: #41A62A;
}
.right-container a {
    color: #fff;
}
.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}
.menu img {
    width: 50px;
}
.logo {
  margin-right: 1.5rem;
}
.logo:hover {
    opacity: 0.7;
}
#nav-menu {
  border-bottom: var(--border);
}
.header-menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 90px;
    padding: 4.0rem 3rem;
    width: 80%;
    margin: 35px auto;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.menu {
  position: relative;
}
.menu i {
    font-size: 12px;
    padding: 0 5px;
}
.menu-bar li:first-child .dropdown {
  min-width: 145px;
}
.menu-bar .dropdown-link-title {
  font-weight: 600;
}
.menu-bar .nav-link {
    color: #313C4C;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
}
.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: #3AA8DB;
}
.nav-start,
.nav-end,
.menu-bar,
.right-container {
  display: flex;
  align-items: center;
}
.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}
.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}
.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}
.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}
.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
  align-items: center;
}
.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}
.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.right-container img {
  border-radius: 50%;
}
#hamburger {
    display: none;
    padding: 0.5rem;
    margin-left: 1rem;
    font-size: 1.9rem;
}
.hamburger-line {
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--dark-grey);
    margin-bottom: 5px;
    border-radius: 3px;
}
@media (max-width: 1024px) {
    .header-menu .container {
        width: 100%;
    }
    #hamburger {
        display: block;
    }
    .container {
        padding: 1.2rem;
    }
    .menu {
        display: none;
        position: absolute;
        top: 128px;
        left: 0;
        min-height: 100vh;
        width: 100%;
        background: #fff;
        z-index: 2;
    }
    .dropdown {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }
    .menu-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1rem;
        padding: 1rem;
    }
    .menu-bar .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }
    .menu.show,
    .dropdown.active {
        display: block;
    }
    .dropdown ul {
        padding-left: 0.3rem;
    }
    .menu-bar li:first-child .dropdown {
        min-width: 100%;
    }
    .menu-bar > li:not(:last-child) {
        padding-bottom: 0.5rem;
        border-bottom: var(--border);
    }
    .padding__about__top, .document__top, .list {
        padding-top: 0px!important;
    }
}


    @media (max-width: 600px) {
    .right-container {
        display: none;
    }
}

/**Slider**/
.slider-container {
    position: relative;
    width: 100%;
    height: 770px;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    flex: 0 0 100%;
    height: 765px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}
.slide h1 {
    font-size: 80px;
    padding-bottom: 20px;
}
.slide p {
    width: 530px;
}
.slide .text {
    text-align: -webkit-center;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}
.arrow-left {
    left: 10px;
}
.arrow-right {
    right: 10px;
}
/**about**/
.about .container {
    height: 600px;
    padding-top: 200px;
}
.text__title__green {
    color: #41A62A;
    font-size: 30px;
    font-weight: 700;
}
.text__h3 {
    color: #313C4C;
    font-size: 30px;
    font-weight: 700;
    padding: 25px 0;
    width: 555px;
}
.text__h3__about {
    color: #313C4C;
    font-size: 25px;
    font-weight: 700;
    padding: 25px 0;
    width: 400px;
}
.text_description {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 25px;
}
.about .container, .products .container, .facebook .container, .partners .container, .support .container, .contactform .container, .firm .container, .water_treatment .container, .list .container, .document .container {
    width: 75%;
    margin: auto;
    justify-content: space-between;
    display: flex;
}
.about_image img {
    width: 500px;
    z-index: 1;
    position: relative;
}
.rectangle-green{
    border: 10px solid #41A62A;
    width: 500px;
    height: 383px;
    top: -340px;
    position: relative;
    left: 55px;
}
.rectangle-blue{
    border: 10px solid #3AA8DB;
    width: 500px;
    height: 383px;
    top: -340px;
    position: relative;
    left: 55px;
}
.check {
    width: 250px;
}
.check img, .check__two img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}
.about_description {
    width: 750px;
    padding: 25px 0;
}
.pruducts_text {
    width: 930px;
}
.about_description__full {
    display: block;
    margin: auto;
}
.about_description ul li {
    padding: 5px 0;
}
.check ul li, .check__two ul li {
    list-style: none;
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    display: flex;
    align-items: center;
    width: 215px;
}
.about__box, .signature_box {
    display: flex;
    justify-content: space-between;
}
.signature_box {
    padding-top: 25px;
}
.name p {
    color: #313C4C;
    font-family: 'Clicker Script', cursive;
    font-size: 60px;
    font-weight: 400;
    transform: rotate(-35deg);
}
.name_two p {
    color: #313C4C;
    font-size: 20px;
    font-weight: 700;
}
.name_two p span {
    color: #313C4C;
    font-size: 14px;
    font-weight: 700;
}
.btn__green {
    border-radius: 10px;
    background: #41A62A;
    height: 50px;
    color: #fff;
    text-align: -webkit-center;
    font-size: 20px;
    font-weight: 600;
    width: 180px;
    position: relative;
    line-height: 50px;
}
.box:hover {
    border-radius: 10px;
    height: 50px;
    color: #fff;
    text-align: -webkit-center;
    width: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    background-color: #3AA8DB;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.box i {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 200px;
    background-color: inherit;
    transition: 
        transform 0.4s linear;
    overflow: hidden;
}
.box i:before,
.box i:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}
.box:hover i:before {
    border-radius: 46%;
    background-color: rgba(49, 60, 76, 0.2);
    animation: animate 5s linear infinite;
}
.box:hover i:after {
    border-radius: 40%;
    background-color: #313C4C;
    animation: animate 10s linear infinite;
}
@keyframes animate {
0% {
    transform: 
    translate(-50%, -75%) 
    rotate(0deg);
}
100% {
    transform: 
    translate(-50%, -75%) 
    rotate(360deg);
}
}
.name, .name_two {
    padding: 0 25px;
}
/**services**/
.services {
    padding-top: 200px;
}
.text__title__blue {
    color: #3AA8DB;
    font-size: 30px;
    font-weight: 700;
}
.services, .facebook, .center_text {
    text-align: -webkit-center;
}
.pulsate {
    animation: pulse 2s infinite;
    position: relative;
    width: 600px;
}
.pulsate img {
    width: 600px;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.services_info img {
    width: 50px;
}
.services_info h4 {
    color: #313C4C;
    font-size: 25px;
    font-weight: 700;
    padding: 10px 0;
}
.services_info p {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
    height: 120px;
}
.services_info_box {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: auto;
    align-items: center;
}
.services_info {
    width: 300px;
}
.services_info a {
    color: #3AA8DB;
    font-size: 20px;
    font-weight: 700;
}
.services_info a:hover {
    color: #41A62A;
}
/**products**/
.product_background, .water_treatment_back {
    background: url(../img/wave.png) center center no-repeat;
    background-size: cover;
    height: 1015px;
}
.products .container {
    padding-top: 200px;
    align-items: center;
}
.play-button .label {
    background: #41A62A;
}
.waterball, .waterball___two {
    position: absolute;
    left: -90px;
}
.image__absolute {
    top: 380px;
    position: relative;
}
/**facebook**/



/**partners**/
.title__partners {
    display: flex;
    margin: auto;
    align-items: center;
    place-content: center;
    width: 600px;
}
.partners .container {
    display: block;
}
.partners p {
    text-align-last: left;
}
.line__two {
    padding: 0 25px;
}
.partners__image, .support__image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners__image img, .support__image img {
    padding: 0 50px;
}
.support, .partners {
    text-align: -webkit-center;
    padding: 50px 0;
}
.support__image  {
    margin: auto;
    padding-top: 50px;
}
.support__image img {
    width: 450px;
}
.text__p {
    padding: 25px 0 50px;
}
.padding__top {
    padding-top: 150px;
}
/**footer**/
.background_footer {
    background: url(../img/footerwave.png) center center no-repeat;
    background-size: contain;
    background-color: white;
    background-position-y: 0px;
}
.full_footer .container {
    width: 75%;
    margin: auto;
    display: flex;
    padding-top: 100px;
}
.full_footer_menu {
    display: flex;
    margin: auto;
}
.contact_footer h4, .menu_footer h4 {
    color: #313C4C;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}
.contact_footer a {
    display: flex;
    padding: 15px 0;
    width: 200px;
}
.menu_footer ul li a:hover, .contact_footer a:hover {
    color: #3AA8DB;
}
.contact_footer i {
    font-size: 25px;
    color: #3AA8DB;
    padding-right: 10px;
    width: 45px;
}
.menu_footer ul li {
    list-style: none;
    padding: 5px 0;
}
.menu_footer ul li a, .contact_footer p {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
}
.contact_footer, .menu_footer, .logo__footer {
    width: 450px;
}
.text_footer {
    display: flex;
    margin: auto;
    justify-content: space-around;
    padding: 100px 0;
}
.footer_line {
    margin: auto;
    display: flex;
    justify-content: center;
}
.text_footer p {
    color: #313C4C;
    font-size: 25px;
    font-weight: 700;
}
.text_footer span {
    color: #3AA8DB;
}
.footer_btn, .button__404 {
    color: #fff;
    background: #3AA8DB;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}
.footer_btn:hover, .button__404:hover {
    background: #41A62A;
}
.copy .container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 75%;
    padding: 40px 0;
    align-items: center;
}
.copyright, .webzen {
    color: #313C4C;
    font-size: 14px;
    font-weight: 700;
    width: 440px;
}
.socialicons_footer i, .document i {
    color: #FFF;
    font-size: 18px;
    background: #3AA8DB;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 10px;
}
.socialicons_footer {
    display: flex;
    width: 400px;
    justify-content: center;
}
.socialicons_footer a:hover, .social_header a {
    scale: 1.1;
}
.webzen {
    text-align: -webkit-right;
}
.webzen a {
    color: #3AA8DB;
}
/**page-contact**/
.background_header {
    background: url(../img/dgs.jpg) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.one-intro {
    background: url(../img/header1.png) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.two-intro {
    background: url(../img/dgs.jpg) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.three-intro {
    background: url(../img/cistirnavody-01.jpg) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.four-intro {
    background: url(../img/molservis.jpg) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.five-intro {
    background: url(../img/headerservice.jpg) center center no-repeat;
    background-size: cover;
    height: 80vh;
}
.background_header .container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: -webkit-center;
}
.background_header h1 {
    color: #FFF;
    font-size: 80px;
    font-weight: 700;
}
.cont__icon i {
    font-size: 30px;
    color: #41A62A;
    padding: 0 20px;
}
.conct__text {
    color: #313C4C;
    font-size: 20px;
    font-weight: 700;
}
.conct__text a {
    color: #313C4C;
    font-size: 20px;
    font-weight: 700;
}
.contact_info {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_box .container {
    width: 50%;
    margin: auto;
    justify-content: space-between;
    display: flex;
    padding: 100px 0;
}
input, textarea {
    padding: 15px 100px;
    border: 1px solid #dbdbdb;
    height: auto;
    padding: 0.9375rem 1.25rem;
    caret-color: #41A62A;
    color: #000;
    line-height: 1.375rem;
    outline-color: #41A62A;
    width: 460px;
    font-size: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    margin: 10px 0;
}
textarea {
    outline-color: #41A62A;
    padding: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px!important;
    font-size: 16px;
    width: 460px;
    border-radius: 30px;
    background: #F4F4F4;
    resize: none;
}
input, textarea {
    transition: background-color 0.3s, filter 0.3s;
}
.input-clicked {
    box-shadow: none;
    background: linear-gradient(152deg, #EEEEFE 100%, #FAFDFF 57.18%, #EEEEFE 100%);
}
.form-group-second {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 400px;
}
.wpcf7-submit {
    background: #41A62A;
    color: #fff!important;
    font-weight: 500;
    text-transform: uppercase;
    width: 200px!important;
    border-radius: 5px!important;
    margin-top: 25px;
    cursor: pointer;
    display: flex;
    place-content: center;
}
.wpcf7-submit:hover {
    background: transparent;
    color: #78B025!important;
    border: none;
    box-shadow: none;
}
.wpcf7-checkbox input  {
    width: 20px!important;
    height: 20px!important;
    margin-right: 25px!important;
} 
.wpcf7-list-item {
    margin: auto;
}
.contactform .container {
    justify-content: center;
}
.placeSubmit-form-group {
    text-align-last: center;
}
.formular {
    text-align: -webkit-center;
}
.left_info_firm_back {
    background: #3AA8DB;
    padding: 50px;
    width: 450px;
}
.left_info_firm_back span {
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    padding: 25px 0;
}
.left_info_firm_back p {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    padding: 3px 0;
}
.left_info_firm h5 {
    color: #41A62A;
    font-size: 35px;
    font-weight: 700;
    width: 400px;
}
.google_maps h5 {
    color: #313C4C;
    font-size: 35px;
    font-weight: 700;
}
.left_cont_text {
    padding: 30px 0;
}
/**persons**/
.persons .container {
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    padding: 50px 0;
}
.persons__icon img {
    width: 80px;
}
.persons__href {
    display: grid;
}
.left_persons, .right_persons {
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.persons__text__full {
    padding: 0 50px;
    width: 350px;
}
.persons_info ul li {
    list-style: none;
    padding: 3px 0;
}
.persons__text__full h4 {
    color: #41A62A;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 5px;
}
.persons__text__full p {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
}
.persons__href a {
    color: #313C4C;
    font-family: Quicksand;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 5px 0;
}
.persons__href i {
    padding-right: 10px;
}
.persons__line {
    width: 2px;
    height: 85px;
    background: #313C4C;
}
.persons {
    display: grid;
    justify-items: center;
}
.persons_info {
    padding-left: 50px;
}
/**page-upravna-vody**/
.text__title__green__services {
    color: #41A62A;
    font-size: 25px;
    font-weight: 700;
}
.text__title__blue__services {
    color: #3AA8DB;
    font-size: 25px;
    font-weight: 700;
}
.treat_title {
    display: flex;
    align-items: center;
}
.treat_title img {
    width: 20px;
    height: 20px;
}
.treat_title p {
    color: #3AA8DB;
    font-size: 20px;
    font-weight: 700;
    padding-left: 35px;
}
.treat_img_back {
    background: #3AA8DB;
    padding: 10px;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    place-content: center;
}
.treat_desc {
    color: #313C4C;
    font-size: 16px;
    font-weight: 700;
    width: 325px;
    padding-top: 25px;
}
.left__water_treat {
    width: 650px;
}
.box_treat {
    padding: 25px 25px 25px 0;
}
.counter-one {
    width: 250px;
    height: 150px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border-radius: 20px;
    text-align-last: center;
    display: flex;
    justify-content: right;
    margin: 0 5px;
    padding-right: 60px;
    color: #fff;
}
.counter-value, .numText {
    color: #3AA8DB;
    font-size: 40px;
    font-weight: 700;
}
.numTextBottom p {
    color: #313C4C;
    font-size: 25px;
    font-weight: 700;
    text-align-last: left;
}
#counter {
    align-self: center;
    font-size: 25px;
}
.bottomNumber span {
    font-size: 60px;
    line-height: 72px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 5px 4px 5px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    right: -160px;
    position: relative;
    z-index: -1;
}
.number img {
    width: 30px;
}
.number .container {
    align-items: center;
    margin: auto;
    width: 75%;
    justify-content: right;
    display: flex;
}
.number_icon {
    margin-right: 25px;
}
.number__two {
    align-items: center;
}
.list ul li {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #313C4C;
    list-style: none;
    padding: 5px 0;
}
.list ul li img {
    width: 25px;
    margin-right: 15px;
}
.left_list, .right_list {
    width: 675px;
    text-align-last: left;
    padding: 70px 0;
}
.water_treatment_back {
    padding-top: 260px;
}
.about__box__desc {
    display: flex;
}
.check__two {
    padding-right: 100px;
}
.systems__info {
    padding: 20px 0;
}
.document {
    width: 70%;
    margin: auto;
    text-align: center;
}
.document .container {
    justify-content: center;
    padding: 250px 0 50px;
}
.document a {
    display: flex;
    align-items: center;
    color: #3AA8DB;
    font-weight: 600;
    font-size: 20px;
}
/**timelines**/
.timelines .container {
    width: 80%;
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}
.timelines:before {
    content: '';
    position: absolute;
    top: 1100px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 2000PX;
    background: #CCD1D9;
    z-index: 1;
}
.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}
.timeline-block-right {
    float: right;
}
.timeline-block-left {
    float: left;
    direction: rtl
}
.marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: #3AA8DB;
    margin-top: 10px;
    z-index: 2;
}
.timeline-content {
    width: 95%;
    padding: 0 15px;
    color: #666
}
.timeline-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #313C4C;
    font-size: 25px;
    font-weight: 700;
}
.timeline-content span {
    font-size: 15px;
    color: #41A62A;
    font-weight: 700;
}
.timeline-content p {
    font-size: 16px;
    line-height: 1.5em;
    word-spacing: 1px;
    color: #888;
    font-weight: 600;
    margin-top: 5px;
    width: 600px;
}







/**mediascreen**/
@media screen and (max-width: 2100px) {
    .products .container {
        width: 70%;
    }
    .right_water_image img {
        width: 550px;
    }
    .contact_box .container {
        width: 75%;    
    }
    .about .container, .subsidy__eu .container {
        width: 85%!important;
    }
}
@media screen and (max-width: 1750px) {
    .about_image img {
        width: 380px;
    }
    .rectangle-green {
        width: 380px;
        height: 291px;
        top: -250px;
    }
    .rectangle-blue {
        width: 380px;
        height: 291px;
        top: -250px;
    }
    .services_info_box, .full_footer .container, .water_treatment .container, .list .container, .subsidy__eu .container {
        width: 95%!important;
    }
    .sketchfab-embed-wrapper iframe {
        width: 380px!important;
        height: 291px!important;
    }
    .waterball {
        left: -45px !important;
        top: 500px !important;
        width: 230px !important;
    }
    .about .container, .products .container {
        width: 80%!important;
    }
}
@media screen and (max-width: 1600px) {
    .header-menu .container {
        width: 95%;
    }
    .slide h1 {
        font-size: 60px;
    }
    .slide {
        height: 560px;
    }
    .arrow {
        top: 35%;
    }
    .about_description {
        width: 600px;
    }
    .about .container {
        padding-top: 0;
        height: 680px;
        align-items: center;
        width: 85%!important;
    }
    .services_info {
        width: 195px;
    }
    .pruducts_text, .timeline-content p {
        width: 100%;
    }
    .contact_box .container, .firm .container, .persons .container {
        width: 90%;    
    }
    .services_info p {
        height: 260px;
        display: flex;
        align-items: center;
    }
    .services {
        padding-top: 50px;
    }
    .water_treatment_back {
        padding-top: 0px;
    }
    .padding__about__top {
        padding-top: 200px;
    }
    .about__box__desc {
        display: block;
    }
    .document__top {
        padding-top: 250px;
    }
    .subsidy__image img {
        width: 400px!important;
    }
}
@media screen and (max-width:1350px) {
    .header_contact {
        display: none;
    }
    .header-menu .container {
        margin: auto;
        width: 100%;
    }
    .about .container {
        flex-direction: column-reverse;
        top: 0px;
        position: relative;    
        align-items: center;
        height: auto;
    }
    .about_image {
        top: 100px;
        position: relative;
    }
    .partners__image img, .support__image img {
        width: 350px;
    }
    .footer_line img, .timelines .container {
        width: 90%;
    }
    .text_footer p {
        font-size: 20px;
    }
    .contact_footer, .menu_footer, .logo__footer {
        width: 280px;
    }
    .background_header h1 {
        font-size: 40px;
    }
    .background_header {
        height: 405px;
    }
    .right_water_image img, .google_maps iframe {
        width: 400px;
    }
    .left_list, .right_list {
        width: 100%;
    }
    .about__top__products {
        position: relative;
        top: 200px;
    }
    .about__top__products__two {
        position: relative;
        padding-top: 600px;
    }
    .conct__text, .left_info_firm_back p {
        font-size: 16px;
    }
    .left_info_firm_back {
        width: 350px;
    }
    .persons .container {
        display: block;
    }
    .left_persons, .right_persons {
        justify-content: center;
    }
    .padding__about__top__two {
        position: relative;
        top: 500;
    }
    .padding__top {
        padding-top: 0px;
    }
    .document .container {
        padding: 50px 0 50px;
    }
    .timelines:before {
        top: 505px;
        height: 2200px;
    }
    .slider-container {
        height: 580px;
    }
    .timeline-content {
        width: 450px;
    }
}
@media screen and (max-width: 1200px) {
    .water_treatment .container, .subsidy__eu .container {
        display: block!important;
    }
    .right_water_image {
        text-align: -webkit-center;
    }
    .left__water_treat, .text__h3 {
        width: 100%;
    }
    .number .container {
        width: 90%;
        justify-content: center;
        padding-top: 75px;
    }
    .conct__text a {
        font-size: 25px;
    }
    .padding__top__one {
        padding-top: 315px;
    }
    .subsidy__image {
        margin: auto;
        text-align: center;
    }
    .subsidy__text {
        width: 100%!important;
        padding-top: 50px;
    }
    .logo img {
        width: 99%;
    }
}
@media screen and (max-width: 980px) {
    .slide h1 {
        font-size: 35px;
    }
    .slide .text {
        width: 80%;
        margin: auto;
    }
    .about_description, .services_info, .title__partners, .treat_desc,  .google_maps iframe, .left_info_firm h5, .left_info_firm_back, .facebook .container, .subsidy__image img {
        width: 100%!important;
    }
    .services_info_box, .products .container, .partners__image, .support__image, .title__partners, .full_footer .container, .full_footer_menu, .copy .container, .full_box_treat, .number .container, .list .container, .contact_box .container, .contact_info, .firm .container {
        display: block;
    }
    .line img, .line__two, .cont_line {
        rotate: -90deg;
    }
    .pruducts_text {
        padding-bottom: 50px;
    }
    .product_video, .contact_info {
        text-align: -webkit-center;
    }
    .sketchfab-embed-wrapper iframe {
        width: 316px !important;
        height: 265px !important;
    }   
    .partners .container, .support .container, .copy .container, .socialicons_footer, .copyright, .webzen, .timelines .container, .about .container, .products .container {
        width: 90%;
    }
    .partners__image img, .support__image img, .contact_box .container {
        padding: 0;
    }
    .contact_footer {
        padding: 50px 0;
    }
    .copy .container, .copyright, .webzen, .number .container {
        margin: auto;
        text-align: -webkit-center;
    }
    .socialicons_footer {
        padding: 15px 0;
    }
    .treat_img_back {
        width: 30px;
        height: 30px;
        padding: 5px;
        display: flex;
    }
    .treat_title img {
        width: 30px;
    }
    .counter-one, .number__two {
        justify-content: center;
        padding-right: 0;
    }
    .waterball___two {
        left: 0;
        width: 110px;
    }
    .footer_btn {
        font-size: 16px;
    }
    .cont_line {
        width: 15px;
        margin: auto;
    }
    .cont__icon i {
        font-size: 30px;
    }
    .conct__text p {
        padding: 10px 0;
    }
    .services_info p {
        height: auto;
    }
    .partners p {
        text-align-last: center;
    }
    .waterball {
        left: -45px !important;
        top: 460px !important;
        width: 195px !important;
    }
    .number .container {
        padding-top: 275px;
    }
    .numTextBottom p {
        text-align-last: center;
    }
    .timeline-block-left {
        float: none;
        direction: ltr;
    }
    .timelines:before {
        top: 532px;
        left: 6.1%;     
        height: 2600px;
    }
    .timeline-block-right {
        float: none;
    }
    .timeline-block {
        width: 100%;
        margin-bottom: 30px;
        justify-content: left;
    }
}
@media screen and (max-width: 768px) {
    .container:before {
        left: 8px;
        width: 2px;
    }
    .right-container {
        display: none;
    }
    .slide {
        height: 440px;
    }
    .arrow {
        top: 35%;
    }
    .slide p {
        width: 315px;
        font-size: 16px;
    }
    .about__box, .about__box__desc, .left_persons, .right_persons {
        display: block;
    }
    .check, .text__h3, .complete_service_box, .box-container {
        width: 100%!important;
    }
    .signature_box {
        justify-content: center;
    }
    .green_button, .left_persons, .right_persons {
        text-align: -webkit-center;
    }
    .text__h3 {
        font-size: 25px;
        width: 90% !important;
    }
    .signature {
        position: relative;
        top: 25px;
    }
    .partners__image img, .text_footer {
        width: 90%;
        padding: 50px 0 0;
    }
    .about_image img {
        width: 275px;
    }
    .rectangle-green {
        width: 265px;
        height: 215px;
        top: -195px;
        left: 35px;
    }
    .rectangle-blue {
        width: 265px;
        height: 215px;
        top: -195px;
        left: 35px;
    }
    .products {
        position: relative;
        top: 100px;
    }
    .support__image img {
        width: 90%;
        padding: 25px 0;
    }
    .text_footer {
        display: block;
    }
    .text_footer p {
        padding-bottom: 35px;
    }
    .pulsate img, .pulsate {
        width: 80%;
        top: -10px;
    }
    .about__top__products__two {
        position: relative;
        padding-top: 430px;
    }
    .persons__line {
        rotate: 90deg;
    } 
    .persons_info {
        padding: 0;
    } 
    .document a {
        display: block;
        text-align: -webkit-center;
    } 
    .slider-container {
        height: 550px;
    }
    .button__flex {
        display: block!important;
    }
    .green_button {
        margin: auto!important;
        text-align: -webkit-left;
    }
    .products .container {
        padding-top: 0px;
    }
    .green_button_two {
        position: relative;
        top: 25px;
    }
    .number .container {
        padding-top: 475px;
    }
    .sketchfab-embed-wrapper iframe {
        width: 275px !important;
        height: 215px !important;
    }
    .support img, .persons .text__h3 {
        width: 90%!important;
    }
    .dropdown {
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media screen and (max-width:500px) {
    .logo img {
        width: 99%;
    }
    .logo {
        margin: auto;
    }
    .timelines:before {
        left: 7%;
        height: 3200px;
    }
    .right_water_image img {
        width: 90%!important;
    }
    .about__top__products__two {
        position: relative;
        padding-top: 555px;
    }
    input, textarea, .form-group-second {
        width: 315px;
    }
    .text__h3__about {
        width: 300px;
    }
    .check ul li, .check__two ul li {
        width: 300px!important;
    }
    .number .container {
        padding-top: 575px;
    }
    .facebook .container {
        width: 100%!important;
    }
    .timeline-content {
        width: 300px;
    }
}
 



/* Preloader */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EBF3FE;
    z-index: 99999;
}
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #ccc;
    border: 5px solid #3AA8DB;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    line-height: 150px;
}
.wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: #3AA8DB;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.wave:before,
.wave:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}
.wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animate 10s linear infinite;
}
.wave:after {
    border-radius: 40%;
    background: rgba(255, 255, 255, .5);
    animation: animate 10s linear infinite;
}
.percentage {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #3AA8DB;
}
@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}


/**car-flip**/
/**full box wave **/
.back_blue_wave {
    background: url(../img/bluewave.png) center center no-repeat;
    background-size: cover;
    height: 1100px;
    margin-bottom: 500px;
}
.complete_service_box {
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: space-evenly;
}
.service_box {
    display: inline-grid;
    justify-items: center;
}
.service_box a {
    color: #3AA8DB;
}
.title_service {
    text-align-last: center;
    margin: auto;
    width: 800px;
    padding-top: 115px;
}
.title_service h2 {
    padding: 20px 0;
}
.arrow__flip {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: #F2F9FF;
}
.arrow__flip i {
    width: 80%;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: -webkit-center;
    color: #0F0D40;
    font-size: 20px;
}
.service_box h3 {
    padding: 45px;
}
/**card-flip**/
.text-center {
    text-align: center;
}
.color-white {
    color: #000;
}
.box-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 35px 15px;
    width: 75%;
}
.box-item {
    position: relative;
    -webkit-backface-visibility: hidden;
    width: 415px;
    margin-bottom: 35px;
    max-width: 100%;
}
.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}
.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 475px;
    -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-box-front {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 60px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;

    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 50%;
}
.flip-box-header {
    font-size: 34px;
}
.flip-box p {
    font-size: 20px;
    line-height: 1.5em;
    padding: 25px 0;
}
.flip-box-img {
    margin-top: 25px;
}
.flip-box-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    padding: 15px 20px;
    text-transform: uppercase;
}
.treat_background img {
    width: 50px;
}
@media screen and (min-width: 1380px) {
.box-container {
    flex-direction: row;
}
}




.fixed-header {
    position: fixed;
    top: 0;
    width: 100%!important;
    z-index: 1000;
    background-color: #fff; /* Nastavte barvu pozadí podle potřeby */
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    margin: auto!important;
  }
  


  /*animation*/

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    }
    .scrolled.slide-left {
        animation: slide-in-left 1s ease-in-out both;
    }
    .js-scroll {
        opacity: 0;
        transition: opacity 500ms;
    }
    .js-scroll.scrolled {
        opacity: 1;
    }
    @keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    }
    .scrolled.slide-right {
    animation: slide-in-right 1s ease-in-out both;
    }
    @keyframes slide-in-up {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    }
    .scrolled.slide-up {
        animation: slide-in-up 1s ease-in-out both;
    }
    @keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(1.5);
        }
    100% {
        opacity: 1; 
        transform: none;
        }
    }
    .scrolled.zoom-in {
        animation: zoom-in 1s ease-in-out both;
    }
    @keyframes slide-in-down {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    }
    .scrolled.slide-in-down {
        animation: slide-in-down 1s ease-in-out both;
    }

    

    
/* (Chrome, Safari) */
::-webkit-scrollbar {
	width: 12px; 
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #3AA8DB 100%);
  }
  
  ::-webkit-scrollbar-track {
	background-color: #f0f0f0; 
  }
  
  /*  WebKit  */
  ::-webkit-scrollbar-thumb:hover {
	background-color: #313C4C;
    transition: 0.3s;
  }


/**image___gallery**/
.container__image__gallery {
text-align: center;
}
.gallery-image {
width: 300px; 
height: auto; 
cursor: pointer;
}
.gallery-image:hover {
    scale: 1.01;
    transition: 0.3s;
}
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 50px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: -webkit-center;
}
.close {
color: white;
position: absolute;
top: 200px;
right: 25px;
font-size: 35px;
font-weight: bold;
cursor: pointer;
}
.close:hover {
    color: #3AA8DB;
    transition: 0.3s;
}
.prev,
.next {
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
cursor: pointer;
}
.prev {
left: 0;
border-radius: 3px 0 0 3px;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.gallery__item {
    flex-basis: 40%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
}
.gallery__item img {
    height: 100%;
    object-fit: cover;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}


/* cookie */

#cmplz-document {
    width: 90%;
    margin: auto;
}
.cmplz-banner-checkbox {
    width: 20px;
}


/* Language */

.language {
    display: flex;
}
.language img {
    width: 20px;
}
.language a {
    padding: 0px 10px;
}
.language a:hover {
    scale: 1.2;
}

/* 404 */
.error .container {
    width: 90%;
    margin: auto;
    text-align: -webkit-center;
    padding: 150px 0;
}
.error p {
    padding-bottom: 60px;
}