* {
  padding: 0;
  margin: 0;
  border: 0;
}
html, body {
  height: 100%;
}

ul,
ol {
  margin-bottom: 0px;
}
p {
  margin: 0 0 0px;
}
a {
	display: inline-block;
}
a, a:visited {
  text-decoration: none !important;
  outline: none !important;
}
a:hover {
	color: inherit;
	text-decoration: none;
}
.wrapper {
    min-height: 100%;
    overflow: hidden;
  
    display: flex;
    flex-direction: column;
}
[class*=__container] {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 57px;
}
[class*=__section] {
  padding-top: 100px;
}
body {
    /* font-family: 'Gotham Pro'; */
   font-family: 'NoirPro';
}
/* white layout */
.header.white {
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
}
.header.white .ser-link {
	color: #151515;
}
.header.white .logo-w {
	display: none;
}
.header.white .logo-b {
	display: flex;
}
.main, .header {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
.pl {
	padding-left: 42px;
}
.ml {
	margin-left: 42px;
}
.mb {
	margin-bottom: 52px;
}
.mt {
	margin-top: 33px;
}
/* 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: #BA884E;
}
html::-webkit-scrollbar-track {
  background-color: #D0D0D0;
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  padding: 34px 0;
  background: transparent;
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-line {
	width: 100%;
	height: 1px;
	background: rgba(192, 192, 192, 1);
}

/* -------------------------------------- */
.menu__link {
	font-weight: 300;
	font-size: 20px;
	line-height: 40px;
	color: #151515;
	display: flex;
	margin: 0 12px;
	text-transform: uppercase;
	transition: all 0.3s;
	position: relative;
}
.menu__link:hover {
    color: #BA884E;
}
.menu-body {
	display: flex;
	align-items: center;
	grid-column-gap: 30px;
}
.menu-body li {
	display: flex;
	align-items: center;
}
.ser-link {
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: 0.3s;
}
.ser-link:hover {
	color: #fff;
}
.ser-link {
	position: relative;
}
.ser-link:after {
	content: '';
	position: absolute;
	transform: scaleX(0);
	width: 100%;
	height: 1px;
	bottom: -2px;
	left: 0;
	background-color: #FFFFFF;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
.ser-link:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.h-con a {
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: #FFFFFF;
}
.menu__list {
  display: flex;
  flex-direction: column;
  grid-row-gap: 35px;
}
.menu-right {
	display: flex;
}
/* header fixed */
.header.fixed {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  z-index: 10;
  background-color: #fff;
  transition: 0.8s;
  padding: 15px 0;
  z-index: 1000;
}
.logo-w img {
    max-width: 121px;
}
.logo-b {
	display: none;
}
.header.fixed .logo-w {
  display: none;
}
.header.fixed .logo-b {
  display: flex;
}
.header.fixed .logo-b img {
  max-width: 90px;
  transition: 0.8s;
}
.header.fixed .header__contacts a {
	color: #000;
}
.header.fixed .ser-link, 
.header.fixed .h-con a {
	color: #151515;
}
.header.fixed .ser-link:hover {
	color: #BA884E;
}
.menu__icon {
	display: none;
}
.header__menu {
	display: none;
}
.header.fixed .line__container {
	display: none;
}
.header.fixed .lang-list li a {
	color: #000;
}
.header.fixed .lang-list li a.active {
	border: 1px solid #000;
}
/* 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: 1;
  background: rgba(27, 27, 27, 0.65);
}
.intro_slider-img {
  width: 100vw;
  height: 100%;
  margin: 0;
  z-index: 1;
  object-fit: cover;
}
.intro_slider-img.short {
	max-height: 513px;
}
.intro_slider-text {
  position: absolute;
  top: 60%;
  left: 0px;
  width: 100%;
  transform: translateY(-60%);
  z-index: 1;
}
.main-title {
	font-weight: 400;
	font-size: 45px;
	line-height: 54px;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 717px;
}
.main-title.about {
	margin-bottom: 13px;
}
.main-subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 25.34px;
	text-transform: uppercase;
	color: #C7C7C7;
	max-width: 581px;
	margin: 31px 0;
}
.main-con {
	display: flex;
	align-items: center;
}
.main-con div {
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.2em;
	color: #A5A5A5;
}
.main-con div:first-child {
	margin-right: 20px;
}
.main-con svg {
	transition: 0.8s ease 0s;
}
.main-con:hover svg {
	margin-left: 15px;
	transition: 0.8s ease 0s;
}
.main-con.still:hover svg {
	margin-left: 0;
	transition: 0.8s ease 0s;
}
.line__container {
	display: flex;
	width: 100%;
}
.line {
	width: 100%;
	height: 1px;
	background-color: #414141;
	margin: 32px 0 26px;
}
.main-right {
	background: #262626;
	position: absolute;
    top: 0;
    z-index: 2;
    right: 0;
    width: 152px;
    height: 100%;
}
.main-line {
	width: 1px;
	height: 269px;
	background: #4B4B4B;
}
.main-links {
	grid-row-gap: 10px;
	margin-top: 21px;
}
.main-links a svg {
	margin: 0;
}
.more {
	font-weight: 400;
	font-size: 14px;
	line-height: 138%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #818181;
	writing-mode: vertical-rl;
	/* text-orientation: mixed; */
	margin-bottom: -27px;
    margin-right: -31px;
}
.more:hover {
	color: #818181;
}
.arrow-text {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-right: 22px;
}
.arrow-text:hover {
	color: #FFFFFF;
}
/* footer */
.footer {
	background: #151515;
	padding: 32px 0 25px;
	margin-top: 100px;
}
.copyright {
	display: flex;
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
	color: #B6B6B6;
	text-transform: uppercase;
}
.copyright img {
	margin-left: 3px;
	margin-top: -3px;
}
.copyright a svg {
	display: flex;
	margin-left: 5px;
	margin-top: -3px;
}
.f-link {
	font-size: 16px;
line-height: 19px;
letter-spacing: 0.01em;
text-transform: uppercase;
color: #FFFFFF;
	transition: 0.3s;
	    display: flex;
    align-items: flex-end;
}
.f-link:hover {
	color: #BEA374;
}
.f-nav {
	grid-column-gap: 52px;
	grid-row-gap: 20px;
}
.f-nav li {
	display: flex;
}
.f-con {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
}
.f-con:hover {
	color: #FFFFFF;
}
.f-up {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	grid-column-gap: 70px;
	grid-row-gap: 20px;
}
/* advantages */
.adv-element {
	margin-right: 100px;
}
.adv-element:last-child {
	margin-right: 0px;
}
.adv-text {
	margin-top: 49px;
	margin-left: 15px;
}
.adv-text ul li {
	margin-bottom: 15px;
	padding-left: 10px;
	position: relative;
}
/* .adv-text ul li::marker {
	content: url("/storage/app/media/Vector.png");
	margin-right: 10px;
} */
.adv-text ul li::before {
	position: absolute;
	left: -20px;
	top: 0;
	content: url("/storage/app/media/Vector.png");
	margin-right: 10px;
}

/* about main*/
.ab__container {
	position: relative;
    z-index: 1;
    padding: 100px 0;
}
.ab-text, .ab-img {
	max-width: 50%;
}
.ab-link a {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: #969696;
	justify-content: flex-end;
}
.ab-link a svg {
	margin: 0 0 0 22px;
	transform: scale(1.5);
	transition: 0.5s;
}
.ab-link a:hover svg {
	margin-left: 28px;
}
.ab-par {
	margin: 49px 0 39px;
	max-width: 572px;
}
.ab-text {
	margin-right: 60px;
}
/*  */
.par-element {
	background: #FFFFFF;
	border: 0.971246px solid #E6E6E6;
	padding: 21px 34px;
	height: 88px !important;
    display: flex !important;
    margin-right: 17px;
}
/* contacts */
.con-body {
	display: flex;
	justify-content: space-between;
	margin-top: 55px;
}
.con-element {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	grid-column-gap: 25px;
	grid-row-gap: 25px;
	width: 100%;
}
.c-title {
	font-size: 14px;
	line-height: 38px;
	color: #ABABAB;
	/* margin-bottom: 6px; */
}
.c-det {
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.cont {
	font-size: 18px;
	line-height: 26px;
	color: #151515;
}
.cont:hover {
	color: #151515;
}
.cont.bold {
	font-weight: 500;
}
.c-block {
	display: flex;
	border: 1px solid #DADADA;
	padding: 30px;
	justify-content: center;
}
.c-svg {
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.c-svg svg {
	margin: 0;
}
.c-svg circle {
	stroke: #BA884E;
}
.c-svg path {
	fill: #BA884E;
}
.c-line {
	width: 100%;
	height: 1px;
	background-color: #E0E0E0;
	margin: 20px 0;
}
.map {
	margin: 30px 0 0;
}
.map > div {
	height: 400px;
}

/* directions */
.dir-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-top: 41px;
}
.stickers__block{
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 32px;
    margin-top: 41px;
}

.like{
	display: flex;
    align-items: center;
    gap: 12px;
}

.dir-title {
	font-weight: 300;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	color: #151515;
	margin: 34px 0 20px;
    position: relative;
    padding-bottom: 17px;
}
.dir-title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: #D1D1D1;
	height: 1px;
	width: 100%;
}
.dir-element {
	border: 1px solid #DADADA;
	padding: 35px 20px;
	justify-content: flex-start;
}
.dir-link svg {
	margin: 0;
	transition: 0.3s;
}
.dir-link svg:hover {
	transform: scale(1.08);
}

/* numbers */
.num__section {
	background: #151515;
	padding-bottom: 130px;
	margin-top: -64px;
}
.num {
	font-weight: 300;
	font-size: 70px;
	line-height: 120%;
	padding-bottom: 11px;
	position: relative;
	margin-bottom: 24px;
	color: #FFFFFF;
}

.num:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #444444;
}
.num-body {
	display: grid;
	grid-template-columns: 1fr 1.3fr 1fr 1fr;
	grid-row-gap: 32px;
	grid-column-gap: 32px;
	margin-top: 55px;
}
.sq-wrap {
	position: relative;
}
.sq-wrap span {
font-size: 28px;
    position: relative;
    top: -19px;
}

.mt1 {
	margin-top: 1px !important;
}
/* magazin */
.mag-body, .about-body {
	margin-top: 49px;
}
.img-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 32px;
	grid-row-gap: 32px;
	margin: 43px 0 51px;
}
/* about */
.about__section, .img__section, .ser__section {
	position: relative;
    z-index: 2;
}
/* podhod */
.podhod__section {
	background: #151515;
	padding: 250px 0;
	margin-top: -199px;
	margin-bottom: -250px;
    position: relative;
    z-index: 1;
}
.title-text {
	text-transform: uppercase;
	background: transparent;
}
.title-text.grey svg path, .title-text.grey svg circle {
	stroke: #969696;
}
.title-text:hover svg {
	margin-left: 32px;
}
.title-text svg {
	margin: 0 0 0 22px;
	transition: 0.5s; 
}
.podhod-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	grid-column-gap: 80px;
	grid-row-gap: 80px;
	margin: 100px 0 0 0;
}
.podhod-body.adv {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.pod-title {
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	color: #FFFFFF;
	position: relative;
	padding-bottom: 31px;
	margin: 42px 0 28px;
	/* max-width: 312px; */
}
.pod-title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #444444;
	z-index: 1;
}
.pod-svg svg {
	margin: 0;
}
.pod-text {
	font-size: 18px;
	line-height: 21px;
	color: #B7B7B7;
}
.dir-svg {
    display: flex;
}
/* services */
.ser__section {
	padding-bottom: 55px;
}
.ser-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 32px;
	grid-column-gap: 32px;
	margin-top: 70px;
}
.count {
	font-weight: 300;
	font-size: 50px;
	line-height: 120%;
	text-transform: uppercase;
	color: #969696;
	margin-bottom: 35px;
}
.ser-element {
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	padding: 34px 23px;
	transition: 0.3s;
	justify-content: space-between;
}
.ser-element.gone:nth-child(5),
.ser-element.gone:nth-child(6)
.ser-element.gone:nth-child(7){
	display: none;
}
.ser-element:hover {
	box-shadow: 11px 14px 31px rgba(0, 0, 0, 0.1);
}
.ser-element:hover .btn {
	background: #BA884E;
	color: #fff !important;
}
.ser-line {
	width: 100%;
	height: 1px;
	background: #D1D1D1;
	margin: 22px 0  27px;
}
.ser-text {
	padding-left: 15px;
}
.descr-text {
	padding-left: 25px;
}
.ser-text ul li, .descr-text ul li {
	margin-bottom: 5px;
	padding-left: 7px;
	position: relative;
}
.ser-text ul li::before, .descr-text ul li::before {
	position: absolute;
	left: -20px;
	top: 0;
	content: url("/storage/app/media/Vector.png");
	margin-right: 10px;
}

.show-text {
	font-size: 18px;
	line-height: 21px;
	color: #BA884E;
	margin: 22px 0 0px;
	background-color: #fff;
	display: flex;
	align-items: center;
	outline: none;
	text-align: left;
}
.show-text svg {
	margin: 0 0 0 5px;
	transition: 0.5s;
}
.show-text.is-open svg {
	transform: rotate(-180deg)
}
.descr-text {
	max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  margin: 10px 0;
}

/* blog */
.blog-body {
	margin-top: 50px;
}
.blog-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 32px;
	grid-row-gap: 50px;
	margin: 0 0 56px 0;
}
.news-title {
	font-size: 20px;
	line-height: 23px;
	color: #151515;
	margin: 39px 0 10px;
}
.news-title:hover {
	color: #151515;
}
.bl-text {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: #969696;
}
.bl-text svg {
	margin: 0 0 0 7px;
	transition: 0.45s;
}
.bl-text:hover {
	color: #969696;
}
.bl-text:hover svg {
	margin: 0 0 0 13px;
}
.blog-img {
	margin-right: 50px;
}
.bl-in-text {
	margin-top: 20px;
}
/* pagination */
.pagination {
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
}
.pagination.none {
	display: none;
}
.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: #ffffff;
    background: #BA884E;
	border-radius: 100px;
	border-color: #BE7B3C;
}
.pagination > li:first-child > a {
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
}
.pagination > li > a {
    position: relative;
    float: left;
    padding: 10px 20px;
    line-height: 1.6;
    text-decoration: none;
    color: #000;
    background-color: #ffffff;
    border: none;
    margin-left: 0px;
}
.pag-first a, .pag-last a {
	padding: 0;
}
.pagination > .pag-first > a {
	padding: 0;
}
.pagination > .pag-last > a {
	padding: 0;
}
.pagination > .pag-first > a:hover {
	background: #fff;
}
.pagination > .pag-last > a:hover {
	background: #fff;
}

/* portfolio */
.port-body {
	margin-top: 48px;
}

/* .port-bl__block{
	max-width: 1366px;
    margin: 0 auto;
    padding: 0 57px;	
} */
/* tabs */
.tab {
  overflow: hidden;
  display: flex;
  grid-column-gap: 40px;
}
/* Style the buttons inside the tab */
.tab button {
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 11px 42px 9px;
  font-size: 18px;
	line-height: 30px;
	text-transform: uppercase;
	color: #767676;
	border: 1px solid #D7D7D7;
	background: #fff;
}
.tab.trans button {
	border: 1px solid #fff;
	color: #fff;
	opacity: 0.5;
	background: transparent;
}
.tab.trans button.active {
  border: 1px solid #fff;
	color: #fff;
	opacity: 1;
	background: transparent;
}
/* Change background color of buttons on hover */
.tab button:hover {
  border: 1px solid #BA884E;
  color: #BA884E;
}
/* Create an active/current tablink class */
.tab button.active {
  border: 1px solid #BA884E;
  color: #BA884E;
}
/* Style the tab content */
.tabcontent {
  display: none;
}

/* .tabcontent__inner{
  display: flex;
  flex-direction: column;
} */

.tabcontent.active {
	display: flex;
	flex-direction: column;
}

.tab-body{
	padding:  66px 0;
}

.tabcontent-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 5px;
	row-gap: 5px;
	
}
.tab-title {
	/* margin-bottom: 12px; */
}
/* .tab-tx {
	margin-top: 36px;
} */
.port-bl__section {
	position: relative;
}

.section_block{
	
}


.port-bl__section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 643px;
	background: #151515;
	z-index: -1;
}
/* inter inner */
.int-body {
	margin-top: 49px;
}
.int-text {
	margin-bottom: 70px;
}
.int-text p {
	margin-bottom: 10px;
}
.int-text ul {
	margin-left: 15px;
}
.int-text ul li {
	list-style: disc;
	margin-bottom: 5px;
}
/*  */
.slick-vertical .slick-slide {
    border: 0 !important;
}
.intro__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nums {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
}
.nums.one {
	margin: 20px 0 10px;
}
.nums.two {
	margin: 10px 0 20px;
}
.prev-arrow, .next-arrow {
	display: flex;
}
.prev-arrow svg, .next-arrow svg {
	margin: 0;
}
/*  */
.int-gal {
	display: grid;
	grid-template-columns: 1fr 1fr;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}
.int-gal-img {
    object-fit: cover;
}
.gal {
	height: 100%;
	outline: none;
}
.etap-title {
	color: #151515;
	font-size: 22px;
	margin-bottom: 18px;
}
.etap-element.dir {
	flex-direction: row-reverse;
}
.etap-body {
	margin-top: 40px;
}
.etap-img, .etap-text {
	max-width: 50%;
}
.etap-img {
	margin-right: 50px;
}
.etap-element {
	margin: 25px 0;
}
.etap-element:last-child {
	margin-top: 50px;
}
.etap-element.dir .etap-img {
	margin-right: 0px;
	margin-left: 50px;
}
.etap-text .text ul li {
	list-style: disc;
}

.disnone {
	display: none;
}
















/*  modal ajax form starts here */
.modal-with-img .modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 66px 70px;
    /* padding: 10px 60px; */
    position: relative;
    height: 550px;
}
.mod-text {
	font-size: 23px;
	line-height: 27px;
	color: #E2E2E2;
	margin-top: 35px;
	font-weight: 300;
}
.input {
	display: flex;
	outline: none;
	grid-row-gap: 13px;
	grid-column-gap: 13px;
	margin-bottom: 49px;
	
}
.modal-body:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(48, 48, 48, 0.6);
}
.input div {
	display: flex;
}
.input:hover, .input:focus{
	border:none;
}
.modal-with-img .modal-dialog.modal-dialog-centered {
    width: 95%;
}


.modal-with-img .modalimg img{
    object-fit: cover;
}


.modal-content {
    border-radius: 0px;
    /* overflow: scroll; */
    max-height: 90vh;
}

.modal-dialog.modal-dialog-centered {
    max-width: 1024px;
}
.close svg {
	margin: 0;
}
.modal-content > button.close {
    position: absolute;
    top: 5px;
    right: 15px;
    opacity: 1;
    font-weight: 300;
    z-index: 10;
    font-size: 50px;
    
}
#contactForm_forms_flash {
    position: fixed;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60%;
    max-width: 100%;
}

.alert.alert-success.alert-dismissible {
    align-items: center;
    text-align: center;
    background: #fff;
    color: white;
    padding: 18px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    border-radius: 10px;
    color: #000;
    z-index: 99;
}

.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-dismissable .close:hover, .alert-dismissible .close:hover {
	color: #000;
}
.modalimg img {
    width: 100%;
    height: 100%;
}

.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;
}
.modal-body {
    background-size: cover;
}
/* .modal-body: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: #FFFFFF;
}
/* contact form styles */
.f-input {
    outline: none;
    padding: 5px;
    border-radius: 0 !important;
    background: transparent;
    border-bottom: 1px solid #FFFFFF;
    color: #fff;
    /* width: 100%; */
    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=text] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.f-input::placeholder {
    font-weight: 300;
	font-size: 17.1694px;
	line-height: 21px;
	color: rgba(255, 255, 255, 0.7);
}
.mod-btn {
	background: #BA884E;
	padding: 15px 20px 9px;
	font-size: 18px;
	line-height: 30px;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: 0.3s;
	border: 1px solid #BA884E;
	outline: none;
}
.alert > p, .alert > ul {
    font-weight: 300;
}
.mod-btn:hover {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.r-btn {
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-transform: uppercase;
	color: #FFFFFF;
	background: #D3A767;
	border-radius: 4.80761px;
	padding: 16px 23px;
	border: 1.5px solid #D3A767;
	transition: 0.3s ease 0s;
}
.r-btn:hover {
	background: #FFFFFF;
	color: #D3A767;
	border: 1.5px solid #D3A767;
}
.form-block {
    display: flex;
    flex-direction: column;
    margin-top: 33px; 
    justify-content: flex-start;
    align-items: flex-start;
}
.form-btn {
	font-weight: 500;
	font-size: 20px;
	line-height: 101.5%;
	color: #FFFFFF;
	background: transparent;
	transition: 1s;
}
.arrow:hover .form-btn {
	margin-left: -50px;
}
.arrow-svg.black svg path {
	fill: #000;
}
/* animation */
.more_a {
    animation-name: more-btn;
    animation-duration: 1.3s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.margin-top {
    padding: 60px 0; 
}
@keyframes more-btn {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: 7px;
    }
}

/* .slick-dots {
	display: flex;
	justify-content: center;
  list-style-type: none;
      margin-top: 15px;
}
.slick-dots li {
  list-style: none;
  margin: 0 7px;
}
.slick-dots button {
  font-size: 0;
  width: 4px;
  height: 4px;
  background-color: #151515;
  border-radius: 60px;
  outline: none;
}
.slick-dots .slick-active button {
  border: 1px solid #000;
  position: relative;
}
.slick-dots .slick-active button:before {
  content: " ";
  border: 1px solid #000;
  border-radius: 60px;
  padding: 7px;
  margin-left: -7px;
} */
.slick-dots button {
    font-size: 0;
    width: 2px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}
.slick-dots .slick-active button {
    /* width: 50px; */
    background-color: #fff;
    outline: none;
}
.slick-dots li {
    margin: 0;
    display: flex;
}
.slick-dots {
	display: flex;
	flex-direction: column;
}
.ab__container.dir {
    flex-direction: row-reverse;
}

.ab__container.dir .ab-text {
    margin-right: 0;
    margin-left: 60px;
}
.faq__section {
    padding-bottom: 113px;
}
.faq-body {
    margin-top: 40px;
    border-top: 1px solid #C2C2C2;
}

.faq-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #151515;
    font-size: 22px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 30px 0;
    font-weight: 500;
    cursor: pointer;
}

.faq-head span {
    max-width: 70%;
}

.plus_minus {position: relative;width: 12px;height: 12px;}

.faq-element {
    border-bottom: 1px solid #C2C2C2;
}

.faq-answer {
    font-size: 20px;
    color: #444;
    padding-bottom: 38px;
    font-weight: 300;
    display: none;
}

.plus_minus:before {
    width: 100%;
    height: 2px;
}

.plus_minus:before, .plus_minus:after {
    background: #151515;
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    transition: .5s;
}

.plus_minus:after {
    height: 100%;
    width: 2px;
}
.opened .plus_minus:after {
    transform: translate(-50%,-50%) rotate(90deg);
}

.btn_btn{
	display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: 100;
    position: relative;
}

.more_btn{
	display: flex;
    margin-top: 20px;
}

.btn-btn{
	background: #fff;
    padding: 10px ;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #BA884E;
    transition: 0.3s ease 0s;
    border: 1.5px solid #BA884E ;
    border-radius: 0 ;
    outline: none ;
    width: auto;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.section_block{
    position: relative;
}

.section_block:before{
    content: "";
    position: absolute;
    top: 63px;
    left: 0;
    width: 100%;
    height: 294px;
    background: #151515;
    z-index: -1;
}

.section_block_flex{
    display: flex;
    align-items: center;
}

.section_block_left{
	margin-top: 56px;
}

.port-element{
	position: relative;
   /*  display: inline-block; */
}

.port-element:nth-child(n + 5){
	display: none;
}

.port-element.is-visible{
	display: flex;
}

.port-element:hover img {
    filter: brightness(50%); 
}

.port-element img {
	width: 100%;
    display: block;
    transition: filter 0.3s ease; 
}

.content-element{
    border-right: 1px solid #DADADA;
    padding: 35px 33px;
    justify-content: flex-start;
}

.content-block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 41px;
}

.preimushchestva_element{
	display: flex;
    /* padding: 35px 33px; */
}



.preimushchestva_block{
	padding: 105px 0;
	display: flex;
	flex-direction: column;
    position: relative;
    color: white;
    background: #151515;
}


.preimushchestva_zayavka{
    display: flex;
    align-items: center;
    gap: 10px;
}

.preimushchestva_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.preimushchestva_title_title{
    border-bottom: 1px solid white;
    padding-bottom: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 22px;
}

.preimushchestva_content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 96px;
}

/* .preimushchestva_block:before{
        content: "";
    position: absolute;
    top: -58px;
    left: 0;
    width: 100%;
    height: 718px;
    background: #151515;
    z-index: -1;
} */

.mb{
	margin-bottom: 100px;
}

.faq__container{
	padding-top: 110px;
	padding-bottom: 110px;
}

.preimushchestva_text{
	font-size: 17px;
    color: #B7B7B7;
}

.opisaniye_block{
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.opisaniye_block:not(:last-child){
	margin-bottom: 30px;
}


.text-content{
	margin-bottom: 18px;
    font-size: 21px;
    color: #151515;
    font-weight: 500;
}

.uslugi_content{
    border: 1px solid #DADADA;
    padding: 35px 33px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    /* background: aliceblue; */
}

.uslugi_content:nth-child(n + 4){
	display: none;
}

.uslugi_content.is-visible{
	display: flex;
}

.uslugi_text_text.istext-hide{
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.uslugi_text_text.istext-visible{
	visibility: visible;
	position: relative;
	top: 0;
	left: 0;
	opacity: 1;
}

.rotateArrow{
	transition: 0.6s;
}

.rotateArrow > .arrow_usluga-bottom{
	right: 21%;
    bottom: 9%;
    transform: rotate(180deg);
}

.arrow_usluga-bottom{
	position: absolute;
	right: 18%;
	bottom: 21%;
}


.uslugi_content:hover{
    box-shadow: 0 0 20px -10px #BA884E;
    border-color: #BA884E;
}

.uslugi_info{
    border-bottom: 1px solid #DADADA;
    margin-bottom: 15px;
}

.uslugi_text_text{
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: 1s;
}

.uslugi_number{
    margin-bottom: 20px;
    font-size: 40px;
    color: #969696;
}

.uslugi_title{
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
    color: #151515;
    line-height:1.2;
}

.uslugi_title_title{
    margin-bottom: 15px;
}

.uslugi_cena{
    display: flex;
    justify-content: center;
    font-size: 39px;
    color: #BA884E;
    /*flex-grow: 1;*/
}
.uslugi_cena {
    margin-top: auto;
}
.uslugi_block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 41px; 
    position: relative;
    z-index: 2;
}

.btn-btn_btn{
	background: #fff;
    padding: 10px 10px 10px ;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #BA884E;
    transition: 0.3s ease 0s;
    border: 1.5px solid #BA884E;
    border-radius: 0 ;
    outline: none ;
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.more_btn-btn{
	position: relative;
	background: transparent;
    padding: 9px 5px 9px !important;
    font-size: 18px;
    line-height: 30px;
    color: #BA884E;
    transition: 0.6s;
    width: 100%;
    display: block;
    font-weight: normal;
    text-align: left;
    touch-action: manipulation;
    cursor: pointer;
    border: transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.more_btn-btn:hover{
	opacity: 0.7;
}


#moreContent {
    display: none;
}
.show-button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.title_portfolio{
	color: #FFF;
    font-size: 40px;
    text-transform: uppercase;
    transition: 0.6s;
}

.flex-col{
	position: relative;
}

.usluga__hover{
	display: block;
	position: absolute;
	left: 0;
	bottom: -30px;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	padding-right: 29px;
	transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s; /* Задержка скрытия */
	cursor: pointer;
	
}

.usluga__hover::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #fff;
	bottom: -5px;
	left: 0;
}

.usluga__hover:hover{
	opacity: 0.7; 
}


.usluga__arrow{
	position: absolute;
	top: 50%;
	right: -9px;
	transform: translateY(-55%);
}


.hover-visible {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s; /* Плавное появление */
}




.nav {
	display: flex;
	align-items: center;
	column-gap: 40px;
}

.header__button {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid #ababab;
	width: 204px;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	padding-top: 3px;
	transition: .5s;
}

.main-slider {
	height: 900px;
}

@media (max-width: 480px) {
.main-slider {
	height: 600px;
}	
}

.main-slider .slick-list, .main-slider .slick-track {
	min-height: 100%;
	height: 100% !important;
}

.slick-vertical .slick-slide {
	height: 100% !important;
}

    .intro_slider-img {
    	height: 100% !important;
    }
    
@media (max-width: 1150px) {
	.header__button {
		display: none;
	}
}

.header.fixed .header__button, .header.white .header__button{
	color: #151515;
}


.last-button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.50px solid #ba884e;
	width: 235px;
	height: 54px;
	background: #ba884e;
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding-top: 4px;
	transition: .5s;
	margin-top: 30px;
}

.last-button:hover {
	box-shadow: 0 0 20px #ba884e;
}

.uslugi_content {
	transition: .5s;
}

.zzz__title {
	max-width: 700px;
}

.zzz__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	margin-top: 70px;
}

.item-zzz {
	background: #f6f6f6;
	padding: 60px 17px 250px;
	position: relative;
}

.item-zzz__number {
	background: #ba884e;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-top: 4px;
}

.item-zzz__title {
	font-weight: 400;
	font-size: 30px;
	line-height: 120%;
	text-transform: uppercase;
	color: #151515;
	margin-bottom: 15px;
}

.item-zzz__text {
	font-weight: 400;
	font-size: 17px;
	line-height: 131%;
	color: #404040;
}

.item-zzz__image {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}

.item-zzz__image img {
	max-width: 100%;
}

@media (max-width: 992px) {
	.zzz__items {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.zzz__items {
		grid-template-columns: 1fr;
	}
	.item-zzz__number {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.item-zzz__title {
		font-size: 19px;
	}
	.item-zzz__text {
		font-size: 14px;
	}
}

.block {
	margin-top: 90px;
}

.block__body {
	display: flex;
	align-items: center;
	margin: 0 -50px;
}

.block__content {
	flex: 1 1 50%;
	padding: 0 50px;
}

.block__text {
	font-weight: 300;
	font-size: 20px;
	color: #444;
	line-height: 1.3;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.block__text strong {
	font-weight: 500;
		color: #151515;
}

.block__image {
	flex: 0 0 50%;
	padding: 0 50px;
}

.block__image img {
	width: 100%;
}


@media (max-width: 992px) {
	.block__body {
		flex-direction: column;
		align-items: start;
		row-gap: 30px;
	}
	.block__image {
		max-width: 500px;
	}
}

@media (max-width: 480px) {
	.block {
		margin-top: 60px;
	}
	.block__text {
		font-size: 14px;
		margin-top: 30px;
	}
}

.create__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	margin-top: 70px;
}

.create {
	margin: 90px 0;
}

.item-create {
	position: relative;
}

.item-create__number {
	background: #ba884e;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	padding-top: 6px;
}

.item-create__title {
	max-width: 240px;
	font-weight: 400;
font-size: 20px;
line-height: 135%;
text-transform: uppercase;
color: #fff;
position: absolute;
left: 20px;
bottom: 20px;
}

@media (max-width: 992px) {
	.create__items {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.create__items {
		grid-template-columns: 1fr;
	}
	.item-create__number {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.item-create__title {
		font-size: 19px;
	}
	.create {
		margin: 60px 0;
	}
}

.header-hover {
	position: relative;
	overflow: hidden;
}

.header-hover__title {
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: 0.3s;
	cursor: pointer;
}

.header-hover__hidden {
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	left: -30px;
	width: 200px;
	transition: .5s;
	opacity: 0;
}

.header-hover__items {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 20px -15px #151515;
}

.header-hover__item {
	font-size: 14px;
	color: #151515;
}

.header.white .header-hover__title, .header.fixed .header-hover__title {
	color: #151515;
}

.header-hover:hover {
	overflow: visible;
}

.header-hover__hidden {
	opacity: 1;
}

.menu-hover__title {
	font-weight: 300;
	font-size: 20px;
	line-height: 40px;
	color: #151515;
	display: flex;
	margin: 0 12px;
	text-transform: uppercase;
	transition: all 0.3s;
	position: relative;
}

.menu-hover__items {
	display: flex;
	flex-direction: column;
	margin: 0 12px;
	row-gap: 5px;
}

.menu-hover__item {
	font-size: 16px;
	color: #151515;
}

.menu-hover__hidden {
	display: none;
}

.block--reverse .block__body {
	flex-direction: row-reverse;
}

@media (max-width: 992px) {
	.block--reverse .block__body {
		flex-direction: column;
	}
}

.block-norm {
	margin-top: 90px;
}

@media (max-width: 480px) {
.block-norm {
	margin-top: 60px;
}	
}

.block-norm .section-title {
	font-size: 40px;
	padding-bottom: 10px;
}

.block-norm .block__text {
	font-size: 18px;
}

.block-norm ul, .block-norm ol {
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.block-norm ul {
	padding-left: 15px;
}

.block-norm ol {
	padding-left: 20px;
}

@media (max-width: 480px) {
.block-norm {
	margin-top: 60px;
}	
.block-norm .section-title {
	font-size: 28px;
	padding-bottom: 10px;
}

.block-norm .block__text {
	font-size: 14px;
}

}

.block__text ul, .block-norm ol {
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.block__text ul li {
	list-style: disc;
}

.block__text ul {
	padding-left: 20px;
}

.block__text ol {
	padding-left: 20px;
}

.port-bl__section:before {
	height: 100% !important;
}

.block__text a {
	color: #ba884e;
	cursor: pointer;
}

.grid-4 .block__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
}
@media (max-width: 767px) {
.grid-4 .block__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 35px;
}	
}

.grid-4 {
	margin-top: 90px;
}

@media (max-width: 480px) {
.grid-4 {
	margin-top: 60px;
}	
}

.header__phone {
	display: none;
}

@media (max-width: 767px) {
.header__phone {
	display: block;
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
	transition: .5s;
}
.header.white .header__phone, .header.fixed .header__phone {
	color: #151515;
}
.nav {
	column-gap: 0;
}
.ser-subtitle.text p {
	margin-bottom: 0;
}
.main-title {
	line-height: 1.3 !important;
}
}

.whatsapp-fixed {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
}

.whatsapp-fixed img {
	width: 70px;
	height: 70px;
}

@media (max-width: 767px) {
	.whatsapp-fixed {
		position: fixed;
		right: 10px;
		bottom: 10px;
	}
	
	.whatsapp-fixed img {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 480px) {
	.main-sss .main-title {
		font-size: 30px !important;
		line-height: 1.3 !important;
	}
	.main-sss .main-subtitle {
		font-size: 16px !important;
		line-height: 1.3 !important;
		max-width: 95% !important;
	}
}

.see {
	margin: 90px 0;
}

.see__body {
	display: flex;
	align-items: center;
	margin: 0 -32px;
	margin-top: 50px;
}

.see__image {
	flex: 0 0 50%;
	padding: 0 32px;
}

.see__image img {
	width: 100%;
}

.see__text {
	flex: 0 0 50%;
	padding: 0 32px;
}

@media (max-width: 992px) {
	.see__body {
		flex-direction: column;
		align-items: start;
		row-gap: 30px;
	}
	.see__image {
		max-width: 500px;
	}
}

@media (max-width: 480px) {
	.see__body {
		row-gap: 20px;
	}
}

.order__inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 15px;
	margin-bottom: 30px;
}

.order__input label {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 10px;
	display: block;
	text-decoration: none;
}

.order__input input, .order__input select {
	width: 100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: #fff;
	padding: 15px 20px;
	backdrop-filter: blur(24px);
	background: rgba(255, 255, 255, 0.3);
	appearance: none;
}

.order__input input::placeholder {
	color: #fff;
}

.order__checkboxes-wrapper > label {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
}

.order__checkboxes {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.order__checkbox {
	display: flex;
	align-items: center;
	column-gap: 8px;
}

.order__checkbox label {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: #fff;
	margin-bottom: 0;
	padding-top: 6px;
}

.order__checkbox input {
	width: 20px;
	height: 20px;
}

input[type='radio'] {
  accent-color: #BA884E; /* Задаем нужный цвет. */
}

#order .section-title::before {
	display: none;
}

@media (max-width: 767px) {
	.order__inputs {
		grid-template-columns: 1fr;
	}
}

.videos {
	margin: 90px 0 140px;
}

.videos__items {
	margin-top: 15px;
}

.item-video {
	position: relative;
	display: block;
}

.item-video__image {
	display: block;
	overflow: hidden;
	padding-bottom: 56%;
	position: relative;
	margin-bottom: 14px;
}

.item-video__image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.item-video__play svg {
	width: 70px;
	height: 70px;
}

.item-video__title {
	font-weight: 400;
	font-size: 20px;
	line-height: 131%;
	color: #404040;
}

.videos__pagination {
	display: flex;
	align-items: center;
	margin-top: 30px;
	justify-content: center;
	 column-gap: 5px;
}

.videos__pagination .swiper-pagination-bullet {
	background-color: #BA884E;
	transition: .5s;
}
.order__input select option {
    color: #151515;
}

@media (max-width: 480px) {
	.videos__pagination {
		margin-top: 20px;
	}
}

.header.white .header-hover__item:hover {
    color: #151515;
    opacity: .5;
}
.title_portfolio:hover {
    color: white;
}

.port-element:hover .title_portfolio {
    transform: scale(1.05);
}