/* font families */

@font-face {
	font-family: Satoshi-Light;
	src: url(../font-families/Satoshi-Light.otf);
}

@font-face {
	font-family: Satoshi-Regular;
	src: url(../font-families/Satoshi-Regular.otf);
}

@font-face {
	font-family: Satoshi-Medium;
	src: url(../font-families/Satoshi-Medium.otf);
}

@font-face {
	font-family: Satoshi-Bold;
	src: url(../font-families/Satoshi-Bold.otf);
}

@font-face {
	font-family: ppeditorialold-regular;
	src: url(../font-families/ppeditorialold-regular.otf);
}

/* woff2 */
@font-face {
	font-family: Satoshi-Bold-woff2;
	src: url(../font-families/Satoshi-Bold.woff2);
}

@font-face {
	font-family: Satoshi-Light-woff2;
	src: url(../font-families/Satoshi-Light.woff2);
}

:root {
	--white: #fff;
	--black: #000;
	--green: #029C3B;
	--lite_grey: #E7E5E0;
}

/* general css */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: var(--black);
	font-family: Satoshi-Regular;
	font-size: 18px;
}

body {
	background: var(--lite_grey);
}

html {
	scroll-behavior: smooth;
}

/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: Satoshi-Bold;
}

a,
p {
	font-size: 18px;
	margin: 0;
	color: var(--black);
}

a,
a:hover {
	text-decoration: none;
}

img {
	width: 100%;
}

/* sider scrollbar */

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: var(--green);
}

::-webkit-scrollbar-thumb {
	background: var(--white);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--white);
}

/* fonts */
.font_88 {
	font-size: 88px;
	line-height: 1.1;
}

.font_72 {
	font-size: 72px;
	line-height: 1.1;
}

.font_42 {
	font-size: 42px;
	line-height: 1.1;
}

.font_32 {
	font-size: 32px;
}

.font_18 {
	font-size: 18px;
}

/* global style */

.mt_15 {
	margin-top: 15px;
}

.mb_15 {
	margin-bottom: 15px;
}

.pt_15 {
	padding-top: 15px;
}

.pb_15 {
	padding-bottom: 15px;
}

.p_15 {
	padding: 15px;
}

/* borders styles */
.border_x {
	border-right: 1px solid var(--black);
	border-left: 1px solid var(--black);
}

.border_y {
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

.b_top {
	border-top: 1px solid var(--black);
}

.b_bottom {
	border-bottom: 1px solid var(--black);
}

.b_left {
	border-left: 1px solid var(--black);
}

.b_right {
	border-right: 1px solid var(--black);
}

.container-fluid {
	/* max-width: 1920px; */
	max-width: 2000px;
}

.color_green {
	color: var(--green);
}

.color_white {
	color: var(--white);
}

/* ============= Home Page ============== */

/* profile section */
.profile_gid_1 {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}

.profile_img img {
	height: calc(100% + 2px);
	/* height: 100%; */
	object-fit: cover;
	transition: all 0.2s linear;
}

.profile_img {
	/* height: 180px; */
	overflow: hidden;
}

.profile_img:hover img {
	transform: scale(1.1);
}

.spacer {
	display: block;
}

.spacer .border_x {
	height: 15px;
	border-right: 1px solid var(--black);
	border-left: 1px solid var(--black);
}

.middle_text {
	padding: 30px 0px;
}

.middle_text h2 {
	font-family: Satoshi-Light;
	color: var(--black);
	font-size: 32px;
}

.middle_text h2 span {
	font-size: 32px
}

.middle_text h2 .super_span1 {
	font-family: Satoshi-Bold;
}

.middle_text h2 .super_span2 {
	font-style: italic;
}

.middle_text h2 .super_span2,
.middle_text h2 .super_span3 {
	font-family: Satoshi-Regular;
}

/* super story_sec */

.story_content {
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
}

.story_img img {
	height: 100%;
	object-fit: cover;
}

.read_more_link {
	display: inline-block;
	margin-top: 30px;
	text-decoration: underline;
	text-underline-offset: 5px;
	transition: all 0.1s linear;
}

.read_more_link:hover {
	text-decoration: underline;
	color: var(--green);
}

.heading_style {
	font-family: Satoshi-Light;
}

.heading_style span {
	font-family: Satoshi-Bold;
}

/* news grid */

.news_grid {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(4, 1fr);
}

.news_grid_link {
	display: block;
	overflow: hidden;
	height: 100%;
	transition: all 0.2s linear;
}

.news_grid_link img {
	transition: all 0.2s linear;
}

.news_grid_link:hover img {
	transform: scale(1.1);
}

.news_text_wrap,
.vingate_wrap {
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
}

.news_text_wrap {
	width: 100%;
	transition: all 0.2s linear;
	display: block;
	background-color: var(--green);
	padding-top: 0px;
}

.news_text_wrap .read_more_link {
	text-decoration: underline;
}

.news_text_wrap h2,
.news_text_wrap h2 span {
	transition: all 0.2s linear;
}

.news_text_wrap:hover h2,
.news_text_wrap:hover span {
	color: #fff;
}

.news_grid_link h2,
.news_grid_link h2 span {
	line-height: 60px;
}

.vintage_img {
	position: relative;
}

.vingate_wrap {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

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

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

.top_h {
	justify-content: space-between;
	align-items: baseline;
}

.super_collec_main .top_h {
	padding-top: 80px;
}

.super_collec_main .row .col_collection {
	border-bottom: 1px solid var(--black);
}

.super_collec_main .row .col_collection:nth-last-child(2),
.super_collec_main .row .col_collection:last-child {
	border-bottom: none;
}

.colleection_box_i a {
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.2s linear;
}

.colleection_box_i a img {
	transition: all 0.2s linear;
}

.colleection_box_i a:hover img {
	transform: scale(1.1);
}

.colleection_box_i h3 {
	font-size: 40px;
	color: #fff;
}

.overlay_collection {
	bottom: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	position: absolute;
	padding: 15px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: end;
	flex-direction: column;
	background: #00000031;
}

/* hover image changes */
.believe-mainline {
	padding: 22px 15px;
	transition: all 0.2s linear;
	display: block;
	border-top: 1px solid var(--black);
}

.believe-mainline:hover {
	background-color: #D0CECA;
}

.belive-innerline {
	color: #000000d5;
	font-size: 46px;
	line-height: 35px;
	font-family: Satoshi-Medium;
	justify-content: space-between;
	align-items: center;
}

.belive-innerline svg {
	stroke: var(--black);
}

.believe-mainline:hover .belive-innerline {
	color: var(--black);
}

.believe-mainline:hover .belive-innerline svg {
	stroke: var(--green);
}

.belive-img {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
	transition: all 0.1s linear;
	height: 535px;
	width: 750px;
}

.belive-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.believe-mainline:hover .belive-img {
	opacity: 1;
}

.belives-wrper {
	position: relative;
}

/* contact_wraper */

.contact_wraper .row {
	padding-top: 150px;
}

.btn_box {
	border: 1px solid var(--black);
	width: 100%;
	display: block;
	text-align: center;
	padding: 4px 10px;
	transition: all 0.2s linear;
}

.btn_box:hover {
	border: 1px solid var(--green);
	background: var(--green);
	color: var(--white);
}

/* ============== footer ================ */

.footer_box h5 {
	font-size: 18px;
	margin-bottom: 10px;
}

.footer_box p {
	max-width: 430px;
}

footer .footer_row_1 {
	padding-top: 100px;
}

.form-footer .input-group {
	position: relative;
}

.form-footer input::placeholder {
	color: #000000c2;
}

.form-footer input,
.form-footer input::placeholder {
	font-size: 18px;
	color: var(--black);
}

.form-footer input {
	border-radius: 0px !important;
	height: 40px;
	border: initial;
	padding: 0px;
	border-bottom: 1px solid #000;
	background: transparent;
}

.form-footer input:focus,
.form-footer input:active:focus,
.form-footer .btn-submit:focus,
.form-footer .btn-submit:active:focus,
.collection-select select:focus,
.collection-select select:active:focus {
	box-shadow: none;
	outline: none;
	background: transparent;
	border-bottom: 1px solid var(--black);
}

.form-footer .btn-submit {
	border: none;
	position: absolute;
	padding: 3px 0px 3px 10px;
	top: 0px;
	right: 0px;
	align-items: center;
	background: transparent;
	transition: all 0.2s linear;
	width: auto;
	text-decoration: none;
	font-family: Satoshi-Medium;
	border: none;
	background-color: var(--lite_grey);
}

.form-footer .btn-submit:focus,
.form-footer .btn-submit:active:focus {
	background-color: var(--lite_grey);
	border: none;
	box-shadow: none;
}

.form-footer .btn-submit svg {
	stroke: var(--black);
	margin-left: 5px;
	transition: all 0.2s linear;
}

.form-footer .btn-submit:hover svg {
	stroke: var(--green);
}

.form-footer .btn-submit:hover {
	color: var(--green);
	background-color: var(--lite_grey);
	text-decoration: none;
}

.form-footer .form-outline,
.form-footer .input-group {
	width: 100%;
}

.form-footer .my_floating_class1 {
	left: 0px;
}

.footer_box ul,
ul#menu-header-menu {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.footer_box ul li {
	padding: 2px 0px;
}

.footer_box ul li a {
	transition: all 0.2s linear;
	text-transform: lowercase;
}

.footer_box ul li a:hover {
	color: var(--green);
}

.footer_box ul li a svg {
	stroke: var(--black);
	transition: all 0.2s linear;
	width: 14px;
	margin: 0px 0px 0px 5px;
}

.footer_box ul li a:hover svg {
	stroke: var(--green);
}

.privacy_bar {
	justify-content: space-between;
	align-items: center;
	background: var(--black);
	padding: 15px;
}

.privacy_bar a,
.privacy_bar p {
	color: #ffffffbb;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s linear;
}

.privacy_bar a:hover {
	color: var(--green);
}

.main_logo_iner {
	padding: 220px 30px 0px 30px;
}


/* ============= header ============= */

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

header {
	background: var(--lite_grey);
	z-index: 2;
	position: sticky;
	top: 0px;
}

header .container {
	border-bottom: 1px solid #dededf;
	padding-top: 25px;
	padding-bottom: 25px;
}

.nav-logo {
	display: block;
}

.hamburger_menu {
	border: none;
	background: transparent;
	transition: all 0.2s linear;
}

.hamburger_menu:hover {
	color: var(--green);
}

.hamburger_menu {
	font-family: Satoshi-Medium;
}

.hamburger_menu:focus,
.hamburger_menu:active:focus {
	box-shadow: none;
	border: none;
	background: transparent;
	outline: none;
}

.mobile-menu .offcanvas-end {
	width: 320px;
}

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

.mobile-menu .offcanvas-body {
	padding: 0px;
	background: var(--green);
}

.mobile-menu .offcanvas-top {
	/* min-height: 100vh; */
	min-height: calc(100% + 1px);
}

.page-side-bar {
	position: relative;
}

.logo-side {
	padding-bottom: 30px;
	margin-bottom: 40px;
	text-align: center;
	border-bottom: 1px solid #858585;
}

.side-bar-list {
	/* height: calc(100vh - 91px); */
	min-height: calc(100vh - 91px);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 15px;
	padding-right: 15px;
}

.side-bar-list li {
	padding: 6px 0px;
	margin: 0px;
}

.side-bar-list li:last-child {
	margin-bottom: 0px;
}

.side-bar-list li a {
	padding: 0px 0px;
	/* transition: all 0.2s linear; */
	text-decoration: none;
	display: block;
	font-size: 88px;
	line-height: 88px;
	width: fit-content;
	position: relative;
	font-family: Satoshi-Light;
}

.page-side-bar h1,
.page-side-bar h1 span,
.side-bar-list li a {
	color: #fff;
	font-size: 70px;
	line-height: 70px;
}

.logo-side img {
	width: 100px;
}

.btn-close_menu {
	width: auto;
	height: auto;
	padding: 0px;
	color: #fff !important;
	background: none;
	opacity: 1;
	border: none;
	box-shadow: none !important;
	position: relative;
}

.btn-close_menu:hover {
	color: var(--black);
}

.btn-close_menu:focus,
.btn-close_menu:active:focus {
	box-shadow: none;
}


.nav-logo {
	width: 213px;
}

.mobile-menu .offcanvas {
	transition: transform .8s ease-in-out !important;
}

/* .nav_inner_bar {
    position: absolute;
top: 0px;
left: 0px;
width: 100%;
} */

.nav_inner_flex {
	justify-content: space-between;
	align-items: center;
}

.nav_bottom .border_x {
	height: 15px;
}

/*====================== header end ====================== */


/*====================== Super Story Page ====================== */

.ss_box_i h2,
.ss_box_i .s_box_p1 {
	margin-bottom: 25px;
}

.ss_box_i li {
	margin-bottom: 22px;
}

.ss_box_i .s_box_p1,
.ss_box_i .s_box_p1 b {
	font-size: 32px;
}

.ss_box_i .s_box_p2,
.ss_li_numb {
	font-size: 24px;
}

.ss_li_numb {
	color: #A2A09D;
	margin-right: 24px;
}

.ss_box_i {
	height: 100%;
}

.ss_box_i img {
	height: 100%;
	object-fit: cover;
}

/* vintage page */

.vintage_grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	background-color: var(--black);
}

.vintage_p_box {
	background: var(--lite_grey);
	transition: all 0.2s linear;
}

.vintage_p_inner {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.vintage_p_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s linear;
}

.vintage_p_box:hover img {
	transform: scale(1.1);
}

.vintage_box_empty {
	display: block;
}

/* 404 page */

.page_404_main {
	padding: 150px 20px;
	height: calc(100vh - 100px);
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.page_404_main h1 {
	margin-bottom: 32px;
	font-size: 55px;
}

/* super furniture */


.grid_client {
	display: grid;
	gap: 1px;
	background-color: var(--black);
	grid-template-columns: repeat(6, 1fr);
}

.client_logo_wrp {
	height: 150px;
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	background: var(--lite_grey);
	transition: all 0.1s linear;
}

.client_logo_wrp img,
.client_logo_wrp svg {
	width: auto;
	max-width: 63%;
	max-height: 70%;
}

.client_logo_wrp svg {
	fill: var(--black);
	transition: all 0.1s linear;
}

.client_logo_wrp:hover svg {
	fill: var(--green);
}

.mobile_bg_furniture {
	display: none !important;
}

/* ============= hello Page ================ */
.hellow_number {
	display: inline-block;
	transition: all 0.2s linear;
}

.hellow_number:hover {
	color: var(--green);
}

.address_box,
.hellow_number {
	font-size: 32px;
	line-height: 1.1;
}

.address_box,
.contact_links {
	margin-top: 15px;
}

.contact_map iframe {
	width: 100%;
	height: 520px;
}

/* contact form 7 style */
.custom_form_main .row {
	margin: 0px -12px;
	row-gap: 35px;
}

.custom_form_main .col-form {
	padding: 0px 12px !important;
}

.custom_form_main input,
.custom_form_main textarea {
	background-color: transparent !important;
	border-radius: 0px;
	color: var(--black);
	margin-bottom: 0px;
	font-size: 18px;

}

.custom_form_main input::placeholder,
.custom_form_main textarea::placeholder {
	color: var(--black);
	font-size: 18px;
}

.custom_form_main input {
	height: 40px;
	border: none;
	border-bottom: 1px solid var(--black);
	padding: 4px 0px;
}

.custom_form_main input {
	width: 100%;
}

.custom_form_main textarea {
	height: 197px;
	border: 1px solid var(--black);
	padding: 20px 15px 15px 15px;
	resize: none;
	width: 100%;
}

.custom_form_main input:focus,
.custom_form_main input:active:focus {
	box-shadow: none;
	outline: none;
	border: none;
	border-bottom: 1px solid var(--black);
}

.custom_form_main textarea:focus,
.custom_form_main textarea:active:focus {
	box-shadow: none;
	outline: none;
	border: 1px solid var(--black);
}

.custom_form_main input.wpcf7-submit {
	height: 40px;
	padding: 4px 30px;
	margin-top: 32px;
	transition: all 0.2s linear;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px;
	background: var(--green) !important;
	color: var(--white);
	border: none;
	width: 100%;
}

.custom_form_main input.wpcf7-submit:hover {
	background: var(--black) !important;
}

.custom_form_main .wpcf7-spinner {
	display: none;
}

.video_home {
	width: 100%;
	/* height: auto; */
	height: calc(100vh - 100px);
	display: block;
	object-fit: cover;
}

/* navigation animation */

.side-bar-list li a::before {
	content: "super";
	opacity: 0;
	text-align: center;
	width: 0;
	left: 0;
	font-family: Satoshi-Bold;
	font-size: 70px;
	line-height: 70px;
	color: var(--white);
	/* transition: all 800ms 10ms cubic-bezier(0.455, 0.03, 0.515, 0.955); */
	/* transition: all 0.1s linear; */
	position: absolute;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%);
}

.side-bar-list li a:hover {
	padding-left: 195px;
}

.side-bar-list li a:hover::before {
	opacity: 1;
	width: auto;
	z-index: 0;
}


/* ============= profile sliders ============= */
#news_tcker_id_1,
#news_tcker_id_3 {
	direction: rtl;
	margin-top: -1px;
}

#news_tcker_id_1 .slick-slide,
#news_tcker_id_3 .slick-slide {
	direction: ltr;
}

.profile_slider_wrp {
	pointer-events: none;
}

.profile_sec {
	overflow: hidden;
}

/* footer form */
.footer_form {
	position: relative;
}

.footer_form .wpcf7-spinner {
	display: none;
}

.footer_form input.wpcf7-submit,
.footer_form input.wpcf7-submit:focus,
.footer_form input.wpcf7-submit:active:focus {
	border: none !important;
	position: absolute;
	top: 0px;
	padding-right: 30px;
	right: 0px;
	transition: all 0.2s linear;
	background: url(../images/news_letter_black.svg);
	background-size: 22px auto;
	background-repeat: no-repeat;
	background-position-x: right;
	background-position-y: 10px;
	z-index: 2;
	background-color: transparent !important;
}

.footer_form input.wpcf7-submit:hover {
	opacity: 0.5;
}

/* .footer_form input.wpcf7-submit:hover  {
	    background: url(../images/news_letter_green.svg) !important;
    transition: all 0.2s 
linear !important;
    border: none !important;
    position: absolute;
    bottom: 0px;
    padding-right: 30px;
    right: 0px;
    transition: all 0.2s 
linear;
    background-size: 22px auto !important;
    background-repeat: no-repeat !important;
    background-position-x: right !important;
    background-position-y: 10px !important;
    z-index: 2;
} */

.footer_form input.wpcf7-submit:hover {
	color: var(--black);
	/* color: var(--green); */
}

.footer_form input.wpcf7-validates-as-email {
	width: 100%;
}

/* Home Banner video animation */
#myVideo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.4s ease-in-out;
	background: #000;
	/* fallback background */
}

/* When hidden */
#myVideo.hidden {
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}

/* Main content (hidden behind video initially) */
.main-content {
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

/* Show content when video fades out */
.main-content.visible {
	opacity: 1;
}

/* =================== animation text one by one =================== */

.curtain-title {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

/* The image itself */
.curtain-title img {
	display: block;
	width: 100%;
	height: auto;
}

/* The curtain layer */
.curtain-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--lite_grey);
	/* curtain color */
	transform-origin: right;
	animation: curtainReveal 2.5s ease-out forwards;
	animation-delay: 0.4s;
	/* wait 0.5s before revealing */
}

/* Animation: slides the curtain from left to right */
@keyframes curtainReveal {
	0% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0);
	}
}

/* ========== floating form label animation ======== */

.my_floating_class1 {
	position: absolute;
	left: 12px;
	top: 10px;
	transition: 0.2s all;
	pointer-events: none;
}

.my_floating_class1.float_above {
	top: -8px;
	font-size: 12px;
}

.text_area_wrap .my_floating_class1 {
	left: 28px;
	top: 6px;
}

.custom_form_main .wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 14px;
	position: absolute;
	bottom: -32px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0px 0px !important;
}


/* ========= Image curtain animation from top to bottom =========== */

.curtain_box {
	position: relative;
	overflow: hidden;
}

.curtain {
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--lite_grey);
	z-index: 1;
	left: 0px;
	bottom: 0px;
}

[data-aos="example-anim2"] {
	height: 100%;
	transition-property: height;
}

[data-aos="example-anim2"].aos-animate {
	height: 0px;
}


/* ============ typing animation ============ */

.typeText {
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	animation: blink 0.7s step-end infinite;
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}

.word1,
.word2 {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: bottom;
	visibility: hidden;
}

.heading_title,
.heading_title span {
	font-family: "Satoshi-Light-woff2", sans-serif;
	font-size: 130px;
	line-height: normal;
	letter-spacing: -2.9px;
}

.typeText img {
	height: 80px;
	width: auto;
	display: inline-block;
	z-index: 1;
	position: relative;
}

.heading_title {
	text-align: center;
}

.heading_title br {
	display: none;
}

.heading_title span.bold_text {
	font-family: "Satoshi-Bold-woff2", sans-serif;
}

.heading_title {
	margin-bottom: 20px;
}

.type_banner {
	justify-content: center;
	align-items: center;
	padding: 20px 20px;
	min-height: 500px;
}

.typeText img.letter_v {
	margin-right: -10px;
}

.typeText img.letter_g {
	height: 110px;
	margin: 0px -15px;
}

.typeText img.letter_a {
	margin-right: -10px;
}

.typeText img.letter_u {
	margin: 0px -11px;
}

.typeText img.letter_r {
	margin-right: -25px;
}

/* 404 image */

.image_404{
	max-width: 400px;
}













/* ============ responsive ============ */

@media only screen and (min-width: 1440px) {

	/* profile slider */
	.profile_img {
		height: 250px;
		width: 250px;
	}

	.profile_img img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.client_logo_wrp {
		height: 180px;
	}

}

@media only screen and (min-width: 1680px) {

	.page-side-bar h1,
	.page-side-bar h1 span,
	.side-bar-list li a {
		color: #fff;
		font-size: 88px;
		line-height: 88px;
	}

	.side-bar-list li a::before {
		font-size: 88px;
		line-height: 88px;
	}

	.side-bar-list li a:hover {
		padding-left: 245px;
	}

	/* profile slider */

	.profile_img {
		height: 250px;
		width: 250px;
	}

	.client_logo_wrp {
		height: 210px;
	}

	/* 404 page */
	.page_404_main h1 {
		margin-bottom: 32px;
		font-size: 70px;
	}

	/* typing text */

	.heading_title,
	.heading_title span {
		font-size: 170px;
	}

	.type_banner {
		min-height: 650px;
	}

	.typeText img {
		height: 112px;
	}

	.typeText img.letter_g {
		height: 130px;
		margin: 0px -20px;
	}
}

@media only screen and (max-width: 1365px) {

	/* home */
	.font_72 {
		font-size: 62px;
	}

	.belive-img {
		height: 485px;
		width: 540px;
	}

	.main_logo_iner {
		padding: 160px 30px 0px 30px;
	}

	.page-side-bar h1,
	.page-side-bar h1 span,
	.side-bar-list li a {
		font-size: 60px;
		line-height: 60px;
	}

	.side-bar-list li a::before {
		font-size: 60px;
		line-height: 60px;
	}

	.side-bar-list li a:hover {
		padding-left: 168px;
	}

	/* super story page */
	.ss_box_i .s_box_p1,
	.ss_box_i .s_box_p1 b {
		font-size: 25px;
	}

	.ss_box_i .s_box_p2,
	.ss_li_numb {
		font-size: 22px;
	}

	/* hello page */
	.address_box,
	.hellow_number {
		font-size: 28px;
	}

	.video_home {
		height: auto;
	}

	.image_404 {
    max-width: 320px;
}
}

@media only screen and (max-width: 1199px) {
	.font_72 {
		font-size: 52px;
	}

	.colleection_box_i h3 {
		font-size: 30px;
	}

	.belive-img {
		height: 355px;
		width: 480px;
	}

	.belive-innerline {
		font-size: 34px;
		line-height: 34px;
	}

	.believe-mainline {
		padding: 18px 15px;
	}

	.contact_wraper .row {
		padding-top: 80px;
	}

	footer .footer_row_1 {
		padding-top: 100px;
	}

	.main_logo_iner {
		padding: 100px 30px 0px 30px;
	}

	.page-side-bar h1,
	.page-side-bar h1 span,
	.side-bar-list li a {
		font-size: 52px;
		line-height: 56px;
	}

	.side-bar-list li a::before {
		font-size: 52px;
		line-height: 52px;
	}

	.side-bar-list li a:hover {
		padding-left: 148px;
	}

	/* super story page */
	.ss_box_i .s_box_p1,
	.ss_box_i .s_box_p1 b {
		font-size: 22px;
	}

	.ss_box_i .s_box_p2,
	.ss_li_numb {
		font-size: 20px;
	}

	/* hello page */
	.address_box,
	.hellow_number {
		font-size: 25px;
	}

	.contact_map iframe {
		height: 420px;
	}

	/* 404 page */

	.page_404_main h1 {
		margin-bottom: 25px;
		font-size: 45px;
	}

	/* typing text */
	.heading_title,
	.heading_title span {
		font-size: 100px;
	}

	.typeText img {
		height: 70px;
	}

	.type_banner {
		min-height: 400px;
	}

	.typeText img.letter_g {
		height: 80px;
		margin: 0px -11px;
	}
}

@media only screen and (max-width: 991px) {
	.font_72 {
		font-size: 43px;
	}

	.belive-img {
		height: 315px;
		width: 340px;
	}

	.contact_wraper .row,
	footer .footer_row_1 {
		padding-top: 80px;
	}

	.news_grid_link h2,
	.news_grid_link h2 span {
		line-height: 47px;
	}

	/* super furniture page */
	.client_logo_wrp {
		height: 110px;
	}

	/* hello page */
	.address_box,
	.hellow_number {
		font-size: 20px;
		line-break: anywhere;
	}

	.video_home {
		height: auto;
		min-height: 700px
	}

	/* 404 page */

	.page_404_main h1 {
		font-size: 40px;
	}
	.image_404 {
    max-width: 280px;
}
}


@media only screen and (max-width: 767px) {
	.profile_gid_1 {
		grid-template-columns: repeat(4, 1fr);
	}

	.news_grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.belive-img {
		display: none;
	}

	.super_collec_main .row .col_collection:nth-last-child(2),
	.company_box_1.b_right {
		border-bottom: 1px solid var(--black);
		border-right: none;
	}

	/* super story page */
	.super_mission_row1 .b_right,
	.super_mission_row2 .b_right {
		border-right: 0px;
	}

	.super_mission_row2 .b_right {
		border-top: 1px solid var(--black);
	}

	.super_mission_row2 {
		flex-direction: column-reverse;
	}

	/* vintage page */

	.vintage_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vintage_box_empty {
		display: none;
	}

	.super_vintage_p .super_mission_row1 .col_ss.b_right {
		border-bottom: 1px solid var(--black);
	}

	/* super furniture page */
	.grid_client {
		grid-template-columns: repeat(3, 1fr);
	}

	.client_logo_wrp {
		height: 140px;
	}

	/* typing text */

	.heading_title br {
		display: block;
	}

	.type_banner {
		min-height: 360px;
	}

	/* typing text */
	.heading_title,
	.heading_title span {
		font-size: 80px;
	}

	.typeText img {
		height: 50px;
	}

	.type_banner {
		min-height: 300px;
	}

	.typeText img.letter_g {
		height: 70px !important;
		margin: 0px -5px;
	}

	.typeText img.letter_u {
		margin: 0px -10px 0px -3px;
	}

	.typeText img.letter_r {
		margin-right: -25px;
	}

	.typeText img.letter_r {
		margin-right: -11px;
	}

	.banner_story_bg .heading_title br {
		display: none;
	}

/* 404 page */
	.page_404_main{
    padding: 100px 20px;
    height: auto;
}
.image_404 {
    max-width: 230px;
}
}

@media only screen and (max-width: 575px) {
	.nav-logo {
		width: 160px;
	}

	.profile_gid_1 {
		grid-template-columns: repeat(3, 1fr);
	}

	.middle_text {
		padding: 30px 0px;
	}

	.banner_img {
		height: 690px;
	}

	.banner_img img {
		height: 100%;
		object-fit: cover;
	}

	.type_banner.banner_img {
		min-height: 300px;
	}

	.type_banner.banner_img img {
		height: 50px;
		object-fit: inherit;
	}

	.middle_text h2 {
		padding: 0px 15px;
	}

	.middle_text h2,
	.middle_text h2 span {
		font-size: 24px;
	}

	.middle_text {
		padding: 20px 0px;
	}

	.super_story .b_right {
		border-bottom: 1px solid var(--black);
		border-right: none;
	}

	.story_text_wrap,
	.vintage_text {
		margin-top: 20px;
	}

	.news_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news_grid_link img {
		height: 100%;
		object-fit: cover;
	}

	.font_72 {
		font-size: 40px;
	}

	.empty_news {
		display: none;
	}

	.vintage_img {
		height: 600px;
	}

	.vintage_img img {
		height: 100%;
		object-fit: cover;
		object-position: 84% 0px;
	}

	.vingate_wrap {
		justify-content: start;
		flex-direction: column;
		height: 100%;
	}

	.news_text_wrap {
		justify-content: space-between;
		flex-direction: column;
		height: 100%;
	}

	.top_h {
		flex-direction: column;
	}

	.page-side-bar h1,
	.page-side-bar h1 span,
	.side-bar-list li a {
		font-size: 40px;
		line-height: 42px;
	}

	.side-bar-list li a::before {
		font-size: 40px;
		line-height: 42px;
	}

	.side-bar-list li a:hover {
		padding-left: 115px;
	}

	.side-bar-list {
		justify-content: start;
		height: calc(100vh - 81px);
	}

	.super_collec_main .read_more_link {
		margin-top: 10px;
	}

	.colleection_box_i a {
		height: 194px;
	}

	.colleection_box_i h3 {
		font-size: 28px;
	}

	.belive-innerline {
		font-size: 28px;
		line-height: 28px;
	}

	.company_box {
		column-count: 2;
	}

	a,
	p {
		font-size: 16px;
	}

	.privacy_bar {
		justify-content: space-between;
		align-items: self-start;
		flex-direction: column;
		row-gap: 4px;
	}

	.main_logo_iner {
		padding: 60px 30px 0px 30px;
	}

	.belive-innerline svg {
		width: 20px;
	}

	.contact_wraper .row,
	footer .footer_row_1 {
		padding-top: 50px;
	}

	.banner_s_story .banner_img {
		height: 230px;
	}

	.banner_s_story .banner_img img {
		object-fit: contain;
	}

	.desk_bg_furniture {
		display: none !important;
	}

	.mobile_bg_furniture {
		display: block !important;
	}

	.video_home {
		width: 100%;
		height: 690px;
		min-height: 690px;
		display: block;
		object-fit: cover;
	}

	.profile_slider_wrp .slick-slide {
		width: 130px;
	}


	/* super furniture */

	.client_logo_wrp {
		height: 100px;
	}

	.grid_client {
		margin-left: 1px;
	}

	.for_mobile_bg .banner_img {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		padding: 0px 20px;
	}

	/* hello page */
	.contact_map iframe {
		height: 327px;
	}

	/* 404 page */
	.page_404_main {
		min-height: calc(100vh - 100px);
		height: auto;
	}

	.page_404_main h1 {
		font-size: 36px;
	}


	.curtain-title::before {
		animation: curtainReveal 1.5s ease-out forwards;
		animation-delay: 0.3s;
	}

	/* typing animation */
	.heading_title,
	.heading_title span {
		font-size: 85px;
	}

	.type_banner.banner_img img {
		height: 50px;
	}

	.banner_story_bg .heading_title br {
		display: block;
	}

	.banner_story_bg .word2 {
		margin-top: -20px;
		display: block;
	}

	.typeText img.letter_u {
		margin: 0px -6px 0px 0px;
	}

	.typeText img.letter_r {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 424px) {
	/* 404 page */

	.page_404_main {
		padding: 150px 20px;
	}

	/* typing animation */
	.heading_title,
	.heading_title span {
		font-size: 75px;
	}

	.type_banner.banner_img img {
		height: 48px;
	}

}

@media only screen and (max-width: 374px) {

	.page-side-bar h1,
	.page-side-bar h1 span,
	.side-bar-list li a {
		font-size: 36px;
		line-height: 38px;
	}

	.side-bar-list li a::before {
		font-size: 36px;
		line-height: 38px;
	}

	.side-bar-list li a:hover {
		padding-left: 102px;
	}

	/* 404 page */
	.page_404_main h1 {
		font-size: 36px;
	}

	/* CONTACT PAGE */
	.address_box,
	.hellow_number {
		font-size: 19px;
	}

	/* typing animation */
	.heading_title,
	.heading_title span {
		font-size: 65px;
	}

	.type_banner.banner_img img {
		height: 38px;
	}

	.type_banner.banner_img {
		min-height: 240px;
	}

	.typeText img.letter_g {
		height: 50px !important;
		margin: 0px -5px;
	}
}