@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --theme-text-color: #1e1e1e;
  --theme-color: #086c9a;
  --theme-color-second: #fd6c2c;
  --theme-bg-color: #000;
  --theme-heading-font: "Roboto", sans-serif;
  --theme-default-font: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
* {
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: #1472c6  rgba(129, 181, 222, 60%);
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
 background-color: rgb(56, 56, 56);
 border-radius: 50px !important;
}
*::-webkit-scrollbar-thumb {

  background-color: #464646;
  border-radius: 50px !important;
  border: 1px solid #ffffff;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: var(--theme-text-color);
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--theme-default-font);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: inherit;
  margin-bottom: 15px;
  font-family: var(--theme-heading-font);
}

p {
  margin: 0;
  line-height: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: var(--theme-default-font);
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.row-below {
  margin-top: 15px;
}

section {
  padding: 60px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* ........Scroll top......... */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fe8a02;
  border-radius: 0px;
  text-align: center;
  border: 2px solid #fe8a02;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 65px;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop > div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
/* ........Scroll top......... */

/* ---------Moblie Call Action------------- */

.mobile-fixed-button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;

  padding: 3px;
}
.mobile-fixed-menu {
	display: flex;
	margin: 7px;
	background-color: var(--theme-color);
	padding: 2px;
	align-items: center;
	border-radius: 5px;
}
.mobile-fixed-button a img {
	width: 33px;
}
.mobile-fixed-button .menu iconify-icon {
	color: #fff;
	font-size: 35px;
}
.mobile-fixed-button div {
	text-align: center;
	width: 100%;
}
.mobile-fixed-button span {
	color: #fff;
	letter-spacing: 2px;
}
.mobile-fixed-menu {
	display: flex;
	margin: 7px;
	background-color: var(--theme-color);
	padding: 8px;
	align-items: center;
	border-radius: 50px;
	justify-content: space-around;
	margin: 8px;
}
.mobile-fixed-button a img {
	width: 33px;
	margin-right: 5px;
}


/* ---------Moblie Call Action------------- */

/* ..........Button.......... */
.btn1 {
  background: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  padding: 11px 0px;
  display: inline-block;
  color: #fff;
  width: 200px;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  font-family: var(--theme-default-font);
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
 cursor: pointer;
}
.btn1:hover {
  background: initial;
  border: 1px solid var(--theme-color-second);
  color: var(--theme-color-second);
}
.btn2 {
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 11px 0px;
  display: inline-block;
  color: #fff;
  width: 200px;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  font-family: var(--theme-default-font);
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.btn2:hover {
  background: #fff;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.heading h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--theme-heading-font);
  margin-bottom: 15px;
  color: #282f41;
}
.heading h3 {
  font-size: 28px;
  font-weight: 400;
  font-family: var(--theme-heading-font);
  margin-bottom: 15px;
  color: #282f41;
}
/* ......top ber....... */
.top_ber{
  padding: 5px 0;
  background-image: linear-gradient(to right, #48badf 0%, #1472c6 51%, #0543b7 100%);
}
.top_ber .social-m ul {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 22px;
}
.top_ber .social-m ul li a i{
  color: #fff;
}
.top_ber .call_top ul{
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: right;
}
.top_ber .call_top ul li a{
  color: #fff;
}
/* ---------Nav ber------------- */
.small {
  display: none;
}
.navbar-expand-lg {
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 20px;
}

.header_menu .navbar-nav li a {
	color: #0f0f0f;
	font-size: 15px;
	text-transform: uppercase;
	padding: 27px 12px;
	display: inline-block;
	font-weight: 400;
	position: relative;
}
.header_menu li{
	margin: 0 5px;
}

.header_menu li a::after{
	content: "";
	background-color: var(--theme-bg);
	width: 0;
	height: 1px;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 18px;
	transition: all 0.6s;
}
.header_menu li:hover a::after{
	width: 100%;
	color: var(--theme-color);
}
.header_menu li a:hover {
	color: var(--theme-color);
}
#main_header {
	text-shadow: none;
	padding: 0px 0;
	border-bottom: 1px solid #0647b833;
}
.navbar-brand img {
	width: 145px;
}
#main_header .hd_info {
	margin-left: 25px;
	margin-top: 5px;
}
/* drop-menu */
.header_menu .drop-menu-li{
	position: relative;
}
.header_menu .drop-menu{
	position: absolute;
	z-index: 99999;
	background-color: #ffffff;
	width: 200px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events:none;
	border-bottom: 3px solid var(--theme-color);
	transition: 0.6s;
	top: 200%;
}
.header_menu .drop-menu > li >a{
	position: initial;
	display: block;
	text-transform: capitalize;
	padding: 10px 12px;
	transition: all 0.6s;
  border-bottom: 1px solid #dddddd4f;
}
.header_menu .drop-menu > li > a::after{
	position: relative;
}
.header_menu .drop-menu > li > a i{
	margin-right: 8px;
	color: var(--theme-color);
}
.header_menu .drop-menu-li:hover .drop-menu {
	opacity: 1;
	visibility:visible;
	pointer-events:all;
	top: 76px;
}
.header_menu .sub-drop-menu-li {
	position: relative;
}
.header_menu  .sub-drop-menu{
	position: absolute;
	z-index: 99999;
	background-color: #061220;
	width: 420px;
	left: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events:none;
	border-bottom: 3px solid var(--theme-color);
	transition: 0.6s;
	top: 200%;
	padding: 10px;
}
.header_menu .sub-drop-menu hr {
	border-top: 1px solid #64646445 !important;
	opacity: .50;
	margin: 4px 0 !important;
}
.sub-drop-menu-li a {
	padding: 10px 11px;
}
.sub-drop-menu h6 {
	margin-bottom: 0;
	text-transform: capitalize;
	line-height: 9px;
}
.sub-drop-menu h6 a{
	margin-bottom: 0;
	text-transform: capitalize;
	font-weight: 700;
	color: var(--theme-color);
	padding: 12px 12px;
}

.sub-drop-menu h6 a::after {
	content: "";
	background-color: var(--theme-bg);
	width: 0;
	height: 1px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	bottom: 18px;
	transition: all 0.6s;
  }
  .sub-drop-menu ul li a {
	text-transform: capitalize;
}

.sub-drop-menu ul li a::after {
	content: "";
	background-color: var(--theme-bg);
	width: 0;
	height: 1px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	bottom: 18px;
	transition: all 0.6s;
  }
  .sub-drop-menu ul li {
	display: inline-block;
	width: 235px;
}
.sub-drop-menu ul li {
	display: inline-block;
	width: 185px;
}
.sub-drop-menu ul li a {
	text-transform: capitalize;
	padding: 7px 12px;
}
.sub-drop-menu ul li a:hover{
	color: var(--theme-color);
}
.sub-drop-menu-li:hover .sub-drop-menu {
	opacity: 1;
	visibility:visible;
	pointer-events:all;
	top: 0px;
}

.header_menu .sub-drop-menu-li a .fa.fa-angle-double-right {
	color: #fff !important;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
} 
.header_menu .sub-drop-menu-li a span{
	display: inline-block;
}
/* sub-drop-menu-set1 */
.sub-drop-menu-li-set{
	position: relative;
}
.sub-drop-menu-li-set a .fa.fa-angle-double-right {
	color: #fff !important;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
} 
.sub-drop-menu-set1 {
	position: absolute;
	z-index: 99999;
	background-color: #061220;
	width: 260px;
	left: 102%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	border-bottom: 3px solid var(--theme-color);
	transition: 0.6s;
	top: 200%;
	padding: 10px;
	box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
}
.sub-drop-menu-set1 li a::after {
	content: "";
	background-color: var(--theme-bg);
	width: 0;
	height: 1px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	bottom: 18px;
	transition: all 0.6s;
  }
  .sub-drop-menu-set1 li a{
	text-transform: capitalize;
	padding: 10px 12px;
	width: 100%;
	border-bottom: 1px solid #e2e2e226;
  }
  .sub-drop-menu-set1 li{
	margin: 0;
  }
  .sub-drop-menu-set1{
	padding: 0;
  }
  .sub-drop-menu-li-set:hover .sub-drop-menu-set1{
	opacity: 1;
	visibility:visible;
	pointer-events:all;
	top: 0px;
  }
/* .....banner..... */
.banner{
  background: url('../image/banner.png') no-repeat center;
  background-size: cover;
  padding: 160px 0;
}
.banner_heading h4 {
	font-size: 20px;
	margin-bottom: 10px;
}
.banner_heading h1 {
	font-size: 50px;
  margin-bottom: 13px !important;
	font-weight: 600;
  position: relative;
  text-shadow: 20px 10px 10px rgba(0,0,0,0.3);
}
.banner_heading ul li i {
	color: #165bad;
	font-size: 22px;
	margin-right: 8px;
}
.banner_heading ul li{
  margin-bottom: 15px;
  display: inline-block;
  width: 280px;
}
.banner_heading ul {
	margin-bottom: 13px;
}
/* .banner_heading h1 span {
  margin: 0 auto;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
  background: url('../image/animated-text-fill.png') repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #0000004d;
  -webkit-animation: aitf 80s linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}
@-webkit-keyframes aitf {
0% {
  background-position: 0% 50%;
}
100% {
  background-position: 100% 50%;
}
} */
.btn_gap{
  margin-left: 10px;
}

.animate-charcter {
	background-image: linear-gradient(-225deg,#231557 0%, #44107a 29%,#ff1361 67%,#fff800 100% ) !important;
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto !important;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

  /* why_us_sec */
  .why_us_sec .contented {
    text-align: center;
    padding: 18px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    transition: all 0.6s;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
.why_us_sec .contented:hover{
  background-color: var(--theme-color-second);
  color: #fff;
  transform: translateY(-10px);
}
.why_us_sec .contented:hover .content p{
  color: #fff;
}
.why_us_sec .contented:hover .content h4{
  color: #fff;
} 
.why_us_sec .contented .top_img {
	margin-bottom: 25px;
}
.why_us_sec .contented .top_img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: var(--theme-color);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
  margin: 0 auto;
  margin-bottom: 25px !important;
}
.why_us_sec .contented .top_img img {
	width: 45px;
}
.why_us_sec .contented .content h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--theme-color);
	text-transform: uppercase;
}
.why_us_sec .contented .content p {
	margin-bottom: 0;
	font-size: 17px;
	font-weight: 500;
	color: #1e1e1e;
	line-height: 23px;
}
.top_margin{
  margin-top: -130px;
}

/* .....about_sec...... */
 .heading h6{
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--theme-color-second);
}
.bg_color{
  background-color: #f7f7f7;
}
.branche_con {
	padding: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.branche_con .botom{
  padding: 12px;
  text-align: center;
}
.branche_con .botom h4 {
	font-size: 23px;
	margin-bottom: 7px;
  color: var(--theme-color);
}
.branche_con .botom p{
  margin-bottom: 0;
}
.branche_con .top_img{
  overflow: hidden;
}
.branche_con .top_img img{
  transition: all 0.6s;
}
.branche_con .top_img:hover img{
  transform: scale(1.1);
}
.course_con{
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: #ffffff;
  height: 100%;
}
.course_con .botom h4 {
	font-size: 30px;
	margin-bottom: 7px;
	color: var(--theme-color);
}
.course_con .botom{
  padding: 20px;
  text-align: center;
  height: 100%;
}
.course_con_sm{
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: #ffffff;
  height: 100%;
}
.course_con_sm .botom h4 {
	font-size: 20px;
	margin-bottom: 7px;
	color: var(--theme-color);
}
.course_con_sm .botom {
	padding: 10px;
	text-align: center;
  height: 100%;
}
.course_con_sm .btn_sec .btn1 {
	width: 130px;
	padding: 7px 0;
}
.course_con_sm .botom p {
	font-size: 15px;
}
.course_con_sm .top_img {
  overflow: hidden;
}
.course_con .top_img {
  overflow: hidden;
}
.course_con_sm .top_img img {
  transition: all 0.8s;
}
.course_con_sm:hover .top_img img{
  transform: scale(1.2);
}
.course_con .top_img img{
  transition: all 0.6s;
}
.course_con:hover .top_img img{
  transform: scale(1.1);
}
#why_us_sec_course .contented .content p{
  font-size: 16px;
  font-weight: 500;
}
#why_us_sec_course .contented {
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: #fff;
	transition: all 0.6s;
	cursor: pointer;
	width: 100%;
	height: 100%;
  border: 1px solid #fff;
}
#why_us_sec_course .contented:hover p{
  color: #0f0f0f;
}
#why_us_sec_course .contented .top_img {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: var(--theme-color);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 9px !important;
}
#why_us_sec_course .contented:hover{
  transform: translateY(-5px);
  border: 1px solid var(--theme-color);
}
.tools_sec  .owl-prev {
	position: absolute;
	left: -21px;
  top: 45%;
	transform: translateY(-50%);
	font-size: 25px;
}
.tools_sec  .owl-next {
	position: absolute;
	right: -21px;
  top: 45%;
	transform: translateY(-50%);
}
.tools_sec  .owl-prev span{
	font-size: 40px;
}
.tools_sec  .owl-next span{
	font-size: 40px;
}
.certification_con {
	text-align: center;
	padding: 13px 15px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: #fff;
	transition: all 0.6s;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #8e8e8e;
  transition: all 0.6s;
}
.certification_con:hover{
  transform: translateY(-10px);
  border: 1px solid var(--theme-color);
}
.certification_con .certification_img img{
  width: 120px;
}
.certification_con .contents h4 {
  margin-bottom: 5px;
	font-size: 20px;
}
.certification_con .contents h5 {
	font-size: 17px;
  color: var(--theme-color-second);
}
/* ------------------------------------
    17. Testimonial Section CSS
---------------------------------------*/
 .testi-item {
  max-width: 1000px;
  margin: 0 0 0 auto;
  position: relative;
}
.testi-item .img-part {
  position: absolute;
  left: -240px;
  top: 50px;
}
.testi-item .img-part img {
  border-radius: 5px;
  max-width: 450px;
}
.testi-item .content-part {
  padding: 98px 0 98px 320px;
}
.testi-item .content-part .desc {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: #111111;
  font-size: 36px;
  line-height: 46px;
  position: relative;
}
 .testi-item .content-part .desc:before,
.testi-item .content-part .desc:after {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
}
 .testi-item .content-part .desc:before {
  transform: rotateY(180deg);
  position: absolute;
  left: -30px;
  top: -13px;
}
.testi-item .content-part .desc:after {
  position: relative;
  bottom: -7px;
  right: -8px;
}
.testi-item .content-part .desc.title-color {
  color: #111111;
}
.testi-item .author-desc {
	padding: 40px 15px;
	background-color: #182654;
  background-color: #1b56a3;
	border-radius: 5px 5px 5px 5px;
}
.testi-item .author-desc .desc {
	text-align: center;
	position: relative;
	color: #ffffff;
	padding: 60px 12px 17px;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}
.testi-item .author-desc .desc .quote {
	width: 66px;
	top: -13px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.testi-item .author-desc .author-img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 80px;
}
.testi-item .author-part {
	text-align: center;
	padding-top: 45px;
}
.testi-item .author-part .name {
	font-size: 20px;
	font-weight: 700;
	line-height: 45px;
	color: #282828;
	display: block;
}
.testi-item .author-part .designation {
	font-size: 16px;
	color: #141414;
}
.ciCnpO a:last-child{
  display: none !important;
  visibility: hidden !important;
}
.HeaderContainer__Inner-sc-1532ffp-0.gtiuwG.es-header-container.HeaderComponent__StyledHeader-sc-9lcg5s-0.fXNqIK {
	display: none;
}
/* ....batches...... */
.batches_con table, td{
border:1px solid #a1a1a1;
text-align: center;
}
.batches_con .reg_btn{
  background: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  padding: 7px 0px;
  display: inline-block;
  color: #fff;
  width: 120px;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  font-family: var(--theme-default-font);
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.batches_con .reg_btn:hover{
  background: initial;
  border: 1px solid var(--theme-color-second);
  color: var(--theme-color-second);
}
.batches_sec .batches_slider{
  width: 100%;
}

.batches_sec .owl-prev {
	position: absolute;
	left:0;
	top: 45%;
	transform: translateY(-50%);
	font-size: 25px;
	background: #fff;
	width: 23px;
}
.batches_sec  .owl-next {
	position: absolute;
	right:0;
  top: 45%;
	transform: translateY(-50%);
}
.batches_sec  .owl-prev span{
	font-size: 40px;
}
.batches_sec .owl-next span{
	font-size: 40px;
}
.owl-prev iconify-icon {
	background-color: #fd6c2c;
	color: #fff;
	width: 21px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	border-radius: 4px;
}
.owl-next iconify-icon {
	background-color: #fd6c2c;
	color: #fff;
	width: 21px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	border-radius: 4px;
}


/* ....blog.... */

.latest-news .contented .content p{
  color: #777777;
}
.latest-news .content-right  h4{
  color: #222222;
  font-size: 23px;
}
.latest-news .content-right  ul{
  display: flex;
}
.latest-news .content-right  ul li{
  color: #777777;
  margin-right: 15px;
}
.latest-news .contented .content {
	padding: 21px 13px;
}
.latest-news .contented .content h4 {
	color: #222222;
	font-size: 21px;
	font-weight: 500;
}
.latest-news .contented{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.latest-news .contented .img{
  overflow: hidden;
}
.latest-news .contented .img img{
  transition: all 0.6s;
}
.latest-news .contented .img:hover img{
  transform: scale(1.1);
}
/* get_call_sec */
.get_call_sec{
  background-color: var(--theme-color-second);
  color: #fff;
  padding: 35px 0;
}
.get_call_sec .heading h3{
  color: #fff;
  margin-bottom: 0;
}

.m-backtotop > div.arrow i {
	font-size: 35px;
}
/* footer */
footer {
	padding: 70px 0 50px;
  background-image: linear-gradient(to right, #0544b7 0%, #1472c6 51%, #0543b7 100%) !important;
	color: #ffffff;
	font-size: 15px;
}
footer .ft_content h4 {
	color: #fff;
	font-size: 23px;
	margin-bottom: 25px;
	font-weight: 400;
}
footer .ft_logo img {
	width: 180px;
	margin-bottom: 30px;
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
}
footer .ft_gap_left{
  margin-left: -15px;
}
footer ul.list-unstyled.ft_links li {
  margin-bottom: 8px;
}
footer .ft_links2 li{
  margin-bottom: 8px;
  display: flex;
  align-items: self-start;
  color: #ffffff;
}
footer .ft_links2 li i{
  font-size: 27px;
  margin-right: 10px;
  margin-top: 5px;
  color: #12599c;
}
footer .ft_links2 li i.fa-globe{
  font-size: 35px;
  margin-right: 10px;
  margin-top: 5px;
  color: #12599c;
}
footer .ft_links2 li a{
  color: #ffffff;
} 
footer .ft_links li a{
  color: #ffffff;
  transition: all 0.6s;
} 
footer .ft_links li a:hover {
	color: var(--theme-color-second);
	margin-left: 6px;
}
footer .ft_links2 li a .ft_call img{
  width: 30px;
  margin-right: 5px;
}
footer .ft_border {
	width: 100%;
	height: 1px;
	margin: 35px 0;
	background-color: #2b2b2b26;
}
footer .ft_socail{
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 15px;
}
footer .ft_socail a {
	width: 40px;
	height: 40px;
  background-color: #04427c;
	border-radius: 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
  transition: all 0.6s;
}
footer .ft_socail a:hover i{
  color: var(--theme-color-second);
  transition: all 0.6s;
}
footer .ft_socail a:hover {
	transform: translateY(-5px);
}
footer p{
  font-size: 15px;
}
.ratting-img i{
  color: var(--theme-color-second);
  font-size: 30px;
}
footer .critifi_img img{
  width: 150px;
  border-radius: 5px;
}
/* galley_img */
.galley_img{
  overflow: hidden;
}
.galley_img img{
  transition: all 0.6s;
}
.galley_img:hover img{
  transform: scale(1.1);
}
.tools_img:hover img{
  filter: grayscale(1.1);
  cursor: pointer;
}

.branches_sec ul li i {
	color: #165bad;
	font-size: 22px;
	margin-right: 8px;
}
.branches_sec ul li{
  margin-bottom: 15px;
  display: inline-block;
  width: 250px;
}
.text_right{
  text-align: right;
}
.drop-menu-li a i {
	position: absolute;
	top: 30px;
	right: -1px;
}
.latest-news .contented {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	width: 100%;
	height: 100%;
}
/* .....innner page */
.inner-page {
  padding: 250px 0px 70px;
}
.inner-page h1 {
	font-size: 45px;
	font-weight: 500;
	text-transform: uppercase;
}

.inner-page ul {
  display: flex;
  align-items: center;
  justify-content: left;
}
.inner-page ul li {
  font-size: 20px;
  margin: 0 6px;
  color: #000000;
  font-weight: 300;
}
.inner-page ul li a {
  color: #000000;
  font-weight: 300;
}
.inner_content {
	padding: 36px 14px;
	border-radius: 5px;
}
.contact_bg{
background: url('../image/contact-banner.jpg') no-repeat center;
background-size: cover;
}
.about_bg{
  background: url('../image/about-banner.jpg') no-repeat center;
background-size: cover;
}
.digital_marketing_bg{
  background: url('../image/digital-marketing-banner.jpg') no-repeat center;
  background-size: cover;
}
.blog_bg{
  background: url('../image/blog-banner.jpg') no-repeat center;
  background-size: cover;
}
.placement_bg{
  background: url('../image/placement-banner.jpg') no-repeat center;
  background-size: cover;
}
.web_designing_bg{
  background: url('../image/web-designing.jpg') no-repeat center;
  background-size: cover;
}
.web_development_bg{
  background: url('../image/development-banner.jpg') no-repeat center;
  background-size: cover;
}
.services_bg{
  background: url('../image/service/service-banner.jpg') no-repeat center;
  background-size: cover;
}
.dbox {
  padding:20px; 
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 100%;
  height: 100%;
} 
.dbox p {
margin-bottom: 0; }
.dbox p span {
	font-weight: 500;
	color: var(--theme-color);
	display: block;
	font-size: 22px;
	margin-bottom: 12px;
	margin-top: 15px;
}
.dbox p a {
  color: #000000;
}
.dbox .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--theme-color);
  margin: 0 auto;
  margin-bottom: 20px;
}
.dbox .icon span {
  font-size: 35px;
  color: #fff; }
.dbox .text {
width: 100%; }
.contact-wrap {
  background-color:#fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  color: rgb(255, 255, 255);
  padding: 60px 42px !important;
}
.contact-wrap h3 {
  font-size: 52px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.enquiry_form input {
	height: 45px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 24px;
	outline: none;
}
.enquiry_form select {
	height: 45px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 24px;
	outline: none;
}
.enquiry_form textarea {
	border-radius: 5px;
	color: #666666;
	padding: 16px;
	width: 100%;
	border: 1px solid #e2e2e2;
}
.enquiry_form button {
	background: var(--theme-color);
	border: 1px solid var(--theme-color);
	padding: 12px 0px;
	outline: none;
	cursor: pointer;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	border-radius: 5px;
	width: 100%;
	transition: all 0.5s ease-in-out;
}
.enquiry_form button:hover{
  background: initial;
	border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.ftco-section .contact-form input {
	height: 55px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 24px;
	outline: none;
}
.ftco-section .contact-form select {
	height: 55px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 24px;
	outline: none;
}
.ftco-section .contact-form textarea {
	border-radius: 5px;
	color: #666666;
	padding: 16px;
	width: 100%;
	border: 1px solid #e2e2e2;
}
.ftco-section .contact-form button {
	background: var(--theme-color);
	border: 1px solid var(--theme-color);
	padding: 14px 0px;
	outline: none;
	cursor: pointer;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	border-radius: 5px;
	width: 300px;
	transition: all 0.5s ease-in-out;
}
.ftco-section .contact-form button:hover{
  background: initial;
	border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.maps{
  line-height: 0;
}
.maps iframe{
  height: 450px;
}
.about_sec2{
  background: url('../image/about-bg.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
}
.about_sec2 .heading h2{
  color: #fff;
}
.digital_sec{
  background: url('../image/digital-bg.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 0;
}
.digital_sec .heading h2{
  color: #fff;
}
.digital_sec  ul li i {
	color: #165bad;
	font-size: 22px;
	margin-right: 8px;
}
.digital_sec ul li {
	margin-bottom: 15px;
	display: inline-block;
	width: 270px;
}
.digital_sec1 ul li i {
	color: #165bad;
	font-size: 22px;
	margin-right: 8px;
}
.digital_sec1 ul li {
	margin-bottom: 15px;
	display: inline-block;
	width: 312px;
}
/* enquiry-form */
.enquiry-form{
  background-color:#fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  color: rgb(255, 255, 255);
  padding: 35px;
}
.enquiry-form .heading h3 {
	margin-bottom: 30px;
	font-weight: 600;
}
.enquiry-form input {
	height: 48px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 21px;
	outline: none;
}
.enquiry-form select {
	height: 48px;
	border-radius: 5px;
	color: #666666;
	border: 1px solid #e2e2e2;
	width: 100%;
	padding: 0 21px;
	outline: none;
}
.enquiry-form textarea {
	border-radius: 5px;
	color: #666666;
	padding: 16px;
	width: 100%;
	border: 1px solid #e2e2e2;
}
.enquiry-form button {
	background: var(--theme-color);
	border: 1px solid var(--theme-color);
	padding: 14px 0px;
	outline: none;
	cursor: pointer;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	border-radius: 5px;
	width:100%;
	transition: all 0.5s ease-in-out;
}
.enquiry-form button:hover{
  background: initial;
	border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

 
/* ....faq..... */
.accordion__item {
  padding: 7px 0px;
  border-bottom: 1px solid #a1a1a1;
}
.accordion__body {
  display: none;
}
.accordion__body p {
  font-size: 16px;
  line-height: 26px;
}
.accordion__body ul li {
  font-size: 16px;
  margin-bottom: 12px;
}
.accordion__body ul {
  margin-top: 25px;
}
.accordion__title {
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 6px;
	position: relative;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 60px 0 0px;
}
.accordion__title::after {
	content: "";
	width: 30px;
	height: 42px;
	position: absolute;
	right: 0;
  top: 12px;
	background: url(../image/up-arrow.png) no-repeat;
	background-size: 15px;
}
.accordion__title.active {
  color: #ffffff;
}
.accordion__title.active::after {
	transform: rotate(-180deg);
	top: -25px;
	right: 1px;
}
.faq_list h4 {
  background: #024fff;
  color: #000;
  padding: 17px 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.faq_list {
  margin-bottom: 50px;
}
.accordion__item h3 {
  font-size: 20px;
  color: #3c3c3c;
  font-weight: 700;
  margin-top: 30px;
}
.accordion__body h5 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}
.faq_sec{
  background:linear-gradient(rgba(33,35,49,.9),rgba(33,35,49,.9)), url('../image/faq-banner.jpg') no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}
.faq_sec .heading h2 {
	color: #fff;
	margin-bottom: 35px;
}
.accordion__item {
	padding: 7px 14px;
	border: 1px solid #a1a1a1;
	margin-bottom: 16px;
}
.accordion__title {
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	color: #ffffff;
	font-weight: 400;
	padding: 9px 44px 0px 0px;
}
.accordion__title::after {
	content: "";
	width: 17px;
	height: 42px;
	position: absolute;
	right: 0;
	top: 15px;
	background: url(../image/up-arrow.png) no-repeat;
	background-size: 15px;
}

/* timeline */
.section-timeline .timeline {
	list-style: none;
	position: relative;
  margin: 85px 0;
	left: 43%;
	width: 90%;
}
.section-timeline .timeline li {
	height: 182px;
	width: 119px;
	border-color: var(--theme-color);
}
.section-timeline .timeline li:nth-child(odd) {
  border-style: solid;
  border-width: 2px 2px 2px 0;
  left: -40px;
  transform: translateX(50%);
  border-radius: 0 163px 163px 0;
  box-shadow: 13px 0 15px -12px rgba(0, 0, 0, .3);
}
.section-timeline .timeline li:nth-child(even) {
  left: -40px;
  border-style: solid;
  border-width: 2px 0 2px 2px;
  transform: translateX(-50%);
  border-radius: 163px 0 0 163px;
  box-shadow: -15px 0 15px -12px rgba(0, 0, 0, .5);
}

/* Style li */
.section-timeline .timeline li:nth-child(2) {
  top: 78px;
}
.section-timeline .timeline li:nth-child(3) {
  top: 156px;
}
.section-timeline .timeline li:nth-child(4) {
  top: 234px;
}
.section-timeline .timeline li:nth-child(5) {
  top: 312px;
}
.section-timeline .timeline li:nth-child(6) {
  top: 390px;
}

/* Style pseudo Element */
.section-timeline .timeline li::before {
	content: '';
	position: absolute;
	height: 45px;
	width: 45px;
	border: 2px solid black;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--theme-color);
	text-align: center;
	line-height: 45px;
	font-weight: bold;
	font-size: 21px;
	color: #FFF;
}
.section-timeline .timeline li:nth-child(odd):before {
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
.section-timeline .timeline li:nth-child(even):before {
  left: 0;
  transform: translateY(-50%) translateX(-50%);
}

.section-timeline .timeline li:nth-child(1):after,
.section-timeline .timeline li:last-child:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--clr-border-timeline);
}
.section-timeline .timeline li:nth-child(1):after {
  top: 0;
  transform: translate(-50%, -50%)
}
.section-timeline .timeline li:last-child:after {
  bottom: 0;
  right:0;
  transform: translate(50%, 50%)
}

.section-timeline .timeline li:nth-child(1):before {content: '1'}
.section-timeline .timeline li:nth-child(2):before {content: '2'}
.section-timeline .timeline li:nth-child(3):before {content: '3'}
.section-timeline .timeline li:nth-child(4):before {content: '4'}
.section-timeline .timeline li:nth-child(5):before {content: '5'}
.section-timeline .timeline li:nth-child(6):before {content: '6'}

/* Style content */
.section-timeline .timeline .content {
	position: absolute;
	min-width: 360px;
	overflow: hidden;
	top: 0%;
	transform: translateY(-50%);
	max-height: 232px;
	background: url('../image/step.png') no-repeat;
	background-size: 100% 100%;
	padding: 50px;
}
.section-timeline .timeline  #content_left{
  background: url('../image/step1.png') no-repeat;
	background-size: 100% 100%;
}
.content_botom{
  padding-bottom: 80px;
}

.section-timeline .timeline li:nth-child(odd) .content {
  left: calc(100% + 30px);
}
.section-timeline .timeline li:nth-child(even) .content {
  right: calc(100% + 30px);
}



.section-timeline .timeline .content h3 {
  text-align: center;
  margin: 0;
  /* box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .4); */
}
/* .section-timeline .timeline li:nth-child(1) h3 {
  background-color: #e74c3c;
}
.section-timeline .timeline li:nth-child(2) h3 {
  background-color: #2ecc71;
}
.section-timeline .timeline li:nth-child(3) h3 {
  background-color: #e67e22;
}
.section-timeline .timeline li:nth-child(4) h3 {
  background-color: #1abc9c;
}
.section-timeline .timeline li:nth-child(5) h3 {
  background-color: #9b59b6;
}
.section-timeline .timeline li:nth-child(6) h3 {
  background-color: #fff00f;
} */

.section-timeline .timeline .content p {
  font-size: 14;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
.section-timeline .timeline .content h3 {
	text-align: center;
	margin-bottom: 0px;
	color: #fff;
}
#digital_sec1 ul li{
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.author-img img {
	width: 56px !important;
}
.WidgetTitle__Header-sc-ruy1gu-2.huflDf {
	display: none;
}

/* inner blog */
.title_area h3 {
  font-size: 40px;
  line-height: 49px;
  margin-bottom: 24px;
 }
 .title_area h4 {
  font-size: 30px;
  margin-bottom: 14px;
 }
 .title_area p {
  line-height: 28px;
 }
 .title_area {
  margin-bottom: 34px;
 }
 .area_location_img {
  padding-top: 31px;
  margin-bottom: 24px;
 }
 
 .img-inner-blog{
   margin: 15px 0;
 }
 .area_location_img img {
  border: 4px solid #fff;
 }
 .area_location_img h3 {
  font-size: 26px;
  
 }
 
 
 .area_location_img iframe {
  width: 100%;
  height: 340px;
  margin-bottom: 24px;
 }
 .contact_info {
  
  color: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 1px rgb(175 174 174 / 50%);
  margin-bottom: 22px;
  overflow: hidden;
 }
 .contact_info a img {
  margin-bottom: 26px;
 }
 .contact_info h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
 }
 .contact_info p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 37px;
 }
 .contact_info a {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
 }
 .contact_info a i.fa {
  margin: 0 10px 0 0px;
 }
 
 
 .contact_form {
   background: #fff;
   border: 1px solid var(--theme-color);
   border-radius: 7px;
   box-shadow: 0px 0px 10px 1px rgb(175 174 174 / 50%);
   padding: 28px;
   margin-bottom: 22px;
 }
 .contact_form h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 26px;
 
 
 }
 .banner_area .contact_form input {
   width: 100%;
   display: block;
   outline: none;
   border: 1px solid var(--theme-color);
   height: 50px;
   margin-bottom:0px;
   font-size: 15px;
   padding: 0px 12px;
   border-radius: 2px;
  }
  .banner_area .contact_form select{
   width: 100%;
   display: block;
   outline: none;
   border: 1px solid var(--theme-color);
   height: 50px;
   margin-bottom:0px;
   font-size: 15px;
   padding: 0px 12px;
   border-radius: 2px;
  }
 .contact_form input {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  outline: none;
  border: 1px solid var(--theme-color);
  height: 40px;
  font-size: 15px;
  padding: 0px 12px;
  border-radius: 2px;
 }
 .contact_form textarea {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  outline: none;
  border: 1px solid var(--theme-color);
  height: 100px;
  font-size: 15px;
  padding: 12px 12px;
  border-radius: 2px;
 }
 
 .contact_form button{
     width: 100%;
  display: block;
 
  outline: none;
  border: 1px solid var(--theme-color);
  height: 50px;
  font-size: 15px;
  padding: 0px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  background: var(--theme-color);
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
 }
 .fott-content h6 a{
   color: #000;
 }
 .contact_form {
   margin-top: 25px;
 }
 .area_Section .contact_form h3 {
   color: var(--theme-color);
   margin-bottom: 20px;
   font-weight: 700;
   font-size: 26px;
 }
 .fott-content h6 a {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}
.modal {
	top: 15%;
}
#ser_pa .course_con_sm{
  transition: all 0.6s;
}
#ser_pa .course_con_sm:hover{
  background-color: var(--theme-color);
  color: #fff;
}
#ser_pa .course_con_sm:hover .botom h4{
  color: #fff;
}