/* 
Světlejší modrá: #0d9ddf
Tmavší modrá: #0b7dc3
Zelená: #3cc784
*/

/*-----------------------------------------------------------
------------------------BASIC SETUP--------------------------
-------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #0b7dc3;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden; /* Pro -  @media only screen and (max-width: 767px)*/
}

.clearfix {
    zoom: 1
}

    .clearfix::after {
        content: '.';
        clear: both;
        display: block;
        height: 0;
        visibility: hidden;
    }

/*-----------------------------------------------------------
------------------------REUSABLE SETUP-----------------------
-------------------------------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* .box {
    padding: 1%;
} */

/*-----------------------------------------------------------
------------------------H1, H2, H3-------------------------------
-------------------------------------------------------------*/
h2 {
    font-size: 250%;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 5px solid #0d9ddf;
    padding-bottom: 25px;
}



section.h2-section {
    padding-top: 0;
}

h3 {
    font-size: 200%;
    font-weight: 500;
    text-transform: uppercase;
    word-spacing: 2px;
    letter-spacing: 1px;
    line-height: 145%;
    padding-bottom: 20px;
}

.about-us-p {
    font-size: 120%;
    word-spacing: 2px;
    letter-spacing: 1px;
    line-height: 150%;
    width: 80%;
}



/*-----------------------------------------------------------
------------------------HEADER-------------------------------
-------------------------------------------------------------*/

header {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(img/CLEANZONE_header_bckgrnd.png);
    background-size: cover;
    background-position: center;
    height: 45vh;
    border-bottom: 10px solid #0d9ddf;
}

.logo {
    /* height: 15vh; */
    width: 55%;
    margin: 10vh auto 0 auto;
    display: block;
}

/*-----------------------------------------------------------
------------------------FOOTER-------------------------------
-------------------------------------------------------------*/

footer {
    background-color: #0d9ddf;
}

.row-footer div {
    height: 80px;
}

.white-logo img {
    height: 60%;
    display: inline-block;
    /* float: left; */
    line-height: 120%;
    vertical-align: middle;
    margin-top: 12px;
}

.fb-logo {
    /* width: 50% */
    height: 100%;
    color: #fff;
    float: right;
    font-size: 350%;
}

/*-----------------------------------------------------------
------------------------NAV BAR-------------------------------
-------------------------------------------------------------*/

.nav-bar {
    padding-top: 0;
    padding-bottom: 30px;
}

.main-nav .link-box {
    margin: 0 auto;
}

    .main-nav .link-box a {
        text-decoration: none;
        border: 2px solid #0d9ddf;
        background-color: #0d9ddf;
        width: 98%;
        display: inline-block;
        text-align: center;
        padding: 10px 0;
        /* border-radius: 5px; */
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 160%;
    }

        input[type=submit],
        .main-nav .link-box a:link,
        .main-nav .link-box a:visited {
            text-decoration: none;
            border: 2px solid #0d9ddf;
            background-color: #0d9ddf;
            width: 98%;
            display: inline-block;
            text-align: center;
            padding: 10px 0;
            /* border-radius: 5px; */
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 160%;
            transition: background-color 0.2s, border 0.2s;
        }

            input[type=submit]:hover,
            .main-nav .link-box a:hover,
            .main-nav .link-box a:active {
                background-color: #3cc784;
                border: 2px solid #3cc784;
            }

    .main-nav .link-box:first-child a {
        border-radius: 5px 0 0 10px;
    }

    .main-nav .link-box:last-child a {
        border-radius: 0 5px 10px 0px;
    }

    .main-nav .link-box a.active-link {
        background-color: #3cc784;
        color: #fff;
        border: 2px solid #3cc784;
    }


/*-----------------------------------------------------------
------------------------ABOUT US SECTION---------------------
-------------------------------------------------------------*/

.about-us-img {
    width: 80%;
    float: right;
}

.about-us {
    padding-top: 0;
}


/*-----------------------------------------------------------
------------------------Contact form-------------------------
-------------------------------------------------------------*/

form {
    display: flex;
    flex-direction: column;
    margin: 65px 35px 35px 35px
}

input,
textarea {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid gray;
    border-radius: 5px;
}

.section-form .row {
    background-color: #efeeee;
}

input::placeholder,
textarea::placeholder {
    color: #cccbcb;
    opacity: 0.9;
    padding-left: 10px;
}

input[type=submit] {
    cursor: pointer;
    width: 200px;
}


.section-form {
    margin-top: 0;
    padding-top: 0;
}


.label-box span {
    float: left;
    color: #0b7dc3;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 140%;
}

.value-box span {
    float: right;
    color: black;
    font-weight: 200;
    font-size: 140%;
}

.form-heading {
    margin: 35px;
}

h3.contact-form-title {
    color: #0b7dc3;
    text-transform: initial;
    font-weight: 700;
    font-size: 140%;
}

*:focus {
    outline: none;
}

/*-----------------------------------------------------------
------------------------Gallery-------------------------
-------------------------------------------------------------*/

.section-gallery {
    padding: 0;
}

.gallery-picture {
    list-style: none;
}

    .gallery-picture li {
        display: block;
        float: left;
        width: 33%;
    }

.gallery-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: rgb(133, 133, 133);
}

    .gallery-photo img {
        opacity: 0.7;
        width: 100%;
        height: auto;
        transform: scale(1.15);
        transition: transform 0.5s, opacity 0.5s;
    }

        .gallery-photo img:hover {
            transform: scale(1.03);
            opacity: 1;
        }

/* .section-gallery ul:last-of-type
{
    padding-bottom: 5px;
} */

/* .gallery-photo::after {
    content: "";
    display: block;
    padding-bottom: 100%;
} */


/*-----------------------------------------------------------
------------------------Services-------------------------
-------------------------------------------------------------*/

.section-services {
    padding-top: 0;
}

.service-image {
    width: 20%;
}

.service-text {
    color: #0b7dc3;
    float: right;
    font-size: 115%;
    width: 75%;
    margin-top: 40px;
    font-weight: 400;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
