:root {
    --main-color: #404A32;
}

.logo {
    width: 100px;
    /*height: 100px;*/
    cursor: pointer;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 2) {

    .logo {
        width: 100px;
        height: 100px;
    }

}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    background: #fff;
}

section {
    max-width: 1920px;
    /*max-height: 1080px;*/
    /*box-sizing: border-box;*/
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    position: relative;
    /*overflow: hidden;*/
}

.container {
    max-width: 1920px;
    /*max-height: 1080px;*/
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.row {
    margin: 0;
}

h1, h2, h3, h4, h5 ,h6 {
    font-family: 'Exo 2', sans-serif;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    display: flex;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 600;
}

.section-title__item {
    position: relative;
}

.section-title__item:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    display: flex;
    height: 2px;
    width: 150px;
    background: var(--main-color);
}

.section-text {
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 100px;
}

.uk-sticky {
    transition: .3s ease-in-out;
}

.uk-sticky-below {
    background: rgba(64,74,50,0.9);
    transition: .5s ease-in-out;
    box-sizing: border-box;
}

.uk-sticky-below>div>div>.nav-bar {
    height: 60px;
    color: #fff;
    justify-content: space-around;
}

.uk-sticky-below>div>div>a {
    padding-top: 5px;
    padding-bottom: 5px;
}

.uk-sticky-below>div>div>a>.logo {
    width: 50px;
    height: 50px;
}

.bottle {
    position: fixed;
    display: flex;
    z-index: 2;
}

.bottle.active {
    transition: .8s ease-in-out;
}

/* HERO SECTION */

.hero-section {
    display: flex;
    height: 100vh;
    align-items: center;
    overflow: hidden;
    max-height: 1080px;
    position: relative;
    z-index: 10;
}

.hero-section>section {
    width: 50%;
}

.nav-bar {
    display: flex;
    height: 75px;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-link {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-bar__item {
    cursor: pointer;
    display: flex;
}

.nav-bar__item.active {
    position: relative;
}

.nav-bar__item.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    border-radius: 16px;
    width: 0;
    height: 2px;
    background: #fff;
    animation: 1s menuLine ease-in-out;
}

@keyframes menuLine {
    100% {
        width: 100%;
    }
}

.hero-section__left {
    background: url("../img/main-bg.jpg") no-repeat center center / cover;
    display: flex;
    flex-direction: column;
}

.hero-section__right {
    background: url("../img/main2-bg.jpg") no-repeat center center / cover;
    display: flex;
    flex-direction: column;
}

.hero-section__title {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-transform: uppercase;
    position: absolute;
    font-size: 150px;
    letter-spacing: 5px;
    justify-content: center;
    text-align: center;
    margin-left: 10px;
    color: var(--main-color);
    font-weight: 600;
}

.hero-section__title__item {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 99;
}

.hero-section__title__item_color {
    color: #fff;
    position: relative;
    z-index: 9;
}

.hero-section__title__item_substrate {
    position: absolute;
    color: #fff;
    z-index: -1;
}

.slogan {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}

.btn-row {
    display: flex;
    justify-content: space-between;
}

.main-btn {
    display: flex;
    width: 200px;
    height: 60px;
    text-transform: uppercase;
    color: #fff;
    background: var(--main-color);
    border-radius: 13px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.main-btn:hover {
    box-shadow: 1px 2px 6px rgba(0,0,0,0.5);
}

/* SECOND SECTION */

.second-section {
}

.section-title__icon {
    display: flex;
    width: 75px;
    margin-left: 25%;
}

.about-substrate-img {
    display: flex;
    background: url("../img/recycle-substrate.jpg") no-repeat center center / cover;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    padding: 15px;
}

.about-img {
    display: flex;
}

.about-text {
    width: 60%;
}

/* THIRD SECTION */

.third-section {
    background: url("../img/green-bg.jpg") no-repeat center center / cover;
    position: relative;
}

#services {
    /*z-index: 16;*/
}

.services-imgs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-imgs__item {
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.services-imgs__item:first-child {
    display: flex;
    width: 65%;
    height: 65%;
}

.services-imgs__item:last-child {
    display: flex;
    width: 65%;
    height: 65%;
}

.section-title__services {
    color: #fff;
    margin-top: 15px;
}

.section-title__services:after {
    background: #fff;
    width: 180px;
}

.services-text {
    color: #fff;
}

/* FOUR SECTION */

.section-title__partners:after {
    width: 200px;
}

.partners-logo {
    display: flex;
    height: 200px;
    justify-content: space-between;
    align-items: center;
}

.partners-logo__item {
    display: flex;
}

.partners-logo__item:nth-child(2) {
    width: 300px;
    height: 130px;
}

.partners-row-second {
    margin-top: 100px;
}

/* FIVE SECTION */

.section-title__docs:after {
    width: 320px;
}

#documents {
    /*z-index: 16;*/
}

/* SIX SECTION */

.accept-substrate-img {
    flex-wrap: wrap;
    /*background: url("../img/grape-substrate.jpg") no-repeat center center / cover;*/
    background: transparent;
    width: 65%;
    height: 65%;
    justify-content: space-between;
}

/*.accept-substrate-img:last-child {*/
/*    background: url("../img/lake-substrate.jpg") no-repeat center center / cover;*/
/*    width: 75%;*/
/*    height: 75%;*/
/*}*/

.accept-img {
    display: flex;
    border-radius: 10px;
    width: 49%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.section-text__accept {
    margin-top: 0;
}

.section-text__accept-subtitle {
    font-weight: 700;
}

.more-btn {
    display: flex;
    width: auto;
    padding: 16px;
}

.uk-modal-dialog {
    width: 75%;
    min-width: 650px;
}

th {
    font-weight: 600 !important;
    color: #000 !important;
}

/* GALLERY SECTION */

/* .gallery-img {
    width: 100% !important;
    border-radius: 20px;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
} */
.gallery-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
}
.gallery-img__wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.gallery-img {
    height: 100%;
    margin-top: 0 !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    object-fit: cover;
}
/* .gallery-img:nth-child(1) {
    position: absolute;
} */

/* FOOTER SECTION */

.footer-section {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.footer-section>.container {
    position: relative;
    z-index: 12;
}

.contacts {
    color: #fff;
    text-transform: uppercase;
}

.contacts__title {
    font-weight: 500;
}

.contacts__text {
    color: #fff;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.contacts__text:hover {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-decoration: underline;
}

.phone-wrap {
    display: flex;
    flex-direction: column;
}

.socials {
    display: flex;
}

.contacts__wa {
    margin-top: 16px;
}

.contacts__wa:nth-child(2) {
    margin-left: 32px;
}

.trash-cont-img {
    position: absolute;
    right: -10%;
    bottom: -40%;
    z-index: 11;
}

/* MEDIA POINTS */

@media screen and (max-width: 992px) {
    .hero-section__title {
        font-size: 80px;
    }

    .services-imgs__item {
        width: 100% !important;
        height: 100% !important;
    }

    .partners-logo__item {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .partners-row-second {
        margin-top: 0;
    }
}

@media screen and (min-width: 768px) {
    .menu {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .uk-sticky-below {
        border-radius: 0;
    }

    .uk-sticky-below>div>div>.nav-bar {
        height: 75px;
    }

    .uk-sticky-below>div>div>.nav-bar>div>.menu__item {
        background: #fff;
    }

    .uk-sticky-below>div>div>a>.logo {
        width: 65px;
        height: 65px;
    }

    .nav-bar__item {
        display: none;
    }

    .nav-bar__item_mobile {
        display: flex;
        margin-top: 24px;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

    .menu {
        display: flex;
        flex-direction: column;
        margin-left: auto;
    }

    .menu__item {
        display: flex;
        width: 40px;
        height: 5px;
        background: #fff;
        border-radius: 16px;
    }

    .menu__item:first-child {
        margin-bottom: 8px;
    }

    .uk-sticky-below>div>div>nav>div>.menu__item {
        background: #000;
    }

    .uk-offcanvas-bar {
        /*background: var(--main-color);*/
        background: url("../img/green-bg.jpg") no-repeat center top / cover;
    }

    .section-title {
        font-size: 30px;
    }

    .section-title__services:after {
        width: 150px;
    }

    .section-title__docs:after {
        width: 255px;
    }

    .uk-modal-dialog {
        width: 100%;
        min-width: auto;
    }

    .about-substrate-img {
        padding: 10px;
    }

    .about-text {
        width: 100%;
    }

    .section-title__icon-docs {
        margin-left: 12%;
    }

    .accept-substrate-img {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    /*.accept-substrate-img:last-child {*/
    /*    background: url("../img/lake-substrate.jpg") no-repeat center center / cover;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    padding: 20px;*/
    /*}*/

    .contacts__wa {
        display: flex;
        margin-top: 0;
    }

    .footer-section {
        padding-bottom: 150px;
    }

    .footer-section>.container {
        position: relative;
        z-index: 12;
    }

    .trash-cont-img {
        right: -30%;
        bottom: -18%;
        z-index: 11;
    }

    .socials {
        margin-top: 32px;
        justify-content: space-around;
    }
    .gallery-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }
    .gallery-img:first-child {
        position: relative;
    }
}

@media screen and (max-width: 600px) {
    .hero-section {
        background: url("../img/main-bg.jpg") no-repeat center center / cover;
    }

    .hero-section__left {
        background: none;
    }

    .hero-section__right {
        background: none;
    }

    .hero-section__title {
        font-size: 36px;
        margin-left: 8px;
        font-weight: 700;
    }

    .hero-section__title__item {
        color: #fff;
    }

    .hero-section__title__item_substrate {
        display: none;
    }

    .slogan {
        font-size: 13px;
    }

    .main-btn {
        height: 50px;
        font-size: 13px;
    }

    .partners-logo {
        flex-direction: column;
        align-items: center;
    }

    .partners-logo__item {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .partners-logo__item:nth-child(1) {
        width: 60%;
    }
}

@media screen and (max-width: 320px) {
    .services-imgs__item {
        width: 100%;
        height: 100%;
    }
}
