
@import url('../css/fonts.css');

@use postcss-nested;
@import url(https://fonts.googleapis.com/css?family=Dancing+Script:400,700);

html, body{
    margin: 0%;
    box-sizing: border-box;
    overflow-x: hidden;
	 
}

:root{

    /*      Theme colors        */
    
    --text-light : #686666da;
    
    --white: #ffffff;
   

   

   
}


/* ---------------- Global Classes ---------------*/

a{
    text-decoration: none;
    color: var(--text-gray);
}
nav{
	text-decoration: none;
	background: white;
}

.flex-row{
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
}

ul{
    list-style-type: none;
}

h1{
   font-family: 'Mochiy Pop P One', sans-serif;
    font-size: 2.5rem;
}

h2{
   font-family: 'Mochiy Pop P One', sans-serif;
	padding-left: 10%;
	color: white;
}

h3{
    font-family: 'Mochiy Pop P One', sans-serif;
    font-size: 1.3rem;
}

button.btn{
    border: none;
	color: white;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
   font-family: 'Mochiy Pop P One', sans-serif;
    cursor: pointer;
}

span{
    font-family: var(--Abel);
}

.container{
  
	background: #2ca6b8;
}

.text-gray{
    color: #FF676B;
}

p{
   font-family: 'Mochiy Pop P One', sans-serif;
    color: white;
}

/* ------x------- Global Classes -------x-------*/

/* --------------- navbar ----------------- */

.nav{
    
	width: 90%;
	margin: auto;
    padding: 0 2rem;
    height: 0rem;
    min-height: 10vh;
    overflow: hidden;
    transition: height 1s ease-in-out;
	
}

.nav .nav-menu{    
    justify-content: space-between;
}

.nav .toggle-collapse{
    position: absolute;
    top: 0%;
    width: 90%;
    cursor: pointer;
    display: none;
}

.nav .toggle-collapse .toggle-icons{
    display: flex;
    justify-content: flex-end;
    padding: 1.7rem 0;
}

.nav .toggle-collapse .toggle-icons i{
    font-size: 1.4rem;
    color: var(--text-gray);
}

.collapse{
    height: 30rem;
}

.nav .nav-items{
    display: flex;
	font-family: 'Mochiy Pop P One', sans-serif;
    margin: 0;
	color: #FF676B;
}

.nav .nav-items .nav-link{
    padding: 1.6rem 1rem;
    font-size: 1.1rem;
    position: relative;
   font-family: 'Mochiy Pop P One', sans-serif;
    font-size: 1.1rem;
}

.nav .nav-items .nav-link:hover{
    background-color:  #a1c4cf;
}

.nav .nav-items .nav-link:hover a{
    color: var(--white);
}

.nav-brand {
	
	margin-left: 45%;
	
	
}

.nav .nav-brand a{
    font-size: 1.6rem;
    padding: 1rem 0;
    display: block;
    font-family: var(--Lexend);
    font-size: 1.6rem;
	
}

.nav .social{
    padding: 1.4rem 0
}

.nav .social i{
    padding: 0 .2rem;
}

.nav .social i:hover{
    color: #a1c4cf;
}

/* -------x------- navbar ---------x------- */




.wrapper{
  width: 50%;
  margin: auto;
	
 
 background-image: linear-gradient(to right, #FF676B,#2ca6b8,#FF676B,#2ca6b8,#FF676B,#2ca6b8,#FF676B);
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}#2ca6b8



.wrapper header{
  font-size: 22px;
  font-weight: 600;

  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
}
.wrapper form{
  margin: 35px 30px;
	
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #2ca6b8;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #2ca6b8;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 91%;
  min-width: 91%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
	padding-bottom: 20px;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2ca6b8;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #FF676B;
}

@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
	  
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
	
  form .message textarea{
  
  max-width: 71%;
  min-width: 71%;
  
}
}








.header{
	min-height: 100vh;
	min-width: 100%;
	
}
.homeimg{
	display: none;
}
.showcase{
	position: relative;
	right: 0;
	width: 100%;
	min-height: 100vh;
	padding: 200px;
	display: flex;
    justify-content: space-between;
	align-items:flex-start;
	background: black;
	color: white;
	z-index: -2;
}


.showcase video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}


.name-title{
	position: relative;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Mochiy Pop P One', sans-serif;
	z-index: 10;
	font-size: 8vw;
	
	margin-top: 1px;
	
}

@keyframes back{
	100%{
		background-position: 2000px 0;
	}
}
.para-text{
	font-size: 3vw;
	line-height: normal;
	font-family: 'Mochiy Pop P One', sans-serif;
	color: aliceblue;
	z-index: 20;
	
}
.textslogan{
	position: relative;
	z-index: 10;
	
}









	
	
	
	
	
		
	
	

	
	
	
	

/*------------What we do---------*/

.about{
	height: 110vh;
	background: #38A8CD;
	overflow: hidden;
	
}

.btn{
	
	font-family: 'Mochiy Pop P One', sans-serif;
	width: 200px;
	height: 60px;
	border: none;
	color: white;
	background-color: #FF676B;;
	border-radius: 8px;
	box-shadow: inset 0 0 0 0 #38A8CD;
	transition: ease-out 0.3s;
	font-size: 1rem;
	outline: none;
	cursor: pointer;
	margin-left: 45%;
	margin-bottom: 10%;
	
}
.bt{
	font-family: 'Mochiy Pop P One', sans-serif;
}
.btn a{
	color: #fff;
	text-decoration: none;
}


.btn2{
	
	font-family: 'Poppins',sans-serif;
	width: 170px;
	height: 60px;
	border: none;
	color: white;
	background-color: #38A8CD;
	border-radius: 8px;
	box-shadow: inset 0 0 0 0 #BB004B;
	transition: ease-out 0.3s;
	font-size: 1.2rem;
	outline: none;
	cursor: pointer;
	margin-top: 10%;
	
	
}

.btn2  a{
	
	color: #fff;
	text-decoration: none;
}
.btn:hover{
	box-shadow:inset 170px 0 0 0 #b5e550; 
}

.btn2:hover{
	box-shadow:inset 170px 0 0 0 #FF676B; 
}

.content{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 50px 100px 0;
	height: 80vh;
	
	}

.content p{
	padding: 20px;
	
	border-top: 3px solid #FF676B;
	border-left: 3px solid #FF676B;

}
.what{
	position: relative;
	width: 55%;
	padding-right: 100px;
}
.what p{
	font-size: 20px;
	line-height: 36px;
	color: aliceblue;
	box-shadow:  10px 10px 8px 10px #FF676B;

}

.what a{
	position: relative;
	display: inline-block;
	font-size: 18px;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	padding: 18px 30px;
	letter-spacing: 2px;
	font-weight: 500;
	margin-top: 60px;
	
}
.what a:before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width: 80px;
	height: 80px;
	border-radius: 50px;
	background-color:  #FF676B;
	z-index: -1;
	transition: all ease 0.5s;
}
.what a:hover:before{
	width: 100%;
}



.img{
	position: relative;
	width: 500px;
	height: 500px;
	background: radial-gradient(520px, #b5e550, transparent 50%);
	margin-top: -50px;
}
.email{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.social-icon{
	height: 100%;
	animation: rotation 60s linear infinite;
	
}
@keyframes rotation{
	100%{
		transform: rotate(360deg);
		
	}
}

.social-icon{
	position: absolute;
}

.social-icon faceimg:{
	top: -105%;
	left: 0%;
	
	
}
.social-icon img:nth-child(2){
	top: -100%;
	right: 70%;
	
	
}



#meet-team{
	text-align: center;
	color: #FF676B;
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

s

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


/* --------------- Site title ---------------- */
main .site-title1{
    background: url('../images/gallery/red%20and%20blue.png');
    background-size: cover;
    height: 110vh;
    display: flex;
    justify-content: center;
}

main .site-title .site-background{
    padding-top: 2rem;
    text-align: center;
    color:  #FF676B;
	font-size: 30px;
}
main .site-title{
    background: url('../images/homepage/coverpage.png');
    background-size: cover;
    height: 110vh;
    display: flex;
    justify-content: center;
}

main .site-title1 .site-background{
    padding-top: 10rem;
    text-align: center;
    color: #3b2219;
}
.site-background{
	 color:  #FF676B;
	text-align: center;
	
}


main .site-title1 h1, h3{
    margin: .3rem;
}

main .site-title .btn{
    margin: 1.8rem;
    background: var(--sky);
}



/* --------x------ Site title --------x------- */

/* --------------- Blog Carousel ------------ */
#containerbackground{
	 background: transparent;
}
main .blog{
    background: url('../images/homepage/projectbackground.png');
   background-size: cover;
	background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    background-size: 100%;
}

main .blog .blog-post{
    padding-top: 6rem;
}

main .blog-post .blog-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin: 3rem 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
	 background: transparent;
}

main .blog-content .blog-title{
    padding: 2rem 0;
}

main .blog-content .btn-blog{
    padding: .7rem 2rem;
   
    margin: .5rem;
}

main .blog-content span{
    display: block;
}

section .container .owl-nav{
    position: absolute;
    top: 0%;
    margin: 0 auto;
    width: 100%;
	background: 
}

.owl-nav .owl-prev .owl-nav-prev,
.owl-nav .owl-next .owl-nav-next{
    color: var(--text-gray);
    background: transparent;
    font-size: 2rem;
}

.owl-theme .owl-nav [class*='owl-']:hover{
    background: transparent;
    color: var(--midnight);
}

.owl-theme .owl-nav [class*='owl-']{
    outline: none;
}


/* -------x------- Blog Carousel -----x------ */

/* ---------------- Site Content ----------------*/

main .site-content{
    display: grid;
    grid-template-columns: 70% 30%;
}

main .post-content{
    width: 100%;
    
}
#post-title{
	display: flex;
	
	
	
}
#post-title1{
	top: 10%;
}

main .site-content .post-content > .post-image, .post-title{
    padding: 1rem 2rem;
    position: relative;
}

main .site-content .post-content > .post-image .post-info{
    background: var(--sky);
    padding: 1rem;
    position: absolute;
    bottom: 0%;
    left: 20vw;
    border-radius: 3rem;
}

main .site-content .post-content > .post-image > div{
    overflow: hidden;
}

main .site-content .post-content > .post-image .img{
    width: 100%;
    transition: all 1s ease;
}

main .site-content .post-content > .post-image .img:hover{
    transform: scale(1.3);
}

main .site-content .post-content > .post-image .post-info span{
    margin: 0 .5rem;
}

main .post-content .post-title a{
    font-family: var(--Anton);
    font-size: 1.5rem;
}

.site-content .post-content .post-title .post-btn{
    border-radius: 0;
    padding: .7rem 1.5rem;
    background: var(--sky);
}

.site-content .pagination{
    justify-content: center;
    color: var(--text-gray);
    margin: 4rem 0;
}

.site-content .pagination a{
    padding: .6rem .9rem;
    border-radius: 2rem;
    margin: 0 .3rem;
    font-family: var(--Lexend);
}

.site-content .pagination .pages{
    background: var(--text-gray);
    color: var(--white);
}

/* -------x-------- Site Content --------x-------*/





/*-------------Parent Children-------------*/

.circle {
  display: inline-flex; /* use this so theat items are on same line */
	position: relative;
                                
  justify-content: center;      /* by using above, you can vertical and horizontal align**/
  align-items: center;
  text-align: justify-all;
  
  margin-right: 10px;
  width: 35%;
  
  font-size: 55px;
  font-family: sans-serif;
  font-weight: 600;
  border-radius:50%;
  color: #f6e486;
  
}
.circle:after{
	content: '';
	padding-bottom: 100%;
	display: block;
}

#place1{
	position: absolute;
	
	background: #2ca6b8;
	margin-top:6%;
	left: 10%;
}
#place1 a{
	color: #fff;
	font-family: 'Mochiy Pop P One', sans-serif;
	text-decoration: none;
}
#place2{
	position: absolute;
	align-items: center;
	right: 10%;
	background: #FF676B;
	margin-top: 14%;
	
}


#place2 a{
	color: #fff;
	font-family: 'Mochiy Pop P One', sans-serif;
	text-decoration: none;
	
}
.animation{
	width: 100%;
	height: 100vh;
	position: relative;
	background-image: url(../images/homepage/background-forest.jpg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.nuada{
	width: 200px;
	position: absolute;
	bottom: 200px;
	left: 50%;
	transform: translateX(-50%);
}
.nuada img{
	width: 100%;
	-webkit-box-reflect: below 0 linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.6));
	animation: nuada 2s linear infinite;
	
}

@keyframes nuada {
	0%{
		transform: rotate(0deg) translateY(0);
		
	}
	25%{
		transform: rotate(-1deg) translateY(-3px);
		
	}
	50%{
		transform: rotate(0deg) translateY(-5px);
		
	}
	75%{
		transform: rotate(1deg) translateY(-3px);
		
	}
	100%{
		transform: rotate(0deg) translateY(0);
		
	}
	
	
	
}
.cloud{
	height: 250px;
	position: absolute;
	right: 0;
	animation: cloud 10s linear infinite;
	
}
@keyframes cloud{
	0%{
		transform: translateX(0);
	}
	
	100%{
		transform: translateX(500px);
	}
}




/*-----------------Children page------------*/

.scroll{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.scroll:before{
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	
	z-index: 1000;
	
}


.scroll:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	
	z-index: 1000;
	
	
}
.scroll img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: -2000;
}
#nuastorytext{
	position: relative;
	color: #fff;
	font-size: 4vw;
	z-index: 1;
}
#road{
	z-index: 2;
}
#childrenbg{
	background: #ffe29c;
	
}
#sun{
	width: 300px;
	height: 300px;
	
}

.category h2{
	color: aliceblue;
}
.popular-post h2{
	color: aliceblue;
	font-size: 2.5vw;
	
}




/*--------------Book--------------*/

/*Webflow standard classes */
html.w-mod-touch * {
  background-attachment: scroll !important;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}


.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1.0;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1.0 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
}
.w-richtext:after {
  clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

/*-----------------------*/

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}



.scene {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 54vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
   background:#FF676B;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-perspective-origin: 50% 0%;
  perspective-origin: 50% 0%;
}

.book-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 57vw;
  margin-top: 8vw;
  margin-bottom: 8vw;
  padding-right: 1%;
  padding-left: 1%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  -webkit-transform: translate3d(0px, 5%, -264px) rotateX(27deg) rotateY(0deg) rotateZ(-10deg);
  transform: translate3d(0px, 5%, -264px) rotateX(27deg) rotateY(0deg) rotateZ(-10deg);
  -webkit-transition: -webkit-transform 2000ms cubic-bezier(.165, .84, .44, 1);
  transition: -webkit-transform 2000ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 2000ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 2000ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 2000ms cubic-bezier(.165, .84, .44, 1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.book-wrap:hover {
  -webkit-transform: translate3d(0px, 5%, -264px) rotateX(13deg) rotateY(0deg) rotateZ(-3deg);
  transform: translate3d(0px, 5%, -264px) rotateX(13deg) rotateY(0deg) rotateZ(-3deg);
}

.book-cover-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top-left-radius: 4%;
  border-bottom-left-radius: 4%;
  background-color: #2e1800;
  box-shadow: inset 4px -4px 4px 1px #635648, inset 7px -7px 4px 0 #221b14;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-transform: translate3d(0px, 0px, -1px);
  transform: translate3d(0px, 0px, -1px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.book-cover-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top-right-radius: 4%;
  border-bottom-right-radius: 4%;
  background-color: #2e1800;
  box-shadow: inset -4px -4px 4px 1px #635648, inset -7px -7px 4px 0 #221b14;
}

.layer1 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 10px 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translate3d(0px, 0px, 5px);
  transform: translate3d(0px, 0px, 5px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.page-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top-left-radius: 1%;
  border-bottom-left-radius: 1%;
  background-color: #fff;
	
  box-shadow: inset 0 0 26px 2px #d8cccc, -1px 1px 13px 0 rgba(34, 27, 20, .81);
}

.layer-text {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	
  width: 97%;
  margin: 20px 10px 18px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  -webkit-transform: translate3d(0px, 0px, 32px);
  transform: translate3d(0px, 0px, 32px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer-text.right {
  -webkit-transform: translate3d(-37px, 0px, 32px);
  transform: translate3d(-37px, 0px, 32px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
	
}

.page-left-2 {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
	
  border-top-left-radius: 18%;
  border-bottom-left-radius: 1%;
  background-color: #fff;
  box-shadow: inset 0 0 7px 4px hsla(0, 13%, 82%, .43), -1px 1px 13px 0 rgba(34, 27, 20, .49);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateX(0deg) rotateY(17deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(17deg) rotateZ(0deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: -webkit-transform 650ms cubic-bezier(.165, .84, .44, 1);
  transition: -webkit-transform 650ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 650ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 650ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 650ms cubic-bezier(.165, .84, .44, 1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.page-left-2:hover {
  -webkit-transform: rotateX(0deg) rotateY(7deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(7deg) rotateZ(0deg);
}

.left-side {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%;
  -webkit-transform: rotateX(0deg) rotateY(20deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(20deg) rotateZ(0deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.right-side {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  -webkit-perspective: 4000px;
  perspective: 4000px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%;
  -webkit-transform: rotateX(0deg) rotateY(-1deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(-1deg) rotateZ(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.center {
  width: 3%;
  background-image: -webkit-radial-gradient(circle farthest-corner at 56% -8%, #fff 8%, transparent 0), -webkit-radial-gradient(circle farthest-corner at 50% 108%, #fff 8%, transparent 0), -webkit-linear-gradient(0deg, #635648, #2e1800 21%, #635648 30%, #2e1800 48%, #635648 68%, #2e1800 79%, #635648);
  background-image: radial-gradient(circle farthest-corner at 56% -8%, #fff 8%, transparent 0), radial-gradient(circle farthest-corner at 50% 108%, #fff 8%, transparent 0), linear-gradient(90deg, #635648, #2e1800 21%, #635648 30%, #2e1800 48%, #635648 68%, #2e1800 79%, #635648);
}

.corner-fold {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  border-right: 1px solid hsla(0, 13%, 82%, .55);
  border-bottom: 1px solid hsla(0, 13%, 82%, .55);
  background-image: -webkit-linear-gradient(315deg, transparent 47%, #f0f0f0 48%, #fff 55%, #f6f6f6);
  background-image: linear-gradient(135deg, transparent 47%, #f0f0f0 48%, #fff 55%, #f6f6f6);
  box-shadow: 6px 6px 9px -4px hsla(0, 13%, 82%, .53);
}

.corner {
  position: absolute;
  left: 0px;
  top: 27px;
  width: 5vw;
  height: 5vw;
  background-image: -webkit-linear-gradient(315deg, #fff 30%, transparent);
  background-image: linear-gradient(135deg, #fff 30%, transparent);
  box-shadow: inset 13px 0 17px -12px hsla(0, 13%, 82%, .43);
}

.corner2 {
  position: absolute;
  left: 28px;
  top: 0px;
  width: 5vw;
  height: 5vw;
  background-image: -webkit-linear-gradient(315deg, #fff 31%, transparent);
  background-image: linear-gradient(135deg, #fff 31%, transparent);
  box-shadow: inset 0 13px 17px -12px hsla(0, 13%, 82%, .43);
}

.page-text {
  position: relative;
  display: block;
  width: 80%;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
	
  font-family: Georgia, Times, 'Times New Roman', serif;
}

.page-text p {
  margin-bottom: 0px;
  font-size: 0.85vw;
	font-family: 'Mochiy Pop P One', sans-serif;
	color: black;
  line-height: 1.5;
}

.page-text h3 {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-style: italic;
}

.page-text h6 {
  font-family: 'PT Sans', sans-serif;
  font-size: 9px;
  text-decoration: none;
}

.page-text a {
  color: #38A8CD;
}

.layer2 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 10px 13px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translate3d(2px, 0px, 10px);
  transform: translate3d(2px, 0px, 10px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer2.right {
  -webkit-transform: translate3d(-5px, 0px, 10px);
  transform: translate3d(-5px, 0px, 10px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer3 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 10px 13px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translate3d(4px, 0px, 20px);
  transform: translate3d(4px, 0px, 20px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer3.right {
  -webkit-transform: translate3d(-10px, 0px, 20px);
  transform: translate3d(-10px, 0px, 20px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer4 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 10px 15px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translate3d(6px, 0px, 30px);
  transform: translate3d(6px, 0px, 30px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.layer4.right {
  -webkit-transform: translate3d(-15px, 0px, 30px);
  transform: translate3d(-15px, 0px, 30px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.page-right-2 {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top-right-radius: 1%;
  border-bottom-right-radius: 1%;
  background-color: #fff;
  box-shadow: inset 0 0 7px 4px hsla(0, 13%, 82%, .43), 1px 1px 13px 0 rgba(34, 27, 20, .49);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateX(0deg) rotateY(-3deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(-3deg) rotateZ(0deg);
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 850ms ease;
  transition: -webkit-transform 850ms ease;
  transition: transform 850ms ease;
  transition: transform 850ms ease, -webkit-transform 850ms ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.page-right-2:hover {
  -webkit-transform: rotateX(0deg) rotateY(-17deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(-17deg) rotateZ(0deg);
}

.page-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top-right-radius: 1%;
  border-bottom-right-radius: 1%;
  background-color: #fff;
  box-shadow: inset 0 0 26px 2px #d8cccc, 1px 1px 13px 0 rgba(34, 27, 20, .81);
}

@media (max-width: 991px) {
  .scene {
    height: 56vw;
  }
  .book-wrap {
    width: 62vw;
  }
  .page-left-2 {
    border-top-left-radius: 20%;
  }
  .corner-fold {
    left: 0%;
    top: -1%;
    width: 3.5vw;
    height: 3.5vw;
    max-height: 35px;
    background-image: -webkit-linear-gradient(315deg, transparent 50%, #f0f0f0 51%, #fff 52%, #f6f6f6);
    background-image: linear-gradient(135deg, transparent 50%, #f0f0f0 51%, #fff 52%, #f6f6f6);
  }
  .corner {
    top: 8%;
  }
  .page-text h3 {
    margin-top: 2vw;
    margin-bottom: 1vw;
    font-size: 3vw;
  }
  .page-text h6 {
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1vw;
  }
  .page-right-2 {
    padding-left: 9%;
  }
}
.booknuada{
	
	height: 200px;
}

@media (max-width: 767px) {
  .book-wrap {
    width: 80vw;
    margin-bottom: 2vw;
  }
	
	.booknuada{
	
	height: 70px;
}

  .layer-text {
    width: 94%;
    -webkit-transform: translate3d(0px, 0px, 20px);
    transform: translate3d(0px, 0px, 20px);
  }
  .layer-text.right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transform: translate3d(-34px, 0px, 24px);
    transform: translate3d(-34px, 0px, 24px);
  }
  .page-left-2 {
    border-top-left-radius: 23%;
    -webkit-transform: rotateX(0deg) rotateY(17deg) rotateZ(0deg) translate(9px, 0px);
    transform: rotateX(0deg) rotateY(17deg) rotateZ(0deg) translate(9px, 0px);
  }
  .corner-fold {
    width: 4.5vw;
    height: 4.5vw;
    max-height: 29px;
    min-width: 29px;
    background-image: -webkit-linear-gradient(310deg, transparent 48%, #f0f0f0 49%, #fff 50%, #f6f6f6);
    background-image: linear-gradient(140deg, transparent 48%, #f0f0f0 49%, #fff 50%, #f6f6f6);
  }
  .page-text {
    margin-top: 2vw;
  }
  .page-text h3 {
    margin-top: 0vw;
    font-size: 3vw;
  }
  .layer2 {
    -webkit-transform: translate3d(2px, 0px, 6px);
    transform: translate3d(2px, 0px, 6px);
  }
  .layer2.right {
    -webkit-transform: translate3d(-5px, 0px, 6px);
    transform: translate3d(-5px, 0px, 6px);
  }
  .layer3 {
    -webkit-transform: translate3d(4px, 0px, 12px);
    transform: translate3d(4px, 0px, 12px);
  }
  .layer3.right {
    -webkit-transform: translate3d(-10px, 0px, 12px);
    transform: translate3d(-10px, 0px, 12px);
  }
  .layer4 {
    -webkit-transform: translate3d(6px, 0px, 18px);
    transform: translate3d(6px, 0px, 18px);
  }
  .layer4.right {
    -webkit-transform: translate3d(-15px, 0px, 18px);
    transform: translate3d(-15px, 0px, 18px);
  }
  .page-right-2 {
    width: 92%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
}

@media (max-width: 479px) {
  .scene {
    height: 69vw;
  }
  .corner-fold {
    width: 5.5vw;
    height: 5.5vw;
    min-width: 21px;
  }
}



/*---------contact page -----------*/


.donate{
	display: flex;
	justify-content: space-between;
}

.textdecorate{
	text-shadow: 2px 2px red;
}

.glow{
	
  
  
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #FF676B, 0 0 40px #FF676B, 0 0 50px #FF676B, 0 0 60px #FF676B, 0 0 70px #FF676B;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px  #2ca6b8, 0 0 40px #2ca6b8, 0 0 50px #2ca6b8, 0 0 60px #2ca6b8, 0 0 70px #2ca6b8, 0 0 80px #2ca6b8;
  }
}


button .last{
	align-items: center;
}
.last{
  display: inline-block;
  vertical-align:middle;
  border-radius: 10px;
  background-color:#ff7400;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 15px;
  width: 230px;
  transition: all 0.5s;
  cursor: pointer;
  margin: auto;
}

.last span{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.last span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.last:hover span {
  padding-right: 15px;
}

.last:hover span:after {
  opacity: 1;
  right: 0;
}

/*---------Parent page text-----------*/

.link{
	color: aqua;
}
.position{
	width: 50%;
	margin: auto;
}

/*------------------Book------------*/

.getintouch{
	width: 35vh;
	position: relative;
	margin-bottom: 5%;
	margin-left: 10%;
	
	
}
.cup{
	position: relative;
	width: 280px;
	height: 300px;
	background-image: linear-gradient(to right, #f9f9f9, #d9d9d9);
	border-bottom-left-radius: 45%;
	border-bottom-right-radius: 45%;
}

.cuptop{
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(to right, #f9f9f9, #d9d9d9);
	border-radius: 50%;
	
}

.teacircle{
	position: absolute;
	top: 5px;
	left: 10px;
	width: calc(100% - 20px);
	height: 50px;
	background-image: linear-gradient(to left, #f9f9f9, #d9d9d9);
	border-radius: 50%;
	box-sizing: border-box;
	overflow: hidden;
}
.tea{
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#c57e65, #e28462);
	border-radius: 50%;
}

.handle{
	position: absolute;
	right: -70px;
	top: 40px;
	width: 160px;
	height: 180px;
	border: 25px solid #dcdcdc;
	border-left: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-radius: 50%;
	transform: rotate(42deg);
}

.plate{
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	height: 200px;
	background-image: linear-gradient(to right, #f9f9f9, #e7e7e7);
	border-radius: 50%;
	box-shadow: 0 35px 35px rgba(0,0,0,0.2);
	
}

.plate::before{
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-radius: 50%;
	background-image: linear-gradient(to left, #f9f9f9, #e7e7e7);
	
}

.plate::after{
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	background-image: radial-gradient(rgba(0,0,0.1) 10%, transparent, transparent);
	border-radius: 50%;
	
	
}
.vapour{
	position: relative;
	display: flex;
	z-index: 1;
	padding: 0 20px;
}

.vapour span{
	position: relative;
	bottom: 50px;
	display: block;
	margin: 0 2px 50px;
	min-width: 8px;
	height: 120px;
	background: #fff;
	border-radius: 80%;
	animation: animate 5s  linear infinite;
	opacity: 0;
	filter: blur(8px);
	animation-delay: calc(var(--i) * -0.8s);
}
@keyframes animate{
	0%{
		transform: translateY(0) scale(2);
		opacity: 0;
	}
	15%{
		opacity: 1;
	}
	50%{
		transform: translateY(-150px) scale(2);
	}
	95%{
		opacity: 0;
	}
	100%{
		transform: translateY(-300px) scale(4);
	}
	
	
	
}



/*------------Parents------------*/

.parallax {
  /* The image used */
  background-image: url('../images/handtop.JPG');

  /* Full height */
  height: 50vh; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax1{
  /* The image used */
  background-image: url('../images/rapto.jpg');

  /* Full height */
  height: 50vh; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2{
  /* The image used */
  background-image: url('../images/cup.png');

  /* Full height */
  height: 20vh;
	width: 20vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}
.parent-background{
	background: #2ca6b8;
	
}
.text-for-parents{
	color: aliceblue;
}
.parent-text{
	padding: 10%;
	margin:auto;
	top: 5%;
	width: 75%;
	height: auto;
	background: #FF676B;
	border-radius: 100%;
	border: solid 2px white;
	position: relative;
	text-align: justify-all;
	box-shadow: 5px 10px 18px red:

		
	
	
}


/* --------------- Sidebar ----------------------- */

.site-content > .sidebar .category-list{
    font-family: var(--Livvic);   
}

.site-content > .sidebar .category-list .list-items{
    background: #FF676B;
    padding: .4rem 1rem;
    margin: .8rem 0;
    border-radius: 3rem;
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.site-content > .sidebar .category-list .list-items a{
    color:  black;
}

.site-content .sidebar .popular-post .post-content{
    padding: 1rem 0;
}

.site-content .sidebar .popular-post h2{
    padding-top: 8rem;
}

.site-content .sidebar .popular-post .post-info{
    padding: .4rem .1rem !important;
    bottom: 0rem !important;
    left: 1.5rem !important;
    border-radius: 0rem !important;
    background: white !important;
}

.site-content .sidebar .popular-post .post-title a{
    font-size: 1rem;
}

.site-content .sidebar .newsletter{
    padding-top: 10rem;
}

.site-content .sidebar .newsletter .form-element{
    padding: .5rem 2rem;
}

.site-content .sidebar .newsletter .input-element{
    width: 80%;
    height: 1.9rem;
    padding: .3rem .5rem;
    font-family: var(--Lexend);
    font-size: 1rem;
}

.site-content .sidebar .newsletter .form-btn{
    border-radius: 0;
    padding: .8rem 32%;
    margin: 1rem 0;
    background: var(--sky);
}

.site-content .sidebar .popular-tags{
    padding: 5rem 0;
}

.site-content .sidebar .popular-tags .tags .tag{
    background: #b48a78;
    padding: .4rem 1rem;
    border-radius: 3rem;
    margin: .4rem .6rem;
}


/* -------x------- Sidebar -----------x----------- */



/* -------------- Proect --------------------- */
.container1 {
	
	 background: url('../images/homepage/projectbackground.png');
   background-size: cover;
	background-repeat: no-repeat;
   
   
    background-size: 100%;
	
	width: 70%;
	margin: auto;
  padding: 34px;
}

.row2:after {
  content: "";
  display: table;
  clear: both
}

.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}





img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
  img {
    margin: auto;
  }
}

/* -------x------- Proect -----------x----------- */

/* ---------x------- Social page -----x----- */

.social-widget{
	position: absolute;
	top:90%;
	left: 20%;
	transform: translate(-50%,-50%);
	
}
.facebook{
	background: linear-gradient(120deg, #ffe7d1 0%, #b48a78 100%);
	border-radius: 2%;
}

.social-widget1{
	position: absolute;
	top:100%;
	right: 1%;
	transform: translate(-50%,-50%);
	
}
.instagram{
	background: linear-gradient(120deg, #F68989 0%, #fff 100%);
	border-radius: 2%;
}

.social-widget2{
	position: absolute;
	top:130%;
	left: 30%;
	transform: translate(-50%,-50%);
	
}
.tiktok{
	background:linear-gradient(120deg, #ffe7d1 0%, #a16e4b 100%); 
	border-radius: 2%;
}
li{
	display: inline-block;
}
.social-button{
	width: 300px;
	padding: 10px;
	letter-spacing: 1px;
	margin: 10px;
}
.social-button:hover{
	background: white;
	transition: 0.5s;
}
.social-text{
	width: 150px;
	border-left: 1px solid white;
	border-right: 1px solid white;
	padding-left: 10px;
	font-weight: 600;
	
}
.right-text{
	padding-left: 10px;
	font-size: 12px;
	
}

/* ----------------- PDF NEWSTELLER --------------------- */


.pdf{
	padding: 30px;
	
}

/* --------=--------- PDF NEWSTELLER --------=------------- */


/* ----------------- Footer --------------------- */

footer.footer{
    height: 100%;
    background:#2ca6b8;
    position: relative;
}

footer.footer .container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

footer.footer .container > div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}

footer.footer .container h2{
    color: #fff;
}

footer.footer .newsletter .form-element{
    background: black;
    display: inline-block;
}

footer.footer .newsletter .form-element input{
    padding: .5rem .7rem;
    border: none;
    background: transparent;
    color: white;
    font-family: var(--Josefin);
    font-size: 1rem;
    width: 74%;
}

footer.footer .newsletter .form-element span{
    background: var(--sky);
    padding: .5rem .7rem;
    cursor: pointer;
}

footer.footer .instagram div > img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;
}

footer.footer .follow div i{
    color: var(--white);
    padding: 0 .4rem;
}

footer.footer .rights{
    justify-content: center;
    font-family: var(--Josefin);
}

footer.footer .rights h4 a{
    color: var(--white);
}

footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;
}

footer.footer .move-up span{
    color:  #FF676B;;
}

footer.footer .move-up span:hover{
    color: var(--white);
    cursor: pointer;
}
.btn{
	color: black;
}
.about-us p{
	color: #fff;
}
.follow p{
	color: #fff;
}

/*-----------Video----------*/

video {
  width: 100%;
  height: auto;
}


/*-----------About----------*/

.posts1{
	width: 300px;
	padding-left: 25%;
}
.column {
  float: left;
  width: 50%;
  padding: 10px;
  
}

.container {
  padding: 64px;
}

/* Clear floats */
.row:after {
  content: "";
  display: table;
  clear: both
}

/* 2/3 column */
.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

/* 1/3 column */
.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}

/* Add responsiveness - make the columns appear on top of each other instead of next to each other on small screens */
@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
}
/* ---------x------- Footer ----------x---------- */

/*              Viewport less then or equal to 1130px            */

@media only screen and (max-width: 1130px){
    .site-content .post-content > .post-image .post-info{
        left: 2rem !important;
        bottom: 1.2rem !important;
        border-radius: 0% !important;
    }

    .site-content .sidebar .popular-post .post-info{
        display: none !important;
    }

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

}

/*      x       Viewport less then or equal to 1130px    x     */


/*              Viewport less then or equal to 750px            */

@media only screen and (max-width: 750px){
    .nav .nav-menu, .nav .nav-items{
        flex-direction: column;
		color: #FF676B;
		
    }

    .nav .toggle-collapse{
        display: initial;
    }

    main .site-content{
        grid-template-columns: 100%;
    }

    footer.footer .container{
        grid-template-columns: repeat(1, 1fr);
    }

}


/*        x      Viewport less then or equal to 750px       x     */


/*              Viewport less then or equal to 520px            */

@media only screen and (max-width: 520px){
    main .blog{
        height: 125vh;
    }
	
	.img{
		display: none;
	}
	
	iframe{
		width: 100%;
	}
	
	/*--------Landing--------*/
	
	.logoassist, .slogan{
	position: relative;
	text-transform: uppercase;
	cursor: pointer;
	font-family:'Alfa Slab One',sans-serif;
	padding: 10px;
	z-index: 10;
	font-size: 50px;
	 color: transparent;
	
	
	
}
	
	
	
	.animation img{
		display: none;
	}
	.animation{
	
	height: 50vh;
	
}
	.circle{
		font-size: 25px;
	}
	.slogan{
	font-size: 30px;
	}
	
	
	.showcase{
	position: relative;
	right: 0;
	width: 100%;
	height: auto;
	padding: 30px;
	display: flex;
    justify-content: space-between;
	align-items: center;
	
	background:#2ca6b8;
	color: white;
	z-index: -2;
}
	
	
	.homeimg{
	display:flex;
	width: 100%;
	height: auto;
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: 10px;
	}
	
	.showcase video{
	display: none;
}
	.getintouch{
		display: none;
	}

    .site-content .post-content > .post-image .post-info{
        display: none;
    }
	main .site-title .site-background{
   padding-left: 11%;
    color: #e6bc98;
}
	.nav-brand {
		width: 40px;
		background: white;
	
	margin-left: 0;
}
	.name{
		color: white;
		text-align: center;
	}
	.social-widget, .social-widget1{
		left: 20%;
	}
	.social-widget2{
		left: 20%;
		top: 110%;
		
	}
	.what{
		width: 100%;
	}
	


    footer.footer .container > div{
        padding:  1rem .9rem !important;
    }

    footer .rights{
        padding: 0 1.4rem;
        text-align: center;
    }

    nav .toggle-collapse{
        width: 80% !important;
    }
	
	.para-text{
		font-size: 5vw;
	}

}

/*        x      Viewport less then or equal to 520px       x     */