/* main css */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Sora:wght@100..800&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color4-rgb: 0, 91, 255;
  --color1: #ca952b;
  --color2: #000080;
  --color3: #0f3661;
  --color4: #005bff;
  --color5: #f4f9ff;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--white);
    font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Sora", sans-serif;
	color: var(--dark);
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

/* header */
header { 
	position: relative;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 5px 25px;
}
.social li {
	display: block;
	color: var(--white);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social li a:hover {
	background-color: var(--white);
}
.social li a:hover img {
	filter: none;
}

.navbar {
	position: relative;
	z-index: 10;
	background-color: var(--white);
	/*backdrop-filter: blur(5px);*/
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
	padding: 4px;
}
.navbar-brand img { 
	height: 85px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/* .navbar-toggler-icon { filter: brightness(0) invert(1);} */
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid rgba(var(--white-rgb), .2);
}
.dropdown-item {
	color: var(--white);
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 200px;
	border: 1px solid var(--color3);
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--color2);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	/* background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%); */
}
.owl-slide .item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	font-weight: 900;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-transform: uppercase;
	margin-bottom: 0;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInLeft;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color1);
	color: var(--color3);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div.owl-prev { left: 15px;}
.owl-slide .owl-nav > div.owl-next { right: 15px;}
.owl-slide .owl-nav > div:hover{ opacity: 1;}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.btn1 {
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    border: none;
    text-align: center;
    background-color: var(--color1);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
    padding: 15px 20px;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
}
.btn1::after, .btn1::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--color3);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.btn1::before {
  top: -2em;
  left: -2em;
}
.btn1::after {
  left: calc(100% + 2em);
  top: calc(100% + 2em);
}
.btn1:hover {
  color: var(--white);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn1:hover::after, .btn1:hover::before {
  height: 410px;
  width: 410px;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading > span {
    position: relative;
    font-family: "Caveat", cursive;
    font-size: 30px;
    color: var(--color1);
	padding-bottom: 6px;
    /* border-bottom: 2px solid var(--color3); */
}
.heading > span::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../upload/top-bar.png');
	background-size: 100% 100%;
	width: 100%;
	height: 6px;
}
.heading h2,
.subheading h2 {
    position: relative;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 50px;
    color: var(--color3);
    margin-bottom: 0;
}
.heading h2 span {
    color: var(--color1);
}
.subheading h2,
.subheading p span {
    color: var(--color4);
}
.subheading p {
    font-size: 18px;
    font-weight: 600;
}
.subheading h2:after {
    display:block;
    content:'';
    position: relative;
    width: 80px;
    height: 3px;
    margin:10px auto;
    background-color: var(--color4);
}
.heading2 h2,
.heading3 h2 {
    position: relative;
    color: var(--color3);
    margin-bottom: 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}
.heading2 h2:before,
.heading2 h2:after {
    content:'';
    width: 80px;
    height: 3px;
    background-color: var(--color1);
}
.heading3 h2:before,
.heading3 h2:after {
    content:'';
    width: 100px;
    height: 18px;
    background-image: url('../../upload/starline.png');
    background-size:contain;
    background-repeat:no-repeat;
}
.heading3 h2:after { transform:rotateY(180deg);}
/*********************/
.course-card {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(var(--black-rgb), 0.2);
}
.course-card .item {
    padding:15px;
}
.course-card .item:not(:last-child) {
    border-right:2px dashed rgba(var(--black-rgb),0.2);
}
.course-card .item img {
    height:100px;
    margin-bottom:15px;
    transition:var(--transition);
}
.course-card .item h5 {
    color:var(--color3);
}
.course-card .item:hover img {
    transform:scale(1.1);
}
.course-card .item:hover h5 {
    color:var(--black);
}
/*********************/
.welcome {
	position: relative;
	background-size:cover;
	background-position:center;
}
.welcome figure {
	position: relative;
}
.welcome figure img {
	border-radius: 15px;
}
.welcome figure .img1 {
	position: absolute;
	top: -20px;
	left: -50px;
	width: 100px;
	z-index: -1;
}
.welcome figure .img2 {
	position: absolute;
	bottom: -30px;
	left: -50px;
	width: 200px;
	z-index: -1;
	opacity: 0.5;
}
.welcome figure:after {
	position: absolute;
	/*content: '';*/
	top: 0;
	left: 0;
	bottom: 0;
	width:calc(100% - 25px);
	height: 100%;
	border:4px solid var(--color1);
	transform: scale(1.05);
	z-index: -1
}
.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}
.welcome .desc ul {
    display:flex;
    gap:15px;
    list-style:none;
    padding:0;
    text-align:left;
}
.welcome .desc ul li {
    display:flex;
    gap:5px;
    line-height:initial;
    font-size:14px;
}
.welcome .desc ul li img {
    height:40px;
}

.news {
	padding: 5px;
	border: 1px solid var(--color2);
	border-radius: 15px;
}
.news > h2 {
	background-color: var(--color2);
	font-size: 24px;
	padding: 10px;
	color: var(--white);
	border-radius: 10px;
}
.news .item {
	background-color: var(--white);
	padding: 10px;
	border-radius: 10px;
	display: flex;
	gap:10px;
	align-items: center;
	color: var(--black);
	margin-bottom: 15px;
}

.what .d-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    background-color:var(--white);
    padding:20px 10px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(var(--black-rgb), 0.1);
}
.what .d-grid .item {
    display:flex;
    gap:10px;
    padding:10px;
    align-items:center;
    overflow:hidden;
    line-height:initial;
}
.what .d-grid .item:not(:last-child) {
    border-right:1px solid rgba(var(--black-rgb), 0.1);
}
.what .d-grid .item img {
    height:50px;
    filter:drop-shadow(0 200px 0 var(--color3));
    transform:translateY(-200px);
}
.what .d-grid .item:nth-child(even) img {
    filter:drop-shadow(0 200px 0 var(--color1));
}
.what .d-grid .item h4 {
   font-size:20px;
   color:var(--color3);
}

.what .bottom-box {
    background:rgba(10,18,35,0.95);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:35px 20px;
    margin-top:50px;
    backdrop-filter:blur(8px);
    box-shadow:0 0 40px rgba(0,0,0,0.4);
    color:var(--white);
}
.what .bottom-box .item img {
    filter:drop-shadow(0 200px 0 var(--color1));
}
.what .bottom-box .item h4 {
    font-size:18px;
    color:var(--white);
}
.what .bottom-box .item:not(:last-child) {
    border-right:1px solid rgba(var(--white-rgb), 0.1);
}

.quote .desc {
	position: relative;
    display:flex;
    align-items:center;
    font-style:italic;
}
.quote .desc:before,
.quote .desc:after {
    content:'';
    width: 25%;
    height: 3px;
    background-color: var(--color1);
}
.quote .desc h2 {
	position: relative;
}
.quote .desc h2:before,
.quote .desc h2:after {
    position:absolute;
    top:0;
    left:0;
    content:'❝';
    color: var(--color1);
    font-size:60px;
    margin-left:-35px;
}
.quote .desc h2:after {
    content:'❞';
    top:50%;
    right:0;
    left:auto;
    margin-right:-20px;
}
/*********************/
/* home products */
.home_products .grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1px;
	background-color: rgba(var(--color4-rgb), .1);
	border: 1px solid rgba(var(--color4-rgb), .1);
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
}
.home_products .item {
	position: relative;
	padding: 30px;
	color: var(--black);
	background-color: var(--color5);
	font-weight: 600;
	transition: var(--transition);
	/* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
}
.home_products .item .icon {
	position: relative;
	padding-top: 15px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: var(--transition);
}
.home_products .item .icon img {
	position: relative;
	height: 60px;
	/* filter: drop-shadow(0 100px 0 var(--color4)); */
	/* transform: translateY(-100px); */
}
.home_products .item .icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20%;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--white);
	transition: var(--transition);
}
.home_products .item.active,
.home_products .item:hover {
	z-index: 1;
	background-color: var(--white);
	color: var(--color4);
	box-shadow: 0 0 30px rgba(var(--black-rgb), .2);
}
.home_products .item.active .icon::before,
.home_products .item:hover .icon::before {
	background-color: var(--color1);
}

/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
	padding: 100px 0;
}
.testimonials .heading:before,
.testimonials .heading:after {
    content:'';
    position:absolute;
    top:0;
    background-size:contain;
    background-repeat:no-repeat;
    opacity:0.7;
}
.testimonials .heading:before {
    left:0;
    width:70px;
    height:100px;
    background-image:url('../../upload/dots1.png');
}
.testimonials .heading:after {
    right:0;
    width:120px;
    height:100px;
    background-image:url('../../upload/dots2.png');
}
.testimonials .subheading:before,
.testimonials .subheading:after {
    content:'';
    position:absolute;
    bottom:0;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url('../../upload/quote.svg');
    opacity:0.3;
    width:100px;
    height:100px;
}
.testimonials .subheading:before {
    left:10%;
}
.testimonials .subheading:after {
    right:10%;
    transform:rotate(180deg);
}

.testimonials .item{
	padding: 10px;
}
.testimonials .item .item_inner {
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: 15px;
	display:flex;
	gap:15px;
	line-height:initial;
	box-shadow:0 0 10px rgba(0, 91, 255, 0.2);
}
.testimonials .item .item_inner:before {
    content:'';
	position: absolute;
	top:12px;
	left:12px;
    width:30px;
    height:30px;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url('../../upload/quote.svg');
}
.testimonials .item .desc h5:before {
	content: '';
	display: block;
	background-color: var(--color4);
	width: 100%;
	height: 2px;
	opacity:0.3;
	margin:10px 0;
}
.testimonials .item .desc h5 {
    color: var(--color4);
	margin-bottom: 0;
}
.testimonials .item .desc p {
	font-size: 14px;
	margin-bottom: 0;
}
.testimonials .item img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border:4px solid var(--color5);
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/*********************/
.features {
	counter-reset: process;
}
.features .item {
	position: relative;
	height: 100%;
	padding: 20px 25px;
	background: var(--white);
	border-radius: 50px 50px 50px 0px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 30px;
}
.features .item .count:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 60px;
	font-weight: 800;
	-webkit-text-stroke: 2px var(--color1);
	-webkit-text-fill-color: transparent;

	counter-increment: process;
	content: "0" counter(process) "";
}
.features .item .icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color2);
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}
.features .item:hover .icon {
	transform: rotateY(360deg);
}
.features .item .icon img {
	width: 48px;
	filter: brightness(0) invert(1);
}
.features .item .feature-content{
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color5);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/* form */
.enquiry_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color2);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color2);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
.main-choose-us-wrapper {
  position: relative;
}
.main-choose-us-wrapper .line-shape {
  	position: absolute;
  	z-index: -1;
	top: 30px;
	left: 0;
	right: 0;
}
.main-choose-us-wrapper .line-shape img {
  	width: 100%;
  	height: 100%;
}
.main-choose-us-wrapper .choose-us-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.main-choose-us-wrapper .choose-us-top .icon-items {
  max-width: 220px;
}

.main-choose-us-wrapper .choose-us-top .icon-items .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--color3);
}
.main-choose-us-wrapper .choose-us-top .icon-items .icon img {
	height: 60px;
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-top .icon-items .icon {
    margin: 0 auto;
  }
}
.main-choose-us-wrapper .choose-us-top .icon-items .content {
  margin-top: 20px;
}
.main-choose-us-wrapper .choose-us-top .icon-items .content h2 {
  font-size: 55px;
  margin-bottom: 5px;
}
.main-choose-us-wrapper .choose-us-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 260px;
}
@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.main-choose-us-wrapper .choose-us-bottom .icon-items {
  max-width: 220px;
  margin-top: 50px;
  margin-left: 90px;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items {
    margin-left: 0;
    margin-top: 30px;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--color4);
}
.main-choose-us-wrapper .choose-us-bottom .icon-items .icon img {
	height: 60px;
}
@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
    margin: 0 auto;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .content {
  margin-top: 25px;
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .content h2 {
  font-size: 55px;
  margin-bottom: 5px;
}

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
  margin-top: -200px;
  margin-left: 0;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
    margin-top: 0;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 .icon {
  background-color: var(--color1);
  color: var(--header);
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: #fff;
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	margin: 20px 0;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--white);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	background-color: rgba(0,0,0,0.3);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--color3);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
  position: fixed;
  left: 15px;
  bottom: 50px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.highlight-card {
    background-color: var(--color3);
    border-radius: 22px;
    padding: 25px;
    color: #fff;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.highlight-card .btn {
    border: none;
    text-align: center;
    background-color: var(--color1);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
    padding: 15px 20px;
    border-radius:10px;
}

.highlight-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-icon {
  flex-shrink:0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background-color: var(--color3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.highlight-item:nth-child(odd) .highlight-icon {
  background-color: var(--color1);
}
.highlight-icon img {
    height:30px;
    filter:brightness(0) invert(1);
}

.gold-bg {
  background: #d6a029;
}

.highlight-content h6 {
  color: #08245c;
  font-weight: 700;
  margin-bottom: 5px;
}

.highlight-content p {
  color: #555;
  margin-bottom: 0;
  font-size: 14px;
}

.bottom-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
}

.bottom-feature i {
  color: var(--color1);
  font-size: 38px;
}

.bottom-feature h5 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}

.bottom-feature p {
  margin: 0;
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.courses {
	position: relative;
	background-size:cover;
	background-position:center;
	padding:100px 0;
}
.courses .desc p {
    text-shadow: 0 0 5px var(--white);
}
.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 350px;
  background: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.program-card > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

.program-card:hover > img {
  transform: scale(1.05);
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 10, 31, 0.95),
    rgba(2, 10, 31, 0.4)
  );
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
}

.program-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--color1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  background-color: var(--color3);
  font-size: 26px;
  margin-bottom: auto;
  overflow:hidden;
}
.program-icon img {
    height:30px;
    /*filter:drop-shadow(0 100px 0 var(--color1));*/
    /*transform:translateY(-100px);*/
}
.program-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 16px;
  line-height: initial;
  color: #e5e5e5;
  margin-bottom: 25px;
}

.learn-more {
  color: var(--color1);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.learn-more i {
  margin-left: 8px;
}
.courses .grid {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.courses .gridmax {
    display: flex;
    gap: 20px;
    flex-wrap:wrap;
}
.courses .gridmax .program-card {
    width:calc(100% / 3 - 15px);
}
.courses .gridmax .program-card:nth-child(4),
.courses .gridmax .program-card:nth-child(5) {
    width:calc(100% / 2 - 15px);
}

.feature-box {
  text-align: center;
  border-right: 1px solid var(--color1);
  padding-right: 10px;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box i {
  color: var(--color1);
  font-size: 34px;
  margin-bottom: 10px;
}

.feature-box h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

.info-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.info-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background-color:var(--color5);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--color4);
    font-size:28px;
    flex-shrink:0;
}

.info-item h5{
    font-weight:700;
    margin-bottom:6px;
    color:#0d1b4c;
}

.info-item p{
    margin:0;
    color:#555;
    font-size:15px;
}

.feature-item{
    display:flex;
    gap:18px;
    margin-top:28px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.feature-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    border:2px solid var(--color4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--color4);
    font-size:28px;
    flex-shrink:0;
    box-shadow:0 0 20px rgba(37,99,235,0.3);
}

.feature-item h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:8px;
}

.feature-item p{
    color:#cbd5e1;
    margin:0;
    line-height:1.6;
    font-size:16px;
}

.banner {
    position:relative;
    background-size:cover;
    background-position:center;
    padding:100px 0;
}
.banner:before {
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(90deg,rgba(0, 12, 26, 1) 0%, rgba(0, 12, 26, 1) 30%, rgba(0, 12, 26, 0) 100%);
}
.banner .container, .mission h1, .mission > div {
    position:relative;
}
.banner h1 {
    font-weight:800;
    text-transform:uppercase;
}
.banner h1:after {
    content:'';
    display:block;
    width:100px;
    height:3px;
    background-color:var(--color1);
    margin:10px 0 20px;
}

.mission {
    position:relative;
    background-size:cover;
    background-position:center;
    border-radius:20px;
    overflow:hidden;
}
.mission:before {
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(90deg,rgba(0, 12, 26, 1) 0%, rgba(0, 12, 26, 1) 50%, rgba(0, 12, 26, 0) 100%);
}

.aboutus .item-box {
    display:flex;
    gap:10px;
    padding:30px 20px;
}
.aboutus .item-box .icon {
    display:flex;
    flex-shrink:0;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    background-color:var(--color2);
    border-radius:50%;
}
.aboutus .item-box .icon img {
    height:45px;
    filter:brightness(0) invert(1);
}
.aboutus .item-box h1 {
    font-size:48px;
    font-weight:900;
}
.aboutus .border-box {
    border-left:1px solid rgba(var(--black-rgb),0.2);
    border-right:1px solid rgba(var(--black-rgb),0.2);
    padding:30px;
}
.aboutus .d-grid {
    display:grid;
    grid-template-columns:repeat(6, 1fr);
}
.aboutus .item {
    padding:15px;
    overflow:hidden;
}
.aboutus .item:not(:last-child),
.aboutus .itemlist:not(:last-child) {
    border-right:1px solid rgba(var(--black-rgb),0.2);
}
.aboutus .item .icon {
    display:flex;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    border:2px solid var(--color2);
    border-radius:50%;
    margin:0 auto 15px;
}
.aboutus .item .icon img {
    height:45px;
    filter: drop-shadow(0 100px 0 var(--color2));
    transform:translateY(-100px);
}
.aboutus .item h4 {
    font-size:18px;
    font-weight:600;
    color:var(--color2);
}
.aboutus .points {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.aboutus .itemlist {
    display: flex;
    align-items:center;
    gap:15px;
    padding:15px;
    overflow:hidden;
}
.aboutus .itemlist img {
    height:60px;
}

.leader .msg-box {
    border-radius:20px;
    box-shadow:0 0 15px rgba(var(--black-rgb),0.1);
}
.leader .msg-box figure {
    position:relative;
}
.leader .msg-box figure img {
    border-radius:15px;
}
.leader .msg-box figure:before {
    content:'';
    position:absolute;
    width:1px;
    height:100%;
    right: -25px;
    top:0;
    background-color:var(--color1);
    opacity:0.2;
}
.leader h1 {
    font-weight:900;
}
.leader h1, .leader h4 {
    color:var(--color2);
}
.leader .desc {
    position:relative;
    padding: 30px;
    border:1px solid #ddd;
    border-radius:20px;
    margin-top:20px;
}
.leader .desc p:last-child { margin:0;}
.leader .desc::before,
.leader .desc::after {
    content:'';
    position:absolute;
    width:50px;
    height:50px;
    background-image:url('../../upload/quote2.svg');
    background-size:contain;
    background-color:var(--white);
}
.leader .desc::before {
    top:-20px;
    left:-20px;
}
.leader .desc::after {
    bottom:-20px;
    right:-20px;
    transform:rotate(180deg);
}
.leader .item {
    border-radius:20px;
    box-shadow:0 0 15px rgba(var(--black-rgb),0.1);
    padding-top:0 !important;
    height:100%;
}
.leader .item figure {
    width:80px;
    height:80px;
    background-color:var(--color2);
    border-radius:50%;
    margin:auto;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateY(-20px);
}
.leader .item figure img {
    height:50px;
    filter:drop-shadow(0 100px 0 var(--color1));
    transform:translateY(-100px);
}
.leader .item h4 {
    position:relative;
    font-weight:600;
}
.leader .item h4:after {
    display:block;
    content:'';
    width:50px;
    height:3px;
    background-color:var(--color1);
    margin:10px auto;
}
.leader .grid {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
}
.leader .list-item {
    position:relative;
    display:flex;
    gap:10px;
    align-items:center;
}
.leader .list-item:not(:last-child)::before {
    content:'';
    width:0;
    height:100%;
    border-right:2px dashed var(--color1);
    position:absolute;
    right:-10px;
    top:0;
    opacity:0.42;
}
.leader .list-item .icon {
    display:flex;
    flex-shrink:0;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    border:2px solid var(--color2);
    border-radius:50%;
    overflow:hidden;
}
.leader .list-item .icon img {
    height:50px;
    filter:drop-shadow(0 100px 0 var(--color1));
    transform:translateY(-100px);
}
.leader .list-item h4 {
    font-size:18px;
}

.contact_info {
	position: relative;
    transform:translateY(-40px);
    z-index:1;
}
.contact_info .item {
	position: relative;
    display:flex;
    height:100%;
    gap:10px;
	background-color: var(--white);
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.contact_info .item i {
    display:flex;
    flex-shrink:0;
    justify-content:center;
    align-items:center;
	background-color: var(--color1);
	color: var(--white);
    width:50px;
    height:50px;
    border-radius:50%;
    font-size:21px;
}
.contact_info .desc {
    width:calc(100% - 60px);
}
.contactus iframe {
    height:300px;
    border:1px solid rgba(var(--black-rgb),0.1);
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.form-title {
    display:flex;
    align-items:center;
    gap:15px;
    border-bottom:1px solid rgba(var(--black-rgb),0.1);
    padding-bottom:10px;
    margin-bottom:15px;
}
.form-title i {
    display:flex;
    justify-content:center;
    align-items:center;
	background-color: var(--color1);
	color: var(--white);
    width:50px;
    height:50px;
    border-radius:50%;
    font-size:21px;
}
.form1 {
	background-color: var(--white);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.form1 label {
	position: relative;
	display: block;
}
.form1 label i {
	position: absolute;
	right: 12px;
	top: 6px;
}
.form1 .or {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.form1 .or:before,
.form1 .or:after {
	content: "";
	flex: 1;
	height: 1px;
	background-color: var(--grey);
}
.form1 .bi-whatsapp {
	color: var(--whatsapp);
	font-size: 20px;
}

.innerpage .box {
    background-color:var(--white);
    height:100%;
    padding:20px;
    box-shadow:0 0 15px rgba(var(--black-rgb),0.1);
    border-radius:15px;
}
.innerpage .box img {
    margin-bottom:10px;
}
.table-last th:last-child,
.table-last td:last-child {
    background-color:#e6f2ff;
}

.nav-pills .nav-link {
    padding:10px 20px;
    border-color:var(--color1);
    background-color:var(--color1);
    color:var(--white);
}
.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color:var(--color2);
}

.aboutimg img {
    height:100%;
    /*object-fit:cover;*/
    border:3px solid var(--color1);
    border-radius:20px;
}
.boxed {
    height:100%;
    background-color:var(--white);
    padding:30px;
    border-radius:15px;
    box-shadow: 0 0 10px rgba(var(--black-rgb),0.1);
    overflow:hidden;
}
.boxed img {
    height:80px;
    margin-bottom:15px;
    filter:drop-shadow(0 150px 0 var(--color1));
    transform:translateY(-150px);
}
.boxed h4 {
    color:var(--color2);
    font-weight:600;
}
.boxed p {
    margin-bottom:0;
}
.checklist {
    display:flex;
    justify-content:center;
    gap:10px;
    padding:0;
    list-style:none;
    flex-wrap:wrap;
}
.checklist li {
    position:relative;
    padding:15px;
    border:1px solid var(--color1);
    border-radius:15px;
    display:flex;
    gap:10px;
    width:calc(33% - 10px);
    font-size:18px;
}
.checklist li:nth-child(4),
.checklist li:nth-child(5) {
    width:calc(50% - 10px);
}
.checklist li:before {
    content:'\f26a';
    font-family:bootstrap-icons;
    font-size:2em;
    color:var(--color1);
}

.checklist2 {
    display:flex;
    gap:10px;
    padding:0;
    list-style:none;
    flex-wrap:wrap;
}
.checklist2 li {
    position:relative;
    padding:10px;
    border:1px solid var(--color1);
    border-radius:10px;
    display:flex;
    gap:10px;
}
.checklist2 li:before {
    content:'\f26b';
    font-family:bootstrap-icons;
    font-size:1em;
    color:var(--color1);
}

.gridbox {
    height:100%;
    background-color:var(--white);
    padding:30px;
    border-radius:15px;
    box-shadow: 0 0 10px rgba(var(--black-rgb),0.1);
    overflow:hidden;
}
.gridbox h4 {
    color:var(--color2);
    font-weight:600;
    /*margin-bottom:15px;*/
    text-transform:uppercase;
}
.gridbox img {
    height:80px;
    margin-bottom:15px;
}
.gridbox .d-flex > div {
    width:20%;
    padding:20px;
}
.gridbox .d-flex > div:not(:last-child) {
    border-right:2px solid rgba(var(--black-rgb),0.1);
}
.gridwhy {
    height:100%;
    background-color:var(--white);
    padding:20px;
    border-radius:15px;
    box-shadow: 0 0 10px rgba(var(--black-rgb),0.1);
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    counter-reset: process;
}
.gridwhy .item {
    position:relative;
    padding:10px;
    overflow:hidden;
}
.gridwhy .item:before {
    position:absolute;
    top:10px;
    left:10px;
	counter-increment: process;
	content: counter(process) "";
	display:flex;
	justify-content:center;
	align-items:center;
	width:30px;
	height:30px;
	border-radius:50%;
	background-color:var(--color1);
	color:var(--white);
}
.gridwhy .item img {
    height:80px;
    margin-bottom:15px;
    filter:drop-shadow(0 100px 0 var(--color2));
    transform:translateY(-100px);
}
.gridwhy .item h5 {
    color:var(--color2);
    font-weight:600;
}
.gridwhy .item:not(:last-child) {
    border-right:2px solid rgba(var(--black-rgb),0.1);
}
/*
.table-compare td:nth-child(2) { background-color:#e6ffe6;}
.table-compare td:nth-child(3) { background-color:#ffe6e6;}
.table-compare td:nth-child(4) { background-color:#ffffcc;}*/

.shine {
	position: relative;
	overflow: hidden;
}
.shine:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.shine:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .topbar .item a { font-size: 10px;}

	.navbar-brand img { height:65px;}
    /*.navbar-collapse { background-color: var(--color3); margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5);}*/
 /*   .nav-link { color:var(--white); padding:10px 20px; border-top:1px solid rgba(255,255,255,0.2);}*/

  
    
    .navbar { position:relative; padding:0; box-shadow:none;}
    .nav-item { padding:0;}
    .nav-item .nav-link { color:#000; padding:10px; border-top:1px solid rgba(255,255,255,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .dropdown-toggle::after { float:right;}
    /*.dropdown-toggle.show::after { transform:rotateX(180deg);} */
    
    .courses .grid {grid-template-columns: repeat(2, 1fr);}
    .owl-slide .owl-nav,
    .main-choose-us-wrapper .line-shape { display:none;}
    .owl-slide .item img { height: auto; aspect-ratio: 3/1;}
    .owl-slide .owl-dots { bottom:-20px;}
    .heading h2, .subheading h2 { font-size: 25px;}
    .welcome .desc ul { flex-wrap: wrap;}
    .welcome .desc ul li { width: calc(50% - 10px);}
    .what .d-grid, .aboutus .d-grid, .aboutus .points, .leader .grid, .gridwhy { grid-template-columns: 1fr;}
    .what .d-grid .item:not(:last-child),
    .aboutus .item:not(:last-child), .gridwhy .item:not(:last-child),
    .aboutus .itemlist:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(var(--black-rgb), 0.1);}
    .quote .desc h2 { font-size: 16px;}
    .quote .desc::before, .quote .desc::after { width:50%;}
    .courses { padding:30px 0;}
    .courses .grid { grid-gap:10px; margin: 10px 0;}
    .courses .gridmax .program-card { width:100% !important;}
    .feature-box h6 { font-size: 12px;}
    .course-card .item:not(:last-child) { border-right:none; border-bottom: 2px dashed rgba(var(--black-rgb), 0.2);}
    .testimonials .item .item_inner { flex-direction: column;}
    .testimonials .item img { margin:auto;}
    footer .links li a { font-size: 14px;}
    .leader .list-item:not(:last-child)::before { width: 100%; height:0; border-bottom: 2px dashed var(--color1); border-right: none; top:auto; right: 0; bottom:-10px;}
    .form-title i { flex-shrink:0;}
    .contactus iframe { aspect-ratio:1/1;}
    .checklist li { width:auto!important;}
    .gridbox { padding:15px;}
    .gridbox img { height:60px;}
    .gridbox .d-flex { flex-wrap:wrap;}
    .gridbox .d-flex > div { width:50%; padding:5px;}
    .gridbox .d-flex > div h5 { font-size:16px;}
    .gridbox .d-flex > div:last-child { width:100%; }
    .gridbox .d-flex > div:not(:last-child) { border-right:none;}
    .checklist2 li { padding: 5px 10px;}
}