body {
    font-family: 'Jost', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Jost', sans-serif;
}

:root {
    --accent-color: #E35F00;
    /*--accent-color: #44bd32;*/
}

@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;
        }

}

section {
    max-width: 1920px;
    max-height: 1080px;
    height: 100vh;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

footer {
    max-width: 1920px;
    max-height: 1080px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 150px;
    background: #3e3e3e;
    display: flex;
    align-items: center;
}

a:hover {
    text-decoration: none;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    max-width: 1920px;
    max-height: 1080px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
    z-index: 0;
}

.row {
    margin: 0;
}

/* HERO SCREEN */

.hero-section {
    background: url("../img/main-bg2.jpg") no-repeat bottom center / cover;
}

.header-row {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header-line {
    display: flex;
    height: 1px;
    background: #333;
    width: 40%;
}

.logo {
    display: flex;
    width: 93px;
    height: 93px;
    /*background: rgba(255,255,255,1);*/
    border-radius: 50%;
    padding: 8px;
    animation-delay: 0.5s;
}

.prof-name {
    font-size: 115px;
    margin-top: 5%;
    margin-left: 6%;
    margin-bottom: 0;
    /*width: 25%;*/
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    color: #ba404b;
    /*text-shadow: 2px 3px 4px rgba(0,0,0,0.5);*/
}

.offer-title {
    font-size: 25px;
    /*margin-top: 10%;*/
    margin-top: -20px;
    margin-left: 6%;
    width: 30%;
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    color: #444;
    text-shadow: 1px 1px 3px rgba(255,255,255,.8);
    /*color: #ba404b;*/
}

.nav-row {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9998;
}

.nav-btns {
}

.nav-btn {
    display: flex;
    width: 175px;
    height: 75px;
    background: #111;
    border-top: 1px solid #111;
    border-right: 1px solid #fff;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.nav-btn.action {
    background: #fff;
    /*box-shadow: inset 2px 2px 10px rgba(0,0,0,0.7);*/
    /*border-right: 1px solid #111;*/
}

.nav-btn.action>.nav-btn__text {
    color: #111;
    font-weight: 500;
}

.nav-btn:nth-child(1) {
    animation-delay: 1.3s;
}

.nav-btn:nth-child(2) {
    animation-delay: 1.2s;
}

.nav-btn:nth-child(3) {
    animation-delay: 1.1s;
}

.nav-btn:nth-child(4) {
    animation-delay: 1s;
}

.nav-btn:last-child {
    border-right: 1px solid #111;
}

.nav-btn__img {
    display: flex;
    width: 30%;
    margin-right: 8px;
}

.contact-icon {
    width: 20%;
}

.nav-btn__text {
    display: flex;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
}

.copyright {
    display: flex;
    font-size: 25px;
    font-weight: 300;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    margin-right: 64px;
    animation-delay: 1.5s;
}

/* SECOND SCREEN */

.second-section {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    z-index: 100;
    background: #fff;
}

.second-section.action {
    margin-left: 1920px;
    animation: actionSec 1s forwards ease-in-out;
    z-index: 999;
}

@keyframes actionSec {
    0% {
        margin-left: 1920px;
    }
    100% {
        margin-left: 0;
    }
}

.img-section {
    background: url('../img/about.jpg') no-repeat center center / cover;
    height: 100vh;
    width: 50%;
}

.second-sec__right-side {
    width: 50%;
    background: var(--accent-color);
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-title {
    color: #fff;
    font-weight: 300;
}

.second-text {
    color: #fff;
    font-weight: 300;
    line-height: 2;
}

/* THIRD SECTION */


.third-section {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    z-index: 100;
    background: #fff;
}

.third-section.action {
    margin-left: 0;
    animation: actionThirdSec 1s forwards ease-in-out;
    z-index: 999;
}

.third-sec__nav-side {
    position: absolute;
    width: 7%;
    background: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-number {
    color: #fff;
    font-weight: 300;
    font-size: 50px;
    /*height: 120px;*/
    /*display: flex;*/
    /*align-items: center;*/
}

.service-number_static {
    font-size: 25px;
}

.services-nav {
    display: flex;
    width: 100%;
    height: 25%;
    cursor: pointer;
    justify-content: center;
    position: relative;
}

.services-nav_up:hover>.services-nav__item_up {
    background: #333;
}

.services-nav_up:hover>.services-nav__prev {
    color: #333;
}

.services-nav_down:hover>.services-nav__item_down {
    background: #333;
}

.services-nav_down:hover>.services-nav__next {
    color: #333;
}

.services-nav__item {
    display: flex;
    width: 2px;
    height: 100%;
    /*height: 200px;*/
    background: #fff;
    position: relative;
    cursor: pointer;
}

.services-nav__prev {
    position: absolute;
    color: #fff;
    top: -15px;
    cursor: pointer;
}

.services-nav__next {
    position: absolute;
    color: #fff;
    bottom: -15px;
    cursor: pointer;
}

.third-section>.second-sec__right-side {
    position: absolute;
    top: 0;
    left: 7%;
    background: #fff;
    width: 58%;
    padding-left: 64px;
}

.services-sec__text-side {
    animation: textOut 1s forwards ease-in-out;
}

@keyframes textOut {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: 1080px;
    }
}

.services-sec__text-side.action {
    margin-top: 0;
    animation: servicesText 1s forwards ease-in-out;
    z-index: 998;
}

@keyframes servicesText {
    0% {
        margin-top: -1080px;
    }
    100% {
        margin-top: 0;
    }
}

.third-title {
    color: #111;
}

.third-text {
    color: #111;
}

.services-foto {
    position: absolute;
    right: 0;
    background: #fff;
    height: 100vh;
    width: 35%;
    margin-top: 0px;
    z-index: 1;
    animation: fotoOut 1s forwards ease-in-out;
}

@keyframes fotoOut {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: -1080px;
    }
}

.cut-foto {
    background: url('../img/services.jpg') no-repeat center center / cover;
    z-index: 100;
    margin-top: -1080px;
}

.pruning-foto {
    background: url('../img/pruning.jpg') no-repeat center center / cover;
    z-index: 100;
}

.firewood-foto {
    background: url('../img/firewood.jpg') no-repeat center center / cover;
    z-index: 100;
}

.clean-foto {
    background: url('../img/clean.jpg') no-repeat center center / cover;
    z-index: 100;
}

.destroy-foto {
    background: url('../img/destroy.jpg') no-repeat center center / cover;
    z-index: 100;
}

.spraying-foto {
    background: url('../img/spraying.jpg') no-repeat center center / cover;
    z-index: 100;
}

.cut-foto.action {
    background: url('../img/services.jpg') no-repeat center center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

.pruning-foto.action {
    background: url('../img/pruning.jpg') no-repeat center center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

.firewood-foto.action {
    background: url('../img/firewood.jpg') no-repeat center center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

.clean-foto.action {
    background: url('../img/clean.jpg') no-repeat center center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

.destroy-foto.action {
    background: url('../img/destroy.jpg') no-repeat center center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

.spraying-foto.action {
    background: url('../img/spraying.jpg') no-repeat left center / cover;
    margin-top: 1080px;
    animation: servicesFoto 1s forwards ease-in-out;
    z-index: 998;
}

/*.services-foto.action {*/
/*    margin-top: 1080px;*/
/*    animation: servicesFoto 1s forwards ease-in-out;*/
/*    z-index: 998;*/
/*}*/

@keyframes servicesFoto {
    0% {
        margin-top: 1080px;
    }
    100% {
        margin-top: 0;
    }
}



@keyframes actionThirdSec {
    0% {
        margin-left: 1920px;
    }
    100% {
        margin-left: 0;
    }
}

/* FOUR-SECTION */


.four-section {
    background: url("../img/bg-photo.jpg") no-repeat center center / cover;
}

.photo-container {
    display: flex;
    padding: 30px;
}

.second-sec__right-side a:hover {
    color: #000;
}

.contact-text {
    font-size: 22px;
}

.img-contact-section {
    background: url('../img/contact.jpg') no-repeat center center / cover;
    height: 100vh;
    width: 50%;
}

.photo-container__right-sections {
    flex-direction: column;
    width: 35%;
}

.photo-one {
    width: 27.5%;
}

.photo-two {
    width: 85%;
    margin-bottom: 15px;
}

.photo-last {
    margin-top: 15px;
    margin-left: auto;
    width: 75%;
}

/* MEDIA */

    @media screen and (max-width: 768px) {
        .hero-section {
            background: url("../img/mobile-bg2.jpg") no-repeat center right / cover;
        }

        .second-section.action {
            margin-left: 800px;
            animation: actionSec 1s forwards ease-in-out;
            z-index: 999;
        }

        @keyframes actionSec {
            0% {
                margin-left: 800px;
            }
            100% {
                margin-left: 0;
            }
        }

        @keyframes actionThirdSec {
            0% {
                margin-left: 800px;
            }
            100% {
                margin-left: 0;
            }
        }

        .header-line {
            width: 35%;
            background: #fff;
        }

        .logo {
            width: 70px;
            height: 70px;
            background: #fff;
        }

        .prof-name {
            font-size: 65px;
            margin-left: 0;
        }

        .offer-title {
            width: 65%;
            font-size: 16px;
            margin-left: 0;
        }

        .nav-btns {
            width: 100%;
        }

        .nav-btn {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .nav-btn__img {
            width: 35px;
            margin-right: 0;
            margin-bottom: 8px;
        }

    /*  SECOND  */

        .second-section {
            flex-direction: column;
        }

        .img-section {
            width: 100%;
            height: calc(40vh - 37.5px);
            position: relative;
            overflow: hidden;
        }

        .img-section__overlay {
            display: flex;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.1);
        }

        .second-title {
            margin-top: auto;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 16px;
        }

        .second-sec__right-side {
            width: 100%;
            height: calc(60vh - 37.5px);
            justify-content: center;
            text-align: center;
            padding-top: 0;
        }

        .about-text {
            margin-top: -32px;
        }

    /*  THIRD  */

        .third-section {

        }

        .third-sec__nav-side {
            display: none;
        }

        .services-foto {
            height: 40vh;
            width: 100%;
        }

        .third-section>.second-sec__right-side {
            top: 40vh;
            width: 100%;
            height: 45vh;
            left: 0;
            padding-left: 10%;
        }

        @media screen and (max-height: 667px ) {

            /*.services-foto {*/
            /*    height: 30vh;*/
            /*    width: 100%;*/
            /*}*/

            /*.third-section>.second-sec__right-side {*/
            /*    top: 30vh;*/
            /*    width: 100%;*/
            /*    height: calc(70vh - 75px);*/
            /*    left: 0;*/
            /*    padding-left: 10%;*/
            /*}*/

            /*.services-foto__number {*/
            /*    font-size: 30px;*/
            /*}*/

            /*.services-foto__title {*/
            /*    font-size: 15px;*/
            /*}*/

            .mobile-service-text {
                font-size: 14px;
            }

        }

        .arrow-animation {
            animation-delay: 1s;
        }

        .services-foto__number {
            display: flex;
            font-size: 80px;
            color: #fff;
            margin-left: 16px;
            margin-right: 16px;
        }

        .services-foto__title {
            display: flex;
            width: 45%;
            font-size: 40px;
            color: #fff;
            line-height: 30px;
            align-items: center;
            font-weight: 400;
            margin-left: 16px;
        }

        .third-title {
            margin-top: auto;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 16px;
        }

        .services-sec__text-side.action {
            margin-top: 1080px;
        }

        .services-foto {
            margin-top: -1080px;
        }

        .cut-foto.action {
            margin-top: -1080px;
        }

        .pruning-foto.action {
            margin-top: -1080px;
        }

        .firewood-foto.action {
            margin-top: -1080px;
        }

        .clean-foto.action {
            margin-top: -1080px;
        }

        .destroy-foto.action {
            margin-top: -1080px;
        }

        .spraying-foto.action {
            margin-top: -1080px;
            animation: servicesFoto 1s forwards ease-in-out;
        }

        @keyframes textOut {
            0% {
                margin-top: 0;
            }
            100% {
                margin-top: 1080px;
            }
        }

        @keyframes servicesText {
            0% {
                margin-top: 1080px;
            }
            100% {
                margin-top: 0;
            }
        }

        @keyframes fotoOut {
            0% {
                margin-top: 0;
            }
            100% {
                margin-top: -1080px;
            }
        }

        @keyframes servicesFoto {
            0% {
                margin-top: -1080px;
            }
            100% {
                margin-top: 0;
            }
        }


        /*  CONTACT  */

        .img-contact-section {
            width: 100%;
            position: relative;
            overflow: hidden;
            height: calc(40vh - 37.5px);
            background: url("../img/contact.jpg") no-repeat top center / cover;
        }

        .social-icons {
            justify-content: center;
        }

    /*  PHOTO  */

        .four-section {
            background: linear-gradient(125deg, #dc7b34 0%, #b06457 100%);
        }

        .four-section img {
            box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .photo-container {
            flex-direction: column;
        }

        .photo-container__right-sections {
            flex-direction: row;
            width: 100%;
        }

        .photo-one {
            width: 80%;
        }

        .photo-two {
            /*width: 85%;*/
            /*margin-bottom: 15px;*/
        }

        .photo-four {

        }

        .photo-last {
            margin-top: 0;
            /*margin-left: auto;*/
            /*width: 35%;*/
        }

        @media screen and (max-height: 800px) {

            .photo-one {
                width: 60%;
            }

        }
    }

    @media screen and (max-width: 500px) {

        .img-section {
            background: url('../img/about2.jpg') no-repeat center center / cover;
        }

        .second-section.action {
            margin-left: 500px;
            animation: actionSec 1s forwards ease-in-out;
            z-index: 999;
        }

        @keyframes actionSec {
            0% {
                margin-left: 500px;
            }
            100% {
                margin-left: 0;
            }
        }

        @keyframes actionThirdSec {
            0% {
                margin-left: 500px;
            }
            100% {
                margin-left: 0;
            }
        }



        .cut-foto {
            background: url('../img/services-mob.jpg') no-repeat top center / cover;
        }

        .pruning-foto {
            background: url('../img/pruning-mob.jpg') no-repeat top center / cover;
        }

        .firewood-foto {
            background: url('../img/firewood-mob.jpg') no-repeat top center / cover;
        }

        .clean-foto {
            background: url('../img/clean-mob.jpg') no-repeat center center / cover;
        }

        .destroy-foto {
            background: url('../img/destroy-mob.jpg') no-repeat center center / cover;
        }

        .spraying-foto {
            background: url('../img/spraying-mob.jpg') no-repeat center center / cover;
        }

        .cut-foto.action {
            background: url('../img/services-mob.jpg') no-repeat top center / cover;
        }

        .pruning-foto.action {
            background: url('../img/pruning-mob.jpg') no-repeat top center / cover;
        }

        .firewood-foto.action {
            background: url('../img/firewood-mob.jpg') no-repeat top center / cover;
        }

        .clean-foto.action {
            background: url('../img/clean-mob.jpg') no-repeat center center / cover;
        }

        .destroy-foto.action {
            background: url('../img/destroy-mob.jpg') no-repeat center center / cover;
        }

        .spraying-foto.action {
            background: url('../img/spraying-mob.jpg') no-repeat center center / cover;
        }
    }

    @media screen and (max-width: 425px) {

        .second-section.action {
            margin-left: 425px;
            animation: actionSec 1s forwards ease-in-out;
            z-index: 999;
        }

        @keyframes actionSec {
            0% {
                margin-left: 425px;
            }
            100% {
                margin-left: 0;
            }
        }

        @keyframes actionThirdSec {
            0% {
                margin-left: 425px;
            }
            100% {
                margin-left: 0;
            }
        }

        .services-foto__number {
            font-size: 50px;
        }

        .services-foto__title {
            font-size: 25px;
            line-height: 18px;
            margin-left: 0;
        }
    }

    @media screen and (max-width: 375px) {

        .second-section.action {
            margin-left: 375px;
            animation: actionSec 1s forwards ease-in-out;
            z-index: 999;
        }

        @keyframes actionSec {
            0% {
                margin-left: 375px;
            }
            100% {
                margin-left: 0;
            }
        }

        @keyframes actionThirdSec {
            0% {
                margin-left: 375px;
            }
            100% {
                margin-left: 0;
            }
        }

        @media screen and (max-height: 667px ) {

            /*.services-foto__number {*/
            /*    font-size: 25px !important;*/
            /*}*/

            /*.services-foto__title {*/
            /*    font-size: 15px;*/
            /*}*/

            .mobile-service-text {
                font-size: 14px !important;
            }

        }
    }

    @media screen and (max-width: 330px) {
        .about-text {
            font-size: 13px;
            margin-top: -32px;
        }

        .services-foto__number {
            font-size: 40px;
        }

        .services-foto__title {
            font-size: 20px;
        }

        .third-text {
            font-size: 12px;
        }

        @media screen and (max-height: 667px ) {

            /*.services-foto__number {*/
            /*    font-size: 40px;*/
            /*}*/

            /*.services-foto__title {*/
            /*    font-size: 20px;*/
            /*}*/


        }
    }

    @media screen and (min-width: 992px) {

    }

    @media screen and (min-width: 1440px) {


    }

    @media screen and (min-width: 1567px) {
        .prof-name {
            font-size: 150px;
            margin-top: 10%;
        }
        .offer-title {
            font-size: 30px;
            width: 25%;
        }
    }

    @media screen and (min-width: 1900px) {

    }

