html,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    background-color: #F5F5F5;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Appetite New';
    src: local('../fonts/Appetite New'), local('AppetiteNew'),
        url('../fonts/AppetiteNew.woff2') format('woff2'),
        url('../fonts/AppetiteNew.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    height: 100%;
}

.btn-primary {
    position: relative;

    display: inline-block;
    font-size: 24px;
    font-family: 'Appetite New';
    font-weight: normal;
    color: #fff;
    padding: 20px 45px;
    text-decoration: none;
    background: linear-gradient(45deg, #02d067 0, #119984 100%);
    -webkit-box-shadow: 0px 3px 0px #08b55d;
    box-shadow: 0px 3px 0px #08b55d;
    border-radius: 50px;
    z-index: 2;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}


.btn-primary:hover {
    -webkit-transform: scale(.99);
    transform: scale(.99);
    -webkit-box-shadow: 0px 3px 0px #08b55d, 0px 0px 15px rgba(8, 181, 93, 0.75);
    box-shadow: 0px 3px 0px #08b55d, 0px 0px 15px rgba(8, 181, 93, 0.75);

}


/*header*/
.header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav__border {
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 1;
    width: 100vw;
}

.logo__img {
    display: block;
    max-width: 120px;
    height: auto;
}

.nav__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav__li {
    padding: 0 15px;
}

.nav__li > a {
    font-family: 'Appetite New';
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 22px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}

.nav__phone {
    width: 15px;
    margin-right: 8px;
}

/*main*/
.section--main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../img/main/main-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-leaf {
    display: block;
    position: absolute;
    z-index: 1;
    right: 80px;
    bottom: 0;
}

.mouse-wrap {
    position: absolute;
    display: block;
    width: 40px;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-img {
    display: block;
    width: 40px;
    height: auto;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    70% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    70% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.mouse-arrow {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #4c4c4c;
    border-right: 2px solid #4c4c4c;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    bottom: 20px;
    z-index: 2;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main__foto {
    width: 50%;
    margin-top: 60px;
}

.main__img {
    display: block;
    width: 100%;
    height: auto;
}

.main__desc {
    width: 50%;
    text-align: right;
}

.main__title {
    font-family: 'Appetite New';
    color: #fff;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: normal;
    font-style: normal;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.8);


}



/*Products*/
.section--products {
    background-color: #F5F5F5;
    min-height: 800px;
    position: relative;
    overflow-x: hidden;

}

.products {
    margin-bottom: 50px;
}

.products__leaf {
    position: absolute;
    display: block;
    right: 0;
    top: 60%;
    z-index: 1;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
}

.products__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;

}

.products__item {
    position: relative;
    width: 360px;
    height: 600px;
    -webkit-box-shadow: -8px -8px 10px rgba(255, 255, 255, 0.8), 8px 8px 10px rgba(0, 0, 0, 0.1);
    box-shadow: -8px -8px 10px rgba(255, 255, 255, 0.8), 8px 8px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: center;
    -webkit-transition: background .4s linear;
    transition: background .4s linear;
    z-index: 2;
}

.products__item {
    margin-top: 50px;
}

.products__item:hover {
    background: rgba(40, 187, 95, 0.2);
}

.products__item:hover .products__foto-overlay {
    width: 220px;
    height: 220px;
}

.products__item:hover .products__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.products__item:hover .products__foto {
    border: 5px solid transparent;
}

.product__label {
    position: absolute;
    right: -30px;
    top: -25px;
    z-index: 2;
}

.products__foto {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    margin: 20px auto 0;
    border: 5px solid #08b55d;
    border-radius: 50%;


}

.products__foto-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    width: 20px;
    height: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 109, 88, 0.6)), to(rgba(6, 232, 91, 0.5)));
    background: linear-gradient(rgba(0, 109, 88, 0.6), rgba(6, 232, 91, 0.5));
    border-radius: 50%;
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}

.products__img {
    width: 165px;
    position: relative;
    z-index: 2;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
}

.product__item-title {
    font-family: 'Appetite New';
    color: #4c4c4c;
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    margin: 15px 0;
}

.product__text {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    padding: 0 20px;

}

.product__text + .product__text {
    margin-top: 1em;
}


.btn-secondary {
    font-family: 'Appetite New';
    position: relative;
    z-index: 3;
    display: inline-block;
    font-size: 20px;
    font-weight: normal;
    color: #f5f5f5;
    background: linear-gradient(45deg, #02d067 0, #119984 100%);
    padding: 15px 45px;
    border-radius: 30px;
    margin-top: 15px;
    -webkit-box-shadow: 0px 3px 0px #08b55d, 5px 5px 20px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 3px 0px #08b55d, 5px 5px 20px rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;

}

.btn-secondary-big {
    font-size: 22px;
    padding: 25px 50px;
    border-radius: 70px;
    margin-top: 50px;
}

.btn-secondary:hover {
    -webkit-transform: scale(0.985);
    transform: scale(0.985);
    -webkit-box-shadow: 0px 3px 0px #08b55d, 3px 3px 15px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 3px 0px #08b55d, 3px 3px 15px rgba(0, 0, 0, 0.6);

}

/*Partners*/
.section--partners {
    background-color: f5f5f5;
    position: relative;
}

.partners__img-left {
    position: absolute;
    left: -40px;
    top: 15%;
}

.partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.partners__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.partners__item {
    width: 50%;
}

.partners__item-img {
    display: block;
    width: 100%;
}

.subtitle {
    position: relative;
    font-weight: 500;
    font-size: 32px;
    color: #4d4d4d;
    padding: 40px 0;
    z-index: 100;
}

.subtitle::before,
.subtitle::after {
    content: "";
    left: 0;
    height: 5px;
    background-color: #08b55d;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
}

.subtitle::before {
    top: 0;
    width: 500px;
}

.subtitle::after {
    bottom: 0;
    width: 250px;
}


.subtitle-span {
    color: #08b55d;
    font-weight: 700;
}

.partners__title::before {
    width: 600px;
    top: 0;
}

.partners__title::after {
    width: 300px;
    bottom: 0;

}

/*Quality*/
.section-quality {
    position: relative;
    background: url(../img/quality/quality-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;


}

.quality__shape-top {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.quality__shape-bot {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
}

.quality__leaf-left {
    position: absolute;
    z-index: 2;
    left: 200px;
    bottom: 50px;
}

.quality__leaf-right {
    position: absolute;
    z-index: 2;
    right: 250px;
    top: 100px;
}

.quality__cheese-right {
    position: absolute;
    z-index: 2;
    right: 250px;
    bottom: 50px;
}

.quality__milk-left {
    position: absolute;
    z-index: 2;
    left: 250px;
    top: 120px;
}

.quality {}

.quality__foto {
    background-image: url(../img/quality/quality-prod.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 600px;
    height: 550px;
}

.quality__inner {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.quality__item-wrap {}

.quality__item {
    position: absolute;
    cursor: pointer;
}

.quality__item:hover > .quality__desc-item {
    display: block;
}

.quality__item:first-child {
    left: 182px;
    top: 199px;
}

.quality__item:nth-child(2) {
    left: 370px;
    top: 158px;
}

.quality__item:nth-child(3) {
    left: 370px;
    top: 330px;
}

.quality__item:nth-child(4) {
    left: 182px;
    top: 405px;
}


.quality__plus {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    color: #eaeaea;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    background-color: #08b55d;
    -webkit-box-shadow: -2px 2px 6px #0000006b;
    box-shadow: -2px 2px 6px #0000006b;
}

.quality__plus-active::before,
.quality__plus-active::after {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    bottom: -15px;
    top: -15px;
    border: 2px solid #60ff7e;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: pulse 1.8s linear infinite;
    animation: pulse 1.8s linear infinite;

}

.quality__plus-active::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.quality__desc-item {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #f5f5f5;
    font-weight: 500;
    padding: 20px 30px;
    border-radius: 15px;
    -webkit-box-shadow: -2px 2px 6px #0000006b;
    box-shadow: -2px 2px 6px #0000006b;
    width: 380px;
    z-index: 3;
}

.quality__desc-item::before {
    content: "";
    position: absolute;
    right: 8px;
    left: 8px;
    bottom: 8px;
    top: 8px;
    border: 1px dashed #8e8e8e;
    border-radius: 15px;
}

.quality__desc-title {
    font-family: 'Appetite New';
    color: #2e2e2e;
}

.quality__desc-text {
    font-size: 14px;
    color: #4d4d4d;
}

.quality__arrow {
    position: absolute;
    left: 9px;
    top: 67px;
    z-index: 2;
    display: block;
}

.quality__foto {
    margin: 80px 0;
    position: relative;
}



/*Manufacture*/
.section-manufacture {
    position: relative;
    background: url(../img/manufacture/manufacture-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 0;
    overflow-x: hidden;
}

.manufacture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.manufacture__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.manufacture__item {
    width: 50%;

}

.manufacture__desc {
    padding: 0 10px 30px 50px;
}

.manufacture__foto {
    position: relative;
    z-index: 100;
    display: block;
    width: 100%;
    height: auto;
}

.manufacture__check {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;

}

.manufacture__check-img {
    display: block;
}

.manufacture-subtitle {
    margin-bottom: 0;
}

/*contact-us*/
.section--contact-us {
    position: relative;
    background-image: url(../img/form/form_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.contact-us__shape {
    position: absolute;
    width: 100%;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
}

.contact-us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.title--primary {
    position: relative;
    font-family: 'Appetite New';
    display: block;
    padding-top: 30px;
    font-weight: normal;
    font-size: 40px;
    color: #08b55d;
    z-index: 10;
}

.title--primary-right {
    text-align: right
}

.contact-us__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact-us__foto {
    width: 50%;
    position: relative;
}

.contact-us__img--smart {
    position: absolute;
    display: block;
    bottom: 30px;
    z-index: 2;
    left: -180px;
}

.contact-us__item {
    width: 40%;
    margin-bottom: 150px;
}

label {
    padding: 0 20px;
    font-weight: 700;
    color: #08b55d;
    font-size: 22px;
    /*    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);*/
}

input,
textarea {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5F5;
    -webkit-box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: none;
    z-index: 3;
    position: relative;
}

textarea:focus,
input:focus {
    outline: none;
    background-color: #d9d9d9;

}

.btn--form {
    font-size: 20px;
    font-family: 'Appetite New';
    font-weight: normal;
    padding: 15px 45px;
    color: #fff;
    background: linear-gradient(45deg, #02d067 0, #119984 100%);
    -webkit-box-shadow: 0px 3px 0px #08b55d, 10px 10px 25px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 0px #08b55d, 10px 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: block;
    margin-left: auto;
    -webkit-transition: .1s linear;
    transition: .1s linear;

}

.btn--form:hover {
    -webkit-transform: scale(.99);
    transform: scale(.99);
    -webkit-box-shadow: 0px 3px 0px #08b55d, 8px 8px 15px rgba(0, 0, 0, .4);
    box-shadow: 0px 3px 0px #08b55d, 8px 8px 15px rgba(0, 0, 0, .4);
}

/*Company*/

.section--company {
    position: relative;
    background-image: url(../img/company/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
}

.company {
    min-height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.company__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.company__item {
    width: 50%;
    position: relative;
    z-index: 2;
}

.company__title {
    display: block;
    margin: 40px 30px;
}

.company__text {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    color: #2e2e2e;
    text-indent: 1.5em;
    margin-bottom: 1em;
}

.company__desc {
    position: relative;
    padding: 0 10px;
    text-align: center;
}

.company__desc::before {
    top: -25px;
    left: 0;
}

.company__desc::after {
    bottom: 0;
}

.company__img-cheese {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}

.company__woman {
    position: relative;
    display: block;
    padding-left: 30px;
    width: 100%;
    z-index: 100;
}


/*Contacts*/

.section--contacts {
    position: relative;
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.contacts-leaf {
    display: block;
    position: absolute;
    z-index: 1;
    right: 150px;
    bottom: 15px;
}

.contacts__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contacts__item {
    width: 50%;
    margin: 50px 0;
}

.contacts__text {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}

.contacts__title {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 20px;
    color: #000000;
}

.contacts__text span {
    font-weight: 700;
    font-size: 24px;
}

.contacts__address {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contacts__text a {
    color: #08b55d;
}

/*Footer*/
.footer {
    height: 100px;
    background: url(../img/contacts/Pattern-cheese.png), -webkit-linear-gradient(left, #119984, #02d067);
    -webkit-box-shadow: 0px -6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -6px 15px 0px rgba(0, 0, 0, 0.2);
    background-repeat: repeat;

}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.footer__logo {
    display: block;
    height: 70px;
}

.footer__phone {
    font-size: 20px;
    font-weight: 700;
    color: #08b55d;
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.footer__phone-icon {
    display: inline-block;
    width: 16px;
    height: auto;
    margin-right: 5px;
}

.footer__copyright {
    color: #fff;
    font-weight: 500;
}

/*Go top*/
.go-top {
    display: none;
    height: 50px;
    width: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    position: fixed;
    z-index: 10;
    right: 15px;
    bottom: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.go-top:hover {
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.go-top__inner {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 11;
}

.go-top__arrow {
    height: 15px;
    width: 15px;
    border-top: 2px solid #08b55d;
    border-left: 2px solid #08b55d;
    border-radius: 2px;
    z-index: 12;
    position: absolute;
    left: 17px;
    top: 19px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*Breakpoints*/
@media (max-width: 1500px) {
    /*main*/

    /*Quality*/
    .quality__leaf-left {
        left: 10px;
    }

    .quality__milk-left {
        left: 50px;
    }

    .quality__cheese-right {
        right: 50px;
    }

    /*Partners*/
    .partners__img-left {
        left: -80px;
    }

    .quality__leaf-right {
        right: 10px;
    }
}

@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }

    /*main*/
    .main__img {
        width: 420px;
    }

    .main__title {
        font-size: 37px;
    }

    .main__desc {
        text-align: center;
    }

    .logo {
        margin-left: 50px;
    }

    /*Products*/
    .products__item {
        width: 30%;
        height: auto;
        padding-bottom: 20px;
    }

    .product__text + .product__text {
        margin-top: 0.7em;
    }

    .products__leaf {
        display: none;
    }

    /*Quality*/
    .quality__milk-left {
        width: 160px;
    }

    .quality__cheese-right {
        width: 220px;
    }

    /*Manufacture*/

    /*Company*/
    .company {
        min-height: 700px;
    }

    .company__title {
        margin: 20px 0;
    }

    /*Contact us*/
    .contact-us__img--smart {
        left: -140px;
        width: 850px;
    }

    /*Contacts*/
    .contacts__item + .contacts__item {
        padding-left: 20px;
    }

    /*Partners*/
    .partners__img-left {
        display: none;
    }

    .partners__img-left {
        display: none;
    }

    .subtitle::before {
        width: 420px;
    }



    .subtitle::after {
        width: 200px;
    }

    .go-top {
        bottom: 115px;
    }
}

@media (max-width: 991px) {

    /*main*/
    .nav__li > a {
        font-size: 15px;

    }

    .nav__li {
        padding: 0 10px;
    }

    .main__img {
        width: 360px;

    }

    .main__title {
        font-size: 26px;
    }

    .btn-primary {
        font-size: 18px;
        padding: 15px 45px;
    }

    .btn-secondary {
        font-size: 18px;
        padding: 15px 45px;
    }

    /*Products*/
    .products__item {
        width: 45%;
        margin-top: 20px;
    }

    /*Quality*/

    .quality__milk-left {
        display: none;
    }

    .quality__cheese-right {
        display: none;
    }

    .quality__leaf-left {
        display: none;
    }

    .quality__leaf-right {
        display: none;
    }

    /*Manufacture*/
    .subtitle {
        font-size: 22px;
    }

    .manufacture__desc {
        padding: 0;
    }

    .manufacture__check-img {
        width: 150px;
    }

    .manufacture__foto {
        width: 90%;
    }

    /*Company*/
    .company__woman {
        margin-top: 70px;
    }

    /*Contact us*/
    .contact-us__img--smart {
        left: -140px;
        width: 700px;
    }

    /*Partners*/
    .subtitle {
        padding: 70px 0 30px;
    }

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

    /*main*/
    .nav {
        display: none;
    }

    .main__title {
        font-size: 22px;
    }

    .main__img {
        width: 100%;
    }

    .btn-primary {
        font-size: 18px;
    }

    .btn-secondary {
        font-size: 17px;
    }

    .main-leaf {
        display: none;
    }

    /*Products*/
    .products__img {
        width: 130px;
    }

    .products__foto {
        width: 240px;
        height: 240px;
    }

    .product__item-title {
        font-size: 20px;
    }

    /*Quality*/
    .quality__foto {
        width: 505px;
        margin: 60px 0
    }

    .quality__item:first-child {
        left: 150px;
    }

    .quality__item:nth-child(2) {
        left: 315px;
    }

    .quality__item:nth-child(3) {
        left: 315px;
    }

    .quality__item:nth-child(4) {
        left: 150px;
    }

    .quality__arrow {
        left: -23px;
    }

    .quality__desc-item {
        padding: 10px 20px;
        width: 225px;
        left: 50%;
    }

    .quality__desc-text {
        font-size: 13px;
    }

    .quality__desc-title {
        font-size: 18px;
    }

    /*Manufacture*/
    .manufacture__check-img {
        width: 120px;
    }

    /*Company*/
    .company__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .company__item {
        width: 100%;
    }

    .company__title {
        display: none;
    }

    .company__woman {
        padding: 0;
    }

    /*Contact us*/
    .contact-us__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .contact-us__foto {
        width: 100%;
    }

    .contact-us__item {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-us__img--smart {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .form {
        text-align: end;
    }

    .contact-us__inner {
        margin-top: 30px;
    }

    /*Contacts*/
    .contacts__text {
        font-size: 18px;
    }

    .contacts__title {
        font-size: 18px;
    }

    .contacts__address {
        font-size: 18px;
    }

    .footer__phone {
        font-size: 16px;
    }

    .footer__copyright {
        font-size: 14px;
    }

    /*Partners*/
    .subtitle {
        padding: 30px 0
    }

    .subtitle::before {
        width: 280px
    }



    .subtitle::after {
        width: 150px
    }

    .partners__inner {
        margin-top: 20px;
    }


}

/* Portrait phones and smaller */
@media (max-width: 575px) {
    .logo {
        padding-left: 15px;
        margin-left: 0;
    }

    .title--primary {
        font-size: 32px;
    }

    /*main*/
    .main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .main__foto {
        -ms-flex-item-align: auto;
        align-self: auto;
        width: 100%;
        margin-bottom: 0;
        margin: 140px auto 0;
    }

    .main__img {
        margin: 0 auto;
    }

    .main__desc {
        width: 100%;
    }

    .main__title {
        margin-bottom: 25px;
    }

    .mouse-wrap {
        display: none;
    }

    .mouse-arrow {
        display: none;
    }

    /*Products*/
    .products__item {
        width: 100%;
    }

    /*Quality*/
    .quality__foto {
        width: 320px;
        height: 320px;
    }

    .quality__item:first-child {
        left: 80px;
        top: 70px
    }

    .quality__item:nth-child(2) {
        left: 200px;
        top: 95px;
    }

    .quality__item:nth-child(3) {
        left: 200px;
        top: 242px;
    }

    .quality__item:nth-child(4) {
        left: 80px;
        top: 216px;
    }

    .quality__arrow {
        display: none;
    }

    /*Manufacture*/
    .manufacture__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 30px;
    }

    .subtitle {
        font-size: 24px;
    }

    .manufacture__item {
        width: 100%;
    }

    .manufacture__foto {
        width: 100%;
    }

    /*Company*/
    .company__woman {
        margin: 20px auto 0;
        width: 80%;
    }

    /*Contact us*/
    label {
        font-size: 18px;
    }

    input,
    textarea {
        width: 80%;
    }

    /*Contacts*/
    .contacts-leaf {
        display: none;
    }

    .contacts__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contacts__item {
        width: 100%;
        margin: 0;
    }

    .contacts__address:last-child {
        margin-bottom: 0;
    }

    .footer {
        height: auto;
    }

    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 10px;
    }

    .footer__copyright {
        text-align: center;
        font-size: 18px;
    }

    .footer__item {
        height: auto;
        margin: 15px 0;
    }

    .contacts__item + .contacts__item {
        padding-left: 0;
    }

    /*Partners*/
    .partners__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-top: 30px;
    }

    .partners__item {
        width: 100%;
    }

    .partners__item-img {
        margin-bottom: 30px
    }

    .go-top {
        bottom: 15px;
    }
}

/* Iphone 5 */
@media (max-width: 320px) {
    .title--primary {
        font-size: 24px;
    }

    .main__title {
        font-size: 21px;
    }

    /*Contact us*/
    input,
    textarea {
        width: 100%;
    }

    /*Quality*/
    .quality__foto {
        width: 290px;

    }

    .quality__item:nth-child(2),
    .quality__item:nth-child(3) {
        left: 170px;
    }

}