/*-----------------------directory------------------------------
--v1.9.6--

global
1. header
2. adcontainer
3. carousel
4. contact
5. FAQ
6. loginform
7. medicine
8. services
9. symptoms
10. footer
*/

/*-----------------------GLOBAL------------------------------*/
a {
	/*remove anchor tag preset style*/
	text-decoration: none;
}

html,
body {
	scroll-behavior: smooth;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	/*BEWARE*/
}

button,
button:active,
button:focus {
	/*to remove button preset style*/
	border: none;
	box-shadow: none;
}


/*-----------------------1. header------------------------------*/

.desktop-links {
	display: inline-block;
	list-style: none;
	padding: 5px;
}

.desktop-links a {
	margin: 0 10px;
	transition: all 0.3s ease 0s;
}

.desktop-links a:hover {
	color: #e22;
}

.drop-downlist {
	box-shadow: 0 5px 6px #333;
	display: none;
	width: 90%;
}

.drop-downlist a {
	background-color: #E22;
	border: 1px solid white;
	color: #fff;
	text-align: right;
	display: block;
	padding: 5%;
	text-decoration: none;
	z-index: 999;
}

.drop-downlist a:hover {
	background-color: #fff;
	color: #E22;
}

.flag {
	height: 11px;
}

header {
	align-items: center;
	display: flex;
	font-family: helvetica;
	font-size: 14px;
	height: 60px;
	padding: 10px 10px;
	justify-content: center;

}

header a {
	color: #444;
	text-decoration: none;
}

.header-btn {
	background-color: #E22;
	border: #E22 1px solid;
	border-radius: 5px;
	color: #fff;
	margin-left: 20px;
	padding: 10px 30px;
	display: inline-block;
	transition: all 0.3s ease 0s;
}

.header-btn:hover {
	border: #E22 1px solid;
	background-color: #fff;
	color: #E22;
	opacity: 0.8;
}
.header-pn{
	width:100%;
}
.header-phone {
	align-items: center;
	display: flex;
	margin-left: auto;
	margin-right:15px;

}

.header-phone svg {
	height: 20px;
	margin-right:15px;
}

.logo-container {
	display: flex;
	margin-right: auto;
  align-items: center;
}

.logo-container .doc-logo {
	height: 35px;
	margin: 0 10px 0 10px;
	padding-right: 10px;
	width: auto;
}

.logo-container svg {
	margin-right: 10px width: 50px;
}

.logo-header {
	height: 35PX;
	width: auto;
	margin-right:10px;
}

.mobile-links {
	border-radius: 5px;
	display: none;
}

.mobile-links:hover .drop-downlist {
	display: block;
	position: absolute;
	right: 20px;
	z-index: 999;
}

@media (max-width:1200px) {
	.desktop-links a {
		margin: 0;
	}



}

@media (max-width:768px) {
	header {
		display: flex;
	}

	.desktop-links,
	.btn,
	.header-phone {
		display: none;

	}

	.logo-header {
		height: 35px;
		margin-left: auto;
	}

	.mobile-links {
		display: block;
		float: right;
	}

}

/*end header*/
/*-----------------------2. adcontainer------------------------------*/
.ads-container {
	/* background-color: #F5E6B3; */
	background-image: url(/greateasterntakaful/img/boost_grab_banner_desktop.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	min-height: 201px;
	width: 100%;
	margin-top: 20px;
}

#checkbox1{
	margin-top: 20px;
}

@media (max-width:768px){

	.ads-container{
		background-image:url(/greateasterntakaful/img/boost_grab_banner.png);
		height: 150px;
	}
}

/*-----------------------3. carousel------------------------------*/
/* -------------------------------------------------------- slider */
.slider {
	display: block;
	min-height: 400px;
	overflow: hidden;
	position: relative;
}

/* -------------------------------------------------------- slide */
.slider > ul {
	height: 50%;
	z-index: 100;

}

.slider > ul > li {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: all 2000ms ease;
	width: 100%;
	z-index: 1;
}

.slider > #input-slide-0:checked ~ ul > li.slide-0,
.slider > #input-slide-1:checked ~ ul > li.slide-1,
.slider > #input-slide-2:checked ~ ul > li.slide-2,
.slider > #input-slide-3:checked ~ ul > li.slide-3 {
	opacity: 1;
	z-index: 2;
}


/* -------------------------------------------------------- description */
.slider > .slide-description {
	color: #fff;
	font-family: helvetica;
	position: absolute;
	right: 45%;
	text-shadow: 0 5px 6px #333;
	top: calc(35% - 3vw);
	width: 50%;
	z-index: 200;
}

.slider > .slide-description > label {
	position: absolute;
	transition: all 0.75s ease;
	visibility: hidden;
	width: 80%;
}

.slider > #input-slide-0:checked ~ .slide-description > .slide-0,
.slider > #input-slide-1:checked ~ .slide-description > .slide-1,
.slider > #input-slide-2:checked ~ .slide-description > .slide-2,
.slider > #input-slide-3:checked ~ .slide-description > .slide-3 {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.slider > .slide-description > label > .text-slide {
	margin: 0 auto;
	text-align: left;
}

.slide-description .title {
	font-size: 45px;
	font-weight: 700;
}

.slide-description .sub-title {
	font-size: 20px;
}

/* -------------------------------------------------------- autoplay slide */

@keyframes slide {

	0%,
	100% {
		opacity: 0;
	}

	6%,
	25% {
		opacity: 1;
		z-index: 2;
	}

	30%,
	50% {
		opacity: 0;
		z-index: 2;
	}
}

.slider > #input-slide-autoplay:checked ~ ul > li.slide-00 {
	animation: slide 32000ms infinite -2000ms linear;
}

.slider > #input-slide-autoplay:checked ~ ul > li.slide-01 {
	animation: slide 32000ms infinite 6000ms linear;
}

.slider > #input-slide-autoplay:checked ~ ul > li.slide-02 {

	animation: slide 32000ms infinite 14000ms linear;
}

.slider > #input-slide-autoplay:checked ~ ul > li.slide-03 {

	animation: slide 32000ms infinite 22000ms linear;
}

.slider > #input-slide-autoplay:checked ~ ul > li {
	transition: none;
}

@media (max-width:768px) {
	.slider > .slide-description {
		right: 10%;
		top: 50%;
		width: 80%;
	}

	.slide-description .title {
		font-size: 18px;
		font-weight: 600;
	}
	.slider {
		min-height:220px;
	}
	.slide-description .sub-title {
		font-size: 15px;
	}

	.slider > ul > li {
		background-position: right top;
	}
}

/* -------------------------------------------------- autoplay text */

@keyframes description {

	0%,
	5% {
		opacity: 0;
		z-index: 2;
		visibility: visible;
	}

	6%,
	24% {
		opacity: 1;
		z-index: 2;
		visibility: visible;
	}

	25%,
	100% {
		opacity: 0;
		z-index: 0;
		visibility: hidden;
	}
}

.slider > #input-slide-autoplay:checked ~ .slide-description > .slide-0 {

	animation: description 32000ms infinite -2000ms ease;
}

.slider > #input-slide-autoplay:checked ~ .slide-description > .slide-1 {

	animation: description 32000ms infinite 6000ms ease;
}

.slider > #input-slide-autoplay:checked ~ .slide-description > .slide-2 {

	animation: description 32000ms infinite 14000ms ease;
}

.slider > #input-slide-autoplay:checked ~ .slide-description > .slide-3 {

	animation: description 32000ms infinite 22000ms ease;
}

.slider > #input-slide-autoplay:checked ~ .slide-description > label {
	transition: none;
}
}


/*-----------------------4. contact------------------------------*/

.banner-textarea .banner-desc {
	color: #fff;
	display: block;
	font-size: 16px;
	margin: 5px;
	padding: 0;
}


.banner-emel {
	border-left: 1px #fff solid;
	padding-left: 40px;
}

.banner-icon-phone {
	fill: #fff;
	height: auto;
	width: 25px;
	margin:3px 5px;
}

.banner-icon-mail {
	fill: #fff;
	width: 30px;
	margin:0 5px;
}

.banner-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin: 0 5px;
	padding: 0;
}

.banner-textarea,
.banner-icon {
	display: inline-block;
}

.contact-banner {
	align-items: center;
	background-color: #e22;
	color: #fff;
	display: flex;
	font-family: helvetica;
	justify-content: flex-start;
	margin: 0;
	padding: 2% 0 2% 20%;
}
.contact-banner-container{
	display: flex;
	justify-content: flex-start;
}
.cont-banner-wrapper {
	align-items: flex-start;
	display: flex;
	padding-right: 10px;
	text-align: left;
	text-decoration: none;
}
@media screen and (max-width:1200px){
	.contact-banner{
		padding: 2% 0 2% 8%;
	}
}
@media screen and (max-width:576px) {
	.contact-banner {
		padding: 25px 10px;
	}

	.banner-desc {
		font-size: 12px;
		color:#fff;
	}

	.banner-title {
		font-size: 14px;

	}

	.cont-banner-wrapper {
		margin: -0 auto;
		padding: 0px;
		justify-content: center;
	}

	.banner-emel {
		padding-left: 9px;
		width: contents;
	}

	.banner-icon-phone {
		width: 12px;
	}

	.banner-icon-mail {
		width: 15px;
	}

}


/*-----------------------5. FAQ------------------------------*/
.faq-answers {
	color: #444;
	font-size: 14px;
	font-weight:500;
	font-size:12px;
	padding: 0;
	margin:0;
}

.faq-answers span {
	color: #35A;
	font-weight: 700;
}

.faq-container {
	color: #444;
	font-family: helvetica;

}

.faq-container a {
	color: #444;
}

.faq-container ol li {
	padding: 0;
	font-size:14px;
	font-weight: 600;
	color: #E22;
}

.faq-container h2 {
	margin : 80px 0 40px 0;
	text-align: center;
}

.faq-questions {
	color: #E22;
	margin-top: 18px;
	margin-bottom: 3px;
}

@media screen and (max-width: 576px) {
	.faq-container ol {
		font-size: 12px;
		color: #e22;
		margin-left: -16px;
	}

	.faq-answers {
		font-size: 12px;
	}
	.faq-container h2 {
		margin : 80px 0 40px 0;
		text-align: center;
		font-size: 18px;
	}

}


/*-----------------------6. loginform------------------------------*/

.form-wrapper {
	font-size: 14px;
}


.form-wrapper input[type=text],
.form-wrapper input[type=password] {
	border: 1px solid #eee;
	box-sizing: border-box;
	border-radius: 5px;
	display: inline-block;
	margin: 0;
	padding: 15px 15px;
	width: 100%;
}

/*checkbox*/
.form-wrapper input[type=checkbox].css-checkbox {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	left: -1000px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	z-index: -1000;
}

.form-wrapper input[type=checkbox].css-checkbox + label.css-label {
	background-repeat: no-repeat;
	background-position: 0 0;
	display: inline-block;
	font-size: 12px;
	height:17px;
	line-height: 17px;
	margin: 15px;
	padding-left: 22px;
	vertical-align: middle;
}

.form-wrapper input[type=checkbox].css-checkbox:checked + label.css-label {
	background-position: 0 -17px;
}

.form-wrapper label.css-label {
	background-image: url(/greateasterntakaful/img/csscheckbox_red.png);
	user-select: none;
}

/*--end  checkbox--*/
.login {
	background-color: #f5f5f5;
	margin-top: 20px;
}

.login-btn {
	background-color: #e22;
	border-radius: 5px;
	color: #fff;
	margin: 8px 0;
	padding: 14px 20px;
	width: 100%;
	cursor: pointer;
}

.login-form .login-forget {
	color: #333;
	font-size: 12px;
	display: block;
	margin: 15px;
	text-align: center;
	text-decoration: underline;
}

.login-form {
	color: #333;
	font-family: helvetica;
	max-width: 700px;
	margin-left: auto;
	padding: 20px;
}

.login-form .login-title {
	font-size: 24px;
	font-weight: 700;
	margin-left: 47px;
	margin-top:18px;
}

.logo-login {
	width: 70px;

}

.Doc-logo{
	margin: 60px -70px;
	width: 5%;
	position: absolute;
}

.Med-Logo{
	margin: 70px -75px;
	width: 6%;
	position: absolute;
}

.logo-order{
	position: absolute;
	font-size: 12px;
	margin-top: -25px;
	margin-left: 50px;
}

.servicetn{
	margin-top: -30px !important;
}

.login-img img {
	display: block;
	height: 470px;
	margin: 0 auto;
	width: auto;
}

.login-wrapper {
	height: auto;
}


@media (max-width:992px) {
	.login-img img {
		display: none;
	}
}
@media (max-width:576px){
	.login-btn {
		margin-top:30px;
	}
}

/*-----------------------7. medicine------------------------------*/

.medicine-col a {
	color: #333;
}

.medicine-container {
	border-left: 1px #eee solid;
	color: #333;
	font-family: helvetica;
	font-size: 14px;
	margin-top: 20px;
}


.medicine-disclaimer {
	font-size: 13px;
	text-align: center;
}


.medicine-list {
	text-align: center;
}
.medicine-name{
	font-weight: 600;
	height:45px;
}
.medicine-picture {
	min-height: 130px;
	display: flex;
}

.medicine-picture img {
	height: auto;
	margin: auto;
	width: 100px;
}


.medicine-textarea hr{
	width:30px;
	background-color: #E22;
	border-radius:5px;
	height:4px;
	margin:10px auto;
	border:none;

}
.medicine-product {
	border: 1px #eee solid;
	margin: auto auto 10px auto;
	padding: 5px;
}

.medicine-textarea {
	margin: 10px 0;
}
.medicine-textarea .symp-med-btn{
	color: #fff;
	padding: 10px 0;
}


@media(max-width: 768px) {
	.medicine-container {
		border: none;
		order:1;
	}

}
@media(max-width: 576px){
	.disclaimer-alignment{
		display: block;
	}
}



/*-----------------------8. Services------------------------------*/

.service-btn {
	background-color: #e22;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size:12px;
	margin: 10px auto;
	padding: 10px 15px;
	width: 120px;
	text-align: center;
	cursor: pointer;
}

.service-container {
	color: #444;
	font-family: helvetica;
	margin: 80px inherit inherit 80px;
}

.service-container h2 {
	font-size: 24px;
	text-align: center;
}

.service-desc {
	font-size: 14px;
	height: 120px;
}

.service-textarea {
	min-height: 200px;
	padding: 0 25px 15px;
}

.service-title {
	font-weight: 700;
	font-size: 16px;
}

.service-wrapper {
	border: 1px #ccc solid;
	margin: 5px auto;
	min-height: 380px;
	width: 80%;
}

.service-wrapper img {
	width: 100%;
}
@media only screen and (max-width: 360px) {
	.login-form .login-title {
		font-size: 20px !important;
		font-weight: 700 !important;
		margin-left: 35px !important;
		margin-top: 50px !important;
	}
	.logo-order {
		position: absolute !important;
		font-size: 12px !important;
		margin-top: -25px !important;
		margin-left: 37px !important;
	}
}

@media only screen and (max-width: 768px) {
	.service-desc {
		min-height: 0;
		font-size: 0.9em;
	}

	.service-title {
		font-size: 0.9em;
	}

	.service-wrapper {
		min-height: 0;
		width: auto;
	}
	.service-btn{
		margin:16px auto;
	}
	.service-container h2 {
		font-size: 18px;
	}

	.login-form .login-title {
		font-size: 22px;
		font-weight: 700;
		margin-left: 35px;
		margin-top: 50px;
	}
	.Doc-logo {
		margin: 100px -70px;
		width: 8%;
		position: absolute;
	}
	.logo-order {
		position: absolute;
		font-size: 12px;
		margin-top: -25px;
		margin-left: 37px;
	}
	.Med-Logo {
		margin: 103px -75px;
		width: 9%;
		position: absolute;
	}
	.form-wrapper {
		font-size: 14px;
		margin-top: 30px;
	}
}

@media only screen and (max-width: 576px) {
	.service-wrapper {
		width: auto;
	}

	.service-desc {
		min-height: 0;
	}

	.service-textarea {
		padding: 0 8px;
	}
}

/*-----------------------9. symptoms------------------------------*/
.symptom-container {
	color: #333;
	font-family: helvetica;
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
}

.symptom-container a {
	text-align: center;
}

.symptom-container p,
h2 {
	text-align: left;
}

.symp-desc {
	margin: 2px;
	padding: 0;
}

.symp-icon {
	align-content: center;
	background-color: #e22;
	border-radius: 5px;
	display: flex;
	height: 50px;
	width: 50px;
}

.symp-icon svg {
	fill: #fff;
	margin: 6px;
	width: 40px;
}

.symp-icon-text {
	display: flex;
	margin: 12% 2%;
}

.symp-med-btn {
	background-color: #e22;
	border-radius: 5px;
	bottom: 0;
	color: #fff;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	text-align: center;
	margin: 0 auto;
	width: 50%;
}

.symp-med-btn-2 {
	background-color: #e22;
	border-radius: 5px;
	bottom: 0;
	color: #fff;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	text-align: center;
	margin: 0 auto;
	width: 160px;

}


.symp-textarea {
	overflow: auto;
	padding-left: 10px;
}

.symp-title {
	font-weight: 600;
	margin: 0;
}
@media (max-width:768px){
	.symptom-container{
		order:2;
	}
}

/*-----------------------10. footer------------------------------*/

footer {
	background-color: #E22;
	font-family: helvetica;
	font-size: 12px;
	float: clear;
	padding: 2%;
	text-align: right;
}

footer a {
	color: #fff;
	display: inline-block;
	margin-left: 2%;
}

@media (max-width:768px) {
	footer a {
		color: #fff;
		display: block;
		margin: 15px 10px;
		text-align: right;
	}
}