:root {
    --black: #2B2A29;
    --accent: #46C5CB;
    --accent-hover: #50CFD5;
    --accent-focus: #57D6DC;
    --gray: #F0F3FA;
    --gray-hover: #EDF0F7;
    --gray-focus: #EAEDF4;
    --link: #D62D30;
    
    /*--container: 210px;*/
	--container: 155px;
    
    --more-width: 45px;
	--more-margin: 30px;
	--menu-margin: 30px;
}

@media screen and (max-width: 1520px) {
    :root {
        /*--container: 160px;*/
		--container: 75px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --container: 30px;
    }
}

@media screen and (max-width: 1150px) {
    :root {
        --container: 60px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --container: 30px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --container: 20px;
    }
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
}

body.noscroll {
    overflow-y: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: .2s;
}

a:hover,
a:focus {
    color: var(--link);
}


/* УДАЛИТЬ */
.list-group {
    display: flex;
    flex-direction: column;
}








/*.container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--container);
    padding-right: var(--container);
}*/
.container {
	width: 100%;
	max-width: 1820px;
    padding-left: var(--container);
    padding-right: var(--container);
    margin: auto;
}

.flex {
    display: flex;
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea, .simple-content select {
    border-radius: 3px;
    border: 1px solid #DEE7EC;
    background: #FFF;
    color: #84848E;
    font-size: 15px;
    font-weight: 400;
    outline: 0;
    width: 100%;
    padding: 13.5px 20px;
}

input[type=text]::placeholder, input[type=password]::placeholder, textarea::placeholder, .simple-content select::placeholder {
    color: #84848E;
    font-size: 15px;
    font-weight: 400;
}

textarea {
    height: 140px;
    resize: none;
}

fieldset {
    gap: 16px;
}

#bottom_menu {
    display: none;
}

h1 {
    color: #2B2A29;
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
}
.prod_info h1 {
    margin: 0 0 20px 0;
}






/* HEADER */

header #top {
    background-color: var(--black);
    color: #fff;
}

header #top .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
@media(min-width:769px){
.special-offer img {
    float: left;
    margin-right: 20px;
    width: 320px;
}
}
@media(max-width: 768px){
header #top .wrapper {
    display: block;
    height: 140px;
}
header #top .right {
    display: block !important;
    text-align: center;
}
.special-offer img {
    width: 100%;
}
}

header #top .left, header #top .left > div {
    display: flex;
    align-items: center;
}

header #top .left {
    gap: 40px;
	margin-top: 3px;
}

header #top .left div {
    gap: 4px;
}

header #top a,
header #top span {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

header #top .right {
    gap: 15px;
    display: flex;
}

header #top .right a {
    font-weight: 500;
    font-size: 12px;
	margin-top: 3px;
}

header #top .right a:last-child {
    font-weight: 600;
    font-size: 14px;
}

header #mid {
    padding: 20px 0;
}

header #mid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #mid .flex {
    margin: 0 20px;
}

#city_selector svg {
    stroke: #46C5CB;
}

.main_menu_button {
    background-color: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 160px;
    height: 50px;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.16px;
    padding: 10px 32px;
    transition: .2s;
}

.main_menu_button:hover {
    background-color: var(--accent-hover);
}

.main_menu_button svg {
    min-width: 24px;
}

.main_catalog_list .menu_block {
    /*padding-left: calc(var(--container) + 20px);*/
}

header .btns_block {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .btns_block a,
#bottom_menu > *,
#bottom_menu a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #617E8C;
}

#cart-total {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cart-total .count,
header .wishlist a span span,
#bottom_menu .wishlist span span {
    position: absolute;
    background-color: #46C5CB;
    color: #fff;
    top: -5px;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    width: fit-content;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 4px;
}

#cart-total .count {
    left: 50%;
}

header .wishlist a span span {
    left: 55%;
}
.compare_btn svg {
    stroke: #617e8c;
}



#search {
    display: flex;
    background-color: var(--accent);
    border-radius: 3px;
    margin-left: 17px;
    /*width: 39.7vw;*/
	width: 27.7vw;
    overflow: hidden;
}

#search input, #search input::placeholder {
    color: #90A4AF;
    font-size: 13px;
    font-weight: 500;
}

#search input {
    border: 2px solid var(--accent);
    border-radius: 3px;
    padding: 15px 24px;
    width: 100%;
}

#search button {
    border: 0;
    background-color: var(--accent);
    padding: 0 20px;
}
.logo-mfp {
    display: inline-block;
    padding-left: 5px;
    vertical-align: top;
    width: 100px;
}
.logo-mfp img {
    width: 90px;
}
.logo-mfp span {
    color: #000;
    font-size: 10px;
    line-height: 10px;
    max-width: 130px;
    display: inline-block;
    margin-top: -6px;
}


#top_menu {
    margin: 23px 0;
}

.menu-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
	list-style: none;
	flex-shrink: 0;
}

.menu-main {
    /*margin: 0;*/
	margin: auto;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    /*gap: 1vw;*/
	gap: 3vw;
    letter-spacing: -.3px;
}

.menu-main a,
.menu-more {
    font-size: 14px;
    font-weight: 500;
    color: #2B2A29;
}

.menu__link {
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 5px;
	color: #333;
}

.menu-more {
	height: 100%;
	width: var(--more-width);
	
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.menu-more.active {
	display: inline-flex;
}

.menu-more svg {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: cover;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-sub {
    position: absolute;
    height: 0;
    overflow: hidden;
    right: 0;
    top: 100%;
    background-color: #fff;
    z-index: 20;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding: 0;
    border-radius: 3px;
    box-shadow: 0px 4px 32px 1px rgba(0, 0, 0, 0.06);
    transition: .2s;
}

.menu-sub a {
    line-height: 2;
}

.menu-more:hover .menu-sub {
	height: auto;
	padding: 10px 20px;
	transition: .2s;
}








.swiper-viewport {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 15px 0px 0;
}

.swiper-pagination {
    bottom: 50px;
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #616161;
    border-radius: 5px;
    box-shadow: none;
    margin: 0 15px;
}

.swiper-pagination-bullet-active {
    background: #18C5C9;
    width: 9px;
}





#common-home .banner img {
    width: 100%;
}

.front_module {
    margin-top: 100px;
}

.front_module .heading {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.front_module .heading a {
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 10px;
}

.front_module .heading a:after {
    content: '';
    display: block;
    background-image: url(/image/arr.svg);
    width: 28px;
    height: 8px;
}

.front_module img,
picture img {
    width: 100%;
}

.popular_grid .wrapper,
.home_grid .wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.popular_grid .item {
    position: relative;
}

.popular_grid .wrapper .first-line {
    grid-column: 1/7;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}



/*.popular_grid .item:first-child {
    grid-column: 1/3;
}

.popular_grid .item:nth-child(2) {
    grid-column: 3/5;
}

.popular_grid .item:nth-child(3) {
    grid-column: 5/7;
}*/

.popular_grid .item span,
.home_grid .item span,
.sport_grid .item span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-top: 16px;
    display: block;
}

.popular_grid .first-line .item span {
    position: absolute;
    font-size: 26px;
    font-weight: 600;
    margin-top: 0;
    top: 30px;
    left: 30px;
}

.banner2 {
    margin-top: 100px;
}

.home_grid .item:first-child {
    grid-column: 1/7;
}

.best_grid .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sport_grid .wrapper {
    display: grid;
    grid-template-columns: minmax(352px, 1fr) 3fr minmax(352px, 1fr);
    gap: 30px;
}

.sport_grid.brend .wrapper {
        grid-template-columns: repeat(5, 1fr);
}

.sport_grid .grid9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}















footer {
    background: #F9FBFF;
    padding-top: 70px;
    padding-bottom: 80px;
    margin-top: 130px;
}

footer .wrapper {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
}

footer .heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 14px;
}

footer ul a {
    font-size: 14px;
    font-weight: 500;
}

footer .info {
    display: flex;
    flex-direction: column;
    align-items: end;
}

footer .info .heading {
    display: none;
}

footer .info .logo {
    margin-bottom: 16px;
}

footer .info a:nth-child(3) {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
}

footer .info a:nth-child(4) {
    color: #2FA0A6;
    font-size: 13px;
    font-weight: 500;
}

footer .info .address, footer .info .partner {
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    max-width: 176px;
    text-align: right;
    margin-top: 16px;
}

footer + .bottom {
    background: linear-gradient(0deg, #F0F3FA 0%, #F0F3FA 100%), linear-gradient(0deg, #DEE7EC 0%, #DEE7EC 100%), #D0D9DE;
    padding: 16px 0;
}

.bottom .wrapper {
    display: flex;
    justify-content: space-between;
}

.bottom, .bottom a {
    font-size: 12px;
    font-weight: 400;
}

footer .info .partner img {
    max-width: 80px;
}






.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 35px 0;
    overflow: auto;
}

.breadcrumb a {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: #2B2A29;
}
.breadcrumb li {
    display: flex;
}
.breadcrumb li:not(:last-child):after {
    content: '—';
    margin: 0 8px;
}

.breadcrumb li:last-child a {
    color: #617E8C;
}












.all-category .cat_box{
    border: 1px solid #e8e8e8;
    width: 10.91%;
    height: 120px;
    display: table;
    float: left;
    margin-left: 2px;
    margin-top: 2px;
    cursor: pointer;
    color: #444;
    width: 170px;
    min-width: 90px;
}

.all-category .cat_box span{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
}

.cat_box p a{
  color: #6f6b6b;
}

.cat_box p a:hover{
  color: rgb(233,97,30);
}

.cat_box p span.ico {
    padding-bottom: 4px;
}

.cat_box p span.name {
   
}

.cat_box p span.ico img {
    width: 32px;
}
.all-category .cat_box p {
    display: table-cell;
    vertical-align: middle;
    line-height: 16px;
    font-size: 12px;
    margin: auto;
    height: 88px;
}  

.page-all-category{
  padding: 0 0 50px 0 ! important;
}

.all-category{
  
}

.all-category .cat-box{
   width: 10.91%;
}

.level-1{
  font-size: 18px;
}

.have-child{
    margin-bottom: 8px;
}

.cate_linkbox{
    
}

.every-child{
  border-right: 1px solid #f7f7f7;
  width: 20%;
  float: left;
  list-style: none;
  padding: 0;
}
.child{
  padding: 0;
  list-style: none;
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
}

.child .level-2 {
    color: #2B2A29;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.grand-child{
      list-style: none;
    padding: 0;
}

.grand-child a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}
.child a:hover {
    color: var(--accent);
}

.cat-breadcumb ul{
  list-style: none;
  padding: 12px 0 0 12px;
}

.cat-breadcumb ul li{
  display: inline-block;
  margin-right: 5px;
}

.cat-breadcumb ul li a{

}

.page-title{
    padding: 0 0 0 10px;
    text-transform: uppercase;
}

.page-title h1{

}


@media (max-width: 768px){ 

  .every-child {      
    width: 100%;
  }

}







.two_row_left {
    display: grid;
    grid-template-columns: minmax(294px, 1fr) 5fr;
    gap: 69px;
}

.two_row_right {
    display: grid;
    grid-template-columns: 5fr minmax(294px, 1fr);
    gap: 40px;
}

.category_heading h1 {
    margin: 0;
}
.category_heading {
    display: flex;
    align-items: baseline;
    gap: 40px;
    margin-bottom: 40px;
}

.category_heading .links {
    display: flex;
    gap: 28px;
}

.category_heading .links a {
    color: #2B2A29;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: .2s;
}
.category_heading .links a:hover {
    border-color: #F04438;
}

.child_lists {
    margin-bottom: 60px;
}

.child_lists ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 4px;
    row-gap: 8px;
    flex-wrap: wrap;
}

.child_lists a {
    font-size: 13px;
    font-weight: 600;
    display: block;
    border-radius: 3px;
    background: #DEE7EC;
    padding: 12px 16px;
}

.filters_row {
    display: flex;
    align-items: center;
    color: #2B2A29;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-end;
    gap: 40px;
    border-bottom: 1px solid #F0F3FA;
    padding-bottom: 24px;
    margin-bottom: 20px;
}

.gridlist > div {
    display: flex;
    gap: 6px;
}

.gridlist button {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: .2s;
}
.gridlist button:hover, .gridlist button.active {
    background: #F0F3FA;
}

.gridlist button svg {
    stroke: #151515;
    transition: .2s;
}

.gridlist button:hover svg, .gridlist button.active svg {
    stroke: #46C5CB;
}

.filters_row select {
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    color: #2B2A29;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 0;
}

.filters_row .sorting div {
    display: flex;
    align-items: center;
}




.product-lists {
    display: grid;
}

.product-lists.grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 60px;
}

.product-lists.grid5 {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 15px;
}

.product-lists.list {
    grid-template-columns: 1fr;
}

.product-layout .image {
    position: relative;
}

.product-layout .image a {
    display: block;
}

.product-layout .image .__main_image {
    width: 100%;
}

.additional_img {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.additional_img .addimage {
    width: 25%;
}

.additional_dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

/*.additional_img .addimage:after,*/
.additional_dots .dot {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #C2C2C9;
    /*position: absolute;*/
    border-radius: 50%;
    /*bottom: -8px;*/
    transition: .2s;
}

.product-thumb > .image > a {
    background: #F5F4F1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.additional_img .addimage:hover:after {
    width: 8px;
    background: #18C5C9;
}

.alert {
    position: fixed;
    display: flex;
    top: 10vh;
    right: 2vw;
    background: #fff;
    color: #84848E;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 3px;
    box-shadow: 0px 4px 32px 1px rgba(0, 0, 0, 0.06);
    align-items: center;
    z-index: 9;
}

.alert .close {
    border: 0;
    background: transparent;
}

.product-lists .name a,
.compare_grid .name a {
    font-size: 13px;
    font-weight: 500;
    line-height: 125%;
    display: block;
}

.product-lists .price,
.compare_grid .price {
    color: #2B2A29;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin: 30px 0 10px 0;
}

.compare_grid .price {
    display: flex;
    flex-direction: column-reverse;
    min-height: 52px;
    justify-content: flex-end;
}

.product-lists .price .price-old,
.compare_grid .price strike {
    text-decoration: line-through;
    color: #84848E;
    font-size: 14px;
    font-weight: 500;
}

.product-lists .art,
.compare_grid .art {
    font-size: 12px;
    font-weight: 500;
    margin: 14px 0 6px;
}

.rating_block {
    display: flex;
    align-items: center;
    color: #C2C2C9;
    min-height: 17px;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    gap: 10px;
    margin-bottom: 20px;
}

.product-lists .button-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-lists .button-group button {
    border: 0;
    cursor: pointer;
    z-index: 0;
    transition: .2s;
}

button.addcart {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    background: var(--accent);
    padding: 13px 34px;
    margin-right: auto;
    border: 0;
    cursor: pointer;
    transition: .2s;
}

button.addcart:hover {
    background: var(--accent-hover);
}

button.addcart.invisible {
    opacity: 0;
    z-index: -1;
    transition: .2s;
}

.product-lists .button-group > button:not(.addcart) {
    width: 45px;
    height: 45px;
    background: transparent;
}
.product-lists .button-group > button:not(.addcart) svg {
    transition: .2s;
    stroke: #C2C2C9;
}
.product-lists .button-group > button:not(.addcart):hover svg {
    stroke: red;
}

.count_input {
    display: flex;
    max-width: 150px;
    position: absolute;
    z-index: 0;
}

.count_input input {
    width: 100%;
    min-width: 50px;
    padding: 0;
    border: 0;
    color: #2B2A29;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.count_input button {
    border: 0;
    border-radius: 3px;
    background: #F0F3FA;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    cursor: pointer;
}

.offer_block .count_input {
    position: relative;
}


.product_page {
    display: flex;
    gap: 40px;
}

.prod_images {
    display: grid;
    grid-template-columns: minmax(78px, 1fr) 6fr;
    gap: 20px;
}

.prod_images .thumbnails {
    width: 500px;
    max-width: 500px;
    height: 500px;
    padding: 30px;
}

.prod_images img {
    width: 100%;
}

.prod_images .additional {
    width: 78px;
    height: auto;
    max-height: 500px;
    
}

.prod_images .additional a {
    display: block;
    border: 1px solid transparent;
    border-radius: 6px;
    overflow:hidden;
    transition: .2s;
    width: fit-content;
}

.prod_images .additional a:hover {
    border-color: #46C5CB;
}

.prod_info {
    width: 100%;
}

.product_page .top_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_page .top_line > div {
    display: flex;
    align-items: center;
}

.product_page .top_line > div:first-child {
    color: #C2C2C9;
    font-size: 14px;
    font-weight: 600;
    gap: 30px;
}

.product_page .top_line svg {
    stroke: #C2C2C9;
}

.product_page .top_line button {
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    cursor: pointer;
    transition: .2s;
}

.product_page .top_line button:hover svg {
    stroke: #46c5cb;
}

.ya-share2__container_mobile.ya-share2__container_size_m .ya-share2__icon {
    height: 27px;
    width: 27px;
}

.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
    background: transparent !important;
    padding: 0 !important;
}

.product_page .top_line .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_page .top_line .btn-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.offer_block {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.offer_block .price {
    color: #2B2A29;
    font-size: 20px;
    font-weight: 600;
}

.offer_block .oldprice {
    color: #84848E;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.offer_order {
    display: flex;
    align-items: center;
}

.qty_order {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.qty {
    color: #2B2A29;
    font-size: 13px;
    font-weight: 500;
    margin-top: 20px;
}

table.attrs {
    width: 100%;
    max-width: 413px;
    margin-top: 45px;
}

table.attrs tr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #2B2A29;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
table.attrs td {
    padding: 0;
    line-height: 1;
}
table.attrs thead td {
    color: #2B2A29;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}
table.attrs .name {
    background: none;
    display: flex;
    white-space: nowrap;
    width: 100%;
}
table.attrs .name:after {
    content: '';
    width: 100%;
    display: block;
    min-height: 1px;
    border-bottom: 1px dotted #cacaca;
    margin: 0 10px;
}
table.attrs .value {
    text-align: end;
    font-size: 12px;
	width: 55px;
}




.info_block {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: absolute;
    top: 0;
    right: 0;
}

.info_block > div {
    border: 1px solid #DEE7EC;
    border-radius: 6px;
    padding: 22px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #2B2A29;
    font-size: 13px;
    font-weight: 600;
}

.info_block > div > img {
    position: absolute;
    top: -15px;
    background: #fff;
    padding: 0 10px;
    left: 10px;
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cards div {
    border-radius: 3px;
    background: #F9F9F9;
    width: 83px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_block > div span {
    color: #617E8C;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}
.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    list-style: none;
    padding: 0 0 8px 0;
    margin: 50px 0 40px 0;
    border-bottom: 2px solid #F0F3FA;
    gap: 18px
}

.nav-tabs a {
    color: #2B2A29;
    font-size: 25px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: .2s;
    padding: 0 10px 8px;
}

.nav-tabs a:hover,
.nav-tabs li.active a {
    border-color: #46C5CB;
}

.nav-tabs a sup {
    font-size: .6em;
}

.nav-tabs li.active a sup {
    color: #46C5CB;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

#tab-description * {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

#tab-description h2 {
    font-size: 16px;
    font-weight: 600;
}

#form-review {
    display: grid;
    grid-template-columns: 4fr minmax(290px, 1fr);
    gap: 11.4vw;
}

#review .item {
    display: grid;
    grid-template-columns: minmax(54px, 1fr) 15fr minmax(90px, 1fr);
    padding-bottom: 40px;
    border-bottom: 1px solid #F0F3FA;
    gap: 20px;
}

#review .item:not(:first-child) {
    margin-top: 40px;
}

#abr {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F0F3FA;
    font-size: 22px;
    font-weight: 700;
    color: #D0D9DE;
}

#rev_name {
    color: #2B2A29;
    font-size: 15px;
    font-weight: 600;
}

#review .date {
    color: #84848E;
    font-size: 12px;
    font-weight: 500;
}

#review .text {
    color: #2B2A29;
    font-size: 13px;
    font-weight: 400;
    line-height: 155%;
    margin-top: 15px;
}

.review_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}



.review_form .stars {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.review_form .stars input[type=radio] {
  border: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  opacity: 0;
}

.review_form .stars label {
  position: relative;
  float: right;
  color: #C8C8C8;
}

.review_form .stars label:before {
    margin: 5px;
    content: "";
    background-image: url(/catalog/view/theme/aac/image/stars/plain.svg);
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 20px;
    height: 20px;
    background-size: contain;
}

.review_form .stars input:checked ~ label:before {
  background-image: url(/catalog/view/theme/aac/image/stars/click.svg);
}

.review_form .stars label:hover ~ label:before {
  background-image: url(/catalog/view/theme/aac/image/stars/hover.svg);
}

.review_form .stars label:hover:before {
  background-image: url(/catalog/view/theme/aac/image/stars/hover.svg);
}

.btn-primary {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border: 0;
    border-radius: 3px;
    background: var(--accent);
    cursor: pointer;
    transition: .2s;
    text-align: center;
    display: block;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #FFF;
}

.review_form .btn-primary {
    width: 100%;
}

.review_form .alert {
    position: relative;
    top: unset;
    right: unset;
}

.text_login {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    margin: 0;
}

.related_products {
    margin-top: 100px;
}

.related_products h3 {
    color: #2B2A29;
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 40px 0;
}










.search_field {
    display: flex;
    margin-bottom: 40px;
}

.pagination {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    display: flex;
    border-top: 1px solid #F0F3FA;
    margin-top: 40px;
}

.pagination li {
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    color: #46C5CB;
    background: #fff;
    transition: .2s;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.pagination li.active,
.pagination li:hover,
.pagination li:hover a {
    background: #46C5CB;
    color: #fff;
}





.option_block {
    margin-bottom: 46px;
}

.option_block .control-label {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
    display: block;
}

.option_block label.control-label {
    color: #2B2A29;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.option_block .control-label + div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option_block .radio,
.row-customer_register .radio {
    position: relative;
}

.option_block input[type="radio"] {
    position: absolute;
    opacity: 0;
    top:0;
    bottom:0;
    left:0;
    right:0;
    cursor:pointer;
}

.option_block input[type="radio"]:hover + label {
    
    border-color: #46C5CB;
}

.option_block input[type="radio"]:disabled:hover + label {
    background: transparent;
    border-color: #46C5CB;
}

.option_block input[type="radio"]:disabled {
    cursor: no-drop;
}

.option_block input[type="radio"] + label {
    border: 1.4px solid transparent;
    
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}
.option_block .woimg input[type="radio"] + label {
    font-size: 14px;
    padding: 3px 10px;
}
.option_block input[type="radio"]:checked + label {
    border-color: #46C5CB;
}

.login_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.login_wrapper .well,
fieldset {
    border: 1px solid #DEE7EC;
    border-radius: 6px;
    padding: 22px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #2B2A29;
    font-size: 13px;
    font-weight: 600;
}

.login_wrapper .well h2,
fieldset legend {
    position: absolute;
    top: -15px;
    margin: 0;
    background: #fff;
    padding: 0 10px;
    left: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account_menu a {
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    padding: 5px 0;
}

.blockquote {
    border-radius: 3px;
    background: #DEE7EC;
    padding: 12px 16px;
    margin: 0 0 40px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
}

.text_agree {
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 20px;
}

#account-forgotten .buttons,
#account-edit .buttons,
#account-password .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.compare_grid a {
    color: #46C5CB;
    font-size: 13px;
    font-weight: 600;
}

.compare_grid .description div {
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 4;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    font-size: 14px;
    line-height: 1.6;
}

.compare_grid .attr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

.attr_name {
    color: #84848E;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
}

.attr_value {
    color: #2B2A29;
    font-size: 12px;
    font-weight: 500;
}

.compare_grid .btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}


.product_pile {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product_pile .item {
    border-radius: 6px;
    border: 1.4px solid #F0F3FA;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_pile .img a {
    display: flex;
    border-radius: 6px;
    background: #F5F4F1;
    padding: 10px;
}

.product_pile .name {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

.product_pile .art {
    color: #84848E;
    font-size: 11px;
    font-weight: 500;
}

.product_pile .price {
    color: #2B2A29;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.product_pile .price s {
    text-decoration: line-through;
    color: #84848E;
    font-size: 14px;
    font-weight: 500;
}

.product_pile .btns {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.category_heading h1 span {
    color: #46C5CB;
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
}

.cartpage .image a {
    display: flex;
    border-radius: 6px;
    background: #F5F4F1;
    padding: 10px;
}

.cartpage .info a {
    color: #2B2A29;
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    display: block;
}

.cartpage .count_input {
    position: relative;
}

.cartpage .flex {
    gap: 10px;
}

.cartpage .art {
    color: #84848E;
    font-size: 11px;
    font-weight: 500;
}

.cartpage .price {
    color: #2B2A29;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 40px;
    white-space: nowrap;
}

.cartpage button {
    border: 0;
    width: 46px;
    height: 46px;
    cursor: pointer;
}

.cartpage .refresh {
    background: #f0f3fa;
}

.cartpage .refresh svg {
    fill: #57cad0;
    width: 65%;
}

.cartpage .delete {
    background: #ffe6e6;
}

.cartpage .delete svg {
    width: 65%;
}

.cartpage .image a {
    margin-right: 20px;
}

.total_block {
    border-radius: 6px;
    background: #F8FAFF;
    padding: 45px;
    font-size: 16px;
    font-weight: 400;
    height: fit-content;
}

.total_block .yours {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.total_block .yours span {
    color: #46C5CB;
    font-size: 14px;
    font-weight: 600;
}

.total_block .yours span:first-child {
    color: #2B2A29;
    font-size: 20px;
    font-weight: 600;
}

#checkout-cart .two_row_right {
    grid-template-columns: 5fr minmax(420px, 1fr);
}

.total_block .totals_ {
    display: flex;
    justify-content: space-between;
    color: #2B2A29;
    font-size: 16px;
    font-weight: 400;
}

.total_block .totals_ .value {
    color: #2B2A29;
    font-size: 16px;
    font-weight: 600;
}

.total_block .totals_:last-child {
    margin-top: 20px;
}

.total_block .totals_:last-child,
.total_block .totals_:last-child .value {
    font-size: 22px;
    font-weight: 600;
}

.total_block .btns {
    margin-top: 25px;
}

.btns_text {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    line-height: 125%;
    gap: 12px;
    margin-top: 13px;
}

.btns_text svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

#checkout-cart  table tr {
    display: flex;
    align-items: center;
    border: 1px solid #F0F3FA;
    border-radius: 6px;
    padding: 20px 37px;
    margin-bottom: 10px;
}

.left_btn {
    display: none;
    position: absolute;
    top: 50vh;
    right: -40px;
    background: #fff;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: .2s;
}

.left_btn.active {
    top: 0;
    right: -33px;
}

.panel-collapse.collapse {
    display: none;
}
.panel-collapse.collapse.in {
    display: block;
}
.simplecheckout-cart .quantity, .simplecheckout-cart .model, .simplecheckout-cart .total, .simplecheckout-cart td.total {
    display: none !important;
}

.simplecheckout-right-column {
    border-radius: 6px;
    background: #F8FAFF;
    padding: 45px;
}

.simplecheckout-cart-total,
.simplecheckout-cart,
.simplecheckout-cart td,
.simplecheckout-cart th {
    border: 0;
}
.simplecheckout-cart * {
    background: transparent !important;
}

.simplecheckout-cart thead {
    display: none;
}
.simplecheckout-cart td.name {
    text-align: left;
    vertical-align: inherit;
}
.simplecheckout-cart td.name a {
    color: #2B2A29;
    font-size: 13px;
    font-weight: 500;
    line-height: 125%;
}
.simplecheckout-cart td.price {
    color: #2B2A29;
    text-align: right;
    font-size: 16px !important;
    font-weight: 600 !important;
    vertical-align: middle;
}
#total_sub_total, #total_total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
}

#total_sub_total .simplecheckout-cart-total-remove, #total_total .simplecheckout-cart-total-remove,
.simplecheckout-cart-total:after {
    display: none;
}
.simple-content .checkout-heading {
    background-color: transparent;
}

.simplecheckout fieldset {
    border: 0;
    padding: 0;
}
.simplecheckout-cart-total-value {
    font-size: 16px;
    font-weight: 600;
}
.dream-filter .panel {
    border: 0;
}

.dream-filter .panel-heading {
    background: #fff;
}

.dream-filter .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0;
}

.dream-filter .panel-title {
    font-size: 14px;
    font-weight: 600;
}

.dream-filter .panel-title svg {
    width: 10px;
    height: 25px;
}
.dream-filter.filter-vertical .rdf-group .radio, .dream-filter.filter-vertical .rdf-group .checkbox, .dream-filter.filter-vertical .rdf-group .image-filter {
    font-size: 13px;
    font-weight: 500;
}
.dream-filter.filter-vertical .rdf-group .radio>label, .dream-filter.filter-vertical .rdf-group .checkbox>label, .dream-filter.filter-vertical .rdf-group .image-filter>label {
    display: flex;
    gap: 5px;
}

.dream-filter>.rdf-form .rdf-footer button.btn-default {
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    border: 1px solid #90A4AF;
    cursor: pointer;
}

.dream-filter .rdf-picked .btn {
    border: 0;
    background: transparent;
    font-weight: 500;
}

.city_btn {
    cursor: pointer;
    max-width: fit-content;
}

.city_list {
    display: none;
    position: absolute;
    z-index: 9;
    background: #fff;
    padding: 10px;
    top: 40px;
    box-shadow: 0 4px 32px rgb(0 0 0 / 20%);
}

.city_list .heading {
    font-size: 130%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--span-color);
}

.city_list .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city_list.open {
    display: block;
}

header #top .city_list .list a {
    color: #000;
}

.dream-filter .input-group .form-control {
    border-radius: 3px;
    border: 1.4px solid #C2C2C9;
    background: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    max-width: 106px;
}

.dream-filter .input-group .form-control::placeholder {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.dream-filter .range-group span.input-group-addon {
    display: none;
}

.input-group.range-group {
    display: flex;
    gap: 10px;
}

.dream-filter .irs-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #46C5CB;
    border: 0;
}

.dream-filter .irs-line,
.dream-filter .irs-shadow {
    height: 2px;
    top: 28px;
}

.dream-filter .irs-bar, .dream-filter .irs-bar-edge {
    height: 2px;
    top: 28px;
    background: #46C5CB;
}

.dream-filter .irs-handle i {
    width: 4px;
    height: 4px;
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.dream-filter .irs-handle.state_hover, .dream-filter .irs-handle:hover {
    background: #50CFD5;
}

.dream-filter.filter-vertical .rdf-group .checkbox {
    display: flex;
}

.dream-filter.filter-vertical .rdf-group .rdf-label {
    position: relative;
    top: unset;
    right: unset;
    margin-top: unset;
    line-height: 2.5;
}

.dream-filter.filter-vertical .rdf-group .checkbox label {
    padding-left: 26px;
}

.dream-filter.filter-vertical .rdf-group .checkbox label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.dream-filter .rdf-group .checkbox>label>span.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #90A4AF;
}

.dream-filter .rdf-group .checkbox>label>span.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.dream-filter.filter-vertical .rdf-group .checkbox label:hover input ~ .checkmark {
  background-color: #ccc;
}

.dream-filter.filter-vertical .rdf-group .checkbox label input:checked ~ .checkmark {
  background-color: #46C5CB;
  border-color: #46C5CB;
}

.dream-filter.filter-vertical .rdf-group .checkbox label input:checked ~ .checkmark:after {
  display: block;
}
.dream-filter.filter-vertical .rdf-group .checkbox label .checkmark:after {
  left: 4px;
    top: 1px;
    width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.dream-filter .rdf-group .rdf-label {
    background: transparent;
    color: #90A4AF;
}

.yamap {
    margin: 20px 0;
}

.yamap iframe {
    width: 100%;
}

.prod_images .swiper-button-next, .prod_images .swiper-button-prev {
    color: #46c5cb;
    transition: .2s;
}

.prod_images .swiper-button-prev:after,
.prod_images .swiper-button-next:after {
    transition: .2s;
}

.prod_images .swiper-button-prev {
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.prod_images .swiper-button-prev:after {
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.prod_images .swiper-button-next {
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.prod_images .swiper-button-next:after {
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.prod_images .swiper-button-next:hover, .prod_images .swiper-button-prev:hover {
    background: #46c5cb;
    color: #fff;
}

.contact_block .item:hover {
    color: #fff;
    background: var(--black);
}
/*.contact_block .item:first-child .name {
    font-size: 110%;
}*/

.contact_block .item a {
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    display: block;
}

.contact_block .item .name {
    margin-bottom: 5px;
}

@media(max-width: 767px){
.menu-wrapper {
    overflow: scroll;
}
.block-phone {
    /*line-height: 0.7;*/
	margin-bottom: 8px;
	display: inline-block;
}
.wrapper .right img {
    vertical-align: super !important;
}
.contact_block .item {
    width: 100%;
    border: 1px solid #DEE7EC;
    border-radius: 6px;
    padding: 22px 25px;
	margin: 18px auto;
}
.catalogs a {
    display: block;
    text-align: center;
    background: #46c5cb;
    padding: 10px;
    margin: 15px;
    font-weight: 500;
	color: white;
}
.portfolio img {
    width: 100%;
}
}
@media(min-width: 768px){
footer .container .row {
    width: 100%;
    display: inline-block;
}
footer .container .row .col-sm-3 {
    width: 25%;
    float: left;
    margin: 0 auto;
}
.block-phone{
	display: inline-block;line-height: 1;
	}
.block-phone a {
    font-weight: 500 !important;
    font-size: 12px !important;
}
.block-flex-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 30px;
}
.block-wrap-cont-left {
    width: 100%;
    max-width: calc(40% - 20px);
    border-radius: 6px;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    transition: .3s;
}
.block-wrap-cont-right {
    width: 100%;
    max-width: calc(60% - 20px);
    border-radius: 6px;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    transition: .3s;
}
.col-sm-3.col-xl-9.col-md-8.col-xs-10 {
    width: 40%;
    display: inline-block;
    float: left;
    padding: 0 20px;
}
.contact_block {
    width: 60%;
    display: inline-block;
	margin-bottom: 30px;
}
.contact_block .wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact_block .item {
    width: 100%;
    max-width: calc(50% - 20px);
    border: 1px solid #DEE7EC;
    border-radius: 6px;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    transition: .3s;
}
.block-flex-cont {
    background: rgb(0 0 0 / 1%);
    border-radius: 10px;
}
.catalogs a {
        display: inline-block;
        width: 32%;
        text-align: center;
        font-weight: 500;
        background: #46c5cb;
        padding: 15px;
        color: white;
        border-radius: 3px;
        margin: 5px;
    }
.portfolio img {
    margin: 0 5px;
}
}
.catalogs a:hover {
    opacity: 0.8;
}
.wrapper .right img {
    width: 25px;
	vertical-align: top;
}
.portfolio {
    text-align: center;
}
.catalogs {
    max-width: 1250px;
    text-align: center;
    margin: auto;
}
@media(max-width: 1615px){
.mails {
    /*display: none;*/
}
}
.yamap.block-wrap-cont-right.map {
    padding: 0;
}
.logo-rpz {
    display: inline-grid;
    padding-left: 5px;
    vertical-align: top;
}
.logo-rpz img {
    width: 46px;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
    display: none;
}
@media (min-width: 768px) {
    footer .container .row .col-sm-4 {
        width: 33.3%;
        float: left;
        margin: 0 auto;
    }
}
.col-sm-4.block1 ul li:nth-child(2) {
    display: none;
}