/*-------------------reset----------------------*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p,
a, em, img, small, strike, sub, sup,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, table, caption, tr, th, td,
article, figure, figcaption, footer, header,
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------reset end----------------------*/

/*-------------------global presets end----------------------*/
body {
    /* font-family: "Inter", sans-serif; */
    font-family: "Roboto", sans-serif;
    /* font-family: "Roboto Condensed", sans-serif; */
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    font-size: 16px;
    line-height: 1.3;
}
.no_scroll {
    overflow: hidden;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
/* @font-face {
    font-family: 'Bebas_Neue_bold';
    src: local('URW DIN Regular'), local('URW-DIN-Regular'),
        url('../fonts/bebasneuebold.woff2') format('woff2'),
        url('../fonts/bebasneuebold.woff') format('woff'),
        url('../fonts/bebasneuebold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  } */

/* body .wrap_all footer {
    flex: none;
} */

h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 360px;
}
h2 span {
    color: #F66502;
}
@media only screen and (min-width:768px) {
    h2 {
        font-size: 32px;
        max-width: 460px;
    }
}


.contact_us {
    display: inline-block;
    padding: 15px 30px;
    background: #F66502;
    border: 1px solid #F66502;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}
.contact_us:hover {
    background: white;
    color: #F66502;
}


.wrap {
    width:100%;
    max-width:1280px;
    margin-left:auto;
    margin-right:auto;
    padding-left: 16px;
    padding-right: 16px;
}
.wrap_ext {
    padding-left: 16px;
    padding-right: 16px;
}
@media only screen and (min-width:768px) {
    .wrap_ext {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (min-width:1080px) {
    .wrap_ext {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/*-------------------global presets end----------------------*/

/*-------------------wrap_all----------------------*/
.wrap_all {
    width: 100%;
    height: 100vh;
    background-color:rgba(0, 0, 0, .4);
    /* background-color:rgba(67, 72, 79, 0.6); */
    position: relative;
    color: white;
}
.wrap_all::before {
    content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bg_header.jpg) bottom/cover no-repeat;
    z-index: -1;
}
.chicken::before {
    content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bg_chicken.png) bottom/cover no-repeat;
    z-index: -1;
}
.cow::before {
    content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bg_cow.png) center/cover no-repeat;
    z-index: -1;
}
.horse::before {
    content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bg_horse.png) center/cover no-repeat;
    z-index: -1;
}
.cont::before {
    content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/kur.png) bottom/cover no-repeat;
    z-index: -1;
}
.wrap_all header {
    height: 80px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.wrap_all header .wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrap_all header .mob_menu {
    display: none;
}
.wrap_all header .mob_menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #43484F;
    padding-left: 16px;
    padding-right: 16px;
}
.wrap_all header .mob_menu.open .close_menu {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.wrap_all header .mob_menu.open .close_menu a {
    font-size: 28px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.wrap_all header .mob_menu.open .close_menu a span {
    color: #FF5A00;
}
.wrap_all header .mob_menu.open .close_menu .menu_icon_close {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrap_all header .mob_menu.open .close_menu .menu_icon_close span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: white;
    opacity: 0.8;
}
.wrap_all header .mob_menu.open .close_menu .menu_icon_close span:first-child {
    transform: translateY(calc(50% + 9px)) rotate(45deg);
}
.wrap_all header .mob_menu.open .close_menu .menu_icon_close span:last-child {
    transform: translateY(calc(50% - 9px)) rotate(-45deg);
}
.wrap_all header .mob_menu.open .menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap_all header .mob_menu.open .menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.wrap_all header .mob_menu.open .menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.wrap_all header .mob_menu.open .contact {
    flex: none;
    min-height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap_all header .mob_menu.open .contact a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: 0.2s;
    display: flex;
    align-items: center;
}
.wrap_all header .mob_menu.open .contact a img {
    height: 28px;
    margin-right: 10px;
}
.wrap_all header .mob_menu.open .contact a:hover {
    color: #F66502;
}

.wrap_all header .logo {
    flex: none;
}
.wrap_all header .logo a {
    font-size: 28px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.wrap_all header .logo a span {
    color: #FF5A00;
}
.wrap_all header .mob_menu_icon .wrap_menu_icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrap_all header .mob_menu_icon .wrap_menu_icon span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: white;
    opacity: 0.8;
}

.wrap_all .hero {
    /* background: red; */
    height: calc(100% - 80px);
}
.wrap_all .hero .wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.wrap_all .hero .wrap h1 {
    font-family: "Roboto Condensed", sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}
.wrap_all .hero .wrap h1 span.capt {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    opacity: 0.8;
    margin-bottom: 5px;
}
.wrap_all .hero .wrap h1 span.color {
    color: #F66502;
    display: block;
    font-weight: 700;
}
.wrap_all .hero .wrap h1 span.color2 {
    color: #F66502;
    font-weight: 700;
}
/* .wrap_all .hero .wrap .contact_us {
    padding: 15px 30px;
    background: #F66502;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.wrap_all .hero .wrap .contact_us:hover {
    background: white;
    color: #F66502;
} */
@media only screen and (min-width:960px) {
    .wrap_all header {
        height: 100px;
    }
    .wrap_all header .logo a {
        font-size: 36px;
    }
    .wrap_all header .mob_menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-grow: 1;
    }
    .wrap_all header .mob_menu .menu {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .wrap_all header .mob_menu .menu ul {
        display: flex;
        gap: 30px;
    }
    .wrap_all header .mob_menu .menu ul li a {
        color: white;
        text-decoration: none;
        /* font-size: 20px; */
        transition: 0.2s;
    }
    .wrap_all header .mob_menu .menu ul li a:hover {
        color: #F66502;
    }
    .wrap_all header .mob_menu .contact {
        flex: none;
    }
    .wrap_all header .mob_menu .contact a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        /* font-weight: 700; */
        transition: 0.2s;
        display: flex;
        align-items: center;
    }
    .wrap_all header .mob_menu .contact a img {
        height: 28px;
        margin-right: 10px;
    }
    .wrap_all header .mob_menu .contact a:hover {
        color: #F66502;
    }
    .wrap_all header .close_menu a {
        display: none;
    }
    .wrap_all header .mob_menu_icon {
        display: none;
    }

    .wrap_all .hero {
        height: calc(100% - 100px);
    }
    .wrap_all .hero .wrap {
        align-items: flex-start;
    }
    .wrap_all .hero .wrap h1 {
        text-align: left;
        font-size: 36px;
        line-height: 1.1;
    }
    .wrap_all .hero .wrap h1 span.capt {
        font-size: 50px;
    }
    .wrap_all .hero .wrap h1 span.color {
        font-weight: 500;
    }
}
@media only screen and (min-width:1200px) {
    .wrap_all .hero .wrap {
        gap: 60px;
    }
    .wrap_all .hero .wrap h1 {
        font-size: 36px;
    }
    .wrap_all .hero .wrap h1 span.capt {
        font-size: 80px;
        margin-bottom: 10px;
    }
}
/*-------------------wrap_all end----------------------*/


/*-------------------products----------------------*/
.products {
    background: #F2F2F2;
    padding-top: 80px;
    padding-bottom: 80px;
}
.products .block_2 {
    margin-top: 30px;
    color: rgba(0, 0, 0, .7);
}
.products .block_2 .bold {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}
.products .block_3 {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}
.products .block_3 a {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    text-decoration: none;
    background: white;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    transition: 0.2s;
}
.products .block_3 a:hover {
    box-shadow: 3px 3px 15px rgba(0, 0, 0, .1);
}
.products .block_3 a .img {
    width: 100%;
    aspect-ratio: 410/220;
    overflow: hidden;
}
.products .block_3 a .img img {
    display: inline-block;
    /* max-width: 100%;
    max-height: 100%; */
    width: 100%;
    object-fit: cover;
}
.products .block_3 a .desc {
    position: relative;
    padding: 24px 32px;
}
.products .block_3 a .desc .icon {
    position: absolute;
    top: -45px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F3F5F7;
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
}
.products .block_3 a .desc .icon img {
    width: 50px;
    transition: 0.2s;
}
.products .block_3 a .desc span {
    color: rgba(0, 0, 0, .5);
    display: block;
    /* margin-bottom: 5px; */
}
.products .block_3 a .desc h3 {
    font-weight: 500;
    color: black;
    font-size: 24px;
    transition: 0.2s;
}
.products .block_3 a:hover .desc h3 {
    color: #F66502;
}
.products .block_3 a .desc .icon:hover img {
    transform: scale(1.1);
}
.products .block_3 a .desc .arrow {
    position: absolute;
    right: 35px;
    bottom: 26px;
    transition: 0.2s;
}
.products .block_3 a:hover .desc .arrow {
    transform: translateX(10px);
}

.products .block_4 {
    margin-top: 30px;
}
.products .block_4 table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* overflow: hidden; */
}
.products .block_4 table th {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 8px 16px;
}
.products .block_4 table tr {
    /* border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1); */
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
}
.products .block_4 table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}
.products .block_4 table tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.03);
}
.products .block_4 .img {
    display: none;
}
@media only screen and (min-width:768px) {
    .products {
        padding-top: 120px;
        padding-bottom: 140px;
    }
    .products .head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .products .block_2 {
        margin-top: 0;
    }
    .products .block_3 {
        margin-top: 70px;
    }
    .products .block_4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .products .block_4 .img {
        display: block;
        border-radius: 16px;
        /* height: 100%; */
        /* background: red; */
    }
    /* .products .block_4 .img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    } */
}
@media only screen and (min-width:1240px) {

}
/*-------------------products end----------------------*/

/*-------------------preim----------------------*/
.preim {
    position: relative;
    color: white;
}
.preim h2 span {
    color: white;
}
.preim .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.preim .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.preim .img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}
.preim .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
.preim .wrap ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.preim .wrap ul li h4 {
    font-size: 20px;
    font-weight: 700;
    padding-left: 24px;
    position: relative;
}
.preim .wrap ul li h4::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: #F66502;
    border-radius: 50%;
    top: 7px;
    left: 0;
}
.preim .wrap ul li .desc {
    margin-top: 8px;
    opacity: 0.9;
    padding-left: 24px;
}
@media only screen and (min-width:768px) {
    .preim h2 span {
        color: #F66502;
    }
    .preim .wrap ul {
        margin-top: 50px;
    }
}
@media only screen and (min-width:960px) {
    .preim {
        color: black;
    }
    .preim .img {
        /* display: none; */
        right: unset;
        width: 40%;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        overflow: hidden;
    }
    .preim .img::before {
        display: none;
    }
    .preim .wrap {
        padding-top: 100px;
        padding-bottom: 100px;
        display: grid;
        grid-template-columns: 0.43fr 0.57fr;
        grid-template-areas: ". wrap_in";
    }
    .preim .wrap .wrap_in {
        grid-area: wrap_in;
    }
    .preim .wrap ul li .desc {
        opacity: 0.7;
    }
}
/*-------------------preim end----------------------*/

/*-------------------pack----------------------*/
.pack {
    background: #F2F2F2;
}
.pack .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pack .pack_capt {
    margin-bottom: 30px;
}

.pack .pack_item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    max-width: 560px;
}
.pack .pack_item:first-child {
    margin-top: 0;
}
.pack .pack_item .img {
    aspect-ratio: 1;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid #F66502;
}
.pack .pack_item .img img {
    width: 100%;
    object-fit: contain;
}
.pack .pack_item p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.pack .pack_item p span {
    opacity: 0.5;
    font-style: italic;
}
@media only screen and (min-width:768px) {
    .pack .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "pack_capt pack_big"
        "pack_small pack_big";
        gap: 24px;
    }
    .pack .pack_capt {
        grid-area: pack_capt;
    }
    .pack .pack_small {
        grid-area: pack_small;
    }
    .pack .pack_big {
        grid-area: pack_big;
    }
    .pack .pack_item {
        margin-top: 0;
    }
}
@media only screen and (min-width:960px) {
    .pack .wrap {
        gap: 48px;
        grid-template-columns: 0.4fr 0.6fr;
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .pack .pack_item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* padding: 32px; */
        max-width: unset;
        align-items: center;
    }
    .pack .pack_item .img {
        aspect-ratio: unset;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-right: 24px;
        /* margin-right: 24px; */
        border-bottom: none;
        border-right: 2px solid #F66502;
        display: flex;
        align-items: center;
    }
}
/*-------------------pack end----------------------*/

/*-------------------about----------------------*/
.about .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}
.about .left .img {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow: hidden;
}
.about .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .right .desc {
    margin-top: 30px;
    margin-bottom: 30px;
    opacity: 0.7;
}
@media only screen and (min-width:768px) {
    .about .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .about .right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        gap: 30px;
    }
    .about .right .desc {
        margin-top: 0;
        margin-bottom: 0;
    }
}
/*-------------------about end----------------------*/

/*-------------------contact----------------------*/
.contact .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
.contact .wrap .head .in {
    border-left: 2px solid #F66502;
    padding-left: 16px;
}
.contact .wrap p {
    font-weight: 500;
    margin-bottom: 16px;
    
}
.contact .wrap p:last-child {
    margin-bottom: 0;
}
.contact .wrap p a {
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: 0.2s;
}
.contact .wrap p a:hover {
    color: #F66502;
}

.contact .wrap .body {
    margin-top: 40px;
}
.contact .wrap .body .form_head,
.contact .wrap .body .finish_window .capt  {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 360px;
    margin-bottom: 16px;
}
.contact .wrap .body .form_head span,
.contact .wrap .body .finish_window .capt span {
    color: #F66502;
}
.contact .wrap .body .finish_window {
    display: none;
    text-align: center;
    padding-left: 32px;
    padding-right: 32px;
}
@media only screen and (min-width:768px) {
    .contact .wrap {
        padding-top: 120px;
        padding-bottom: 120px;
        display: flex;
        gap: 40px;
        /* flex-direction: row-reverse; */
    }

    .contact .wrap .head {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact .wrap .body {
        width: 50%;
        margin-top: 0;
    }
    .contact .wrap .body .form_head,
    .contact .wrap .body .finish_window .capt {
        font-size: 32px;
        max-width: 460px;
    }
}
/*-------------------contact end----------------------*/

/*-------------------footer----------------------*/
footer {
    background: #43484F;
    padding: 25px 0;
    color: white;
}
footer .wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "f_left"
    "f_right"
    "f_center";
    gap: 16px;
}
footer .left {
    grid-area: f_left;
    text-align: center;
}
footer .left a {
    font-size: 48px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 700;
}
footer .left a span {
    color: #FF5A00;
}
footer .left > div {
    margin-top: 10px;
    opacity: 0.6;
    font-size: 13px;
}

footer .center {
    grid-area: f_center;
    text-align: center;
}
footer .center p {
    max-width: 420px;
}

footer .right {
    grid-area: f_right;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 25px 0;
}
footer .right img {
    width: 24px;
}
footer .right a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}
footer .right a:hover {
    color: #FF5A00;
}
@media only screen and (min-width:860px) {
    footer .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    footer .left {
        text-align: left;
    }
    footer .right {
        justify-content: flex-end;
    }
}
/*-------------------footer end----------------------*/
