@import "general.css";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
/*      Alert Styles    */
.alert {
    position: fixed;
    display: none;
    z-index: 102;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 45%);
    right: 0;
    bottom: 0;
}
.alert .container {
      width: 1350px;
      max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alert .message-popup {    
    background-color: #fff;
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 1px 0px rgb(0 0 0 / 13%);
}
.alert .message-popup__heading{
	color: #fff;
    font-size: 20px;
    padding: 30px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #FF7A00;
    position:relative;
}
.message-popup__pad{
	padding:30px;
}
.alert .message{
	font-size: 18px;
    font-weight: 500;    
}
.message-popup__close{
	display:flex;
	margin-top:18px;
	justify-content: center;
}
.message-popup__close span{
    display: inline-block;
    margin-top: 15px;
    text-align: center;
    padding: 12px 30px;
    background-color: #FF7A00;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor:pointer;
}
.message-popup__close span:hover{
	background-color: #df6b00;
}
.alert.alert--active {
  display: block;
}
.my-alert__close {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/close_white.svg) center / contain no-repeat;
}
#badMessage {
  color:red;
}
/*      Alert Styles END    */
/*begin my css */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.kz {
  font-family: 'OpenSans',Arial,Helvetica,sans-serif;
}
.container {
  width: 1600px;
  margin: 0 auto;
}
.header_top {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 5;
  padding: 25px 0;
  background-color: #fff;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.header_top .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 220px;
  height: 45px;
  /* background: url('../img/logo.svg') center / contain no-repeat; */
}
.logo img{
  width: 100%;
  height: 100%;
}
.menu {
  display: flex;
}
.menu > li:not(:last-child) {
  margin-right: 45px;
}
.menu_link {
  font-size: 16px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
}
.menu_link:hover,
.menu_link.active {
  color: #FF7A00;
}
.sub_menu_link {
  position: relative;
  z-index: 1;
}
.sub_menu_link > .menu_link {
  padding-right: 25px;
  background: url('../img/menu_arrow.svg') top 55% right / 15px no-repeat;
}
body.kz .menu  .menu_link{
  font-weight: 400;
}
body.kz .head_tel,body.kz  .cabinet_link{
  font-weight: 400;
}
.sub_menu_link:hover > .menu_link,
.sub_menu_link > .menu_link.active {
  color: #FF7A00;
  background-image: url('../img/menu_arrow_orange.svg');
}
.sub_menu {
  position: absolute;
  width: 230px;
  top: 100%;
  pointer-events: none;
  opacity: 0;
  transform: rotateX(-15deg);
  transform-origin: 50% -50px;
  transition: 0.3s;
  z-index: 1;
}
.sub_menu_list {
  margin-top: 20px;
  max-height: 400px;
  overflow: auto;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}
.sub_menu_link:hover > .sub_menu,
.sub_link:hover > .sub_menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sub_link {
  display: block;
  padding: 13px;
  color: #232323;
  font-size: 18px;
  font-weight: 500;
}
.sub_link:hover {
  color: #fff;
  background-color: #FF7A00;
}
.mob_menu {
  display: none;
  /*width: 30px;*/
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 30px;
  position: relative;
  flex-shrink: 0;
  transition: 0.2s;
}
.mob_menu.active,
.mob_menu:hover{
  color: #FF7A00;
}
.menu_btn {
  display: block;
  cursor: pointer;
}
.menu_btn span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #333;
  transform: rotate(0deg);
  transition: 0.4s;
}
.menu_btn:hover span,
.mob_menu.active .menu_btn span {
  background-color: #FF7A00;
}
.menu_btn .menu2,
.menu_btn .menu3 {
  margin-top: 7px;
}
.under_nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  padding: 60px 30px 30px;
  overflow: auto;
  z-index: 10;
  transition: 0.6s;
  background-color: #fff;
  transform: translateX(350px);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
}
.under_nav.active{
  transform: translateX(0);
}
.under_nav .menu {
  flex-direction: column;
  order: 4;
}
.close_under_nav{
  position: absolute;
  right: 30px;
  top: 25px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  background: url('../img/close_orange.svg') center / contain no-repeat;
}
.under_nav .basket_btn{
  order: 3;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-image: none;
  border-radius: 0;
}
.under_nav .basket_num{
  position: static;
}
.under_nav .basket_btn_text{
  display: block;
}
.under_nav .cabinet_link{
  display: block;
  margin-right: 0;
  width: 120px;
  margin: 0 auto 20px;
  text-align: center;
  order: 1;
}
.under_nav .cabinet_link.hide{
  display: none;
}
.under_nav .cabinet_link:after{
  content: none;
  display: none;
}

.auth_buttons{
  order: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
.auth_buttons.hide{
  display: none;
}
.auth_btn{
  width: 100%;
  padding: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}

.head_right {
  display: flex;
  align-items: center;
}
.head_right_item {
  position: relative;
  z-index: 1;
}
.head_right_item:after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.head_tel,
.cabinet_link {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-right: 50px;
}
.head_tel:hover,
.cabinet_link:hover {
  color: #FF7A00;
}
.cabinet_link {
  text-align: center;
  text-decoration: underline;
}
.cabinet_link.active {
  color: #FF7A00;
}
.lang_block {
  font-size: 18px;
  font-weight: 500;
  margin-right: 50px;
  text-transform: uppercase;
}
.lang_choice {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #000;
  padding: 5px 20px 5px 10px;
  border-radius: 3px;
  background: url('../img/lang_arrow.svg') right center / 11px no-repeat;
}
.lang_icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-right: 10px;
  background: center / contain no-repeat;
}
.lang_icon.ru {
  background-image: url('../img/rus.svg');
}
.lang_icon.kz {
  background-image: url('../img/kz-flag.png');
}
.lang_icon.en {
  background-image: url('../img/en-flag.png');
}
.other_lang {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  top: 100%;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  border-top: none;
  border: 1px solid #E8E8E8;
}
.lang {
  display: block;
  color: #231E79;
  padding: 5px 10px;
  background-color: #e2e2e2;
}
.lang.active,
.lang.active:hover {
  color: #fff;
  background-color: #FF7A00;
}
.lang:hover {
  color: #fff;
  background-color: #969696;
}
.basket_btn {
  display: block;
  margin-bottom: -5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background: url('../img/basket.svg') center / 60% no-repeat, #fff;
}
.basket_btn_text{
  display: none;
  font-weight: 500;
  margin-right: 10px;
  color: #333;
}
.basket_btn:hover .basket_btn_text{
  color: #FF7A00;
}
.basket_num,
.compare_num {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 25px;
  height: 25px;
  padding: 4px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #FF7A00;
}
.head_login_block {
  position: relative;
}
.head_login {
  display: none;
  position: absolute;
  width: 430px;
  left: -10%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 20px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.head_login_top {
  display: flex;
}
.head_login_top .head_login_item:last-child {
  border-left: 1px solid transparent;
}
.head_login_top .head_login_item:last-child:hover {
  border-left-color: #D7DADE;
}
.head_login_item {
  width: 50%;
  text-align: center;
  background-color: #F7F7F7;
  text-decoration: underline;
  font-size: 18px;
  color: #78818F;
  font-weight: 500;
  padding: 20px;
  border-bottom: 1px solid transparent;
}
.head_login_item.active {
  font-weight: 600;
}
.head_login_item:hover,
.head_login_item.active {
  background-color: #fff;
  color: #000;
  border-bottom-color: #D7DADE;
  text-decoration: none;
}
.page {
  padding-top: 150px;
}
.page:not(.main_section) .leaf {
  z-index: -1;
}
.page:not(.main_section) .leaf_1 {
  left: 10px;
  top: 15%;
}
.page:not(.main_section) .leaf_2 {
  top: 50%;
  right: 1%;
  transform: translateY(-50%) rotateY(180deg);
  filter: blur(5px);
}
.page:not(.main_section) .leaf_3 {
  bottom: 10%;
  left: 0;
  transform: scale(0.7);
  filter: blur(10px);
}
.page_down,
.page_up{
  /*display:none;*/
  position: fixed;
  width: 44px;
  height: 40px;
  right: 0;
  top: 51%;
  z-index: 5;
  cursor: pointer;
  border-radius: 0 0 0 7px;
  border: 2px solid #FF7A00;
  transform: translateY(-50%);
  transition: 0.2s;
  /*background: url('../img/page_down_2.svg') center / contain no-repeat;*/
  background: url('../img/page_down_new.svg') center / 18px no-repeat, #fff;
}
.page_up{
  border-radius: 0 0px 7px 0;
  transform: translateY(-60px) rotateZ(180deg);
}
.page_down:hover,
.page_up:hover{
  background-color: rgb(255, 122, 0, 0.2);
}
.page_down {
    margin-top: -2px;
}
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
section.no-bot{
	padding-bottom:0;
}
.title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
.title.hidden{
  display: none;
}
.title--bot{
  margin-bottom:40px;
}
.main_section {
  padding-bottom: 110px;
  height: 100vh;
  min-height: 550px;
  overflow: hidden;
}
.main_section .container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*padding-bottom: 120px;*/
}
.main_section .leaf_1 {
  bottom: 80px;
  filter: blur(10px);
}
.main_section .leaf_2 {
  left: 45%;
  bottom: 10px;
  z-index: 4;
}
.main_section .leaf_3 {
  width: 70px;
  height: 70px;
  top: 15%;
  left: 55%;
  transform: rotateY(180deg) rotateZ(-15deg);
}
.main_block.agro {
  margin-top: 0;
}
.main_block .agro_text_block {
  width: 48%;
}
.main_block .agro_img_block.way {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s all 1.2s ease-in-out;
}
.main_block .agro_img_block.way.way--active {
  opacity: 1;
  transform: none;
}
.main_text_slider {
  width: 50%;
}
.main_slide .title,.main_text,.main_buttons {
  transition: all 0.75s ease-in-out;
  opacity: 0;
  transform: translateX(50px);
}
.main_slide .title {
  margin-top:28px;
  text-align: left;
  font-size: 58px;
  margin-bottom: 25px;
  transition-delay: 0.6s;
  line-height: 1.15;
}
.main_text {
  font-size: 20px;
  line-height: 150%;
  color: #78818F;
  transition-delay: 1s;
}
.main_btn {
  position: relative;
  z-index: 1;
  display: table;
  margin-top: 35px;
  padding: 20px 35px;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
}
.main_btn span {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #df6b00;
  transform: translate(-50%, -50%);
  transition: width 0.55s ease-in-out, height 0.55s ease-in-out;
}
.main_btn.orange_btn:hover {
  background-color: #FF7A00;
}
.main_btn:hover span {
  width: 225%;
  height: 600px;
}
.main_buttons {
  display: flex;
  transition-delay: 1.4s;
}
.main_buttons .main_btn {
  margin-right: 30px;
}
.way--active .slick-current .main_slide .title,
.way--active .slick-current .main_text,
.way--active .slick-current .main_buttons {
  transform: none;
  opacity: 1;
}
.orange_btn {
  color: #fff;
  text-align: center;
  border-radius: 50px;
  background-color: #FF7A00;
}
.orange_btn:hover {
  background-color: #df6b00;
}
.main_img_block {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 40%;
  height: 80%;
  z-index: 1;
  opacity: 0;
  transition: 0.7s all 1.2s ease-in-out;
  transform: translateY(30px);
}
.main_img_block:after,
.main_img_block:before {
  content: "";
  position: absolute;
  z-index: 3;
}
.main_img_block:after {
  left: -100px;
  top: 60%;
  width: 120px;
  bottom: 0;
  background: linear-gradient(0deg, white 60%, transparent);
  -webkit-clip-path: polygon(0 100%, 0 0, 80% 0, 66% 30%, 80% 90%, 90% 100%, 100% 100%);
  clip-path: polygon(0 100%, 0 0, 80% 0, 66% 30%, 80% 90%, 90% 100%, 100% 100%);
}
.main_img_block:before {
  right: 0;
  top: -70px;
  width: 450px;
  height: 100px;
  background: linear-gradient(-90deg, white 80%, transparent);
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%, 78% 57%, 53% 52%, 16% 56%);
  clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%, 78% 57%, 53% 52%, 16% 56%);
}
.main_img_block.way--active {
  opacity: 1;
  transform: none;
}
.main_img_silder {
  width: 1050px;
  height: 1050px;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.main_img_silder .slick-list,
.main_img_silder .slick-track {
  height: 100%;
}
.main_img_silder .slick-slide {
  transition: all 0.5s ease-out !important;
}
.main_img_silder .slick-slide.slick-current {
  transform: none;
}
.main_img_silder .slick-slide.prev {
  transform: rotateZ(-25deg);
}
.main_img_silder .slick-slide.next {
  transform: rotateZ(25deg);
}
.main_img_item {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 50%;
  background: center / cover no-repeat;
}
.main_slide_img {
  width: 360px;
  height: 360px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: 0;
  transition: 0.8s;
  transition-delay: 0.4s;
}
.main_slide_img img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.slick-current .main_slide_img {
  opacity: 1;
  margin-left: 0;
}
.main_img_dots {
  width: 1100px;
  height: 1100px;
  position: absolute;
  z-index: 2;
  left: -40px;
  top: -40px;
  border-radius: 50%;
  border: 2px solid #FF7A00;
  transform: rotateZ(10deg);
}
.slick-slide {
  outline: none;
}
.main_dots button {
  font-size: 0;
  width: 0;
  height: 0;
  padding: 10px;
  background-color: #FF7A00;
  cursor: pointer;
  outline: none;
  border: none;
  transition: 0.4s;
  border-radius: 50%;
}
.main_dots li {
  position: absolute;
  line-height: 0;
  transform: translate(-50%, -50%);
}
.main_dots li:hover button {
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.4);
}
.main_dots li:hover .main_dot_num {
  opacity: 1;
}
.main_dots .dot_1 {
  top: 45%;
  left: 0;
}
.main_dots .dot_2 {
  top: 26%;
  left: 6%;
}
.main_dots .dot_3 {
  top: 12%;
  left: 17%;
}
.main_dots .dot_4 {
  top: 3%;
  left: 32%;
}
.main_dots .dot_5 {
  top: 0;
  left: 50%;
}
.main_dots .slick-active button,
.main_dots .slick-active:hover button {
  box-shadow: 0 0 0 11px rgba(255, 122, 0, 0.4);
}
.main_dots .slick-active .main_dot_num {
  font-size: 36px;
  opacity: 1;
}
.main_dot_num {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-right: 20px;
  font-size: 24px;
  font-weight: 600;
  transition: 1s;
  color: #333;
  opacity: 0.5;
  cursor: pointer;
  transform: rotateZ(-10deg);
}
.main_bottom {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 55%;
  display: flex;
  justify-content: space-between;
}
.main_bottom .left_icon {
  font-size: 18px;
}
.soc_list {
  display: flex;
  margin-right: 30px;
}
.soc_list > li:not(:last-child) {
  margin-right: 30px;
}
.soc_link {
  display: block;
  width: 25px;
  height: 25px;
  background: center / contain no-repeat;
}
.instagram {
  background-image: url('../img/instagram.svg');
}
.facebook {
  background-image: url('../img/facebook.svg');
}
.vkontakte {
  background-image: url('../img/vkontakte.svg');
}
.left_icon {
  margin-right: 30px;
  color: #78818F;
  padding-left: 30px;
  background: left center / 20px no-repeat;
}
.tel {
  background-image: url('../img/tel.svg');
}
.tel:hover {
  color: #FF7A00;
}
.loc {
  background-image: url('../img/loc.svg');
}
.leaf {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: -1;
  background: url('../img/leaf.png') center / contain no-repeat;
}
/*      Catalog Page styles     */
.breadcrumbs {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;  
}
.breadcrumbs a {
  color: #78818F;
}
.breadcrumbs a[href]:hover {
  cursor: pointer;
  color: #000;
  text-decoration: underline;
}
.breadcrumbs li {
  display: inline;
  margin-bottom: 5px;
}
.breadcrumbs li:last-child a {
  color: #FF7A00;
  font-weight: 500;
  font-family: Arial;
}
.breadcrumbs li:not(:first-child) {
  margin-left: 5px;
}
.breadcrumbs li:not(:first-child):before {
  content: '/';
  margin-right: 10px;
  color: #78818F;
}
.catalog {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.catalog_sidebar {
  width: 24%;
  flex-shrink: 0;
}
.catalog_sidebar .delivery{
  text-align: left;
  min-height: 160px;
}
.catalog_sidebar .delivery_icon,
.catalog_sidebar .buy_name .delivery_icon,
.catalog_sidebar .delivery_calc .delivery_icon{
  margin-right: 30px;
}
.catalog_sidebar .delivery_calc .delivery_icon{
  width: 70px;
  height: 70px;
}
.catalog_sidebar .delivery_name{
  font-size: 24px;
}
.catalog_sidebar .buy_name{
  font-size: 26px;
}
.catalog_content {
  width: 74%;
}
.catalog_top {
  margin-top: -65px;
  padding-left: 350px;
  /*margin-bottom: 32px;*/
  display: flex;
  justify-content: space-between;
}
.download_catalog {
  display: table;
  width: 270px;
  font-size: 20px;
  border-radius: 5px;
  color: #555;
  font-weight: 500;
  padding: 12px 50px 12px 25px;
  border: 1px solid rgba(120, 129, 143, 0.3);
  background: url('../img/download_icon_grey.svg') right 25px center / 20px no-repeat, rgba(255, 122, 0, 0.1);
}
.download_catalog:hover {
  background-color: rgba(255, 122, 0, 0.25);
}
.catalog_link_list {
  display: flex;
}
.catalog_link_list .catalog_link:not(:last-child) {
  margin-right: 50px;
}
.catalog_link {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.catalog_link:hover {
  color: #FF7A00;
}
.catalog_link_icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 15px;
  background: center / contain no-repeat;
}
.compare_icon {
  background-image: url('../img/compare.svg');
}
.favorite_icon {
  background-image: url('../img/favorite.svg');
}
.print_icon {
  background-image: url('../img/print.svg');
}
.shop_icon {
  background-image: url('../img/compare_add.svg');
}
.compare_num {
  right: -12px;
  top: -12px;
}
.filter_block{
  position: relative;
}
.catalog_filter_name{
  display: none;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  padding: 15px;
  background-color: #FF7A00;
  border-radius: 5px;
  transition: 0.4s;
}
.catalog_filter_name:hover{
  background-color: #df6b00;
}
.catalog_filter_name.active{
  border-radius: 5px 5px 0 0;
  background-color: #df6b00;
}
.catalog_filter {
  display: flex;
  flex-wrap: wrap;
  padding: 35px 40px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(120, 129, 143, 0.3);  
}
/*.catalog_filter .filter_list_block:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}*/
.catalog_filter .filter_list_block:nth-child(4n){
  margin-right: 0;
}
.filter_list_block{
  width: 22%;
  margin-right: 4%;
}
.filter_name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.filter_list .filter_check:not(:last-child) {
  margin-bottom: 15px;
}
.filter_sel{
  display: block;
  width: 100%;
  padding: 10px 35px 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: url('../img/select_arrow.svg') right 15px center / 12px no-repeat, #F7F7F7;
}

.filter_check {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.filter_check.active .filter_check_img {
  background-image: url('../img/check_black.svg');
}
.filter_check input {
  display: none;
}
.filter_check_img {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  margin-right: 10px;
  flex-shrink: 0;
  border: 1px solid #BCBEC0;
  background: center / 60% no-repeat, #fff;
}
.filtr-left{
  margin-bottom:25px;
}
.akcia-slider{
  margin-bottom:40px;
}
.akcia-slider .slick-arrow{
  position:absolute;
  top:50%;
  z-index:2;
}
.akcia-slider .slick-next{
  right:0;
}
.akcia-slider .slick-prev{
  left:0;
}
.akcia-slider .slick-dots{
  display:flex;
  align-items:center;
  justify-content: center;
  margin-top:12px;
}
.akcia-slider .slick-dots li{
  margin:0 10px;
}
.akcia-slider .slick-dots li button{
  font-size:0;
  border:none;
  border-radius:50%;
  padding:7px;
  background-color: #FF7A00;
  opacity:0.8;
  outline:none;
  cursor:pointer;
}
.akcia-slider .slick-dots li.slick-active button{
  opacity:1;
} 
.akcia{
  display:block;
  position:relative;
  overflow:hidden;
  border-radius: 5px;
  margin-right: 1px;
  border: 1px solid #ccc;
}
.akcia img{
  width:100%;
  display:block;  
}
.akcia:hover{
  cursor:pointer;
  opacity:0.9;
}
.quiz{
	margin-top:40px;
	margin-bottom: 40px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(120, 129, 143, 0.3);
  padding:25px 20px;
}
.quiz .input_block{
  width:100%;
}
.quiz .input_name{
  font-size:16px;
}
.quiz__heading{
	display: block;
  margin-bottom: 20px;
  color: #FF7A00;
  font-weight: bold;
  font-size: 24px;
}
.quiz .input_block .form_select,.quiz .input_block .form_input{
  font-size:17px;
}
.quiz .input_name{
  color:#333;
}
.quiz .form_select{
  padding:0 2px;
}
.quiz .input_block .form_select {
    background-position: right 10px top 11px;
    background-size: 11px;
}
.quiz .input_block{
  margin-bottom:30px;
}
.quiz .input_name{
  margin-bottom:13px;
}
.quiz_name{
  font-weight: bold;
  margin-bottom: 15px;
}
.quiz_name.error{
  color: red;
}
.quiz_option{
  font-weight: 500;
  margin-bottom: 7px;
}
.quiz_option label,
.quiz_option input{
  cursor: pointer;
}
.quiz_text_input{
  display: block;
  width: 100%;
  resize: none;
  padding: 10px 15px;
  margin-top: 7px;
  border-radius: 5px;
}
.quiz_btn{
  display: block;
  width: 170px;
  font-size: 18px;
  padding: 11px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  border: none;
  outline: none;
}
.main_prod {
  position: relative;
  padding: 60px 100px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  background: center / cover no-repeat;
  box-shadow: 1px 1px 1px #00000014;
}
.main_prod_circle {
  position: absolute;
  width: 1300px;
  height: 1300px;
  left: -35%;
  top: -55%;
  border-radius: 100%;
  z-index: -1;
  border: 10px solid #FF7A00;
  background-color: rgba(255, 255, 255, 0.9);
}
.main_prod_text {
  width: 50%;
  flex-shrink: 0;
  margin-right: 30px;
}
.main_prod_text .small_title {
  margin-bottom: 15px;
}
.main_prod_text .more_btn {
  margin-top: 25px;
}
.text_item {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 145%;
}
.text-item__btn{
  position:absolute;
  bottom:28px;
  display:inline-block;
  background-color: #FF7A00;
  color:#fff;
  padding: 13px 35px;
  margin-top:15px;
  border-radius: 5px;
}
.text-item__btn:hover{
  background-color: #df6b00;
}
.text_item--how{
  font-size:16px;
}
.main_prod_type {
  display: table;
  margin-bottom: 60px;
  padding: 10px 15px;
  color: #FF7A00;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #FF7A00;
  border-radius:5px;
}
.main_prod_img {
  width: 360px;
  height: 360px;
}
.main_prod_img img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.more_btn {
  display: table;
  padding: 18px 70px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.small_title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.small_title.small_title_center {
  text-align: center;
}
.sidebar_block {
  position: relative;
  z-index: 1;
  padding: 40px 50px;
  border-radius: 5px;
  background: linear-gradient(149.4deg, #EFB451 0%, #FFE600 98.41%), #C4C4C4;
}
.sidebar_block_name {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}
.sidebar_block_img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.sidebar_btn {
  display: table;
  position: relative;
  color: #fff;
  font-size: 18px;
  padding: 18px 40px;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0px -1px 0px #FFFFFF;
  background-color: #FF7A00;
}
.sidebar_btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50px;
  background-color: #BF5C00;
  transform: translateY(3px);
}
.sidebar_btn:hover {
  background-color: #df6b00;
}
.prod_grid {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  grid-gap: 30px 10px;
}
.prod_grid .prod_item:nth-child(3n) .prod_icon_text {
  left: auto;
  right: 80%;
}
.prod_item {
  display:flex;
  align-items:stretch;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.aside-title{
  display:block;
  font-weight:bold;
  font-size:21px;
  margin-bottom:20px;
  text-align: right;
}
.prod_item--view{
  flex-direction:column;
  align-items:center;
  margin-bottom:25px;
}
.prod_item--view .prod_info{
	padding-top: 20px;
}
.prod_item .more_btn {
  padding: 0px 15px;
  margin-right:15px;
  font-weight:500;
  height: 35px;
  line-height: 35px;
}
.add_card_catalog.disabled,
.add_card.disabled{
  background-color: #ff0000;
}
.prod_item .compare_info {
  display: none;
}
.compare_json {
  display: none;
}
.prod_buttons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;  
  left: 0px;
  bottom: 0px;
}
.prod_compare {
  position:relative;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  height: 35px;
  line-height: 35px;
  padding-left: 30px;  
}
.prod_compare:after{
    content: "";
    position: absolute;
    background-image: url(../img/compare_black.svg);
    background-size: contain;
    width: 20px;
    background-repeat: no-repeat;
    height: 17px;
    left: 0;
    top: 9px;
}
.prod_compare:hover,
.prod_compare.disabled {
  color: #FF7A00;
}
.prod_compare.disabled:after {
  background-image: url('../img/compare_orange.svg');
}
.prod_share {
    position: absolute;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    z-index: 2;
    padding: 8px;
    left: -42%;
    top: 9%;
    transform: rotateZ(-45deg);
}
.prod_share_yellow {
  background-color: #F9CA0C;
}
.prod_share_orange {
  background-color: #FFEB3B;
}
.prod_item__top{
  position: absolute;
  right: 25px;
  top: 18px;
  display:flex;
  align-items:center;
}
.prod_item__sub{
  display: inline-block;
  color: #857D5E;
  font-weight: bold;
  font-size: 13px;
  margin-right: 10px;
  text-transform: uppercase;
}
.prod_item__sub:hover{
  text-decoration:underline;
}
.prod_stock {  
  border-top: none;
  z-index: 1;
  font-size: 16px;
  padding: 3px 12px;
  font-weight: 600;
  color: #fff;
  background-color: #77777787;
  border-radius: 50px;
}
.prod_img {
    display: block;
    height: 205px;
    margin-left: 20px;
    margin-right: 32px;    
    margin-top: 24px;
    position: relative;
}
.prod_info{
  position:relative;
  padding-top:35px;
  padding-bottom:55px;
}
.prod_img img {
  display: block;
  height: 100%;
  object-fit: contain;
}
.prod_icon {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.prod_icon .prod_icon_item:not(:last-child) {
  margin-bottom: 5px;
}
.prod_icon_item {
  display: block;
  position: relative;
  z-index: 1;
  width: 45px;
  height: 45px;
  transition: 0.2s;
  border-radius: 50%;
  background: center / 50% 45% no-repeat, #C8C9CC;
}
.prod_icon_item:hover {
  background-color: #FF7A00;
}
.prod_icon_item:hover .prod_icon_text {
  opacity: 1;
}
.prod_icon_item.disabled {
  background-color: #FF7A00;
}
.prod_icon_shop {
  background-image: url('../img/prod_basket.svg');
}
.prod_icon_calc {
  background-image: url('../img/prod_calc.svg');
}
.prod_icon_info {
  background-image: url('../img/prod_info.svg');
}
.prod_icon_favorite {
  background-image: url('../img/favorite_white.svg');
  background-size: 45%;
}
.prod_icon_compare {
  background-image: url('../img/prod_vesy.svg');
}
.prod_icon_text {
  position: absolute;
  width: 210px;
  text-align: center;
  left: 80%;
  bottom: 50%;
  color: #78818F;
  font-weight: 600;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D7DADE;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.prod_name {
  display: block;
  margin-bottom: 14px;
  color: #333;
  font-weight: bold;
  font-size: 24px;
}
.prod_name:hover {
  color: #FF7A00;
}
.prod_text.text_item {
  font-size: 16px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination  li{
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 600;
    color: #D7DADE;
    border-radius: 5px;
    text-align: center;
    border: 1px solid transparent;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
}
.pagination li:hover{
  background-color:#f3f3f3;
  cursor:pointer;
}
.pag-bot{
    margin-top: 50px;
    display:flex;
    align-items:center;
    justify-content: center;
}
.pag-bot__arrow{
  margin-right: 10px;
}
.pagination  li a{
  display: block;
  color: #df6b00;
  width: 100%;
  height: 100%;
}
.pag:hover {
  color: #FF7A00;
}
.pag-bot__arrow a{
  color:#df6b00;
}
.about_text_bottom p{
  margin-bottom:15px;
}
#zakas-pop{
  max-width: 95%;
}
.zakas-pop{
  max-width: 100%;
    width: 600px;
    padding: 15px 15px;
}
.zaka-pop__bot{
  font-style:italic;
  font-size:16px;
}
.zakas-pop__heading{
  position: relative;
  display: block;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 20px;
  padding-left: 44px;
  z-index: 3;
  line-height: 30px;
  color: #df6b00;
}
.zakas-pop__heading:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-image: url(../img/checked.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.zakas-pop__bot{
  display:flex;
  font-size:18px;
  font-style:italic;
}
.zakas-pop__korzina{
  font-style: normal;
  margin-right: 15px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  border-radius: 50px;
  background-color: #FF7A00;
  border:1px solid #FF7A00;
  padding: 0 35px;
}
.zakas-pop__prod{
  font-style: normal;
  margin-right: 15px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 15px;
  border-radius: 50px;
  border:1px solid #FF7A00;
  padding: 0 35px;
  color:#555;
}
.zakas-pop__prod:hover{
  background-color: #FF7A00;
  color:#fff;  
}
.text_item.text_item--korz{
  max-height: 100px;
  overflow: hidden;
}
.popup-form{
    padding:10px;
    width:350px;
    max-width: 100%;
}
.popup-form__heading{
  display:block;
  font-weight:bold;
  margin-bottom:10px;
  font-size:25px;
  text-align:center;
}
.popup-form__text{
	display: block;
	font-size: 18px;
	margin-bottom: 25px;
	text-align: center;
	font-weight: bold;
}
.popup-row{
  margin-bottom:20px;
}
.popup-row label{
  display:block;
  font-weight: 600;
  margin-bottom:7px;
  font-size:15px;
  padding-left:5px;
}
.popup-row input,
.popup-row textarea{
    border: 1px solid #ccc;
    border-radius: 20px;
    height: 43px;
    padding: 5px 24px;
    width: 100%;
    font-weight: 500;
    outline:none;
    resize: none;
}
.popup-row textarea{
  height: auto;
  padding: 10px 24px;
}
.popup-sbt{
    display:block;
    padding: 18px 70px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #FF7A00;
    color:#fff;
    border:none;
    border-radius:50px;
    margin: 0 auto;
    cursor: pointer;
    outline: none;
}
.map_oblast{
  stroke: #ff993b;
  stroke-dasharray: 5;
}
.sklad-part{
  display: none;
  padding: 10px;
  width:640px;
  max-width: 100%;
}
.sklad-part.active{
  display: flex;
}
.sklad-part__left{
  width:350px;
  margin-right:30px;
  height: 200px;
  background-color: #f3f3f3;
  position:relative;
}
.sklad-part__left:after{
  content:"Загрузка карты...";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  text-align:center;
  align-items:center;
  justify-content: center;
  color:#555;
}
.sklad-part__left iframe{
  position:relative;
  z-index:2;
  width:100%;
  height:200px;
}
#map{
  max-width: 95%;
}
.sklad-part__right{
  width:250px;
}
.sklad-part__heading{
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  padding-top: 5px;
}
.sklad-ul li{
  margin-bottom:8px;
  position:relative;
}
.sklad-ul li b{
  font-weight:600;
}
.fancybox-content.compare_popup{
	max-width: 95%;
}
.compare_popup .small_title{
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}
.popup_buttons{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.popup_buttons .more_btn{
	font-size: 16px;
	padding: 15px;
	width: 48%;
	border: 1px solid #FF7A00;
}
.popup_buttons .white_btn:hover{
	color: #fff;
	background-color: #FF7A00;
}
footer {
  margin-top: auto;
  padding: 35px 0;
  background-color: #fff;
  box-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.main_footer{
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
} 
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot_right {
  display: flex;
  align-items: center;
}
.foot_right .tel {
  background-image: url('../img/tel_black.svg');
}
.foot_right .loc {
  background-image: url('../img/loc_black.svg');
}
.foot_right .instagram {
  background-image: url('../img/instagram_color.svg');
}
.foot_right .facebook {
  background-image: url('../img/facebook_color.svg');
}
.foot_right .soc_list {
  margin-right: 0;
}
.foot_right.main_foot_right {
  width: 100%;
  justify-content: space-between;
}
.foot_right.main_foot_right .left_icon:after,
.foot_right.main_foot_right .created:after {
  content: none;
  display: none;
}
.main_foot_right .soc_list {
  position: relative;
}
.main_foot_right .soc_list:before {
  content: "";
  position: absolute;
  width: 0;
  height: 30px;
  left: -30px;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.foot_right .left_icon,
.created {
  position: relative;
  margin-right: 80px;
  color: #333;
  font-weight: 500;
}
.foot_right .left_icon:after,
.created:after {
  content: "";
  position: absolute;
  right: -40px;
  height: 40px;
  width: 1px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}
.created a {
  color: #333;
  text-decoration: underline;
}
.created a:hover {
  text-decoration: none;
}
/*      Catalog Page styles END     */
/*      Catalog_Inner Page styles   */
.prod_inner {
  margin-top: -50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.prod_inner_content {
  width: 100%;
}
.prod_inner_right {
  width: 28%;
  flex-shrink: 0;
  margin-left: 40px;
}
.aside-title{
  margin-top: -44px;
}
.prod_inner_main {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 50px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.prod_part {
  display: block;
  position: absolute;
  width: 245px;
  height: 75px;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 20px;
  border: 1px solid #D7DADE;
  border-top: none;
  border-right: none;
  background-color: #fff;
  border-top-right-radius: 10px;
}
.prod_part img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prod_inner_slider {
  max-width: 320px;
  flex-shrink: 0;
  margin-right: 45px;
}
.prod_inner_slider .slick_arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  top: 50%;
  z-index: 2;
  transition: 0.4s;
  filter: grayscale(100%);
  transform: translateY(-50%);
  background: center / 40% no-repeat;
}
.prod_inner_slider .slick_arrow:hover {
  filter: grayscale(0%);
}
.prod_inner_slider .slick_prev {
  left: -20px;
  background-image: url('../img/left_orange_small.svg');
}
.prod_inner_slider .slick_next {
  right: -20px;
  background-image: url('../img/right_orange_small.svg');
}
.prod_inner_text .prod_share{
  left: -45%;
}
.prod_inner_img {
    width:200px;
    margin-left:15px;
}
.prod_inner_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prod_inner_text .more_btn {
  margin-top: 30px;
  width: 400px;
  max-width: 100%;
}
.prod_tab {
  display: flex;
  flex-wrap: wrap;
  background-color: #F9F9FA;
  border: 1px solid #E6E6E6;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.prod_tab_item {
  font-size: 20px;
  font-weight: 500;
  color: #5B5B5B;
  padding: 25px 50px;
  cursor: pointer;
}
.prod_tab_item.active {
  color: #333;
  font-weight: bold;
  background-color: #fff;
}
.partner-area {
  overflow: hidden;
}
.partner-area img {
  display: block;
  max-width: 50%;
  float: left;
  margin-right: 15px;
  margin-bottom: 2px;
}
.partner-area p {
  font-size: 16px;
}
.prod_content_block {
  position: relative;
  z-index: 1;
  border: 1px solid #E6E6E6;
  border-top: none;
  overflow: hidden;
  transition: 0.8s;
  border-radius: 0 0 10px 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.prod_content {
  padding: 40px 50px;
  position: absolute;
  left: 0;
  top: 20px;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.8s;
  pointer-events: none;
}
.prod_content.active {
  z-index: 2;
  opacity: 1;
  top: 0;
  pointer-events: auto;
}
.prod_content .prod_info_row:not(:last-child) {
  margin-bottom: 30px;
}
.prod_info_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: #78818F;
  padding-bottom: 20px;
  border-bottom: 2px dotted #DBDEE1;
}
.prod_info_row .prod_info_name:last-child {
  color: #FF7A00;
  text-align: right;
}
.prod_info_name {
  max-width: 48%;
}
.prod_inner_form {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 60px;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.form_title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.basket_form_block {
  margin-bottom: 35px;
}
.basket_rtitle {
  display: block;
  font-size: 26px;
  height: 48px;
  line-height: 48px;
  font-weight: bold;
  margin-bottom: 27px;
  margin-top: -10px;
}
.form_select,
.form_input {
  border: none;
  margin-bottom: 40px;
  padding-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.form_select:focus,
.form_input:focus {
  border-color: #000;
}
.form_select {
  background: url('../img/select_arrow.svg') top 5px right / 12px no-repeat;
}
.form_input.error {
  border-color: red;
}
.form_input[type='number'] {
  -moz-appearance: textfield;
}
.form_input::-webkit-outer-spin-button,
.form_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form_btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px;
  font-size: 18px;
  font-weight: bold;
}
.yellow_btn {
  color: #fff;
  text-align: center;
  background-color: #F9CA0C;
  border-radius: 50px;
}
.yellow_btn:hover {
  background-color: #FF7A00;
}
/*      Catalog_Inner Page styles END   */
/*      Vakancy Page styles   */
.breadcrumbs.breadcrumbs_center {
  text-align: center;
  margin-bottom: 20px;
}
.vakancy_list {
  margin-bottom: 100px;
}
.vakancy_list .table_block {
  display: none;
}
.vakancy_sel_block {
  margin-top: 60px;
  display: flex;
  align-items: center;
}
.vakancy_sel_name {
  flex-shrink: 0;
  margin-right: 20px;
  font-size: 20px;
}
.vakancy_select {
  min-width: 240px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  -webkit-appearance: none;
  border: 1px solid #D7DADE;
  padding: 15px 40px 15px 20px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  background: url('../img/select_arrow.svg') right 20px center / 12px no-repeat, #fff;
}
.table_block {
  overflow: auto;
  margin-top: 50px;
  background-color: #fff;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.table_block table {
  border: 1px solid #D7DADE;
  border-radius: 10px;
  border-collapse: collapse;
}
.table_block tr th,
.table_block tr td {
  border: 1px solid #D7DADE;
}
.table_block tr th:first-child {
  width: 20%;
}
.table_block tr th {
  padding: 35px 50px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}
.table_block tr td {
  padding: 25px 50px;
  font-size: 18px;
  color: #78818F;
  line-height: 160%;
  font-weight: 500;
}
.vakancy_advan {
  display: grid;
  grid-template-columns: repeat(5, 19%);
  justify-content: space-between;
  grid-gap: 50px 10px;
  margin: 50px 0;
  padding: 35px 60px;
  border-radius: 15px;
  background-color: #F7F7F7;
}
.vakancy_advan .vakancy_advan_item:nth-child(1) {
  transition-delay: 0.2s;
}
.vakancy_advan .vakancy_advan_item:nth-child(2) {
  transition-delay: 0.5s;
}
.vakancy_advan .vakancy_advan_item:nth-child(3) {
  transition-delay: 0.8s;
}
.vakancy_advan .vakancy_advan_item:nth-child(4) {
  transition-delay: 1.1s;
}
.vakancy_advan .vakancy_advan_item:nth-child(5) {
  transition-delay: 1.4s;
}
.vakancy_advan_item.way {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.vakancy_advan_item.way.way--active {
  opacity: 1;
  transform: none;
}
.vakancy_advan_img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.vakancy_advan_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vakancy_advan_text {
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
.page_form_block {
  position: relative;
  z-index: 1;
  padding: 70px 150px 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.page_form_block:after,
.page_form_block:before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.page_form_block:after {
  width: 280px;
  height: 310px;
  left: 0;
  background: url('../img/form_left.png') left bottom / cover no-repeat;
}
.page_form_block:before {
  width: 270px;
  height: 320px;
  right: 0;
  background: url('../img/form_right.png') right bottom / cover no-repeat;
}
.page_form_block .form_title {
  font-size: 40px;
  margin-bottom: 80px;
}
.page_form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.page_form .input_block:nth-child(3n) {
  margin-right: 0;
}
.input_name {
  font-size: 20px;
  margin-bottom: 18px;
  color: #777;
  font-weight: 600;
}
.input_block {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 60px;
}
.input_block .form_input,
.input_block .form_select {
  margin-bottom: 0;
  padding-bottom: 12px;
  display: block;
  width: 100%;
  font-size: 24px;
  font-style:italic;
  color: #000;
  font-weight: normal;
  border-radius: 6px;
}
.input_block .form_select {
  background-position: right top 11px;
  background-size: 14px;
}
.input_block .form_btn {
  display: block;
  width: 100%;
  padding: 22px;
  font-size: 24px;
}
.file_label {
  display: flex;
  padding: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #333;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  background-color: rgba(249, 202, 12, 0.2);
}
.file_label:hover {
  background-color: rgba(249, 202, 12, 0.4);
}
.file_icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-left: 15px;
  background: url('../img/file_icon.svg') center / contain no-repeat;
}
.file_input {
  display: none;
}
/*      Vakancy Page styles END   */
/*      Partners Page styles    */
.partner_list {
  margin-top: 85px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom:90px;
}
.part_item {
  width: 48.5%;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.part_img {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  margin-top: 10px;
  margin-bottom: -20px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part_img img {
  display: block;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}
.part_img:after {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  border: 1px solid #D7DADE;
  z-index: -2;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.part_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  border: 2px solid #FF7A00;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
}
.part_img_line {
  position: absolute;
  top: 79%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  height: 0px;
  border-top: 2px solid #ff7a00;
}
.part_more {
  position: absolute;
  top: 87%;
  left: 50%;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ff7a00;
  text-decoration: underline;
  transform: translateX(-50%);
}
.part_more:hover {
  text-decoration: none;
}
.part_name {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.input_block.input_block_text {
  width: 65%;
  margin-right: 0;
}
/*      Partners Page styles END    */
/*      Basket Page styles    */
.title.title_left {
  text-align: left;
}
.basket_title {
  padding-right: 15px;
}
.korz-textarea,
.korz-json {
  display: none;
}
.basket {
  margin-top: 35px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.basket--main{
  margin-bottom:50px;
}
.basket .small_title {
  padding: 15px 30px;
  margin-bottom: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
.basket .small_title .more_btn{
  margin: 15px auto 0;
  padding: 15px 50px;
  font-size: 16px;
}
.basket_head {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid #D7DADE;
}
.basket_head .basket_head_item:nth-child(1),
.basket_head .basket_head_item:nth-child(2) {
  text-transform: uppercase;
}
.basket_head_item {
  max-width: 30%;
  font-size: 18px;
  font-weight: bold;
  color: #ACACAC;  
}
.basket-akcia{
  background-color:#f7f7f7;
  padding:40px;
  border-radius:6px;
  overflow:hidden;
  border: 1px solid #D7DADE;
}
.akcia-basket{
  background-color:#fff;
  padding:16px;
  border-radius:4px;
  display:flex;
  align-items: center;
  border:1px solid #D7DADE;
}
.backi-list li{
  margin-bottom:20px;
}
.akcia-basket__img{
  display:flex;
  flex-shrink: 0;
  width:150px;
  height:150px;
  overflow:hidden;
  border-radius:50%;
  margin-right:25px;
  border:1px solid #D7DADE;
}
.akcia-basket__img img{
  object-fit:cover;
  height:100%;
}
.akcia-basket__img:hover img{
  transform: scale(1.1);
}
.akcia-basket__heading{
  display: block;
  margin-bottom: 14px;
  color: #df6b00;
  font-weight: bold;
  font-size: 21px;
}
.akcia-basket__heading:hover{
  color:#555;
}
.basket_head_second {
  margin-left: auto;
  margin-right: 60px;
}
.basket_head_third {
  margin-right: 40px;
}
.basket_head_last {
  margin-right: 70px;
}
.basket_body .basket_row:not(:last-child) {
  border-bottom: 1px solid #D7DADE;
}
.basket_body .basket_row:last-child{
  border-bottom:none;
}
.basket_row {
  display: flex;
  align-items: center;
  border-bottom:1px solid #D7DADE;
  padding: 23px 30px 23px 20px;
}
.basket_img {
  display: block;
  width: 165px;
  height: 165px;
  flex-shrink: 0;
  margin-right: 10px;
}
.basket_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.basket_name {
  display: table;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.basket_name:hover {
  color: #FF7A00;
}
.basket_text {
  width: 31%;
  flex-shrink: 0;
  margin-right: 10px;
}
.basket_text .text_item {
  max-height: 80px;
  overflow: hidden;
  /*font-size: 16px;*/
}
.text_item--korz p{
  font-weight: 500;
  color: #333;
  line-height: 145%;
}
.basket_amount {
  display: flex;
  margin: 0 auto;
}
.amount_btn {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.2s;
  background: center / 45% no-repeat, #e0e0e0;
}
.amount_btn:hover {
  opacity: 1;
}
.remove {
  background-image: url('../img/minus_black.svg');
}
.add {
  background-image: url('../img/plus_black.svg');
}
.basket_summ {
  display: block;
  margin: 0 20px;
  width: 25px;
  max-width: 120px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: none;
  outline: none;
}
.basket_summ::-webkit-outer-spin-button,
.basket_summ::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.basket_sel {
  max-width: 110px;
  margin: 0 20px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  padding-right: 15px;
  -webkit-appearance: none;
  background: url('../img/select_arrow_gray.svg') right center / 10px no-repeat, #fff;
}
.basket_del {
  display: block;
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 30px;
  background: url('../img/basket_del.svg') center / contain no-repeat;
}
.basket_del:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.2s;
  background: url('../img/basket_del_red.svg') center / contain no-repeat;
}
.basket_del:hover:after {
  opacity: 1;
}
.basket_form_block .form_title {
  text-align: left;
}
.basket_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  padding: 0 40px 40px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.basket_form .basket_form_head,
.basket_form .basket_form_foot {
  width: 100%;
  position: relative;
  border: none;
}
.basket_form .basket_form_head:after{
  content: "";
  position: absolute;
  height: 0;
  left: -40px;
  right: -40px;
  border-top: 1px solid #DCDEE2;
}
.basket_form .basket_form_head:after {
  bottom: 0;
}
.basket_form .basket_form_foot:after {
  top: 0;
}
.basket_form .form_input,.basket_form .form_select {
  padding-bottom: 17px;
  width: 100%;
  margin-bottom: 32px;
  font-size: 16px;
}
.basket_form .form_select {
  background-position: right top 8px;
}
.basket_form .form_btn {
  font-size: 20px;
  padding: 20px 40px;
}
.form_array {
  display: none;
}
.basket_form_head {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
  padding: 30px 0;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #D7DADE;
}
.basket_form_text {
  margin: 0 -30px 40px;
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  color: #FF7A00;
  background-color: rgba(255, 122, 0, 0.1);
}
.basket_inner_form {
  margin-top: 100px;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
}
.basket_inner_form .form_title {
  width: 100%;
  text-align: left;
}
.basket_form_top {
  display: flex;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid #DCDEE2;
}
.basket_form_step {
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 12px 25px;
  margin-right: 30px;
  border: 1px solid #DCDEE2;
}
.basket_form_step.active {
  border-width: 2px;
  border-color: #FF7A00;
}
.basket_form_step.active:hover{
  background-color:transparent;
}
.basket_form_step:hover{
  background-color:#f3f3f3;
}
.basket_form_body {
  padding: 30px 60px;
  position: relative;
  z-index: 1;
}
.basket_form_body .input_name {
  text-transform: uppercase;
  margin-bottom: 17px;
}
.basket_form_body .small_title {
  font-size: 20px;
  margin-bottom: 0;
}
.basket_form_body .text_item {
  color: #333;
  font-weight: 500;
  font-size: 18px;
}
.basket_body_step {
  opacity: 0;
  display: none;
  padding-bottom: 30px;
  left: 60px;
  top: 60px;
  right: 60px;
  pointer-events: none;
}
.basket_body_step.active {
  display: block;
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.basket_body_step .basket_body_row:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 30px;
  background: url('../img/dashed_border.png') bottom center / 100% 1px no-repeat;
}
.basket_first_step {
  padding-top: 60px;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
.basket_body_step.basket_first_step.active{
  display: flex;
}
.basket_first_step .input_block {
  width: 26%;
  margin-right:3%;
  margin-bottom: 20px;
}
.basket_first_step .form_select {
  /*font-size: 18px;*/
  white-space: normal;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  padding-right: 25px;
}
.basket_first_step .form_select.error {
  border-color: red;
}
.basket_first_step .input_block .form_select {
  font-size: 18px;
}
.basket_form_bottom {
  padding: 30px 60px;
  border-top: 1px solid #DCDEE2;
}
.basket_form_bottom .form_btn {
  display: table;
  width: 200px;
}
.basket_form_bottom .form_btn.hide {
  display: none;
}
.basket_form_price {
  display: none;
}
.basket_form_price.small_title {
  margin-bottom: 0;
}
.del-benefits{
    display:flex;
    padding-top:80px;
    justify-content: space-between;
    margin-right:-20px;
}
.del-benefits__item{
    width:25%;
}
.del-benefits__item .profit_item{
    height:100%;
    margin-right:20px;
}
.akcii {
  margin-top: 100px;
  padding: 45px;
  border-radius: 15px;
}
.akcii_list {
  margin-top: 30px;
}
.akcii_item {
  position: relative;
  display: flex;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  margin-bottom: 15px;
  overflow: hidden;
}
.akcii_item .text_item {
  font-size: 16px;
}
.akcii_img {
  width: 200px;
  flex-shrink: 0;
}
.akcii_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.akcii_text {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 20px 80px 20px 30px;
}
.akcii_date {
  font-size: 14px;
  color: #C8C9CC;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 140%;
}
.akcii_date span:first-child {
  margin-right: 30px;
}
.akcii_name {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #FF7A00;
  margin-bottom: 15px;
}
.akcii_name:hover {
  color: #F9CA0C;
}
.akcii_more {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 3px;
  background: url('../img/right_white.svg') center / 50% no-repeat, #C8C9CC;
}
.akcii_more:hover {
  background-color: #FF7A00;
}
.akcii_sidebar.akcii {
  padding: 40px;
}
.akcii_sidebar .small_title {
  font-size: 30px;
}
.akcii_sidebar .akcii_item {
  flex-direction: column;
  margin-bottom: 30px;
}
.akcii_sidebar .akcii_img {
  width: 100%;
  overflow: hidden;
  height: 180px;
}
.akcii_sidebar .akcii_text {
  padding: 20px;
  flex-direction: column;
}
.sidebar_share_head {
  margin-top: 100px;
  font-size: 24px;
  font-weight: bold;
  background-color: #FF7A00;
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px 15px 0 0;
}
.main_prod.sidebar_share {
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.sidebar_share .main_prod_type {
  margin-bottom: 20px;
  font-size: 14px;
  padding: 5px 10px;
}
.sidebar_share .small_title {
  font-size: 20px;
}
.sidebar_share .main_prod_text {
  margin-right: 0;
  width: 55%;
}
.sidebar_share:after {
  content: "";
  position: absolute;
  left: -5px;
  top: -2px;
  bottom: -5px;
  z-index: -1;
  width: 70%;
  background: url(../img/share_after.png) center / 100% 100% no-repeat;
}
.sidebar_share .more_btn {
  padding: 15px 40px;
  font-size: 16px;
}
.delivery {
  display: flex;
  justify-content: center;
  min-height: 176px;
  margin-top: 20px;
  padding: 40px 70px;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
  background: url('../img/delivery_bg.jpg') center / cover no-repeat;
}
.delivery:hover{
  box-shadow: 6px 8px 15px 1px rgb(0 0 0 / 22%);
}
.delivery_name {
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  line-height: 110%;
  text-transform: uppercase;
}
.delivery_icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  margin-right: 15px;
  /*background: url('../img/truck_white.svg') center / contain no-repeat;*/
  background: url('../img/test_icon.svg') center / contain no-repeat;
}
.delivery_calc .delivery_icon {
  width: 80px;
  height: 80px;
  margin-right: 40px;
  background-image: url('../img/delivery-truck.svg');
}
.delivery.delivery_calc {
  background-image: url('../img/delivery_bg_2.jpg');
}
.delivery_btn {
  display: table;
  margin: 20px auto 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}
.delivery_btn:hover {
  text-decoration: none;
}
.delivery.delivery_buy {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  background-image: url('../img/buy_bg_gray.jpg');
}
.buy_name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  /*text-shadow: 0px 4px 4px #09A8F4;*/
  text-shadow: 0px 4px 4px #AAABAB;
}
.buy_name .delivery_icon {
  width: 60px;
  height: 60px;
  margin-right: 40px;
  background-image: url('../img/quest_icon_gray.svg');
}
/*      Basket Page styles END    */


/*Begin delivery*/
.delivery-top{
    display: block;
    background-color: #f3f3f3;
    padding: 18px 60px;
    overflow:hidden;      
}
.delivery-top__item{
    margin-right: 25px;
    font-weight: 500;
    float: left;
}
.delivery-top .delivery-top__item:last-child{
  margin-right:0;
}
.basket_row--del{
  padding: 20px 0px 20px 0px;
}
.basket_row--del .more_btn{
  margin-left:50px;
  margin-left: 50px;
  padding: 10px 58px;
  font-size: 16px;
  width: 200px;
}
.basket_row--del .added{
  background-color: #df6b00;
}
.basket_row--del .basket_img{
  height:auto;
  width:74px;
  margin-right: 30px;
}
.basket_row--del .basket_text {
    width: 36%;
}    
.basket_row--del .basket_img img{
  height:auto;
}
.basket_body_step .basket_row:last-child{
  border-bottom:none;
  padding-bottom:0;
}

/*End delivery*/

/*      Comment Page styles   */
.comment_block {
  position: relative;
  margin-top: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 100px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.comment_text {
  width: 45%;
}
.comment_slider {
  margin-bottom: 80px;
}
.comment_item {
  margin: 0 10px;
}
.comment_item .text_item {
  font-size: 20px;
}
.comment_head {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.comment_head:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.comment_head .text_item {
  font-style: italic;
}
.comment_name {
  font-size: 36px;
  font-weight: bold;
}
.comment_rating {
  width: 150px;
}
.comment_rating img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.comment_control {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.comment_arrows {
  margin-right: 80px;
}
.comment_arrows .slick_arrow {
  width: 45px;
  height: 20px;
  cursor: pointer;
  border: none;
  outline: none;
  background: center / contain no-repeat;
}
.comment_arrows .slick_next {
  background-image: url('../img/right_orange.svg');
}
.comment_arrows .slick_prev {
  margin-right: 40px;
  background-image: url('../img/left_orange.svg');
}
.comment_dots .slick-dots {
  display: flex;
  align-items: center;
}
.comment_dots .slick-dots > li {
  line-height: 0;
}
.comment_dots .slick-dots > li:not(:last-child) {
  margin-right: 10px;
}
.comment_dots button {
  width: 0;
  height: 0;
  font-size: 0;
  padding: 8px;
  transition: 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 50%;
  background-color: #FF7A00;
}
.comment_dots button:hover {
  opacity: 1;
}
.comment_dots .slick-active button {
  opacity: 1;
  padding: 12px;
}
.comment_video_block {
  width: 500px;
  height: 500px;
  flex-shrink: 0;
  /*margin-top: -280px;*/
  margin-top: -240px;
  position: relative;
  z-index: 1;
}
.comment_video_block:after {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  right: -30px;
  bottom: -30px;
  z-index: -1;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 38.5%, 0 38.5%);
  clip-path: polygon(0 0, 100% 0, 100% 38.5%, 0 38.5%);
}
.comment_video_slider {
  width: 100%;
  height: 100%;
}
.comment_video_slider .slick-list,
.comment_video_slider .slick-track {
  height: 100%;
}
.comment_video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FF7A00;
}
.comment_video iframe {
  width: 100%;
  height: 100%;
}
.comment_video_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: center / cover no-repeat;
}
.comment_video_img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 3;
  background: url('../img/play_btn.svg') center / 15% no-repeat, rgba(0, 0, 0, 0.2);
}
.comment_img {
  position: absolute;
  top: -200px;
  /*right: 610px;*/
  right: 510px;
  width: 440px;
  z-index: 1;
}
.comment_img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.popup {
  display: none;
}
.video_popup.fancybox-content {
  width: 600px;
  max-width: 95%;
}
.video_popup iframe {
  width: 100%;
}
/*      Comment Page styles END   */
/*      Transportation Page styles    */
.page_text_block {
  width: 50%;
}
.page_text_block .small_title {
  padding-right: 20%;
}
.share_block {
  display: table;
  margin-top: 50px;
  border-radius: 10px;
  padding: 15px 30px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.share_text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.share_block .ya-share2__badge span.ya-share2__icon {
  width: 30px;
  height: 30px;
  background-size: contain;
}
.share_block .ya-share2__badge {
  margin-right: 5px;
}
.sub-part {
  display: flex;
  margin-top: 80px;
}
.sub-part__left {
  width: 32%;  
}
.sub-part__left .news_item{
  margin-right: 0;
}
.news_name{
  font-family: Arial;
}
.news_name.news_name--2{
  font-size: 21px;
  line-height: 28px;
}
.sub-part__right {
  width: 68%;
  padding-right:50px;
}
.page_img_block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
}
.page_img_bg {
  width: 100%;
  height: 100%;
  border-radius: 100% 0 0 0;
  background: url('../img/bg.jpg') center / cover no-repeat;
}
.page_img_item {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page_img_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page_img_transport {
  bottom: -100px;
  width: 660px;
  height: 500px;
}
.map_block {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.map_block img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.map_text {
  width: 40%;
  margin: 130px 0 130px auto;
}
.map_text .more_btn {
  margin-top: 30px;
}
.gray {
  background-color: #F7F7F7;
}
/*      Transportation Page styles END    */
/*      Diagnostic Page styles    */
.page_img_diagnostic {
  width: 500px;
  height: 400px;
  bottom: -80px;
}
.text_item.page_text {
  font-size: 20px;
  line-height: 160%;
}
.page_text > p:not(:last-child) {
  margin-bottom: 20px;
}
.prod_inner_content .page_text {
  padding-right: 20%;
}
/*      Diagnostic Page styles END    */
/*      Subsiding Page styles   */
.subsiding_title {
  text-align: center;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(6, 15%);
  justify-content: space-between;
  grid-gap: 50px 10px;
}
.steps .step_item:nth-child(5) .step_name {
  margin-top: auto;
  margin-bottom: auto;
}
.step_item {
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.step_item .text_item {
  text-align: center;
  font-size: 16px;
}
.step_img {
  width: 65px;
  height: 65px;
  /*margin: -130px auto 30px;*/
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  /*&:after{
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #D7DADE;
    clip-path: polygon(0 0, 100% 0, 100% 53%, 0 53%);
  }*/
}
.step_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step_count {
  display: table;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto 20px;
  background-color: #F9CA0C;
}
.step_name {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
.doc_list {
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.doc_list_head {
  font-size: 30px;
  /*text-transform: uppercase;*/
  font-weight: bold;
  padding: 30px 40px;
  border-bottom: 1px solid #E6E6E6;
}
.doc_list_body {
  padding: 30px 40px 50px;
}
.doc_list_body .doc_list_item:not(:first-child) {
  margin-top: 30px;
}
.doc_list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px dashed #DBDEE1;
}
.doc_item_name {
  color: #78818F;
  font-size: 20px;
  font-weight: 500;
}
.doc_item_name:hover {
  color: #FF7A00;
}
.doc_item_btn {
  display: block;
  position: relative;
  /*width: 35px;*/
  /*height: 35px;*/
  /*flex-shrink: 0;*/
  /*border-radius: 50%;*/
  color: #78818F;
  font-weight: 500;
  margin-left: 20px;
  padding-top: 40px;
  background: url('../img/download_gray.svg') top center / 55% no-repeat;
}
.doc_item_btn:hover {
  /*color: #ffb204;*/
  color: #FF7A00;
}
.doc_item_btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.3s;
  background: url('../img/download_orange.svg') top center / 55% no-repeat;
}
.doc_item_btn:hover:after {
  opacity: 1;
}
.subsid-block{
    position: relative;
    height: 100%;
    padding: 30px 30px 80px 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #DCDEE2;
    box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
    text-align: center;
}
.video-car{
    position: relative;
    margin-right: 20px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #D7DADE;
    box-shadow: 10px 10px 30px rgba(0, 4, 28, 0.05);
    border-radius: 10px;
    margin-top: 80px;
    margin-bottom: 45px;
}
.video-car:before{
    content: "";
    width: 217px;
    height: 212px;
    border-radius: 50%;
    position: absolute;
    margin-left: -110px;
    position: absolute;
    left: 50%;
    top: -62px;
    right: -20px;
    bottom: -20px;
    border: 1px solid #D7DADE;
    z-index: -1;
    background-color: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.video-car__img{
    display:block;
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    margin:-80px auto 18px auto;
    position:relative;
    border:10px solid #fff;
}
.video-car__img:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 3;
    background: url(../img/play_btn.svg) center / 15% no-repeat, rgba(0, 0, 0, 0.35);
}    
.video-car__img img{
      width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 1s;
}
.video-car__heading{
  font-weight:bold;
  display:block;
  font-size:18px;
  height: 58px;
}
.video_list {
  margin-top: 50px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.video_list .video_item:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.video_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 35px 40px;
}
.video_item_head.active .video_item_icon {
  transform: rotateZ(220deg);
}
.video_item_head:hover .video_item_name,
.video_item_head.active .video_item_name {
  color: #FF7A00;
}
.video_item_name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}
.video_item_icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: 0.8s;
  background: url('../img/video_plus.svg') center / cover no-repeat;
}
.video_item_body {
  display: none;
  padding: 40px 40px 50px;
}
.video_item_body iframe {
  display: block;
  width: 600px;
  height: 300px;
  margin: 0 auto;
}
.team_slider_control.video_controls{
  margin-top: 20px;
}

.subsiding_catalog_title {
  align-items: center;
}
.subsiding_catalog_title .small_title {
  margin-bottom: 0;
}
.subsiding_btn {
  width: 470px;
  max-width: 100%;
  /*margin-top: 40px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 35px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  color: #FF7A00;
  border: 2px solid #FF7A00;
}
.subsiding_btn:hover {
  color: #fff;
  background-color: #FF7A00;
}
.subsiding_btn:hover .subsiding_btn_icon:after {
  opacity: 1;
}
.subsiding_btn_icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 30px;
  background: url('../img/download_orange.svg') center / contain no-repeat;
}
.subsiding_btn_icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: url('../img/download_white.svg') center / contain no-repeat;
}
.subsiding_text {
  position: relative;
  z-index: 1;
  max-height: 440px;
  overflow: hidden;
  margin-top: 70px;
  padding: 60px;
  background-color: #fff;
  border-radius: 10px;
  transition: 1s;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}

.subsiding_popup.fancybox-content{
  width: 1400px;
  max-width: 95%;
  padding: 40px;
  margin: 20px auto;
}

.subsiding_popup .text_item.page_text ol{
  padding-left: 25px;
}

.subsiding_text.text_item {
  color: #333;
  font-size: 18px;
}
.subsiding_text:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  z-index: 1;
  background-color: #fff;
}
.subsiding_text.active {
  max-height: 4000px;
}
.read_more {
  position: absolute;
  display: block;
  padding: 5px 0;
  color: #FF7A00;
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
  background-color: #fff;
  left: 60px;
  bottom: 60px;
  right: 60px;
  z-index: 3;
}
/*      Subsiding Page styles END   */
/*      News Page styles    */
.news {
  margin-top: 110px;
  display: flex;
  flex-wrap:wrap;
  margin-right:-20px;
  margin-bottom: -80px;
}
.news > li{
  width: 20%;
  margin-bottom: 150px;
}
.news_item {
    position:relative;
    height:100%;
    margin-right:20px;
    padding: 30px 30px 80px 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #DCDEE2;
    box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
    text-align:center;
}
.news_item .part_img {
  margin: -85px auto 20px;
  width: 200px;
  height: 200px;
  overflow: visible;
  position: relative;
  z-index: 1;
  /*border-radius: 50%;*/
}
.news_item .part_img:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115%;
  height: 115%;
  z-index: -1;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ccc;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 32.5%, 0 32.5%);
}
.news_item .part_img img{
  border-radius: 50%;
}
.news_item .part_img:hover img {
  transform: scale(1.1);
}
/*.news_item .part_img:after,*/
.news_item .part_img:before {
  content: none;
  display: none;
}
.news_item .text_item {
  margin-bottom: 30px;
  font-size: 16px;
}
.news_item .more_btn {
  /*position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;*/
  text-align: center;
  background-color: transparent;
  color: #FF7A00;
  border: 2px solid #FF7A00;
  padding: 10px 20px;
  display: block;
}
.news_item .news_item_date{
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  top: 215px;
}
span.news__date{
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
}
.news__date{
	font-family: 'Montserrat', sans-serif;
	text-align: right;
}
.news_item .more_btn:hover {
  color: #fff;
  background-color: #FF7A00;
}
.news_item .part_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: 1s;
}
.news_name {
display: block;
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    max-height: 75px;
    overflow: hidden;
}
.news_name:hover {
  color: #FF7A00;
}
/*      News Page styles END    */
/*    News_Inner Page styles    */
.news_inner_img {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
}
.news_inner_img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.news_inner_text {
  position: relative;
}
.news_inner_text .page_text {
  width: 52%;
  margin: 80px auto 0;
}
.news_inner_text .share_block {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
}
.news_inner_text img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 30px;
}
.news_inner_text .akcii {
  width: 1080px;
  max-width: 100%;
  margin: 60px auto 0;
}
.news_inner_text .akcii .small_title {
  font-size: 30px;
}
.news_subscribe {
  width: 1080px;
  max-width: 100%;
  margin: 80px auto 0;
  padding: 45px;
  border-radius: 10px;
}
.news_subscribe .small_title {
  font-size: 26px;
  margin-bottom: 30px;
  text-align: center;
}

.news_inner .akcia-inner__img{
	border: none;
}
.news_inner .akcia-inner__img img{
	max-height: 300px;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #ccc;
}

.news_controls{
  position: relative;
  margin-top: 30px;
}
.news_gal_item{
  width: 240px;
  height: 240px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50%;
}
.news_gal_item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_gal_block{
  margin-top: 50px;
  margin-right: 50px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}

/*    News_Inner Page styles END    */


/*begin akcia*/
.akcia-part{
  display:flex;
}
.akcia-part__left{
  width:72%;
}
.akcia-part__right{
  width:28%;
}
.akcia-inner{
  margin-right:50px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  padding: 38px;
  border-radius: 8px;
}
.akcia-inner__img{
  display:block;
  margin-bottom:30px;
  border-radius:10px;
  overflow:hidden;
  border: 1px solid #ccc;
}
.akcia-inner__img img{
  width:100%;
  display: block;
}
.akcia-heading{
	display: block;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 25px;
  margin-top: 7px;
  font-family: Arial;
}
.news-right{
  margin-top: 100px;
}
.news-right li{
  margin-bottom: 120px;
}
.news-right li:last-child{
  margin-bottom: 0;
}
.news-subscribe{
  background-color:#F7F7F7;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  margin-bottom:125px;
  padding:35px;
}
.news-subscribe__heading{
    display: block;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 25px;
    text-align:center;
}
.news-subscribe input{
  border:1px solid #ccc;
  border-radius:5px;
  width:100%;
  height:41px;
  text-indent: 10px;
  margin-bottom:20px;
}
.news-subscribe button{
  border:none;
  width:100%;
  height: 42px;
  border-radius:5px;
  font-weight: 600;
  cursor:pointer;
}
/*end akcia*/


/*      Login / Registration Page styles    */
.login_section {
  min-height: 84vh;  
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/reg_bg.jpg') center / cover no-repeat;
}
.login_block {
  width: 430px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
}
.login_block.reg_block {
  width: 52%;
}
.login_head {
  color: #fff;
  font-size: 20px;
  padding: 30px 40px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
  background: url('../img/login_icon.svg') right 40px center / 23px no-repeat, #FF7A00;
}
.login_body {
  padding: 50px 45px;
  border-radius: 0 0 10px 10px;
}
.login_body .input_block {
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
.login_body .form_btn {
  width: 100%;
}
.login_body .input_name {
  margin-bottom: 20px;
}
.forget_pass {
  display: table;
  margin: 20px auto 0;
  color: #FF7A00;
  font-weight: bold;
  text-decoration: underline;
}
.forget_pass:hover {
  text-decoration: none;
}
.reg_block {
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.reg_block .login_body {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reg_block .input_block,
.reg_block .form_btn {
  width: 48%;
}
.reg_block .form_btn{
  margin-bottom: 25px;
}
.reg_block .login_head {
  background-size: 28px;
  background-image: url('../img/reg_icon.svg');
}
.reg_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reg_advan {
  width: 43%;
}
.reg_advan_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reg_advan_list .reg_advan_item:nth-child(1) {
  transition-delay: 0.2s;
}
.reg_advan_list .reg_advan_item:nth-child(2) {
  transition-delay: 0.5s;
}
.reg_advan_list .reg_advan_item:nth-child(3) {
  transition-delay: 0.8s;
}
.reg_advan_list .reg_advan_item:nth-child(4) {
  transition-delay: 1.1s;
}
.reg_advan_list .reg_advan_item:nth-child(5) {
  transition-delay: 1.4s;
}
.reg_advan_list .reg_advan_item:nth-child(6) {
  transition-delay: 1.7s;
}
.reg_advan_item {
  width: 48%;
  margin-top: 40px;
}
.reg_advan_item .text_item {
  font-size: 16px;
}
.reg_advan_item.way {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.reg_advan_item.way.way--active {
  opacity: 1;
  transform: none;
}
.reg_advan_img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.reg_advan_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reg_advan_name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.accept_name {
  padding-right: 20%;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  color: #FF7A00;
}
.accept_name:hover {
  text-decoration: none;
}
.accept_input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  margin-right: 10px;
}
.input_err {
  display: none;
  color: red;
  font-weight: 500;
  margin-top: 5px;
}
.pass_input_block {
  position: relative;
}
.pass_eye {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 15px;
  cursor: pointer;
  top: 40px;
  background: url(../img/view.svg) center / 30px no-repeat;
}
.pass_eye.active {
  background-image: url('../img/no-view.svg');
}
.full_input .pass_eye{
  top: 70%;
  transform: translateY(-50%);
}

/*      Login / Registration Page styles END    */
/*      Contact Page styles     */

.contact-part{
  display:flex;
  margin-top:50px;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  margin-bottom:60px;
  border-radius:5px;
  overflow:hidden;
}
.contact-part__left{
  width:32%;
  background-color:#FF7A00;
}
.contact-part__right{
  width:68%;
}
.cont-left{
  padding:40px 35px;
  color:#fff;
}
.cont-left__heading{
  display:block;
  font-weight:bold;
  font-size:24px;
  margin-bottom:30px;
  padding-bottom:15px;
  border-bottom:1px solid rgba(255, 255, 255, 0.3);
}
.cont-area{
  padding:40px;
  background-color: #fff;
}
.cont-area__heading{
    display: block;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D7DADE;
}
.cont-ul{
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:1px solid rgba(255, 255, 255, 0.3);
}
.cont-ul li{
  margin-bottom:20px;
}
.cont-ul li:last-child{
  margin-bottom:0;
}
.cont-left .cont-ul:last-child{
  border-bottom:none;
  padding-bottom:0;
  margin-bottom:0;
}
.cont-row{
  position:relative;
  padding-left:40px;  
  font-weight:600;
  font-size:16px;
  min-height:25px;
  color: #fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content: center;
}
.cont-row:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:25px;
  height:25px;
  background-size:contain;
  background-repeat:no-repeat;  
}
.cont-row--adress:before{
  background-image:url(../img/cont-adress.svg);
}
.cont-row--phone:before{
  background-image:url(../img/cont-phone.svg);
}
.cont-row--mail:before{
  background-image:url(../img/cont-evelope.svg);
}
.cont-map{
  border:1px solid #FF7A00;
  border-radius:5px;
  height:350px;
  overflow:hidden;
}
.cont-map iframe{
  width:100%;
  height:100%;
}
.contact_form {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.contact_form .input_block {
  width: 48%;
  margin-bottom: 35px;
}
.contact_form .input_block:nth-child(even) {
  margin-right: 0;
}
.contact_form .input_block:nth-child(odd) {
  margin-right: 4%;
}
.contact_form .input_name {
  margin-bottom: 15px;
  font-size: 18px;
}
.contact_form .form_btn {
  width: 220px;
  font-size: 18px;
  padding: 18px;
  margin-top:0;
}
.contact_form .input_block .form_input {
  font-size: 18px;
}
.contact_bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #DCDEE2;
  display: flex;
  flex-wrap: wrap;
}
.contact_bottom .contact_bottom_item:not(:last-child):after {
  content: "";
  position: absolute;
  width: 0;
  right: -60px;
  height: 35px;
  top: 50%;
  border-right: 1px solid #DCDEE2;
  transform: translateY(-50%);
}
.contact_bottom_item {
  position: relative;
  margin-top: 20px;
  margin-right: 120px;
  font-size: 18px;
  font-weight: 500;
  padding-left: 35px;
  background: url('../img/map_icon.svg') top left / 22px no-repeat;
}
.comment_block.contact_block {
  display: block;
  margin-top: 260px;
}
.contact_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contact_content .comment_video_block {
  width: 600px;
  height: 600px;
  margin-top: -280px;
}
.city-ul{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background-color: #fff;
  overflow: hidden;
   margin-bottom:30px;
}
.city-ul li{
  margin:0 10px;
}
.city-ul li a{
  display: block;
  color: #555;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 50px;
  cursor: pointer;
}
.city-ul li.active a{
  background-color: #f3f3f3;
}
.cont-map{
  display:none;
}
.cont-map.active{
  display:block;
}
/*      Contact Page styles END     */


/*      Agroconsulting Page styles    */
.agro_section {
  overflow: hidden;
}
.agro {
  margin-top: -30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agro .main_img_silder {
  width: 620px;
  height: 620px;
}
.agro .main_img_dots {
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  border: none;
  transform: translate(-50%, -50%) rotateZ(10deg);
}
.agro_text_block {
  width: 45%;
}
.agro_text_slider .main_btn {
  width: 300px;
  text-align: center;
  padding: 24px;
  font-size: 20px;
}
.agro_arrows {
  margin-top: 110px;
}
.agro_arrows .slick_arrow {
  width: 80px;
  height: 60px;
  cursor: pointer;
  outline: none;
  border: 1px solid #D7DADE;
  opacity: 0.6;
  background: center / 17% no-repeat;
}
.agro_arrows .slick_arrow:hover {
  opacity: 1;
}
.agro_arrows .slick_next {
  border-radius: 0 50px 50px 0;
  background-image: url('../img/right_gray.svg');
}
.agro_arrows .slick_prev {
  border-radius: 50px 0 0 50px;
  background-image: url('../img/left_gray.svg');
}
.agro_img_block {
  position: relative;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agro_img_block .main_dots button {
  padding: 8px;
}
.agro_img_block .main_dots .dot_1 {
  top: 69%;
  left: 4%;
}
.agro_img_block .main_dots .dot_2 {
  top: 36%;
  left: 2%;
}
.agro_img_block .main_dots .dot_3 {
  top: 11%;
  left: 19%;
}
.agro_img_block .main_dots .dot_4 {
  top: 0%;
  left: 49%;
}
.agro_img_block .main_dots .dot_5 {
  top: 7%;
  left: 76%;
}
.circle_svg {
  width: 111%;
  height: 111%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-70deg);
}
.circle_gradient {
  stroke-width: 0.3px;
}
.agro_page .main_slide .title {
  font-size: 48px;
  margin-bottom: 20px;
}
.agro_page .main_text {
  font-size: 26px;
}
.agro_page .agro_text_block {
  width: 50%;
}
.serv_block {
  margin-top: 80px;
}
.serv_block .small_title {
  text-transform: uppercase;
}
.agro_page_text.text_item {
  font-size: 26px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  margin: 130px 0 80px;
}
.services .serv_item:nth-child(4n) {
  margin-right: 0;
}
.serv_item {
  width: 23%;
  margin-right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.serv_img {
  width: 180px;
  height: 180px;
  margin: -110px auto 30px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.serv_img:after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 115%;
	height: 115%;
	z-index: -1;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #ccc;
	transform: translate(-50%, -50%);
	clip-path: polygon(0 0, 100% 0, 100% 35.5%, 0 35.5%);
}
.serv_img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #FF7A00;
}
.serv_name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.serv_btn {
  padding: 13px 50px;
  border-radius: 50px;
  margin: 30px auto 0;
  color: #FF7A00;
  border: 2px solid #FF7A00;
}
.serv_btn:hover {
  color: #fff;
  background-color: #FF7A00;
}
.agro_club .small_title {
  text-transform: uppercase;
}
.agro_club_block {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.agro_club_left,
.agro_club_right {
  padding: 60px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.agro_club_left {
  width: 100%;
}
.agro_club_left p span {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}
.agro_club_left .text_item {
  font-size: 22px;
}
.agro_club_left .text_item p:not(:last-child) {
  margin-bottom: 15px;
}
.agro_club_left .text_item a {
  color: #FF7A00;
  font-weight: bold;
}
.agro_club_left .text_item a:hover {
  text-decoration: underline;
}
.gray_line {
  margin: 40px 0;
  height: 1px;
  border-top: 1px solid #DCDEE2;
}
.agro_club_right {
  width: 30%;
  flex-shrink: 0;
  margin-left: 30px;
}
.agro_club_right .title {
  font-size: 40px;
  text-align: left;
  margin-bottom: 10px;
}
.agro_club_right .more_btn {
  margin-top: 20px;
  padding: 16px 40px;
}
.agro_club_line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  border: 1px solid #DCDEE2;
}
.agro_team {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.agro_team .team_item {
  width: 31%;
  margin: 0 0 40px;
  margin-right: 3%;
}
.agro_team .team_item:nth-child(3n) {
  margin-right: 0;
}
/*      Agroconsulting Page styles END    */

/*      Compare Page styles   */
.catalog_title {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: flex-end;
}
.compare {
  margin-top: 50px;
}
.compare .small_title{
  font-weight: 500;
  text-align: center;
}
.catalog_title.compare_title{
  justify-content: space-between;
}
.compare .small_title .more_btn{
  font-size: 16px;
  padding: 16px 50px;
  margin: 20px auto 0;
}
.compare_head,
.compare_body {
  display: flex;
  justify-content: space-between;
}
.compare_head .compare_left {
  width: 15%;
}
.compare_head.hidden .compare_clear{
	display: none;
}
.compare_body_2{
  flex-direction: column;
  align-items: center;
}
.compare_body_2 .more_btn{
  margin-top: 20px;
}
.compare_head .compare_content {
  width: 85%;
  margin-right: -30px;
  overflow: hidden;
}
.compare_left {
  width: 20%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.compare_left .prod_info_row {
  font-weight: bold;
}
.compare_content {
  width: 80%;
  display: flex;
  overflow: auto;
}
.compare_content .prod_info_row {
  justify-content: flex-start;
}
.compare_content.compare_content_2 {
  width: 100%;
  flex-direction: column;
}
.compare_content_item.first {
  width: 18%;
  font-weight: bold;
}
.compare_head .compare_content_item {
  padding-bottom: 40px;
}
.compare_content_item {
  width: 50%;
  flex-shrink: 0;
}
.compare_content_item .prod_info_row {
  font-weight: 500;
  color: #FF7A00;
}
.compare_content_2 .prod_info_row {
  border: none;
  align-items: flex-end;
}
.compare_content_2 .compare_content_item {
  padding-bottom: 10px;
  border-bottom: 2px dotted #DBDEE1;
}
.prod_info_row .compare_content_item:not(.first) {
  width: 42%;
  padding-right: 20px;
}
.compare_content_item.different{
  color: #333;
  font-weight: 600;
}
.compare_prod {
  margin-right: 30px;
  height: 100%;
  padding: 30px 30px 30px 15px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.compare_prod .prod_img {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 10px;
}
.compare_prod .prod_name {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
  color: #333;
}
.compare_prod .text_item {
  font-size: 16px;
}
.compare_prod_btn {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.compare_prod_btn .more_btn {
  width: 48%;
  padding: 12px;
}
.compare_prod_btn .orange_btn {
  border: 1px solid #FF7A00;
}
.white_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #333;
  border: 1px solid #333;
}
.white_btn:hover {
  /*background-color: red;*/
  background-color: #dbdada;
}
.white_btn_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 10px;
  background: url('../img/basket_del.svg') center / contain no-repeat;
}
.compare_btn {
  margin: auto 0;
}
.compare_btn .compare_btn_item:not(:last-child) {
  margin-bottom: 40px;
}
.compare_btn_item {
  display: table;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding-left: 50px;
  background: left center / 30px no-repeat;
}
.compare_btn_item:hover {
  color: #FF7A00;
}
.compare_clear {
  background-image: url('../img/compare_clear.svg');
}
.compare_add {
  background-image: url('../img/compare_add.svg');
}
.compare_left .prod_info_row,
.compare_content_item .prod_info_row {
  margin-top: 20px;
  font-size: 18px;
}
.fancybox-content.compare_popup_inner{
	width: 600px;
}
.small_title_text{
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
}
.compare_popup_inner .white_btn{
	margin: 0 auto;
	width: 200px;
	padding: 13px;
	max-width: 100%;
	border-color: #FF7A00;
}
.compare_popup_inner .white_btn:hover{
	color: #fff;
	background-color: #FF7A00;
}

/*      Compare Page styles END   */


/*    Favorite Page styles    */
.favorite_faq {
  padding: 30px 40px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.favorite_faq .favorite_faq_item:not(:last-child) {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
}
.favorite_question {
  font-size: 20px;
  padding-right: 30px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
  background: url('../img/info_icon.svg') right center / 22px no-repeat;
}
.favorite_question:hover,
.favorite_question.active {
  color: #FF7A00;
}
.favorite_answer {
  padding-top: 10px;
  display: none;
  line-height: 150%;
}
.favorite_answer p:not(:last-child) {
  margin-bottom: 10px;
}
/*    Favorite Page styles END    */

/*      Cabinet Otslezhivanie gruzov Page styles   */
.cab-top{
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 15px;
}
.cab-top .more_btn {    
    padding: 15px 55px;
}    
.cab-top__heading{
  display:block;
  font-weight:bold;
  font-size: 22px;
}
.gruz-ul > li{
  margin-bottom:25px;
}
.gruz-table{
    border-collapse: collapse;
    margin-left: -1px;
}
.gruz-item{
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius:5px;
  position:relative;
  padding-top:55px;
  overflow: hidden;
}
.gruz-item__heading span{
  color:#FF7A00;
}
.gruz-item__top{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content: space-between;  
  top:0;
  left:0;
  right:0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 40px;  
}
.gruz-item__heading{
  font-weight:bold;
  font-size:18px;
}
.gruz-item__info{
  overflow-x:auto;
}
.gruz-table{
  position:relative;
}
.gruz-table:after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  top: 0;
  width:1px;
  background-color:rgba(0, 0, 0, 0.2);
}
.gruz-table td,.gruz-table th{
  padding:2px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.gruz-table th{
  background-color:#F7F7F7;
  font-size:16px;
  font-weight:500;
}
.gruz-table tr th:nth-child(1){
    min-width: 140px;
}
.gruz-table tr th:nth-child(4){
    min-width: 120px;
}
.gruz-table tr th:nth-child(5){
    min-width: 120px;
}
.gruz-table tr th:nth-child(6){
    min-width: 150px;
}
.gruz-list{
  display:flex;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.gruz-list li{
  width:50%;
  margin-bottom:15px;
}
.gruz-list li span{
  font-weight:600;
}
.gruz-item__btn{
  display:inline-block;
  border:2px solid #FF7A00;
  color:#FF7A00;
  padding:10px 50px;
  font-weight:bold;
  border-radius: 25px;
  cursor:pointer;
}
.gruz-item__btn:hover{
  background-color:#FF7A00;
  color:#fff;
}
.gruz-update{
  margin-top:25px;
  font-style:italic;
  padding-left: 25px;
  padding-bottom: 15px;
}
.gruz-update span{
  font-weight:600;
}
.add-zakas{
  padding:5px;
  text-align:center;
}
.add-zakas__heading{
  display:block;
  font-size:18px;
  font-weight:bold;
  margin-bottom:25px;
  text-align:center;
}
.add-zakas input{
  height:38px;
  padding:0 10px;
  width:100%;
  margin-bottom:18px;
}
.add-zakas button{
  display:inline-block;
  border:none;
  border-radius:25px;
  padding: 10px 70px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #df6b00;
  color:#fff;
}
/*      Cabinet Otslezhivanie gruzov End   */

.zakas-list{
    padding: 25px 40px;
  }
    .zakas-list > li{
        margin-bottom:25px;
    }
    .zakas-item{
        display:flex;
        align-items:center;
        justify-content: space-between;
        border-bottom:1px solid #ccc;
    }
    .zakas-list > li:last-child .zakas-item{
      border-bottom:none;
    }    
    .zakas-item--top .zakas-item__row{
      font-weight:600;
    }
    .zakas-item__row{
      padding-bottom:10px;
      padding-right:15px;
      font-weight:500;
    }
    .zakas-item__row:first-child{
      width:10%;
    }
    .zakas-item__row:nth-child(2){
      width:15%;
    }
    .zakas-item__row:nth-child(3){
      width:25%;
    }
    .zakas-item__row:nth-child(4){
      width:25%;
    }
    .zakas-item__row:nth-child(5){
      width:25%;
      padding-right:0;
    }
    .zakas-item__status span{
        color:#FF7A00;
    }
    .zakas-item_kolvo{
        display:block;
        margin-bottom:15px;
        font-weight:bold;
    }
    .zakas-item__row .more_btn{
      display:block;
      width:100%;
      padding: 12px 52px;
      font-size:16px;
    }
/*      Cabinet Media Page styles   */


.cabinet_title.title {
  text-align: left;
  font-size: 42px;
}
.cabinet_title {
  margin-top: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(51, 62, 66, 0.3);
}
.cabinet {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;  
  justify-content: flex-end;
}
.cabinet_sidebar{
  border: 1px solid #DCDEE2;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.cabinet_sidebar.sticky{
  position: fixed;
  z-index: 3;
}
.cab_sidebar_block{
  width: 25%;
  margin-right: 30px;
}
.cab_sidebar_block > div{
  position: relative;
  z-index: 4;
}
.cab_sidebar_block > div.sticky{
  position: fixed;
}
.cabinet_sidebar {
  width: 100%;
  margin-right: 30px;
  flex-shrink: 0;
}
.cabinet_sidebar .cabinet_sidebar_link:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.cabinet_content {
  width: 74%;
}
.profile_main {
    border: 1px solid #DCDEE2;
    border-radius: 10px;
    box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.cabinet_sidebar_link {
  display: block;
  padding: 35px 50px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  border-right: 4px solid transparent;
}
.cabinet_sidebar_link.active {
  color: #FF7A00;
  font-weight: bold;
  text-transform: uppercase;
  border-color: #FF7A00;
  font-size: 18px;
}
.cabinet_sidebar_link:hover {
  color: #FF7A00;
  border-color: #FF7A00;
}
.cab_content_head {
  padding: 30px 40px;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #DCDEE2;
}
.cab_content_body {
  padding: 45px 40px;
}
.cab_content_body .media_row:not(:first-child) {
  margin-top: 60px;
}
.cab-part{
  padding-left:20px;
}
.cab-area{
  background-color:#fff;
  border: 1px solid #DCDEE2;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.cab-area__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 25px 40px;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #DCDEE2;
}
.cab-area__top .more_btn{  
    padding: 13px 45px;
}
.cab-area__content{
  padding:30px 40px;
}
.table-zakas{        
  width:100%;
  border-spacing: 0;
  margin-bottom: 30px;
  background-color: #fff;
}
.table-zakas th, .table-zakas td {
  padding: 12px;
  text-align:left;
  border-bottom: 1px solid #ccc;
}
.table-zakas th{
  padding-top:0;
}
.table-zakas th:first-child, .table-zakas td:first-child {
  padding-left:0;
}
.tr-img img{
  display:block;  
  width: 65px;
  padding-left: 10px;       
}
.zakas-top {
    margin-bottom: 10px;
    display: flex;
    align-items:center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 10px 38px;
    border-bottom: 1px solid #ccc;
}
.zakas-btn{
  position:relative;
  background-color: #fff;
  display: inline-block;
  padding: 10px 15px 10px 38px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0px 0px 1px #00000029;
  margin-left:10px;
}
.zakas-btn--print:before{
    content: "";
    position: absolute;
    top: 11px;
    left: 15px;
    width: 15px;
    height: 15px;
    background-image: url(../img/printer.svg);
    background-size: cover;
}
.zakas-btn--print,
.zakas-btn--download{
  cursor: pointer;
}
.zakas-btn--download{
    background-color: #FF7A00;
    color: #fff;
}
.zakas-btn--download:before{
    content: "";
    position: absolute;
    top: 10px;
    left: 15px;
    width: 14px;
    height: 14px;
    background-image: url(../img/download.svg);
    background-size: cover;
}
.zakas-top__left{
  display:flex;
}
.zakas-top__item{
  margin-right:15px;
}
.zakas-top__item span{
  font-weight:500;
}
.zakas-bot{
  display:flex;
  justify-content:space-between;
}
.zakas-bot .more_btn{
  font-size: 16px;
}
.cab_content_body .media_name:not(:first-child){
  margin-top: 40px;
}
.media_name {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  padding-left: 25px;
  margin-bottom: 20px;
  cursor: pointer;  
  background: url('../img/menu_arrow.svg') left center / 13px no-repeat;
}
.media_name span {
  flex-shrink: 0;
  margin-right: 15px;
  max-width: 100%;
}
.media_name:after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #DCDEE2;
}
.media_body {
  padding-top: 30px;
}
.media_list {
  display: grid;
  grid-template-columns: repeat(4, 22%);
  justify-content: space-between;
  grid-gap: 30px 10px;
}
.media_list.media_video_list{
  margin-top: 100px;
  grid-template-columns: repeat(3, 31%);
  grid-row-gap: 100px;
}

.media_video_item{
  position: relative;
  z-index: 1;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 30px rgba(0, 4, 28, 0.05);
}
.media_video_item:after{
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  top: -70px;
  left: 50%;
  border-radius: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  border: 1px solid #D7DADE;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
}

.media_video_item .media_img{
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 50%;
  margin-top: -70px;
}
.media_video_item .media_img img{
  object-fit: cover;
}
.media_item {
  display: block;
  color: #000;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-bottom: 45px;
}
.media_item:hover {
  color: #FF7A00;
}
.media_item iframe{
  width: 100%;
  height: 170px;
  margin-bottom: 10px;
}
.media_img {
  width: 130px;
  height: 190px;
  margin: 0 auto 15px;
}
.media_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media_item_name {
  text-align: center;
}
.media_item__download{
  /*display: block;*/
  color: #fff;  
  border-radius: 50px;
  background-color: #FF7A00;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin-top: 13px;

  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.media_item__download:hover{
  background-color: #ef7302;
}
/*      Cabinet Media Page styles END   */


/*    Cabinet Subscribe Page styles   */
.subscribe_form {
  display: flex;
  justify-content: space-between;
}
.subscribe_btn {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 40px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
}
.subscribe_input {
  width: 100%;
  padding: 20px;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  outline-color: #FF7A00;
  border: 1px solid #DCDEE2;
  border-radius: 10px 0 0 10px;
}
/*    Cabinet Subscribe Page styles END   */


/*      Cabinet Chat Page styles    */
.chat_body {
  display: flex;
  flex-direction: column;
  height: 400px;
  overflow: auto;
}
.chat_item {
  width: 80%;
  border-radius: 15px;
  padding: 25px 25px 40px;
  margin-bottom: 40px;
  margin-top: auto;
}
.chat_item_left {
  margin-right: auto;
  background-color: rgba(249, 202, 12, 0.1);
}
.chat_item_right {
  margin-left: auto;
  background-color: rgba(255, 122, 0, 0.1);
}
.chat_item_top {
  display: flex;
  justify-content: space-between;
  color: #9CA1A4;
  font-weight: 500;
  margin-bottom: 40px;
}
.chat_item_text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.chat_bottom {
  margin-top: 20px;
  height: 65px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #DCDEE2;
}
.chat_file {
  display: block;
  flex-shrink: 0;
  width: 65px;
  cursor: pointer;
  transition: 0.3s;
  border-right: 1px solid #DCDEE2;
  background: url('../img/attach_icon.svg') center / 40% no-repeat, #fff;
}
.chat_file:hover {
  background-color: #e5e5e5;
}
.chat_file.active {
  background-color: rgba(255, 122, 0, 0.3);
}
.chat_message {
  width: 100%;
  padding: 20px;
  border: none;
  outline: none;
  resize: none;
  font-size: 18px;
}
.chat_send_btn {
  width: 80px;
  border: none;
  flex-shrink: 0;
  outline: none;
  cursor: pointer;
  border-left: 1px solid #DCDEE2;
  background: url('../img/send_icon.svg') center / 40% no-repeat, #fff;
}
.chat_send_btn:hover {
  background-color: rgba(255, 122, 0, 0.1);
}
/*      Cabinet Chat Page styles END    */

/*      About Page styles   */
.about {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.about_link_list {
  width: 18%;
  flex-shrink: 0;
  margin-right: 60px;
  padding-right: 30px;
  padding-top: 20px;
  border-right: 1px solid #DCDEE2;
}
.about_link {
  display: table;
  margin-bottom: 30px;
  color: #78818F;
  font-size: 18px;
  font-weight: 500;
}
.about_link:hover,
.about_link.active {
  color: #333;
}
.about_link.active {
  font-weight: bold;
  font-size: 20px;
}
.about_text_top {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 160%;
}
.about_img {
  display: flex;
  align-items: center;
  width: 18%;
  flex-shrink: 0;
  margin-left: 50px;
}
.about_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.small_title.center {
  text-align: center;
}
.activity {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.activity_text{
  margin-bottom:30px;
}
.activ_item {
  position: relative;
  z-index: 1;
  width: 49%;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: #fff;
  padding: 40px 270px 65px 40px;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.05);
}
.activ_item.activ_item_main {
  background-color: transparent;
  box-shadow: none;
  padding: 30px 0 0;
}
.activ_item_main .small_title {
  font-size: 40px;
  width: 350px;
  max-width: 100%;
  text-transform: uppercase;
}
.activ_item_main .text_item {
  width: 80%;
}
.active_img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: -150px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
}
.active_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activ_name {
  font-size: 24px;
  font-weight: bold;
  color: #444;
  margin-bottom: 15px;
}
.activity_text .text_item {
  font-size: 17px;
}
.team_slider {
  margin-top: 60px;
}
.team_item {
  margin: 0 10px;
}
.team_img {
  width: 380px;
  height: 380px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 1px solid #FF7A00;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.05);
}
.team_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team_name {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.team_position {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom:10px;
}
.team_phone{
  display:block;
  text-align:center;
  margin-bottom:5px;
  color:#111;
  font-weight: 500;
  outline: none;
}
.team_mail{
  display:block;
  text-align:center;
  margin-bottom:5px;
  color:#111;
  font-weight: 500;
  outline: none;
}
.team_phone:hover,
.team_mail:hover{
  /*text-decoration: underline;*/
  color: #FF7A00;
}
.team_slider_control {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.comment_arrows.team_arrows {
  margin-right: 0;
}
.team_dots .slick-dots {
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 0 55px;
}
.team_arrows .slick_arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.team_arrows .slick_prev {
  left: 0;
}
.team_arrows .slick_next {
  right: 0;
}
.profit {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(5, 18%);
  justify-content: space-between;
  grid-gap: 80px 10px;
}
.profit .profit_item:nth-child(1) {
  transition-delay: 0.2s;
}
.profit .profit_item:nth-child(2) {
  transition-delay: 0.5s;
}
.profit .profit_item:nth-child(3) {
  transition-delay: 0.8s;
}
.profit .profit_item:nth-child(4) {
  transition-delay: 1.1s;
}
.profit .profit_item:nth-child(5) {
  transition-delay: 1.4s;
}
.profit_item {
  position: relative;
  padding: 0 25px 95px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.05);
}
.profit_item .text_item {
  line-height: 140%;
  font-size: 17px;
}
.profit_item.way {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.profit_item.way.way--active {
  opacity: 1;
  transform: none;
}
.profit_num_block {
  width: 65px;
  height: 65px;
  margin: -30px auto 20px;
  position: relative;
  z-index: 1;
}
.profit_num_block:after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  z-index: -1;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #DCDEE2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.profit_num {
  width: 100%;
  height: 100%;
  font-size: 28px;
  padding: 16px;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid #FF7A00;
  background-color: #fff;
}
.profit_name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.profit_icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 49px;
  display: flex;
  align-items: flex-end;
}
.profit_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*      About Page styles END   */

/*      Agro_Calc Page styles   */
.title_text {
  text-align: center;
  /*width: 810px;*/
  width: 65%;
  max-width: 100%;
  margin: 30px auto 0;
}
.agro_calc {
  margin-top: 50px;
  padding: 70px 100px;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  border: 1px solid #DCDEE2;
}
.agro_calc .input_name {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.agro_calc .input_name span {
  text-transform: none;
}
.agro_calc .more_btn {
  font-size: 20px;
  padding: 20px 100px;
}
.agro_calc_title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #FF7A00;
  margin-bottom: 50px;
}
.agro_calc_title span {
  flex-shrink: 0;
  max-width: 100%;
  margin-right: 20px;
}
.agro_calc_title:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #DCDEE2;
}
.agro_calc_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.agro_calc_list .input_block {
  margin-bottom: 60px;
}
.agro_calc_list .input_block:nth-child(3n) {
  margin-right: 0;
}
.agro_calc_list .input_block .form_input,
.agro_calc_list .input_block .form_select {
  font-size: 18px;
}
.calc_table_block{
  overflow: auto;
}
.agro_table{
  /*margin-top: 50px;*/
  display: none;
  margin: 50px auto 0;
  width: 770px;
  max-width: 100%;
  padding: 30px;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.agro_table .title{
  font-size: 28px;
  margin-bottom: 30px;
}
.agro_table .more_btn{
  margin: 20px auto 0;
  padding: 16px 50px;
}
.calc_text{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.ago_calc_table{
  width: 700px;
  margin: 10px auto 20px;
  border-collapse: collapse;
  /*border-top: 1px solid rgba(0, 0, 0, 0.15);*/
}
.ago_calc_table th,
.ago_calc_table td{
  /*border: 1px solid #333;*/
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px;
}
/*.ago_calc_table tr th:first-child,
.ago_calc_table tr td:first-child{
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}*/

.ago_calc_table tbody tr:nth-child(odd) td{
  background-color: #f6f6f6;
}

/*.ago_calc_table tr th:nth-child(2),
.ago_calc_table tr th:nth-child(3),
.ago_calc_table tr th:nth-child(4),
.ago_calc_table tr th:nth-child(5),
.ago_calc_table tr td:nth-child(2),
.ago_calc_table tr td:nth-child(3),
.ago_calc_table tr td:nth-child(4),
.ago_calc_table tr td:nth-child(5){
  display: none;
}*/

.ago_calc_table th{
  /*background-color: #e1e1e1;*/
  font-weight: bold;
  color: #FF7A00;
  font-size: 18px;
}
.ago_calc_table thead tr th:last-child{
  background-color: #fff;
  color: #333;
}
.ago_calc_table td{
  font-weight: 500;
}
.ago_calc_table tr td:last-child{
  text-align: center;
}
/*      Agro_Calc Page styles END   */

/*    Akcii_Inner Page styles   */
.akcii_inner.catalog {
  flex-direction: row-reverse;
}
.catalog_sidebar .share_block {
  margin-left: auto;
  margin-top: 0;
}
.akcii_inner_text {
  margin-top: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid #DCDEE2;
}
.akcii_inner_text .small_title {
  font-size: 24px;
  margin-bottom: 10px;
}
.akcii_inner_text h3 {
  color: #333;
  text-transform: uppercase;
  margin: 35px 0 10px;
}
.akcii_inner_form.basket_inner_form {
  width: 1000px;
  max-width: 100%;
}
.akcii_inner_form .basket_form_top {
  padding: 30px 70px;
  font-size: 24px;
  margin-bottom: 0;
}
.akcii_inner_form .basket_form_body {
  padding: 60px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.akcii_inner_form .input_block {
  width: 45%;
  margin-right: 0;
  margin-bottom: 50px;
}
.akcii_inner_form .input_block .form_input,
.akcii_inner_form .input_block .form_select {
  font-size: 20px;
}
.akcii_form_body .form_btn {
  display: table;
  max-width: 100%;
  text-align: center;
  padding: 20px 50px;
  font-weight: 600;
  font-size: 20px;
}
/*    Akcii_Inner Page styles END   */

/*      Delivery Page styles    */
.delivery_block .main_img_dots {
  overflow: hidden;
}
.delivery_slide.main_slide .title,
.delivery_slide.main_slide .main_text,
.delivery_slide.main_slide .main_buttons {
  opacity: 1;
  transition: 0s;
  transform: none;
}
.delivery_map {
  margin-top: 90px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
  border-radius: 15px;
  border: 1px solid #DCDEE2;
}
.delivery_map_text {
  width: 35%;
}
.delivery_map_text .text_item {
  margin-bottom: 35px;
}
.delivery_map_text .more_btn {
  font-size: 20px;
  padding: 25px 130px;
}
.delivery_title {
  font-size: 48px;
  font-weight: bold;
  color: #FF7A00;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.delivery_small_title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 15px;
}
.delivery_map_img {
  width: 900px;
  flex-shrink: 0;
}
.region_map{
  width:100%;
  position:relative;
}
.i-sklad{
  position:absolute;  
  cursor: pointer;
}
.i-sklad__text{
  position:relative;
  padding-top:28px;
  font-weight: 500;
  font-size: 15px;
}
.i-sklad__text:before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -13px;
  width: 25px;
  height: 25px;
  background-image: url(../img/map-logo.svg);
  background-size: contain;
}
.i-sklad_info{
  position: absolute;
  width: 150px;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  bottom: 100%;
  left: 50%;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 40px;
  border-radius: 5px;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
}
.i-sklad_info.active{
  opacity: 1;
}
.i-sklad_info:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
}
.i-sklad--petro{  
  top: 40px;
  right: 353px;
}
.i-sklad--kokshetay{
  top: 130px;
  right: 355px;
}
.i-sklad--kost{  
  top: 135px;
  right: 503px;
}
.i-sklad--pavl{  
  top: 118px;
  right: 211px;
}
.i-sklad--uskaman{  
  top: 223px;
  right: 65px;
}
.i-sklad--almaty {
    top: 351px;
    right: 186px;
}
.i-sklad--shymkent{  
  top: 388px;
  right: 383px;
}
.region_map svg{
  width:100%;
}
.region_map svg path{
  fill:#ECECF0;
  transition:fill 0.15s ease-in-out;
}
.region_map svg path:not(.no_hover):hover,
.region_map svg .hovered:not(.no_hover){
    fill: #ff993b;
    cursor: pointer;
}
.delivery_map_img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.advan_block {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advan_item {
  margin-top: 30px;
  width: 49%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #DCDEE2;
  border-radius: 10px;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.advan_text {
  width: 60%;
  padding: 50px 10px 50px 50px;
}
.advan_text .small_title {
  font-size: 30px;
}
.advan_img {
  display: flex;
  width: 36%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.advan_img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.advan_img:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 50%;
  left: 40px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: #FF7A00;
}
.title.advan_title {
  font-size: 40px;
}
.delivery_slide .main_text p:not(:last-child) {
  margin-bottom: 15px;
}
/*      Delivery Page styles END    */


/*    Delivery Calc Page styles     */
.delivery_sel_list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.delivery_sel_item {
  margin-right: 100px;
  margin-bottom: 30px;
}
.delivery_sel_name {
  font-size: 18px;
  color: #78818F;
  margin-bottom: 10px;
}
.delivery_select {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  border-radius: 5px;
  padding: 10px 30px 10px 15px;
  cursor: pointer;
  -webkit-appearance: none;
  border: 1px solid #DCDEE2;
  background: url('../img/select_arrow.svg') right 13px center / 13px no-repeat, #F7F7F7;
}
.delivery_select.error {
  border-color: red;
}
.prod_grid.delivery_prod {
  grid-template-columns: repeat(2, 48%);
}
.basket_inner_form.delivery_inner_form {
  margin-top: 50px;
}
.delivery-row .input-name{
  font-size:18px;
}
.delivery-row .input_block .form_select,
.delivery-row .input_block .form_input{
  font-size:16px;
}
.delivery-row .input_name{
  font-size: 16px;
}
.delivery-row .input_block .form_select{
  background-size: 11px;
}
.shaq-ul{
  display: flex;
  margin-top: 20px;
  border: 1px solid #f3f3f3;
  padding: 16px 50px;
  background-color: #fff;
  box-shadow: 5px 0px 21px rgba(0, 4, 28, 0.05);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  border: 1px solid #DCDEE2;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.shaq-ul li{
  display: inline-block;
  margin-right: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor:pointer;
}
.shaq-ul li a{
  display:block;
  color:#555;
   padding: 10px 25px;    
  font-size: 14px;
  font-weight: 600;
}
.shaq-ul li.active{
  background-color:#f3f3f3;
}
.table-area_block{
  display: none;
  margin-top: 60px;
}
.delivery_caption{
  margin-top: 20px;
  font-size: 16px;
  line-height: 140%;
}

.delivery_total_row{
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.delivery_total_row span span{
  font-weight: normal;
}

.delivery_total_block{
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}
.del_total_left{
  width: 100%;
}
.del_total_right{
  width: 30%;
  flex-shrink: 0;
  padding: 30px;
  margin-left: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('../img/request_info_bg.jpg') center / cover no-repeat;
}
.total_right_title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.del_total_right .text_item{
  color: #fff;
  margin-bottom: 20px;
}
.del_total_right .more_btn{
  font-size: 16px;
  padding: 16px;
}

.table-area {
    max-width: 100%;
    margin: 0 auto;
}
.tabs__item{
  display:none;
}
.tabs__item.active{
  display:block;
}
.table-area__title{
  display:block;
  text-align:center;
  font-weight:bold;
  font-size:18px;
  margin-bottom:40px;
}
.delivery-row{
  display:flex;
  justify-content: space-between;
}
.delivery-row .input_block{
  width: 23%;
  margin-right: 0;
  margin-bottom: 45px;
}
.delivery-row_buttons{
  display: flex;
  justify-content: space-between;
}
.delivery-row_buttons .form_btn{
  width: 40%;
}
.delivery-row_buttons .last_btn{
  margin-left: 40px;
  margin-right: auto;
}
.delivery-row_buttons .yellow_btn{
  width: 26%;
}
.delivery_inner_form{
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.delivery_inner_form .basket_inner_form{
  margin-top: 0;
}
.delivery_content{
  width: 100%;
}
.delivery_sidebar{
  width: 30%;
  flex-shrink: 0;
  margin-left: 50px;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
} 
.delivery_list .select-line:first-child .del_select_line{
  pointer-events: none;
}
.delivery_sidebar .input_block{
  width: 100%;
}
.delivery_sidebar .input_name{
  font-size: 20px;
}
.delivery_sidebar .input_block .form_input, 
.delivery_sidebar .input_block .form_select{
  font-size: 18px;
}
.delivery_total,
.delivery_error{
  display: none;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
.delivery_total{
  margin-top: 0;
  font-weight: 600;
}
.delivery_total.active,
.delivery_error.active{
  display: block;
}
.delivery_error{
	color: red;
}
.delivery_step_buttons{
  display: flex;
}
/*.delivery_add.more_btn,*/
.delivery_step_buttons .more_btn{
  padding: 15px 48px;
  font-size: 16px;
  margin-right: 15px;
}
.delivery_calc_btn{
  display: block;
  width: 100%;
  text-align: center;
}
.delivery_add{
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery_add:before{
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-right: 15px;
  background: url('../img/plus_bold.svg') center / contain no-repeat;
}
.delivery_list .select-line:not(:first-child){
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.delivery_prod {
  margin-bottom: 60px;
}
.delivery_prod .prod_buttons {
  justify-content: center;
}
.delivery_prod .prod_name {
  min-height: auto;
}
.delivery_prod .prod_img {
  margin-top: 0;
}
.delivery_form_body {
  position: relative;
}
.delivery_form_body .basket_last_step {
  padding-right: 550px;
}
.basket_form_bottom.padding_right {
  padding-right: 600px;
}
.delivery_request {
  position: absolute;
  width: 560px;
  right: -60px;
  top: -60px;
  bottom: -102px;
  padding: 50px 80px 50px 50px;
  border-bottom-right-radius: 10px;
  background: url('../img/delivery_request_bg.png') center / cover no-repeat, linear-gradient(180deg, #FF7A00 0%, #F9CA0C 100%), #FF7A00;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.delivery_request .small_title {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.delivery_request .text_item {
  color: #fff;
  margin-bottom: 30px;
}
.delivery_request .sidebar_btn {
  margin-left: 0;
  margin-right: auto;
  padding: 20px 50px;
}
.basket_body_step .input_block .form_input {
  font-size: 18px;
}
.basket_row--korz{
      padding: 23px 30px 23px 0px;
}
.form-sec{
  display:flex;
  align-items:center;
}
.form-sec .orange_btn{
  margin-right:20px;
}
.select-row__heading{
  display:block;
  margin-bottom:5px;
}
.select-line{
  margin-bottom:25px;
  display:flex;
  justify-content: space-between;
}
.select-line .select-row:first-child{
  width: 32%;
} 
.del_select_line{
  height: 45px;
  position: relative;
  border-radius: 7px;
  border: 1px solid #ccc;
  margin-top: 29px;
  flex-shrink: 0;
  margin-left: 10px;
  cursor: pointer;
  padding: 0 25px 0 50px;
  line-height: 45px;
  background-color: #f3f3f3;
  font-weight: 600;
}
.del_select_line:hover{
  background-color: #ece6e6;
}
.del_select_line:after{
  content: "";
  position: absolute;
  top: 17px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: url(../img/close_black.svg) center / contain no-repeat;
}
.select-row{
  width: 17%;
}
.select-row__heading{
  display:block;
  font-weight: 600;
  margin-bottom:10px;
}
.select-row_input,
.select-row_sel{
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 7px;
  border: 1px solid #ccc;
  outline: none;
  -webkit-appearance: none;
}
.select-row_sel{
  cursor: pointer;
  background: url('../img/select_arrow.svg') center right 15px / 11px no-repeat;
}
.select-row_input[type='number'] {
  -moz-appearance: textfield;
}
.select-row_input::-webkit-outer-spin-button,
.select-row_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.del-kilo.hide{
  display: none;
}
/*    Delivery Calc Page styles END     */

/*    Diagnostic Page styles    */
.not_slider .main_img_item {
  width: 100%;
  height: 100%;
}
.not_slider .main_slide_img {
  opacity: 1;
  margin-left: 0;
  transition-delay: 0s;
}
.diagnostic_slide_img.main_slide_img {
  width: 100%;
  height: auto;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.diagnostic_slide .main_btn {
  font-size: 24px;
  padding: 20px 90px;
}
.benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit_text {
  width: 45%;
}
.benefit_advan {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.benefit_advan .benefit_advan_item:nth-child(1) {
  transition-delay: 0.2s;
}
.benefit_advan .benefit_advan_item:nth-child(2) {
  transition-delay: 0.5s;
}
.benefit_advan .benefit_advan_item:nth-child(3) {
  transition-delay: 0.8s;
}
.benefit_advan_item {
  width: 31%;
  padding: 40px 20px 30px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.benefit_advan_item .text_item {
  text-align: center;
  font-size: 16px;
}
.benefit_advan_item.way {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.benefit_advan_item.way.way--active {
  opacity: 1;
  transform: none;
}
.benefit_icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 30px;
}
.benefit_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefit_name {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  line-height: 150%;
}
.scheme {
  margin-top: 100px;
}
.scheme_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.scheme_list .scheme_item:nth-child(4n) {
  margin-right: 0;
}
.scheme_list .scheme_item:nth-child(1) {
  transition-delay: 0.2s;
}
.scheme_list .scheme_item:nth-child(2) {
  transition-delay: 0.5s;
}
.scheme_list .scheme_item:nth-child(3) {
  transition-delay: 0.8s;
}
.scheme_list .scheme_item:nth-child(4) {
  transition-delay: 1.1s;
}
.scheme_item {
  width: 23%;
  margin-right: 2.5%;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.scheme_item.way {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.scheme_item.way.way--active {
  opacity: 1;
  transform: none;
}
.scheme_top {
  height: 215px;
  padding: 40px 40px 30px;
  border-bottom: 1px solid #DCDEE2;
}
.scheme_body {
  padding: 35px 40px;
}
.scheme_body .text_item {
  font-size: 16px;
}
.scheme_body .text_item img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}
.scheme_body ul {
  margin-left: -15px;
}
.scheme_bottom_list ul li,
.scheme_body ul li {
  padding-left: 25px;
  background: url('../img/green_check.svg') top 6px left / 15px no-repeat;
}
.scheme_bottom_list ul li:not(:last-child),
.scheme_body ul li:not(:last-child) {
  margin-bottom: 15px;
}
.scheme_bottom {
  margin-top: 100px;
  display: flex;
  /*justify-content: space-between;*/
}
.scheme_bottom .scheme_bottom_block:first-child {
  margin-right: 150px;
}
.scheme_bottom .scheme_bottom_block:last-child .small_title {
  width: 80%;
}
.scheme_bottom_block {
  width: 40%;
}
.scheme_bottom_block .small_title {
  font-size: 24px;
  /*width: 80%;*/
  margin-bottom: 30px;
}
.scheme_bottom_block .more_btn {
  margin-top: 50px;
}
.scheme_bottom_list.text_item {
  font-size: 20px;
}
.scheme_bottom_list ul li:not(:last-child) {
  margin-bottom: 20px;
}
/*    Diagnostic Page styles END    */


/*      Cabinet Profile Page styles   */
.profile_content.cabinet_content {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.profile_content .cab_content_head {
  padding-left: 60px;
  padding-right: 60px;
}
.profile_content .cab_content_body {
  padding: 30px 40px;
}
.cabinet_right{
  width:73%;
}
.profile {
  display: flex;
  align-items: center;
}
.prodile_img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 60px;
}
.prodile_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile_info .more_btn{
  padding: 16px 50px;
  font-size: 16px;
}
.profile_info .profile_info_row:not(:last-child) {
  margin-bottom: 20px;
}
.profile_info_row .input_name {
  margin-bottom: 10px;
}
.profile_info_text {
  font-size: 22px;
  color: #000;
}
.profile-bot{
  display:flex;
}
.profile-bot .more_btn:last-child{
  margin-left:15px;
}
.profile_anketa {
  /*margin-top: 30px;*/
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #DCDEE2;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.profile_anketa .small_title {
  font-size: 30px;
}
.disabled input,
.disabled select,
.disabled textarea{
  pointer-events: none;
  background-image: none;
}
.profile_anketa_head {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  padding-left: 30px;
  background: url('../img/menu_arrow.svg') left center / 13px no-repeat;
}
.profile_anketa_head span {
  flex-shrink: 0;
  margin-right: 20px;
  white-space: normal;
}
.profile_anketa_head:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #DCDEE2;
}
.edit-form{
  display:flex;
}
.edit-form__right{
  display:flex;  
  flex-direction:column;
  width: 60%;
}
.edit-form__right .input_block{
  width:100%;
  margin-bottom:15px;
  margin-top:15px;
}
.profile_anketa_body {
  padding-top: 10px;
}
.anketa_top_text {
  padding: 22px 35px;
  background-color: rgba(255, 122, 0, 0.1);
  border-radius: 10px;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #333;
}
.anketa-row{
  display:flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  margin-right:-20px;
}
.anketa-row .input_block{
  width:30%;
  margin-right:20px;
}
.anketa-row .input_name {
    font-size: 17px;
}    
.profile_img_edit{
  width: 46%;
  margin-bottom: 40px;
}
.profile_img_edit .prodile_img{
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}
.profile_img_label{
  padding: 12px 15px;
  display: block;
  width: 300px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.anketa_form {
  margin-top: 50px;
}
.anketa_form .form_input.error {
  border-color: red;
}
.anketa_btn {
  margin-top: 30px;
  margin-right: 20px;
  padding: 20px 80px 20px 40px;
  background-image: url('../img/download_icon_white.svg');
  background-position: right 35px center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.anketa-row-buttons{
  align-items: flex-end;
}
.anketa-row .more_btn{
  margin-top: 20px;
  padding: 20px 40px;
  cursor: pointer;
  border: none;
  outline: none;
  margin-right: 20px;
}
.anketa-row .more_btn.hide{
  display: none;
}

.crop_pop{
  width: 800px;
}
.crop_pop.fancybox-content{
  max-width: 95%;
}
.crop_list{
  columns: 2;
  max-height: 400px;
  overflow: auto;
}
.crop_item{
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.crop_item:before{
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 3px;
  margin-right: 10px;
  border: 1px solid #ccc;
}
.crop_item.active:before{
  background: url('../img/check_black.svg') center / 55% no-repeat;
}

.crop_btn{
  display: table;
  padding: 13px 30px;
  margin: 20px auto 0;
}


.pass_edit_form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pass_edit_form .input_block{
  width: 48%;
  margin-right: 0;
}

.pass_edit_form .input_block:last-child{
  width: 100%;
  margin-bottom: 0;
}
.pass_edit_form .input_block:last-child .form_btn{
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

/*      Cabinet Profile Page styles END   */

/*       Cabinet Seminar Page styles       */
.cab_content_body.seminar_list{
  padding: 0;
}
.seminar_list .seminar_item:not(:last-child){
  border-bottom: 1px solid #ccc;
}
.seminar_item{
  display: flex;
  justify-content: space-between;
}
.seminar_date{
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  flex-shrink: 0;
  text-align: center;
  font-size: 20px;
  color: #FF7A00;
  font-weight: bold;
  border-left: 1px solid #ccc;
}
.seminar_date_num{
  font-size: 60px;
  line-height: 100%;
}
.seminar_date_block{
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 2px solid #FF7A00;
}
.seminar_content{
  padding: 25px 35px;
  display: flex;
  align-items: center;
}
.seminar_img{
  width: 145px;
  height: 145px;
  flex-shrink: 0;
  margin-right: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #FF7A00;
}
.seminar_img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seminar_name{
  display: inline-block;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}
.seminar_name:hover{
  color: #FF7A00;
}
.seminar_text .text_item{
  margin-bottom: 15px;
  font-size: 18px;
}
.seminar_btn{
  display: inline-block;
  color: #FF7A00;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}
.seminar_btn:hover{
  text-decoration: none;
}

.seminar_inner .akcia-inner__img{
  min-height: 250px;
  max-height: 400px;
}
.seminar_inner .akcia-inner__img img{
  height: 100%;
  object-fit: contain;
}

.sidebar_form_block{
  margin-bottom: 150px;
  padding: 45px 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #D7DADE;
  box-shadow: 10px 10px 40px rgba(0, 4, 28, 0.05);
}
.sidebar_form_block.mb_normal{
  margin-bottom: 40px;
}
.sidebar_form_block .small_title{
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.sidebar_form .input_block{
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
.sidebar_form .input_block .input_name,
.sidebar_form .input_block .form_input{
  font-size: 18px;
}
.sidebar_form .form_btn{
  width: 100%;
}

/*       Cabinet Seminar Page styles END       */

/*      How To Buy Page styles    */
.buy_tab {
  display: flex;
  justify-content: center;
}
.buy_tab .buy_tab_item:first-child {
  border-radius: 50px 0 0 50px;
}
.buy_tab .buy_tab_item:last-child {
  border-radius: 0 50px 50px 0;
}
.buy_tab_item {
  font-size: 17px;
  font-weight: bold;
  color: #C8C9CC;
  background-color: #fff;
  padding: 15px 40px;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #D7DADE;
}
.buy_tab_item.active {
  color: #FF7A00;
  border-color: #FF7A00;
}
.buy_tab_item:hover {
  border-color: #FF7A00;
}
.buy_content_block {
  margin-top: 80px;
}
.buy_content_item .text_item {
  font-size: 24px;
}
.buy_circle_list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5%;
}
.buy_circle {
  width: 600px;
  height: 550px;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #FF7A00;
}
.buy_circle .text_item {
  font-size: 18px;
  margin-bottom: 30px;
}
.buy_circle .more_btn {
  margin-top: 40px;
}
.buy_circle_name {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.buy_circle_name span {
  font-weight: bold;
}
.circle_info_name {
  font-size: 18px;
  font-weight: bold;
  color: #FF7A00;
}
.circle_info .text_item {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.buy_content_block {
  position: relative;
  z-index: 1;
}
.buy_content_item {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: 1s;
  pointer-events: none;
  transform: translateY(40px);
}
.buy_content_item.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: none;
}

.buy_circle_text{
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.buy_circle_text a{
  color: #FF7A00;
}
.buy_circle_text a:hover{
  text-decoration: underline;
}

/*      How To Buy Page styles END    */
@media screen and (max-width: 1800px) {
  section {
    padding: 80px 0;
  } 
  .partner_list{
    margin-bottom:70px;
  } 
  .container {
    width: 1500px;
  }
  .logo {
    width: 200px;
    height: 40px;
  }
  .main_slide .title {
    font-size: 58px;
  }
  .prod_name {
    font-size: 20px;
  }
  .menu > li:not(:last-child) {
    margin-right: 35px;
  }
  .sub_menu_link > .menu_link {
    padding-right: 18px;
    background-size: 13px;
  }
  .lang_block,
  .head_tel,
  .cabinet_link {
    margin-right: 35px;
  }
  .head_right_item:after {
    right: -20px;
  }
  .basket_btn {
    width: 45px;
    height: 45px;
  }
  .main_text {
    font-size: 22px;
  }
  .soc_list > li:not(:last-child) {
    margin-right: 20px;
  }
  .leaf {
    width: 110px;
    height: 110px;
  }
  .main_section .leaf_3 {
    width: 140px;
    height: 140px;
  }
  .main_img_block:before {
    top: -60px;
    width: 400px;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 70%, 90% 51%, 46% 52%, 17% 56%);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 70%, 90% 51%, 46% 52%, 17% 56%);
  }
  .page {
    padding-top: 130px;
  }
  .main_section{
    padding-bottom: 80px;
  }
  footer{
    padding: 30px 0;
  }
  /*      Catalog Page styles   */
  .main_prod {
    padding: 50px 65px;
  }
  .main_prod_img {
    width: 320px;
    height: 320px;
  }
  .main_prod_type {
    margin-bottom: 40px;
  }
  .main_prod_circle {
    width: 1200px;
    height: 1200px;
  }
  .sidebar_block_name {
    font-size: 28px;
  }
  .prod_item .more_btn {
    width: 170px;
  }
  /*      Catalog_Inner Page styles   */
  .prod_part {
    width: 220px;
    height: 70px;
  }
  .prod_inner_slider {
    max-width: 290px;
  }
  .small_title {
    font-size: 32px;
  }
  .prod_inner_text .more_btn {
    width: 360px;
  }
  /*      Vakancy Page styles   */
  .title {
    font-size: 44px;
  }
  /*      Partners Page styles    */
  .part_img:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 29%, 0 29%);
    clip-path: polygon(0 0, 100% 0, 100% 29%, 0 29%);
  }
  .part_img {
    width: 240px;
    height: 240px;
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 420px;
    height: 420px;
    margin-top: -215px;
  }
  .comment_video_block:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 41.5%, 0 41.5%);
    clip-path: polygon(0 0, 100% 0, 100% 41.5%, 0 41.5%);
  }
  .comment_name {
    font-size: 28px;
  }
  .comment_rating {
    width: 130px;
  }
  .comment_img {
    /*top: -203px;*/
    /*right: 560px;*/
    right: 440px;
    top: -165px;
    width: 360px;
  }
  .comment_head {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .comment_slider {
    margin-bottom: 40px;
  }
  .comment_block {
    margin-top: 200px;
    padding: 50px 90px;
  }
  /*      Basket Page styles    */
  .delivery {
    padding: 40px 50px;
  }
  .basket_img {
    width: 150px;
    height: 150px;
  }
  .basket_head_last {
    margin-right: 55px;
  }
  .basket_head_second {
    margin-right: 40px;
  }
  /*      News Page styles    */
  /*.news_item .part_img {
    width: 240px;
    height: 240px;
    margin-top: -100px;
  }*/
  .news_name {
    font-size: 18px;
  }
  /*      Agroconsulting Page styles    */
  .agro {
    margin-top: 0;
  }
  .agro .main_img_silder {
    width: 580px;
    height: 580px;
  }
  .agro .main_img_dots {
    width: 660px;
    height: 660px;
  }
  /*      Cabinet Chat Page styles    */
  .cabinet_title.title {
    font-size: 36px;
  }
  .cabinet_title {
    padding-bottom: 15px;
  }
  .cabinet_sidebar_link {
    font-size: 18px;
    padding: 30px 40px;
  }
  .cabinet_sidebar_link.active {
    font-size: 16px;
  }
  .cab_content_head {
    font-size: 22px;
    padding: 28px 40px;
  }
  .chat_item_top {
    margin-bottom: 30px;
  }
  /*      About Page styles   */
  .profit_num {
    font-size: 26px;
  }
  .profit_name {
    font-size: 20px;
  }
  .team_img {
    width: 350px;
    height: 350px;
  }
  /*      Delivery Page styles    */
  .advan_img {
    width: 38%;
  }
  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 42px;
  }
  .agro_page .main_text,
  .agro_page_text.text_item,
  .agro_club_left p span {
    font-size: 22px;
  }
  .serv_item {
    padding: 40px;
  }
  .serv_img{
  	margin-top: -100px;
  }
  .agro_club_left,
  .agro_club_right {
    padding: 50px;
  }
  .agro_club_left .text_item {
    font-size: 20px;
  }
  .agro_club_right .title {
    font-size: 36px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_item {
    margin-right: 80px;
  }
  .delivery_request {
    bottom: -98px;
  }
  /*    Diagnostic Page styles    */
  .diagnostic_slide .main_btn {
    font-size: 22px;
  }
  .benefit_text {
    width: 40%;
  }
  .benefit_text .text_item.page_text {
    font-size: 18px;
  }
  .benefit_advan {
    width: 55%;
  }
  .scheme_bottom_list.text_item {
    font-size: 18px;
  }
  /*      Cabinet Profile Page styles     */
  .prodile_img {
    width: 340px;
    height: 340px;
    margin-right: 45px;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    width: 540px;
    height: 540px;
    margin-top: -265px;
  }
  /*      How To Buy Page styles    */
  .buy_content_item > .text_item,
  .buy_circle_name {
    font-size: 18px;
  }
  .buy_content_block {
    margin-top: 30px;
  }
  .buy_circle {
    width: 560px;
    height: 540px;
  }
  .circle_info .text_item {
    font-size: 16px;
  }
  .buy_circle .more_btn {
    margin-top: 20px;
  }

  /*      Subsiding Page styles     */

  .subsiding_popup.fancybox-content{
    width: 1300px;
  }
  .subsiding_popup .text_item.page_text{
    font-size: 18px;
    line-height: 150%;
  }
}
@media screen and (max-width: 1700px) {
  section {
    padding: 70px 0;
  }
  .container {
    width: 1350px;
  }
  .basket_num,
  .compare_num {
    width: 23px;
    height: 23px;
    padding: 3px;
  }
  .lang_block,
  .head_tel,
  .cabinet_link {
    font-size: 16px;
  }
  .video_list {
    margin-top: 35px;
  }
  .lang_icon {
    width: 22px;
    height: 22px;
  }
  .page {
    padding-top: 120px;
  }
  .prod_img {
    height: 190px;
    margin-top: 20px;
    margin-bottom: 22px;
  }
  .prod_name {
    margin-bottom: 12px;
  }
  .news {
    margin-top: 100px;
  }  
  /*.news_item .part_img{
    margin-top: -90px;
  }*/
  .news > li,
  .news-right li{
    margin-bottom: 120px;
  }
  .menu_link {
    font-size: 14px;
  }
  .menu > li:not(:last-child) {
    margin-right: 25px;
  }
  .sub_link {
    font-size: 16px;
  }
  .partner_list{
    margin-bottom:60px;
  }
  .head_login {
    width: 390px;
  }
  .delivery_map_img {
    width: 840px;
  }  
  .i-sklad__text{
    font-size:14px;
  }
  .i-sklad--kost {
    top: 118px;
    right: 474px;
  }
  .i-sklad--petro {
    top: 38px;
    right: 331px;
  }
  .i-sklad--pavl {
    top: 118px;
    right: 198px;
  }
  .i-sklad--shymkent {
    top: 348px;
    right: 355px;
  }
  .i-sklad--almaty {
    top: 332px;
    right: 177px;
  }
  .head_login .login_body {
    padding: 40px;
  }
  .head_login .input_name {
    font-size: 18px;
  }
  .head_login .input_block .form_input {
    font-size: 20px;
  }
  .head_login .pass_eye {
    top: 30px;
  }
  .main_slide .title {
    font-size: 44px;
  }
  .main_text {
    font-size: 20px;
  }
  .main_btn {
    font-size: 16px;
    padding: 17px 30px;
  }
  .main_dot_num {
    font-size: 20px;
  }
  .main_dots .slick-active .main_dot_num {
    font-size: 32px;
  }
  .main_dots button {
    padding: 8px;
  }
  .main_img_block:before {
    top: -50px;
  }
  .main_img_silder {
    width: 850px;
    height: 850px;
  }
  .main_img_dots {
    width: 900px;
    height: 900px;
  }
  .main_slide_img {
    width: 300px;
    height: 300px;
  }
  .main_buttons .main_btn {
    font-size: 18px;
  }
  .leaf {
    width: 100px;
    height: 100px;
  }
  .main_section .leaf_3 {
    width: 130px;
    height: 130px;
  }
  .main_bottom .left_icon {
    font-size: 16px;
  }
  .left_icon {
    margin-right: 20px;
    padding-left: 25px;
    background-size: 18px;
  }
  .partner_list {
    margin-bottom:70px;
  }
  /*      Catalog Page styles   */
  .catalog_filter {
    padding: 30px;
  }
  .filter_name {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .filter_sel{
    font-size: 16px;
  }
  .filter_check,
  .catalog_link {
    font-size: 16px;
  }
  .filter_check_img {
    width: 22px;
    height: 22px;
  }
  .download_catalog {
    width: 240px;
    font-size: 18px;
    background-size: 18px;
  }
  .catalog_link_icon {
    width: 26px;
    height: 26px;
    margin-right: 12px;
  }
  .catalog_link_list .catalog_link:not(:last-child) {
    margin-right: 35px;
  }
  .catalog_top {
    margin-top: -55px;
    padding-left: 300px;
  }
  .prod_share {
    font-size: 13px;
    top: 6%;
    left: -43%;
  }
  .prod_stock {
    font-size: 13px;
    right: 14px;
    top: 14px;
  }
  .prod_item .more_btn {
    font-size: 16px;
    width: 150px;
  }
  .prod_compare {
    font-size: 14px;
    background-size: 20px;
    padding-left: 25px;
  }
  .main_prod {
    padding: 40px 50px;
  }
  .main_prod_img {
    width: 280px;
    height: 280px;
  }
  .main_prod_circle {
    width: 1100px;
    height: 1100px;
  }
  .main_prod_type {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .prod_img {
    height: 170px;
  }
  .prod_icon_item {
    width: 40px;
    height: 40px;
  }
  .prod_icon_text {
    width: 190px;
    padding: 13px 25px;
    font-size: 14px;
  }
  .prod_name {
    font-size: 20px;
  }
  .sidebar_block_name {
    font-size: 24px;
  }
  .catalog_sidebar .delivery_name{
    font-size: 20px;
  }
  .catalog_sidebar .buy_name{
    font-size: 22px;
  }
  .catalog_sidebar .delivery{
    padding: 20px 40px;
    min-height: 150px;
  }

  /*      Catalog_Inner Page styles   */
  .breadcrumbs {
    font-size: 16px;
  }
  .prod_inner_main {
    padding: 40px 70px 40px 40px;
  }
  .prod_inner_slider .slick_arrow {
    width: 35px;
    height: 35px;
  }
  .prod_part {
    width: 200px;
    height: 60px;
    padding: 15px;
  }
  .small_title {
    font-size: 28px;
  }
  .text_item,
  .prod_inner_text .more_btn {
    font-size: 16px;
  }
  .prod_inner_text .more_btn {
    width: 320px;
  }
  .prod_tab_item {
    font-size: 18px;
    padding: 20px 40px;
  }
  .prod_content {
    padding: 35px 40px;
  }
  .prod_info_row {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .prod_content .prod_info_row:not(:last-child) {
    margin-bottom: 20px;
  }
  .prod_inner_form {
    padding: 40px;
  }
  footer {
    padding: 20px 0;
  }
  .foot_right .left_icon,
  .created {
    margin-right: 50px;
  }
  .foot_right .left_icon:after,
  .created:after {
    right: -25px;
  }

  .prod_inner_img{
    width: 170px;
  }
  .prod_inner_slider{
    max-width: 250px;
  }

  /*      Vakancy Page styles   */
  .breadcrumbs.breadcrumbs_center {
    margin-bottom: 10px;
  }
  .title {
    font-size: 38px;
  }
  .table_block tr th {
    padding: 30px 40px;
  }
  .table_block tr td {
    padding: 25px 40px;
  }
  .page_form_block {
    padding: 55px 110px 0;
  }
  .page_form_block .form_title {
    font-size: 36px;
  }
  .input_block .form_input,
  .input_block .form_select,
  .input_block .form_btn {
    font-size: 20px;
  }
  .vakancy_sel_name {
    font-size: 18px;
  }
  .vakancy_select,
  .vakancy_advan_text {
    font-size: 16px;
  }
  .vakancy_advan_img {
    width: 50px;
    height: 50px;
  }
  /*      Basket Page styles    */
  .basket_head {
    padding: 20px 40px;
  }
  .basket_img {
    width: 140px;
    height: 140px;
  }
  .basket_name,
  .basket_summ {
    font-size: 22px;
  }
  .basket_text .text_item {
    max-height: 95px;
  }
  .basket_del {
    width: 25px;
    height: 25px;
  }
  .basket_form .form_btn {
    font-size: 20px;
    font-size: 18px;
  }
  .delivery_name {
    font-size: 22px;
  }
  .delivery_icon {
    width: 50px;
    height: 50px;
  }
  .basket_inner_form,
  .akcii {
    margin-top: 50px;
  }
  .basket_sel {
    font-size: 16px;
  }
  .amount_btn {
    width: 30px;
    height: 30px;
  }
  .basket_summ {
    margin: 0 15px;
  }
  .basket_head_item {
    font-size: 16px;
  }
  .basket_head_last {
    margin-right: 65px;
  }
  .basket_head_third {
    margin-right: 30px;
  }
  .basket_form_step {
    font-size: 16px;
  }
  .basket_form_top {
    padding: 20px 40px;
  }
  .basket_first_step {
    padding-top: 20px;
  }
  .buy_name {
    font-size: 26px;
  }
  .buy_name .delivery_icon {
    margin-right: 20px;
    width: 55px;
    height: 55px;
  }
  .basket_form_body {
    padding: 30px 50px;
  }
  .basket_body_step {
    left: 40px;
    right: 40px;
    top: 30px;
  }
  .basket_form_bottom {
    padding: 25px 40px;
  }
  .akcii_sidebar .small_title {
    font-size: 26px;
  }
  .akcii_sidebar.akcii {
    padding: 35px;
  }
  .basket_form_head {
    font-size: 20px;
    padding: 18px 0;
  }
  .basket_form .form_btn {
    font-size: 16px;
    padding: 18px 35px;
  }
  .basket_form {
    padding: 0 25px 30px;
  }
  .basket_form .basket_form_head:after,
  .basket_form .basket_form_foot:after {
    left: -25px;
    right: -25px;
  }
  .delivery_calc .delivery_icon {
    width: 70px;
    height: 70px;
    margin-right: 30px;
  }
  .delivery_calc .delivery_name {
    max-width: 270px;
  }
  .delivery_name {
    max-width: 270px;
  }
  .sidebar_share_head {
    font-size: 22px;
    margin-top: 80px;
  }
  .sidebar_share:after {
    width: 75%;
  }
  .sidebar_share .main_prod_text {
    width: 65%;
  }
  .sidebar_share .main_prod_text .more_btn {
    font-size: 14px;
    padding: 15px 40px;
  }
  .sidebar_share .small_title {
    font-size: 18px;
  }
  /*      Partners Page styles    */
  .partner_list{
    margin-top: 50px;
  }
  .part_name {
    font-size: 22px;
  }
  .part_img {
    width: 220px;
    height: 220px;
  }
  .part_img img{
    max-width: 80%;
    max-height: 80%;
  }
  .part_img:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 370px;
    height: 370px;
    margin-top: -185px;
  }
  .comment_slider {
    margin-bottom: 60px;
  }
  .comment_block {
    margin-top: 160px;
    padding: 50px 80px 50px 50px;
  }
  .comment_text {
    width: 60%;
  }
  .comment_dots .slick-active button {
    padding: 9px;
  }
  .comment_dots button {
    padding: 6px;
  }
  .comment_arrows {
    margin-right: 60px;
  }
  .comment_arrows .slick_arrow {
    width: 40px;
  }
  .comment_arrows .slick_prev {
    margin-right: 25px;
  }
  .comment_item .text_item {
    font-size: 18px;
  }
  .comment_name {
    font-size: 28px;
  }
  .comment_head {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .comment_video_block:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 38.5%, 0 38.5%);
    clip-path: polygon(0 0, 100% 0, 100% 38.5%, 0 38.5%);
  }
  .comment_img {
    top: -148px;
    right: 390px;
    width: 320px;
  }
  .comment_rating {
    width: 110px;
  }
  .news_name {
    font-size: 16px;
    line-height: 22px;
    max-height: 68px;
  }
  .news_item .more_btn {
    font-size: 16px;
  }
  .news_item .part_img {
    width: 180px;
    height: 180px;
    margin-top: -80px;
  }
  /*      News_Inner Page styles    */
  .news_inner_text .akcii,
  .news_subscribe {
    width: 900px;
  }
  .news_subscribe .small_title {
    font-size: 24px;
  }
  .news_inner_text .akcii .small_title {
    font-size: 26px;
  }
  .news_subscribe {
    padding: 35px;
  }

  .news-right{
    margin-top: 80px;
  }

  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 480px;
    height: 480px;
  }
  .agro .main_img_dots {
    width: 540px;
    height: 540px;
  }
  .agro_img_block .main_dots button {
    padding: 6px;
  }
  .agro_text_slider .main_btn {
    width: 270px;
    padding: 20px;
  }
  .agro_arrows {
    margin-top: 80px;
  }
  .agro_arrows .slick_arrow {
    width: 70px;
    height: 50px;
  }
  /*      Login / Registration Page styles    */
  .reg_advan_item {
    margin-top: 40px;
  }
  .login_head {
    padding: 25px 30px;
  }
  .login_body {
    padding: 40px 30px 10px;
  }
  .login_body .input_name {
    margin-bottom: 15px;
  }
  .pass_eye {
    top: 30px;
  }
  .reg_advan_name {
    font-size: 18px;
  }
  .reg_advan_img {
    width: 55px;
    height: 53px;
  }
  /*    Comapre Page styles   */
  .compare_prod .prod_name {
    font-size: 20px;
  }
  .compare_prod .prod_img {
    width: 150px;
    height: 150px;
  }
  .compare_prod_btn .more_btn,
  .compare_left .prod_info_row,
  .compare_content_item .prod_info_row {
    font-size: 16px;
  }
  .compare_prod .text_item {
    font-size: 14px;
  }
  .white_btn_icon {
    width: 18px;
    height: 18px;
  }
  /*    Favorite Page styles    */
  .favorite_question {
    font-size: 18px;
  }
  .favorite_answer {
    font-size: 14px;
  }
  /*    News_Inner Page styles    */
  .news_inner_text .page_text {
    margin-top: 60px;
  }
  .text_item.page_text {
    font-size: 18px;
  }
  .share_block {
    padding: 15px 20px;
  }
  /*      Subsiding Page styles   */
  .step_img {
    width: 55px;
    height: 55px;
    margin-bottom: 30px;
  }
  .step_name,
  .step_item .text_item {
    font-size: 14px;
  }
  .doc_list_head {
    font-size: 26px;
  }
  .doc_item_name {
    font-size: 18px;
  }
  .doc_list_body .doc_list_item:not(:first-child) {
    margin-top: 20px;
  }
  .doc_list_item {
    padding-bottom: 15px;
  }
  .doc_item_btn {
    background-size: 45%;
    padding-top: 35px;
  }
  .doc_item_btn:after {
    background-size: 45%;
  }
  .doc_list_body {
    padding: 20px 40px 40px;
  }
  .video_item_head {
    padding: 20px 35px;
  }
  .video_item_name {
    font-size: 18px;
  }  
  .video_item_body {
    padding: 35px 35px 45px;
  }
  .subsiding_text {
    margin-top: 60px;
  }
  .subsiding_btn {
    width: 430px;
    font-size: 18px;
    padding: 17px 30px;
  }
  .cab_content_body {
    padding: 35px 30px;
  }

  .subsiding_popup.fancybox-content{
    width: 1200px;
  }
  .subsiding_popup .text_item.page_text{
    font-size: 16px;
    line-height: 140%;
  }

  /*      Cabinet Chat Page styles    */

  .cabinet_sidebar_link {
    font-size: 16px;
    padding: 25px 30px;
  }
  .cabinet_sidebar_link.active {
    font-size: 14px;
  }
  .cab_content_head {
    padding: 22px 30px;
  }
  .chat_item_top {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .chat_item_text {
    font-size: 16px;
  }
  .chat_bottom {
    height: 60px;
  }
  .chat_file {
    width: 60px;
    background-size: 35%;
  }
  .chat_send_btn {
    width: 70px;
  }
  .chat_message {
    padding: 16px 20px;
  }
  /*    Cabinet Media Page styles   */
  .media_img {
    width: 110px;
    height: 150px;
  }
  .media_item_name {
    font-size: 14px;
  }
  .cab_content_body .media_row:not(:first-child) {
    margin-top: 40px;
  }
  /*    Cabinet Subsribe Page styles    */
  .subscribe_input {
    font-size: 16px;
  }
  .subscribe_btn {
    font-size: 18px;
    padding: 16px 30px;
  }

  /*		Cabinet Profile Page styles		*/

  .cab-top .more_btn{
  	font-size: 16px;
  	padding: 14px 45px;
  }
  .agro_calc {
    padding: 55px 60px;
  }


  /*		Cabinet Page styles		*/

  .cab-area__top{
  	font-size: 22px;
  	padding: 22px 40px;
  }

  .seminar_btn,
  .seminar_text .text_item{
    font-size: 16px;
  }
  .seminar_name{
    font-size: 22px;
  }
  .seminar_date{
    font-size: 18px;
  }
  .seminar_date_num{
    font-size: 56px;
  }
  .seminar_date{
    width: 180px;
  }

  /*      About Page styles   */
  .about_link {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .about_link.active {
    font-size: 18px;
  }
  .about_text_top {
    font-size: 18px;
  }
  .activ_item {
    padding: 35px 230px 65px 35px;
  }
  .active_img {
    height: 360px;
    width: 360px;
  }
  .activ_name {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .team_img {
    width: 285px;
    height: 285px;
    margin-bottom: 20px;
  }
  .team_name {
    font-size: 22px;
  }
  .team_position {
    font-size: 14px;
  }
  .profit {
    grid-template-columns: repeat(5, 19%);
  }
  .profit_num_block {
    width: 60px;
    height: 60px;
  }
  .profit_num {
    font-size: 24px;
  }
  .profit_item {
    padding: 0 20px 90px;
  }
  .profit_icon {
    width: 47px;
    height: 47px;
  }
  .profit_item .text_item {
    font-size: 15px;
  }
  .profit_name {
    font-size: 18px;
  }
  .activ_item_main .small_title {
    font-size: 36px;
  }
  .activity_text .text_item {
    font-size: 15px;
  }
  /*      Agro_Calc Page styles   */
  .agro_calc {
    padding: 60px 80px;
  }
  .agro_calc_title {
    margin-bottom: 40px;
    font-size: 22px;
  }
  .agro_calc .more_btn {
    font-size: 18px;
    padding: 17px 80px;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner_text .small_title {
    font-size: 22px;
  }
  .akcii_inner_form.basket_inner_form {
    width: 900px;
  }
  .akcii_form_body .form_btn {
    font-size: 18px;
    padding: 16px 40px;
  }
  /*      Delivery Page styles    */
  .delivery_title {
    font-size: 42px;
  }
  .delivery_small_title {
    font-size: 22px;
  }
  .delivery_map_text .more_btn {
    padding: 22px 110px;
  }
  .delivery_map_text {
    width: 40%;
  }
  .title.advan_title {
    font-size: 34px;
  }
  .advan_text .small_title {
    font-size: 26px;
  }
  .advan_text {
    padding: 40px 10px 40px 40px;
  }
  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 36px;
  }
  .agro_page .main_text,
  .agro_page_text.text_item,
  .agro_club_left p span {
    font-size: 20px;
  }
  .serv_item {
    padding: 30px;
  }
  .serv_name,
  .serv_btn {
    font-size: 16px;
  }
  .serv_img {
    width: 170px;
    height: 170px;
    margin-top: -85px;
  }
  .services {
    margin: 110px 0 60px;
  }
  .agro_club_right .title {
    font-size: 32px;
  }
  .agro_club_left .text_item {
    font-size: 18px;
  }
  .agro_club_right .more_btn {
    font-size: 16px;
    padding: 14px 40px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_name,
  .delivery_select {
    font-size: 16px;
  }
  .delivery_sel_item {
    margin-right: 70px;
  }
  .delivery_select {
    background-size: 11px;
  }
  .delivery_prod .text_item {
    font-size: 16px;
  }
  .delivery_sel_list {
    margin-bottom: 20px;
  }
  .delivery_prod {
    margin-bottom: 40px;
  }
  .delivery_request {
    top: -40px;
    right: -40px;
    width: 490px;
    bottom: -94px;
  }
  .delivery_request .small_title {
    font-size: 26px;
  }
  .basket_form_body .text_item,
  .delivery_request .sidebar_btn {
    font-size: 16px;
  }
  .delivery_request .sidebar_btn {
    padding: 17px 40px;
  }
  .delivery_form_body .basket_last_step {
    padding-right: 480px;
  }
  .basket_form_bottom.padding_right {
    padding-right: 520px;
  }
  /*    Diagnostic Page styles    */
  .benefit_text .text_item.page_text {
    line-height: 150%;
  }
  .benefit_name,
  .benefit_advan_item .text_item,
  .scheme_body .text_item {
    font-size: 14px;
  }
  .benefit_icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }
  .scheme_top {
    height: 190px;
    padding: 30px 30px 20px;
  }
  .scheme_body {
    padding: 25px 30px;
  }
  .scheme_body ul {
    margin-left: -5px;
  }
  .scheme_bottom_list.text_item,
  .scheme_bottom_block .more_btn {
    font-size: 16px;
  }
  .scheme_bottom_list ul li,
  .scheme_body ul li {
    background-size: 13px;
  }
  .scheme_bottom_block .small_title {
    font-size: 22px;
  }
  /*      Cabinet Profile Page styles     */
  .prodile_img {
    width: 320px;
    height: 320px;
  }
  .profile_info_row .input_name {
    font-size: 18px;
  }
  .profile_info_text {
    font-size: 20px;
  }
  .anketa_btn {
    margin-top: 20px;
    font-size: 16px;
    padding: 17px 75px 17px 35px;
    background-size: 18px;
    background-position: right 30px center;
  }
  .profile_anketa .small_title {
    font-size: 26px;
  }
  .anketa-row .more_btn{
    padding: 17px 35px;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    width: 480px;
    height: 480px;
    margin-top: -225px;
  }
  .comment_block.contact_block {
    margin-top: 220px;
  }

  .cont-left,
  .cont-area{
    padding: 30px 35px;
  }
  .cont-area__heading,
  .cont-left__heading{
    font-size: 22px;
  }
  .cont-area__heading{
    margin-bottom: 30px;
  }

  /*      How To Buy Page styles    */
  .buy_content_item > .text_item,
  .buy_circle_name {
    font-size: 20px;
  }
  .buy_tab_item {
    font-size: 18px;
    padding: 17px 35px;
  }
  .buy_circle {
    width: 560px;
    height: 560px;
  }
  .buy_circle .more_btn {
    padding: 18px 50px;
    font-size: 16px;
  }

  /*         Seminar_Inner Page styles        */

  .sidebar_form_block{
    padding: 35px 30px;
  }
  .sidebar_form_block .small_title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sidebar_form .input_block .input_name{
    margin-bottom: 13px;
  }
  .sidebar_form .input_block .input_name, 
  .sidebar_form .input_block .form_input{
    font-size: 16px;
  }
  .sidebar_form .input_block{
    margin-bottom: 25px;
  }
  .sidebar_form .form_btn{
    font-size: 16px;
  }
}
@media screen and (max-width: 1500px) {
  section {
    padding: 65px 0;
  }
  .container {
    width: 1200px;
  }
  .agro_calc {
    margin-top: 30px;
  }  
  .header_top{
    padding:22px 0;
  }
  .page {
    padding-top: 110px;
  }
  .main_section {
    padding-bottom: 70px;
  } 
  .prod_name {
    margin-bottom: 12px;
  }
  .header_top {
    padding: 18px 0;
  }
  .logo {
    width: 170px;
    height: 35px;
  }
  .sub_menu {
    width: 190px;
  }
  .lang_block,
  .head_tel,
  .cabinet_link {
    font-size: 14px;
  }
  .lang_block,
  .head_tel,
  .cabinet_link {
    margin-right: 25px;
  }
  .head_right_item:after {
    right: -13px;
    height: 25px;
  }
  .lang_choice {
    padding: 5px 15px 5px 5px;
    background-size: 10px;
  }
  .basket_btn {
    width: 40px;
    height: 40px;
  }
  .head_login {
    width: 350px;
  }
  .table_block tr td {
    padding: 20px 45px;
    font-size: 16px;
  }  
  .page_form_block {
    padding: 60px 120px 0;
  }
  .head_login .login_body {
    padding: 30px;
  }
  .head_login .input_name {
    font-size: 16px;
  }
  .head_login .input_block .form_input {
    font-size: 18px;
  }
  .head_login .pass_eye {
    top: 25px;
  }
  .head_login_item {
    padding: 15px;
    font-size: 16px;
  }
  .main_slide .title {
    font-size: 46px;
  }
  .main_text {
    font-size: 18px;
  }
  .main_btn {
    margin-top: 40px;
  }
  .main_img_block:before {
    width: 330px;
  }
  .main_slide_img {
    width: 270px;
    height: 270px;
  }
  .main_bottom {
    justify-content: flex-start;
  }
  .main_bottom .loc {
    display: none;
  }
  footer{
    padding: 20px 0;
  }
  .main_section{
    padding-bottom: 70px;
  }

  /*      Catalog Page styles   */
  .download_catalog {
    width: 220px;
    font-size: 16px;
  }
  .catalog_top {
    margin-top: -60px;
  }
  .catalog_filter{
    padding: 25px;
  }
  .filter_sel{
    font-size: 14px;
    background-size: 10px;
    padding: 
  }
  .prod_grid {    
    grid-gap: 20px 10px;
  }
  .prod_name {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .prod_img{
    margin-left:15px;
  }
  .prod_compare {
    width:47%;
    font-size: 14px;
    text-align:center;
    text-transform:initial;
    border-radius: 18px;
    text-indent:10px;
    padding: 0 30px 0 55px;
    border:1px solid #ccc;
  }
  .prod_compare:after {
    left: 50%;
    margin-left:-41px;
    top: 9px;
  }
  .filter_check,
  .catalog_link,
  .main_prod_type {
    font-size: 14px;
  }
  .filter_name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .filter_check_img {
    width: 20px;
    height: 20px;
  }
  .main_prod {
    padding: 48px 50px;
  }
  .main_prod_img {
    width: 250px;
    height: 250px;
  }
  .main_prod_text {
    width: 60%;
  }
  .main_prod_circle {
    width: 1000px;
    height: 1000px;
    border-width: 8px;
  }
  .main_prod_text .more_btn {
    font-size: 16px;
    padding: 16px 60px;
  }
  .sidebar_block {
    padding: 30px 40px;
  }
  .prod_item {
    padding: 25px;
  }
  .prod_item .more_btn {
    display:block;
    position:relative;
    text-align:center;
    text-indent:18px;
    width: 48.5%;
    font-size: 14px;
    border: 1px solid #FF7A00;
  }
  .prod_item .more_btn:after{
    content:"";
    position: absolute;
    background-image: url(../img/basket2.svg);
    background-size: contain;
    width: 20px;
    background-repeat: no-repeat;
    height: 17px;
    left: 50%;
    margin-left: -50px;
    top: 9px;
  }
  .prod_item .more_btn.disabled:after{
    margin-left:-60px;
  }
  .prod_item .more_btn.disabled{
    text-indent: 25px;
  }
  .prod_text.text_item {
    font-size: 14px;
  }
  .prod_name {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .prod_icon_item {
    width: 35px;
    height: 35px;
  }
  .sidebar_block_name {
    font-size: 22px;
  }
  .sidebar_btn {
    font-size: 16px;
    padding: 16px 40px;
  }
  .pag {
    width: 45px;
    height: 45px;
    padding: 11px;
  }
  .prod_item{
  	position:relative;
  	padding: 25px 25px 75px 25px;
  }
  .prod_info {
    position: static;
    padding-bottom:0;
  }  
  .prod_buttons {
    left: 25px;
    right:28px;
    bottom: 25px;
  }

  .catalog_sidebar .delivery_icon, 
  .catalog_sidebar .buy_name .delivery_icon, 
  .catalog_sidebar .delivery_calc .delivery_icon{
    margin-right: 20px;
  }
  .catalog_sidebar .delivery_name{
    font-size: 18px;
  }
  .catalog_sidebar .buy_name{
    font-size: 20px;
  }
  .catalog_sidebar .delivery{
    min-height: 130px;
  }
  .catalog_sidebar .delivery_calc .delivery_icon{
    width: 60px;
    height: 60px;
  }

  .text_item.text_item--korz{
    max-height: 90px;
  }

  /*      Catalog_Inner Page styles   */
  .page {
    padding-top: 105px;
  }
  .small_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .prod_inner_main {
    padding: 40px 50px 30px 30px;
  }
  .prod_inner_img {
    /*max-width: 230px;*/
    height: 230px;
    /*margin-right: 50px;*/
  }
  .prod_part {
    width: 180px;
    height: 55px;
  }
  .prod_inner_slider {
    margin-right: 50px;
    max-width: 230px;
  }
  .prod_inner_form .form_title {
    font-size: 22px;
  }
  .form_select,
  .form_input {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .form_btn {
    padding: 15px;
  }
  .prod_content {
    padding: 30px;
  }
  .prod_tab_item {
    padding: 17px 30px;
  }
  .foot_right .left_icon,
  .created {
    margin-right: 40px;
    font-size: 14px;
  }
  .foot_right .left_icon:after,
  .created:after {
    right: -20px;
    height: 30px;
  }

  .prod_item--view .prod_compare{
    padding: 0 20px 0 40px;
  }
  .prod_item--view .more_btn.disabled{
    font-size: 11px;
    padding-left: 20px;
    padding-right: 10px;
    text-indent: 0;
  }
  .prod_item--view .more_btn.disabled:after{
    margin-left: -55px;
  }
  .prod_item--view .prod_info{
    padding-top: 0;
  }

  /*      Vakancy Page styles   */
  .title {
    font-size: 34px;
  }
  .basket_rtitle {
    font-size: 23px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .table_block tr td {
    padding: 20px 30px;
    font-size: 16px;
  }
  .table_block tr th {
    padding: 25px 30px;
    font-size: 16px;
  }
  .page_form_block {
    padding: 50px 100px 0;
  }
  .page_form_block .form_title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .input_name {
    margin-bottom: 20px;
  }
  .input_block .form_input,
  .input_block .form_select,
  .input_block .form_btn {
    font-size: 18px;
  }
  .file_label {
    font-size: 18px;
    padding: 20px;
  }
  .page_form_block:before {
    width: 220px;
    height: 260px;
  }
  .page_form_block:after {
    width: 210px;
    height: 200px;
  }
  .vakancy_advan {
    padding: 30px 40px;
  }
  /*      Basket Page styles    */
  .basket_text .text_item {
    font-size: 14px;
    max-height: 85px;
  }
  .basket_name,
  .basket_summ {
    font-size: 20px;
  }
  .basket_img {
    width: 125px;
    height: 125px;
  }
  .basket_title {
    padding-right: 0;
  }
  /*.basket_del,*/
  .amount_btn {
    width: 30px;
    height: 30px;
  }
  .basket_summ {
    margin: 0 15px;
  }
  .form_title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .basket_form_text {
    font-size: 16px;
    line-height: 150%;
  }
  .basket_head_item {
    font-size: 16px;
  }
  .delivery {
    padding: 30px 40px;
  }
  .delivery_btn {
    font-size: 16px;
  }
  .delivery_name {
    font-size: 14px;
  }
  .delivery_icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .akcii_item .text_item {
    font-size: 14px;
  }
  .akcii_name {
    font-size: 18px;
  }
  .basket_img {
    width: 110px;
    height: 110px;
  }
  .basket_name {
    font-size: 18px;
  }
  .basket_text {
    width: 25%;
  }
  .basket_sel {
    font-size: 14px;
  }
  .basket_first_step .input_block .form_select,
  .basket_form_body .input_name {
    font-size: 16px;
  }
  .basket_first_step .input_block .form_select {
    background-size: 11px;
    padding-right: 17px;
  }
  .basket_form_body .input_name {
    margin-bottom: 10px;
  }
  .basket_form_step {
    font-size: 14px;
    padding: 10px 25px;
    margin-right: 20px;
  }
  .delivery_name {
    font-size: 18px;
  }
  .buy_name {
    font-size: 22px;
  }
  .buy_name .delivery_icon {
    width: 50px;
    height: 50px;
  }
  .delivery {
    min-height: 140px;
  }
  .basket_first_step .input_block {
    width: 43%;
    margin-bottom: 60px;
  }
  .basket_form_body {
    padding-bottom: 0;
  }
  .basket_form_body .text_item {
    font-size: 16px;
  }
  .basket_form .form_btn {
    font-size: 16px;
    padding: 16px 25px;
  }
  .akcii_sidebar .small_title {
    font-size: 24px;
  }
  .akcii_sidebar.akcii {
    padding: 25px;
  }
  .akcii_sidebar .akcii_img {
    height: 150px;
  }
  .sidebar_share_head {
    font-size: 20px;
    padding: 15px 20px;
  }
  .main_prod.sidebar_share {
    padding: 20px;
  }
  .sidebar_share .main_prod_type {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .sidebar_share .small_title {
    font-size: 16px;
  }
  .sidebar_share .main_prod_text .more_btn {
    padding: 12px 30px;
    margin-top: 15px;
  }
  /*      Partners Page styles    */
  .part_img {
    width: 190px;
    height: 190px;
  }
  .part_item {
    padding: 30px 30px 30px 40px;    
  }
  .partner_list {    
    margin-bottom: 50px;
  }
  .part_name {
    font-size: 20px;
  }
  /*.part_img:before{
    border-width: 4px;
  }*/
  .part_more {
    font-size: 16px;
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 330px;
    height: 330px;
    margin-top: -169px;
  }
  .comment_item .text_item {
    font-size: 16px;
  }
  .comment_name {
    font-size: 24px;
  }
  .comment_block {
    /*padding: 70px 60px 50px 60px;*/
    margin-top: 150px;
    padding: 40px 70px 40px 40px;
  }
  .comment_slider {
    margin-bottom: 60px;
  }
  .comment_arrows .slick_arrow {
    width: 40px;
  }
  .comment_img {
    top: -135px;
    right: 350px;
    width: 290px;
  }
  .comment_video_block:after {
    left: -25px;
    top: -25px;
    right: -25px;
    bottom: -25px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 40.5%, 0 40.5%);
    clip-path: polygon(0 0, 100% 0, 100% 40.5%, 0 40.5%);
  }
  /*      News Page styles    */
  /*.news{
    grid-template-columns: repeat(3, 32%);
  }*/

  .news_item .part_img{
    width: 160px;
    height: 160px;
    margin-top: -65px;
  }
  .news_item{
    padding: 20px 20px 70px 20px;
  }
  .news_item .more_btn{
    font-size: 14px;
  }

  /*           News_Inner Page styles       */

  .news_gal_item{
    width: 220px;
    height: 220px;
  }

  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 450px;
    height: 450px;
  }
  .agro .main_img_dots {
    width: 500px;
    height: 500px;
  }
  .agro_text_slider .main_btn {
    width: 240px;
    font-size: 18px;
    padding: 18px;
  }
  .agro_arrows .slick_arrow {
    width: 60px;
    height: 45px;
  }
  /*      Login / Registration Page styles    */
  .reg_advan_item {
    margin-top: 30px;
    width: 47%;
  }
  .reg_advan_item .text_item {
    font-size: 14px;
  }
  .reg_advan_img {
    width: 55px;
    height: 55px;
  }
  .login_block.reg_block {
    width: 55%;
  }
  .reg_advan {
    width: 40%;
  }
  .input_name {
    font-size: 18px;
  }
  .reg_block .form_input {
    padding-bottom: 15px;
    font-size: 18px;
  }
  .pass_eye {
    width: 40px;
    height: 40px;
  }
  .reg_advan_name {
    font-size: 16px;
  }
  .reg_block .login_head {
    background-position: right 30px center;
    background-size: 26px;
  }
  /*    Comapre Page styles   */
  .compare_btn_item {
    font-size: 14px;
    padding-left: 40px;
    background-size: 26px;
  }
  .compare_prod {
    margin-bottom: 30px;
    padding: 20px 20px 20px 10px;
    box-shadow: 10px 10px 30px rgba(0, 4, 28, 0.05);
  }
  .compare_prod .prod_name {
    font-size: 18px;
  }
  .compare_prod_btn .more_btn,
  .compare_left .prod_info_row,
  .compare_content_item .prod_info_row {
    font-size: 14px;
  }
  .compare_prod_btn {
    margin-top: 20px;
  }
  .white_btn_icon {
    width: 16px;
    height: 16px;
  }
  .compare_prod_btn .more_btn {
    padding: 10px;
  }
  /*    Favorite Page styles    */
  .favorite_faq {
    padding: 25px 30px;
  }
  .favorite_question {
    background-size: 20px;
  }
  .favorite_faq .favorite_faq_item:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  /*    News_Inner Page styles    */
  .share_block .ya-share2__badge span.ya-share2__icon {
    width: 25px;
    height: 25px;
  }
  .text_item.page_text {
    font-size: 16px;
  }
  /*      Subsiding Page styles   */
  .steps {
    margin-top: 50px;
    grid-template-columns: repeat(3, 31%);
  }
  .step_name,
  .step_item .text_item {
    font-size: 16px;
  }
  .doc_list_head {
    font-size: 24px;
    padding: 25px 30px;
  }
  .doc_list_body {
    padding: 20px 30px 35px;
  }
  .video_list {
    margin-top: 50px;
  }
  .video_item_name {
    font-size: 18px;
  }
  .video_item_icon {
    width: 35px;
    height: 35px;
  }
  .video_item_head {
    padding: 20px 30px;
  }
  .video_item_body {
    padding: 30px 30px 40px;
  }
  .subsiding_text {
    margin-top: 50px;
  }
  .subsiding_btn {
    width: 380px;
    font-size: 16px;
  }
  .read_more {
    font-size: 16px;
  }
  .subsiding_text {
    padding: 50px;
    max-height: 400px;
  }
  .read_more {
    left: 50px;
    bottom: 50px;
    right: 50px;
  }
  .subsiding_text:after {
    height: 90px;
  }

  .subsiding_popup.fancybox-content{
    width: 1100px;
    padding: 30px;
  }
  .subsiding_popup .page_text > p:not(:last-child){
    margin-bottom: 15px;
  }

  /*      Cabinet Subscribe Page styles   */
  .subscribe_btn {
    font-size: 16px;
  }
  .cabinet_title.title {
    font-size: 27px;
    margin-top:0px;
    padding-bottom:0px;
    border-bottom:none;
  }
  .cabinet {
    margin-top: 30px;
  }  
  /*      Cabinet Media Page styles   */
  .media_img {
    width: 90px;
    height: 130px;
  }

  /*		Cabinet Page styles		*/

  .cab-top{
  	margin-bottom: 40px;
  }
  .gruz-item__heading{
  	font-size: 16px;
  }
  .gruz-item__top{
  	padding: 18px 30px;
  }
  .gruz-table td, 
  .gruz-table th,
  .gruz-update{
  	font-size: 14px;
  }
  .gruz-update{
  	margin-top: 20px;
  }

  .seminar_name{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .seminar_btn, 
  .seminar_text .text_item{
    font-size: 14px;
  }
  .seminar_text .text_item{
    margin-bottom: 10px;
  }
  .seminar_img{
    width: 135px;
    height: 135px;
  }

  /*      About Page styles   */
  .about_link_list {
    padding-top: 10px;
    width: 16%;
    padding-right: 20px;
    margin-right: 40px;
  }
  .about_link {
    margin-bottom: 20px;
  }
  .about_text_top {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .activity {
    /*margin-top: 50px;*/
  }
  .active_img {
    height: 300px;
    width: 310px;
  }
  .activ_name {
    font-size: 18px;
  }
  .team_slider {
    margin-top: 40px;
  }
  .team_img {
    width: 270px;
    height: 270px;
  }
  .team_name {
    font-size: 20px;
  }
  .profit {
    margin-top: 80px;
  }
  .profit_num_block {
    width: 55px;
    height: 55px;
    margin-top: -25px;
  }
  .profit_num {
    padding: 12px;
  }
  .profit_name {
    font-size: 16px;
  }
  .profit_item .text_item {
    font-size: 14px;
  }
  .profit_icon {
    width: 43px;
    height: 43px;
    bottom: 25px;
  }
  .activ_item_main .small_title {
    font-size: 32px;
  }
  .activ_item {
      padding: 25px 190px 60px 25px;
  }
  .activity_text .text_item {
    font-size: 14px;
  }
  /*      Agro_Calc Page styles   */
  .agro_calc_title {
    font-size: 20px;
  }
  .agro_calc_list .input_block .form_input,
  .agro_calc_list .input_block .form_select {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .agro_calc_list .input_block .form_select {
    background-size: 11px;
  }
  .agro_calc .input_name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner_text h3 {
    margin-top: 30px;
  }
  .basket_inner_form,
  .akcii {
    margin-top: 60px;
  }
  .akcii_inner_form .basket_form_top {
    font-size: 22px;
    padding: 25px 50px;
  }
  .akcii_inner_form .basket_form_body {
    padding: 50px;
  }
  .akcii_form_body .form_btn {
    font-size: 16px;
  }
  .akcii_inner_form.basket_inner_form {
    width: 800px;
  }
  /*      Delivery Page styles    */
  .delivery_title {
    font-size: 38px;
  }
  .delivery_small_title {
    font-size: 20px;
  }
  .delivery_map_text .more_btn {
    font-size: 18px;
    padding: 20px 90px;
  }
  /*.delivery_map {
    padding: 40px 60px;
  }*/
  .advan_text .small_title {
    font-size: 22px;
  }
  .advan_text .text_item {
    font-size: 14px;
  }
  .title.advan_title {
    font-size: 30px;
  }
  .advan_block {
    margin-top: 10px;
  }

  .tabs__item .basket_form_body{
    padding: 40px;
  }

  .delivery_map_img{
    width: 650px;
  }
  .i-sklad--uskaman{
    top: 170px;
    right: 25px;
  }
  .i-sklad--almaty{
    top: 275px;
    right: 120px;
  }
  .i-sklad--shymkent{
    top: 310px;
    right: 270px;
  }
  .i-sklad--petro{
    top: 35px;
    right: 250px;
  }
  .i-sklad--pavl{
    top: 95px;
    right: 140px;
  }
  .i-sklad--kokshetay{
    top: 100px;
    right: 250px;
  }
  .i-sklad--kost{
    top: 115px;
    right: 345px;
  }

  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 32px;
  }
  .agro_page .main_text,
  .agro_page_text.text_item {
    font-size: 18px;
  }
  .serv_item {
    padding: 20px 20px 30px;
  }
  .serv_img {
    margin-bottom: 20px;
    margin-top: -75px;
  }
  .serv_btn {
    font-size: 14px;
    margin-top: 20px;
  }
  .agro_club_left,
  .agro_club_right {
    padding: 40px;
  }
  .agro_club_left .text_item {
    font-size: 16px;
  }
  .agro_club_right .title {
    font-size: 28px;
  }
  .agro_club_right .more_btn {
    font-size: 14px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_name,
  .delivery_select {
    font-size: 14px;
  }
  .delivery_sel_item {
    margin-right: 50px;
  }
  .delivery_prod .prod_item {
    padding-bottom: 90px;
  }
  .delivery_prod .prod_name {
    margin-bottom: 10px;
  }
  .delivery_prod .prod_img {
    height: 130px;
    margin-bottom: 20px;
  }
  .delivery_prod .prod_text.text_item {
    font-size: 14px;
  }
  .delivery_prod .prod_item .more_btn {
    font-size: 14px;
    width: 180px;
  }
  .delivery_prod .prod_buttons {
    bottom: 25px;
  }
  .delivery_inner_form .form_btn {
    font-size: 16px;
  }
  .delivery_request {
    width: 440px;
    bottom: -64px;
    padding: 40px 70px 40px 40px;
  }
  .delivery_request .small_title {
    font-size: 24px;
  }
  .delivery_form_body .basket_last_step {
    padding-right: 430px;
  }
  .basket_form_bottom.padding_right {
    padding-right: 460px;
  }
  /*    Diagnostic Page styles    */
  .benefit_text .text_item.page_text {
    font-size: 16px;
  }
  .scheme_top {
    padding: 20px;
    height: 170px;
  }
  .scheme_body {
    padding: 20px 25px;
  }
  .scheme_bottom_block .small_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .scheme_bottom_list ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .diagnostic_slide .main_btn {
    padding: 16px 70px;
  }
  /*      Cabinet Profile Page styles     */
  .profile_content .cab_content_head {
    padding-left: 30px;
    padding-right: 30px;
  }
  .profile_content .cab_content_body {
    padding: 30px;
  }
  .profile_info_row .input_name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .profile_info_text {
    font-size: 18px;
  }
  .prodile_img {
    width: 280px;
    height: 280px;
  }
  .profile_info .profile_info_row:not(:last-child) {
    margin-bottom: 25px;
  }
  .profile_anketa_body {
    padding-top: 20px;
  }
  .anketa_top_text {
    padding: 18px 30px;
    font-size: 16px;
  }
  .anketa_btn.form_btn {
    padding: 17px 75px 17px 35px;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    width: 430px;
    height: 430px;
    margin-top: -205px;
  }
  .comment_block.contact_block {
    margin-top: 200px;
  }
  .contact_form .form_btn {
    font-size: 18px;
    padding: 17px;
  }
  .contact_bottom_item {
    font-size: 16px;
    background-size: 20px;
    padding-left: 30px;
  }
  .contact_bottom .contact_bottom_item:not(:last-child):after {
    height: 25px;
  }

  .contact-part{
    margin-top: 40px;
  }
  .cont-left__heading,
  .cont-area__heading{
    font-size: 20px;
  }

  .contact-part__left{
    width: 42%;
  }
  .contact-part__right{
    width: 58%;
  }
  .cont-ul li{
    margin-bottom: 15px;
  }
  .cont-row{
    font-size: 14px;
  }
  .cont-row:before{
    width: 22px;
    height: 22px;
    padding-left: 35px;
  }
  .contact_form .input_block .form_input,
  .contact_form .input_name,
  .contact_form .form_btn{
    font-size: 16px;
  }

  /*      How To Buy Page styles    */
  .buy_circle_list {
    padding: 0 2%;
  }
  .buy_circle {
    width: 530px;
    height: 530px;
  }
  .buy_circle .text_item,
  .buy_tab_item {
    font-size: 16px;
  }
  .buy_content_item > .text_item {
    font-size: 18px;
  }
  .buy_circle_list {
    margin-top: 50px;
  }
  .anketa-row .input_block {
    width: 45%;
  }  

  /*         Seminar_Inner Page styles        */

  .sidebar_form_block{
    padding: 25px 20px;
  }
  .sidebar_form_block .small_title{
    font-size: 22px;
  }
  .sidebar_form .input_block .input_name{
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1350px) {
  .container {
    width: 1100px;
  }
  .active_img{
    right:-140px;
    height:290px;
    width:310px;
  }
  .head_login .input_name {
    font-size: 16px;
  }
  .prod_info {    
    padding-top: 32px;
  }
  .prod_name {
    font-size: 18px;
    margin-bottom: 10px;
  }  
  .head_login .input_block .form_input {
    font-size: 16px;
  }
  .head_login .pass_eye {
    width: 40px;
    height: 40px;
  }
  .main_img_silder {
    width: 750px;
    height: 750px;
  }
  .main_img_dots {
    width: 800px;
    height: 800px;
    left: -30px;
    top: -30px;
  }
  .main_slide .title {
    font-size: 42px;
  }
  .main_text {
    font-size: 16px;
  }
  .main_btn {
    font-size: 14px;
    margin-top: 30px;
  }
  .main_dots button {
    padding: 6px;
  }
  .page_form_block {    
    padding: 65px 100px 0;
  }  
  .input_block {   
    margin-bottom: 50px;
  }
  .catalog_sidebar {
    width: 22%;
  }  
  .catalog_content {
    width: 76%;
  }
  .main_dots .slick-active .main_dot_num {
    font-size: 28px;
  }
  .main_dot_num {
    margin-right: 15px;
  }
  .main_section .leaf_2 {
    left: 51%;
    bottom: 0;
  }
  .leaf {
    width: 90px;
    height: 90px;
  }
  .main_dots .slick-active button {
    box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.4);
  }
  .main_slide_img {
    width: 240px;
    height: 240px;
  }
  .main_img_block:before {
    width: 310px;
  }
  .soc_link {
    width: 23px;
    height: 21px;
  }
  .soc_list > li:not(:last-child) {
    margin-right: 15px;
  }
  .soc_list {
    margin-right: 40px;
  }
  /*      Catalog Page styles   */
  .catalog {
    margin-top: 30px;
  }
  .download_catalog {
    width: 200px;
    font-size: 14px;
    background-size: 16px;
    padding: 10px 50px 10px 20px;
  }
  .catalog_top {
    margin-top: -55px;
    /*margin-bottom: 25px;*/
  }
  .catalog_link_icon {
    width: 22px;
    height: 22px;
  }
  .main_prod_type {
    font-size: 13px;
    padding: 8px 12px;
  }
  .main_prod_text .more_btn {
    font-size: 14px;
    padding: 14px 50px;
  }
  .main_prod_text .small_title {
    margin-bottom: 10px;
  }
  .main_prod_img {
    width: 220px;
    height: 220px;
  }
  .main_prod_circle {
    width: 900px;
    height: 900px;
  }
  .filter_check_img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  .prod_img {
    margin-right: 25px;
    height: 145px;
    margin-bottom: 0px;
  }
  /*.prod_grid{
    grid-template-columns: repeat(2, 49%);
  }*/
  .prod_grid .prod_item:nth-child(even) .prod_icon_text {
    left: auto;
    right: 80%;
  }
  .prod_grid .prod_item:nth-child(odd) .prod_icon_text {
    left: 80%;
    right: auto;
  }
  .pag {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .sidebar_block {
    padding: 25px;
  }

  .sidebar_block_name{
    font-size: 20px;
  }
  .sidebar_btn{
    padding: 14px 30px;
  }
  .pagination li{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .text_item.text_item--korz{
    max-height: 80px;
  }

  /*      Catalog_Inner Page styles   */
  .prod_inner_form {
    padding: 30px 25px;
  }
  .prod_tab_item,
  .form_btn {
    font-size: 16px;
  }
  .prod_part {
    width: 150px;
    height: 50px;
  }
  .prod_info_row,
  .text_item,
  .prod_inner_text .more_btn {
    font-size: 14px;
  }
  .prod_inner_text .more_btn {
    width: 280px;
  }

  .prod_item--view .prod_info{
    padding-top: 15px;
  }
  .prod_item--view .prod_buttons{
    left: 25px;
    right: 25px;
    bottom: 20px;
    flex-direction: column;
  }
  .prod_item--view.prod_item{
    padding-bottom: 110px;
  }
  .prod_item--view .more_btn{
    width: 80%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .prod_item--view .prod_compare{
    width: 80%;
  }
  .prod_item--view .more_btn.disabled{
    font-size: 13px;
  }
  .prod_item--view .more_btn.disabled:after{
    margin-left: -65px;
  }

  /*      Vakancy Page styles   */
  .input_block .form_input,
  .input_block .form_select,
  .input_block .form_btn {
    font-size: 18px;
  }
  .vakancy_sel_name {
    font-size: 16px;
  }
  .vakancy_select {
    font-size: 14px;
    padding: 12px 35px 12px 15px;
    background-position: right 15px center;
    background-size: 10px;
  }
  /*      Partners Page styles    */
  .part_name {
    font-size: 18px;
  }
  .part_item {
    padding: 20px 20px 20px 30px;
  }
  .part_img:after {
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
  }
  .part_img {
    width: 170px;
    height: 170px;
    margin-right: 30px;
  }
  .part_img:before {
    border-width: 3px;
  }
  .part_more {
    font-size: 14px;
  }
  .part_img_line {
    top: 79%;
    border-width: 3px;
  }
  /*      Comments Page styles    */
  /*.comment_video_block{
    width: 400px;
    height: 400px;
    margin-top: -220px;
  }*/
  .comment_name {
    font-size: 24px;
  }
  .comment_arrows {
    margin-right: 50px;
  }
  .comment_slider {
    margin-bottom: 40px;
  }
  /*.comment_block{
    padding: 60px 50px 40px 50px;
  }*/
  .comment_video_block:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 32.5%, 0 32.5%);
    clip-path: polygon(0 0, 100% 0, 100% 32.5%, 0 32.5%);
  }
  .comment_img {
    right: 390px;
  }

  .comment_slider{
    margin-bottom: 20px;
  }
  .comment_video_block{
    width: 280px;
    height: 280px;
    margin-top: -109px;
  }
  .comment_block{
    padding: 30px 60px 30px 30px;
  }
  .comment_img{
    right: 290px;
    width: 260px;
    top: -120px;
  }
  .comment_block{
    margin-top: 120px;
  }

  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 400px;
    height: 400px;
  }
  .agro .main_img_dots {
    width: 450px;
    height: 450px;
  }
  .agro_img_block .main_dots button {
    padding: 5px;
  }
  .agro_text_slider .main_btn {
    width: 210px;
    font-size: 16px;
  }
  .agro_arrows {
    margin-top: 60px;
  }
  .agro_arrows .slick_arrow {
    width: 55px;
    height: 40px;
  }
  /*    Basket Page styles    */
  .basket_head_last {
    margin-right: 25px;
  }
  /*      Subsiding Page styles   */
  .doc_list_head {
    font-size: 22px;
  }
  .doc_item_name,
  .video_item_name {
    font-size: 16px;
  }
  .doc_item_btn {
    font-size: 14px;
    background-size: 40%;
    padding-top: 25px;
  }
  .doc_item_btn:after {
    background-size: 40%;
  }

  .news_name.news_name--2{
    font-size: 18px;
    line-height: 130%;
  }
  .news_item .more_btn{
    font-size: 14px;
  }
  .video-car__heading{
    font-size: 16px;
  }
  .video-car__img{
    width: 215px;
    height: 215px;
  }

  /*      Cabinet Media  Page styles    */
  .cabinet_title {
    margin-top: 20px;
    padding-bottom: 15px;
  }
  .cabinet_title.title {
    font-size: 28px;
  }
  .cabinet_sidebar_link {
    font-size: 14px;
    padding: 20px 25px;
    border-width: 3px;
  }
  .cabinet_sidebar_link.active {
    font-size: 13px;
  }
  .cab_content_head {
    font-size: 20px;
    padding: 16px 30px;
  }
  .cab_content_body {
    padding: 30px;
  }
  .media_name {
    font-size: 16px;
    background-size: 11px;
    padding-left: 17px;
  }
  .media_img {
    width: 80px;
    height: 110px;
  }
  /*    Cabinet Chat Page styles    */
  .chat_bottom {
    height: 55px;
  }
  .chat_file {
    width: 55px;
  }
  .chat_message {
    font-size: 16px;
  }
  .chat_send_btn {
    width: 65px;
  }
  /*    Cabinet Subscribe Page styles   */
  .subscribe_btn,
  .subscribe_input {
    font-size: 14px;
  }
  .subscribe_input {
    padding: 15px 20px;
  }
  .subscribe_btn {
    padding: 15px 25px;
  }

  /*		Cabinet Page styles		*/

  .cab-top__heading{
  	font-size: 20px;
  }
  .cab-top .more_btn{
  	font-size: 14px;
  	padding: 12px 35px;
  }

  .cab-area__top{
  	font-size: 18px;
  	padding: 18px 40px;
  }
  .zakas-item__row,
  .zakas-item__row .more_btn{
  	font-size: 14px;
  }
  .zakas-item__row .more_btn{
  	padding: 12px;
  }

  .profile_img_label{
    font-size: 16px;
    width: 250px;
  }
  .profile_img_edit .prodile_img{
    width: 250px;
    height: 250px;
  }
  .edit-form__right .input_name,
  .pass_edit_form .input_name{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .edit-form__right .input_block .form_input,
  .pass_edit_form .input_block .form_input{
    font-size: 16px;
    padding-bottom: 10px;
  }
  .edit-form__right .input_block{
    margin-bottom: 10px;
  }
  .edit-form__right .input_block .form_btn{
    padding: 15px;
    font-size: 16px;
  }
  .pass_edit_form .input_block{
    width: 32%;
  }
  .pass_edit_form .pass_eye{
    width: 30px;
    height: 30px;
    top: 65%;
    right: 5px;
  }
  .pass_edit_form .pass_input_block .form_input{
    padding-right: 40px;
  }
  .pass_edit_form .input_block:last-child .form_btn{
    width: 350px;
    font-size: 16px;
    padding: 15px;
  }
  .pass_edit_form .input_block{
    margin-bottom: 35px;
  }

  /*      About Page styles   */
  .about_link_list {
    width: 14%;
    padding-right: 10px;
  }
  .about_link {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .about_link.active {
    font-size: 16px;
  }
  .about_text_top {
    line-height: 150%;
  }
  .profit {
    grid-template-columns: repeat(3, 31%);
  }
  .profit .profit_item:nth-child(n) {
    transition-delay: 0.2s;
  }
  .profit .profit_item:nth-child(3n - 1) {
    transition-delay: 0.6s;
  }
  .profit .profit_item:nth-child(3n) {
    transition-delay: 1s;
  }
  .activ_item_main .small_title {
    width: 300px;
    font-size: 28px;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner_text .small_title {
    font-size: 20px;
  }
  .akcii_inner_text {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .basket_inner_form,
  .akcii {
    margin-top: 50px;
  }
  .akcii_inner_form .input_block .form_input,
  .akcii_inner_form .input_block .form_select {
    font-size: 18px;
  }
  .akcii_inner_form .basket_form_top {
    padding: 20px 40px;
  }
  .akcii_inner_form .basket_form_body {
    padding: 40px;
  }
  .akcii_inner_form.basket_inner_form {
    width: 700px;
  }
  /*      Delivery Page styles    */
  .delivery_title {
    font-size: 34px;
  }
  .delivery_small_title {
    font-size: 18px;
  }
  .delivery_map_text .more_btn {
    font-size: 16px;
    padding: 16px 80px;
  }
  .delivery_map_img {
    width: 55%;
  }
  .title.advan_title {
    font-size: 26px;
  }
  .advan_text .small_title {
    font-size: 20px;
  }
  .advan_text {
    padding: 30px 10px 30px 30px;
  }
  .advan_img {
    width: 39%;
  }
  section {
    padding: 70px 0;
  }

  .i-sklad__text:before{
    width: 22px;
    height: 22px;
  }
  .i-sklad__text{
    font-size: 13px;
  }
  .i-sklad--uskaman{
    top: 150px;
    right: 15px;
  }
  .i-sklad--almaty{
    top: 225px;
    right: 100px;
  }
  .i-sklad--shymkent{
    top: 260px;
    right: 220px;
  }
  .i-sklad--pavl{
    top: 80px;
    right: 115px;
  }
  .i-sklad--petro{
    right: 200px;
  }
  .i-sklad--kokshetay{
    top: 90px;
    right: 200px;
  }
  .i-sklad--kost{
    top: 110px;
    right: 285px;
  }

  .del_select_line:after{
    left: 15px;
  }
  .del_select_line{
    padding: 0 20px 0 40px;
  }
  .select-line .select-row:first-child{
    width: 30%;
  }
  .select-row{
    width: 16%;
  }
  .select-row_sel{
    padding-right: 40px;
  }
  .delivery_total_row{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .del_total_right{
    width: 300px;
    padding: 25px;
  }
  .total_right_title{
    font-size: 20px;
  }
  .del_total_right .more_btn{
    font-size: 14px;
    padding: 14px;
  }

  /*      Agroconsulting Page styles    */
  .agro_page .main_text,
  .agro_page_text.text_item {
    font-size: 16px;
  }
  .serv_img {
    width: 150px;
    height: 150px;
    margin-top: -69px;
  }
  .serv_name {
    font-size: 14px;
  }
  .serv_btn {
    padding: 11px 40px;
  }
  .services {
    margin: 90px 0 40px;
  }
  .agro_club_block {
    margin-top: 40px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_select {
    background-size: 9px;
    padding: 7px 25px 7px 12px;
    background-position: right 10px center;
  }
  .delivery_prod .prod_name {
    font-size: 18px;
  }
  .delivery_prod .prod_text.text_item {
    font-size: 13px;
  }
  .delivery_prod .prod_item .more_btn {
    width: 160px;
  }
  .basket_body_step .input_block .form_input {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .basket_first_step .input_block .form_select {
    padding-bottom: 15px;
  }
  .basket_first_step .input_block {
    margin-bottom: 50px;
  }
  .delivery_request {
    width: 400px;
  }
  .delivery_request .small_title {
    font-size: 20px;
  }
  .basket_form_body .text_item,
  .delivery_request .sidebar_btn {
    font-size: 14px;
  }
  .delivery_request .sidebar_btn {
    padding: 15px 30px;
  }
  .delivery_form_body .basket_last_step {
    padding-right: 390px;
  }
  .basket_form_bottom.padding_right {
    padding-right: 420px;
  }
  /*    Diagnostic Page styles    */
  .diagnostic_slide .main_btn {
    font-size: 16px;
  }
  .benefit_advan_item {
    padding: 25px 20px 25px;
  }
  .scheme_top {
    height: 180px;
  }
  .scheme_body {
    padding: 20px;
  }
  .scheme_body ul {
    margin-left: 0;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    width: 380px;
    height: 380px;
    margin-top: -190px;
  }
  .comment_block.contact_block {
    margin-top: 180px;
  }
  .contact_form .form_btn {
    font-size: 16px;
  }
  .contact_bottom_item {
    background-size: 18px;
    margin-right: 100px;
  }
  .contact_bottom .contact_bottom_item:not(:last-child):after {
    right: -50px;
  }

  .media_video_item .media_img{
    width: 130px;
    height: 130px;
    margin-top: -60px;
  }
  .media_video_item:after{
    width: 160px;
    height: 160px;
    top: -60px;
  }
  .media_list.media_video_list{
    margin-top: 80px;
    grid-row-gap: 90px;
  }

  /*      How To Buy Page styles    */
  .buy_content_block {
    margin-top: 50px;
  }
  .buy_content_item > .text_item,
  .circle_info_name {
    font-size: 16px;
  }
  .buy_circle {
    width: 480px;
    height: 480px;
    padding: 0 60px;
  }
  .buy_circle_name {
    font-size: 18px;
  }
  .buy_circle .text_item {
    font-size: 14px;
  }
  .buy_circle .more_btn {
    padding: 15px 40px;
    font-size: 14px;
  }

  /*           News Page styles        */

  /*.news > li{
    width: 33%;
  }*/
  .news{
    margin-top: 90px;
    margin-right: -10px;
  }
  .news_item .part_img{
    width: 140px;
    height: 140px;
  }
  .news_name{
    font-size: 14px;
    line-height: 17.5px;
  }
  .news_item .more_btn{
    bottom: 20px;
    padding: 8px 20px;
  }

  /*         News_Inner Page styles         */

  .news_gal_item{
    width: 200px;
    height: 200px;
  }
  .news-right li{
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 1000px;
  }
  .main_bottom {
    bottom: 30px;
  }
  .page {
    padding-top: 100px;
  }
  .main_slide .title {
    font-size: 36px;
  }
  .main_img_block:before {
    top: -50px;
    height: 80px;
    width: 260px;
  }

  .menu_link{
    font-size: 13px;
  }
  .menu > li:not(:last-child){
    margin-right: 20px;
  }
  .sub_link{
    font-size: 14px;
    padding: 11px 13px;
  }
  .sub_menu{
    width: 160px;
  }

  /*      Catalog Page styles   */
  .prod_img {
    height: 160px;
  }
  .sidebar_btn {
    font-size: 14px;
    padding: 14px 35px;
  }
  .sidebar_block_name {
    font-size: 20px;
  }
  /*.catalog_filter .filter_list:not(:last-child),*/
  /*.catalog_filter .filter_list_block:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }*/
  .filter_list_block{
    width: 23%;
    margin-right: 2.5%;
  }
  .prod_grid {
    grid-template-columns: repeat(2, 48%);
  }
  .prod_buttons {
    flex-direction: row;
  }
  .prod_compare {
    margin-bottom: 0;
  }
  .basket-akcia,.basket-del{
    display:none;
  }
  .add_card_catalog.disabled{
    font-size: 12px;
  }
  .prod_share{
    font-size: 12px;
    top: 5%;
    left: -42%;
  }

  .catalog_sidebar .delivery_name,
  .catalog_sidebar .buy_name{
    flex-direction: column;
    text-align: center;
  }
  .catalog_sidebar .delivery_icon, 
  .catalog_sidebar .buy_name .delivery_icon, 
  .catalog_sidebar .delivery_calc .delivery_icon{
    margin-right: 0;
    margin-bottom: 20px;
  }

  /*      Catalog_Inner Page styles   */
  .prod_inner_right {
    margin-left: 30px;
  }
  .prod_part {
    width: 140px;
    height: 40px;
    padding: 11px;
  }

  footer .container {
    flex-direction: column;
  }
  footer .logo {
    margin-bottom: 30px;
  }
  /*      Vakancy Page styles   */
  .title {
    font-size: 30px;
  }
  .page_form_block .form_title {
    font-size: 28px;
  }
  .input_block {
    width: 44%;
    margin-bottom: 70px;
  }
  .page_form .input_block:nth-child(even) {
    margin-right: 0;
  }
  .page_form .input_block:nth-child(odd) {
    margin-right: 5%;
  }
  .vakancy_advan {
    grid-template-columns: repeat(3, 31%);
  }
  .vakancy_advan .vakancy_advan_item:nth-child(n) {
    transition-delay: 0.2s;
  }
  .vakancy_advan .vakancy_advan_item:nth-child(3n - 1) {
    transition-delay: 0.5s;
  }
  .vakancy_advan .vakancy_advan_item:nth-child(3n) {
    transition-delay: 0.8s;
  }
  /*      Basket Page styles    */
  .basket_del {
    margin-right: 10px;
    margin-left: 20px;
  }
  .basket_title {
    padding-right: 0;
  }
  .basket_form_text {
    font-size: 14px;
    padding: 20px 30px;
  }
  .basket_form .form_btn {
    padding: 17px;
  }
  .prod_inner.basket_inner {
    flex-direction: column;
  }
  .basket_form_block {
    margin-top: 10px;
  }
  .basket_form_block .form_title {
    text-align: center;
  }
  .basket_inner .prod_inner_right {
    display: block;
    width: 100%;
    margin: 40px auto 0;
    max-width: 100%;
  }
  .basket_head_last {
    margin-right: 65px;
  }
  .basket_head_second {
    margin-right: 110px;
  }
  .basket{
    margin-bottom: 50px;
  }

  /*      Partners Page styles    */
  .input_block.input_block_text {
    width: 93%;
    transform: translateX(2%);
  }
  /*      Comments Page styles    */
  /*.comment_video_block {
    width: 300px;
    height: 300px;
    margin-top: -160px;
  }*/
  .comment_block {
    margin-top: 130px;
    padding: 30px 50px 30px 30px;
  }
  /*.comment_text {
    width: 50%;
  }*/
  .comment_item .text_item {
    font-size: 14px;
  }
  .comment_name {
    font-size: 22px;
  }
  .comment_rating {
    width: 90px;
  }
  .comment_head {
    margin-bottom: 10px;
  }
  .comment_img {
    right: 280px;
  }
  .comment_arrows .slick_prev {
    margin-right: 20px;
  }
  .comment_video_img:after {
    background-size: 20%;
  }
  /*      News Page styles      */
  .news {
    margin-top: 100px;
  }
  .news > li{
    width: 25%;
  }
  .news_item .part_img{
    margin-top: -95px;
  }
  .news_item .more_btn {
    padding: 10px;
  }
  .news_item .text_item {
    margin-bottom: 20px;
    line-height: 140%;
  }
  .news_item .part_img {
    width: 160px;
    height: 160px;
    margin-top: -65px;
  }

  /*         News_Inner Page styles         */

  .news_gal_item{
    width: 240px;
    height: 240px;
  }

  /*      Login / Registration Page styles    */
  .reg_main {
    flex-direction: column-reverse;
  }
  .login_block.reg_block {
    width: 750px;
    max-width: 100%;
    margin: 0 auto 50px;
  }
  .reg_advan {
    width: 750px;
    max-width: 100%;
    margin: 0 auto;
  }
  .reg_advan_list .reg_advan_item:nth-child(odd) {
    transition-delay: 0.2s;
  }
  .reg_advan_list .reg_advan_item:nth-child(even) {
    transition-delay: 0.4s;
  }
  /*    Comapre Page styles   */
  .compare_prod {
    flex-direction: column;
    padding: 20px;
  }
  .compare_prod .prod_img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .compare_prod .prod_name,
  .compare_prod .text_item {
    text-align: center;
  }
  .compare_prod .prod_img {
    width: 130px;
    height: 130px;
  }
  .compare_btn_item {
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
    background-position: top center;
  }
  /*    News_Inner Page styles    */
  .news_inner_text .share_block {
    position: static;
    margin-top: 30px;
    margin-left: 10%;
  }
  .news_inner_text .page_text {
    width: 80%;
  }
  /*      Cabinet Media Page styles   */
  .media_list {
    grid-template-columns: repeat(4, 22%);
  }
  /*      About Page styles   */
  .active_img {
    /*height: 200px;*/
  }
  /*    Agro_Calc Page styles   */
  .agro_calc_list .input_block {
    width: 30%;
  }
  .agro_calc {
    padding: 60px;
  }
  /*      Delivery Page styles    */
  .delivery_block .agro_text_block {
    width: 50%;
  }
  .delivery_map {
    padding: 40px 70px;
  }
  .advan_text .small_title {
    font-size: 18px;
  }
  .advan_text .text_item {
    line-height: 140%;
  }
  .advan_text {
    padding: 20px 10px 20px 30px;
  }
  .delivery_title {
    font-size: 30px;
  }
  .i-sklad--uskaman{
    top: 130px;
    right: 10px;
  }
  .i-sklad--pavl{
    top: 70px;
    right: 95px;
  }
  .i-sklad--almaty{
    top: 195px;
    right: 85px;
  }
  .i-sklad--shymkent{
    top: 220px;
    right: 190px;
  }
  .i-sklad--petro{
    right: 170px;
    top: 30px;
  }
  .i-sklad--kokshetay{
    top: 80px;
    right: 170px;
  }
  .i-sklad--kost{
    top: 100px;
    right: 245px;
  }

  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .agro_club_left,
  .agro_club_right {
    padding: 30px;
  }
  .agro_club_left .text_item {
    font-size: 14px;
  }
  .agro_club_left p span {
    font-size: 18px;
  }
  .gray_line {
    margin: 30px 0;
  }
  .agro_club_right .title {
    font-size: 24px;
  }
  .agro_club_left .text_item p:not(:last-child) {
    margin-bottom: 10px;
  }
  .agro_club_block {
    margin-top: 30px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_item {
    margin-right: 40px;
  }
  .prod_grid.delivery_prod {
    grid-template-columns: repeat(3, 32%);
  }
  .delivery_prod .prod_item {
    padding-bottom: 80px;
  }
  .delivery_request {
    width: 380px;
  }
  .delivery_form_body .basket_last_step {
    padding-right: 370px;
  }
  /*    Diagnostic Page styles    */
  .benefit {
    flex-direction: column;
  }
  .benefit_text,
  .benefit_advan {
    width: 100%;
  }
  .benefit_advan {
    margin-top: 30px;
  }
  .benefit_advan_item {
    padding: 30px;
  }
  .benefit_name,
  .benefit_advan_item .text_item {
    font-size: 16px;
  }
  .scheme_list .scheme_item:nth-child(3n) {
    margin-right: 0;
  }
  .scheme_list .scheme_item:nth-child(4n) {
    margin-right: 3.5%;
  }
  .scheme_list .scheme_item:nth-child(n) {
    transition-delay: 0.2s;
  }
  .scheme_list .scheme_item:nth-child(3n - 1) {
    transition-delay: 0.5s;
  }
  .scheme_list .scheme_item:nth-child(3n) {
    transition-delay: 0.8s;
  }
  .scheme_item {
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 30px;
  }
  .scheme_bottom_block {
    width: 43%;
  }
  .scheme_bottom .scheme_bottom_block:first-child {
    margin-right: 8%;
  }
  .scheme_bottom {
    margin-top: 70px;
  }
  /*      Cabinet Profile Page styles     */
  .prodile_img {
    width: 260px;
    height: 260px;
    margin-right: 40px;
  }
  .profile_info .more_btn{
    font-size: 14px;
    padding: 15px 35px;
  }
  .profile_content .cab_content_body {
    padding: 40px;
  }
  .profile_content .cab_content_head {
    padding-left: 40px;
    padding-right: 40px;
  }
  .anketa_form {
    margin-top: 40px;
  }
  /*      How To Buy Page styles    */
  .buy_circle {
    width: 450px;
    height: 450px;
    margin-bottom: 50px;
  }
  .buy_circle .text_item {
    margin-bottom: 20px;
  }
  .buy_tab_item {
    font-size: 14px;
    padding: 15px 30px;
  }
  .buy_circle_text{
    margin-top: 0;
    font-size: 16px;
  }

  /*       Contact Page styles       */

  .cont-left{
    padding: 40px 35px;
  }
  .cont-area{
    padding: 40px;
  }

  /*        Subsiding Page styles      */

  .sub-part__right{
    padding-right: 30px;
  }
  .sub-part__left .news_item .part_img{
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 1100px) {
  .container {
    width: 900px;
  }

  .head_tel{
    display: none;
  }

  .main_img_silder {
    width: 650px;
    height: 650px;
  }
  .main_img_dots {
    width: 700px;
    height: 700px;
  }
  .main_img_block {
    height: 65%;
  }
  .main_section .leaf_3 {
    width: 110px;
    height: 110px;
  }
  .main_dot_num {
    font-size: 18px;
  }
  .main_dots .slick-active .main_dot_num {
    font-size: 26px;
  }
  .main_img_block:before {
    width: 230px;
  }
  .main_slide .title {
    font-size: 32px;
  }
  .main_buttons .main_btn {
    font-size: 14px;
    margin-right: 20px;
  }
  /*      Catalog Page styles   */
  .catalog_sidebar {
    width: 28%;
  }
  .catalog_content {
    width: 70%;
  }

  .catalog_filter{
    padding-bottom: 0;
    justify-content: space-between;
  }
  .filter_list_block{
    width: 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .main_prod_circle {
    width: 800px;
    height: 800px;
    border-width: 6px;
  }
  .prod_buttons {
    left: 170px;
  }
  .prod_item {
    padding: 25px;
  }
  .prod_grid{
    grid-template-columns: 100%;
  }
  .prod_share{
    top: 7%;
    left: -45%;
    padding: 6px;
  }

  /*      Catalog_Inner Page styles   */
  .prod_inner {
    flex-direction: column;
  }
  .prod_inner_right {
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .prod_inner_form {
    padding: 40px 50px;
  }
  .prod_inner_text .more_btn {
    width: 260px;
    padding: 15px;
  }
  .prod_inner_text {
    padding-top: 10px;
  }
  .aside-title{
    margin-top: 0;
    text-align: center;
    font-size: 22px;
    width: 100%;
  }
  .prod_item--view.prod_item{
    width: 48%;
  }

  /*      Vakancy Page styles   */
  .table_block tr td,
  .table_block tr th {
    font-size: 14px;
  }
  .table_block tr th {
    padding: 20px 25px;
  }
  .table_block tr td {
    padding: 15px 25px;
  }
  .input_name {
    font-size: 18px;
  }
  .file_label {
    font-size: 16px;
  }
  .file_icon {
    width: 22px;
    height: 22px;
  }
  .input_block .form_btn {
    padding: 18px;
  }
  /*      Basket Page styles    */
  /*.basket_form_block{
    margin-top: 10px;
  }
  .basket_form_block .form_title{
    text-align: center;
  }*/
  .basket_head_second {
    margin-right: 80px;
  }
  /*      Agroconsulting Page styles    */
  .agro_text_block {
    width: 50%;
  }
  .agro .main_img_silder {
    width: 350px;
    height: 350px;
  }
  .agro .main_img_dots {
    width: 400px;
    height: 400px;
  }
  .agro_text_slider .main_btn {
    width: 190px;
    padding: 15px;
  }
  /*    News Page styles    */
  /*.news {
    grid-template-columns: repeat(2, 48%);
  }*/
  .news{
    margin-right: -15;
  }
  .news > li{
    width: 33%;
    margin-bottom: 100px;
  }
  .news_item{
    margin-right: 15px;
  }
  .news_item .part_img {
    width: 200px;
    height: 200px;
    margin-top: -75px;
  }

  /*       News_Inner Page styles     */

  .akcia-part{
    flex-direction: column;
  }
  .akcia-part__left{
    width: 100%;
    margin-bottom: 40px;
  }
  .akcia-inner{
    margin-right: 0;
  }
  .akcia-part__right{
    width: 100%;
  }
  .news-right{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .news-right li{
    width: 48%;
  }
  .news-right{
    margin-top: 120px;
  }
  .news-right li{
    margin-bottom: 140px;
  }

  .news_gal_block{
    margin-right: 0;
  }
  .news-subscribe{
    width: 450px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 140px;
  }

  /*    Subsiding Page styles   */
  .subsiding_text {
    padding: 40px;
    max-height: 380px;
  }
  .read_more {
    left: 40px;
    bottom: 40px;
    right: 40px;
  }
  .subsiding_text:after {
    height: 80px;
  }

  .sub-part__left .news_item .part_img{
    width: 200px;
    height: 200px;
    margin-top: -88px;
  }
  .sub-part{
    margin-top: 50px;
  }

  .video-car__heading{
    font-size: 16px;
  }

  /*      Cabinet Chat Page styles    */
  .chat_item {
    margin-bottom: 30px;
  }
  .cabinet_sidebar,
  .cab_sidebar_block{
    width: 260px;
  }
  .cabinet_content{
    width: 65%;
  }

  /*		Cabinet Page styles		*/

  .cabinet_right{
  	width: 67%;
  }

  .seminar_content{
    flex-direction: column;
  }
  .seminar_img{
    margin-bottom: 20px;
    margin-right: 0;
  }
  .seminar_date{
    width: 160px;
    padding: 20px;
  }

  .profile_img_edit{
    width: 220px;
  }
  .profile_img_edit .prodile_img{
    width: 200px;
    height: 200px;
  }
  .profile_img_label{
    width: 200px;
  }
  .edit-form__right{
    width: 50%;
  }
  .pass_edit_form .input_block{
    width: 48%;
  }

  /*    Agro_Calc Page styles   */
  .agro_calc .more_btn {
    font-size: 16px;
    padding: 15px 70px;
  }
  .title_text {
    width: 80%;
    margin-top: 20px;
  }
  /*    Diagnostic Page styles    */
  .scheme_bottom {
    justify-content: space-between;
  }
  .scheme_bottom_block {
    width: 48%;
  }
  .scheme_bottom .scheme_bottom_block:first-child {
    margin-right: 0;
  }
  .scheme_bottom_block .small_title {
    font-size: 18px;
  }
  .scheme_bottom_block .more_btn {
    margin-top: 30px;
  }
  .agro .main_img_silder {
    flex-shrink: 0;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    width: 330px;
    height: 330px;
    margin-top: -170px;
  }
  .contact_bottom_item {
    margin-right: 80px;
    font-size: 14px;
    background-size: 16px;
    padding-left: 25px;
  }
  .contact_bottom {
    padding-top: 10px;
  }
  .contact_bottom .contact_bottom_item:not(:last-child):after {
    right: -40px;
  }
  /*    Cabinet Media Page styles   */
  .media_list {
    grid-template-columns: repeat(3, 31%);
  }
  .media_list.media_video_list{
    grid-template-columns: repeat(2, 48%);
  }
  .media_img {
    width: 90px;
    height: 130px;
  }
  /*    About Page styles   */
  .activ_item {
    width: 100%;
    padding: 30px 240px 30px 30px;
  }
  .activity_text .text_item {
    font-size: 16px;
  }
  .activ_name {
    font-size: 20px;
  }
  .active_img {
    right: -100px;
  }
  .activ_item_main {
    text-align: center;
  }
  .activ_item_main .small_title,
  .activ_item_main .text_item {
    width: 100%;
  }
  .activ_item.activ_item_main {
    margin-bottom: 50px;
    padding-top: 0;
  }

  .activity_text{
    margin-bottom: 60px;
  }
  .text-item__btn{
    padding: 10px 25px;
  }

  /*      How To Buy Page styles      */
  .buy_circle {
    width: 420px;
    height: 420px;
  }
  .buy_content_block,
  .buy_circle_list {
    margin-top: 40px;
  }
  .buy_circle_name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .circle_info_name,
  .buy_content_item > .text_item {
    font-size: 14px;
  }
  .buy_circle .text_item {
    font-size: 12px;
  }
  .buy_circle .more_btn {
    margin-top: 10px;
  }

  /*      Delivery Page styles      */

  .i-sklad__text{
    font-size: 11px;
    padding-top: 22px;
  }
  .i-sklad__text:before{
    width: 18px;
    height: 18px;
  }
  .i-sklad--uskaman{
    top: 110px;
  }
  .i-sklad--almaty{
    top: 175px;
    right: 70px;
  }
  .i-sklad--shymkent{
    top: 195px;
    right: 165px;
  }
  .i-sklad--pavl{
    top: 65px;
    right: 85px;
  }
  .i-sklad--petro{
    right: 150px;
    top: 20px;
  }
  .i-sklad--kokshetay{
    top: 65px;
    right: 150px;
  }
  .i-sklad--kost{
    top: 90px;
    right: 215px;
  }

  /*         Seminar_Inner Page styles        */

  .sidebar_form_block{
    width: 450px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1000px) {
  .container {
    width: 800px;
  }
  .header_top {
    padding: 15px 0;
  }
  .main_bottom .left_icon {
    font-size: 14px;
    line-height: 150%;
  }
  .main_slide .title {
    margin-bottom: 10px;
  }
  .main_text {
    line-height: 140%;
  }
  .main_img_block {
    height: 60%;
  }
  .main_img_dots {
    width: 600px;
    height: 600px;
    left: -20px;
    top: -20px;
  }
  .main_img_silder {
    width: 550px;
    height: 550px;
  }
  .main_slide_img {
    width: 220px;
    height: 220px;
  }
  .main_dots button {
    padding: 5px;
  }
  .main_dots .slick-active button {
    box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.4);
  }
  .main_img_block:before {
    top: -40px;
    width: 200px;
    -webkit-clip-path: polygon(0 65%, 0 0, 100% 0, 100% 70%, 90% 50%, 42% 40%, 0% 64%);
    clip-path: polygon(0 65%, 0 0, 100% 0, 100% 70%, 90% 50%, 42% 40%, 0% 64%);
  }
  .main_img_block:after {
    left: -80px;
    -webkit-clip-path: polygon(0 100%, 0 0, 70% 0, 65% 30%, 80% 100%, 90% 100%, 100% 100%);
    clip-path: polygon(0 100%, 0 0, 70% 0, 65% 30%, 80% 100%, 90% 100%, 100% 100%);
  }
  .leaf {
    width: 70px;
    height: 70px;
  }
  .main_section .leaf_3 {
    width: 90px;
    height: 90px;
  }
  /*      Catalog Page styles   */
  .main_prod {
    padding: 30px 40px;
  }
  .main_prod_circle {
    left: -55%;
    top: -45%;
  }
  .prod_img {
    height: 140px;
    margin-bottom: 20px;
  }
  .prod_name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .sidebar_block_name {
    font-size: 18px;
  }
  .sidebar_btn {
    padding: 14px 30px;
  }
  /*      Catalog_Inner Page styles   */
  .foot_right {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .foot_right .loc {
    margin-right: 0;
  }
  .foot_right .loc:after {
    content: none;
    display: none;
  }
  .foot_right .left_icon,
  .created {
    width: 45%;
    margin-bottom: 20px;
  }
  .foot_right .left_icon:after,
  .created:after {
    right: auto;
    left: 110%;
  }
  .foot_right .soc_list {
    width: 45%;
  }
  .prod_inner_slider {
    margin-right: 40px;
  }
  /*      Partners Page styles    */
  .part_item {
    width: 100%;
    margin-bottom: 40px;
    padding: 30px 30px 30px 40px;
  }
  .part_img {
    /*margin-top: -84px;*/
    margin-right: 40px;
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 300px;
    height: 300px;
    margin-top: -124px;
  }
  .comment_block {
    margin-top: 120px;
    padding: 30px 40px 30px 30px;
  }
  .comment_arrows .slick_arrow {
    width: 35px;
    height: 15px;
  }
  .comment_dots button {
    padding: 6px;
  }
  .comment_dots .slick-active button {
    padding: 8px;
  }
  .comment_name {
    font-size: 20px;
  }
  .comment_img {
    width: 260px;
    right: 290px;
    top: -121px;
  }
  .comment_video_block:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 34.5%, 0 34.5%);
    clip-path: polygon(0 0, 100% 0, 100% 34.5%, 0 34.5%);
  }
  .del-benefits{
    flex-wrap:wrap;
    margin-bottom:-50px;
  }
  .del-benefits__item{
    width:50%;
    margin-bottom:50px;
  }
  /*      News Page styles    */
  /*.news {
    grid-template-columns: repeat(2, 48%);
  }*/

  .news_item .part_img{
    width: 180px;
    height: 180px;
    margin-top: -70px;
  }

  /*         News_Inner Page styles      */

  .news_gal_item{
    width: 210px;
    height: 210px;
  }

  /*    Basket Page styles    */
  .basket_head_second {
    margin-right: 50px;
  }
  /*    Subsiding Page styles   */
  .subsiding_catalog_title {
    flex-direction: column;
    align-items: flex-start;
  }
  .subsiding_catalog_title .small_title {
    margin-bottom: 30px;
  }
  .subsiding_text {
    max-height: 400px;
  }

  .sub-part__left .news_item .part_img{
    width: 190px;
    height: 190px;
  }
  .news_name.news_name--2{
    font-size: 16px;
  }

  /*      About Page styles   */
  .about {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .about_img {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .about_img img {
    width: 150px;
    margin: 0 auto;
  }
  .about_link_list {
    order: 2;
    width: 20%;
    margin-right: 10px;
  }
  .about_text {
    order: 3;
    width: 75%;
  }
  .team_img {
    width: 250px;
    height: 250px;
  }
  .profit_num {
    font-size: 22px;
  }
  /*    Agro_Calc Page styles   */
  .agro_calc_list .input_block {
    width: 46%;
    margin-right: 0;
  }
  .agro_calc_list {
    justify-content: space-between;
  }
  .hide_input_block {
    display: none;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner.catalog {
    flex-direction: column-reverse;
  }
  .akcii_inner .catalog_content,
  .akcii_inner .catalog_sidebar {
    width: 100%;
    margin-bottom: 0;
  }
  .catalog_sidebar .share_block {
    margin-left: 0;
    margin-top: 30px;
  }
  .akcii_inner_form.basket_inner_form {
    width: 100%;
  }
  /*      Delivery Page styles    */
  .delivery_map {
    padding: 30px 50px;
  }
  .delivery_title {
    font-size: 28px;
  }
  .delivery_map_text {
    width: 45%;
  }
  .delivery_map_img {
    width: 60%;
  }
  .delivery_map_text .text_item {
    margin-bottom: 25px;
  }
  .delivery_map_text .more_btn {
    padding: 16px 70px;
  }
  .advan_item {
    width: 100%;
  }
  .advan_text {
    padding: 30px 10px 30px 40px;
  }
  .advan_text .small_title {
    font-size: 20px;
  }
  .advan_text .text_item {
    font-size: 16px;
  }
  .advan_img {
    width: 200px;
    height: 100%;
    min-height: 165px;
  }

  .select-row_input, 
  .select-row_sel{
    padding: 10px 15px;
  }
  .select-row_sel{
    padding-right: 35px;
  }
  .del_select_line{
    /*width: 17px;*/
    /*height: 17px;*/
    text-align: center;
  }
  .delivery-row .input_block .form_select{
    font-size: 16px;
  }
  .delivery-row .input_block{
    margin-bottom: 50px;
  }
  .delivery-row .input_block .form_select{
    background-size: 12px;
  }
  .delivery-row{
    flex-wrap: wrap;
  }
  .delivery-row .input_block{
    width: 48%;
  }

  .select-line{
    flex-wrap: wrap;
  }
  .select-line .select-row:first-child{
    width: 100%;
    margin-bottom: 20px;
  }
  .select-row{
    width: 24%;
  }

  /*      Agroconsulting Page styles    */
  .services {
    margin: 100px 0 -40px;
    justify-content: space-between;
  }
  .serv_item {
    width: 48%;
    margin-right: 0;
    margin-bottom: 100px;
  }
  .serv_img {
    width: 170px;
    height: 170px;
    margin-top: -75px;
  }
  .serv_name {
    font-size: 16px;
  }
  .agro_club_right {
    width: 35%;
    margin-left: 20px;
  }
  /*    Diagnostic Page styles    */
  .scheme_list {
    margin-top: 30px;
    justify-content: space-between;
  }
  .scheme_top {
    padding: 30px;
  }
  .scheme_body {
    padding: 25px;
  }
  .scheme_item {
    width: 48%;
    margin-right: 0;
  }
  .scheme_list .scheme_item:nth-child(4n) {
    margin-right: 0;
  }
  .scheme_bottom .scheme_bottom_block:last-child .small_title {
    width: 60%;
  }
  .scheme_list .scheme_item:nth-child(odd) {
    transition-delay: 0.2s;
  }
  .scheme_list .scheme_item:nth-child(even) {
    transition-delay: 0.5s;
  }
  /*      Cabinet Profile Page styles     */
  .prodile_img {
    width: 230px;
    height: 230px;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .profile {
    flex-direction: column;
  }
  .profile_info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .profile_info_row {
    width: 48%;
  }
  .profile_info_text {
    font-size: 16px;
  }
  /*		Cabinet Page styles		*/

  .cabinet_right{
  	width: 63%;
  }

  /*      Contact Page styles   */
  .contact_content {
    flex-direction: column-reverse;
  }
  .contact_form {
    width: 100%;
  }
  .contact_content .comment_video_block {
    margin-top: -133px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .contact_bottom_item {
    margin-right: 50px;
  }
  .contact_bottom .contact_bottom_item:not(:last-child):after {
    right: -25px;
  }
  .contact-part{
    flex-direction: column;
  }
  .contact-part__left,
  .contact-part__right{
    width: 100%;
  }

  /*      How To Buy Page styles      */
  .buy_circle {
    width: 380px;
    height: 380px;
    padding: 0 40px;
  }
  .buy_circle_list {
    padding: 0;
  }
}
@media screen and (max-width: 880px) {
  .container {
    width: 700px;
  }

  .head_login{
    left: 35%;
  }
  .mob_menu {
    display: block;
  }
  .menu > li:not(:last-child) {
    margin-right: 0;
  }
  .menu_link {
    display: block;
    padding: 13px 15px;
    border-bottom: 1px solid #FF7A00;
  }
  .sub_menu_link > .menu_link {
    padding-right: 30px;
    background-position: center right 15px;
  }
  .sub_menu {
    position: static;
    width: 100%;
    pointer-events: auto;
    opacity: 1;
    transition: 0s;
    transform: none;
  }
  .sub_menu_list {
    margin-top: 0;
    box-shadow: none;
  }
  .sub_link {
    font-size: 14px;
    padding: 10px 15px 10px 25px;
  }

  .main_text_slider {
    width: 60%;
    margin-bottom: 100px;
  }
  .main_section .leaf_3 {
    left: 65%;
  }
  .main_section {
    height: auto;
  }
  .main_block .agro_text_block {
    width: 100%;
    margin-bottom: 0;
  }
  .main_section .container {
    padding-bottom: 50px;
  }
  .main_footer{
    position: static;
  }
  .main_section{
    padding-bottom: 0;
  }

  .main_block.agro{
    margin-top: 60px;
    flex-direction: column-reverse;
  }
  .main_block.agro .main_img_dots{
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%) rotateZ(30deg);
  }
  .main_block.agro .main_img_silder{
    width: 450px;
    height: 450px;
  }
  .main_block  .agro_img_block .main_dot_num{
    transform: rotateZ(-30deg);
  }

  /*      Catalog Page styles   */
  .catalog {
    flex-direction: column;
  }
  .catalog_filter_name{
    display: block;
    margin-bottom: 30px;
  }
  .catalog_sidebar,
  .catalog_content,
  .akcia-slider {
    width: 100%;
  }
  .catalog_content{
    position: relative;
  }
  .catalog_sidebar {
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .catalog_filter {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    position: absolute;
    left: 0;
    top: 54px;
    transition: 1s;
    max-height: 0;
    overflow: hidden;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .catalog_filter.active{
    max-height: 1500px;
    pointer-events: auto;
  }
  .catalog_filter.show{
    opacity: 1;
  }

  .filter_list_block {
    width: 48%;
  }
  /*.catalog_filter .filter_list_block:nth-child(even),
  .catalog_filter .filter_list_block:nth-child(odd) {
    border-bottom: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 20px;
    margin-top: 30px;
  }
  .catalog_filter .filter_list_block:nth-child(1),
  .catalog_filter .filter_list_block:nth-child(2) {
    border: none;
    padding: 0;
    margin: 0;
  }*/
  .main_prod_circle {
    left: -35%;
  }
  .catalog_top {
    margin-top: 0;
    padding-left: 0;
  }
  .sidebar_block {
    display: none;
  }

  .catalog_sidebar .delivery{
    width: 32%;
    margin-top: 30px;
  }

  /*      Vakancy Page styles   */
  .page_form_block .form_title {
    font-size: 26px;
  }
  .table_block table {
    min-width: 750px;
  }
  .page_form_block {
    padding: 40px 50px 0;
  }
  .page_form_block:after {
    width: 140px;
    height: 150px;
  }
  .page_form_block:before {
    width: 170px;
    height: 210px;
  }
  .vakancy_advan {
    grid-template-columns: repeat(2, 48%);
  }
  .vakancy_advan .vakancy_advan_item:nth-child(odd) {
    transition-delay: 0.2s;
  }
  .vakancy_advan .vakancy_advan_item:nth-child(even) {
    transition-delay: 0.4s;
  }
  /*      Basket Page styles    */
  .akcii {
    padding: 35px;
  }
  .basket_sel {
    margin: 0 15px;
  }
  /*      Contacts Page styles    */
  .comment_block.contact_block {
    margin-top: 150px;
    flex-direction: column-reverse;
  }
  .contact_block .comment_video_block,
  .contact_form .form_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .contact_form {
    width: 100%;
    margin-top: 40px;
  }
  .contact_form .form_btn {
    font-size: 18px;
    padding: 18px;
  }
  /*      Agroconsulting Page styles    */
  .agro {
    flex-direction: column;
  }
  .agro_text_block {
    width: 100%;
    margin-bottom: 90px;
    position: relative;
    padding: 0 30px;
  }
  .agro_arrows {
    margin-top: 0;
    position: absolute;
    display: flex;
    justify-content: space-between;
    left: -20px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .agro_arrows .slick_arrow {
    width: 45px;
    background-size: 22%;
  }
  .agro_img_block {
    width: 100%;
  }
  .agro_img_block .main_dot_num {
    transform: rotateZ(-70deg);
  }
  .agro .main_img_dots {
    width: 550px;
    height: 550px;
  }
  .agro .main_img_silder {
    width: 500px;
    height: 500px;
  }
  .agro_slide .title,
  .agro_slide .main_text {
    text-align: center;
  }
  .agro_slide .main_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .agro .main_img_dots {
    transform: translate(-50%, -50%) rotateZ(70deg);
  }
  .agro_team {
    justify-content: space-between;
  }
  .agro_team .team_item {
    width: 48%;
    margin-right: 0;
  }

  /*    News Page styles    */
  
  .news{
    margin-top: 130px;
    margin-right: 0;
    justify-content: space-between;
  }
  .news_item{
    margin-right: 0;
  }
  .news > li{
    width: 48%;
    margin-bottom: 130px;
  }
  .news_item .part_img {
    width: 250px;
    height: 250px;
    margin-top: -90px;
  }

  /*         News_Inner Page styles      */

  .news_gal_item{
    width: 190px;
    height: 190px;
  }

  /*    Comapre Page styles   */
  .compare_content_item {
    width: 100%;
  }
  .compare_head .compare_left,
  .compare_left {
    width: 200px;
  }
  .compare_head .compare_left {
    padding-right: 30px;
  }
  .compare_head .compare_content {
    margin-left: -30px;
    padding-left: 30px;
  }
  .compare_content_item {
    padding-bottom: 10px;
  }
  .compare_head .compare_content {
    margin-right: 0;
  }
  .prod_info_row .compare_content_item:not(.first) {
    width: 72%;
  }
  .compare_content_item.first {
    width: 200px;
  }
  /*    Cabinet Chat Page styles    */
  .cabinet {
    margin-top: 30px;
    flex-direction: column;
  }
  .cabinet_sidebar {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  .cab_sidebar_block{
    width: 300px;
    max-width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
  .cab_content_head {
    padding: 20px 30px;
  }
  .chat_item {
    padding: 20px 20px 25px;
  }

  /*		Cabinet Page styles		*/

  .cabinet_right{
  	width: 100%;
  }
  .cab-part{
  	padding-left: 0;
  }

  .seminar_content{
    flex-direction: row;
    padding: 25px;
  }
  .seminar_img{
    width: 120px;
    height: 120px;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .seminar_date_num{
    font-size: 50px;
  }
  .seminar_date{
    font-size: 16px;
  }
  .seminar_date{
    width: 150px;
  }

  /*		Cabinet Profile Page styles		*/

  .cabinet_content{
  	width: 100%;
  }

  .profile_img_edit{
    width: 250px;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .profile_img_edit .prodile_img{
    width: 240px;
    height: 240px;
  }
  .profile_img_label,
  .edit-form__right{
    width: 100%;
  }

  /*    About Page styles   */
  .team_img {
    width: 280px;
    height: 280px;
  }
  .activ_name {
    font-size: 18px;
  }
  .activity_text .text_item {
    font-size: 14px;
  }
  .active_img {
    width: 290px;
    height: 290px;
  }
  .activ_item {
    padding-right: 210px;
  }
  /*    Agro_Calc Page styles   */
  .agro_calc {
    margin-top: 50px;
    padding: 50px 40px;
  }
  .title_text {
    width: 100%;
  }

  .ago_calc_table th{
    font-size: 16px;
  }
  .ago_calc_table td{
    font-size: 14px;
  }
  .ago_calc_table{
    width: 100%;
    /*min-width: 650px;*/
    min-width: 370px;
  }
  .calc_text{
    font-size: 18px;
  }
  .agro_table .more_btn{
    font-size: 16px;
    padding: 15px 40px;
    margin-top: 10px;
  }

  /*      Delivery Page styles    */
  .delivery_block .agro_text_block {
    width: 100%;
  }
  .agro.delivery_block {
    flex-direction: column-reverse;
  }
  .delivery_block .agro_text_block {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .delivery_block .main_img_silder {
    width: 300px;
    height: 300px;
  }
  .delivery_block .main_img_dots {
    width: 350px;
    height: 350px;
  }
  .delivery_map {
    padding: 40px;
    flex-direction: column-reverse;
  }
  .delivery_map_img {
    width: 100%;
    margin-bottom: 20px;
  }
  .delivery_slide .title,
  .delivery_slide .main_text{
    text-align: center;
  }

  .i-sklad--uskaman{
    top: 47%;
    right: 2%;
  }
  .i-sklad--almaty{
    top: 75%;
    right: 17%;
  }
  .i-sklad--shymkent{
    top: 85%;
    right: 41%;
  }
  .i-sklad--kost{
    top: 35%;
    right: 53%;
  }
  .i-sklad--petro{
    right: 36%;
    top: 9%;
  }
  .i-sklad--kokshetay{
    top: 30%;
    right: 38%;
  }
  .i-sklad--pavl{
    top: 25%;
    right: 22%;
  }

  .delivery_map_text {
    width: 100%;
    text-align: center;
  }
  .delivery_map_text .more_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .delivery-row_buttons .form_btn{
  	width: 45%;
  }
  .delivery-row_buttons .yellow_btn{
  	width: 25%;
  }

  /*      Agroconsulting Page styles    */
  .delivery_block .agro_text_block {
    padding: 0;
  }
  .agro_page .main_slide .title,
  .agro_page .main_text {
    text-align: center;
  }
  .agro_club_block {
    flex-direction: column;
  }
  .agro_club_right {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .agro_club_right .title,
  .agro_club_right .text_item {
    text-align: center;
  }
  .agro_club_right .more_btn,
  .delivery_slide .more_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .delivery_slide .more_btn{
    font-size: 16px;
    padding: 15px 50px;
  }

  /*    Delivery Calc Page styles     */
  .prod_grid.delivery_prod {
    grid-template-columns: repeat(2, 48%);
  }
  .delivery_request {
    position: static;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .delivery_form_body .basket_last_step {
    padding-right: 0;
  }
  .basket_form_bottom.padding_right {
    padding-right: 40px;
  }
  /*    Diagnostic Page styles    */
  .delivery_slide.main_slide .main_buttons {
    width: 100%;
  }
  .diagnostic_slide .main_btn,
  .scheme_bottom_block .more_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .benefit_advan_item {
    padding: 20px;
  }
  .benefit_advan_item .text_item {
    line-height: 130%;
  }
  .scheme_bottom {
    margin-top: 50px;
    flex-direction: column;
  }
  .scheme_bottom .scheme_bottom_block:first-child {
    margin-bottom: 40px;
  }
  .scheme_bottom_block,
  .scheme_bottom .scheme_bottom_block:last-child .small_title {
    width: 100%;
  }
  /*      How To Buy Page styles      */
  .buy_circle {
    width: 500px;
    height: 500px;
    margin: 0 auto 40px;
    padding: 0 70px;
  }
  .buy_circle_name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .buy_circle .text_item {
    font-size: 14px;
  }
  .circle_info_name {
    font-size: 16px;
  }

  /*         Subsiding Page styles      */

  .sub-part{
    flex-direction: column;
    margin-top: 0;
  }
  .sub-part__right{
    width: 100%;
    padding-right: 0;
  }
  .sub-part__left{
    width: 100%;
    margin-top: 100px;
  }
  .sub-part__left .news_item .more_btn{
    width: 200px;
    max-width: 95%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .sub-part__left .news_item .part_img{
    margin-top: -84px;
  }
  .quiz{
    display:none;
  }

  /*      Comments Page styles      */

  .comment_text{
    width: 50%;
  }
}
@media screen and (max-width: 780px) {
  .container {
    width: 600px;
  }
  .head_tel,
  .main_bottom {
    display: none;
  }
  .main_section {
    min-height: 100vh;
    height: auto;
  }
  .main_section .container {
    padding-bottom: 20px;
    justify-content: flex-start;
  }
  .main_text_slider {
    width: 100%;
    margin-bottom: 10px;
  }
  .main_section .leaf_3 {
    display: none;
  }
  .main_img_block {
    height: 300px;
    width: 650px;
    position: relative;
    bottom: -40px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .main_img_block.way--active {
    transform: translateX(-50%);
  }
  .main_img_silder,
  .main_img_dots {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .main_slide_img {
    left: 50%;
    top: 30%;
  }
  .main_img_dots {
    transform: translateX(-50%) rotateZ(60deg);
  }
  .main_dot_num {
    margin-right: 10px;
    transform: rotateZ(-60deg);
  }
  .main_img_block:before,
  .main_img_block:after {
    width: 100px;
    top: auto;
    height: 130px;
    bottom: 0;
  }
  .main_img_block:after {
    left: -25px;
    -webkit-clip-path: polygon(0 100%, 0 0, 80% 0, 65% 30%, 70% 100%, 90% 100%, 100% 100%);
    clip-path: polygon(0 100%, 0 0, 80% 0, 65% 30%, 70% 100%, 90% 100%, 100% 100%);
  }
  .main_img_block:before {
    right: -45px;
    background: linear-gradient(0deg, white 60%, transparent);
    -webkit-clip-path: polygon(15% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
    clip-path: polygon(15% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  .main_section .leaf_2 {
    left: 75%;
    bottom: 40%;
  }
  .basket_num {
    width: 21px;
    height: 21px;
    font-size: 13px;
  }
  .lang_icon {
    width: 20px;
    height: 20px;
  }
  .akcia-inner{
  	padding:0;
  }
  .akcia_text{
  	padding:25px;
  }
  .akcia-inner__img{
  	margin-bottom:0;  	
  }
  .news_inner .akcia-inner__img img{
  	overflow:visible;
  	border-radius:0;
  	border-bottom: 1px solid #ccc;
  }
  /*      Catalog Page styles   */
  .main_prod_circle {
    width: 700px;
    height: 700px;
  }
  /*        Catalog Inner Page styles       */

  .prod_inner_text .prod_share{
    left: -43%;
  }

  /*      Vakancy Page styles   */
  .page_form_block {
    padding: 40px 20px 0;
  }
  .page_form_block:after,
  .page_form_block:before {
    bottom: -50px;
  }
  /*      Comments Page styles    */
  .comment_block {
    margin-top: 160px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .comment_img {
    display: none;
  }
  .comment_text {
    width: 100%;
  }
  .comment_video_block {
    margin-top: -150px;
    margin-bottom: 30px;
  }
  .comment_video_block:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 42.5%, 0 42.5%);
    clip-path: polygon(0 0, 100% 0, 100% 42.5%, 0 42.5%);
  }
  /*      Basket Page styles    */
  .akcii_item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .akcii_img {
    width: 100%;
    height: 250px;
  }
  .akcii_more {
    display: none;
  }
  .akcii_text {
    padding: 20px;
  }
  .akcii_date {
    font-size: 13px;
  }
  .akcii_name {
    font-size: 17px;
  }
  .basket_row {
    padding: 20px;
  }
  .basket_row {
    position: relative;
    padding: 30px 20px;
    flex-direction: column;
  }
  .basket_img {
    width: 130px;
    height: 130px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .basket_text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .basket_name {
    margin-left: auto;
    margin-right: auto;
  }
  .basket_head {
    display: none;
  }
  .basket_del {
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0;
    z-index: 2;
  }
  .basket_sel {
    margin: 25px auto 0;
  }
  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    transform: none;
    left: auto;
  }
  /*    News Page styles    */
  .news_item .part_img {
    width: 200px;
    height: 200px;
    margin-top: -75px;
  }
  .news{
    margin-top: 110px;
  }
  .news > li{
    margin-bottom: 110px;
  }
  /*    News_Inner Page styles    */
  .news_inner_text .page_text {
    width: 100%;
    margin-top: 30px;
  }
  .news_inner_text .share_block {
    margin-left: 0;
  }
  .text_item.page_text {
    line-height: 150%;
  }

  .news-right li{
    margin-bottom: 110px;
  }

  /*    Subsiding Page styles   */
  .steps {
    grid-template-columns: repeat(2, 48%);
  }
  .video_item_icon {
    width: 30px;
    height: 30px;
  }
  .video_item_body iframe {
    width: 500px;
    height: 250px;
    max-width: 100%;
  }
  .video_list {
    margin-top: 40px;
  }
  .subsiding_text {
    max-height: 380px;
  }
  /*    About Page styles   */
  .activity {
    flex-direction: column;
  }
  .activity .activ_item:not(:last-child) {
    margin-bottom: 40px;
  }
  .activ_item {
    width: 100%;
  }
  .active_img {
    height: 280px;
  }
  .activ_name {
    font-size: 20px;
  }
  .profit {
    grid-template-columns: repeat(2, 48%);
  }
  .profit .profit_item:nth-child(odd) {
    transition-delay: 0.2s;
  }
  .profit .profit_item:nth-child(even) {
    transition-delay: 0.6s;
  }
  /*      Delivery Page styles    */
  .delivery_slide,
  .delivery_slide.main_slide .title {
    text-align: center;
  }
  .delivery_map_img {
    width: 100%;
  }
  .advan_text {
    padding: 20px 10px 20px 30px;
  }
  .delivery_map {
    margin-top: 60px;
  }

  .delivery-row,
  .delivery-row_buttons{
    flex-direction: column;
  }
  .delivery-row .input_block{
    width: 100%;
    margin-right: 0;
  }
  .delivery-row_buttons .form_btn{
    width: 100%;
    margin-bottom: 20px;
  }
  .delivery-row_buttons .last_btn{
    margin-left: 0;
  }
  .select-line{
    flex-wrap: wrap;
    position: relative;
    padding-top: 15px;
  }
  .select-row{
    margin-bottom: 20px;
  }
  /*.select-line .select-row:first-child,*/
  .select-row,
  .del_select_line{
    width: 48%;
  }
  /*.del_select_line{
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
  }*/
  .delivery_list .select-line:not(:first-child){
    padding-top: 30px;
  }
  /*.delivery_list .select-line:not(:first-child) .del_select_line{
    top: 15px;
  }*/

  .shaq-ul{
    padding: 0 40px 17px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shaq-ul li{
    margin-top: 15px;
  }
  .shaq-ul li a{
    font-size: 14px;
    padding: 10px 15px;
  }
  .sklad-part{
    flex-direction: column;
  }
  .sklad-part__left{
    width: 100%;
    margin-right: 0;
  }
  .sklad-part__right{
    width: 100%;
    margin-top: 20px;
  }
  .sklad-part__left iframe{
    width: 100%;
  }
  .delivery_total_block{
    flex-direction: column;
  }
  .del_total_right{
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  /*      Agroconsulting Page styles    */
  .agro_page {
    margin-top: 50px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_inner_form .basket_first_step .input_block {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  /*    Diagnostic Page styles    */
  .diagnostic_slide_img.main_slide_img {
    top: auto;
  }
  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    margin-top: -163px;
  }
  .comment_block.contact_block {
    margin-top: 180px;
  }
  .contact_content .comment_video_block {
    margin-bottom: 0;
  }
  /*    Compare Page styles   */
  .prod_info_row .compare_content_item:not(.first) {
    width: 67%;
  }
  .edit-form{
  	flex-wrap:wrap;
  }
  .profile_img_edit,
  .edit-form__right {
    width: 100%;
   }
   .profile_img_edit{
    margin-right: 0;
   }
   .profile_img_edit .prodile_img{
    margin-left: auto;
    margin-right: auto;
   }

   /*       Cabinet Page styles         */

   .zakaz-bottom_block{
    overflow: auto;
   }
   .table-zakas{
    min-width: 580px;
   }
   .zakas-top__left{
    flex-direction: column;
   }
   .zakas-top__left .zakas-top__item:not(:last-child){
    margin-bottom: 10px;
   }
}
@media screen and (max-width: 680px) {
  .container {
    width: 500px;
  }
  .main_block.agro .main_img_silder{
    width: 370px;
    height: 370px;
  }
  .main_block.agro .main_img_dots{
    width: 420px;
    height: 420px;
  }
  .main_block.agro{
    margin-top: 50px;
  }

  /*      Catalog Page styles   */
  .main_prod_circle {
    width: 600px;
    height: 600px;
    top: -30%;
  }
  .catalog_sidebar .delivery{
    width: 100%;
    margin-top: 20px;
  }

  /*      Catalog_Inner Page styles   */
  .breadcrumbs {
    font-size: 14px;
  }
  .prod_inner_main {
    padding: 30px;
    flex-direction: column;
  }
  .prod_inner_slider {
    margin-right: 0;
  }
  .prod_inner_img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
    margin-top: 15px;
    margin-left: 0;
  }
  .small_title {
    font-size: 22px;
  }
  .prod_inner_text {
    text-align: center;
  }
  .prod_inner_text .more_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .prod_tab_item {
    width: 50%;
    text-align: center;
  }
  .foot_right {
    flex-direction: column;
  }
  .foot_right .left_icon,
  .created {
    width: auto;
    text-align: center;
    margin-right: 0;
  }
  .foot_right .soc_list {
    width: 100%;
    justify-content: center;
  }
  .foot_right .left_icon:after,
  .created:after {
    content: none;
    display: none;
  }
  .prod_inner_text .prod_share{
    left: -41%;
  }
  .prod_item--view.prod_item{
    width: 100%;
  }

  /*      Vakancy Page styles   */
  .input_block {
    width: 100%;
  }
  .page_form .input_block:nth-child(odd) {
    margin-right: 0;
  }
  .page_form_block {
    padding: 40px 40px 0;
  }
  .input_block {
    margin-bottom: 40px;
  }
  .reg_advan{
  	display:none;
  }
  .reg_block{
  	margin: 0 auto 30px auto;
  }
  .form_title {
    font-size: 22px;
  }
  .basket_inner_form .form_input,
  .basket_inner_form .form_select,
  .basket_inner_form .form_btn {
    width: 100%;
  }
  .basket_inner_form .form_title {
    text-align: center;
  }
  /*      Partners Page styles    */
  .input_block.input_block_text {
    width: 100%;
    transform: none;
  }

  /*      News Page styles    */

  .news_item .part_img{
    width: 170px;
    height: 170px;
    margin-top: -67px;
  }

  /*        News_Inner Page styles      */

  .news-right li{
    width: 100%;
    margin-bottom: 90px;
  }
  .news-subscribe{
    margin-bottom: 90px;
  }
  .news-right{
    margin-top: 110px;
  }
  .akcia-heading{
    font-size: 26px;
  }
  .share_block{
    margin-top: 30px;
  }
  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 450px;
    height: 450px;
  }
  .agro .main_img_dots {
    width: 500px;
    height: 500px;
  }
  /*    Subsiding Page styles   */
  .subsiding_text {
    max-height: 350px;
    padding: 30px;
  }
  .read_more {
    left: 30px;
    bottom: 30px;
    right: 30px;
  }
  .subsiding_text:after {
    height: 70px;
  }
  /*      Cabinet Chat Page styles    */
  .chat_item {
    width: 90%;
  }
  .chat_bottom {
    height: 50px;
  }
  .chat_message {
    padding: 14px 20px;
  }
  .chat_send_btn {
    width: 60px;
  }
  /*    Cabinet Media Page styles   */
  .media_list {
    grid-template-columns: repeat(3, 31%);
  }
  /*		Cabinet Page styles			*/

  .zakas-list{
  	padding: 20px 30px;
  	overflow-x: auto;
  }
  .zakas-list > li{
  	min-width: 600px;
  	padding-right: 30px;
  }
  .cab-area__top{
  	padding: 18px 30px;
  }
  .zakas-item__row .more_btn{
  	font-size: 13px;
  }
  .seminar_content{
    flex-direction: column;
  }
  .seminar_img{
    margin-bottom: 15px;
    margin-right: 0;
  }
  .seminar_date{
    width: 130px;
  }

  /*    About Page styles   */
  .about_link_list {
    display: none;
  }
  .about_text {
    width: 100%;
  }
  .activ_name {
    font-size: 18px;
  }
  .team_img {
    width: 220px;
    height: 220px;
  }
  .active_img {
    width: 320px;
    height: 320px;
    right: -150px;
  }
  .activ_item {
    padding-right: 180px;
  }
  /*    Agro_Calc Page styles   */
  .agro_calc {
    padding: 40px 30px;
  }
  .agro_calc_list .input_block {
    margin-bottom: 50px;
    width: 100%;
  }
  .agro_calc .more_btn {
    margin: 0 auto;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner_form .input_block {
    width: 100%;
    margin-bottom: 40px;
  }
  /*      Delivery Page styles    */
  .delivery_block.agro .main_img_silder {
    width: 300px;
    height: 300px;
  }
  .delivery_block.agro .main_img_dots {
    width: 350px;
    height: 350px;
  }
  .delivery_block .agro_text_block {
    padding: 0;
  }
  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 24px;
  }
  .agro_page_text.text_item,
  .serv_name {
    font-size: 14px;
  }
  .serv_img {
    width: 160px;
    height: 160px;
    margin-top: -70px;
  }
  .agro_club_left,
  .agro_club_right {
    padding: 25px 20px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_list {
    justify-content: space-between;
  }
  .delivery_sel_item {
    width: 47%;
    margin-right: 0;
  }
  .delivery_select {
    width: 100%;
  }
  .delivery_inner_form .basket_form_top {
    flex-direction: column;
  }
  .delivery_inner_form .basket_form_top .basket_form_step {
    margin-right: 0;
  }
  .delivery_inner_form .basket_form_top .basket_form_step:not(:last-child) {
    margin-bottom: 20px;
  }
  .prod_grid.delivery_prod {
    grid-template-columns: 100%;
  }
  .delivery_request {
    padding: 30px;
  }
  .delivery_request .sidebar_btn {
    text-align: center;
  }
  /*    Diagnostic Page styles    */
  .benefit_advan {
    flex-direction: column;
  }
  .benefit_advan_item {
    width: 100%;
    margin-bottom: 30px;
  }
  .benefit_advan_item {
    padding: 30px;
  }
  .scheme_item {
    width: 100%;
  }
  .scheme_top {
    height: auto;
  }
  .scheme_top .benefit_name {
    margin-bottom: 0;
  }
  .scheme_list .scheme_item:nth-child(odd),
  .scheme_list .scheme_item:nth-child(even),
  .benefit_advan .benefit_advan_item:nth-child(odd),
  .benefit_advan .benefit_advan_item:nth-child(even) {
    transition-delay: 0.2s;
  }
  /*      How To Buy Page styles      */
  .buy_tab_item {
    padding: 13px 25px;
  }
  .buy_content_item > .text_item {
    text-align: justify;
  }
  .buy_content_block,
  .buy_circle_list {
    margin-top: 30px;
  }
  .buy_circle {
    width: 450px;
    height: 450px;
    padding: 0 50px;
  }
  .buy_circle_name {
    font-size: 18px;
  }
  /*    Compare Page styles   */
  .prod_info_row .compare_content_item:not(.first) {
    width: 60%;
  }

  /*        Basket Page styles       */

  .prod_inner{
    margin-top: 0;
  }
  .catalog_title{
    justify-content: flex-start;
  }
}
@media screen and (max-width: 570px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .basket_num{
    font-size: 12px;
  }
  .page {
    padding-top: 100px;
  }
  .main_section{
    padding-top: 80px;
  }
  .main_section .leaf{
    z-index: -1;
  }
  .main_buttons {
    flex-direction: column;
    align-items: center;
  }
  .main_buttons .main_btn {
    /*margin-right: 0;*/
    margin-top: 20px;
  }
  .head_login {
    width: 300px;
    left: -50px;
    transform: none;
  }
  .head_login .login_body {
    padding: 20px 20px 30px;
  }
  .head_login .input_name {
    margin-bottom: 15px;
  }
  .head_login .pass_eye {
    background-size: 25px;
  }
  .head_login_item {
    padding: 12px;
  }
  .main_slide .title {
    text-align: center;
    font-size: 28px;
  }
  .main_text {
    text-align: center;
  }
  .main_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .main_slide_img {
    width: 180px;
    height: 180px;
  }
  .main_img_dots {
    width: 500px;
    height: 500px;
  }
  .main_img_silder {
    width: 450px;
    height: 450px;
  }
  .main_img_block {
    bottom: -70px;
    width: 550px;
  }
  .main_btn {
    margin-top: 20px;
  }

  .main_block.agro .main_img_silder{
    width: 310px;
    height: 310px;
  }
  .main_block.agro .main_img_dots{
    width: 360px;
    height: 360px;
  }
  .agro_arrows{
    position: static;
    transform: none;
    margin: 20px 0;
    justify-content: center;
  }
  .main_block .agro_arrows .slick_arrow{
    width: 55px;
    height: 45px;
    background-size: 20%;
  }
  .main_block .agro_text_block{
    padding: 0;
  }

  /*      Catalog Page styles   */
  .main_prod {
    padding: 30px;
    flex-direction: column-reverse;
  }
  .main_prod_circle {
    width: 1000px;
    height: 1000px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }
  .main_prod_text {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
    text-align: center;
  }
  .main_prod_type {
    margin-bottom: 20px;
  }
  .main_prod_type,
  .main_prod_text .more_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .prod_grid {
    grid-template-columns: 100%;
  }
  .prod_img {
    height: 180px;
  }
  .prod_grid .prod_item:nth-child(odd) .prod_icon_text {
    left: auto;
    right: 80%;
  }
  .prod_name {
    min-height: auto;
  }
  .download_catalog {
    width: 220px;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .catalog_top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
  }
  .prod_share {
    left: -65px;
    top: 25px;
    width: 200px;
  }
  .prod_buttons {
    left: 25px;
    right: 25px;
  }
  .prod_item{
    padding-bottom: 60px;
  }

  .prod_img{
    height: 150px;
  }

  .compare_popup .small_title{
  	font-size: 22px;
  }
  .popup_buttons .more_btn{
  	font-size: 14px;
  	padding: 14px;
  }

  /*      Catalog Inner Page styles    */

  .prod_inner_text .prod_share{
    left: -14%;
  }

  /*      Partners Page styles    */
  .part_item {
    flex-direction: column;
  }
  .part_img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .part_text {
    text-align: center;
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 260px;
    height: 260px;
    margin-top: -140px;
  }
  .comment_video_block:after {
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 43.5%, 0 43.5%);
    clip-path: polygon(0 0, 100% 0, 100% 43.5%, 0 43.5%);
  }
  /*      Basket Page styles    */
  .akcii_img {
    height: 200px;
  }
  .akcii {
    padding: 30px 20px;
  }
  .basket_title {
    flex-direction: column;
    align-items: center;
  }
  .basket_title .catalog_link_list {
    margin-top: 30px;
  }
  .basket_first_step .input_block {
    width: 100%;
    margin-right: 0;
  }
  .sidebar_share .main_prod_text {
    margin-top: 0;
    text-align: left;
  }
  .main_prod.sidebar_share {
    align-items: flex-start;
  }
  .sidebar_share .main_prod_type,
  .sidebar_share .main_prod_text .more_btn {
    margin-left: 0;
  }
  .sidebar_share_head {
    text-align: center;
  }

  .basket .small_title{
    font-size: 22px;
  }
  .basket .small_title .more_btn{
    padding: 14px 40px;
    font-size: 14px;
  }

  /*      Contacts Page styles    */
  .contact_form .input_block {
    width: 100%;
  }
  .contact_form .input_block:nth-child(odd) {
    margin-right: 0;
  }
  .contact_form .input_block {
    margin-bottom: 40px;
  }
  .contact_form .form_btn {
    width: 250px;
    max-width: 100%;
  }
  .contact_form {
    margin-top: 0;
  }
  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 400px;
    height: 400px;
  }
  .agro .main_img_dots {
    width: 450px;
    height: 450px;
  }
  .agro_arrows .slick_arrow {
    width: 40px;
    height: 35px;
    background-size: 25%;
  }
  .agro_arrows {
    left: -10px;
    right: -10px;
  }
  .agro_text_block {
    padding: 0 40px;
  }
  /*      Login / Registration Page styles    */
  .reg_block .input_block,
  .reg_block .form_btn {
    width: 100%;
  }
  .login_head {
    font-size: 18px;
  }
  .reg_advan .small_title {
    text-align: center;
  }
  .reg_advan_item {
    width: 100%;
    text-align: center;
  }
  .reg_advan_img {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .reg_advan_img {
    margin-bottom: 10px;
  }
  .reg_advan_list .reg_advan_item:nth-child(odd),
  .reg_advan_list .reg_advan_item:nth-child(even) {
    transition-delay: 0.2s;
  }
  /*    Vakancy Page styles   */
  .vakancy_sel_block {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
  .vakancy_sel_name {
    margin-bottom: 10px;
  }
  .vakancy_select {
    max-width: 100%;
  }
  .vakancy_advan {
    grid-template-columns: 100%;
  }
  .vakancy_advan .vakancy_advan_item:nth-child(odd),
  .vakancy_advan .vakancy_advan_item:nth-child(even) {
    transition-delay: 0.2s;
  }
  /*    Compare Page styles   */
  .catalog_title {
    flex-direction: column;
    align-items: center;
  }
  .catalog_link_list {
    margin-top: 20px;
  }
  .compare_head .compare_left,
  .compare_left {
    width: 170px;
  }
  .compare_content_item {
    width: 320px;
  }
  .compare_prod .prod_img {
    width: 110px;
    height: 110px;
  }
  .compare_prod_btn {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .compare_prod_btn .more_btn {
    margin-top: 10px;
    width: 90%;
  }
  .compare_head .compare_content {
    margin-right: 0;
    width: 100%;
    margin-left: 0;
    padding-left: 200px;
  }
  .prod_info_row .compare_content_item:not(.first) {
    width: 310px;
  }

  .compare_head{
    flex-direction: column;
  }
  .compare_head .compare_left{
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .compare_btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .compare_btn_item{
    width: 48%;
  }
  .compare{
    margin-top: 30px;
  }
  .compare_btn .compare_btn_item:not(:last-child){
    margin-bottom: 0;
  }

  /*    Subsiding Page styles   */
  .step_name,
  .step_item .text_item {
    font-size: 14px;
  }
  .steps {
    grid-row-gap: 40px;
  }
  .video_item_body iframe {
    height: 200px;
  }
  .subsiding_catalog_title {
    align-items: flex-start;
  }
  /*    About Page styles   */
  .team_img {
    width: 200px;
    height: 200px;
  }
  .activity{
    margin-top: 150px;
  }
  .activ_item {
    padding: 20px;
    overflow: visible;
  }
  .activ_item:after{
    content: "";
    position: absolute;
    left: 50%;
    top: -110px;
    width: 360px;
    height: 350px;
    z-index: -1;
    border-radius: 50%;
    /*border: 1px solid #ccc;*/
    background-color: #fff;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 100% 32%, 0 32%);
  }
  .active_img {
    width: 300px;
    height: 300px;
    position: static;
    transform: none;
    border-radius: 50%;
    margin: -100px auto 25px;
  }
  .active_img img {
    display: block;
  }
  .activity .activ_item:not(:last-child){
    margin-bottom: 140px;
  }

  /*      News_Inner Page styles    */
  .news_subscribe .small_title {
    font-size: 20px;
  }
  .news_inner_text .akcii .small_title {
    font-size: 24px;
    text-align: center;
  }
  .news_subscribe {
    padding: 30px 20px;
  }

  .news_gal_block{
    padding: 20px;
  }

  /*      Delivery Page styles    */
  .advan_img {
    height: 100%;
    align-items: flex-end;
  }

  .delivery_step_buttons{
    flex-direction: column;
  }
  .delivery_step_buttons .more_btn{
    margin-bottom: 20px;
    margin-right: 0;
  }

  /*      Agroconsulting Page styles    */
  .agro_club_line {
    left: 20px;
    right: 20px;
    width: auto;
  }
  .serv_block .small_title,
  .agro_club .small_title {
    text-align: center;
  }
  /*      Cabinet Profile Page styles     */
  .profile_content .cab_content_body {
    padding: 30px 30px 40px;
  }
  .profile_content .cab_content_head {
    padding-left: 30px;
    padding-right: 30px;
  }
  .anketa_form .input_block {
    width: 47%;
  }
  /*    Cabinet Media Page styles   */
  .media_list {
    grid-template-columns: repeat(2, 48%);
  }
  .media_img {
    width: 110px;
    height: 150px;
  }

  /*        Agro_Calc Page styles      */

  .agro_table .title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .agro_table{
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 500px) {

  .main_block.agro .main_img_silder{
    width: 260px;
    height: 260px;
  }
  .main_block.agro .main_img_dots{
    width: 310px;
    height: 310px;
  }
  .main_block .main_dot_num{
    font-size: 16px;
  }
  .main_block .main_dots .slick-active .main_dot_num{
    font-size: 22px;
  }
  .main_block .main_slide .title{
    font-size: 24px;
  }

  /*        Catalog Page styles       */

  /*.catalog_content .akcia-slider{
    display: none;
  }*/
  .catalog_sidebar{
    margin-bottom: 30px;
  }
  .download_catalog{
    margin-bottom: 20px;
  }

  /*    Cabinet Media Page styles   */
  .media_list {
    grid-template-columns: repeat(2, 48%);
  }
  .media_list.media_video_list{
    grid-template-columns: 100%;
  }
  .cabinet_sidebar {
    width: 100%;
  }
  /*    Cabinet Chat Page styles    */
  .chat_item {
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px 15px 20px;
  }
  .cab_content_body,
  .cab_content_head {
    padding: 20px;
  }
  /*    Cabinet Subscribe Page styles   */
  .subscribe_form {
    flex-direction: column;
    align-items: center;
  }
  .subscribe_input {
    border-radius: 8px;
  }
  .subscribe_btn {
    border-radius: 8px;
    margin-top: 20px;
  }

  /*		Cabinet Page styles		*/

  .gruz-item{
  	padding-top: 70px;
  }
  .gruz-item__heading{
  	line-height: 140%;
  }
  .gruz-item__top{
  	padding: 15px 20px;
  	flex-direction: column;
  	align-items: flex-start;
  }
  .cab-top{
  	flex-direction: column;
  	align-items: flex-start;
  }
  .cab-top .more_btn{
  	margin-top: 15px;
  }
  .gruz-table td, 
  .gruz-table th{
  	font-size: 13px;
  }

  /*      Basket Page styles    */
  .basket_form_top {
    flex-direction: column;
  }
  .basket_form_top .basket_form_step:not(:last-child) {
    margin-bottom: 20px;
  }
  .basket_form_step {
    margin-right: 0;
  }
  /*    About Page styles   */
  .team_img {
    width: 250px;
    height: 250px;
  }
  .active_img {
    width: 250px;
    height: 250px;
  }
  .activ_item:after{
    width: 310px;
    height: 330px;
    top: -100px;
  }
  .activity{
    margin-top: 130px;
  }
  .profit {
    grid-template-columns: 100%;
  }
  .profit .profit_item:nth-child(odd),
  .profit .profit_item:nth-child(even) {
    transition-delay: 0.2s;
  }
  .activ_item_main .small_title {
    font-size: 24px;
  }
  /*      Delivery Page styles    */
  .delivery_block.agro .main_img_silder {
    width: 250px;
    height: 250px;
  }
  .delivery_block.agro .main_img_dots {
    width: 300px;
    height: 300px;
  }
  .agro.delivery_block {
    margin-top: 50px;
  }
  .delivery_map {
    padding: 30px;
  }
  .advan_img {
    width: 150px;
  }
  .advan_text .text_item {
    font-size: 14px;
  }
  .advan_text .small_title {
    font-size: 18px;
  }
  .advan_text {
    padding-left: 20px;
  }

  .tabs__item .basket_form_body{
    padding: 30px;
  }
  .shaq-ul{
    padding: 0 30px 17px;
  }

  /*      Agroconsulting Page styles    */
  .serv_item {
    width: 100%;
  }
  .agro_team .team_item {
    width: 100%;
  }
  /*      Cabinet Profile Page styles     */
  .profile_info_row,
  .anketa_form .input_block {
    width: 100%;
  }
  .anketa_top_text {
    padding: 15px 20px;
  }
  .anketa_btn.form_btn {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 75px 15px 30px;
  }

  .anketa-row .more_btn{
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }

  /*      Contact Page styles   */
  .contact_content .comment_video_block {
    margin-top: -143px;
    width: 270px;
    height: 270px;
  }
  .comment_block.contact_block {
    margin-top: 160px;
  }
  /*      How To Buy Page styles      */
  .buy_circle {
    width: 380px;
    height: 380px;
  }
  .buy_circle_name {
    font-size: 16px;
  }
  .buy_circle .text_item {
    font-size: 12px;
  }
  .circle_info_name {
    font-size: 14px;
  }
  .buy_circle .more_btn {
    padding: 15px 30px;
  }

  /*       Subsiding Page styles       */

  .subsiding_popup .text_item.page_text{
    font-size: 14px;
  }
  .subsiding_popup.fancybox-content{
    padding: 25px 20px;
  }

  /*       Catalog page styles     */

  .zakas-pop{
    padding: 0;
  }
  .zakas-pop__prod,
  .zakas-pop__korzina{
    height: auto;
    line-height: 120%;
    padding: 8px 25px;
    font-size: 14px;
  }
  .zakas-pop__heading{
    font-size: 18px;
    padding-left: 40px;
    line-height: 130%;
  }
  .zakas-pop__heading:before{
    width: 25px;
    height: 25px;
  }

  /*      Agro_Calc Page styles      */

  .calc_text{
    font-size: 16px;
  }
  .ago_calc_table th{
    font-size: 15px;
  }

  /*       News Page styles       */

  .news > li{
    width: 100%;
  }
  .news_item .part_img{
    width: 210px;
    height: 210px;
    margin-top: -80px;
  }

  /*         News_Inner Page styles       */

  .news_gal_item{
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 450px){

  /*       Delivery Page styles     */

  .select-line .select-row:first-child, 
  .select-row{
    width: 100%;
  }
  .tabs__item .basket_form_body{
    padding: 20px 25px;
  }
  .delivery-top{
    padding: 18px 25px;
    font-size: 14px;
  }
  .delivery_caption{
    font-size: 14px;
  }
  .i-sklad__text:before{
    width: 15px;
    height: 15px;
  }
  .i-sklad__text{
    font-size: 8px;
  }
  #map{
    padding: 10px;
  }
  #zayavka_delivery,
  #zayavka{
    max-width: 95%;
    padding: 12px;
  }
  .popup-form__text{
    font-size: 16px;
  }
  .popup-sbt{
    font-size: 16px;
    padding: 15px 60px;
  }
  .popup-form__heading{
    font-size: 22px;
  }
  .del_select_line{
    width: auto;
    margin: 0 auto;
  }
  .del-benefits__item{
    width: 100%;
  }

  /*       Contact Page styles       */

  .cont-left,
  .cont-area{
    padding: 30px 25px;
  }
  .cont-map{
    height: 250px;
  }

  /*      Basket Page styles     */

  .basket_form .form_select, 
  .basket_form .form_input{
    width: 100%;
  }

  /*        Cabinet Page styles        */

  .seminar_item{
    flex-direction: column;
  }
  .seminar_date{
    width: 100%;
  }
  .seminar_date{
    flex-direction: row;
  }
  .seminar_date_block{
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 2px solid #FF7A00;
    border-bottom: none;
    display: flex;
    align-items: center;
  }
  .seminar_date_num{
    font-size: 40px;
    margin-right: 10px;
  }
  .seminar_date{
    border-left: none;
    border-top: 1px solid #ccc;
  }
  .seminar_content{
    padding: 25px 20px;
  }

  /*		Catalog Page styles		*/

  .popup_buttons .more_btn{
  	width: 100%;
  	margin-top: 15px;
  }
  .popup_buttons{
  	flex-direction: column;
  }
  .catalog_filter{
    padding: 20px 20px 0;
  }
  .filter_list_block{
    width: 100%;
    margin-bottom: 25px;
  }
  .filter_name{
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 400px) {
  .main_slide .title {
    font-size: 26px;
  }
  .main_slide_img {
    width: 160px;
    height: 160px;
  }
  .head_login {
    width: 260px;
    left: -25px;
  }

  .under_nav{
    padding-left: 20px;
    padding-right: 20px;
  }

  .main_block.agro .main_img_silder{
    width: 210px;
    height: 210px;
  }
  .main_block.agro .main_img_dots{
    width: 240px;
    height: 240px;
  }
  .main_block .agro_img_block .main_dots button{
    padding: 4px;
  }
  .main_block .agro_text_slider .main_btn{
    width: 100%;
    padding: 16px;
  }

  /*      Catalog Page styles   */
  .filter_list_block {
    width: 100%;
  }
  /*.catalog_filter .filter_list_block:nth-child(2) {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }*/
  .main_prod {
    padding: 20px;
  }
  .main_prod_img {
    width: 180px;
    height: 180px;
  }
  .prod_share {
    left: -70px;
    top: 15px;
  }
  .prod_buttons {
    flex-direction: column-reverse;
  }
  .prod_compare {
    margin-bottom: 15px;
    width: 100%;
  }
  .prod_item {
    padding: 20px;
    padding-bottom: 110px;
  }
  .prod_item .more_btn{
    width: 100%;
    margin-right: 0;
  }
  .add_card_catalog.disabled,
  .prod_text.text_item{
    font-size: 13px;
  }
  .prod_buttons{
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .prod_name{
    font-size: 17px;
  }
  .prod_img{
    height: 120px;
    margin-left: 0;
    margin-right: 10px;
  }
  .prod_img img{
    width: 100%;
  }
  .prod_item__sub,
  .prod_stock{
    font-size: 12px;
  }
  .prod_item__top{
    right: 20px;
  }

  .catalog_filter_name{
    font-size: 18px;
    padding: 13px;
  }
  .catalog_filter{
    top: 48px;
  }

  /*      Catalog_Inner Page styles   */
  .prod_inner_text .more_btn {
    width: 100%;
  }
  .prod_content {
    padding: 20px;
  }
  .prod_tab_item {
    padding: 15px 20px;
  }
  .prod_inner_form {
    padding: 30px 20px;
  }
  .prod_inner_main {
    padding: 50px 30px 30px;
  }
  .prod_inner_slider {
    max-width: 100%;
  }

  .prod_inner_text .prod_share{
    left: -70px;
    padding: 6px;
    font-size: 12px;
    top: 15px;
  }

  .prod_item--view .prod_compare{
    margin-bottom: 0;
  }
  .prod_item--view .more_btn,
  .prod_item--view .prod_compare{
    width: 200px;
    max-width: 100%;
  }
  .prod_tab_item{
    font-size: 14px;
  }

  /*      Vakancy Page styles   */
  .input_name,
  .input_block .form_input,
  .input_block .form_select,
  .input_block .form_btn {
    font-size: 16px;
  }
  .page_form_block {
    padding: 30px 20px 0;
  }
  .input_name {
    margin-bottom: 15px;
  }
  .input_block .form_input,
  .input_block .form_select {
    padding-bottom: 15px;
  }
  .input_block {
    margin-bottom: 30px;
  }
  .input_block .form_select {
    background-size: 12px;
  }
  .page_form_block .form_title {
    font-size: 24px;
  }
  .vakancy_advan {
    padding: 30px 20px;
  }
  /*      Basket Page styles    */
  .basket_form {
    padding: 0 20px 30px;
  }
  .basket_form_head {
    margin: 0 0 30px;
    padding: 20px 0;
    font-size: 18px;
  }
  .basket_form_text {
    margin: 0 0 30px;
    padding: 20px;
  }
  .basket_form .form_input, 
  .basket_form .form_select{
    margin-bottom: 40px;
  }
  .basket_form .basket_form_head:after, 
  .basket_form .basket_form_foot:after{
    left: -20px;
    right: -20px;
  }
  .basket_form .form_btn {
    font-size: 16px;
  }
  .basket_title .catalog_link_list {
    flex-wrap: wrap;
  }
  .basket_title .catalog_link {
    margin-bottom: 20px;
  }
  .akcii_img {
    height: 170px;
  }
  .akcii_name {
    font-size: 16px;
    line-height: 130%;
  }
  .akcii_item .text_item {
    line-height: 130%;
  }
  .delivery {
    padding: 20px 30px 30px;
  }
  .delivery_name,
  .buy_name {
    flex-direction: column;
  }
  .basket_form_top,
  .basket_form_body {
    padding: 20px;
  }
  .basket_body_step {
    left: 20px;
    right: 20px;
    top: 20px;
    padding-bottom: 0;
  }
  .basket_first_step .input_block {
    margin-bottom: 40px;
  }
  .delivery_icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .buy_name .delivery_icon {
    margin-right: 0;
  }
  .buy_name {
    font-size: 20px;
  }
  .delivery_name {
    text-align: center;
  }

  /*      Partners Page styles    */
  .part_item {
    padding: 20px;
  }
  .part_img:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  }
  /*      Comments Page styles    */
  .comment_video_block {
    width: 210px;
    height: 210px;
    margin-top: -110px;
  }
  .comment_video_block:after {
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 44.5%, 0 44.5%);
    clip-path: polygon(0 0, 100% 0, 100% 44.5%, 0 44.5%);
  }
  .comment_block {
    padding: 20px 10px 30px;
  }
  .comment_head {
    flex-direction: column;
  }
  .comment_head:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .comment_rating {
    margin-top: 10px;
  }
  .comment_item .text_item,
  .comment_name {
    text-align: center;
  }
  .comment_control {
    flex-direction: column-reverse;
  }
  .comment_arrows {
    margin-right: 0;
    margin-top: 20px;
  }
  .comment_video_img:after {
    background-size: 25%;
  }
  /*      News Page styles    */
  .news {
    grid-row-gap: 40px;
    margin-bottom: 0;
    margin-top: 110px;
  }
  .news_item .part_img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    margin-top: -75px;
  }
  .news_item{
    padding-bottom: 80px;
  }
  .news > li{
    margin-bottom: 70px;
  }
  .news_name {
    font-size: 16px;
    line-height: 23px;
  }
  .news_item .text_item,
  .news_item .more_btn {
    font-size: 14px;
  }
  .news_item .more_btn {
    padding: 15px;
    bottom: 25px;
  }
  .news-right li{
    margin-bottom: 110px;
  }
  /*.news_item{
    padding: 0 20px 80px;
  }*/

  /*         News_Inner Page styles       */

  .news_gal_item{
    width: 200px;
    height: 200px;
  }
  .akcia-inner{
    padding: 20px;
  }
  .news-subscribe{
    padding: 30px 20px;
  }

  /*      Contacts Page styles    */
  .contact_form {
    padding: 0;
  }
  .contact_form .form_btn {
    font-size: 16px;
    padding: 16px;
  }
  .contact_bottom {
    margin-left: 10px;
    margin-right: 10px;
  }
  .contact_bottom_item {
    margin-right: 0;
  }
  .contact_bottom .contact_bottom_item:not(:last-child):after {
    content: none;
    display: none;
  }
  .contact_content .comment_video_block {
    margin-top: -115px;
    width: 220px;
    height: 220px;
  }

  .city-ul li a{
    padding: 10px 20px;
    font-size: 14px;
  }
  .cont-left__heading, 
  .cont-area__heading{
    font-size: 20px;
  }

  /*      Agroconsulting Page styles    */
  .agro .main_img_silder {
    width: 290px;
    height: 290px;
  }
  .agro .main_img_dots {
    width: 330px;
    height: 330px;
  }
  .agro_slide .title {
    font-size: 22px;
  }
  .agro_slide .main_text {
    font-size: 14px;
  }
  .agro_text_slider .main_btn {
    width: 180px;
    padding: 13px;
  }
  /*      Login / Registration Page styles    */
  .login_body {
    padding: 25px 20px;
  }
  .login_head {
    padding: 20px 25px;
  }
  .pass_eye {
    top: 25px;
  }
  /*    Compare Page styles   */
  /*.compare_head .compare_left,*/
  .compare_left {
    width: 120px;
  }
  .compare_head .compare_content{
    padding-left: 120px;
  }
  .compare_head .compare_left {
    padding-right: 10px;
  }
  .compare_left .prod_info_row,
  .compare_content_item .prod_info_row {
    font-size: 13px;
    margin-top: 15px;
    padding-bottom: 10px;
    padding-right: 10px;
    min-height: 45px;
  }
  .compare_content_item.first {
    width: 140px;
  }
  /*    Favorite Page styles    */
  .favorite_faq {
    padding: 25px 20px;
  }
  /*    News_Inner Page styles    */
  .news_inner_text .page_text p {
    text-align: justify;
    margin-bottom: 15px;
  }
  /*    Subsiding Page styles   */
  .steps {
    grid-template-columns: 100%;
  }
  .doc_list_head,
  .video_item_head,
  .subsiding_text {
    padding: 20px;
  }
  .doc_list_body,
  .video_item_body {
    padding: 20px 20px 25px;
  }
  .doc_list_item {
    flex-direction: column;
  }
  .doc_item_name {
    margin-bottom: 20px;
  }
  .subsiding_btn {
    font-size: 14px;
    padding: 14px 20px;
  }
  .subsiding_btn_icon {
    margin-left: 20px;
  }
  .read_more {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
  .subsiding_text:after {
    height: 50px;
  }
  .subsiding_text {
    max-height: 465px;
  }
  .page_text > p:not(:last-child) {
    margin-bottom: 15px;
  }

  .video-car__img{
    width: 200px;
    height: 200px;
  }
  .video-car:before{
    width: 210px;
    height: 210px;
    margin-left: -105px;
  }

  /*      Cabinet Chat Page styles    */
  .chat_item_top {
    font-size: 12px;
  }
  .chat_item_text {
    font-size: 14px;
  }
  /*      Cabinet Page styles   */
  .media_list {
    grid-template-columns: 100%;
  }

  .profile_img_edit .prodile_img{
    width: 210px;
    height: 210px;
  }
  .cab_sidebar_block{
    width: 100%;
  }

  .zakas-top{
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .zakas-btn{
    margin-left: 0;
    margin-top: 10px;
  }
  .cab-area__content{
    padding: 20px;
  }
  .zakas-bot .more_btn{
    padding: 15px 30px;
    width: 100%;
  }

  /*    About Page styles   */
  .about_text {
    text-align: justify;
  }
  .active_img {
    width: 190px;
    height: 190px;
  }
  .activ_item:after{
    width: 230px;
    height: 240px;
    top: -95px;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
  }
  .activity .activ_item:not(:last-child){
    margin-bottom: 130px;
  }
  .activ_name {
    font-size: 16px;
  }
  .team_img {
    height: 240px;
  }
  .about_img img {
    width: 130px;
  }
  /*    Agro_Calc Page styles   */
  .agro_calc {
    padding: 30px 20px;
  }
  .agro_calc_title {
    margin-bottom: 30px;
  }
  /*      Akcii_Inner Page styles   */
  .akcii_inner_form .basket_form_body {
    padding: 30px 20px;
  }
  .akcii_inner_text .small_title {
    font-size: 18px;
  }
  /*      Delivery Page styles    */
  .delivery_block.agro .main_img_silder {
    width: 220px;
    height: 220px;
  }
  .delivery_block.agro .main_img_dots {
    width: 250px;
    height: 250px;
  }
  .delivery_map {
    padding: 20px;
  }
  .delivery_title {
    font-size: 24px;
  }
  .delivery_small_title {
    font-size: 16px;
  }
  .delivery_map_text .more_btn {
    padding: 14px 60px;
  }
  .advan_img {
    width: 130px;
  }

  .total_right_title{
    font-size: 18px;
  }
  .del_total_right{
    padding: 20px 15px;
  }

  /*      Agroconsulting Page styles    */
  .agro_page .main_slide .title {
    font-size: 22px;
  }
  /*    Delivery Calc Page styles     */
  .delivery_sel_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .delivery_request {
    padding: 20px;
  }
  .delivery_request .small_title,
  .delivery_request .text_item {
    text-align: center;
  }
  /*    Diagnostic Page styles    */
  .benefit_advan_item {
    padding: 25px;
  }
  /*      Cabinet Profile Page styles     */
  .anketa_btn.form_btn {
    margin-top: 20px;
    padding: 15px 55px 15px 30px;
    background-size: 16px;
    background-position: right 25px center;
  }
  /*      Cabinet Profile Page styles   */
  .profile_anketa .small_title {
    font-size: 24px;
  }
  /*      How To Buy Page styles      */
  .buy_circle {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 15px;
  }
  .buy_circle .text_item {
    font-size: 14px;
  }
}

@media screen and (max-height: 840px) and (min-width: 1300px){
  .main_slide .title{
    font-size: 50px;
    margin-top: 0;
  }
  .agro_arrows{
    margin-top: 60px;
  }
  .agro .main_img_dots{
    width: 590px;
    height: 590px;
  }
  .agro .main_img_silder{
    width: 520px;
    height: 520px;
  }
}

@media screen and (max-height: 700px){
  .main_slide .title{
    font-size: 40px;
  }
  .agro .main_img_dots{
    width: 490px;
    height: 490px;
  }
  .agro .main_img_silder{
    width: 430px;
    height: 430px;
  }
}

@media screen and (max-height: 610px){
  .main_slide .title{
    font-size: 26px;
  }
  .main_text{
    font-size: 14px;
  }
  .main_btn{
    margin-top: 20px;
  }
  .agro_text_slider .main_btn{
    width: 160px;
    padding: 12px;
    font-size: 13px;
  }
  .agro_arrows .slick_arrow{
    width: 45px;
    height: 30px;
  }
  .agro_arrows{
    margin-top: 20px;
  }
  .agro .main_img_silder{
    width: 310px;
    height: 310px;
  }
  .agro .main_img_dots{
    width: 360px;
    height: 360px;
  }
  .main_dot_num{
    font-size: 18px;
  }
  .main_dots .slick-active .main_dot_num{
    font-size: 24px;
  }
}

/*@media screen and (max-height: 530px){
  .page_down{
    display: none;
  }
}*/


@media print{
  .container{
    width: 850px;
    /*border: 1px solid red;*/
  }

  /*      Basket Page styles    */
  .delivery {
    padding: 40px 50px;
  }
  .basket_img {
    width: 150px;
    height: 150px;
  }
  .basket_head_last {
    margin-right: 55px;
  }
  .basket_head_second {
    margin-right: 40px;
  }

  /*    Basket 1700 px      */
  .basket_head {
    padding: 20px 40px;
  }
  .basket_img {
    width: 140px;
    height: 140px;
  }
  .basket_name,
  .basket_summ {
    font-size: 22px;
  }
  .basket_text .text_item {
    max-height: 95px;
  }
  .basket_del {
    width: 25px;
    height: 25px;
  }
  .basket_form .form_btn {
    font-size: 20px;
    font-size: 18px;
  }
  .delivery_name {
    font-size: 22px;
  }
  .delivery_icon {
    width: 50px;
    height: 50px;
  }
  .basket_inner_form,
  .akcii {
    margin-top: 50px;
  }
  .basket_sel {
    font-size: 16px;
  }
  .amount_btn {
    width: 30px;
    height: 30px;
  }
  .basket_summ {
    margin: 0 15px;
  }
  .basket_head_item {
    font-size: 16px;
  }
  .basket_head_last {
    margin-right: 65px;
  }
  .basket_head_third {
    margin-right: 30px;
  }
  .basket_form_step {
    font-size: 16px;
  }
  .basket_form_top {
    padding: 20px 40px;
  }
  .basket_first_step {
    padding-top: 20px;
  }
  .buy_name {
    font-size: 26px;
  }
  .buy_name .delivery_icon {
    margin-right: 20px;
    width: 55px;
    height: 55px;
  }
  .basket_form_body {
    padding: 30px 50px;
  }
  .basket_body_step {
    left: 40px;
    right: 40px;
    top: 30px;
  }
  .basket_form_bottom {
    padding: 25px 40px;
  }
  .akcii_sidebar .small_title {
    font-size: 26px;
  }
  .akcii_sidebar.akcii {
    padding: 35px;
  }
  .basket_form_head {
    font-size: 20px;
    padding: 18px 0;
  }
  .basket_form .form_btn {
    font-size: 16px;
    padding: 18px 35px;
  }
  .basket_form {
    padding: 0 25px 30px;
  }
  .basket_form .basket_form_head:after,
  .basket_form .basket_form_foot:after {
    left: -25px;
    right: -25px;
  }
  .delivery_calc .delivery_icon {
    width: 70px;
    height: 70px;
    margin-right: 30px;
  }
  .delivery_calc .delivery_name {
    max-width: 270px;
  }
  .delivery_name {
    max-width: 270px;
  }
  .sidebar_share_head {
    font-size: 22px;
    margin-top: 80px;
  }
  .sidebar_share:after {
    width: 75%;
  }
  .sidebar_share .main_prod_text {
    width: 65%;
  }
  .sidebar_share .main_prod_text .more_btn {
    font-size: 14px;
    padding: 15px 40px;
  }
  .sidebar_share .small_title {
    font-size: 18px;
  }

  /*      Basket 1500       */

  .basket_text .text_item {
    font-size: 14px;
    max-height: 85px;
  }
  .basket_name,
  .basket_summ {
    font-size: 20px;
  }
  .basket_img {
    width: 125px;
    height: 125px;
  }
  .basket_title {
    padding-right: 0;
  }
  /*.basket_del,*/
  .amount_btn {
    width: 30px;
    height: 30px;
  }
  .basket_summ {
    margin: 0 15px;
  }
  .form_title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .basket_form_text {
    font-size: 16px;
    line-height: 150%;
  }
  .basket_head_item {
    font-size: 16px;
  }
  .delivery {
    padding: 30px 40px;
  }
  .delivery_btn {
    font-size: 16px;
  }
  .delivery_name {
    font-size: 14px;
  }
  .delivery_icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .akcii_item .text_item {
    font-size: 14px;
  }
  .akcii_name {
    font-size: 18px;
  }
  .basket_img {
    width: 110px;
    height: 110px;
  }
  .basket_name {
    font-size: 18px;
  }
  .basket_text {
    width: 25%;
  }
  .basket_sel {
    font-size: 14px;
  }
  .basket_first_step .input_block .form_select,
  .basket_form_body .input_name {
    font-size: 16px;
  }
  .basket_first_step .input_block .form_select {
    background-size: 11px;
    padding-right: 17px;
  }
  .basket_form_body .input_name {
    margin-bottom: 10px;
  }
  .basket_form_step {
    font-size: 14px;
    padding: 10px 25px;
    margin-right: 20px;
  }
  .delivery_name {
    font-size: 18px;
  }
  .buy_name {
    font-size: 22px;
  }
  .buy_name .delivery_icon {
    width: 50px;
    height: 50px;
  }
  .delivery {
    min-height: 140px;
  }
  .basket_first_step .input_block {
    width: 43%;
    margin-bottom: 60px;
  }
  .basket_form_body {
    padding-bottom: 0;
  }
  .basket_form_body .text_item {
    font-size: 16px;
  }
  .basket_form .form_btn {
    font-size: 16px;
    padding: 16px 25px;
  }
  .akcii_sidebar .small_title {
    font-size: 24px;
  }
  .akcii_sidebar.akcii {
    padding: 25px;
  }
  .akcii_sidebar .akcii_img {
    height: 150px;
  }
  .sidebar_share_head {
    font-size: 20px;
    padding: 15px 20px;
  }
  .main_prod.sidebar_share {
    padding: 20px;
  }
  .sidebar_share .main_prod_type {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .sidebar_share .small_title {
    font-size: 16px;
  }
  .sidebar_share .main_prod_text .more_btn {
    padding: 12px 30px;
    margin-top: 15px;
  }

  /*    Basket Page styles    */
  .basket_head_last {
    margin-right: 25px;
  }

  /*      Basket Page styles 1200px    */
  .basket_del {
    margin-right: 10px;
    margin-left: 20px;
  }
  .basket_title {
    padding-right: 0;
  }
  .basket_form_text {
    font-size: 14px;
    padding: 20px 30px;
  }
  .basket_form .form_btn {
    padding: 17px;
  }
  .prod_inner.basket_inner {
    flex-direction: column;
  }
  .basket_form_block {
    margin-top: 10px;
  }
  .basket_form_block .form_title {
    text-align: center;
  }
  .basket_inner .prod_inner_right {
    display: none;
    width: 100%;
    margin: 40px auto 0;
    max-width: 100%;
  }
  .basket_head_last {
    margin-right: 65px;
  }
  .basket_head_second {
    margin-right: 110px;
  }
  .basket{
    margin-bottom: 50px;
  }

  /*    Basket Page styles  1000px  */
  .basket_head_second {
    margin-right: 50px;
  }

  /*      Basket Page styles  880px  */
  .akcii {
    padding: 35px;
  }
  .basket_sel {
    margin: 0 15px;
  }



  .basket-akcia,
  .catalog_link_list,
  .prod_inner_right,
  .leaf,
  header,
  footer,
  #jvlabelWrap,
  .breadcrumbs{
    display: none;
  }
  .page{
    padding-top: 90px;
  }
  .title,
  .title.title_left{
    width: 100%;
    font-size: 32px;
    text-align: center;
  }


  /*      Cabinet Print styles      */

  .cabinet_content{
    width: 100%;
  }
  .cab_sidebar_block,
  .zakas-bot,
  .zakas-top__right,
  .cabinet_title.title{
    display: none;
  }
  .zakas-top{
    padding: 15px 38px;
  }
  .table-zakas td{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cab-area__top{
    padding: 20px 40px;
    font-size: 20px;
  }
}

.survey {
    position: absolute;
    top: 90px;
    right: 30px;
    width: 300px;
    height: 180px;
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    border: 1px solid #df6b00;
    border-radius: 8px;
    display:none;
	z-index:2;
}

.show {
    display:block;
}

.survey button {
    background-color: #df6b00;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.survey button a{
    color: #fff;
}

#close {
    position: absolute;
    top: 5px;
    right: 0;
    border: none;
    background: transparent;
    outline:none;
    margin-top:-2px;
	cursor:pointer;
}

#close img {
    width:30px;
    height: 30px;
}

/*end my css*/
