* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	padding-top: 120px; /* To account for sticky header */
}

.header {
	background-color: #f8f9fa;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.fix {
	position: fixed;
}

.title-row {
	padding: 20px;
	text-align: center;
	background: linear-gradient(
    345deg,
    #000b2e 0%,
    #031552 20%,
    #04227e 40%,
    #112ea1 60%,
    #1b37c4 80%,
    #2848ff 100%
);
	color: white;
	position: relative;
}

.title-row h1 {
	font-size: 2rem;
}

.nav-row {
	display: flex;
	justify-content: center;
	padding: 12px 0;
	background:  linear-gradient(
        345deg,
        #001275 0%,
        #002a85 20%,
        #003dad 40%,
        #0050e6 60%,
        #0f5bff 80%,
        #2a74ff 100%
    );
	color:#fff;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin: 0 15px;
}

.nav-menu a {
	text-decoration: none;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.1rem;
	padding: 5px 15px;
	transition: color 0.3s;
	display:block;
	margin-left:20px;
	margin-right:20px;
	border-radius: 20px;
}

.nav-menu a:hover {
	color: #ffef12;
	display:block;
	margin-left:20px;
	margin-right:20px;
	border-radius: 20px;
	background-color: #0015b4;
}

.hamburger {
	display: none;
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
	z-index: 1001;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
	.nav-row {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		background-color: #ffffff;
		padding: 0;
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	}

	.nav-row.active {
		display: block;
	}

	.hamburger {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
		padding: 5px 0;
	}

	.nav-menu li {
		margin: 5px 0;
		text-align: center;
	}

	/* Hamburger animation */
	.hamburger.active div:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active div:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active div:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

.ac {
	text-align: center;
}

.fc3 {
	color:#333;
}

.bt {
	font-weight: 700;
}

.btn1 {
	padding:8px 22px;
	display: block;
	background-color: #0019a4;
	border-radius: 99px;
	color:#fff;
}

.btn1:hover {
	background-color: #0020d8;
}

.btn12 {
	padding:5px 11px;
	display: block;
	background-color: #1346df;
	border-radius: 24px;
	color:#fff700;
	border: #001275 2px solid;
	box-shadow: #000b2e -4px 4px;
}

.btn12:hover {
	background-color: #0020d8;
}

.ti {
	font-style: italic;
}

.bk1 {
	padding:8px 22px;
	display: block;
	background-color: #ecefff;
	border-radius: 5px;
}

.btn4 {
	padding:4px 22px;
	display: block;
	background-color: #4561ff;
	border-radius: 99px;
	border: #ffffff 4px solid;
	color:#fff;
}

.btn4:hover {
	background-color: #072dff;
	border: #fcff68 4px solid;
}

.pageside {
	background-color: #fff;
	padding:10px;
	border-radius: 10px;
	width:95%;
	margin-left:2%;
	margin-right:2%;
	max-width: 1800px;
}

.verse {
    font-size: 1.1rem;
	color:#2e3c9a;
    margin: 0;
	font-family: 'Nanum Gothic', sans-serif;
	text-rendering: optimizeLegibility;
	font-weight: 700;
}

.title {
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
	text-rendering: optimizeLegibility;
}

.title:hover {
	text-decoration: none;
}

.ib {
	display:inline-block;
}

.btn2 {
	margin-left: 1px;
	margin-right: 1px;
	border-radius: 7px;
	padding: 4px 12px;
}

.btn2:hover {
	background-color: #fff;
}

.btn3 {
	margin-left: 1px;
	margin-right: 1px;
	border-radius: 7px;
	padding: 4px 12px;
}

.btn3:hover {
	background-color: #fcff68;
}

.it {
  margin-left: 20px; /* Adjust indent size as needed */
  text-indent: -20px; /* Hanging indent for numbers */
  padding-left: 20px; /* Ensures text aligns after numbers */
  margin-bottom: 2px; /* Space between lines */
}

.c1 {
	color: #121417;
}

.c4 {
	color: #333;
}

.c2 {
	color: #09357c;
}

.c3 {
	color: #1350b4;
}

.c5 {
	color: #5797ff;
}

.spc {
	display: block;
	padding:80px;
}

.t1 {
	line-height: 1.6;
  	font-size: 1.1rem;
	letter-spacing: 0.35px;
}

.t2 {
	line-height: 1.7;
  	font-size: 1.7rem;
}

.t3 {
	line-height: 1;
  	font-size: 2.2rem;
}


.hl{
	background-color: #fffc40;
	border-radius: 5px;
	color:#000;
	padding:2px;
}

.hl2{
	background-color: #e1e4ff;
	border-radius: 15px;
	color:#000;
	padding:2px 12px;
}

.f1 {
  font-family: 'Inter', sans-serif;
}

.f2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.f3 {
  font-family: 'Roboto', sans-serif;
}

.f4 {
  font-family: 'Open Sans', sans-serif;
}

.f5 {
  font-family: 'Montserrat', sans-serif;
}

.f6 {
  font-family: Arial, sans-serif;
}

.f7 {
  font-family: 'Lato', sans-serif;
}

.f8 {
  font-family: 'Poppins', sans-serif;
}

.f9 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
}

.f10 {
  font-family: 'Nunito', sans-serif;
}

.f11 {
	font-family: 'Bree Serif', serif;
}

.f12 {
	font-family: 'Boogaloo', cursive;
}

.f13 {
	font-family: 'Carter One', cursive;
}

.f14 {
	font-family: 'Kaushan Script', cursive;
}

.f15 {
	font-family: 'Maitree', serif;
}

.f16 {
	font-family: 'Baloo 2', cursive;
}

.f17 {
	font-family: 'Dosis', sans-serif;
}

.f18 {
	font-family: 'Nanum Gothic', sans-serif;
}

.ref {
    font-size: 0.8rem;
	letter-spacing: 0.5px;
	font-weight: 700;
    margin: 0;
	color:#2b6bec;
    transform: translateX(27%);
	font-family: 'Nanum Gothic', Tahoma, Verdana, sans-serif;
	text-rendering: optimizeLegibility;
}

@media screen and (max-width: 1080px) {
	.verse {
	font-size: 1rem;
	}
	}

@media screen and (max-width: 900px) {
	.verse {
	font-size: 1rem;
	}
	}
	
	@media screen and (max-width: 700px) {
	.verse {
	font-size: 1rem;
	}
	.ref {
		font-size: 1rem;
	}
	}
	
	@media screen and (max-width: 480px) {
	.verse {
	font-size: 1rem;
	}
	}
	
	@media screen and (max-width: 360px) {
	.verse {
	font-size: 0.9rem;
	}
	}




/* HTML structure for header image */
.header-image {
	position: relative;
	width: 100%; /* Set the initial width to 100% */
	max-width: 1440px; /* Set the maximum width to 1440 pixels or your desired value */
	height: auto; /* Set height to auto to maintain aspect ratio */
  }
  
  /* CSS for making the header image responsive */
  @media (max-width: 768px) {
	.header-image {
	  max-width: 100%; /* Set the maximum width to 100% on smaller screens */
	}
  }

  .header1 {
	font-size: 1.8rem;
	font-weight: 600;
	color:#1d2a66;
	text-align: center;
	font-family: 'Maitree', Tahoma, Verdana, sans-serif;
  }

  

  .tc {
	text-align: center;
  }



  .alink {
	font-size: 1rem;
	font-weight: 600;
	color:#32438f;
	text-align: center;
	font-family: 'Roboto', Tahoma, Verdana, sans-serif;
  }

  .alink:hover {
	color:#fff;
  }

  .details {
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	font-family: 'Nanum Gothic', Tahoma, Verdana, sans-serif;
	text-rendering: optimizeLegibility;
  }
  
  .details:hover {
	text-decoration: none;
  }

.ml01 {
	margin-left: -10rem;
}
.ml02 {
	margin-left: 1rem;
}
.ml03 {
	margin-left: 1rem;
}

.al2 {
	float: left;
  	clear: both;
	margin-top:5px;
	margin-left: 12px;
}

.grid {
	/*max-width: 1440px; */
	max-width:96%;
	margin: 0 auto;
	display: grid;
	margin-left:4px;
	margin-right:4px;
	grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1000px) {
	.grid {
		grid-template-columns: 1fr;
		margin-left:1px;
		margin-right:1px;
	}
	}

.tester {
	font-size: 2rem;
	color:#000;
}

@media screen and (max-width: 1000px) {
	.tester {
		font-size: 1rem;
}
}

.card {
	background-color: #d9dde7;
	color:#32438f;
	padding: 10px;
	border-radius: 7px;
	margin: 10px;
}

.card:hover {
	background-color: #2554e0;
	color:#fff;
}

.card2 {
	background-color: #d9dde7;
	color:#1756cb;
	padding: 10px;
	border-radius: 7px;
	margin: 10px;
	font-family: 'Roboto', Tahoma, Verdana, sans-serif;
	font-size: 1.2rem;
}

.card2:hover {
	background-color: #3950e7;
	color:#fff;
}

.card3 {
	background-color: #d9dde7;
	padding: 10px;
	border-radius: 7px;
	margin: 10px;
}

.youtubethumbnail {
	width:100%;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
}

  .space1 {
	margin-top: 4px;
  }

  .pagecontainer {
	background: linear-gradient(to right, #add8e6, #87cefa);
	max-width: 1440px;
	width: 100%;
	height: auto;
	margin: auto;
  }

.top-btn {
	font-family: 'Roboto', sans-serif;
	margin-top: 4px;
	color:#e0e9ff;
	background-color: #5aa4ff;
	padding:1px 12px;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	z-index: 9999;
}

.top-btn:hover {
		cursor: pointer;
		color:#002d95;
	background-color: #fff;
		text-decoration: none;
		display: inline-block;
}






.clearbox {
	clear: both;
}

.verse-box {
	background-color: #c2d6ff;
	padding:5px 7px;
	width:100%;
	max-width: 1440px;
	text-align: center;
	margin:auto;
}

.empty-box {
	background-color: #ffffff;
	padding:15px 7px;
	width:100%;
	max-width: 1440px;
	text-align: center;
	margin:auto;
}

.gradient-container {
  width: 100%;
  margin-top: 40px;
  height: 1000vh; /* Adjust the height as needed */
  background: linear-gradient(to right, rgb(224, 221, 215) 0%, rgb(255, 255, 255) 50%, rgb(224, 221, 215) 100%);
}

.mid-box2 {
	display: grid;
	grid-template-columns: 2fr 2fr;
	grid-gap: 10px;
	width: 95%;
	max-width: 1440px;
	margin:auto;	
  }
  
  .row {
	padding: 20px;
  }
  
  .sample-word {
	text-align: center;
  }

.text-container {
    position: absolute;
    top: 27%;
	margin-top: 100px;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 700px) {
	.text-container {
		top: 10%;
		margin-top: 40px;
	}
	.logotext {
		font-size: 0.8rem;
		margin-top: 7px;
	}
}
@media screen and (max-width: 1200px) {
	.text-container {
		top: 24%;
		margin-top: 80px;
	}
	.logotext {
		font-size: 0.9rem;
		margin-top: 7px;
	}
}











	  



/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
	background: #212121;
	font-size:22px;
	line-height: 32px;
	color: #ffffff;
	margin: 0;
	padding: 0;
	word-wrap:break-word !important;
	font-family: 'Open Sans', sans-serif;
	}

h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}	

h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
	color: #FFF;
}

h3 a {
	color: #FFF;
}

a {
	color: #FFF;
}

h1 {
	margin-top: 100px;
	text-align:center;
	font-size:60px;
	line-height: 70px;
	font-family: 'Bree Serif', 'serif';
	}

#container {
	margin: 0 auto;
	max-width: 100%;
}

p {
	text-align: center;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #3c8ad9;
}

#logo {
	display: block;
	padding: 0 30px;
	float: left;
	font-size:22px;
    font-weight: 700;
	line-height: 60px;
    color: #fff;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #3c8ad9;
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:17px;
	text-decoration:none;
}




nav ul li ul li:hover { background: #12145C; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #12145C; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color: #444CB9;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

	.toggle:hover {
		background-color: #12145C;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #12145C;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #202142; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}

