/* Additional Information Section Goes Here */
#add-information .collapsible {
	background-color: transparent;
	color: #151C33;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	outline: none;
	transition: all .3s ease;
	border: 1px solid #151C33;
	border-radius: 15px;
	font-size: 15px;
	margin: 5px 0;
}

#add-information .active, #add-information .collapsible:hover {
	background-color: #151C33;
	color: white;
}

#add-information .content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

#add-information .content a {
	text-decoration: none;
	color: #151C33;
    margin-bottom: 5px;
	transition: all .3s ease;
	border-bottom: 1px solid transparent;
}

#add-information .content a:hover {
	cursor: pointer;
	border-bottom: 1px solid #151C33;
}

#add-information .content p {
	margin: 15px 0;
}

#add-information .container{
	width: 1174px;
	margin: 50px auto;
}

@media screen and (max-width: 1174px) {
	#add-information .container {
		padding: 12px;
	}
	#add-information .container,
	#add-information .container .parent .child {
		width: 100%!important;
	}
}
/* Additional Information Section Ends Here */

@media screen and (min-width: 1024px) {
	.settings-form {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		justify-content: start;
	}
}

.settings-form input, .settings-form button {
	width: 100%;
	background-color: #eeeeee;
	padding: 12px;
	border-radius: 5px;
	border: 0;
	outline: 0;
}	

.settings-form label {
	font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 5px;
}

.settings-form button {
	background-color: #5cb85c;
	color: white;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.d-flex.flex-column {
	margin: 15px;
	flex-direction: column;
}

#quiz_section .parent {
	grid-template-columns: 1fr;
}

/* APPS Banner goes here */
#apps {
	position: relative;
	height: 100vh;
	margin: 50px auto;
}

#apps .wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #d5d5d5;
	height: 40vh;
	width: 100%;
}

#apps .container .parent .child h1 {
	margin-bottom: 20px;
	padding: 20px 0;
    font-size: clamp(35px, 5vw, 50px);
    /* font-size: 70px; */
    -webkit-text-stroke: 1px #151C33;
    -webkit-text-fill-color: transparent;
    text-align: left;
    z-index: -1;
    opacity: 0.6;
}

#apps .container .parent .child .img_wrapper img {
	width: 250px;
} 

#apps .container .parent .child .btn_wrapper {
	margin-bottom: 30px;
	display: flex;
}

#apps .container .parent .child .btn_wrapper a {
	background: #5cb85c;
	color: white;
	border-radius: 5px;
	padding: 12px 40px;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: all .3s ease;
} 

#apps .container .parent .child .btn_wrapper a:first-child {
	margin-right: 15px;
}


#apps .container {
	margin: auto;
	position: relative;
	z-index: 1;
	width: 1174px;
}

#apps .container .parent {
	display: flex;
	flex-wrap: wrap;
	justify-items: flex-start;
	align-items: center;
}

#apps .container .parent .child {
	width: 50%;
}

#apps .container .parent .child img {
	width: 450px;
}

@media screen and (max-width: 1174px) {
	#apps {
		height: 100%;
	}

	#apps .container {
		height: 100%;
		padding: 12px;
	}
	#apps .container,
	#apps .container .parent .child,
	#apps .container .parent .child img {
		width: 100%!important;
	}

	#apps .container .parent .child .btn_wrapper a {
		padding: 18px 12px;
	}
}
/* APPS Banner ends here */