/* main css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color1: #a5c3d2;
  --color2: #874487;
  --color3: #222f3a;
  --color4: #e6f2ec;
  --color5: #faf2dc;
  --color6: #ffde73;
  --color7: #05204e;
  --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: "Noto Sans", sans-serif;
  /* font-family: 'Roboto', sans-serif; */
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
	color: var(--color2);
}

.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(--color1);
}
.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; }

.heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.heading span {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color3);
  position: relative;
  border-bottom: 2px solid var(--color3);
}
.heading h2 {
  /* font-weight: 800; */
  text-transform: capitalize;
  font-size: 48px;
  color: var(--color2);
  /*margin-top: 10px;*/
  margin-bottom: 0;
  position: relative;
}

.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-6 { background-color: var(--color6); }
.bg-7 { background-color: var(--color7); }
.bg-grey { background-color: var(--grey); }

.cl-1 { color: var(--color1) !important; }
.cl-2 { color: var(--color2) !important; }
.cl-3 { color: var(--color3) !important; }
.cl-4 { color: var(--color4) !important; }
.cl-5 { color: var(--color5) !important; }
.cl-6 { color: var(--color6) !important; }
.cl-7 { color: var(--color7) !important; }

/* header */
header { 
	position: relative;
}
.topbar {
	position: relative;
}
.topbar .shape{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.topbar .shape-1{
  position: absolute;
  top: 0;
  right: -50px;
  width: 50%;
  height: 100%;
  background: var(--color2);
  transform: skewX(40deg);
  border-radius: 20px 0 0 0;
  border-left: 5px solid var(--white);
}
.topbar .shape-2{
  position: absolute;
  top: 0px;
  left: -40px;
  bottom: 0;
  width: 10%;
  background: var(--color2);
  border-radius: 0 0 20px 0;
  transform: skewX(40deg);
  border-right: 5px solid var(--white);
}
.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: 10px;
    /* background: rgba(0, 0, 0, 0.20); */
    border-radius: 0px;
    padding: 5px 0;
}
.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);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
	/*backdrop-filter: blur(5px);*/
}
.navbar.fixed-top {
  position: fixed;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--color1);
	padding: 5px;
    font-family: "Exo 2", sans-serif;
}
.navbar-brand img { 
	height: 60px;
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item:not(:first-child):before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    opacity: 0.3;
}

.nav-link {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	padding: 20px;
}
.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(255,255,255,.1);
}
.dropdown-item {
	color: var(--white);
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color2);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	font-size:12px;
	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: 250px;
	/* border: 1px solid #eaecf0; */
	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;
}

.navbar-right span {
  display: block;
  border-right: 1px solid #999;
  padding-right: 20px;
}
.navbar-right span a {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
.navbar-right .btn2 {
  padding: 10px 25px;
  outline:2px solid var(--color1);
  outline-offset: -2px;
  border-radius: 30px;
}
.navbar-right .btn2::before {
}
/*********************/
/* slider */
.sliderwrap {
  position: relative;
  background-color: #05204e;
  background-size: cover;
}
.sliderwrap h1 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 15px;
}
.sliderwrap img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.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: calc(100vh - 45px);
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 60px;
	font-weight: 600;
	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 {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	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 {
	display: inline-block;
	position: relative;
	font-size: 14px;
	color: var(--white);
	padding: 10px 25px;
	transition: all .5s ease-in-out;
	text-transform: uppercase;
	border-radius: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	border: none;
	background-color: var(--color2);
	/* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
	z-index: 1;
	overflow: hidden;
}
.btn1:before {
	content: "";
	height: 400px;
	width: 400px;
	background:  var(--color1);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover {
	color: var(--white);
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1 i {
	margin-left: 5px;
}
.btn1 span {
	margin-right: 5px;
}
.btn2{
	background-color: var(--grey);
	color: var(--dark);
}
.btn2:before{
	background-color: var(--color1);
}
.btn2:hover{
	color: var(--white);
}
/*********************/
.img-bg{
  position: relative;
  background: var(--color1);
  z-index: 1;
}
.img-bg::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../upload/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .04;
  z-index: -1;
}
/*********************/
.news {
  background-color: var(--color2);
  color: var(--white);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
}
.news marquee {
  display: block;
}
.news marquee div {
  display: flex;
  gap:50px;
}
.news p {
  display: inline-block;
  margin: 0;
}
/*********************/
.welcome {
	position: relative;
}
.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;
}
.about-left{
  position: relative;
  height: 100%;
  /* margin-right: 40px; */
}

.about-left::before{
  /* content: ""; */
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.about-left img{
  height: 100%;
  /* border-radius: 20px; */
}

.about-img .img-2{
  margin-top: 70px;
}

.about-right {
  position: relative;
  display: block;
}

.about-experience{
  background: var(--color2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  line-height: 1.2;
  border-radius: 100px;
  text-align: center;
  border: 10px solid var(--white);
}

.about-experience h5{
  color: var(--white);
  font-size: 40px;
  margin-top: 15px;
}

.about-experience p{
  color: var(--white);
  font-weight: 600;
}
/*********************/

/* home products */
.home_products {
  background-size: cover;
}
.home_products .item {
	display: block;
	position: relative;
	background: var(--white);
  overflow: hidden;
	border-radius: 40px 40px 40px 0;
}
.home_products .item img {
	aspect-ratio: 1/1;
	object-fit: cover;
}
.home_products .item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	/* visibility: hidden; */
	background-color: var(--color3);
	transition: all .5s ease-in-out;
}
.home_products .item .desc {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}
.home_products .item .desc p {
  color: var(--white);
  margin: 0;
  font-weight: 300;
  text-shadow: 0 0 10px var(--black);
}
.home_products .item .desc h4 {
  color: var(--white);
  font-size: 30px;
  font-style: italic;
  text-shadow: 0 0 10px var(--black);
}
.home_products .item .btn {
  flex-shrink: 0;
	width: 50px;
	height: 50px;
  line-height: 50px;
  padding: 0;
	border-radius: 100%;
	color: var(--color3);
	background: var(--white);
  transform: rotate(-45deg);
	transition: all .5s ease-in-out;
	z-index: 1;
}
.home_products .item:hover .img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.home_products .item:hover .img .btn:hover{
	background: var(--white);
	color: var(--color2);
}
.home_products .item h4 {
  font-size: 23px;
	transition: all .5s ease-in-out;
}
.home_products .item:hover .desc h4 {
	color: var(--color6);
}
/*********************/
/* 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 {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	z-index: 1;
}
.counter_wrap::before{
	content: "";
	position: absolute;
	background: var(--color3);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	z-index: -1;
}
.counter-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 30px;
	position: relative;
	z-index: 1;
}
.counter-box .icon {
	position: relative;
	text-align: center;
	font-size: 60px;
	width: 100px;
	height: 100px;
	line-height: 88px;
	color: var(--white);
	background:  var(--color2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.counter-box .icon img{
	width: 60px;
	filter: brightness(0) invert(1);
}
.counter-box .icon::before{
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	border: 3px solid var(--white);
	transition: all .5s ease-in-out;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	z-index: -1;
}
.counter-box:hover .icon::before{
	left: 0;
	top: 0;
}
.counter-box h2 {
	display: block;
	line-height: 1;
	color: var(--white);
	font-size: 50px;
	font-weight: 600;
}
.counter-box .title {
	color: var(--white);
	margin-top: 20px;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
/*********************/
/* testimonials */
.testimonials {
	position: relative;
	background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.testimonials .heading span {
	color: var(--white);
	border-color: var(--white);
}
.testimonials .owl-carousel .owl-stage-outer {
  overflow: initial;
}
.testimonials .owl-carousel .owl-item {
  opacity: .5;
  filter:blur(2px);
  transition: var(--transition);
}
.testimonials .owl-carousel .owl-item.active {
  opacity: 1;
  filter:blur(0);
  transition: var(--transition);
}
.testimonial-item {
  position: relative;
  background: var(--white);
  padding: 15px 30px;
  border-bottom: 5px solid var(--color2);
  border-radius: 50px 50px 0px 50px;
  margin-bottom: 35px;
}

.testimonial-quote p{
  position: relative;
  color: var(--black);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  z-index: 1;
}

.testimonial-content{
  position: relative;
  border-left: 3px solid var(--color2);
  padding-left: 15px;
  margin-top: 15px;
  z-index: 1;
}

.testimonial-author-img {
  position: absolute;
  right: 20px;
  bottom: -50px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 4px solid var(--color2);
}

.testimonial-author-img img {
  border-radius: 50%;
  border: 4px solid var(--white);
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: var(--black);
}

.testimonial-author-info p {
  color: var(--color2);
  font-weight: 500;
}

.testimonial-quote-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
}

.testimonial-shadow-icon img{
  width: 200px !important;
}

.testimonial-rate {
  color: #FB9902;
  margin-bottom: 10px;
}

.testimonials .owl-nav div {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 24px;
}
.testimonials .owl-nav div.owl-prev {
  left: -60px;
}
.testimonials .owl-nav div.owl-next {
  right: -60px;
}
/*********************/
/* 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);
}
/*********************/
.portfolio-img {
  position: relative;
}

.portfolio-img img{
  border-radius: 50px 50px 50px 10px;
}

.portfolio-img::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--color2);
  border-radius: 50px 50px 50px 10px;
  transform: scaleY(0);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-img::before {
  opacity: .8;
  transform: scaleY(1);
}

.portfolio-link {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--color2);
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  left: 50%;
  top: 50%;
  font-size: 28px;
  margin-top: 50px;
  opacity: 0;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  transition-delay: 0.3s;
}

.portfolio-link:hover{
  color: var(--color2);
}

.portfolio-item:hover .portfolio-link {
  margin-top: 0px;
  opacity: 1;
}

.portfolio-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.portfolio-content small{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color2);
  letter-spacing: 2px;
}

.portfolio-content h4 a{
  font-size: 20px;
  color: var(--color1);
}

.portfolio-content h4 a:hover{
  color: var(--color2);
}

.portfolio-arrow{
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--color2);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
}

.portfolio-arrow i{
  color: var(--white);
  transform: rotate(-45deg);
  transition: var(--transition);
}

.portfolio-arrow:hover i{
  transform: rotate(0);
}

/* sector */
.sector .owl-carousel .owl-nav {
  margin-top: 0px;
}

.sector .owl-carousel .owl-nav div{
  position: absolute;
  top: 50%;
  margin-top: -35px;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.sector .owl-carousel .owl-nav div i{
  display: inline-block;
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: var(--white);
  font-size: 25px;
  text-align: center;
  background: var(--color2);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.sector .owl-carousel .owl-nav div:hover i{
  background: var(--color2);
  color: var(--white);
} 

.sector .owl-carousel .owl-nav .owl-prev {
  left: 0px;
  opacity: 0;
}

.sector .owl-carousel .owl-nav .owl-next {
  right: 0px;
  opacity: 0;
}

.sector .owl-carousel:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.sector .owl-carousel:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

@media all and (max-width: 1199px) {
  .sector .owl-carousel .owl-nav {
    display: none;
  }
}
/*********************/
.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;
}
.enquiry_wrap .contactinfo {
	border-radius: 30px;
	outline: 2px dotted var(--color2);
	outline-offset: -10px;
}
.enquiry_wrap .contactinfo h4 {
	color: #fff;
}
.enquiry_wrap .contactinfo .social2 {
	display: flex;
	gap: 10px;
}
.enquiry_wrap .contactinfo .social2 li {
	list-style: none;
}
.enquiry_wrap .contactinfo .social2 li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--color2);
	border-radius: 50%;
	transition: 0.5s;
}
.enquiry_wrap .contactinfo .social2 li a img {
	width: 20px;
}
.enquiry_wrap .contactinfo .social2 li a:hover {
	background-color: var(--black);
}
.enquiry_wrap .contactinfo .social2 li a:hover img {
	filter: brightness(0) invert(1);
}

.register label {
    display:block;
}
.register select {
    appearance:auto;
}

.form1 .input,
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #fff;
  border: 1px solid #ddd;
  outline:1px solid transparent;
  border-radius: 10px;
  padding: 7px 14px 9px;
  overflow: hidden;
  transition: 0.4s;
}
.form1 .input:focus {
	outline-color: var(--color2);
}

.wrap-input-8 .input:focus {
  outline: none;
  border-radius: 0;
}

.wrap-input-8 {
  position: relative;
  margin-bottom: 15px;
}

.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(--color1);
  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(--color1);
  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;
}
/*********************/
/* whyus */
.whyus .item figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.levels {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.levels .item {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  overflow: hidden;
}
.levels .item img {
  height: 90px;
}
.levels .item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.study figure {
  position:relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  margin: 0;
}
.study figure::before {
  position:absolute;
  display: block;
  inset: 0;
  content: '';
  background: var(--color2);
  opacity: 0.3;
  transform: scale(1, 1.07) translateX(-20px);
  border-radius: 30px;
}
.study figure img {
  height: 100%;
  position:relative;
  z-index: 1;
  border-radius: 20px;
  object-fit:cover;
}

.team .owl-item {
  position: relative;
  padding: 50px 0;
  z-index: 1;
  transition: var(--transition);
}
.team .item {
  position: relative;
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 5%);
  padding: 30px;
  transform: scale(0.9);
  z-index: 1;
  transition: var(--transition);
}
.team .owl-item.center {
  z-index: 10;
}
.team .owl-item.center .item {
  transform: scale(1.15);
  z-index: 10;
}
.team .item img {
  width: 120px !important;
  border-radius: 50%;
  margin: auto;
  border: 4px solid var(--color4);
  outline: 1px solid var(--color4);
  outline-offset: 3px;
}
.team .owl-nav div {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: var(--color2);
  color: var(--white);
  font-size: 20px;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0.5;
}
.team .owl-nav div.owl-prev {
  left: 0px;
}
.team .owl-nav div.owl-next {
  right: 0px;
}
.team .owl-team:hover .owl-nav div.owl-prev {
  opacity: 1;
  left: -50px;
}
.team .owl-team:hover .owl-nav div.owl-next {
  opacity: 1;
  right: -50px;
}

.courses .item {
  background: var(--grey);
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  overflow: hidden;
  transition: var(--transition);
}
.courses .item figure {
  position: relative;
}
.courses .item figure img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.courses .item h4 {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  color: var(--white);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  margin: 0;
  padding: 10px;
  transition: var(--transition);
}
.courses.type2 .item h4 {
  background-color: var(--color2);
  inset: auto;
  top:10px;
  right:10px;
  width:50px;
  height:50px;
  line-height:30px;
  border-radius:50%;
  border:2px solid var(--color1);
}
.courses .item .btn1 {
  display: block;
  border-radius: 10px;
}

.faqs .accordion-header button {
  font-size: 18px;
  font-weight: 600;
  outline:none;
  box-shadow:none;
}
.faqs .accordion-item {
  background-color: var(--color4);
}
.faqs img {
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.clients .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: 1px solid #ccc;
  box-shadow: 0 10px 5px rgb(0 0 0 / 5%);
  transition: var(--transition);
}
.clients .item img {
  max-width: 100%;
  max-height: 98px;
  object-fit: contain;
}
.clients .item:hover {
  transform: scale(1.1);
}

.reviews {
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.reviews .owl-carousel .owl-stage-outer {
  overflow: initial;
}
.reviews .item {
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.reviews .item figure {
  position: relative;
  margin: 0;
}
.reviews .item figure img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.reviews .item .desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  inset: 0;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  color: var(--white);
  padding: 20px;
  transform: translateY(calc(100% - 60px));
  transition: var(--transition);
}
.reviews .item .desc h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--white);
}
.reviews .item .desc p {
  font-size: 14px;
  color: var(--white);
}
.reviews .item:hover .desc {
  transform: translateY(0);
}
.reviews .btn1 {
  position: absolute;
  top:8px;
  right:8px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
}
/*********************/
.choose-item{
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.choose-item-icon{
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 55px;
  background: var(--color2);
  text-align: center;
  border-radius: 50px;
}

.choose-item-icon::before{
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--color2);
  border-radius: 50px;
}

.choose-item-icon img{
  width: 42px;
  filter: brightness(0) invert(1);
}

.choose-item-info{
  flex: 1;
}

.choose-item-info h4{
  color: var(--color1);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.choose-item-info p{
  color: var(--body-text-color);
}

.choose-img{
  position: relative;
  text-align: right;
}

.choose-img .img-1{
  width: 70%;
  border-radius: 100px 0px 100px 100px;
}

.choose-img .img-2{
  position: absolute;
  left: 0;
  bottom: -135px;
  width: 80%;
  border-radius: 100px 100px 100px 0px;
  border: 15px solid var(--white);
}

.choose-img .shape{
  position: absolute;
  left: 0;
  top: 70px;
  width: 150px;
  z-index: -1;
}

@media all and (max-width: 991px) {
  .choose-img .img-2{
    width: 70%;
    bottom: -50px;
  }
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/
.joinus {
  position: relative;
}
.joinus .item::before {
  content: '';
  position: absolute;
  inset:0;
  background-color: var(--white);
  opacity: 0.7;
  z-index: 1;
}
.joinus .item {
  position: relative;
  background-size: cover;  
  padding: 50px;
  text-align: center;
  height: 100%;
}
.joinus .item h2 {
  color: var(--color1);
  margin-bottom: 20px;
}

/* footer */
.footer-top {
	background-position:;
}
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(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.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: 50px;
  bottom: 90px;
  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;
  }
}
/************************/
.cta-area{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}

.cta-area::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color1);
  opacity: .9;
  z-index: -1;
}

.cta-area::after{
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  background: var(--color2);
  border-radius: 50%;
  opacity: .2;
  z-index: -1;
}
.cta-content h1{
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p{
  color: var(--white);
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-content .theme-btn{
  background: var(--color2);
  color: var(--white);
}

.process-item {
  position: relative;
  background: var(--white);
  padding: 20px;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
}

.process-item .count{
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  text-align: center;
  background: var(--color1);
  padding: 5px 6px;
  border-radius: 50px 0 0 50px;
}

.process-item .icon{
  position: absolute;
  right: -5px;
  top: -8px;
  width: 78px;
  height: 78px;
  line-height: 65px;
  text-align: center;
  background: var(--color2);
  border: 5px solid var(--white);
  border-radius: 50px;
}

.process-item .icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.process-item .content{
  margin-top: 20px;
}

.process-item .content h4{
  color: var(--color1);
}

.process-item .content p{
  color: var(--body-text-color);
  margin-top: 10px;
}

.custom1 .item {
  background-color: var(--color2);
  padding: 30px;
  border-radius: 10px;
  color: var(--white);
  text-align: center;
  height: 100%;
}
.custom1 .item figure {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.custom1 .item figure img {
  width: 60px;
}
.custom1 .item h4 {
  color: inherit;
}

.custom2 .item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 0 15px var(--color2);
}
.custom2 .item ul {
  padding-left: 20px;
}
.custom2 .list-item {
  height: 100%;
  background-color: var(--color2);
  padding: 20px;
  border-radius: 10px;
  color: var(--white);
}
.custom2 .list-item img {
  width: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
.custom2 .list-item h4 {
  color: inherit;
  font-size: 21px;
  font-style: italic;
}
.custom2 .list-item p {
  margin-bottom: 0;
}

.teach .item {
  display: flex;
  align-items: start;
  gap:15px;
  overflow: hidden;
}
.teach .item img {
  width: 60px;
  filter: drop-shadow(0 1000px 0 var(--color2));
  transform: translateY(-1000px);
}
.teach .item h4 {
  color: inherit;
}

.custom3 h4 {
  border-top: 3px solid var(--color2);
  margin-top: 10px;
  padding-top: 10px;
  color: var(--color2);
}
.custom4 .item {
  height: 100%;
  padding: 25px;
  background-color: var(--color2);
  border-radius: 20px;
  color: var(--white);
}
.custom4 .item h4 {
  font-size: 19px;
  font-style: italic;
  color: var(--color6);
}
.custom4 .item p {
  margin-bottom: 0;
}

.aboutcourse img {
  border-radius: 50%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.aboutcourse h1,
.aboutcourse h2,
.aboutcourse h3,
.aboutcourse h4,
.aboutcourse h5,
.aboutcourse h6 {
  color:var(--white);
}
.imgbr20 img {
  border-radius: 20px;
}

.innerpage blockquote {
    padding: 20px 30px;
    border:1px solid var(--color2);
    border-left-width:5px;
}

.timeline {
	position: relative;
	counter-reset: number;
}
.timeline:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background-color: var(--color2);
	margin: 0 auto;
}
.timeline .item {
	position: relative;
	width: calc(50% - 100px);
	padding: 20px;
	border:1px solid var(--color2);
	border-radius: 15px;
  clear:both;
}
.timeline .item h4:after {
	counter-increment: number;
	content: '' counter(number) '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color2);
	color: var(--white);
	border-radius: 50%;
	font-family: Arial;
	transform: translateX(125px);
}
.timeline .item:nth-child(even) h4:after {
	right: auto;
	left: 0;
	transform: translateX(-125px);
}
.timeline .item h4:before {
	content: '';
	position: absolute;
	top: 25px;
	right: 0;
	transform: translateX(100px);
	width: 75px;
	height: 2px;
	background-color: var(--color2);
}
.timeline .item:nth-child(even) h4:before {
	right: auto;
	left: 0;
	transform: translateX(-100px);
}
.timeline .item p {
	margin-bottom: 0;
}
.timeline .item:nth-child(odd) {
	float: left;
	text-align:right;
}
.timeline .item:nth-child(even) {
	float: right;
	text-align:left;
}
/********************/
.flip-card {
  background-color: transparent;
  width: 100%;
  aspect-ratio:2/3;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: var(--color1);
  color: black;
}

.flip-card-back {
  background-color: var(--color7);
  color: white;
  transform: rotateY(180deg);
  padding:30px;
}
/********************/
.backlink {
    position: fixed;
    top:0;
    bottom:0;
    right:20px;
    display:flex;
    flex-direction:column;
    justify-content: center;
    gap:10px;
}
.backlink a {
    display:flex;
    justify-content: center;
    align-items: center;
    width:40px;
    height:40px;
    border-radius:50%;
    background-color: var(--color2);
    color: var(--white);
    border:2px solid var(--color1);
}
.btn-review {
    background-color: var(--white);
    border-radius:30px;
    padding:5px 20px;
    transition:var(--transition);
}
.btn-review img {
    height:35px;
    aspect-ratio: auto;
    border-radius:0;
}
.btn-review:hover {
    background-color: var(--color1);
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar-collapse { background-color:var(--color2); margin:0 -12px;}
    .nav-item { padding:0;}
    .nav-link { color:#fff; padding:10px 20px; border-top:1px solid rgba(255,255,255,0.2);}
    .nav-item.dropdown .dropdown-menu { background-color:var(--color1); 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);}
    .sliderwrap h1,
    .heading h2 { font-size:30px;}
    .study figure::before { transform: scale(1, 1.05) translateX(-5px); border-radius: 25px;}
}
