/* Прижимаем футер к низу */
body {
 display: flex;
 flex-direction: column;
 overflow-x: hidden;
}
.wrapper {
 flex: 1 0 auto;
}

#header {

}
#nav {
 height: 50px;
 background: #a1a1a1;
}
#home {
 height: 100%;
}
#footer {
 margin-top: 132px;
 height: auto;
 flex: 0 0 auto;
 background-color: #F1F1F1;
 padding: 60px 0 35px;
}

/*--- elements start ---*/
.btn {
 font-family: 'Gilroy-Semibold', sans-serif;
 display: inline-block;
 padding: 6px 12px;
 font-weight: normal;
 line-height: 1.5;
 text-align: center;
 white-space: nowrap;
 vertical-align: middle;
 cursor: pointer;
 border: 1px solid transparent;
}
.white_button a {
 border: 2px solid #E25A5A;
 padding: 13px 45px;
 box-sizing: border-box;
 font-size: 14px;
 color: #E25A5A;
}
.white_button a:hover {
 background: #E25A5A;
 color: #FFFFFF;
 font-weight: normal;
}
.red_button a {
 background: #ED4242;
 color: #FFFFFF;
 text-transform: uppercase;
 padding: 29px 76px;
 font-size: 16px;
}
.red_button a:hover {
 background: #FF3838;
 color: #FFFFFF;
}
.red_button button {
 width: 100%;
 background: #ED4242;
 color: #FFFFFF;
 text-transform: uppercase;
 padding: 15px 70px;
 font-size: 14px;
}
.red_button button:hover {
 background: #FF3838;
}
.heading {
 font-family: 'Gilroy-Semibold', sans-serif;
 font-style: normal;
 font-weight: 600;
 font-size: 35px;
 line-height: 130%;
 color: #161616;
 margin: 20px 0;
}
/*--- elements end ---*/

/*--- header-area start ---*/
.nav_floating {
 transition: all 0.6s;
 transform: translateY(-85px);
 position: fixed;
 margin: 0 auto;
 width: 100%;
 z-index: 500;
 background: #ffffff;
}
.nav_floating.active {
 transform: translateY(0);
 transition: all 0.6s;
}
.header_top_nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 20px;
 padding-bottom: 20px;
}
.logo_nav {
 width: 153px;
 height: 40px;
}
.main_nav {
 display: flex;
 align-items: center;
 font-size: 12px;
 margin: 0;
}
.main_nav li {
 margin: 0 15px;
}
.main_nav li a:hover {
 text-decoration: underline;
}
.contact_phone_nav {
 font-weight: 600;
 font-size: 25px;
}


.header_bottom {
 margin-top: 38px;
 display: flex;
 justify-content: space-between;
}
.header_bottom_left, .header_bottom_right {
 display: flex;
 align-items: center;
}
.slogan {
 margin-left: 26px;
 width: 283px;
 font-size: 14px;
 line-height: 150%;
}
.factory {
 display: flex;
 margin-left: 24px;
 align-items: center;
}
.factory span img {
 width: 50px;
 height: 50px;
}
.fact_slogan {
 width: 163px;
 margin-left: 15px;
 line-height: 150%;
 font-size: 14px;
}
.header_bottom .contact_phone_nav {
 margin-right: 36px;
}

/*--- header-area end ---*/

/*--- home-banner start ---*/
#home_banner {
 margin-top: 96px;
 margin-bottom: 130px;
}
.home_banner_text {
 margin-top: 88px;
 width: 45%;
}
.hb_title {
 font-family: 'Gilroy-Semibold', sans-serif;
 font-size: 30px;
 line-height: 150%;
 text-transform: uppercase;
 color: #161616;
}
.hb_text_bloc {
 color: #161616;
 font-size: 20px;
 line-height: 130%;
 margin-top: 33px;
 width: 80%;
}
.home_banner_img {
 position: relative;
 width: 55%;
}
.hb_text_bloc + .red_button {
 margin-top: 33px;
}
.hb_img_right img, .hb_img_left img {
 border-top-left-radius: 100px;
 border-bottom-right-radius: 100px;
}
.hb_img_right img {
 box-shadow: 9px 8px 30px rgba(0,0,0,0.25), 3px 3px 14px rgba(0,0,0,0.22);
}
.hb_img_left img {
 box-shadow: -10px 20px 30px rgba(0,0,0,0.25), 10px 8px 15px rgba(0,0,0,0.22);
}
.hb_img_left, .hb_img_right {
 position: absolute;
 top: 50%;
 left: 25%;
 transform: translate(-10%, -30%);
}
@keyframes shadow_img_left {
 from {transform: translate(-10%, -30%);}
 to {transform: translate(-36%, -19%);}
}
@keyframes shadow_img_right {
 from {transform: translate(-10%, -30%);}
 to {transform: translate(16%, -44%);}
}

.hb_img_left {
 animation: shadow_img_left  0s infinite ease-out;
 animation-delay: 0s;
 animation-iteration-count: 1;
 animation-fill-mode: forwards;
}
.hb_img_right {
 animation: shadow_img_right  0s infinite ease-out;
 animation-delay: 0s;
 animation-iteration-count: 1;
 animation-fill-mode: forwards;
}

.hd_discount_box {
 position: absolute;
 bottom: -146px;
 left: -95px;
 width: 218px;
 height: 213px;
 text-align: center;
 opacity: 0;
}
.hd_dis {
 margin-top: 65px;
 margin-left: 12px;
 font-size: 50px;
 color: #FFFFFF;
 font-family: 'Gilroy-Semibold', sans-serif;
 transform: rotate(14deg);
}
.hd_dis_text {
 font-size: 12px;
 color: #FFFFFF;
 width: 112px;
 margin: -4px 0 0 46px;
 transform: rotate(14deg);
}

@keyframes shadow_hd_discount {
 from {opacity: 0;}
 to {opacity: 1;}
}
.hd_discount_box {
 animation: shadow_hd_discount  1s infinite ease-out;
 animation-delay: 0s;
 animation-iteration-count: 1;
 animation-fill-mode: forwards;
}
/*--- home-banner end ---*/

/*--- nashi-preimushchestva start ---*/
#nashi-preimushchestva {
 margin-top: 250px;
 margin-bottom: 30px;
}
.wrapper_preimush {
 margin-top: 42px;
}
.wrapper_preimush .em {
 margin-bottom: 30px;
}
.preimush_item {
 padding: 40px 25px 25px 40px;
 display: flex;
 height: 138px;
 position: relative;
 background: #FFFFFF;
 box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.pr_text_wrapp {
 width: 250px;
}
.prt_heading {
 font-size: 20px;
 line-height: 130%;
}
.prt_text {
 font-size: 14px;
 line-height: 130%;
 margin-top: 13px;
}
.pr_img {
 position: absolute;
 right: 24px;
 bottom: 17px;
}
.pr_img.box_1._anim-items,
.pr_img.box_4._anim-items {
 opacity: 0;
 transition: all 0.8s ease 0s;
}
.pr_img.box_1._active,
.pr_img.box_4._active {
 opacity: 1;
 transition: all 0.8s ease 0s;
}
.pr_img.box_2._anim-items,
.pr_img.box_5._anim-items {
 transition: all 0.8s ease 0s;
 opacity: 0;
}
.pr_img.box_2._active,
.pr_img.box_5._active {
 opacity: 1;
 transition: all 0.8s ease 0.3s;
}
.pr_img.box_3._anim-items,
.pr_img.box_6._anim-items {
 transition: all 0.8s ease 0s;
 opacity: 0;
}
.pr_img.box_3._active,
.pr_img.box_6._active {
 opacity: 1;
 transition: all 0.8s ease 0.6s;
}
/*--- nashi-preimushchestva end ---*/

/*--- modal_wrapper start ---*/
.modalPopPap.fancybox-content {
 background: #FFFFFF;
 border-radius: 6px;
 box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
 padding: 80px;
}
.modalPopPap.orderingPop.fancybox-content {
 padding: 0;
}

.modalPopPap {
 /*position: fixed;*/
 /*top: 0;*/
 /*right: 0;*/
 /*bottom: 0;*/
 /*left: 0;*/
 /*background: rgba(0,0,0,0.8);*/
 /*z-index: 99999;*/
 /*-webkit-transition: opacity 400ms ease-in;*/
 /*-moz-transition: opacity 400ms ease-in;*/
 /*transition: opacity 400ms ease-in;*/
 /*display: none;*/
 /*pointer-events: none;*/
}
.modalPopPap:target {
 /*display: block;*/
 /*pointer-events: auto;*/
}
.mobalCenter {
 /*position: absolute;*/
 /*top: 50%;*/
 /*left: 50%;*/
 /*transform: translate(-50%, -50%);*/
}
.modal_wrapper {
 /*position: absolute;*/
 /*width: 320px;*/
 /*padding: 80px;*/
 /*background: #FFFFFF;*/
 /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);*/
 /*border-radius: 6px;*/
 /*top: 50%;*/
 /*left: 50%;*/
 /*transform: translate(-50%,-50%);*/
}
.fancybox-slide--html .modalPopPap .fancybox-close-small {
 color: currentColor;
 padding: 3px;
 right: 3px;
 top: 3px;
}
.modal_heading {
 font-family: 'Gilroy-Semibold', sans-serif;
 font-size: 20px;
 line-height: 130%;
 text-align: center;
}
.modal_text p {
 padding: 0 15px;
 font-size: 14px;
 line-height: 150%;
 text-align: center;
 margin-top: 15px;
}
.modal_form_wrapper {
 margin-top: 20px;
}
.modal_input {
 margin-bottom: 22px;
 position: relative;
}
.modal_input i {
 position: absolute;
 top: 3px;
 left: 0;
}
.modal_input input {
 border: none;
 outline: none;
 margin-left: 24px;
 width: 100%;
}
.modal_input::after {
 content: '';
 display: block;
 width: 100%;
 height: 1px;
 margin-top: 12px;
 background: #E5E5E5;
}
.modal_form_wrapper .red_button {
 margin-top: 30px;
 margin-bottom: 17px;
}
.recover {
 font-size: 10px;
 display: flex;
 line-height: 130%;
 align-items: center;
}
.recover i {
 margin-left: 15px;
}
.recover p {
 color: #232730;
 opacity: 0.5;
 margin-left: 10px;
}
.md_close {
 /*display: inline-block;*/
 /*position: absolute;*/
 /*top: 16px;*/
 /*right: 16px;*/
}
/*--- modal_wrapper end ---*/

/*--- nashi-diskont-katalog start ---*/
.grid__item {
 position: relative;
 background-color: #000000;
}
.grid_img {
 background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
 background-size: cover;
 background-position: center center;
 transition: 0.8s;
}
#nashi-diskont-katalog {
 margin-top: 96px;
}
.wrapper_diskont_katalog {
 margin-top: 38px;
 position: relative;
}
.grid__body {
 display: grid;
 grid-gap: 20px;
 margin-bottom: 20px;
}
.grid__row1 {
 grid-template-columns: 2fr 1.5fr;
}
.grid__row2 {
 grid-template-columns: 1.5fr 2fr;
}
.box__item1, .box__item6 {
 grid-row-start: 1;
 grid-row-end: 3;
}
.box__item1 .grid_img, .box__item6 .grid_img {
 width: 680px;
 height: 740px;
}
.box__item2 .grid_img, .box__item5 .grid_img {
 width: 500px;
 height: 440px;
}
.box__item3 .grid_img, .box__item4 .grid_img{
 width: 500px;
 height: 280px;
}
.box__item5{
 grid-column-start: 1;
 grid-column-end: 2;
}
.box__item6 {
 grid-column-start: 2;
 grid-column-end: 3;
}

.grid_heading {
 position: absolute;
 top: 40px;
}
.grid_heading.grid_heading--center {
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.grid_heading.grid_heading--center .box_head_prise {
 width: 100%;
}
.grid__item .grid_heading.grid_heading--center {
 justify-content: center;
}
.grid__item .grid_heading.grid_heading--center h3 {
 display: block;
 font-size: 35px;
 text-align: center;
 color: white;
 background: none;
}
.grid__item .grid_heading.grid_heading--center .grid_hidden_wrapp {
 display: block;
 text-align: center;
}
.grid__item .grid_heading.grid_heading--center .price_box {
 margin-top: 12px;
}
.grid__item:hover .grid_heading.grid_heading--center .grid_hidden_cont {
 display: none;
}

.box_head_prise {
 width: 60%;
}
.grid_hidden_cont {
 display: none;
 min-width: 30%;
 color: #ffffff;
 margin-right: 30px;
}
.grid_heading h3 {
 padding: 10px 30px;
 font-family: 'Gilroy-Semibold', sans-serif;
 background: #ffffff;
 font-size: 25px;
 line-height: 130%;
 display: inline-block;
}

.grid__item .grid_heading {
 width: 100%;
 display: flex;
 justify-content: space-between;
}
.grid__item:hover .grid_img {
 opacity: 0.3;
 transition: 0.5s;
}
.grid__item:hover .grid_heading h3 {
 background: none;
 color: #ffffff;
}
.grid__item:hover .grid_hidden_cont {
 display: block;
 margin-top: 10px;
 margin-left: 20px;
}
.grid_hidden_wrapp {
 display: none;
 color: #ffffff;
 margin-left: 30px;
}
.grid__item:hover .grid_hidden_wrapp {
 display: block;
}
.grid_arrow {
 display: none;
 position: absolute;
 color: #ffffff;
 font-size: 18px;
 bottom: 30px;
 left: 30px;
}
.grid_arrow i {
 margin-left: 10px;
}
.discount {
 display: none;
 font-size: 18px;
 padding: 0 30px;
 color: #ffffff;
}
.grid__item:hover .grid_arrow {
 display: block;
}
.grid__item:hover .discount {
 display: block;
}
.price_box {
 margin-top: 36px;
 white-space: nowrap;
}
.new_price {
 font-size: 35px;
 font-family: 'Gilroy-Semibold', sans-serif;
 white-space: nowrap;
}
.old_price {
 margin-left: 15px;
 font-size: 18px;
 text-decoration-line: line-through;
 white-space: nowrap;
}
.sku_box {
 font-size: 14px;
}
.model, .col_texture {
 margin-bottom: 8px;
}
.texture_items {
 display: flex;
 flex-wrap: wrap;
}
.texture_item {
 position: relative;
 margin-bottom: 12px;
}
.texture_bac {
 cursor: pointer;
 display: block;
 width: 30px;
 height: 30px;
 margin-right: 12px;
 border-radius: 50%;
 border: solid 2px #ffffff;
}
.texture_img {
 display: none;
 position: absolute;
 width: 80px;
 height: 80px;
 bottom: -90px;
 left: -24px;
 background-size: cover;
}
.texture_bac:hover + .texture_img {
 display: block;
 z-index: 10;
}
.texture_img span {
 position: absolute;
 bottom: 10px;
 left: 5px;
 font-size: 12px;
}

/*- modal_wrapper start -*/
.modal_wrapper.ordering_box {
 display: flex;
 padding: 0;
}
.modal_slider_wrapper {
 width: 360px;
 height: 513px;
}
.snp_logo {
 width: 400px;
 height: 513px;
 background-repeat: no-repeat;
 background-size: cover;
}
.modal_slider_form {
 width: 380px;
 padding: 49px 28px 10px 30px;
}
.modal_slider_form .modal_heading {
 text-align: left;
 font-size: 23px;
}
.modal_price {
 margin-top: 5px;
}
.modal_new_price {
 color: #ED4242;
 font-size: 25px;
 line-height: 130%;
 font-family: 'Gilroy-Semibold', sans-serif;
}
.modal_discount {
 margin-left: 10px;
 font-size: 14px;
}
.modal_sku_box {
 margin-top: 15px;
}
.modal_sku_box p {
 font-size: 12px;
 margin-bottom: 10px;
}
.form_radio_wrapper {
 height: 70px;
 overflow: auto;
}
.form_radio_btn {
 display: inline-block;
 margin-right: 7px;
 margin-bottom: 5px;
}
.form_radio_btn input[type=radio] {
 display: none;
}
.form_radio_btn label {
 position: relative;
 display: block;
 width: 30px;
 height: 30px;
 cursor: pointer;
 border: 2px solid #E5E5E5;
 border-radius: 50%;
 user-select: none;
}
.form_radio_btn input[type=radio]:checked + label {
 border: 2px solid #ED4242;
}
.form_radio_btn input[type=radio]:checked + label::before {
 content: '';
 position: absolute;
 display: block;
 background-image: url(../images/radio_chech.svg);
 width: 15px;
 height: 13px;
 top: 7px;
 left: 7px;
}
.form_radio_btn label:hover {
 border: 2px solid #ec7979;
}
.modal_wrapper_input {
 margin-top: 20px;
}
.modal_slider_form .recover {
 margin-top: 20px;
}
/*- modal_wrapper end -*/

/*-- parallax start --*/
.p_ellipse1 {
 position: absolute;
 top: 530px;
 right: -200px;
 transition: all 0.5s;
 z-index: 9;
}
/*-- parallax end --*/
/*--- nashi-diskont-katalog end ---*/

/*--- nasha-presentation start ---*/
#nasha-presentation {
 background: #F1F1F1;
 margin-top: 130px;
 height: 350px;
}
#nasha-presentation .em {
 position: relative;
}
.presentation_wrapper {
 height: 350px;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.pres_min_text {
 font-size: 18px;
 line-height: 130%;
 opacity: 0.5;
}
.pres_pdf {
 margin-top: 20px;
 display: flex;
 align-items: center;
}
.pres_pdf a {
 text-decoration: underline;
 color: #ED4242;
 margin-left: 10px;
}
.pres_pdf a:hover {
 text-decoration: none;
}
.presentation_img {
 transition: all 0.8s cubic-bezier(0.29, 0.26, 0.2, 0.82) 0s;
 transform: translate(0%, 100%);
}
.presentation_img._active {
 transform: translate(0%, 0%);
}
.presentation_img img{
 transform: translate(0px, 30px);
}
.p_ellipse2 {
 position: absolute;
 transition: all 0.4s;
 left: -260px;
 top: -120px;
 /*top: 220px;*/
 z-index: 10;
}
.p_ellipse3 {
 position: absolute;
 transition: all 0.6s;
 right: -320px;
 bottom: -180px;
 /*bottom: -540px;*/
 z-index: 10;
}
/*--- nasha-presentation end ---*/

/*--- photo-projects start ---*/
#photo-projects {
 margin-top: 150px;
}
.projects_wrapper {
 display: flex;
 justify-content: space-between;
}
.projects_column {
 width: 344px;
}
.projects_column.first_column {
 width: 470px;
}
.projects_item {
 background-color: #000000;
 margin-bottom: 20px;
 transition: 0.5s;
 position: relative;
}
.projects_item.bg_none {
 background-color: #ffffff;
}
.projects_item p {
 margin-bottom: 26px;
}
.pr_item_image {
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center center;
}
.projects_item:hover .pr_item_image {
 opacity: 0.3;
 transition: 0.5s;
}
.pr_item_text_wrapper {
 display: none;
 bottom: 30px;
 left: 35px;
 position: absolute;
 color: #ffffff;
 transition: 0.5s;
}
.projects_item:hover .pr_item_text_wrapper {
 transition: 0.5s;
 display: block;
}
.pr_item_hd {
 font-size: 25px;
 line-height: 130%;
 width: 200px;
}
.projects_item a {
 font-size: 18px;
 margin-top: 25px;
 color: #ffffff;
 display: inline-block;
}
.projects_item a i {
 margin-left: 9px;
}
.projects_item a:hover {
 color: #ED4242;
}
.projects_column:nth-child(1) .projects_item:nth-child(2) .pr_item_image {
 height: 569px;
 width: 470px;
}
.projects_column:nth-child(1) .projects_item:nth-child(3) .pr_item_image {
 height: 340px;
 width: 470px;
}
.projects_column:nth-child(2) .projects_item:nth-child(1) .pr_item_image {
 height: 417px;
 width: 345px;
}
.projects_column:nth-child(2) .projects_item:nth-child(2) .pr_item_image {
 height: 325px;
 width: 345px;
}
.projects_column:nth-child(2) .projects_item:nth-child(3) .pr_item_image {
 height: 340px;
 width: 345px;
}
.projects_column:nth-child(3) .projects_item:nth-child(1) .pr_item_image {
 height: 328px;
 width: 345px;
}
.projects_column:nth-child(3) .projects_item:nth-child(2) .pr_item_image {
 height: 539px;
 width: 345px;
}
.projects_column:nth-child(3) .projects_item:nth-child(3) .pr_item_image {
 height: 215px;
 width: 345px;
}
/*--- photo-projects end ---*/

/*---  order-3d-project start ---*/
#order-3d-project {
 margin-top: 140px;
 margin-bottom: 20px;
}
.order_project_wrapper {
 display: flex;
 justify-content: space-between;
}
.op_text_wrapper {
 width: 482px;
}
.op_text_wrapper .heading {
 position: relative;
 margin-top: -10px;
}
.op_text_wrapper .heading::after {
 position: absolute;
 content: '';
 display: block;
 width: 85px;
 height: 2px;
 bottom: -33px;
 left: 0;
 background-color: #E3E3E3;
}
ul.custom_list  {
 font-size: 20px;
 opacity: 0.6;
 margin-top: 65px;
 margin-bottom: 25px;
}
ul.custom_list li {
 display: flex;
 align-items: center;
 margin-bottom: 25px;
}
ul.custom_list li::before {
 content: url(../images/chech_grey.svg);
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
 border-radius: 50%;
 width: 28px;
 height: 28px;
 text-align: center;
 line-height: 26px;
 margin-right: 12px;
 flex: 1 0 auto;
}
ul.custom_list li p {
 width: auto;
 line-height: 130%;
}
.op_text_wrapper .white_button {
 margin-top: 45px;
}
.op_text_wrapper .white_button a {
 text-transform: uppercase;
 padding: 18px 58px;
 letter-spacing: 0.1em;
}
.user_text_cont {
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
 margin-top: 26px;
 height: 45px;
}
.user_img_cont {
 height: 390px;
}
.user_slider_wrapper {
 width: 534px;
}
.ut_name {
 font-size: 16px;
 font-family: 'Gilroy-Semibold', sans-serif;
 margin-bottom: 10px;
}
.ut_specialty {
 font-size: 14px;
}
.user_text_cont a {
 text-decoration: underline!important;
 color: #ED4242;
 font-size: 14px;
}
.user_text_cont a:hover {
 text-decoration: none!important;
}
/*---  order-3d-project end ---*/

/*--- certificates-documents start ---*/
#certificates-documents {
 margin-top: 147px;
 margin-bottom: 20px;
}
.certificates_box_flex {
 display: flex;
}
.certificates_doc_img_left {
 width: 507px;
}
.certificates_text_slider {
 width: 590px;
 margin-left: 93px;
}
.certificates_text_slider .heading {
 position: relative;
 margin: 30px 0 20px 0;
 width: 480px;
}
.certificates_text_slider ul.custom_list {
 width: 450px;
}
.certificates_text_slider .heading::after {
 position: absolute;
 content: '';
 display: block;
 width: 85px;
 height: 2px;
 bottom: -33px;
 left: 0;
 background-color: #E3E3E3;
}
.cert_text {
 margin-top: 33px;
 font-size: 20px;
 line-height: 130%;
 margin-bottom: 15px;
}
.certificates_slider_wrapper {
 margin-left: 35px;
 position: relative;
}
.certificates_slider_wrapper::before {
 content: '';
 display: inline-block;
 width: 90px;
 position: absolute;
 height: 120%;
 right: -26px;
 bottom: -14px;
 background-color: #ffffff;
 z-index: 10;
 filter: blur(11px);
}
.certificates_item {
 margin-right: 8px;
}
.certificates_item:hover {
 background-color: #1e1e1e;
 transition: all 0.3s
}
.certificates_item a {
 position: relative;
 display: block;
}
.certificates_item:hover a::before {
 content: url(../images/magnifier.svg);
 position: absolute;
 width: 32px;
 height: 32px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.certificates_item:hover img {
 opacity: 0.7;
 transition: all 0.3s;
}
/*--- certificates-documents end ---*/

/*--- tabs-map start ---*/
#tabs-map {
 margin-top: 160px;
 margin-bottom: 20px;
}
.tabs_block {
 display: none;
}
.tabs_block.active {
 display: block;
}
.tabs_items {
 width: 33%;
 margin-bottom: -20px;
 position: relative;
 z-index: 10;
}
.tabs_items a {
 color: #B7B7B6;
 margin-right: 40px;
 font-size: 14px;
}
.tabs_items a.active, .tabs_items a:hover {
 color: #000000;
}
.tabs_block_flex {
 display: flex;
}
.tabs_block_text {
 width: 35%;
}
.tabs_block_map {
 width: 65%;
}
.tabs_block_text .heading {
 margin: 54px 0 20px 0;
 position: relative;
 z-index: -1;
}
.phone_wrapper {
 display: flex;
 align-items: center;
}
.phone_ico {
 background: #E25A5A;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
 width: 41px;
 height: 41px;
 line-height: 45px;
 text-align: center;
 border-radius: 50%;
 margin-right: 12px;
}
.phone_email {
 margin-top: 5px;
}
.phone_email a {
 font-size: 14px;
}
a.phone_tel {
 display: block;
 font-size: 20px;
 font-family: 'Gilroy-Semibold', sans-serif;
}
.index_address, .warehouse_location, .working_hours {
 margin-top: 35px;
 font-size: 16px;
 line-height: 150%;
}
.index_address div, .warehouse_location div, .working_hours div {
 font-family: 'Gilroy-Semibold', sans-serif;
}
/*--- tabs-map end ---*/

/*--- footer start ---*/
.messenger a, .whatsapp a, .vk a, .instagram a, .telegram a, .zen a {
 transition: none;
 display: block;
 width: 30px;
 height: 30px;
 background-image: url("../images/spray.png");
 background-repeat: no-repeat;
 cursor: pointer;
}
.whatsapp a {background-position: -35px -3px;}
.messenger a:hover, .whatsapp a:hover, .vk a:hover, .instagram a:hover, .telegram a:hover, .zen a:hover {transition: none;}
.whatsapp a:hover {background-position: -35px -35px;}
.messenger a {background-position: -3px -3px;}
.messenger a:hover {background-position: -3px -35px;}
.vk a {background-position: -67px -3px;}
.vk a:hover {background-position: -67px -35px;}
.instagram a {background-position: -99px -3px;}
.instagram a:hover {background-position: -99px -35px;}
.telegram a {background-position: -164px -2px;}
.telegram a:hover {background-position: -164px -34px;}
.zen a {background-position: -195px -2px;}
.zen a:hover {background-position: -195px -34px;}

.footer_flex_top {
 display: flex;
}
.logo_wrapper {
 display: flex;
 width: 45%;
 align-items: center;
}
.logo_wrapper p {
 width: 300px;
 margin-left: 45px;
 font-size: 14px;
 line-height: 150%;
 opacity: 0.7;
}
.messenger_wrapper {
 display: flex;
 width: 45%;
 margin-left: 130px;
 justify-content: flex-end;
}
.footer_whats_mess {
 display: flex;
 align-items: center;
}
.messenger {
 margin-left: 10px;
}
.messenger_wrapper .white_button a {
 text-transform: uppercase;
 font-size: 12px;
}
.em.footer_flex_bottom {
 display: flex;
 margin-top: 60px;
 align-items: center;
 justify-content: space-between;
}
.watermark_wrapper {
 display: flex;
 font-size: 14px;
 line-height: 150%;
 opacity: 0.7;
}
.watermark {
 width: 200px;
}
.social_wrapper {
 display: flex;
 align-items: center;
}
.social_wrapper div {
 margin-left: 10px;
}
/*--- footer end ---*/
.form_error.active{
 margin-top: 10px;
 font-size: 12px;
 color: red;
}
.response.success{
 margin-top: 10px;
 color: green;
 text-align: center;
}