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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 150px;
}

body {
	margin: 0 auto;
	font-family: "Figtree", sans-serif;
	font-size: 16px;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0px 20px;
}

.container_fluid {
	max-width: 1920px;
	margin: 0 auto;
}

h1 {
	font-size: 62px;
	font-family: "Figtree", sans-serif;
	font-weight: 300;
	line-height: 1.2em;
}

h2 {
	font-size: 48px;
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	line-height: 1.2em;
}

h3 {
	font-size: 36px;
	font-family: "Figtree", sans-serif;
	font-weight: 400;
	line-height: 1.2em;
}

p,
li,
cite {
	font-family: "Figtree", sans-serif;
}

.row {
	display: flex;
}

.header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #fff;
	transition: all 0.3s ease;
	padding: 15px 0;
}

/* background after scroll */
.header.scrolled {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-menu {
	justify-content: flex-start;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
}

.logo-wrapper {
	width: 160px;
	transition: all 0.3s ease;
}

.header.scrolled .logo-wrapper {
	width: 120px;
}

.navbar {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 70px;
}

.navbar-deskotp ul {
	display: flex;
	justify-content: end;
	gap: 70px;
	margin-bottom: 0;
}

.navbar-deskotp ul li {
	list-style-type: none;
}

.navbar-deskotp ul li a {
	color: #193F70;
	text-decoration: none;
	transition: .3s ease-in-out;
	font-family: "Figtree", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
	padding: 20px 0;
}

.navbar-deskotp ul li a:hover {
	color: #952A57;
}

.menu-toggle {
	display: none;
}

.header-btn {
	width: auto;
	text-align: right;
}

.primary-btn {
	color: #FFF;
	background-color: #952A57;
	text-decoration: none;
	font-weight: 500;
	transition: .3s ease-in-out;
	font-family: "Figtree", sans-serif;
	display: inline-block;
	border-radius: 35px;
	cursor: pointer;
}

.primary-btn:hover {
	background-color: #193F70;
	transition: 0.3s ease-in-out;
}

.contact-btn {
	font-size: 18px;
	padding: 8px 20px;
	line-height: normal;
}

.navbar-mobile {
	display: none;
}

/* dropdown */
.service-dropdown {
	position: relative;
}

.navbar-deskotp .service-dropdown-menu {
	display: block;
	opacity: 0;
	position: absolute;
	background: #fff;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	top: calc(100% + 10px);
	left: 0;
	width: max-content;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 999;
	transition: 0.2s linear;
	pointer-events: none;
	border-radius: 10px;
}

.navbar-deskotp .service-dropdown-menu li {
	padding: 8px 20px;
}

.navbar-deskotp .service-dropdown-menu li a {
	color: #333;
	text-decoration: none;
}

.service-dropdown-menu:has(a:focus),
.service-dropdown:hover .service-dropdown-menu {
	opacity: 1;
	transition: 0.2s linear;
	pointer-events: all;
}

/* main-wraper */
.hero-section {}

.hero-content {
	justify-content: space-between;
	align-items: center;
	min-height: 400px;
	gap: 30px;
}

.hero-heading {
	width: 40%;
}

.hero-heading h1 {
	letter-spacing: 0.5px;
	text-align: center;
}

.hero-img {
	width: 60%;
}

.hero-img img {
	width: 100%;
}

.quote-section {
	background-color: #193F70;
	padding-top: 50px;
	padding-bottom: 70px;
}

.quote-content {
	position: relative;
	z-index: 1;
}

.cta-arrow-plane-quote {
	position: absolute;
	top: 80px;
	z-index: -1;
	right: 325px;
	pointer-events: none;
}

.cta-arrow-plane-quote img {
	width: 100%;
}

.quote-content p {
	font-size: 32px;
	max-width: 80%;
	font-weight: 500;
	line-height: 1.5em;
	color: #FFF;
}

.service-section {
	margin-top: 80px;
}

.service-heading {
	margin-bottom: 10px;
}

.service-heading h2 {
	margin-left: 100px;
	color: #193F70;
}

/*This is the services section spacing*/
.service-grid-section {
	background-image: url(../images/blue-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 210px 0;
	margin-top: -75px;
}

.service-grid {
	justify-content: space-between;
	align-items: baseline;
}

.service-box {
	width: calc(100% / 4 - 50px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-decoration: none;
	color: #000;
}

.service-img img {
	width: 100%;
}

.service-title p {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	line-height: 1.33;
	max-width: 130px;
}

.cta-btn {
	font-size: 24px;
	padding: 12px 24px;
	line-height: 1.1em;
	border-radius: 35px;
	width: max-content;
	min-width: 320px;
	border: solid 1px #fff;
	cursor: pointer;
}

.form-btn:hover {
	background-color: #FFF;
	color: #193F70;
	transition: 0.3s ease-in-out;
}

.cta-section {
	position: relative;
	text-align: center;
	margin-top: 50px;
	z-index: 1;
}

.cta-arrow-plane {
	position: absolute;
	top: 65px;
	left: 120px;
	z-index: -1;
}

.who-we-serve-section {
	margin-bottom: 80px;
	margin-top: 50px;
}

.who-we-serve-content {
	align-items: center;
	gap: 50px;
}

.client-img,
.who-we-serve-heading {
	width: 50%;
}

.client-logos {
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 30px;
}

.client-logo-img {
	width: calc(100% / 3 - 30px);
}

.client-logo-img-two {
	width: calc(100% / 2 - 45px);
}

.client-img img {
	width: 100%;
	object-fit: contain;
}

.who-we-serve-heading {
	text-align: center;
}

.who-we-serve-heading h2 {
	color: #193F70;
	text-align: center;
}

.who-we-serve-heading p {
	color: #193F70;
	text-align: center;
	font-size: 30px;
	line-height: 1.1em;
	font-weight: 400;
	max-width: 370px;
	margin: 0 auto;
}

.cta-arrow-plane-right {
	top: -50px;
	left: 310px;
	text-align: start;
	max-width: 650px;
}

.cta-arrow-plane img {
	width: 100%;
}

.contact-section {
	background-color: #193F70;
	padding-top: 50px;
	padding-bottom: 50px;
}

.contact-us-heading h3 {
	color: #FFF;
	padding-bottom: 50px;
}

.contact-form {
	justify-content: center;
	align-items: stretch;
	gap: 60px;
}

.contact-form-left,
.contact-form-right {
	width: 50%;
	display: flex;
	gap: 20px;
	flex-direction: column;
	height: auto;
}

.contact-form input {
	width: 100%;
	padding: 20px;
	outline: 0;
	color: #193F70;
	font-family: "Figtree", sans-serif;
	font-size: 16px;
}

.contact-form textarea {
	width: 100%;
	padding: 20px;
	min-height: 100%;
	outline: 0;
	color: #193F70;
	font-family: "Figtree", sans-serif;
	font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	font-family: "Figtree", sans-serif;
	font-size: 16px;
	line-height: 1.2em;
}

/* Form validation styles */
.input-error {
	border: 1px solid #ff3333;
}

.error-message {
	color: #ff3333;
	font-size: 14px;
	margin-top: -10px;
	font-family: "Figtree", sans-serif;
	background-color: #ffffff;
	padding: 5px 10px;
	border-radius: 3px;
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.success-message {
	color: #4CAF50;
	font-size: 16px;
	padding: 10px;
	margin: 10px 0;
	background-color: rgba(76, 175, 80, 0.1);
	border-left: 4px solid #4CAF50;
	font-family: "Figtree", sans-serif;
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
	text-align: center;
}

#formResponse,
#formResponseAbout,
#formResponseServices {
	text-align: center;
	margin-bottom: 20px;
}

.disabled {
	opacity: 0.7;
	pointer-events: none;
}

.footer-section {
	justify-content: space-around;
	margin-top: 100px;
}

.footer-logo {
	width: 15%;
}

.footer-logo img {
	width: 100%;
}

.footer-nav-section {
	justify-content: space-between;
	width: 50%;
}

.footer-nav li {
	list-style-type: none;
	margin-bottom: 15px;
}

.footer-nav li a,
.footer-nav p {
	font-size: 18px;
	line-height: 1.2em;
	color: #FFF;
	text-decoration: none;
}

.footer-nav li a {
	position: relative;
}

.footer-nav li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0%;
	height: 2px;
	background: #FFF;
	transition: width 0.3s ease;
}

.footer-nav li a:hover:after {
	width: 100%;
}

.footer-nav li a i {
	margin-right: 5px;
}

.footer-nav p {
	margin-top: 50px;
}

.social-icon i {
	font-size: 40px;
	line-height: normal;
	color: #FFF;
	transition: color 0.3s ease-in-out;
}

.social-icon i:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* service page */
.our-service-section {
	margin-top: 40px;
	margin-bottom: 20px;
}

.our-service-heading h1 {
	text-align: center;
}

.service-quote-section {
	padding: 30px 0;
}

.service-quote-content p {
	text-align: center;
	margin: 0 auto;
	max-width: 50%;
	font-size: 30px;
}

.our-service-grid-section {
	background-image: url(../images/blue-service-bg.png);
	background-position: top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 430px;
	padding: 50px 0;
	padding-bottom: 100px;
}

.our-service-box {
	width: calc(100% / 4 - 80px);
}

.our-service-title p {
	font-size: 18px;
}

.main-service-section {
	margin-bottom: 20px;
}

/*Division between sections*/
.main-service-section-bg {
	background-image: url(../images/blue-bg-reverse.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 200px 0px;
}

.main-service-flat-bottom {
	background-image: url(../images/blue-flat-bottom-bg.png);
	margin-bottom: 0;
	background-position: top;
	padding-bottom: 50px;
}

.main-service-content {
	justify-content: space-between;
	gap: 25px;
}

.main-service-content-reverse,
.main-service-left-col-reverse {
	flex-direction: row-reverse;
}

.main-service-left-col {
	width: 55%;
}

.main-service-right-col {
	width: 45%;
}

.main-service-left-col {
	display: flex;
	gap: 140px;
	align-items: flex-start;
	justify-content: center;
}

.main-service-img {
	width: 25%;
	padding-bottom: 30px;
}

.main-service-img img {
	width: 150%;
}

.main-service-detail {
	width: 70%;
}

.main-service-detail h2 {
	color: #193F70;
	margin-bottom: 30px;
	margin-top: -40px;
}

.main-service-detail p {
	font-size: 18px;
	line-height: 1.5em;
	color: #000;
}

.main-service-detail ul {
	padding-left: 15px;
	padding-top: 15px;
}

.main-service-detail li {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.5;
}

.main-service-detail li span {
	font-weight: 600;
}

.blue-quote {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	position: relative;
	margin-top: 18%;
	margin-bottom: 15%;
}

.blue-quote::before {
	content: '';
	position: absolute;
	height: 180%;
	width: 90%;
	background-color: #193f71;
	border-radius: 50%;
	transform: rotate(-12deg);
	min-height: 250px;
	left: 0;
}

.blue-quote-left::before {
	transform: rotate(12deg);
}

.blue-quote p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2em;
	color: #FFF;
	max-width: 325px;
	position: relative;
	margin-bottom: 15px;
}

.blue-quote cite {
	font-size: 18px;
	font-weight: 350;
	line-height: 1em;
	color: #FFF;
	max-width: 325px;
	position: relative;
	margin-bottom: 15px;
	font-style: oblique;
}

.blue-quote-small p {
	padding-left: 30px;
}

.blue-quote p:first-child::before {
	position: absolute;
	content: "";
	background-image: url(../images/quote1.png);
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: contain;
	top: -10px;
	left: -45px;
}

.blue-quote-small p:first-child {
	margin-top: 30px;
}

.blue-quote-small p:first-child::before {
	left: -15px !important;
}

.blue-quote p:first-child::after {
	position: absolute;
	content: "";
	background-image: url(../images/quote2.png);
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -20px;
	margin-left: 10px;
}

.blue-quote p:last-child {
	font-size: 18px;
}

/* ABout Css */
.section_head h2 {
	color: #193f70;
	margin-bottom: 40px;
	margin-top: 40px;
}

.about_banner .row {
	gap: 50px;
	align-items: flex-end;
	font-family: "Figtree", sans-serif;
}

.about_col {
	width: calc(100% /2 - 25px);
}

.about_banner_left_col h1 {
	display: none;
}

.about_banner_left_col p {
	max-width: 500px;
	margin: -30px auto 0px auto;
	font-size: 18px;
	line-height: 1.5em;
	font-weight: 300;
	font-family: "Figtree", sans-serif;
}

.about_banner_right_col p {
	max-width: 500px;
	margin: 15px 0px 0px 0px;
	font-family: "Figtree", sans-serif;
	font-size: 20px;
	line-height: 1.5em;
}

.about_banner_content ul p {
	margin-top: 50px;
	font-family: "Figtree", sans-serif;
}

.about_banner_content ul {
	padding-left: 15px;
	padding-top: 15px;
	padding-bottom: 30px;
}

.about_banner_content h2 {
	color: #193F70;
	margin-bottom: 10px;
	margin-top: 35px;
}

.about_banner_content li {
	margin-bottom: 10px;
	font-size: 18px;
}

.about_banner_content li:last-child {
	margin-bottom: 0px;
}

.about_banner_content li span {
	font-weight: 600;
}

.team_section {
	background: url(../images/blue-bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 80px;
	padding: 100px 30px 100px 30px;
}

.team_section .row {
	gap: 35px;
	flex-wrap: wrap;
	justify-content: center;
}

.leaders_row {
	margin-bottom: 50px;
}

.leaders_row .team_col {
	width: calc(100% / 5);
}

.team_col {
	width: calc(100% / 5 - 30px);
}

.team_wrrapper img {
	width: 100%;
	border-radius: 30px;
	margin-bottom: 10px;
	border: 1px solid #61b3e6;
}

.team_section .member-detail {
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 5px;
}

.member-info {
	width: 80%;
}

.team_section .member-detail a {
	width: 20%;
}

.member_name {
	font-size: 18px;
	font-weight: 400;
}

.member_position {
	font-size: 16px;
	font-weight: 300;
}

.member-detail i {
	font-size: 48px;
	line-height: normal;
	color: #0077B5;
	transition: .3s ease;
}

.member-detail i:hover {
	color: rgba(0, 119, 181, 0.8);
}

/* Responsive Styles */
@media(max-width: 1600px) {
	.team_section {
		padding: 120px 0px;
		margin-top: 50px;
	}

	.main-service-section-bg {
		padding: 190px 0px;
	}

	.main-service-flat-bottom {
		padding-bottom: 50px;
	}
}

@media (max-width: 1440px) {
	.service-grid-section {
		padding: 150px 0;
	}

	.who-we-serve-section {
		margin-top: 50px;
	}

	.main-service-section-bg {
		padding: 170px 0px;
	}

	.main-service-flat-bottom {
		padding-bottom: 50px;
	}
}

@media(max-width: 1350px) {
	.team_section {
		padding: 50px 0px 100px 0px;
		background-size: cover;
	}

	.main-service-section-bg {
		padding: 70px 0px;
	}

	.main-service-flat-bottom {
		padding-bottom: 50px;
	}
}

@media (max-width: 1250px) {
	h1 {
		font-size: 55px;
	}

	h2 {
		font-size: 40px;
	}

	.hero-heading,
	.hero-img {
		width: 50%;
	}

	.quote-content p {
		max-width: 100%;
	}

	.service-grid-section {
		padding: 100px 0;
		background-size: cover;
	}

	.service-box {
		width: calc(100% / 4 - 30px);
	}

	.cta-arrow-plane-quote {
		top: 90px;
		right: 100px;
	}

	.cta-arrow-plane {
		width: 40%;
		left: 100px;
		top: 0;
	}

	.cta-arrow-plane-right {
		width: 60%;
		left: 290px;
		top: -50px;
	}

	.about_banner_left_col p {
		margin: -20px auto 0px auto;
		font-family: "Figtree", sans-serif;
	}

	.team_col {
		width: calc(100% / 5 - 30px);
	}

	/* service */
	.our-service-img img {
		/* max-height: 220px; */
	}

	.main-service-detail {
		width: 100%;
	}

	.main-service-left-col {
		flex-direction: column;
		gap: 20px;
	}

	.main-service-detail h3 {
		color: #193F70;
		margin-bottom: 15px;
	}

	.main-service-content {
		align-items: center;
		padding-top: 20px;
	}

	.main-service-right-col {
		width: 50%;
	}

	.blue-quote p {
		font-size: 18px;
		max-width: 250px;
	}

	.blue-quote p:last-child {
		font-size: 16px;
	}

	.blue-quote-course-devlopment {
		height: 250px;
	}

	.blue-quality-review {
		height: 220px;
	}

	.blue-quality-review p {
		max-width: 220px;
	}
}

@media (max-width: 992px) {
	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 32px;
	}

	.navbar-deskotp ul,
	.navbar {
		gap: 30px;
	}

	.quote-section {
		padding: 50px 0;
	}

	.quote-content p {
		font-size: 24px;
	}

	.who-we-serve-section {
		margin-top: 25px;
	}

	.service-heading h2 {
		margin-left: 0px;
	}

	.service-box {
		width: calc(100% / 4 - 20px);
	}

	.service-img img {
		/* width: 100%; */
		/* max-height: 200px; */
	}

	.service-title p {
		font-size: 16px;
		line-height: 1.2em;
	}

	.cta-btn {
		font-size: 18px;
		min-width: 250px;
	}

	.cta-arrow-plane-quote {
		top: 70px;
		right: 100px;
		width: 50%;
	}

	.cta-arrow-plane {
		width: 50%;
		left: 25px;
		top: 0px;
	}

	.cta-arrow-plane-right {
		width: 60%;
		left: 170px;
	}

	.contact-us-heading h3 {
		padding-bottom: 20px;
	}

	.contact-form {
		gap: 35px;
	}

	.client-logo-img {
		width: calc(100% / 3 - 15px);
	}

	.client-logo-img-two {
		width: calc(100% / 2 - 30px);
	}

	/* service */
	.blue-quote-course-devlopment {
		padding-top: 15px;
	}

	.blue-quote p,
	.blue-quote cite {
		font-size: 16px;
		max-width: 220px;
	}

	.blue-quote p:last-child {
		font-size: 14px;
	}

	.blue-quote p:first-child::before {
		width: 30px;
		height: 30px;
		top: -10px;
		left: -35px;
	}

	.blue-quote p:first-child::after {
		width: 30px;
		height: 30px;
		bottom: -15px;
	}

	.blue-quote-program-design {
		height: 255px;
		padding-top: 30px;
		background-size: cover;
	}

	.blue-quote-course-maintenance p {
		max-width: 120px;
	}

	/* about us */
	.leaders_row .team_col {
		width: calc(100% / 3 - 25px);
	}

	.team_col {
		width: calc(100% / 3 - 25px);
	}

	.about_banner_content p {
		margin-top: 20px;
		font-family: "Figtree", sans-serif;
	}

	.section_head h2 {
		margin-bottom: 20px;
	}

	.footer-nav-section {
		width: 70%;
	}
}

@media (max-width: 767px) {
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 225px;
	}

	.container {
		padding: 0 15px;
	}

	.header-menu {
		align-items: center;
		gap: 10px;
		justify-content: space-between;
	}

	.logo-wrapper {
		width: 145px;
	}

	.navbar {
		flex-direction: row-reverse;
		gap: 15px;
	}

	.header-btn {}

	.menu-toggle {
		display: inline-block;
		background-color: #193f71;
		color: #fff;
		aspect-ratio: 1;
		display: inline-flex;
		align-items: center;
		padding: 6px;
		font-size: 24px;
		border-radius: 50%;
	}

	.menu-toggle i {
		cursor: pointer;
		font-size: 21px;
	}

	.navbar-deskotp {
		text-align: right;
	}

	.navbar-deskotp>ul {
		display: none;
		background: #fff;
		padding: 10px;
		list-style: none;
		position: absolute;
		width: 100%;
		left: 0px;
		top: 120px;
		box-shadow: rgba(100, 100, 111, 0.2) 0 5px 5px 0px;
		text-align: left;
		height: auto;
		border-top: solid 1px #eee;
	}

	.header.scrolled .navbar-deskotp>ul {
		top: 100px;
	}

	.navbar-deskotp ul li a {
		text-decoration: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 12px;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	.hero-content {
		flex-direction: column;
	}

	.hero-heading,
	.hero-img {
		width: 100%;
	}

	.quote-section {
		padding: 20px 0;
	}

	.quote-content p {
		font-size: 20px;
	}

	.service-grid-section {
		padding: 50px 0;
	}

	.service-section {
		margin-top: 40px;
	}

	.service-grid {
		align-items: center;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 60px;
	}

	.service-box {
		width: 45%;
	}

	.service-img img {
		/* width: 100%; */
		/* max-height: 90px; */
	}

	.cta-section {
		margin-top: 30px;
	}

	.who-we-serve-content {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.client-img,
	.who-we-serve-heading {
		width: 100%;
	}

	.who-we-serve-heading p {
		font-size: 24px;
	}

	.cta-arrow-plane-quote {
		display: none;
	}

	.cta-arrow-plane {
		display: none;
	}

	.cta-arrow-plane-right {
		width: 70%;
		left: 60px;
		top: 25px;
	}

	.contact-form {
		flex-direction: column;
		gap: 20px;
	}

	.contact-form-left,
	.contact-form-right {
		width: 100%;
		display: flex;
		gap: 20px;
		flex-direction: column;
	}

	.footer-section {
		margin-top: 80px;
		flex-direction: column;
		gap: 30px;
	}

	.footer-nav-section {
		width: 100%;
		flex-direction: column;
		gap: 30px;
	}

	.footer-logo {
		width: 40%;
	}

	.footer-nav p {
		margin-top: 30px;
	}

	/* about us */
	.about_banner .row {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
		font-family: "Figtree", sans-serif;
	}

	.about_banner_content h1 {
		margin-left: 0px;
	}

	.about_col {
		width: 100%;
	}

	.about_banner_left_col p {
		max-width: 100%;
		margin-top: 0px;
		font-family: "Figtree", sans-serif;
	}

	.about_banner_left_col h1 {
		display: block;
		margin-bottom: 20px;
	}

	.about_banner_content h2 {
		margin-top: 0px;
	}

	.member_name {
		font-size: 18px;
	}

	.member_position {
		font-size: 16px;
	}

	/* service */
	.our-service-grid {
		padding: 0;
	}

	.main-service-content {
		flex-direction: column;
	}

	.main-service-left-col,
	.main-service-right-col {
		width: 100%;
	}

	.blue-quote-program-design {
		background: none;
		padding: 0px;
		height: auto;
	}

	.blue-quote p {
		/* color: #193f70; */
	}

	.blue-quote-course-maintenance {
		background: none;
		height: auto;
		padding: 0px;
	}

	.blue-quote-course-devlopment {
		background: none;
		height: auto;
		padding-bottom: 50px;
	}

	.blue-quality-review {
		background: none;
		height: auto;
		padding: 0px;
	}

	.navbar-deskotp .service-dropdown-menu {
		position: relative;
		width: 100%;
		box-shadow: none;
		padding: 0;
		transition: none !important;
		opacity: 1;
		display: none;
	}

	.navbar-deskotp .service-dropdown-menu li {
		padding: 5px 0px;
	}

	.member-info,
	.team_section .member-detail a {
		width: auto;
	}

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

@media(max-width: 580px) {

	.leaders_row .team_col,
	.team_col {
		width: 100%;
	}
}

@media (max-width: 550px) {
	.navbar {
		width: 30%;
		padding-top: 0px;
	}

	.team_col {
		width: 100%;
	}

	.team_section .row {
		gap: 20px;
	}

	.client-logo-img {
		width: calc(100% / 3 - 10px);
	}

	.client-logo-img-two {
		width: calc(100% / 2 - 30px);
	}

	.client-logos {
		row-gap: 15px;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
