/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 2rem;
	list-style: none;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
}

.load-failed {
	text-align: center;
	margin-top: calc(25%);
	color: var(--main-color);
}

.btn {
	border: none;
}
span.bl {
	font-weight: 300;
}
#cp {
	text-decoration: none;
}


#space {
	padding-bottom: 10vh;
}
.page-white-space {
	padding-top: 50vh;
}

.navbar .active {
	color: #224aaa;
}

:root {
	--text-color: #000000;
	--main-color: #224aaa;
}

.back-crumb {
	position: fixed;
	top: 20vh;
	margin-left: 87px;
	z-index: 1000;
	padding: 6px;
	font-size: 15px;
	background-color: var(--main-color);
	color: #fbfcfd;
	border: 1px solid var(--main-color);
	border-radius: 15px 0px 0;
}

section {
	padding: 50px 10%;
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	height: 80px;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fbfcfd; /*edecea*/
	animation: slide-in ease-in 2s;
}

.logo img {
	width: 180px;
	height: 50px;
	padding-left: 20px;
}

.navbar {
	position: relative;
	display: flex;
	padding: 18px 100px;
	z-index: 10;
}

@keyframes slide-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.navbar a {
	font-size: 1rem;
	padding: 10px 20px;
	font-weight: 500;
	color: var(--text-color);
	text-decoration: none;
}
.navbar a:hover {
	color: var(--main-color);
}

#menu-icon {
	font-size: 2rem;
	cursor: pointer;
	display: none;
	color: var(--main-color);
}
.home {
	width: 100%;
	min-height: 100vh;
	background-image: url("../images/poster-3.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	z-index: -1;
	animation: fade-in ease-in 2s;
}

@keyframes fade-in {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
	100% {
		transform: scale(1.0);
		opacity: 1;
	}
}

.home-upholstery {
	width: 100%;
	min-height: 100vh;
	background-image: url("../images/poster-4.webp");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	z-index: -1;
	animation: smooth-in ease-in 2s;
}

@keyframes smooth-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.home-text {
	z-index: 1;
}

.home-text h1 {
	font-size: 2.7rem;
}
.home-text p {
	font-size: 0.938rem;
	margin: 0.4rem 0 1.8rem;
}
.home-text span {
	color: var(--main-color);
}
.btn {
	padding: 10px 14px;
	background: var(--main-color);
	color: #fff;
	border-radius: 0.3rem;
	font-size: 14px;
}
.btn:hover {
	background: #111;
}

.heading {
	text-align: center;
}

.heading span {
	font-size: 14px;
	font-weight: 500;
	color: var(--main-color);
	text-transform: uppercase;
}

.works-container, .new-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(345px, auto));
	gap: 1rem;
	margin-top: 2rem;
}

.box {
	position: relative;
	box-shadow: 1px 4px 4px rgb(0, 0, 0, 0.1);
	border-radius: 44px 4px 4px 4px;
}

.box .box-img {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 44px 4px 0 0;
}

.box .box-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.box .box-img img:hover {
	transform: scale(1.1);
	transition: 0.5s;
}

@keyframes appear {
	0% {
		transform: scale(0.8);
		opacity: 0%;
	}
}


.transition1 {
	animation: appear 2s ease-in;
}

.transition2 {
	animation: appear 2s ease-in;
}

.title-price {
	display: flex;
	justify-content: space-between;
	padding: 12px;
}

.title-price h3 {
	font-size: 1rem;
	font-weight: 600;
}

.box span {
	font-size: 1.1rem;
	font-weight: 500;
	padding-left: 12px;
	color: var(--main-color);	
}

.stars .bx {
	color: var(--main-color);
}
.box .bx-more {
	position: absolute;
	bottom: 0;
	font-family: 'Poppins', sans-serif;
	right: 0;
	padding: 7px;
	font-size: 14px;
	color: #fff;
	border-radius: 4px 0px 0;
	background: var(--main-color);
}
.box .bx-more:hover {
	background: #111;
}

.new-container .box {
	border-radius: 4px;
}
.new-container .box .box-img {
	border-radius: 4px;
}

.about {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding-top: 120px;
}

.about-img img {
	width: 80%;
	border-radius: 10px;
	object-fit: contain;
}
.about-text span {
	font-weight: 500;
	text-transform: uppercase;
	color: var(--main-color);
}
.about-text p {
	font-size: 0.938rem;
	margin: 0.5rem 0 1.4rem;
}

.about-text span.h2-span {
	color: var(--main-color);
	font-weight: 600;
	text-transform: none;
}

.footer {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 12px;
	color: #fbfcfd;
}
.footer a {
	text-decoration: none;
	color: #fbfcfd;
}

.designer {
	padding: 20px;
	text-align: center;
}

.designer a {
	color: var(--main-color);
	font-weight: bold;
	text-decoration: none;
}

.clients-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, auto));
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
}

.clients-container img {
	width: 200px;
	filter: grayscale(1);
}

.clients-container img.smaller {
	width: 150px;
	filter: grayscale(1)
}

.clients-container img.smaller:hover {
	width: 150px;
	filter: grayscale(0);
}

.clients-container img:hover {
	width: 200px;
	filter: grayscale(0);
}

.newsletter {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url("../images/newsletter-bg-1.webp");
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.newsletter h2 {
	color: #fff;
}

.newsletter-box {
	display: flex;
	align-items: center;
	margin-top: 2rem;
}

.newsletter-box input {
	width: 260px;
	height: 44px;
	border: none;
	outline: none;
	background: #fff;
	padding: 10px;
}

.newsletter-box .btn {
	height: 44px;
	padding: 11px;
	border-radius: 0;
	font-weight: 500;
	text-transform: uppercase;
}

.content-footer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, auto));
	gap: 1rem;
	line-height: 1.3rem;
}

.footer-box h2 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-box .highlight {
	color: var(--main-color);
}

.footer-box p {
	font-size: 0.98rem;
	margin-bottom: 10px;
	max-width: 320px;
}

.social {
	display: flex;
	align-items: center;
}
.social a {
	font-size: 24px;
	margin-right: 10px;
	color: var(--main-color);
}
.social a:hover {
	color: var(--text-color);
}

.footer-box h3 {
	font-weight: 545;
	margin-bottom: 10px;
}

.footer-box li a {
	color: var(--text-color);	
}

.footer-box li a:hover {
	color: var(--main-color);
}

.contact-info {
	display: flex;
	flex-direction: column;
	color: var(--text-color);
}


/*Wave Start*/

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 0;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background: transparent;
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}
.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

/*Wave End*/

/*Landing Responsive Start*/


/*Landing Responsive End*/

/*SheenChair Start*/

.sheenChair-section {
	display: grid;
	padding-top: 120px;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	z-index: 1;
}

.sheenChair-div iframe {
	width: 600px;
	height: 500px;
	border: none;
	border-color: transparent;
}

.sheenChair-div img {
	width: 200px;
	height: 200px;
	display: none;
}

.img-next-to-sheen-chair img {
	width: 450px;
	height: 400px;
}

/*SheenChair End*/

/*Responsive*/

@media (min-width: 992px) {
	.left {
		background: #fbfcfd;
	}
	.right {
		background: #fbfcfd;
	}
}

/*Affects 0px - 991px Width*/
@media (max-width: 991px) {

	.home {
		background: #fff;
	}

	.home-upholstery {
		background: #fff;
	}

	.logo img {
		width: 130px;
		height: 40px;
		padding-left: 20px;
	}

	.left {
		background:var(--main-color);
	}

	.right {
		background:var(--main-color);
	}

	section {
		padding: 50px 4%;
	}

	.clients-container img {
		width: 100px;
	}

	.clients-container img {
		width: 100px;
		filter: grayscale(1);
	}

	.clients-container img.smaller {
		width: 75px;
		filter: grayscale(1)
	}

	.clients-container img.smaller:hover {
		width: 75px;
		filter: grayscale(0);
	}

	.clients-container img:hover {
		width: 100px;
		filter: grayscale(0);
	}

}

@media (max-width: 881px) {
	.home-text h1 {
		font-size: 1.8rem;
	}

	.shop-container, .new-container {
		grid-template-columns: repeat(auto-fit, minmax(218px, auto));
	}
}

/*Affects 0px - 768px Width*/
@media (max-width: 768px) {

	.sheenChair-section {
		display: grid;
		padding-top: 120px;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		z-index: 1;
	}

	.sheenChair-div iframe {
		width: 300px;
		height: 200px;
		border: none;
		border-color: transparent;
	}

	.img-next-to-sheen-chair img {
		width: 225px;
		height: 200px;
	}

	#menu-icon {
		display: initial;
		margin-left: 20px;
	}

	/*Boxicons*/

	.bx-menu:before {
	    content: "\eb5f";
	    padding: 20px;
	}



	.header .navbar {
		position: absolute;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		background: #fff;
		box-shadow: 0 4px 4px rgb(0, 0, 0 /10%);
		transition: 0.2s ease;
		text-align: center;
	}

	.navbar {
		top: -100vh;
	}

	.navbar.active {
		top: 100%;
	}

	.navbar a {
		padding: 1.5rem;
		display: block;
	}

	.navbar a:hover {
		color: #fff;
		background: var(--main-color);
	}

	.about {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.about-img {
		padding-top: 1rem;
		order: 2;
	}

	.sheenChair-section {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 720px) {
	.waveTop {
    background-size: 50% 50px;
		}
	.waveMiddle {
	    background-size: 50% 70px;
	}
	.waveBottom {
	    background-size: 50% 50px;
	}
}

@media (max-width: 491px) {
	.home-text h1 {
		font-size: 1.7rem;
	}

	.shop-container, .new-container {
		grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	}

	.box .box-img {
		height: 300px;
	}

	.home {
		background-image: url("../images/poster-3-mobile.webp");
	}

	.home-upholstery {
		background-image: url("../images/poster-4-mobile.webp");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	.sheenChair-div iframe {
		display: none;
	}

	.sheenChair-div img {
		display: inline;
	}


}

@media (min-width: 128px) {
	.arrow-down {
		left: 55%;
	}
}


/*Scroll Down Indicator - by Wojtek Tymicki*/
.arrow-down{
  width:30px;
  height:20px;
  margin:0 0 0 -30px;
  position:absolute;
  padding: 20px;
  align-items: center;
  bottom:10px;
  -webkit-animation: arrow 0.5s 1s infinite ease-out alternate;
  
}

.arrow-down:hover{
   -webkit-animation-play-state: paused;
}

.left{
  position:absolute;
  height:10px;
  width:20px;
  -webkit-transform:rotate(240deg);
  top:10px;
  left:10px;
  -webkit-border-radius:4px;
  -webkit-transform-origin:5px 50%;
  -webkit-animation: leftArrow 0.5s 1s infinite ease-out alternate;
}

.right{
  position:absolute;
  height:10px;
  width:20px;
  -webkit-transform:rotate(-60deg);
  top:10px;
  left:10px;
  -webkit-border-radius:4px;
  -webkit-transform-origin:5px 50%;
  -webkit-animation: rightArrow 0.5s 1s infinite ease-out alternate;
}




@-webkit-keyframes arrow{
  0% {
    bottom:0px;
  }
  100%{
    bottom:40px;
  }
}


@-webkit-keyframes leftArrow{
  0% {
  }
  100%{
    -webkit-transform:rotate(225deg);
  }
}

@-webkit-keyframes rightArrow{
  0% {
  }
  100%{
    -webkit-transform:rotate(-45deg);
  }
}
