/* CSS Document */
* {
	padding: 0px;
	margin: 0px;
}
body {
	background-color: #f8f3e9;
	color: #000000;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
}
a {
	text-decoration: none;
	/* color: #ff5722; */
}
.menu-items a {
	text-decoration: none;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	margin-left: 25px;
	color: #000000;
	font-weight: 600;

	position: relative;
	display: block;
	padding: 4px 0;
	transition: 0.5s;
}

.menu-items a::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	top: 100%;
	left: 0;
	background: #ff5722;
	transition: transform 0.5s;
	transform: scaleX(0);
	transform-origin: right;
}
.menu-items a:hover,
.menu-items a.active {
	color: #ff5722;
}
.menu-items a:hover::after,
.menu-items a.active::after {
	transform: scaleX(1);
	transform-origin: left;
}
.pref-lang{
	cursor: pointer;
}
p {
	padding: 0px 0px 15px 0px;
	font-size: 14px;
}
h1 {
	color: #2581da;
	font-size: 14px;
	padding: 0px 0px 10px 0px;
}
ul {
	padding: 10px 0px 10px 0px;
}
.fixed-background {
	position: fixed;
	top: 0px;
	width: 100%;
	opacity: 1;
	background-size: auto;
	background-position: center top;
	background-repeat: no-repeat;
	height: 100%;
}
.d-flex {
	display: flex;
}
.align-items-center {
	align-items: center;
}
.justify-space-between {
	justify-content: space-between;
}
.justify-content-center {
	justify-content: center;
}
.position-absolute {
	position: absolute;
}
.header {
	padding: 20px 60px 0;
	position: fixed;
	width: calc(100% - 120px);
	background-color: #f8f3e9;
	z-index: 1;
	display: flex;
	justify-content: space-between;
}
.home-view {
	/* height: calc(100vh - 85px); */
}
.home-seperator {
	height: calc(100vh - 80px);
	position: relative;
	padding-top: 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.arrow-icon{
			margin-bottom: 25px;
	    width: 30px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    height: 30px;
	    color: #f8f3e9;
	    border-radius: 50%;
	    font-size: 18px;
	    background: #333;
	    box-shadow: 0px 0px 8px 4px #3333332e;
			-webkit-transition-duration: 0.5s;
		  -moz-transition-duration: 0.5s;
		  -o-transition-duration: 0.5s;
}
.arrow-icon:hover{
	background: #ff5722;
}
.home-bg,
.aboutus-bg,
.meditate-bg,
.videos-bg,
.contactus-bg {
	background-color: rgb(248 243 233 / 0.98);
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.home-bg {
	padding-bottom: 80px;
}

.aboutus-bg,
.meditate-bg,
.contactus-bg {
	padding-bottom: 15px;
}

.heading-style {
	font-family: "Roboto", sans-serif;
	font-size: 30px;
	font-weight: 300;
	padding: 20px;
}
.heading-title {
	font-family: "Pacifico", cursive;
	font-size: 34px;
	color: #000;
}
.home-banner {
	width: 980px;
	height: 500px;
	background-position: center;
	background-size: cover;
}
.aboutus-banner {
	width: 800px;
	height: 400px;
	background-position: center;
	background-size: cover;
}

.learn-to-meditate-view {
	height: auto;
}
.aboutus-seperator {
	height: 80px;
}

.aboutus-profile {
	width: 200px;
	height: 200px;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	margin: 0 auto;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}

.about-name {
	padding-top: 15px;
	font-size: 15px;
}
label {
	font-size: 14px;
}
.view-body {
	width: 980px;
	font-family: "Roboto", sans-serif;
}
.footer{
	height: 60px;
	background: #f8f3e9;
	opacity: 0.98;
	border-top: 1px solid #f0ebe0;
	margin: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer .company-text{
	color: #333;
	font-size: 12px;
	cursor: pointer;
}
.lab_social_icon a {
  color: #333;
}

.lab_social_icon .social:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.lab_social_icon .social {
  -webkit-transform: scale(0.8);
  /* Browser Variations: */

  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

.lab_social_icon #social-fb:hover {
  color: #3B5998;
}



.lab_social_icon #social-yt:hover {
  color: #d34836;
}
.column-foot{
	width: 33.3%;
}
.column-foot-mobile{
	width: 100%;
	display: none;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
  /* display: none; */
}
.popup {
		margin: 70px auto;
    padding: 30px 50px;
    background: #f8f3e9;
    border-radius: 5px;
    width: 70%;
    overflow: auto;
    height: calc(100vh - 200px);
    transition: opacity 500ms;
    position: fixed;
		z-index: 3;
		left: 0;
    right: 0;
		visibility: hidden;
		opacity: 0;
	/* display: none; */
}


.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
	cursor: pointer;
}
.popup .content{
	padding-top: 30px;
}
.popup .content p{
	text-align: justify;
}

.popup .content ul{
	padding-left: 30px;
}

/* Media queries */

@media (max-width: 1024px) {
	.header {
		flex-direction: column;
		align-items: center;
	}
	.view-body {
		width: 750px;
	}
	.footer{
		margin: 0;
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.view-body {
		width: 600px;
	}
	.column-foot{
		width: 50%;
	}
	.column-foot-mobile{
		display: flex;
		padding: 15px 0;
	}
	.privacy-desktop{
		display: none;
	}
	.footer{
		padding: 0 30px;
		height: auto;
	}
}

@media (max-width: 650px) {
	.view-body {
		width: 500px;
	}
	.header {
		padding: 20px 20px 0;
		width: calc(100% - 40px);
	}
	.heading-title {
		font-size: 28px;
	}
	.menu-items a {
		font-size: 12px;
	}

}
@media (max-width: 520px) {
	.view-body {
		width: 425px;
	}
	.popup{
		margin: 20px auto;
    padding: 30px 25px;
		height: calc(100vh - 100px);
	}
	.footer{
		padding: 0 10px;
	}

}

@media (max-width: 425px) {
	.view-body {
		width: 300px;
	}
	.heading-title {
		font-size: 22px;
	}
	.header {
		padding: 20px 10px 0;
		width: calc(100% - 20px);
	}
	.menu-items a {
		font-size: 10px;
		margin: 0 5px !important;
	}
}
