:root {
    /*Цвета*/
    --black: #000000;
    --red: #ab2929;
    --darkgray: #171717;
    --white: #fff;
    --hovercolor: #d73737;
    --lightgrey: #d8d8d6;
    
    /*Руководство по стилям*/
    --primary-color: var(--aquaisland);
    --dark-accent-color: var(--hippieblue);
    --light-accent-color: var(--pistonblue);
    --btn-primary-color: var(--hippieblue);
    --btn-hover-color: var(--hovercolor);
    
}

body{
	min-width: 320px;
	font-size: 15px;
    font-weight: 400;
    /*line-height: 1.6em;*/
    background: var(--lightgrey);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Gotham Pro", Tahoma, sans-serif;
    line-height: 22px;
    color: var(--darkgray);
}
/*@font-face {
    font-family: 'Cambria';
    src: local('Cambria'), local('Cambria-Bold'),
	url('../fonts/Cambria/Cambria.woff2'),
	url('../fonts/Cambria/Cambria-Bold.woff2'),
}*/
img{
	max-width: 100%;
	height: auto;
}
section{
	padding: 70px 0;
    position: relative;
}
a{
	text-decoration: none;
	color: var(--darkgray);
}

a:hover{
	color: var(--red);
}

*:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	
} 
html, body {
    height: 100%;
}
ul, ol {
    margin: 0;
    padding: 0;
}
ul {
    list-style:none;
}
dd {
    margin: 0 0 0 40px;
}
nav ul,
nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
body.lock{
    overflow-y: hidden;
}
/***   **********************************/
/* Header */
.header-top {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: url("../images/header.jpg") repeat-x 50% 0;
	padding: 20px 0;
	border-bottom: 2px solid #000;
}

.logo img {
    height: 100%;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    /*margin: 0 15px;*/
    position: relative;
    transition: all 0.3s ease;
	text-transform: uppercase;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
	background: var(--red) !important;
	border-radius: 5px;
	cursor: default;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

.contact-info {
    color: #fff;
    display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
}

.wrap_request{
    flex-direction: column;
	display: flex;
	justify-content: flex-end;
}

.wrap_phone{
    display: flex;
	flex-direction: column;
}

.phone {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
    cursor: pointer;
    color: var(--white);
    margin-bottom: 10px;
	display: inline-flex;
}

.phone::before {
	font-size: 18px;
	content: "";
	background: url("../images/phone.png");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
	width: 23px;
	height: 23px;
	display: flex;
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	margin-right: 8px;
}

.phone:hover {
	color: var(--white);
}

.small-text {
	
}

.small-text a {
	font-size: 12px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: var(--red);
	padding: 5px 15px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	width: 100%;
	display: block;
}

.small-text a:hover {
    background: var(--hovercolor);
}

.social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #dc3545;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 101px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.hero-section::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(36, 36, 36, 0.7);
}*/

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-container video {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: 1s opacity;
	transition: 1s opacity;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
	}
    40% {
        transform: translateX(-50%) translateY(-10px);
	}
    60% {
        transform: translateX(-50%) translateY(-5px);
	}
}

/* Products Gallery */
.products-gallery {
	padding: 80px 0;
	position: relative;
	min-height: 768px;
	overflow: hidden;
	background: #c7c7c6 url("../images/screen2.jpg") no-repeat 50% 0;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 40px;
}

.nav-item {
    text-align: center;
    cursor: pointer;
    padding: 0px;
    transition: all 0.3s ease;
	display: flex;
    align-items: center;
	padding-right: 15px;
}

.nav-item.active {
    border-bottom-color: #dc3545;
}

.nav-item h5 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #333;
}

.nav-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}

.nav-item:hover {
    border-bottom-color: #dc3545;
}

.gallery-images {
    margin-top: 40px;
}

.gallery-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lamp-decoration img {
    max-height: 300px;
    opacity: 0.8;
}

.gallery-main {
    margin-bottom: 30px;
}

.gallery-item {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.sofa-container {
    text-align: center;
    margin-top: 20px;
}

.sofa-container img {
    max-height: 200px;
    width: auto;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.chair-decoration {
    text-align: center;
}

.chair-decoration img {
    max-height: 250px;
}

/* Exclusive Offers */
.exclusive-offers {
    padding: 0;
}

.exclusive-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.banner-content h3 {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: normal;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
}

/* Footer */
.footer {
    background: var(--darkgray);
    color: #fff;
    padding: 60px 0 20px;
    background: url("../images/header.jpg") repeat 50% 0;
    border-top: 2px solid #000;
}

.social-links {
    margin-bottom: 30px;
	margin-top: 20px;
	/*text-align: center;*/
}

/*.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #555;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}*/

.social-link.img {
	display: inline-block;
	width: 40px;
	height: 40px;
	/*background: #fff;
	color: #fff;*/
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-right: 5px;
	transition: all 0.3s ease;
	text-decoration: none;
}

/*.social-link:hover {
    background: var(--hovercolor);
    color: #fff;
}*/

.contact-section h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
    letter-spacing: 1px;
}

.contact-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-section a {
    color: #fff;
    text-decoration: none;
}

.contact-section p a {
	color: #fff;
	text-decoration: none;
}

.contact-section p a:hover {
	color: var(--red);
}
.contact-section a:hover{
    color: var(--white);
}

.btn-primary {
    background: #dc3545;
    border: none;
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-primary{
    background: var(--red);
	color: var(--white);
}

.btn-primary:hover {
    background: var(--hovercolor);
	color: var(--white);
}

.map-container {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.copyright-wrap {
    font-size: 12px;
    color: #dddada;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.frames {
	position: relative;
	display: block;
	height: 600px;
	padding: 35px 40px 0 40px;
	margin: 0 auto;
	text-align: center;
	max-width: 1050px;
}

.lamp-left {
	position: absolute;
	left: -65px;
	top: 10px;
	width: 120px;
	height: 100%;
	background: url("../images/lamp-left_new.png") no-repeat -680px 0;
	z-index: 2;
}

.lamp-left::after {
	content: "";
	display: none;
	position: absolute;
	left: -175px;
	top: 0;
	width: 680px;
	height: 768px;
	background: url("../images/lamp-left_new.png") no-repeat;
}

.lamp-right {
	position: absolute;
	right: -65px;
	top: 10px;
	width: 120px;
	height: 100%;
	background: url("../images/lamp-right_new.png") no-repeat;
	z-index: 2;
}

.lamp-right::after {
	content: "";
	display: none;
	position: absolute;
	left: -385px;
	top: 0;
	width: 680px;
	height: 768px;
	background: url("../images/lamp-right_new.png") no-repeat -120px 0;
}

.lamp-left i,  .lamp-right i{
	display: block;
	position: absolute;
	left: 0;
	top: 150px;
	width: 125px;
	height: 180px;
	z-index: 1;
}

.lamp-left.light::after, .lamp-right.light::after {
    display: block;
}

.lamp:hover {
    transition: none;
}


.frames li a {
	display: block;
	color: var(--darkgray);
}

.frames li a:hover {
	display: block;
	color: var(--red);
}

.frames li a p::first-letter {
	font-size: 22px;
}

.frames li a p span {
	border-bottom: 1px solid #8C8C8C;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.frames li a p {
	font-size: 20px;
	line-height: 30px;
	text-transform: uppercase;
}

.frames li a .image {
	position: relative;
	width: 205px;
	height: 248px;
	margin: 6px auto 0;
	padding: 11px 0;
	overflow: hidden;
}

.frames li a .image::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 205px;
	height: 100%;
	background: url("../images/frame_2022.png") no-repeat;
    background-size: auto;
	background-size: cover;
	z-index: 1;
}

.frames li a .image img {
	margin: 0 auto;
	max-width: 208px;
	max-height: 219px;
	width: auto;
	height: auto;
}

.screen {
	position: relative;
	width: 100%;
	padding: 65px 0;
}

.screen3 {
	min-height: 760px;
	overflow: hidden;
	background: #c7c7c6 url("../images/screen3.jpg") no-repeat 50% 0;
	padding: 45px 0 45px 0;
}

.screen3 .container {
	width: 950px;
}

.about a img {
	margin: 0 auto;
	max-height: 365px;
}
.about{
    text-align: center;
}

.about a {
	position: relative;
	display: block;
	width: 352px;
	height: 390px;
	padding: 12px 0;
	overflow: hidden;
}

.about a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 352px;
	height: 390px;
	background: url("../images/slider.png") no-repeat;
    background-size: auto;
	background-size: cover;
	z-index: 1;
}

.screen3 .content.text h1 {
	font-size: 34px;
	line-height: 40px;
	color: var(--darkgray);
	margin: 0 0 20px;
	text-transform: uppercase;
}

.content p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin: 0 0 15px;
	/*text-indent: 20px;*/
	color: var(--black);
	opacity: 1;
	/*z-index: 1000;*/
	position: relative;
}

.lamp {
	position: absolute;
	right: 105px;
	top: 35px;
	width: 678px;
	height: 100%;
	background: url("../images/lamp.png") no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
	z-index: 2;
}

.lamp i {
	display: block;
	position: absolute;
	right: 160px;
	top: 150px;
	width: 150px;
	height: 200px;
}

.lamp.light {
    background-position: -678px 0;
}

.btn-primary {
	color: #fff;
	padding: 12px 30px;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	background: var(--red);
	font-weight: bold;
	border-radius: 5px;
}

.back-to-top:hover{
    background: var(--hovercolor) !important;
}

.content.other{
	min-height: 780px;
	background: #c7c7c6 url(../images/screen3_3.jpg) no-repeat 50% 0;
	padding-bottom: 40px;
	/*background-size: contain;*/
}

.content.other .page-banner{
	padding: 20px 0 0;
}

.nav-item ul.dropdown_menu {
	background: var(--darkgray) none repeat scroll 0 0;
	box-shadow: 0 1px 2px rgb(86 86 90 / 50%);
	opacity: 0;
	position: absolute;
	text-align: left;
	top: 38px;
	transition: all 0.5s;
	visibility: hidden;
	min-width: 280px;
	z-index: 100;
	padding-left: 0px;
	flex-direction: column;
	border: 0;
    border-left-width: 0px;
    border-left-style: none;
    border-left-color: currentcolor;
	border-left: 3px solid var(--primary-color);
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	backdrop-filter: blur(10px);
    background: url(../images/header.jpg) repeat-x 50% 0;
}

.navbar-nav li:hover ul.dropdown_menu {
	visibility: visible;
	opacity: 1;
	top: 100%;
	pointer-events: all;
}

.dropdown_menu li {
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	list-style: none;
	padding: 10px 16px;
	width: 100%;
}


.dropdown_menu .dropdown_menu_item{
	color: var(--white);
	font-size: 15px;
}

.dropdown_menu .dropdown_menu_item.active {
	color: var(--red);
	font-size: 15px;
}

.dropdown_menu .dropdown_menu_item:hover{
	color: var(--red);
}

.navbar-nav .nav-item .indicator svg {
	transition: .5s ease-in-out;
}

.navbar-nav .nav-item:hover .indicator .feather-chevron-down {
	transform: rotate(180deg);
	transition: .5s ease-in-out;
}

.contact-wrap{
	background: var(--darkgray);
    color: #fff;
    padding: 60px 20px;
}

.contact-wrap .contact-section p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin: 0 0 15px;
    text-indent: 0px;
    color: var(--white);
    opacity: 1;
    z-index: 1000;
    position: relative;
}

.contact-wrap .contact-section p a:hover {
    color: var(--red);
}

/*.content.other .container{
	max-width: 1075px;
}*/

.content.other .options-wrap {
	text-align: center;
}

.option.item iframe, .option.item video{
	display: block;
	margin: 0 auto;
	border: 7px ridge #ccc !important;
	max-width: 100%;
	margin-bottom: 10px;
	width: 100%;
}

.content.other .options-wrap .option.description {
	padding: 15px 0 50px;
	text-align: justify;
}

.company-wrap .company-text{
	margin-bottom: 60px;
	text-align: center;
}

.company-wrap .diploms-wrap{
	padding: 0 0 30px 0;
}

.product-items .single-product-item{
	margin-bottom: 20px;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
    background: var(--darkgray);
    color: #fff;
}

.main_popular .sec_description{
	margin-top: 20px;
}

.single-product-item .image-block img{
	border: 7px solid #fff;
    border-radius: 5px;
}

.product-detail .image{
	margin-bottom: 30px;
}

.product-detail .description{
	font-size: 16px;
	margin-bottom: 50px;
}

.product-detail .mySwiper {
	box-sizing: border-box;
	padding: 0;
	max-height: 730px;
}

.wrap_back_block .arrow-link{
	font-size: 16px;
	margin-left: 10px;
	color: var(--darkgray);
}

.wrap_back_block .arrow-link:hover{
	color: var(--red);
}

.wrap_back_block i{
	font-size: 20px;
}

.content.other .products-gallery{
	background: none;
}

.content.other section.products-gallery{
	padding: 0 0;
}

.content.other .frames{
	padding: 5px 0 0;
}

.order-warp {
	text-align: center;
    margin-bottom: 30px;
}

.order-warp button{
	border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.order-warp button:hover{
	background: var(--red);
}

#f_feedback_FID1 a{
	font-size: 12px;
}

.diploms a .image {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 6px auto 0;
	padding: 0 0;
	overflow: hidden;
}

.diploms .image img{
	border: 7px ridge #ccc;
}

/*.diploms a .image::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 305px;
	height: 100%;
	background: url("../images/frame_2025.png") no-repeat;
    background-size: auto;
	background-size: auto;
	background-size: cover;
	z-index: 1;
}*/

.arch-wrap .section-name {
	font-size: 18px;
	font-weight: 500;
	margin-top: 35px;
	margin-bottom: 10px;
}

.arch_file_wrap .item {
	display: block;
	width: 100%;
	padding: 27px 15px;
	border: 1px solid #e5e5e5;
	align-items: center;
	border-radius: 10px;
	margin-bottom: 10px;
	text-align: center;
	background: #eee;
}

.arch_file_wrap .item {
	text-align: center;
}

.arch_file_wrap a.link {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-right: 0px;
	cursor: pointer;
}

.arch_file_wrap a.link:hover {
	text-decoration: underline;
}

.arch_file_wrap .block-wrap {
	display: inline-flex;
	align-content: center;
	align-items: center;
	margin: 20px;
}

.arch_file_wrap .icon-wrapper {
	position: relative;
	margin-right: 0px;
}

.file-type {
	width: 40px;
	height: 40px;
	display: block;
}

.file-type__icon {
	width: 40px;
	height: 40px;
	display: inline-block;
	background: url(../images/docs.svg) 0px -84px no-repeat;
    background-position-x: 0px;
    background-position-y: -84px;
	float: left;
	cursor: pointer;
}

.file-type__icon-pdf {
	background-position: 0px 0px;
}

.arch_file_wrap .file-type.list-inner__ico-youtube {
	width: 50px;
	height: 50px;
}

.arch_file_wrap .link_size {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	margin-left: 20px;
}

.footer h5.menu_title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid #555;
	padding-bottom: 15px;
}

.bottom-menu .navbar-nav .nav-link {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	margin: 0 0;
	position: relative;
	transition: all 0.3s ease;
	text-transform: none;
	padding: 0.2rem;
}

.bottom-menu .navbar-nav .nav-link:hover {
	color: var(--red);
}

.policy a{
	color: var(--black);
}

.policy a:hover{
	color: var(--red);
}

.lang.active {
	color: #fff;
	margin-left: 10px;
	font-size: 16px;
	transition: color 0.3s ease;
}

.bq-form-popup.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

.bq-form-popup__dialog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
	position: relative;
	width: auto;
	min-height: calc(100% - 32px);
	margin: 16px;
	pointer-events: none;
}

.back-form {
    position: fixed;
    top: 0;
    right: -500px;
	/* background: #212121;*/
    background: url("../images/header.jpg") repeat;
    z-index: 1001;
    height: 100%;
    width: 500px;
    transition: all 200ms ease-in-out;
    display: table;
    color: #fff;
    /*background-image: linear-gradient(to top right, rgba(74, 85, 117, 0.95), rgba(73, 82, 112, 0.95), rgba(71, 79, 106, 0.96), rgba(70, 77, 101, 0.96), rgba(69, 74, 95, 0.97), rgba(67, 71, 90, 0.97), rgba(66, 68, 84, 0.98), rgba(64, 65, 79, 0.98), rgba(63, 62, 73, 0.99), rgba(62, 60, 68, 0.99), rgba(60, 57, 62, 1), rgb(59, 54, 57));*/
}

.back-form__polit a{
	font-size: 14px;
	text-align: left;
	color: var(--white);
}

.back-form__polit a:hover{
	color: var(--red);
}

.back-form__btn{
	border-radius: 5px;
}

.back-form__btn:hover {
	border-color: var(--red) !important;
	background: var(--red);
}

.swiper-slide-active img{
	width: 100%;
	max-height: 740px;
	border: 10px solid #fff;
	border-radius: 5px;
}

.dropdown_menu .nav-item-2 .current{
	color: var(--red);
}

.mySwiper .swiper-slide {
	opacity: 0.9;
	text-align: center;
	display: flex;
    justify-content: center;
}

.mySwiper .swiper-slide-thumb-active {
	opacity: 1;
}

.swiper-button-next, .swiper-button-prev{
	color: var(--white);
}

.swiper-slide {
	background-size: cover;
	background-position: center;
}

.swiper-thumbs .swiper-slide img{
	border: 5px solid #fff;
	border-radius: 5px;
	width: auto;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active img{
	border: 5px solid var(--red);
	border-radius: 5px;
	width: auto;
}

.detail_prev_next_wrap{
	margin-bottom: 50px;
}

.detail_prev_next_wrap .block-wrap {
	display: flex;
	align-items: center;
}

.detail_prev_next_wrap .arrow-block-left {
	margin-right: 15px;
}

.detail_prev_next_wrap .arrow-block-right {
	margin-left: 15px;
}

.arrow-block-left i, .arrow-block-right i {
	font-size: 30px;
	color: var(--black);
}

.block-wrap .image-block img{
	border-radius: 5px;
	border: 5px solid #fff;
}

.fancybox-image{
	border: 10px solid #fff;
	border-radius: 5px;
}

.mobile-nav-item .nav-link.active {
	color: var(--red) !important;
	background: none !important;
	cursor: default;
}

.header-top.main{
	background: rgba(0, 0, 0, 0.6);
	padding: 15px 0;
	position: relative;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 20px 0;
	border-bottom: none;
	backdrop-filter: none;
}

.sup{
	vertical-align: super;
}

.content.product{
	background: #c7c7c6 url("../images/screen2_4.jpg") no-repeat 50% 0
}

.content.product .products-gallery {
	padding: 0 0;
    padding-top: 0px;
    padding-bottom: 0px;
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	min-height: 700px;
	overflow: hidden;
	background: none;
	
}

.content.product .products-gallery .frames {
	padding: 0px 40px 0 40px;
}

.content.stat-page{
	padding: 0 0 50px 0;
	background: linear-gradient(to right, #d6d6d6, #a6a6a4);
}

.content.product .sec_description{
	background: linear-gradient(to bottom, #dddddb, #c7c7c6);
	padding: 20px;
}

.video-wrap{
	/*background: #c9c9c7;*/
	/*padding: 20px 15px;*/
	padding: 0;
}


.arrow-link img {
	width: 60px;
	transition: all .5s;
	opacity: .9;
	cursor: pointer;
}

.arrow-link img:hover {
	opacity: 1;
}

.mySwiper .swiper-slide{
	height: 100%;
}

.mySwiper .swiper-button-prev{
	top: var(--swiper-navigation-top-offset,5%);
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}

.mySwiper .swiper-button-next{
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
	top: var(--swiper-navigation-top-offset,95%);
}

.Swiper2 .swiper-slide-active img {
	height: 740px;
}

.copyright-wrap .develop {
	text-align: right;
}

.copyright-wrap .develop img {
	width: 160px;
}

.copyright-wrap .develop .wrap {
	background: #fff;
	display: inline-block;
	padding: 5px 10px;
	border-radius: 20px;
}

.legacy-cookie {
	bottom: 20px;
	left: 0;
	width: 460px;
}

.legacy-cookie > div {
	border-radius: 10px;
	position: relative;
	display: flex;
	-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.16);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.16);
	background: rgba(255, 255, 255, 0.85);
	margin: 30px;
	font-size: 15px;
	width: 420px;
	padding: 20px;
	align-items: baseline;
	flex-direction: column;
}

.legacy-cookie__text {
	margin-bottom: 15px;
	color: #000000;
	font-size: 14px;
}

.legacy-cookie .button {
	background-color: #ab2929;
	border-color: #ab2929;
	color: #ffffff;
	font-size: 14px;
	font-weight: normal;
	padding: 7px 15px;
}

.legacy-cookie .button:hover {
	background-color: #d73737;
}


.back-to-top{
	position: fixed;
	bottom: 134px;
	right: 78px;
	width: 50px;
	height: 50px;
	background: var(--red);
	color: white;
	border: medium;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
	z-index: 1000;
	font-size: 18px;
}

/*********************** Media **************************************************************************************************************************************************/
@media(max-width:1600px) {
	.lamp{
		right: -70px;
		top: 35px;
	}
}

@media(max-width:1399px) {
	.slide.video {
        aspect-ratio: 16/9;
        max-height: 55.625rem;
        min-height: 52.625rem;
        overflow: hidden;
        width: 100%;
	}
	.header_menu .menu-item a {
		font-size: 16px;
	}
	.navbar-nav .nav-link {
		font-size: 15px;
		margin: 0 4px;
	}     
	
	.nav-item {
		padding-right: 5px;
	}
	
	.wrap_phone {
		margin-left: 0;
	}
	
	.content.other {
		min-height: 780px;
		background: #c7c7c6 url(../images/screen3_6.jpg) no-repeat 50% 0;
		padding-bottom: 40px;
	}
	
	/*.diploms a .image::before {
		width: 262px;
	}*/
	
	.diploms a .image {
		height: 100%;
	}
	
	.products-gallery {
		overflow: inherit;
	}
	
	.lamp {
		right: -125px;
		top: 41px;
	}
	
	.company-wrap .diploms-wrap {
		padding: 0 0 10px 0;
	}
	
	.content.product {
		background: #c7c7c6 url("../images/screen2_2.jpg") no-repeat 50% 0;
	}
	
	.content.product .products-gallery {
		overflow: initial;
	}
	
	.phone {
		font-size: 17px;
		font-weight: bold;
		margin-bottom: 5px;
		text-decoration: none;
		cursor: pointer;
		color: var(--white);
		margin-bottom: 10px;
		display: inline-flex;
	}
	
	.product-detail .mySwiper {
		max-height: 628px;
	}
	
	.screen3 .lamp {
		right: -123px;
		top: 30px;
	}
}
@media(max-width:1199px) {
	.navbar-nav .nav-link {
        font-size: 15px;
        margin: 0 0;
	}
	
	.nav-item {
		padding-right: 4px;
	}
	
	.wrap_phone {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 0;
	}
	
	.phone {
		font-size: 14px;
	}
	
	.small-text a {
		font-size: 12px;
		margin-left: 10px;
	}
	
	.small-text a {
		padding: 8px 5px;
	}
	
	.navbar-nav .nav-link {
		font-weight: 500;
	}
	
	.content.other {
		min-height: 780px;
		background: #c7c7c6 url(../images/screen3.jpg) no-repeat 50% 0;
		padding-bottom: 40px;
	}
	
	.screen3 .lamp {
		right: -150px;
		top: 30px;
	}
	
	.phone::before {
		font-size: 20px;
		width: 20px;
		height: 20px;
		margin-right: 5px;
	}
}
@media(max-width:991px) {
	.burger-wrap {
        position: absolute;
        justify-content: end;
        right: 15px;
	}
	.toggled .burger-wrap {
        position: absolute;
        right: 10px;
        top: 15px;
	}
	.menu-btn-mobile {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
        z-index: 360;
	}
	.menu-btn-mobile span, .menu-btn-mobile span::before, .menu-btn-mobile span::after {
        position: absolute;
        top: 50%;
        margin-top: -1px;
        left: 50%;
        margin-left: -18px;
        width: 36px;
        height: 2px;
        background-color: #fff;
	}
	.menu-btn-mobile span::before, .menu-btn-mobile span::after {
        content: '';
        display: block;
        transition: 0.3s;
	}
	.menu-btn-mobile span::before {
        transform: translateY(-7px);
	}
	.menu-btn-mobile span::after {
        transform: translateY(7px);
	}
	.menu-btn-mobile_active span {
        height: 0 !important;
	}
	.menu-btn-mobile_active span::before {
        transform: rotate(45deg);
	}
	.menu-btn-mobile_active span::after {
        transform: rotate(-45deg);
	}
	.main-nav-area {
		width: 100%;
		background: #000;
		height: 100vh;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		overflow-x: hidden;
		padding: 0px 15px 0px 15px;
		list-style: none;
		display: block;
		transition: all .8s;
		opacity: 1;
		z-index: 350;
		transform: translateX(-100%);
		color: #fff;
		background: url("../images/header.jpg") repeat 50% 0;
	}
	.main-nav-area.toggled {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
		/* overflow-y: hidden;*/
        padding: 0px 15px 0px 15px;
        list-style: none;
        display: block;
        transition: all .8s;
        opacity: 1;
        z-index: 350;
        transform: translateX(0);
        display: block;
	}
	.main-nav-area .logo_mobile{
        padding: 15px 15px 15px 0;
        margin-bottom: 5px;
	}
	.main-nav-area.toggled .logo_mobile{
        padding: 15px 15px 15px 0;
		margin-bottom: 5px;
		border-bottom: 1px solid var(--white);
	}
	.main-nav-area.toggled .logo_mobile img{
        width: 190px;
        height: 50px;
	}
	.main-nav-area .logo_mobile img{
        width: 190px;
        height: 50px;
	}
	.wrap-main-nav-area .mobile_line {
        height: 1px;
        width: 100%;
        background: rgba(0,0,0,0.5)
	}
	.main-nav-mobile {
        padding: 20px 15px;
        border-bottom: 1px solid var(--white);
	}
	.main-nav-mobile li {
        margin-bottom: 10px;
	}
	.main-nav-mobile li a {
        color: #fff;
        font-size: 18px;
	}
	.mobile-sub-menu {
        padding: 10px 0 0 20px;
        max-height: 0;
        overflow: hidden;
        display: none;
        transition: all 1s;
	}
	.dropdown.dropdown-active .mobile-sub-menu {
        display: block;
        max-height: 100%;
        overflow: auto;
	}
	.main-nav-mobile li {
		margin-bottom: 10px;
	}
	.main-nav-mobile li a {
        color: var(--white);
        font-size: 16px;
	}
	
	.main-nav-mobile li a:hover {
        color: var(--red);
	}
	
	.dropdown .mean-expand .fa {
        font-size: 18px;
	}
	.dropdown.dropdown-active .mean-expand .fa.active{
        transform: rotate(180deg);
        transition: .5s ease-in-out;
        font-size: 18px;
	}
	.main-nav-mobile li a .mean-expand {
		border-bottom: 2px solid transparent;
	}
	/*.main-nav-area.toggled::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.4);
		opacity: 1;
		-webkit-transition: all ease 1s;
		-o-transition: all ease 1s;
		transition: all ease 1s;
		z-index: 1;
	}*/
	.wrap-mobile-contacts {
        padding: 15px;
	}
	.wrap-mobile-contacts .request-wrap {
        text-align: left;
	}
	.mobile-contact-item .icon_wrap {
        display: inline-flex;
        align-items: center;
        margin-bottom: 15px;
	}
	.mobile-contact-item .icon_wrap .phone, .mobile-contact-item .icon_wrap .address, .mobile-contact-item .icon_wrap .email {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        color: #000;
	}
	.icon i {
		color: #fff;
		font-size: 18px;
	}
	.icon_wrap .icon {
		background: #307BC4;
	}
	.wrap-mobile-contacts .social_block .social_wrap {
		margin-right: 10px;
	}
	.icon_wrap .phone:hover, .icon_wrap .address:hover, .icon_wrap .email:hover {
		text-decoration: underline;
	}
    .dropdown.dropdown-active li a {
        color: #000;
        font-size: 16px;
        /*border-bottom: 2px solid transparent;*/
        font-weight: 600;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
	}
	.dropdown.dropdown-active li a:hover {
        /*border-bottom: 2px solid #FF6A00;*/
	}
	.wrap-mobile-contacts .social_block .image-block img {
		width: 32px;
		opacity: .8;
		transition: opacity .5s;
	}
	.wrap-mobile-contacts .social_block .image-block img:hover {
		opacity: 1;
	}
	.wrap-mobile-contacts .social_block{
		display: flex;
		margin-top: 15px;
	}
	.main-nav-area .imgbox {
		position: absolute;
		right: -50px;
		bottom: -80px;
		-webkit-animation: spin 40s linear infinite;
		animation: spin 40s linear infinite;
	}
	.main-nav-area .imgbox img{
		width: 228px;
	}
	.wrap-mobile-contacts .request-wrap{
		margin-top: 20px;
	}
	
	.mobile-nav-item .indicator{
		display: none;
	}
	
	.mobile-dropdown_menu{
		padding: 10px 0 0 30px;
	}
}
@media(max-width:767px) {
	
	/*.header {
		height: 75px;
	}*/
	.header-upper .logo-box {
		position: absolute;
		left: 0;
		top: -75px;
		width: 190px;
		height: 60px;
		padding: 0;
		border-right: 0;
	}
	.header-top .inner {
		border-bottom: 0;
	}
	.slider-area .slide .text-block .banner-caption {
		font-size: 30px;
	}
	.slider-area .slide .text-block .banner-text {
		font-size: 20px;
		text-wrap: wrap;
	}
	.slider-area .slide.dark .text-block-right .banner-caption {
		font-size: 30px;
	}
	.slider-area .slide.dark .text-block-right .banner-text {
		font-size: 20px;
	}
	.slider-area .slide .text-block-right .banner-caption {
		font-size: 30px;
	}
	.slider-area .slide .text-block-right .banner-text {
		font-size: 20px;
	}
	.owl-prev {
		left: -3%;
	}
	.owl-next {
		right: -3%;
	}
	.catalog_sudmarin .sudmarin_title_wrap .title, .about .about_title_wrap .title, .digit .digit-title, .products .block_link-wrapper{
		font-size: 30px;
	}
	.catalog_sudmarin .sudmarins_item {
		margin-bottom: 20px;
	}
	.about .block-img {
		margin-bottom: 20px;
	}
	.about .text-block {
		text-align: center;
		margin-top: 25px;
	}
	.about .block-img_wrap {
		width: 100%;
		height: 250px;
	}
	.advantage .item .name {
		font-size: 20px;
	}
	.advantage .item .text {
		font-size: 15px;
	}
	.popular_models .title_wrap .title {
		font-size: 30px;
	}
	.advantage .advantage_title_wrap .title {
		font-size: 30px;
	}
	.owl-theme .owl-nav {
		margin-top: 10px;
		display: none;
	}
	.news .title_wrap .title {
		font-size: 30px;
	}
	.footer-2 .develop .wrap {
		text-align: center;
		margin-top: 15px;
	}
	.footer-1 .footer-menu-wrap{
		margin-bottom: 15px;
	}
	.footer-menu-item .footer-item-wrap {
		display: block;
		margin-bottom: 10px;
	}
	.slider-area .slide.img {
		height: 500px;
	}
	.header-top .header-contact ul li .icon {
		color: #fff;
		font-size: 25px;
		margin-right: 5px;
	}
	.header-top .header-contact ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header-top .header-contact ul li {
		margin-right: 20px;
		display: inline-flex;
		align-items: center;
	}
	.banner-carousel .owl-dots {
		bottom: 5%;
	}
	section {
		padding: 35px 0;
	}
	.services .title, .about .title, .products .title, .team .title, .reviews .title, .blog .title, .digit .digit-title {
		font-size: 30px;
		text-align: center;
	}
	.services .title_wrap, .about .about_title_wrap {
		text-align: center;
		display: block;
	}
	.services_wrap .item .name {
		padding: 10px 15px;
	}
	.img_border {
		width: 360px;
		height: 330px;
	}
	.about .h1 {
		font-size: 30px;
	}
	.digit .digit-wrap{
		margin-bottom: 25px;
	}
	.digit .digit-wrap .number {
		font-size: 50px;
		margin-bottom: 15px;
	}
	.team-card .team-img img {
		min-height: 235px;
		max-height: 235px;
	}
	.team-card .team-info {
		padding: 15px 20px;
		transition: .4s;
		text-align: left;
	}
	.team-card .team-info a .name {
		font-size: 18px;
	}
	.presents .name_wrap {
		font-size: 25px;
		margin-bottom: 15px;
	}
	.presents .banner-btn{
		text-align: center;
	}
	.footer-contact-item .icon_wrap .icon {
		background: none;
	}
	.footer-contact-item .icon_wrap i {
		color: #fff;
		font-size: 20px;
	}
	.slider-area .slide .text-block {
		padding-left: 0;
	}
	
    .header-top {
        padding: 15px 0;
        position: relative;
        /*z-index: 100000;*/
	}
    
    .gallery-navigation {
        flex-direction: column;
        gap: 20px;
	}
    
    .gallery-navigation .nav-item {
        padding: 10px;
	}
    
    .about-section h2 {
        font-size: 22px;
	}
    
    .banner-content h2 {
        font-size: 28px;
	}
    
    .exclusive-banner {
        padding: 60px 20px;
	}
    
    .footer .row {
        flex-direction: column;
	}
    
    .map-container {
        height: 250px;
        margin-top: 30px;
	}
	
    .hero-section {
        height: 70vh;
	}
    
    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 0 8px;
        padding: 0;
	}
	
	.main-nav-mobile .navbar-nav .nav-link:hover {
        color: var(--red) !important;
	}
    
    .contact-info {
        text-align: center;
        margin-top: 15px;
	}
    
    .gallery-side {
        display: none;
	}
    
    .about-section {
        padding: 40px 0;
	}
    
    .products-gallery {
        padding: 40px 0;
	}
	
    .frames li a p {
		font-size: 17px;
		line-height: 30px;
		text-transform: uppercase;
	}
	
	.screen3 {
		background: #e1e1df;
	}
	
	.about{
		position: relative;
		margin-bottom: 25px;
		display: inline-block;
	}
	
	.lamp {
		display: none;
	}
	
	.screen3 .container {
		width: 100%;
	}
	
	.lamp-left, .lamp-right {
		display: none;
	}
	
	.footer {
		text-align: center;
	}
	
	.main-nav-mobile .nav-item {
		text-align: left;
	}
    
	/*.product-detail .mySwiper {
		display: none;
	}    */
	
	.content.other .col{
		padding-top: 0;	
	}
	
	.logo img {
		height: auto;
	}
	
	.products-gallery {
		background: #c5c5c5;
	}
	
	.diploms-wrap .row{
		text-align: center;
	}
	
	.diploms-wrap .diploms.item{
		margin-bottom: 20px;
	}
	
	.footer .bottom-menu{
		margin-top: 20px;
	}
	
	.frames {
		height: 100%;
	}
	
	.content.other {
		background: #c7c7c6;
	}
	
	.content p {
		font-size: 17px;
	}
	
	.products-gallery .frames {
		padding: 35px 0px 0 0px;
	}
	
	.frames li a .image {
		width: 197px;
	}
	
	.frames li a .image::before {
		width: 197px;
	}
	
	.content.product .products-gallery .frames {
		padding: 0;
	}
	
	.content.product {
		background: #d7d7d5;
	}
	
	.mySwiper2 {
		margin-bottom: 25px;
	}
	
	.mySwiper .swiper-button-next {
		bottom: 0;
		left: inherit;
		transform: inherit;
		transform: inherit;
		top: var(--swiper-navigation-top-offset,50%);
	}
	
	.mySwiper .swiper-button-prev {
		top: var(--swiper-navigation-top-offset,50%);
		left: inherit;
		transform: inherit;
		
	}
	
	.arch_file_wrap .block-wrap {
		margin: 20px 10px;
	}
	
	.legacy-cookie {
		bottom: 20px;
		left: 0;
		width: auto;
	}
	
	.legacy-cookie > div {
		width: auto;
	}
	
	.copyright-wrap .develop {
		text-align: center;
	}
	
	.back-form-fixed-btn {
		right: 27px !important;
	}
	
	.back-to-top{
		right: 37px;
	}
}

