*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}
body, html{
	width: 100%;
	overflow:initial;
	/* overflow-x: hidden; */
}

body {
	margin: 0;
	--color-text: #dc6e25;
	--color-bg: #efded3;
	--color-link: #000;
	--color-link-hover: #dc6e25;
	--aspect-ratio: 1/1.5;
	--imgwidthmax: 500px;
	--size-title: 10rem;
	--font-weight-title: 400;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: turquoise, serif;
	font-size: 1.5rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.demo-1 {
	--color-text: #111;
	--color-bg: #bad5ca;
	--color-link-hover: #5c4541;
	--aspect-ratio: 32/17;
	font-size: 1.25rem;
	font-family: ivymode, sans-serif;
	--size-title: 15vw;
}

.demo-2 {
	--blendmode-title: difference;
	--size-title: 12vw;
}

.demo-3 {
	--color-text: #905348;
	--color-bg: #fff;
	--color-link: #8f8f76;
	--color-link-hover: #fff;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	--imgwidthmax: 400px;
	--color-description: #7e605b;
	--font-title: ivymode;
	--size-title: 9vw;
	--imgwidthmax: 600px;
}

.demo-4 {
	--color-text: #a9a798;
	--color-bg: #cccdb9;
	--color-link: #fff;
	--color-link-hover: #a9a798;
	--color-title: #fff;
	font-family: collier, sans-serif;
	--font-title: inherit;
	--font-weight-title: 100;
	font-size: 1.15rem;
	--imgwidthmax: 520px;
}

.demo-5 {
	--color-text: #f0f0f0;
	--color-bg: #000000;
	--color-link: #c5a45b;
	--color-link-hover: #f0f0f0;
	--color-title: #f0f0f0;
	font-family: input-mono, monospace;
	--font-title: inherit;
	font-size: 1.15rem;
	--aspect-ratio: 1/1.5;
	--font-weight-title: 800;
}

.demo-6 {
	--color-text: #e01723;
	--color-bg: #deaaad;
	--color-link: #c55b61;
	--color-link-hover: #1d1414;
	--color-title: #1d1414;
	font-family: ivymode, sans-serif;
	--font-title: inherit;
	font-size: 1.15rem;
	--aspect-ratio: 1/1.5;
	--imgwidthmax: 505px;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5, 0.5, 1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.page {
	display: grid;
	
	padding: 5vw;
	padding-top: 7vw;
	max-width: 1400px;
	margin: 0 auto;
	grid-template-columns: 100%;
	grid-template-areas: 'header' 'meta' 'grid';
	will-change: transform;
}

.page__title {
	/* grid-area: header; */
	margin: 0 0 1rem;
	font-size: 52px;
	text-align: center;
	font-weight: 700;
	width: 100%;
	position: absolute;
	margin-top: 120px;
	margin-bottom: 100px;
	font-family: ivymode;
}

.credits {
	text-align: center;
}

.credits--fixed {
	position: fixed;
	bottom: 5vw;
	margin: 0;
	left: 5vw;
	width: 90vw;
	text-align: right;
}

.credits--fixed::before {
	content: '';
	background: currentColor;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 5rem;
	width: 1px;
}

.meta {
	grid-area: meta;
}

.meta--center {
	justify-self: center;
	padding-top: 20vh;
}

.meta__links {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5;
}

.meta__links--column {
	flex-direction: column;
}

.meta__links a {
	margin: 0 1.5rem 0 0;
}

.meta__demos {
	margin-top: 1rem;
}

.meta__demo {
	display: inline-block;
	margin-right: 0.75rem;
}

.meta__demo--current {
	color: var(--color-link-hover);
	pointer-events: none;
}

.content {
	grid-area: grid;
	margin: 26vh 0 30vh;
}

.content--offset {
	display: grid;
	grid-template-columns: repeat(2, minmax(100px, 1fr));
	grid-gap: 30vh 10vw;
}

.content--full {
	width: 100vw;
	justify-self: center;
}

.content--padded {
	padding: 0 10vw;
}

.content__item {
	--imgwidth: calc(var(--imgwidthmax) * var(--aspect-ratio));
	width: var(--imgwidth);
	max-width: 100%;
	position: relative;
	will-change: transform;
	margin-bottom: 30vh;
	display: grid;
	grid-template-columns: 50% 50%;
}

.content__item--wide {
	grid-template-columns: 20% 80%;
}

.content__item--wide:nth-child(even) {
	grid-template-columns: 80% 20%;
}

.content--center .content__item {
	margin: 0 auto 60vh;
}

.content__item--expand {
	width: 100%;
	grid-template-columns: minmax(0, var(--imgwidth)) 1fr;
}

.content__item--expand:nth-child(even) {
	grid-template-columns: 1fr minmax(0, var(--imgwidth));
}

.content--alternate .content__item {
	max-width: 90vw;
}

.content--offset .content__item {
	margin: 0 auto 15vh;
}

.content--offset .content__item:nth-child(even) {
	align-self: end;
	margin-bottom: -20vh;
}

.content--alternate .content__item:nth-child(even) {
	margin-left: auto;
}

.content__item-imgwrap {
	position: relative;
	--imgwidth: 100%;
	margin: 0 auto;
	grid-area: 1 / 1 / 3 / 3;
	overflow: hidden;
	width: var(--imgwidth);
	padding-bottom: calc(var(--imgwidth) / (var(--aspect-ratio)));
	will-change: transform;
}

.demo-2 .content__item-imgwrap {
	outline: 1px solid transparent;
}

.content__item--expand .content__item-imgwrap {
	grid-area: 1 / 1 / 3 / 2;
}

.content__item--expand:nth-child(even) .content__item-imgwrap {
	grid-area: 1 / 2 / 3 / 3;
	justify-self: end;
}

.content__item-img {
	--overflow: 40px;
	height: calc(100% + (2 * var(--overflow)));
	top: calc(-1 * var(--overflow));
	width: 100%;
	position: absolute;
	background-size: cover;
	background-position: 50% 0%;
	will-change: transform;
	
}

.content__item-img--t1 {
	--overflow: 60px;
}

.content__item-img--t2 {
	--overflow: 80px;
}

.content__item-img--t3 {
	--overflow: 120px;
}

.content__item-number {
	opacity: 0.03;
	font-size: 25vw;
	position: absolute;
	top: -7vw;
	right: -10vw;
	line-height: 1;
}

.content__item:nth-child(even) .content__item-number {
	right: auto;
	left: -7vw;
}

.content__item-title {
	position: relative;
	font-size: var(--size-title);
	padding: 0 3vw;
	margin: calc(var(--size-title) * -1/2) 0 0 0;
	align-self: start;
	line-height: 1;
	font-family: var(--font-title);
	font-weight: var(--font-weight-title);
	color: var(--color-title);
	will-change: transform;
	mix-blend-mode: var(--blendmode-title);
}

.content--center .content__item-title {
	grid-area: 1 / 1 / 3 / 3;
	margin: auto;
}

.content__item-title--layer {
	padding: 0;
	z-index: 10;
	grid-area: 1 / 1 / 2 / 3;
	width: 100%;
	text-align: center;
}

.content__item-description {
	grid-area: 3 / 1 / 3 / 3;
	width: 70%;
	position: relative;
	margin: 0;
	padding: 1rem 0 0 0;
	color: var(--color-description);
}

.content--alternate .content__item-title,
.content__item--wide:nth-child(even) .content__item-description {
	grid-area: 3 / 1 / 4 / 2;
	justify-self: start;
}

.content--alternate .content__item:nth-child(even) .content__item-title,
.content__item--wide .content__item-description {
	grid-area: 3 / 2 / 4 / 3;
	justify-self: end;
	width: auto;
}

.content__item--expand .content__item-description {
	grid-area: 1 / 2 / 3 / 3;
	justify-self: start;
	align-self: start;
	padding: 0 2rem;
	width: 250px;
	font-size: 0.9rem;
}

.content__item--expand:nth-child(even) .content__item-description {
	grid-area: 1 / 1 / 3 / 2;
	justify-self: end;
	text-align: right;
}

.content__item-deco {
	position: absolute;
	top: 2rem;
	left: 10vw;
	height: 30%;
	width: 1px;
	background: #d79612;
}

.content__item-decobar {
	width: 140%;
	height: 25%;
	top: 20%;
	left: -20%;
	position: absolute;
	background: #dd525a;
	mix-blend-mode: color-burn;
}

@media screen and (min-width: 53em) {
	.page--layout-1 {
		grid-template-columns: 30% 70%;
		grid-template-areas: 'header header' '...  meta' 'grid grid';
	}

	.page--layout-2 {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: 'header meta' '...  meta' 'grid grid';
	}
}

@media screen and (max-width: 40em) {

	.content__item--expand .content__item-imgwrap,
	.content__item--expand:nth-child(even) .content__item-imgwrap {
		grid-area: 1 / 1 / 3 / 3;
	}

	.content__item--expand .content__item-description,
	.content__item--expand:nth-child(even) .content__item-description,
	.content__item--wide .content__item-description,
	.content__item--wide:nth-child(even) .content__item-description {
		grid-area: 3 / 1 / 4 / 3;
		padding: 1rem 0;
		width: 100%;
		text-align: left;
	}

	.content__item--wide .content__item-description {
		padding: 1rem;
	}

	.content--alternate .content__item-title,
	.content--alternate .content__item:nth-child(even) .content__item-title {
		grid-area: 1 / 1 / 4 / 2;
	}
}


/* menu code starts */
header {
	position: fixed;
	display: flex;
	top: 0;
	align-items: center;
	z-index: 200;
	justify-content: space-between;
	height: 80px;
	width: 100%;
}

header .logo {
	font-size: 25px;
	font-weight: 400;
	margin-left: 30px;
	text-transform: uppercase;
}

header .menu-open {
	margin-right: 30px;
}
header .menu-open:hover{
	cursor: pointer;
}
header .menu-open ion-icon {
	font-size: 40px;
	color: #905348;
}

/* .container {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100vh;
	width: 100%;
}

.container h1 {
	font-size: 350px;
	letter-spacing: 500px;
	font-weight: lighter;
	opacity: 0;
} */

.bg-image p {
	text-align: center;
	margin-top: 10px;
}

.bg-image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 450px;
	height: 700px;
	/* background-color: antiquewhite; */
	display: block;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.image {
	width: 500px;
	height: 700px;
	background-image: url(./bg.jpg);
	background-position: center center;
	background-size: cover;
	transform: translateY(1000px);
}

.menu-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #2b120b;
	z-index: 1000;
	transform: translateX(500%);
}

.menu-close {
	position: absolute;
	right: 30px;
	top: 40px;
	transform: translate(-50%, -50%);
	z-index: 100;
}
.menu-close:hover{
	cursor: pointer;
}
.menu-close ion-icon {
	font-size: 40px;
	color: antiquewhite;
}

.menu-items {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.menu-items-container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	width: 70%;
	margin-left: 10%;
	margin-right: 20%;
}

.menu-items .menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	font-size: 40px;
	overflow: hidden;
	cursor: pointer;
	font-weight: lighter;
}

.menu-items .line {
	width: 100%;
	height: 1px;
	transform-origin: left;
	overflow: hidden;
	background-color: #905348;
}

.menu-item .menu-item-number {
	font-style: italic;
	padding: 0px 20px;
	color: #905348;
	font-size: 25px;
}

.menu-item .menu-item-name {
	text-transform: uppercase;
	color: antiquewhite;
}

.menu-item .menu-item-sub {
	font-size: 15px;
	/* align-self: flex-start; */
	padding: 25px 0px;
	color: antiquewhite;
}

.menu-item .menu-item-icon {
	padding: 0px 20px;
}

.menu-item .menu-item-icon ion-icon {
	font-size: 25px;
	transform: rotate(45deg);
	color: #905348;
	font-weight: lighter;
}

.menu-container span {
	overflow: hidden;
}

/* menu code ends */

/* memories area starts */

/* .video-bx video{
border: 8px solid #ff7357;
} */

section.stacking-sec {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  }
  section.stacking-sec::after{
	position: absolute;
	content: "";
	background: rgb(0, 0,0, 0.3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  }
  section.stacking-sec div {
	position: absolute;
	top: 80%;
	left: 40%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 30px;
	/* background-color: rgba(255, 255, 255, 0.8); */
	width: 500px;
  }
  /* section.stacking-sec .vid */
  
  /* section.stacking-sec div h2 { text-align: center; } */
  
  section.stacking-sec:nth-of-type(1) { background-image: url(../img/bg/bg-1.webp); }

  /* section.stacking-sec:nth-of-type(1) { background:#310735;} */
  
  section.stacking-sec:nth-of-type(2) { background-image: url(../img/bg/bg-2.webp); }
  
  section.stacking-sec:nth-of-type(3) { background-image: url(../img/bg/bg-3.webp); }
  
  section.stacking-sec:nth-of-type(4) { background-image: url(../img/bg/bg-5.webp); }
  section.stacking-sec:nth-of-type(5) { background-image: url(../img/bg/bg-7.webp); }
  section.stacking-sec:nth-of-type(6) { background-image: url(../img/bg/bg-11.webp); }
  section.stacking-sec:nth-of-type(7) { background-image: url(../img/bg/bg-6.webp); }
  section.stacking-sec:nth-of-type(8) { background-image: url(../img/bg/bg-13.webp); }
  section.stacking-sec:nth-of-type(9) { background-image: url(../img/bg/bg-14.webp); }
  section.stacking-sec:nth-of-type(10) { background-image: url(../img/bg/bg-15.webp); }
  section.stacking-sec:nth-of-type(11) { background-image: url(../img/bg/bg-18.webp); }
  section.stacking-sec:nth-of-type(12) { background-image: url(../img/bg/bg-21.webp); }
  section.stacking-sec:nth-of-type(13) { background-image: url(../img/bg/bg-23.webp); }
  section.stacking-sec:nth-of-type(14) { background-image: url(../img/bg/bg-24.webp); }
  section.stacking-sec:nth-of-type(15) { background-image: url(../img/bg/bg-22.webp); }
  
  /* section.stacking-sec:nth-of-type(4) h2 { margin-bottom: 20px; } */
  
  .stacking-sec.active { background-color: #310735 !important; }
  
  .stacking-sec.active div{
	opacity: 1;
	top: 52%;
  }
  
  .after { opacity: 0; }
  
  .after div {
	opacity: 0;
	top: -10%;
  }
  
 
  
  /* Required Styles Start */
  
  .fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
  }
  .page-title  h1{
	/* grid-area: header; */
	/* margin: 0 0 1rem; */
	margin: 0;
	font-size: 52px;
	text-align: center;
	font-weight: 700;
	width: 100%;
	color: #fff;
	/* position: absolute; */
	padding-top: 120px;
	padding-bottom: 100px;
	font-family: ivymode;
}
  .unfixed {
	position: relative;
	width: 100%;
  }
  .page-title{
background: #310735;
  }
  .video-bx{
	z-index: 2;
  }
   /* video{ */
	/* border: 8px solid #fff; */
	/* width: 100%; */
	/* position: absolute;
	top: 0px;
	bottom: 0;
	left: 0px; */
	/* height: 580px; */
  /* }  */
  .img-frame{
	width: 100%;
  }
  .stacking-sec video {
	--c: #fff; /* the border color */
	--b: 10px;    /* the border thickness*/
	--g: 5px;     /* the gap on hover */
	
	padding: calc(8px + 12px);
	padding-top:10px;
	/* padding: calc(var(--g) + var(--b)); */
	--_g: #0000 25%,var(--c) 0;
	background: 
	  conic-gradient(from 180deg at top    var(--b) right var(--b),var(--_g))
	   var(--_i,200%) 0  /200% var(--_i,var(--b))  no-repeat,
	  conic-gradient(            at bottom var(--b) left  var(--b),var(--_g))
	   0   var(--_i,200%)/var(--_i,var(--b)) 200%  no-repeat;
	transition: .8s, background-position .8s .8s;
	cursor: pointer;
  }
  .stacking-sec.active {
	--_i: 100%;
	transition: .8s, background-size .8s .8s;
  }
  .video-bx h2{
	position: absolute;
	top: 50%;
	left: 370px;
	transform: translateY(-50%);
  }
  .video-bx  h2{
	/* grid-area: header; */
	/* margin: 0 0 1rem; */
	margin: 0;
	color: #fff;
	/* color: #ff7357; */
	font-size: 52px;
	text-align: start;
	font-weight: 500;
	width: 100%;
	/* position: absolute; */
	padding-top: 120px;
	padding-bottom: 100px;
	font-family: ivymode;
}
.horizontal-video  .video-bx h2{
	position:relative;
	top: auto;
	left: auto;
	transform: translateY(0%);
	padding-top: 0px;
	padding-bottom: 00px;
  }
  .horizontal-video  .video-bx{
	width: 580px;
	left: 50%;
  }
  .horizontal-video .video-bx h2{
	text-align: center;
  }
.wishes-page .logo{
	color: #fff;
}
.wishes-page .menu-open ion-icon{
	color: #fff;
}
@media (max-width: 991px) {
	section.stacking-sec div {
	    top: 45%;
		width: 100%;
		left: 50%;
		text-align: center;
	  }
	  section.stacking-sec  .video-bx h2{
		position:relative;
		top: auto;
		left: auto;
		transform: translateY(0%);
		padding-top: 20px;
		padding-bottom: 00px;
	  }
	  section.stacking-sec .video-bx{
		
		left: 50%;
	  }
	  section.stacking-sec .video-bx h2{
		text-align: center;
	  }
	  .video-bx h2{
font-size: 28px;
line-height: 1;
	  }
	  .horizontal-video .video-bx {
        width: 100%;
	  }
	  .horizontal-video video{
		padding-bottom: 40px;
		padding-top: 0px;
	  }
}
/* @media screen and (max-width: 40em) {
	.video-bx  h2{
		display: none;
	}
} */

/* memories area ends */


/* video banner starts */

#videoBg {
	/* position: fixed; */
	/* z-index: -1; */
	width: 100%;
	height: 100vh;
	object-fit: cover;
	margin-bottom: -7px;
  
  }
  .overlay3{
	
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0, .4);
	z-index: 2;
  }
  .border-r {
	border-radius: 10px;
  }
  
  .people-img img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
  }
  
  .rel-vid {
	position: relative;
  }
  
  .rel-vid .info {
	position: absolute;
	top: 35%;
	left: 40%;
	font-size: 60px;
	font-weight: 700;
	z-index: 2;
  }
  .moving{
	position: absolute;
	top: 50%;
	left: 50%;
  
	transform: translate(-50%,-50%);
	font-size: 60px;
   
	font-weight: 700;
	z-index: 2;
	width: 100%;
	text-align: center;
  }
  .moving h1{
	text-align: center;
	font-family: ivymode;
	color: #fff;
  }
  .pt-130{
	padding-top: 130px;
  }
  @media (max-width: 991px) {
	
  
	#videoBg {
		height: 80vh;
	}
	.moving{
	  top: 30%;
  left: 50px;
  transform: translate(0px,0px);
	}
  
  }
  
  @media (max-width: 767px) {
  
	.video-bx h2 {
		
		left: 00px;
		
	}
	.moving{
	  top: 40%;
  left: 0px;
  transform: translate(0px,0px);
	}
  .horizontal-video .video-bx{
	width: 100%;
	
  }
  .horizontal-video .video-bx video{
	width: 100%;
	
  }
	#videoBg {
		height: 50vh;
		object-position: 84% 50%;
	}
  .wish-page #videoBg {
	height: 39vh;
	
}
  }
.py-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.moving h1{
	font-size: 70px;
}
a{
	text-decoration: none!important;
}
.guitar-videos video{
	width: 100%;
}
.guitar-2 video{
	height:24vw;
}
.text-name h2{
	font-size: 48px;
	font-family: ivymode;
	color: #fff;
}
.text-name-2 h2{
	font-size: 48px;
	font-family: ivymode;
	color: #905348;
	
}
.text-name-2 h3{
	font-size: 38px;
	font-family: ivymode;
	color: #905348;
	margin-bottom: 20px;
}

.coding{
	/* background: url("../img/binary.webp"); */
	background: #310735;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* height: 150vh; */
	position: relative;
}
#particles-js{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}
.coding-part{
	position: relative;
	/* padding: 50px; */
	/* padding-right: 50px; */
	width: 100%;
	z-index: 2;
}
.pos-rel{
	position: relative;
}
.dreamescape-img{
	padding-right: 50px;
}
.dreamescape-img img{
	width: 100%;
	
}
.pb-100{
	padding-bottom: 100px;
}
.pt-100{
	padding-top: 100px;
}

.explorer-img img{
	width: 100%;
}
.visit-btn a {
	width: auto;
	height: 55px;
	display: inline-block;
	line-height: 55px;
	padding: 0px 30px;
	text-transform: uppercase;
	background: #ff7357;
	font-weight: 600;
	border-radius: 50px;
	color: #000;
	text-decoration: none;
	transition: all .3s ease-in-out;

  }

  .blog-content h3{
	font-size: 20px;
	font-family: ivymode;
	color: #905348;
}
.text-name-2 p{
	font-family: ivymode;
	color: #905348;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: .5px;
}
.blog-img img{
	width: 100%;
	
}
.blog-img{
	margin-bottom: 20px;
	border: 1px solid #905348;
}
.blog-box{
	padding: 20px;
	border: 1px solid #905348;
}

.letters-header{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	width: 100%;
	z-index: 2;
	
}
.letters{
	flex: 1;
	display: flex;
	text-transform: uppercase;
}
.letters > div{
	flex: 1;
	font-size: 18vw;
	font-weight: 400;
	color: #000;
	text-align: center;
}
.website-content{
	position: fixed;
	top: 0;
	width: 100%;
	min-height: 100vh;
}
.img-holder{
	position: relative;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #fff !important;
	clip-path:polygon(37.5% 20%, 62.5% 20%, 62.5% 80%, 37.5% 80%);
	transform: rotate(30deg);
}
/* .img-holder p{
	color: #000;
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
} */
.img-holder img{
	position: relative;
	transform: scale(2);
}
.img-holder video{
	position: relative;
	transform: scale(1);
}
.content-holder{
	position: relative;
	top: -5px;
	width: 100%;
	/* background: #000; */
	/* color: #000; */
	padding: 1em;
}
.row-em{
	margin: 2em 1em;
}
.img{
	width: 300px;
	height: 375px;
	margin-bottom: 80px;
}
.img img{
margin-bottom: 10spx;
}
.row-em:nth-child(even) .img img{
	clip-path: polygon(100% 0%, 100% 0%,100% 0%, 100% 0%);
}
.row-em:nth-child(odd) .img img{
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
}
.row-em:nth-child(odd) .img{
	position: relative;
	left: 15%;
	transform: translateX(-15%);
}
.row-em:nth-child(even) .img{
	position: relative;
	left: 75%;
	transform: translateX(-50%);
}
.achieve-row .img{
	position: relative;
	left: 30% !important;
	
}
.row-em h4{
	font-size: 32px;
	font-family: ivymode;
	color: #905348;
	text-align: center;
	margin-top: 10px;
}
.copyright p{
	font-size: 16px;
	font-family: ivymode;
	color: #905348;
}
.about-page .text-name-2{
	text-align: center;
	padding-top: 80px;
	padding-bottom: 10px;
}
.achieve-row .img {
    width: 370px;
    height: 420px;
    margin-bottom: 0px;
}
.mobile{
	display: none!important;
}

@media (max-width: 767px) {
.achieve-mob-img .img{
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.desktop{
	display: none!important;
}
.mobile{
	display: block!important;
}
.about-page #videoBg {
	height: 30vh;
	object-position: 50% 50%;
}
.about-page .moving {
	top: 50%;
	left: 0px;
	transform: translate(0px, -25%);
}
.row-em .img {
left: 0 !important;
transform: translateX(0) !important;
}
.row-em .img img{
	clip-path: polygon(0% 0%, 100% 0%,100% 100%, 0% 100%) !important;
}
.row-em {
	display: flex;
	justify-content: center;
}
.menu-items-container {
   
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
	padding: 10px;
}
.menu-item-name{
	font-size: 20px;
}
.content {

    margin: 35vh 0 30vh;
}
.content__item {
margin-bottom: 15vh;
}
.passions-page #videoBg {
	height: 30vh;
}
.passions-page .moving {
	top: 40%;
}
.guitar-2 video{
	height:auto;
}
.dreamescape-img {
    padding-right: 0px;
}
}
  /* video banner ends */