@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;1,100');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

body {
    background: #F9F8FF;
    background-size: 200% 100% !important;
    animation: move 10s ease infinite;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    min-height: 100vh;
}

.main-content {
	position: relative;
	height: auto;
	min-height: calc(100vh - 200px);
	display: flex;
	padding-top: 140px;
	background-size: 100% 100%;
	background-repeat: repeat-y;
}
.red-color {
	color: red;
}

.blue-color {
	color: blue;
}

.highlight {
	color: #00ada7;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: black;
}

.mb-px-20 {
	margin-bottom: 20px;
}

input.form-control {
	border-radius: 12px;
	border-color: #c4c4c4;
}

.form-group label {
	font-size: 20px;
	margin-bottom: 15px;
}

.text-italic {
	font-style: italic;
}

.bg-info {
	background-color: #15AFA2 !important;
}

.text-info {
	color: #15AFA2 !important;
}

.text-base {
	color: #525559;
}

.btn {
    padding: 15px 34.5px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    border-radius: 60px;
    text-transform: uppercase;
}

.nav-links a {
	color: white;
}

.topnav {
    overflow: hidden;
    /* background: #1f1c1c url(../images/nav-bg-1.png) no-repeat; */
    background-size: 100% 100%;
    padding-top: 55px;
    padding-bottom: 70px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.top-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	max-width: 1640px;
	margin: 0 auto;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    margin: 0 1rem;
}

.nav-links a:hover {
	color: #00ada7;
}

.nav-user-info {
	margin-right: 43px;
	font-size: 16px;
	font-weight: 500;
}

.nav-actions a>i {
	display: none;
}

.topnav a.active {
	background-color: #00ada7;
	color: white;
}

.footer {
	align-items: center;
	width: 100%;
	bottom: 0;
	text-align: center;
	background-color: #1f1c1c;
	color: #ffffff;
	padding: 42px 0 26px;
}

.footer-inner {
	width: 95%;
	max-width: 1175px;
	margin: 0 auto;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
    margin: 0 1rem;
}


.footer-social-links a {
	margin: 0 12px;
	width: 42px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-links-box {
	padding-bottom: 20px;
	border-bottom: 1px solid #FFFFFF;
}

.footer-bottom {
	padding-top: 20px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 20px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'DM Sans', sans-serif;
}

.page-title {
	color: #525559;
	font-weight: 500;
	font-size: 44px;
	line-height: 120%;
}

.card {
	border-color: #C4C4C4;
	border-radius: 12px;
}

.card-title {
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid #979595;
}

.card-title h5 {
	color: #525559;
	font-size: 24px;
	line-height: 28px;
}

.text-btn {
	background-color: transparent;
	border: 0;
	outline: none;
}

.pagination-box .pagination {
	width: fit-content;
	background-color: transparent !important;
}

.pagination-box .page-link {
	border: 0;
	color: #525559;
	font-size: 20px;
	background-color: transparent !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.vertical-menu {
	width: 100%;
}

.vertical-menu a {
	background-color: #eee;
	font-size: large;
	color: black;
	display: block;
	padding: 12px;
	text-decoration: none;
}

.vertical-menu a:hover {
	background-color: #ccc;
}

.pagination {
	display: inline-block;
	background-color: #e8e8e8;
	width: 100%;
}
.pagination a {
	float: left;
	padding: 8px 16px;
	text-decoration: none;
}

.pagination a:hover {
	color: black;
	background-color: #c5c5c571;
	border-radius: 100%;
}

.other-page {
	color: black;
}

.current-page {
	background-color: #1f1c1c;
	color: white;
	border-radius: 30%;
}

@media screen and (max-width: 1200px) {
	.topnav {
		background-size: cover;
		background-position-x: center;
		background-position-y: top;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.top-nav-inner {
		flex-wrap: wrap;
	}

	.nav-brand {
		order: 1;
	}

	.top-nav-inner .nav-links {
		order: 3;
		margin-top: 1.5rem;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.nav-actions {
		order: 2;
	}

	.footer-bottom {
		flex-direction: column;
	}
}

@media screen and (max-width: 991px) {
	.d-md-none {
		display: none;
	}

	.nav-brand img {
		width: 230px;
	}
}

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

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.topnav {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.main-content {
		padding-top: 120px;
	}

	.btn {
		padding: 8px 16px;
	}

	.page-title {
		font-size: 30px;
	}

	.nav-brand img {
		width: 140px;
	}

	.nav-user-info {
		margin-right: 10px;
	}

	.nav-user-info img {
		width: 20px;
		margin-right: 4px !important;
	}

	.nav-auth-btn {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.nav-links a {
		font-size: 14px;
		margin: 0 8px;
		color: white;
	}

	.nav-actions a>i {
		display: block;
	}

	.nav-actions a>span {
		display: none;
	}

	.nav-subscribe-btn {
		padding: 8px 16px;
		margin-left: 0.5rem !important;
	}

	.footer-social-links a {
		margin: 0 2px;
	}

	.footer-bottom p,a {
		font-size: 13px !important;
	}
}


a p.user-name {
	white-space: nowrap;
	margin-bottom: 0px;
}


/* <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<!-- <link rel="stylesheet" href="{% static 'main/subs.css' %}" type="text/css">  --> */
* {
	box-sizing: border-box;
}

.home-section {
	background-image: url(../images/header-bg1.png);
	background-size: 100% calc(100% - 150px);
	background-repeat: no-repeat;
	/* padding-top: 174px; */
	padding-bottom: 300px;

}
@media only screen and (max-width: 500px) {
	.home-section {
		padding-bottom: 200px;
	}
}
@media only screen and (max-width: 950px) and (max-height : 1200px) {
	.home-section {
		padding-bottom: 140px;
	}
}
.list_align {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header-section {
	/* background-image: "url(./images/header-bg-2.png)"; */
	background-size: 100% 100%;
	background-repeat: repeat-y;
}
.main-content {
	display: block;
}
.main-content {
	height: auto;
	padding-top: 0 !important;
}

.topnav {
	background-image: unset !important;
}

.home-contents {
	width: 90vw;
	max-width: 1160px;
}

.home-title {
	font-weight: 500;
	font-size: 55px;
	line-height: 120%;
}

.home-desc {
	font-size: 20px;
	line-height: 34px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 27px;
}

.home-box-wrapper {
	margin-top: 62px;
	width: 54.3vw;
	padding: 23px 22px;
	max-width: 700px;
	position: relative;
}

.home-box-wrapper::before {
	width: 100%;
	height: 100%;
	/* background-image: url(../images/bg-glass.png); */
	content: '';
	left: 0;
	top: 0;
	position: absolute;
	border-radius: 15px;
	box-shadow: 0px 4px 24px -1px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(21px);
}

.home-box {
	border-radius: 12px;
	height: 33.5vw;
	max-height: 430px;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 991.98px) {
	.home-section {
		background-position-x: center;
		background-size: 150% calc(100% - 100px);
	}

	.home-box-wrapper {
		width: 100%;
		margin-top: 40px;
		padding: 16px;
	}

	.home-box {
		height: 250px;
	}

	.home-title {
		font-size: 35px;
	}

	.service-card-title {
		font-size: 1px;

	}

}

/* Home Section Styles End */

/*
	Service Section Styles Begin
  */
.services-section {
	padding: 40px 0 100px;
}

.service-contents {
	width: 90vw;
	max-width: 1576px;
}

.service-title {
	margin-bottom: 52px;
	font-size: 48px;
}

.service-subtitle {
	color: rgba(0, 160, 119, 0.5);
	font-size: 21px;
	line-height: 122%;
	margin-bottom: 10px;
}

.service-card {
	box-shadow: 0px 20px 50px rgba(59, 62, 67, 0.05);
	border-radius: 15px;
	padding: 34px 36px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card-title {
	font-size: 27px;
	line-height: 30px;
	color: #3B3E43;
	margin-left: 13px;
}

.service-logo {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	box-shadow: 0px 10px 20px rgba(197, 158, 145, 0.1);
}

.service-card-head {
	justify-content: center;
	margin-bottom: 14px;
	margin-top: -13.5px;

}

.service-detail-title {
	font-size: 22px;
	line-height: 30px;
	color: #3B3E43;
}

.service-detail p,
.service-detail ul {
	font-size: 16px;
	line-height: 24px;
	color: #595E64;
}

.service-detail ul {
	padding-left: 20px;
}

.service-price {
	margin-bottom: 40px;
	position: relative;
	left: 2vw;
}

.service-price h6 {
	font-size: 18px;
	line-height: 27px;
	color: #3B3E43;
}

.service-price p {
	font-size: 10px;
	line-height: 23px;
	color: #3B3E43;
}

.service-card-footer a {
	color: #05A8A6;
	font-size: 14px;
	line-height: 22px;
}

.service-pro {
	background: #B2B2B2;
}

.service-premier {
	background: #F8E74D;
}

.service-inter {
	background: #1FCC8E;
}

.service-card-footer {
	padding-top: 20px;
	margin-top: auto;
}

.service-price-detail {
	font-size: 14px;
	line-height: 30px;
	color: #3B3E43;
	width: calc(100% - 40px - 16px);
}

.service-gold-card {
	padding-bottom: 18px;
}

.checkbox-contailer {
	display: block;
	position: relative;
	padding-left: 50px;
	margin-bottom: 0px;
	cursor: pointer;
	font-size: 10px;
	color: #595E64;
	text-transform: uppercase;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-contailer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox-contailer .checkmark {
	position: absolute;
	top: -50%;
	left: 0;
	height: 26px;
	width: 34px;
	background-color: #CACECE;
	box-shadow: 0px 3.61675px 3.61675px rgba(0, 0, 0, 0.15);
	border-radius: 5.56px;
}

.checkbox-contailer input:checked~.checkmark {
	background-color: #CACECE;
}

.checkbox-contailer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-contailer input:checked~.checkmark:after {
	display: block;
}

.checkbox-contailer .checkmark:after {
	left: 12px;
	top: 5px;
	width: 10px;
	height: 15px;
	border: solid #2196F3;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.subscribe-btn {
	background-color: #05ADA6;
	margin-top: 22px;
}

.service-footer-note {
	font-size: 20px;
	line-height: 27px;
	color: #3B3E43;
	margin-top: 30px;
	margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
	.services-section {
		padding: 60px 0 40px;
	}

	.service-title {
		margin-bottom: 30px;
		font-size: 35px;
	}

	.service-subtitle {
		font-size: 1rem;
	}

	.service-card {
		padding: 24px 20px 24px;
		height: auto;
	}

	.service-card-title {
		font-size: 20px;
		line-height: 24px;
	}

	.service-logo {
		width: 40px;
		height: 40px;
	}

	.service-logo img {
		width: 28px;
	}

	.service-card-head {
		margin-bottom: 14px;
	}

	.service-detail-title {
		font-size: 16px;
		line-height: 24px;
	}

	.service-detail p,
	.service-detail ul {
		font-size: 14px;
		line-height: 20px;
	}

	.service-price {
		padding: 0 1rem;
	}

	.service-price p {
		font-size: 10px;
		line-height: 16px;
	}

	.service-price h3 {
		font-size: 16px;
		line-height: 24px;
	}

	.service-price h3 span {
		font-size: 10px;
	}

	.service-btn {
		margin-top: 30px;
	}

	.service-price-detail {
		font-size: 10px;
		line-height: 20px;
	}

	.checkbox-contailer .checkmark {
		top: 0;
	}
}

/** Service Styles End */

/*
	Course Section Styles Begin
  **/
.courses-section {
	background: linear-gradient(249.78deg, #05ADA6 -0.64%, #044C74 103.6%);
	padding: 125px 0 135px;
}

.course-contents {
	width: 90vw;
	max-width: 1304px;
}

.course-left {
	width: 41.6%;
}

.course-subtitle {
	font-weight: bold;
	font-size: 12px;
	line-height: 122%;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.course-title {
	font-weight: 500;
	font-size: 43px;
	line-height: 122%;
	margin-bottom: 18px;
}

.course-desc {
	font-size: 15px;
	line-height: 21px;
	margin-bottom: 36px;
}

.course-right {
	border-radius: 10px;
	height: 556px;
	width: 50.4%;
}

.course-right img {
	max-height: 100%;
}

.mail-form {
	max-width: 390px;
}

.mail-form label {
	font-size: 11px;
	line-height: 122%;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.mail-form input {
	border-radius: 0;
}

.mail-form #mc-embedded-subscribe {
	background-color: #05ADA6;
	border-radius: 8px;
	margin-top: 26px;
	padding: 12px 20px;
}

@media screen and (max-width: 1300px) {
	.course-left {
		width: 100%;
	}

	.course-left>div {
		margin-left: 0 !important;
	}

	.course-right {
		width: 100%;
		max-height: max-content;
		margin-top: 1.5rem;
	}

	.service-card-title {
		font-size: 17px;
	}
}

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

	.course-right {
		/* width: 100%; */
		max-height: initial;
		/* margin-top: 1.5rem; */
		height: 100%;
	}


}

@media screen and (max-width: 600px) {
	.courses-section {
		padding: 80px 0 90px;
	}

	.course-title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.course-desc {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 24px;
	}

	.course-btn {
		padding: 16px 35px;
	}
}

/* Course Section Styles End  **/

/*
	Who Section Styles Begin
  **/
.table_container {
	padding: 2px;
	box-shadow: 0px 15px 10px -15px #1e1e1e;
	background: white;
	border-radius: 0.8rem;
	border: 2px solid white;
	margin: 10px;
	padding-top: 22px;
	color: rgb(89, 94, 100);
}


.who-section {
	background-image: url(../images/instrucor-bg.png);
	padding: 80px 0 110px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.who-contents {
	width: 90vw;
	max-width: 942px;
}

.who-title {
	margin-bottom: 70px;
	font-weight: 500;
	font-size: 48px;
	line-height: 122%;
}

.who-card-title {
	font-weight: bold;
	font-size: 20px;
	line-height: 27px;
	color: #3B3E43;
}

.who-card-title span {
	color: rgba(0, 160, 119, 1);
	font-size: 13px;
	font-weight: normal;
}

.who-card-desc {
	font-size: 15px;
	line-height: 22px;
	color: #595E64;
}

.who-card-img-section {
	width: 276px;
}

.who-card-img-section img {
	border-radius: 13px 0px 0px 13px;
}

.who-card-2 {
	box-shadow: 0px 20px 50px rgba(59, 62, 67, 0.05);
	border-radius: 15px;
	margin-bottom: 40px;
}

.who-card-2-contents {
	width: calc(100% - 276px);
	border-left: 3px solid #05A8A6;
}

.who-card-2-contents>div {
	padding: 55px 10.7%;
}

.who-card-2-right .who-card-img-section img {
	border-radius: 0px 13px 13px 0px;
}

.who-card-2-right .who-card-2-contents {
	border-right: 3px solid #05A8A6;
	border-left: 0;
}

@media screen and (max-width: 991.98px) {
	.who-section {
		background-size: cover;
		background-position: center;
	}

	.who-right-image img {
		max-height: unset;
	}
}

@media screen and (max-width: 600px) {
	.who-section {
		padding: 80px 0 80px;
	}

	.who-card-desc {
		line-height: 24px;
	}

	.who-card-img-section,
	.who-card-2-contents {
		width: 100%;
	}

	.who-card-2-contents {
		border: 0 !important;
	}

	.who-card-img-section img {
		border-radius: 15px 15px 0 0 !important;
	}

	.who-card-2-contents>div {
		padding: 20px 16px 22px;
	}

	.who-card-2-right {
		flex-direction: column-reverse;
	}

	.who-right-image img {
		border-radius: 15px 0 0 0;
	}

}

/** Who Section Styles End **/

.contact-section {
	padding: 80px 0;
}

@media screen and (max-width: 600px) {
	.contact-section {
		padding: 40px 0;
	}

}

.contact-section h3 {
	font-size: 43px;
	line-height: 122%;
	color: #3B3E43;
	font-weight: 500;
}

.contact-section p {
	font-size: 14px;
	line-height: 34px;
	color: #3B3E43;
	margin-bottom: 30px;
}

.contact-section button {
	background: #05ADA6;
}




.table1 td {
	width: 200px;
}


#ath:hover {
	color: white;
	text-decoration: none;
}

#ath {
	text-decoration: none;
	color: white;
	font-size: 14.5px;
}

.Tool-righticon {
	font-size: 25px;
	color: #05ADA6;
	background-color: #05ADA63D;
	border-radius: 145%;
	padding: 1px 5px 1px 5px;

}

.Tool-wrongicon {
	font-size: 28px;
	color: #000000;
	background-color: rgba(151, 149, 149, 0.35);
	border-radius: 147%;
	padding: 1px 5px 1px 5px;
}

table {
	border-collapse: collapse;
	width: 100%;
}

tr:nth-child(even) {
	background-color: rgba(5, 173, 166, 0.1);
}

/* Table */

.table_scroll {
	overflow-x: hidden;
}

@media screen and (max-width: 1250px) {
	.table_scroll {
		overflow-x: auto;
	}
}

.preq {
	height: 60px;
	text-align: center;
}

.tr_tool td {
	padding-top: 8.5px !important;
	padding-bottom: 8.5px !important;
}


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

	.service-title {
		color: black;
	}

	.preq {
		height: 90px;
		text-align: center;
	}

	.service-price-detail {
		height: 55px;
	}

	.pro-alignment {
		position: relative;
		top: -12px;
	}

	.fix-icon-mobile {
		padding: 20px;
	}
}
