*{padding: 0;margin: 0;border: 0;}
html,body{height: 100%;}
ul li{list-style: none;}
ul, ol {margin-bottom: 0px;}
p {margin: 0 0 0px;}
a, a:visited {text-decoration: none;outline: none;}
a:hover {color: inherit;text-decoration: none;}
.main, .header {flex: 1 0 auto;}
.footer {flex: 0 0 auto;}
svg {
	margin-right: 10px;
}
button {
	outline: none !important;
}
ul li {
	list-style: none !important;
}

.sb {
	justify-content: space-between;
}
.al {
	align-items: center;
}
.flex {
	display: flex;
}
.flex-col {
	display: flex;
	flex-direction: column;
}
.mb0 {
	margin-bottom: 0 !important;
}
.underline {
	text-decoration: underline;
}
.wrapper {
    min-height: 100%;
    overflow: hidden;
  
    display: flex;
    flex-direction: column;
}
[class*=__container] {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 75px;
}
[class*=__section] {
  padding-top: 100px;
}
body {
    font-family: ff-good-web-pro, sans-serif;
}
/* transperant bg for autocomplete input values */
input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
/* webkit scrollbar */
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-thumb {
  background-color: #00357E;
}
html::-webkit-scrollbar-track {
  background-color: #D0D0D0;
}
.tabs__head::-webkit-scrollbar {
  height: 4px;
  border-radius: 50%;
}
.tabs__head::-webkit-scrollbar-thumb {
  background-color: #29B6F2;
  border-radius: 20px;
}
.tabs__head::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  padding: 15px 0 10px;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.header__container {
    display: flex;
}
/* --------- */
.menu__link {
	font-weight: 400;
	font-size: 26px;
	line-height: 40px;
	color: #000;
	margin: 0 12px;
	text-transform: uppercase;
	display: flex;
}
.menu__link:hover {
    color: #00357E;
    transition: 0.3s;
}
.nav-btn {
	padding: 8px 34px !important;
}
.nav-up {
	position: relative;
	padding-bottom: 10px;
}
.nav-up:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #DADADA;
}
.nav-ad {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: #151515;
}
.nav-text {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #151515;
}
.nav-text:hover {
	color: #151515;
}
.nav-body {
	    width: 100%;
    margin-left: 35px;
}
.nav-down {
	margin-top: 6px;
}
.header__contacts {
	grid-column-gap: 23px;
}
/* ----------- */
.menu-hover {
	position: relative;
	cursor: pointer;
}
.menu-sub-hover {
	position: absolute;
	top: 30px;
	left: 0;
	width: 300px;
	background: #fff;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	padding: 15px;
	grid-row-gap: 3px;
}
.sub-hover-link {
	color: #151515;
}
.sub-hover-link:hover {
	color: #151515;
}
.menu-hover .menu-sub-hover {
	display: none;
	transition: 0.5s;
}
.menu-hover.active .menu-sub-hover {
	display: flex;
}
.menu-hover svg {
	transition: 0.3s;
}
.menu-hover.active svg {
	transform: rotate(-180deg);
}
/* ----------- */
.menu-body {
	display: flex;
	grid-column-gap: 30px;
}
.ser-link {
	font-weight: 500;
	font-style: normal;
	font-size: 15px;
	line-height: 22px;
	text-transform: uppercase;
	color: #151515;
    transition: 0.3s ease 0s;
    
        display: flex;
    align-items: center;
}
.ser-link svg {
	margin: 0 0 0 5px;
}
.ser-link:hover {
	color: #00357E;
}
.ser-link {
	position: relative;
}
.ser-link:after {
	content: '';
	position: absolute;
	transform: scaleX(0);
	width: 100%;
	height: 1.5px;
	bottom: -3px;
	left: 0;
	background-color: #00357E;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
.ser-link:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
/* header fixed */
.header.fixed {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  background-color: #fff;
  /* padding: 17px 0; */
  transition: 0.8s;
}
.logo-img {
    max-width: 70px;
    transition: 0.8s;
}
.header.fixed .logo-img {
  max-width: 60px;
}
.menu__icon {
	display: none;
}
.header__menu {
	display: none;
}

/* ------------------------------- */
	.menu__sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fefefe;
  padding: 10px;
  min-width: 255px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
  transform: translate(0, 10%);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease 0s;
}
.menu__sub-list li:hover {
    background-color: #00357E;
    border-radius: 2px;
}
.menu__sub-list li:hover .menu__sub-link {
    color: #FFF;
}
.menu__sub-link {
  color: #000;
  padding: 5px;
  display: flex;
}
.menu__arrow {
  display: none;
}
body._lock {
  overflow: hidden;
}
body._pc .menu__list > li:hover .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  pointer-events: all;
}
body._touch .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
  transform: rotate(-180deg);
}
body._touch .menu__link {
  flex: 1 1 auto;
}
body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #000;
  margin-left: 5px;
  padding: 5px 0;
  cursor: pointer;
}
body._touch .menu__list > li {
  display: flex;
  align-items: center;
}
/* --------------------------------- */




/* main page */
.main-page {
  position: relative;
}
.intro_slider-block {
  position: relative;
}
.intro_slider-block:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 2;
	background: rgba(26, 26, 26, 0.5);
}
.intro_slider-img {
	width: 100%;
	height: 800px;
	margin: 0;
	z-index: 1;
	object-fit: cover;
}
.intro_slider-text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	z-index: 3;
}
.main-title {
	font-weight: 700;
	font-size: 64px;
	line-height: 70px;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 453px;
}
.main-subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #F0F0F0;
	margin: 14px 0 32px;
	max-width: 479px;
}
.main-btn {
	background: #FFFFFF;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #00357E;
	padding: 12px 62px;
	transition: 0.3s;
}
.main-btn:hover {
	background: #00357E;
	color: #fff;
}
.main__text {
	align-items: flex-start;
}

/* footer */
.footer {
	background: #151515;
	padding: 48px 0 36px;
	margin-top: 100px;
}
.copyright {
	display: flex;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
}
.copyright img {
	    margin-left: 3px;
    margin-top: 1px;
}
.copyright a svg {
	display: flex;
}
.f-link {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: 0.3s;
}
.f-link:hover {
	color: #00357E;
}
.f-nav {
	grid-column-gap: 40px;
	grid-row-gap: 20px;
}
.f-con {
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
}
.f-con:hover {
	color: #FFFFFF;
}
.f-up {
	grid-column-gap: 40px;
	grid-row-gap: 20px;
}
.f-block {
	border-right: 1px solid #5B5B5B;
	padding-right: 40px;
}
.f-block:last-child {
	border-right: none;
	padding-right: 0px;
}
/*  */
.section-title {
	font-weight: 500;
	font-size: 42px;
	line-height: 50px;
	text-transform: uppercase;
	color: #151515;
	display: flex;
	flex-direction: column;
	margin-bottom: 33px;
}
.section-subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #666666;
	display: flex;
}
.section-subtitle.center {
	justify-content: center;
	align-items: center;
}
.section-title.center { 
	justify-content: center;
	align-items: center;
}
.section-title:after {
	content: "";
	width: 40px;
	height: 4px;
	background: #00357E;
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}
.text {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #666666;
}
.text.white {
	color: #fff;
}
.text.small {
	font-size: 15px;
}
.title {
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	color: #151515;
}
.uppercase {
	text-transform: uppercase;
}
.w600 {
	font-weight: 600;
}
.s16 {
	font-size: 16px;
}
.s18 {
	font-size: 18px;
}
.s20 {
	font-size: 20px;
}
.mt10 {
	margin-top: 10px;
}
.btn {
	display: inline-block;
	padding: 15px 32px;
	background: #00357E;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	transition: 0.3s;
	border: 1px solid #00357E;
}
.btn:hover {
	background: #fff;
	color: #00357E;
	border: 1px solid #00357E;
}
/* adv */
.adv-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 32px;
	grid-row-gap: 32px;
}
.adv-element {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	padding: 25px;
	align-items: center;
	text-align: center;
}
.adv-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: -0.015em;
	color: #151515;
	margin: 16px 0 12px;
	text-transform: uppercase;
}
.adv-element svg {
	margin: 0;
}
/* feedback */
.section-title.white {
	color: #fff;
}
.section-title.white:after {
	background-color: #fff;
}
.section-subtitle.white {
	color: #E0E0E0;
}
.feed-descr {
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	color: #F8F8F8;
	text-align: center;
	max-width: 673px;
}
.feed-body {
	position: relative;
}
.feed-body:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 2;
	background: rgba(41, 41, 41, 0.7);
}
.feed-vid {
	width: 100%;
	height: 544px;
	margin: 0;
	z-index: 1;
	object-fit: cover;
}
.feed-text {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%,-50%);
	z-index: 2;
}
.line {
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.2);
	margin: 25px 0;
}
/* contacts */
.con-map {
	display: flex;
	justify-content: space-between;
}
.map {
	height: 100%;
	min-height: 100%;
	width: 100%;
	margin-right: 20px;
}
.map:last-child {
	margin-right: 0px;
}
.map > div {
	height: 400px;
}
.con {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 19px;
	grid-row-gap: 19px;
}
.con-right {
	display: flex;
	min-width: 343px;
	margin-bottom: 20px;
	justify-content: space-between;
}
.con-body {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	padding: 42px 35px;
	margin-right: 20px;
	width: 100%;
	/* grid-column-gap: 10px; */
}
.con-body:last-child {
	margin-right: 0px;
}
.con-element {
	position: relative;
	padding-bottom: 19px;
}
.con-element:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #CCCCCC;
}
.con-element:last-child:before,
.con-element:nth-child(3):before {
	display: none;
}
.mapps {
	margin-top: 10px;
}
.mapps img {
	margin-right: 10px;
}
.mapps .con-text {
	margin-top: 0px;
}
.cer-dotts {
	margin-top: 45px;
}
.con-text {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #151515;
	margin-top: 10px;
}
.con-text:hover {
	color: #151515;
}
/* katalog */
/* .products__container {
	justify-content: space-between;
} */
.pr-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 32px;
	grid-row-gap: 32px;
}
.prod-block {
	background: #FFFFFF;
	border: 1px solid #D3D3D3;
	padding: 25px 25px 35px;
	position: relative;
}
.prod-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: #151515;
	margin: 8px 0 10px;
}
.prod-text {
	margin-top: 42px;
}
.p-a {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	justify-content: flex-end;
}
.p-a img {
	max-width: 100%;
    max-height: 230px;
    object-fit: cover;
    margin: 0 auto;
}
.price {
	font-weight: 400;
	font-size: 13px;
	line-height: 13px;
	color: #696969;
}
.cat-title {
	font-weight: 600;
	font-size: 25px;
	line-height: 52px;
	text-transform: uppercase;
	color: #151515;
}
.cat-descr-body {
	margin-bottom: 40px;
}
.kat-tab {
	display: none;
}
.prod-element {
	position: relative;
	padding: 5px 0;
}
.prod-element:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #D3D3D3;
	position: absolute;
	bottom: 0;
	left: 0;
}
.prod-element:last-child:after {
	display: none;
}
.prod-el-title {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #AEAEAE;
}
.prod-descr {
	font-weight: 450;
	font-size: 14px;
	line-height: 20px;
	color: #151515;
}
.prod-btn {
	position: absolute;
	top: 17px;
	right: 9px;
	background: #00357E;
	padding: 17px;
	border-radius: 60px;
	display: flex;
	transition: 0.3s;
}
.prod-btn svg {
	margin: 0;
}
.prod-btn:hover {
	transform: scale(1.05);
}
.prod-btn svg path {
	fill: #fff;
}
.kat-btn {
	border-radius: 0;
	width: 100%;
	margin-top: 17px;
}
/*  внутренняя товарыыыы */
.call-btn.blue {
    background: #3963B0;
    color: #fff;
    border: 1px solid #3963B0;
}
.call-btn.blue:hover {
    background: #fff;
    color: #3963B0;
    transition: 0.3s;
    border: 1px solid #3963B0;
}

/* katalog menu */
.cat-ul {
	border: 1px solid #DCDCDC;
}
.cat-title {
	align-items: center;
	padding: 20px;
}
.cat-test {
	justify-content: flex-start;
}
.c-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	text-transform: uppercase;
	color: #151515;
}
.cat-main {
	padding: 20px 23px;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #D3D3D3;
}
.menu-title.active {
	background: #00357E;
}
.cat-main {
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;
	color: #151515;
}
.menu-title.active .cat-main {
	color: #FFFFFF;
}
.child-name {
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 0.02em;
	color: #666666;
	padding: 6px 20px 6px 30px;
	display: inline-block;
}
.childmenu li {
	position: relative;
}
.child-name.active {
	color: #00357E;
}
.child-name.active .childmenu {
	display: flex;
}
.products-side {
	max-width: 75%;
	margin-left: 33px;
}
.products-menu {
	max-width: 25%;
}
.childmenu {
	background: #fff;
}
.menu-title {
	position: relative;
	width: 100%;
}
.menu-title .childmenu {
	display: none;
}
.menu-title.active .childmenu {
	display: flex;
	flex-direction: column;
}
.childmenu li:first-child {
	margin-top: 10px;
}
.childmenu li:last-child {
	margin-bottom: 10px;
}
/* about */
.about-body {
	background: #F4F6F8;
	padding: 55px 98px;
	position: relative;
	    justify-content: flex-end;
}
.ab-text {
	max-width: 50%;
}
.ab-img img {
	position: absolute;
	bottom: -26px;
	left: 26px;
	max-width: 500px;
}

/* tabs */
.tab-content div {
  display: none;
}
.tab-content .active {
  display: block;
}
.tabs .active {
  background-color: #ffffff;
  color: #4d5bf9;
}
.tabs {
	margin-top: 25px;
	grid-column-gap: 11px;
}
.products-slider {
	display: flex;
	position: relative;
}
.tabs__name {
	border: 1px solid #DEDEDE;
}
.tabs__head {
	grid-column-gap: 16px;
	/* overflow-x: scroll; */
	padding-bottom: 10px;
	justify-content: center;
}
.products-slider.slick-slider {
    display: none;
}
.products-slider.slick-track {
    width: 100%;
}
.products-slider.slick-slider.active {
    display: block;
}
.products-slider.hide {
    display: none;
}
.prod-block.sl {
	margin-right: 7px;
}
.prod-block a {
	outline: none;
}
.tabs__body {
	margin-top: 60px;
}
.products-slider .slide-arrow {
	top: 50%;
	transform: translateY(-50%);
}
.products-slider .prev-arrow {
	left: -2.5%;
}
.products-slider .next-arrow {
	right: -2.5%;
}
.prod-type .price {
	position: relative;
	padding-right: 10px;
	padding-left: 5px;
}
.prod-type .price:before {
	content: "/";
	position: absolute;
	top: 0;
	right: 0;
}
.prod-type .price:last-child:before {
	content: "";
}

/* how we work */
.work-body {
	margin-top: 50px;
}
.work-element {
	position: relative;
}
.work-element img {
	filter: brightness(0) invert(1);
	height: 204px;
    object-fit: cover;
}
.work-element.trans img {
	filter: brightness(1) invert(0);
}
.work__text {
	align-items: flex-start;
}
.work-count {
	font-weight: 350;
	font-size: 17px;
	line-height: 24px;
	color: #FFFFFF;
	background: #00357E;
	border-radius: 600px;
	padding: 11px 13px;
}
.work-title {
	font-weight: 500;
	font-size: 25px;
	line-height: 38px;
	text-transform: uppercase;
	color: #151515;
	margin: 23px 0 20px;
}
.work-element.trans .work-title {
	color: #fff;
}
.work-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #6D6D6D;
	max-width: 240px;
}
.work-element.trans .work-text {
	color: #fff;
}
.work__text {
	position: absolute;
	top: 50%;
	left: 11px;
	transform: translateY(-50%);
}
.work-svg {
	position: absolute;
	top: 50%;
	right: -24px;
	transform: translateY(-50%);
}
.work-svg svg {
	margin: 0;
}
.work-element:last-child .work-svg {
	display: none;
}
.work-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-row-gap: 19px;
	grid-column-gap: 19px;
}
/* certificates main */
.cer-text, .cer-right {
	max-width: 50%;
}
/* cer */
.ramka {
	position: relative;
	outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ramka-img {
	position: absolute;
	z-index: -1;
	height: 100%;
    width: 100%;
}
.cer {
	/* position: absolute;
	top: 26px;
	left: 20px; */
	    padding: 23px;
}
.cer-element {
	margin: 0 16px;
}
.ser2-slider .nextSlide {
  transition: all 0.3s;
  max-width: 100%;
}
.ser2-slider .slick-current {
  transform: scale(0.85);
  transition: transform 0.5s;
  transform-origin: bottom;
}
.ser2-dots, .obj-dots, .cer-dots, .kat-dots {
	margin: 0 43px;
}
.count1, .count, .counter, .counter2, .counter3, .counter4, .coun, .coun2 {
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	color: #151515;
}
.obj-dots-wrapper {
	margin-top: 52px;
	justify-content: center;
}
/* partners */
.par-slider .slick-slider {
	display: flex !important;
}
.par-element {
	background: #FFFFFF;
	border: 1px solid #EBEBEB;
	padding: 20px 34px;
	margin-right: 15px;
	justify-content: center;
	height: 100px !important;
	display: flex !important;
}
.par-element:last-child {
	margin-right: 0px;
}

/* objects */
.obj-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 49px;
	grid-column-gap: 32px;
}
.obj-slider .obj-element {
	margin: 0 16px;
}
.obj-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #151515;
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 33px;
	padding-bottom: 15px;
}
.obj-title.white {
	color: #fff;
}
.obj-title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 25px;
	height: 3px;
	background: #00357E;
}
.obj-img {
	position: relative;
}
.obj-btn {
	position: absolute;
	bottom: 17px;
	right: 30px;
	background: #FFFFFF;
	border-radius: 600px;
	padding: 20px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.obj-btn:hover {
	transform: scale(1.03);
}
.obj-btn svg {
	margin: 0;
}
.obj-slider {
	margin-top: 49px;
	position: relative;
}
.prev-arrow svg, .next-arrow svg {
	margin: 0;
}
.prev-arrow, .next-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	
	background: rgba(215, 215, 215, 0.7);
	border-radius: 60px;
	padding: 16px 15px;
	display: flex;
	align-items: center;
}
.prev-arrow {
	left: -43px;
}
.next-arrow {
	right: -43px;
}
.obj-dots .slick-dots button {
    width: 80px;
}
.slick-dots button {
    font-size: 0;
    width: 50px;
    height: 2px;
    background-color: #D2D2D2;
    outline: none;
}
.slick-dots .slick-active button {
    /* width: 50px; */
    background-color: #00357E;
    outline: none;
}
.slick-dots li {
    margin: 0;
    display: flex;
}
.slick-dots {
	display: flex;
}
/* pagination */
.pagination {
	background: #FFFFFF;
	border: 0.684783px solid #D1D1D1;
	border-radius: 2.73913px;
	    margin: 79px auto 0;
	    padding: 13px 34px;
	    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    display: flex;
    
}
.pagination > li > a, .pagination > li > span {
    padding: 0;
    font-family: ff-good-web-pro, sans-serif;
    font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #151515;
	border: none;
}
.pagination svg {
	margin: 0;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #151515;
    background-color: #fff;
    border: none;
    cursor: default;
}
.pagination > li {
    margin-right: 34px;
}
.pagination > li:last-child {
    margin-right: 0px;
}
/*  */
.kat-body {
	margin-top: 49px;
}
.kat-element {
	position: relative;
	margin: 0 16px;
}
.kat-element:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.984065) 38.69%, rgba(0, 0, 0, 0) 107.11%);
	opacity: 0.5;
	transform: rotate(-180deg);
}
.kat-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #FFFFFF;
}
.kat-text {
	position: absolute;
	bottom: 32px;
	left: 34px;
	align-items: flex-start;
}
.katt-btn {
	background: #FFFFFF;
	border-radius: 600px;
	padding: 20px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}
.katt-btn svg {
	margin: 0;
}












select {
	outline: none;
}
option {
	outline: none;
}
/*  modal ajax form starts here */
.modal-with-img .modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 150px 60px 70px;
    position: relative;
}
.modal-with-img .modal-bodyy {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 60px;
    /* padding: 10px 60px; */
    position: relative;
}
.input {
	display: flex;
	outline: none;
	margin-bottom: 10px;
}
.input div {
	display: flex;
}
.input:hover, .input:focus{
	border:none;
}
.modal-with-img .modal-dialog.modal-dialog-centered {
    width: 95%;
}
.btn-wrap {
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
}
.btn-wrap .btn {
	border-radius: 0;
}
.modal-with-img .modalimg img{
    object-fit: cover;
}


.modal-content {
    border-radius: 20px;
    overflow: scroll;
    max-height: 90vh;
}
.modal-contentt {
    border-radius: 20px;
    overflow: hidden;
    max-height: 90vh;
}
.modal-dialog.modal-dialog-centered {
    max-width: 1024px;
}

.modal-content > button.close {
    position: absolute;
    top: 5px;
    right: 12px;

    font-size: 45px;
    opacity: 1;
    font-weight: normal;
    z-index: 10;
    
}
#contactForm_forms_flash {
    position: fixed;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60%;
    max-width: 100%;
}
.alert-success {
	background-color: #fff;
    border-color: #fff;
    color: #000;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
}
.alert.alert-success.alert-dismissible {
    /* height: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    background: #fff;
    color: white;
    padding: 60px 30px;
    position: relative;
    border-radius: 10px;
    color: #000; */
}

.alert-dismissable .close, .alert-dismissible .close {
   /*  position: absolute;
   top: 5px;
   right: 10px;
   color: #000;
   opacity: 0.9;
   background: rgba(0,0,0,0);
   font-size: 20px; */
}
.alert.alert-success.alert-dismissible > p {
	    display: flex !important;
}
.modalimg img {
    width: 100%;
    height: 100%;
}
.modal-contentt > button.close {
    position: absolute;
    top: 5px;
    right: 12px;

    font-size: 45px;
    opacity: 1;
    font-weight: normal;
    z-index: 10;
}
.modal-with-img .modalimg {
    width: 41.7%; 
    border: none;
}
.modal-with-img .form-modal {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}
.c-form {
	z-index: 5;
}
.modal-body {
    background-size: cover;
}
.modal-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.modal-img img {
	width: 100%;
}
.modal-bodyy:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(29, 29, 29, 0.6);
}
.close {
    color: #FFFFFF;
}
.close:hover {
    color: #dedede;
}
.c-text {
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	text-transform: uppercase;
	color: #F4F4F4;
	text-align: center;
}
.c-text.start {
	text-align: left;
}
/* contact form styles */
.f-input.modProd {
	background: #FFFFFF;
	margin-right: 10px;
    font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #787878;
	padding: 9px 12px;
	border: 1px solid #D6D6D6;
	display: flex;
    flex-grow: 1;
}
.f-input.modProd::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #787878;
}
.f-input {
    outline: none;
    font-weight: 450;
	font-size: 18px;
	line-height: 24px;
	color: #FFFFFF;
    background: transparent;
    border-bottom: 1px solid #A6A6A6;
    margin-right: 16px;
    padding-bottom: 12px;
	
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    
}
input[type=text] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}
form#modalFormProduct {
	width: 60%;
}
/* .f-input:last-of-type {
    margin-right: 0px;
} */
.f-input::placeholder {
    font-weight: 450;
	font-size: 18px;
	line-height: 24px;
	color: #FFFFFF;
}
.r-btn {
	border-radius: 0;
}
.r-btn:hover {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.feed-wrap {
	align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}
.submit {
	grid-column-gap: 15px;
	margin-top: 40px;
}
.wa {
	background: #4BC75A;
	padding: 15px 34px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	border: 1px solid #4BC75A;
	transition: 0.3s;
}
.wa:hover {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.wa svg {
	margin-left: 9px;
	margin-right: 0;
}
.form-block {
	background: transparent;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
.form-block.modProd {
	background: #fff;
	margin-top: 140px;
}
.form-modal-data {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 8;
}
.form-modal-data.ch {
	align-items: flex-start;
}
.form-modal-data.ch .wa{
	display: none;
}
.prod_input {
	background: transparent;
	margin-right: 10px;
	    flex-grow: 2 !important;
	/* font-weight: 300;
	font-size: 19px;
	line-height: 24px;
	color: #fff; */
	/* width: 100%;
	margin-top: 30px;
	text-align: center;
	outline: none; */
}
.label {
	background: transparent;
	font-weight: 300;
	font-size: 19px;
	line-height: 24px;
	color: #fff;
	margin-top: 30px;
	text-align: center;
}
/* animation */
.more_a {
    animation-name: more-btn;
    animation-duration: 1.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.margin-top {
    padding: 30px 0; 
}
@keyframes more-btn {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: -8px;
    }
}
.par-slider .slick-dots {
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin-top: 40px;
}
.par-slider .slick-dots li {
	list-style: none;
	margin: 0 5px;
}
.par-slider .slick-dots button {
	font-size: 0;
	width: 6px;
	height: 6px;
	background-color: #898989;
	border-radius: 60px;
	outline: none;
}
.par-slider .slick-dots .slick-active button {
	width: 6px;
	border-radius: 60px;
	background-color: #00357E;
	outline: none;
}


.object-slider .slick-dots{display:flex;}
.object-slider .slick-dots li{width:100%;}
.object-slider .slick-dots  button{
	width: 100%;
	height: 5px;
}