@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;

}


html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}



h1 {
    display: block;
	width: fit-content;
	font-size: 4rem;
    margin-bottom: 30px;
    font-weight: 1000;
    color:white;
}


p {
	color: #d483f1;
	font-size: 1.8rem;
	line-height: 2.5rem;
	font-weight: 300;
}




span {
		color:#d483f1;
		font-size: 1.5rem;
		line-height: 2.5rem;
		font-weight: 300;
		letter-spacing: 0.05rem;
}


/* Header section */

#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	background-color: #1f135b;
}

#header .header{
	max-height: 10vh;
	transition: 0.3s ease;
	display: flex;
	justify-content: center;
	margin: auto;
	/* padding-right: 100px;
	padding-left: 100px; */
	 
}

#header .navbar{
	width: 100%;
	height: 60px;
	display: flex;
	max-width: 1200px;
	position: relative;
	align-items:center;
	justify-content: space-between;


}

#header .logo_{
	display: flex;
	justify-content: center;
}

#header .logo_{
	cursor: pointer;
	width: 80px;
}

#header span{
	font-size: 2rem;
    font-weight: 500;
    color: white;
}

#header .burger{
	cursor: pointer;
	display: none;
	font-size: 3rem;
}

#header li{
	list-style: none;
}


#header .nav-links a{
	text-decoration: none;
	color: white;
	font-size: 1.7rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.05rem;

	
}

#header .nav-links a:hover{
	color: white;
}



#header .navbar .nav-links{
	display: flex;
	gap: 4rem;
	position: relative;
	text-align: center;
	overflow: hidden;	
}

#header .action_btn{

	color: white;
	font-size: 13px;
	padding: 15px 25px;
	background-color:#b439dc;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}


#header .action_btn:hover {
	scale: 1.05rem;
	background-color:#d483f1;
}


#header .action_btn:active{
	scale: 0.05rem;
	
}

#header .dropdown_menu{
	display: none;
	position: absolute;
	top: 60px;
	width: 95%;
	height: 0px;
	background-color: rgb(169,169,169,.8);
	backdrop-filter: blur(15px);
	border-radius: 7px;
	overflow: hidden;
	transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);


}

#header .dropdown_menu a{
	font-weight: bold;
}
#header i{
	color: white;

}
#header .dropdown_menu.open{
	height:270px;
}

#header .dropdown_menu li{
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;

}



#header .dropdown_menu .action_btn{
	width: 40%;
	display: flex;
	padding: 5px 5px;
	justify-content: center;
	font-size: 1.7rem;
	margin:auto;
	color: white;
	text-align: center;
}



/* End of header section */
#newsletter{
	background: linear-gradient(#141030,#221364);
	padding: 100px;
	min-width: 100vw;
	

}

#newsletter .news{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}


/* Home Section */

#home{
	background: linear-gradient(#141030,#221364);
	padding-right: 100px;
	padding-left: 100px;
	min-width: 100vw;
}

#home .home {
	display: grid;
	grid-template-columns: 3fr 1fr;
	margin: auto;
	max-width: 1200px;

	padding-top: 300px;
	padding-bottom: 200px;
	align-items: center;
	justify-content: center;

}

.home-left h2{
	color: #d483f1;
    display: block;
    font-size: 2rem;
    font-weight: 300;

}

#home  img{ 
	margin-left: 100px; 
	margin-top: -50%;
	max-width: 300px;
	max-height: 300px;
} 

#home .home-right{
	display: flex;
	align-items: top;
	justify-content: top;
	
}

.home-left{
	display: flex-column;


}


#home  .start-button {
    background-color: #b439dc;

    color: white;
    border: none;
    padding:10px 20px;
    border-radius: 5px;
    cursor: pointer;
	font-size: 1.8rem;
    box-sizing: border-box;
    display: block;
    width: 30%;
	margin-top:20px;

  }

.news button {
	align-items: center;
	padding: 10px 20px;
	color: white;
	background-color:#2E4369;
	font-size: 2rem;
	letter-spacing: 0.1rem;
    border-radius: 50px;
    border: none;
	cursor: pointer;
	transition: .3s background ease;
    margin-top: 10px;
}
.news button:hover {
	background-color:#66AAE4;
}

 input {
	text-indent: 20px;
	width: 39%;
    border: none;
    height: 40px;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    border-radius: 50px;
    margin-top: 30px;
} 

 .email{
	width: 60%;
} 

/* The alert message box */
.alert {
	padding: 7px;
	padding-left: 10px;
	background-color: #F9D7DA;
	color: #8B3E56;
	display: flex;
	justify-content: space-between; /* Horizontal centering */
	align-items: center;
	border-radius: 10px;
	
  }
  
.alert p{
	color: #8B3E56;
	font-size: 15px;
	font-weight: bold;
}
  
  .closebtn {
	margin-left: 15px;
	color: #68746F;
	font-weight: bold;
	float: right;
	font-size: 30px;
	cursor: pointer;
	transition: 0.3s;

  }
  
  /* When moving the mouse over the close button */
  .closebtn:hover {
	color: black;
  }

  .alert {
	opacity: 1;
	transition: opacity 0.6s; /* 600ms to fade out */
  }

.success{
	padding: 7px;
	padding-left: 10px;
	background-color: #D1E7DE;
	display: flex;
	justify-content: space-between; /* Horizontal centering */
	align-items: center;
	border-radius: 10px;
	
  }

.success p{
	color: #558DA1;
	font-size: 15px;
	font-weight: bold;
}

 


/* End of Home Section */

/* About Section */

 #about{
	background: linear-gradient(#221364,#141030);
	background-size: cover;
	background-position: top center;
	padding-right: 100px;
	padding-left: 100px;
	padding-bottom: 150px;
	scroll-margin-top: 35vh;
	min-width: 100vw;
} 

#about h2{
	font-size: 30px;
	color: white;
	padding-bottom: 50px;
	text-align: center;
}

#about .about{
	align-items: center;
	justify-content: center;
	display: flex-column;
	margin: auto;
	max-width: 1200px;
	padding-bottom: 100px;
}
 

#about p {
	text-align: justify;
}


/* End of About Section */


/* Start of Sericves Section */
#services{
	background:  linear-gradient(#141030,#221364);
	padding-right: 100px;
	padding-left: 100px;
	padding-bottom: 100px;
	scroll-margin-top: 10vh;
	min-width: 100vw;

}

#services .services_ {
	display: grid;
	grid-template-columns:  repeat(3, 1fr); 
	align-content: center;
	column-gap: 40px;
	max-width: 1200px;
	margin: auto;
	
}

#services .services_ .ps{
	display: grid;
	grid-template-rows: 0.4fr 1fr;
	font-size: 12px;
	
}
#services .ka{
	text-align: center;
	justify-content: center;
}

#services .ka img{
	text-align: center;
	justify-content: center;
}

#services .service_moon img{
	max-width: 33%;

}

#services .service_hor img{
	max-width: 55%;
}

#services .service_nat img{
	max-width: 38%;
}


#services h2{
	padding: 20px 0;
	color: white;
	text-align: center;
}
#services p{
	font-size: 1.5rem;

}

#services .serv_heading h2{
	font-size: 30px;
	color: white;
	padding-bottom: 50px;
	text-align: center;
}

#services p{
	text-align: justify;
}

/* End of Sericves Section */


/* Subscribtion Section */

#subscription{
	background: linear-gradient(#221364,#141030); 
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: top center;
	min-width: 100vw;
}


#subscription .header-container {
    text-align: center;
    padding: 20px;
  }

#subscription  .header-container h1 {
    font-size: 30px;
  }

#subscription .main-container {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-right:200px
  }

#subscription .content-container, .image-container {
    flex: 1;
    padding: 20px;
  }

#subscription .content-container {
    max-width: 50%;
  }

#subscription .subscription-option {
    display: flex;
    align-items: center; /* This vertically centers the items in the container */
    justify-content: space-between; /* This separates the label and checkbox */
    background: #b439dc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
  }

#subscription .subscription-option-natal{
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    background: #65C435;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;

}

 #subscription .subscription-option h3, .subscription-option p {
    margin: 10px 0;
  }

.details{
	text-align: justify;
}

#subscription .details {
    font-size: 15px;
    margin: 20px 0;
  }




 #subscription  .start-button {
    background-color: #b439dc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    display: block;
    width: 50%;
    margin:auto;
	font-size:1.8rem;
  }

#subscription h3{
	color:white;
	font-size: 20px;
	
}


#subscription h2{
	color:white;
	font-size: 20px;
	padding-bottom: 20px;
}

#subscription p{
	color:white;
	font-size: 15px;
}


.start-button:hover {
    background-color: #C4C4C4;
    color: #2C2C54;
  }

#subscription  .image-container {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

#subscription  .image-container img {
    max-width: 100%;
    max-height: 160%;
    height: auto;
    transform: rotate(15deg);
  }

#subscription .checkbox-container {
    display: inline-block;
    position: relative;
    width: 24px; /* Size of the checkbox */
    height: 24px;
    margin-right: 20px;
  }
  
#subscription  .checkbox-container input[type="checkbox"] {
    opacity: 0; /* Hide the default checkbox */
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
  }
  
#subscription .checkbox-container label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; 
    border: 2px solid #fff; 
    border-radius: 4px; 
    cursor: pointer;
  }
  
#subscription .checkbox-container input[type="checkbox"]:checked + label {
    background-color: grey; 
   
  }
  


  
/* End of Subsription  */

/* Start of Footer */

 #footer{
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
}

#footer i{
	font-size: 2rem;

}
#footer .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
	color:#fff;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
	color:#fff;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
} 

.conf {
	display: flex;
	gap: 10px
}

.conf a span{
	font-size: 15px;
}

/* End of Footer */


.daily_wrapper{
	background: linear-gradient(#141030,#221364);
	padding-right: 100px;
	padding-left: 100px;
	min-height: 100vw;
	padding-top: 100px;
	display:flex-column;
	justify-content: center;
	align-items: center;
}

.daily_wrapper .daily_content{
	background-color: black;
	border-radius: 10px;
}

.daily_wrapper .daily_content p{
	padding: 13px 20px;
}


.daily_wrapper h2{
	color: white;
	font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 1000;
	text-align: center;
	
}

.daily_wrapper .dir{
	padding-top: 30px;
} 

.daily_wrapper .dir span{
	font-size: 20px;
	font-weight:bold;

} 


.rules_wrapper{
	background: linear-gradient(#141030,#221364);
	padding-right: 100px;
	padding-left: 100px;
}

.rules_content{
	margin: auto;
	max-width: 1200px;
	width: 100%;
	padding-top: 100px;
	padding-bottom:100px;
}

.heading_rules{
	display: flex;
	justify-content: center;
	padding-bottom: 20px;

}
.heading_rules h2{
	display: block;
	font-size: 2rem;
    font-weight: 800;
    color:white;
}


.rules_content p {
	color: #d483f1;
	font-size: 1.5rem;
	line-height: 2.5rem;
	font-weight: 300;
	text-align: justify;
}

.rules_content span {
	font-weight: bold;
}

.wrapper_consent {
	position: fixed;
	bottom: 50px;
	right: -370px;
	max-width: 345px;
	width: 100%;
	background: #fff;
	border-radius: 8px;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .wrapper_consent.show {
	right: 20px;
  }
  .wrapper_consent  header {
	display: flex;
	align-items: center;
	column-gap: 15px;
  }
  .wrapper_consent header i {
	color: #8D7CAF;
	font-size: 32px;
  }
  .wrapper_consent header h2 {
	color: #8D7CAF;
	font-weight: 800;
  }
  .wrapper_consent .data {
	margin-top: 16px;
  }
  .wrapper_consent .data p {
	color: #333;
	font-size: 16px;
  }
  .data p a {
	color: #674E98;
	text-decoration: none;
  }
  .data p a:hover {
	text-decoration: underline;
  }
  .wrapper_consent  .buttons {
	margin-top: 16px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  .buttons .button {
	border: none;
	color: #fff;
	padding: 8px 0;
	border-radius: 4px;
	background: #674E98;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
	background-color: #8D7CAF;
  }
  #declineBtn {
	border: 2px solid #674E98;
	background-color: #fff;
	color: #674E98;
  }
  #declineBtn:hover {
	background-color: #8D7CAF;
	color: #fff;
  }

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

	#home,
	#subscription,
	#about,
	#services,
	#newsletter,
	#header .header,
	.rules_wrapper,
	.daily_wrapper{
		padding-left:50px;
		padding-right:50px;
	}
	#home .home{
		padding-top: 250px;
	}

	/*  .header{
		padding-left:50px;
		padding-right:50px;
	} */
	#services{
		padding-bottom: 20px;
	}
	
	#services .services_ {

		grid-template-columns: 1fr;
		align-content: center;
		margin: auto;
		gap: 10px;
	}

	#about .about{
		padding-bottom: 0px;
	}

	#services .serv_heading{
		padding-bottom: 0px
	}
	
	#services .services_ .ps{
		display: grid;
		grid-template-rows: 1fr;
		grid-template-columns: 1fr 3fr;
		font-size: 12px;
		gap: 30px;
		padding-bottom: 50px;
	} 

	#services .ka{
		display: flex-column;
		margin: auto;
		padding-right: 50px;

	
	}

	#services h2{
		padding-top: 10px;
	}



	#footer{
		justify-content: center;
		padding: 10px;
	}

	#about {
		padding-top:50px;
	}	

	#about h1{
		text-align: center;
		
	}

	#about img{
		width: 200%;
	} 	

	#services .service_nat p{
		padding-left: 0px;
		
	}

	#services .service_hor p{
		padding-right: 0px;
		padding-bottom: 100px
		
	}

}


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

	#home .start-button {

		width: 60%;
	}

	#subscription .main-container {
		flex-direction: column;
		align-items: center;
		margin-right:0px
	  }
  
	  #subscription .content-container, .image-container {
		max-width: 100%;
		flex-grow: 1;
	  }
  
	  #subscription .content-container {
		order: 2;
	  }
  
	  #subscription .image-container {
		order: 1;
	  }
  
	  #subscription .image-container {
		  width: 30%; 
		  order: 1;
		  margin-bottom: 20px; 
		}
	  
	  #subscription .image-container img {
		  width: 100%; 
		  height: auto; 
		}
	

	.navbar .nav-links li, 
	.navbar .action_btn{
		display:none;
		
	} 

	#header .navbar .burger{
		display: block;
		padding: 0;
	} 

	 #header .dropdown_menu{
		display: block;

		
	}

	#home .home{
		padding-top: 250px;
	}

	#services .services_ .ps{
		grid-template-columns: 1fr;
	}


	#services .ka{
		padding-right: 0px;
	}

	#home,
	#subscription,
	#about,
	#services,
	#header .header,
	.rules_wrapper,
	.daily_wrapper{
		padding-left:30px;
		padding-right:30px;
	}



	#services .services_ {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr;
		row-gap: 30px;
	}

	#header .logo_{
		cursor: pointer;
		width:70px;
	}

   }  
@media screen and (max-width:700px){


	#home .start-button {

		width: 100%;
		font-size: 1.5rem;
		box-sizing: border-box;
		display: block;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;

	  }

	  #subscription .start-button {

		width: 100%;
		font-size: 1.5rem;
		box-sizing: border-box;
		display: block;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;

	  }

	.wrapper_consent {
		bottom: 0px;
	  }

	  .wrapper_consent.show {
		right: 0px;
	  }

	#home .home{
	display: grid;
	grid-template-columns: 1fr;
	padding-top: 100px;
	
	}
	.home-left{
		grid-row: 2;
	}
	#home  img{ 
		margin-left: 0px; 
		margin-top: 0;
		padding-bottom: 50px;
	} 

	#home .home-right{
		display: flex;
		align-items: center;
		justify-content: center;
	}


	#about .about-left  {	
		padding: 0 30px;
	
	}

	 .home-left  h2{
		font-size: 1.7rem;
		text-align: justify;
	}

	.home-left  h1{
		font-size: 2.5rem;
		margin-bottom: 30px;
		font-weight: 500;
	}

    /* .form-group {
		display: inline-block; 
		width: 100%; 
	
	} */


	 button {

		align-items: center;
		padding: 10px 20px;
		color: white;
		background-color:#2E4369;
		font-size: 2rem;
		letter-spacing: 0.1rem;
		margin-top: 10px;
		border-radius: 50px;
		text-align: center;
	}


	input {
		text-indent: 10px;
	} 

	#about {
		padding-top:0px;
	}	

	#about img{
		height: 450px;
		width: 450px;
	}

	#about .about-left  h1 {
		margin: auto;
		font-size: 3.5rem;
		text-align: left;
	
	}

	}



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

	#home .home-right img{ 
		max-width: 350px;
		max-height: 350px;
	  
	}

	 .home-left h1{ 
		font-size: 2.3rem;
		font-weight: 900;
		text-align: center;
	}

	#home button {
		margin-top: 20px;
	}

	#home .home-btn{
		display: flex;
		justify-content: center;
		align-items: center;

	
	}

	#about img{
		height: 350px;
		width: 350px;
	}

	#about .about-left h2{
	
		font-size: 1.8rem;
		font-weight: 300;
		text-align: justify;
		padding-bottom: 0px;
	
	}

	#subscription  .points img{
		padding-left: 0px;

	
	}

	#subscription  .points h1{
		font-size: 3rem;
		font-weight: 900;

	}

	#subscription  .points{
		text-align: center;
	}

	input{
		width: 100%;
	}
	 .email{
		width: 100%;
	}

	#home .home {
		padding-bottom: 80px;
	}
/* 
	#header .logo_{
		cursor: pointer;
		width:60px;
	} */

}


#main{
	background: linear-gradient(#141030,#221364);
}

#main .head{
	padding-top: 50px;
	padding-bottom:20px;
	text-align: center;
	color: white;
	font-size: 30px;
}

#main .main_wrapper{
	padding-top: 50px;
	max-width: 1200px;
	margin: 0 auto;

} 

#main .right {
	max-width: 300px;
	float: left;
	margin-right: 20px;
}



#main img{
	max-width: 100%;
	height: auto;
	border-radius: 20px 20px 1px 20px;
}

#main .main_img{
	padding-top: 20px;

}
.content p{
	text-align: justify;
}

iframe {
	max-width: 100%;
}

#main .heading_main span{
	color: #d483f1;
	font-size: 30px;
	font-weight: 1000;

}

#main .right h2{
	color: white;
	font-size: 30px;
}

#main .videos{
	grid-column: span 2;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	overflow: hidden;
}

#kris-services{
	background: linear-gradient(#221364, #141030);
	padding-top: 100px;
}

#kris-services .wrapper{
	max-width: 1200px;
	margin: 0 auto;

}

#kris-services h2{
	justify-content: center;
	text-align: center;
	color: white;
	font-size: 30px;
}

.list{
	padding: 20px 0;
}

.collapsible{
	background-color: #674E98;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	border-radius: 8px;
	text-align: left;
	outline: none;
	font-size: 15px;
	font-weight: 400;
}

.service-descrption{
	padding: 20px;
	display: none;
	overflow: hidden;
	background-color: #221364;
	border-radius: 8px;
}

.service span{
	font-weight: 700;
}
.active, .collapsible:hover {
	background-color: #8D7CAF;
  }


#kris-services .collapsible{
	display: flex;

}

#kris-services .service{
	padding-top:10px;
} 

#kris-services i{
	margin-left: auto;
} 

#kris-services ul{
	padding-left: 20px;
	color: #d483f1;
	font-size: 1.5rem;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;

}
#kris-services .content{
	max-width: 1200px;
}

.contact {
	padding-top: 20px;
}

.contact span{
	font-weight: 500;
}




@media screen and (max-width:1200px){
	
	.list,
	.main_wrapper
	{
		padding: 20px 50px;
	}




}

@media screen and (max-width:900px){
	#main .videos{
		flex-direction: column;
		align-items: center;
	}
}

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

	#subscription .image-container {
        width: 50%; 
        order: 1;
        margin-bottom: 20px; 
      }

	#main .right {
		max-width: 100%;
		display: flex;
		align-items: center;
		margin-right: 0px;
		overflow: hidden;
		padding-bottom: 10px;
		gap: 50px;
	}


	#main .right img{
		max-width: 100%;
	
	}

	#main .heading_main{
		text-align: right;
	}

	#main .heading_main span{
		font-size: 25px;
	}
	
	#main .right h2{
		font-size: 25px;
	}

	#main .right h2{
		text-align: left;
		
	} 

} 

@media screen and (max-width:500px){
	#main .right {
		flex-direction: column;
		/* align-items: center;
		gap: 100px;
		margin-right: 0px;
		overflow: hidden;
		padding-bottom: 10px; */
	}
	#main .right img{
		max-width: 100%;
	
	}

	#main .heading_main span{
		font-size: 20px;
	}
	
	#main .right h2{
		text-align: center;
		font-size: 20px;

	}

	p{
		font-size: 16px;
	}
	

}
                                         



