/**
* Template Name: Arsha
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Lexend", sans-serif;
  color: #000000;
  background: #F5F5F5;font-weight: 500;
}

a {
  color: #0071DC;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0071DC;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0071DC;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0071DC;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0071DC;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
    position: relative;
    box-shadow: 0px -12px 9px 12px #ccc;

}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    width: -webkit-fill-available;
    width: inherit;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
    align-items: center;
    width: inherit;
    padding-left: 40px;
}

.navbar li {
    position: relative;
    float: left;
}
.getstartedli {
    float: right!important;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 400;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0071DC;
}

.navbar .getstarted, .navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    color: #0071DC;
    font-size: 14px;
    border: 2px solid #0071DC;
    font-weight: 600;
    float: right;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #0071DC;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0071DC;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: #007aff;
    display: none;
    line-height: 0;
    padding: 5px;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0071DC;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0071DC;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

#marquee {
background: #E5F1FB;
padding: 10px;
}

/*--------------------------------------------------------------
# Home Banner
--------------------------------------------------------------*/

.banner-fluid {
    padding: 0px;
    position: relative;
}
.banner-fluid .img-fluid{}
.banner-fluid .container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.banner-fluid .container img{
  width: 85%;
  transition: 0.3s;
}
.banner-fluid .container img:hover{transform: scale(1.2);}
.banner-fluid h1 {
    font-weight: 900;
}
.banner-fluid h1 span{
    color: #0071DC;
}
.banner-fluid p{}
.banner-fluid a {
    padding: 10px 35px;
    background: #fff;
    margin-top: 10px;
    display: inline-block;
    transition: 0.3s;
}
.banner-fluid a:hover {
    background: #0071DC;
    color:#fff;
    transition: 0.3s;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 5% 0;
  overflow: hidden;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
  display: block;
  width: 100%;
}
.section-title span{
  color: #0071DC;
}
.section-title p {
  margin-bottom: 0;
}
.section-title-inner {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
  display: block;
  width: 100%;
}
.section-title-inner span{
  color: #0071DC;
}
.section-title-inner p {
  margin-bottom: 0;
}
section .more-btn, .more-btn{
    padding: 10px 25px;
    background: #0071DC;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
    transition: 0.3s;
    border: 0px;
  }
section .more-btn:hover, .more-btn:hover{
    background: #ffffff;
    color:#0071DC;
    transition: 0.3s;
  }
  .align-center{text-align: center;}
.section-title-inner b {
    position: absolute;
    bottom: 9px;
    width: 100px;
    height: 3px;
    background: #0071dc;
    left: 0px;
}
/*--------------------------------------------------------------
# Home About US
--------------------------------------------------------------*/

#home-about{}
.about-hm-img{
  position: relative;
    height: fit-content;
    margin-bottom: 25px;
  }
.about-icon {
    position: absolute;
    right: 16%;
    top: 7%;
    z-index: 99;
    display: flex;
    gap: 10px;
    transition: 0.3s;
}
.about-icon img {
    width: 70px;
    transition: 0.3s;
}
.about-top-left {
    position: absolute;
    width: 40%;
    left: 0px;
    top: 0px;
    z-index: 1;
    transition: 0.3s;
}
.about-main-center {
    position: relative;
    z-index: 9;
    padding: 12%;
    left: 0px;
    width: 90%;
    transition: 0.3s;
}
.about-left-bottom {
    position: absolute;
    left: 0px;
    bottom: 28%;
    width: 30%;
    z-index: 99;
    transition: 0.3s;
}
.about-right-bottom {
    position: absolute;
    bottom: 18%;
    right: 5%;
    z-index: 99;
    width: 30%;
    transition: 0.3s;
}
.icon2 {
  position: relative;
    top:0px;
    transition: 0.3s;
}
.about-hm-img:hover .about-right-bottom {
    bottom: 23%;
}
.about-hm-img:hover .about-left-bottom {
    bottom: 32%;
}
.about-hm-img:hover .about-main-center {
    left:5%;
}
.about-hm-img:hover .about-top-left {
    left:-10px;
}
.about-hm-img:hover .icon2 {
  position: relative;
    top:-10px;
}
.about-hm-content{padding-left: 30px}
.about-hm-content h3{}
.about-hm-content p{}
.about-hm-content a{
    padding: 10px 25px;
    background: #0071DC;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
    transition: 0.3s;
}

/*--------------------------------------------------------------
# Home Courses
--------------------------------------------------------------*/

.course-md-4 {
    padding: 3%;
}
.course-md-4 a {
  color: #000000;
  text-align: center;
  padding: 10%;
    background: #fff;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    transition: 0.3s;
}
.course-md-4 a h4{text-transform:uppercase;}
.course-img-div {
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
    background: #E5F1FB;
    padding: 16%;
    border-radius: 100%;
    transition: 0.3s;
}
.course-img-div img{width:100%}
.white-img{display: none;transition: 0.3s;}
.course-md-4 a:hover{
  color: #0071DC;
}
.course-md-4 a:hover .course-img-div {
    background: #0071DC;
}
.course-md-4 a:hover .course-icon-black {
    display: none;
}
.course-md-4 a:hover .white-img {
    display: block;
}
.edexe-col {
    padding: 2%;
}
.edexe-col a {
    position: relative;
    padding: 3%;
    box-shadow: none;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 1px!important;
  transition: .5s ease;
  background-color: #0071DC;
  color: #fff;
  padding: 5% 0px;
  display: inline-grid;
  overflow: hidden;
  text-align: left;
  align-items: center!important;
    border-radius: 10px;
}
.edexe-col a:hover .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 100%;
  width: 100%!important;
  padding: 5%;
  transition: .5s ease;
  background-color: #0071DC;
}
.edexe-col a p {
    font-weight: 200;
    font-size: smaller;
}
.edexe-col a .course-img-div{margin: 20px auto;}
.edexe-col a h5 {
    margin: 20px auto;
    display: inline-block;
}
/*--------------------------------------------------------------
# Fame Section
--------------------------------------------------------------*/

.marquee-fame {
    margin-top: 30px;
}
.fame-div {
    float: left;
    margin-left: 20px;
}
.fame-div img{}
.fame-content {
    padding: 50px 0px 0px 10px;
}
.fame-content h4{}
.fame-content p{}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

#home-testimonials{background: #EDEDF5}
.testimonials-fluid{
  padding: 6%;
    background: #fff;
    display: block;
    border-radius: 10px;
  }
.col-test-img {
    position: relative;
}
.col-test-img img {
    width: 70%;
}
.col-test-img .test-title {
    position: absolute;
    top: 110px;
    right: 0px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
}
.col-test-img .test-title h5{margin: 0px}
.col-test-img .test-title p{color: #8D8D8D;margin: 0px}
.col-test-content {
    padding-left: 10%;
    padding-top: 5%;
}
.col-test-content h3 {
    margin-bottom: 30px;
    font-weight: 800;
}
.col-test-content p{font-weight: 300;}
#home-testimonials .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #2882d7;
}
#marquee-partners {
    background: #EDEDF5;
    border-radius: 15px;
    padding: 15px;
}
#marquee-partners marquee{height: 100px}
.partners-col {
    padding: 40px;
    height: 140px;
}
.partners-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  padding: 5% 0px;
}
#footer ul {
    list-style: none;
}
#footer li{padding: 5px 0px}
#footer a{color:#000}
#footer a:hover{color:#0071DC}
#footer p{margin:0px}
#footer img{}


/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
#page-about{}
.about-img {
    position: relative;
    height: fit-content;
    margin-bottom: 25px;
}
.aboutpg-top-left {
    position: absolute;
    transition: 0.3s;
    z-index: 9;
    width: 35%;
    left: 0px;
    top: 0px;
}
.aboutpg-top-right {
    position: absolute;
    transition: 0.3s;
    right: 6%;
    z-index: 9;
    top: 8%;
    width: 30%;
}
.aboutpg-main-center {
    position: relative;
    top: 0px;
    transition: 0.3s;
    width: 100%;
    padding: 10%;
    z-index: 1;
}
.aboutpg-left-bottom {
    position: absolute;
    transition: 0.3s;
    bottom: 3%;
    left: 5%;
    z-index: 9;
    width: 32%;
}
.aboutpg-right-bottom {
    position: absolute;
    transition: 0.3s;
    bottom: 10%;
    right: 25%;
    z-index: 9;
    width: 22%;
}
.about-content{}
.about-content h3{}
.about-content p{}
.about-img:hover .aboutpg-right-bottom {
    bottom: 23%;
}
.about-img:hover .aboutpg-left-bottom {
    bottom: 12%;
}
.about-img:hover .aboutpg-main-center {
    top:-20px;
}
.about-img:hover .aboutpg-top-left {
    top:2%;
}
.about-img:hover .aboutpg-top-right {
    top:2%;
}
#about-img h3 b {
    left: 46%;
    right: auto;
    text-align: center;
    width: 8%;
}

/*--------------------------------------------------------------
# Careers Page
--------------------------------------------------------------*/

.career-img{}
.career-img p{}
.career-img a{}
.career-img img {
    margin: 30px 0px 0px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgb(0 0 0 / 79%); /* Black w/ opacity */
  padding-top: 60px;
  padding-bottom: 60px;
    z-index: 999;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: #0071dc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    z-index: 999;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #0071DC;
  color: white;
}
.modal-header h2 {
    padding: 8px;
    font-size: 30px;
    text-align: center;
}
.modal-body {padding: 0px}

.modal-footer {
  padding: 2px 16px;
  background-color: #1d58b1;
  color: white;
}
.career-row {
    background: #E5F1FB;
    padding: 2% 10%;
    margin: 30px 0px 5px;
}
.career-row .col-sm-6{}
.career-row h4{}
.career-row p{margin: 0px;color: #8D8D8D}
.career-row button {
    float: right;
}
.career-form {
    background: #EDEDF5;
    padding: 5%;
    margin: 0px;
    position: relative;
}
.form-label {
    margin-bottom: 0px;
    color: #8D8D8D;
}
.career-form p {
    color: #8D8D8D;
    margin-bottom: 25px;
}
.career-form h5{margin-bottom: 30px}
.form-career-right{
    padding-left: 10%;
}

.form-career-left {
    padding-right: 10%;
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-left{padding-right: 30px}
.contact-right{padding-left: 30px}
.contact-left .d-flex {
    box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    background: #fff;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 5px;
}
.form-row{
    box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(183 183 183 / 68%);
    background: #fff;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 5px;
}
.contact-left .d-flex img {
    height: fit-content;
    margin-right: 20px;
}
.contact-left .d-flex .phone{}
.contact-left .d-flex .phone h5{}
.contact-left .d-flex .phone p{margin: 0px}
.contact-left .d-flex .phone a{color: #000}
.form-row .form-control {
    padding: 15px;
    margin: 10px 0px;
    box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    background: #fff;
    border-radius: 5px;
    border: 0px;
}
.map-row {
    margin: 0px;
    margin-top: 30px;
}
.map{width:100%;height: 400px;border-radius: 10px}

/*--------------------------------------------------------------
# Courses Page
--------------------------------------------------------------*/

.courses-tabs{}
.courses-tabs .col-lg-3 h4 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.courses-tabs .col-lg-3 h4 b {
    position: absolute;
    width: 50px;
    height: 3px;
    background: #0071dc;
    bottom: 0px;
    left: 0px;
}
.courses-tabs .nav-item{
    display: block;
    width: 100%;
    text-transform: uppercase;
}
.courses-tabs .nav-link {
    background: transparent!important;
    border: 0px;
    font-size: 20px;
    color: #000;
    padding: 20px 0px;
}
.courses-tabs .nav-link b{
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid #000;
    margin-right: 30px;
    border-radius: 100px;
}
.courses-tabs .nav-link.active{color:#0071dc}
.courses-tabs .nav-link.active b{background:#0071dc;border: 1px solid #0071dc; }
.courses-tabs .col-lg-3 {
    border: 0px;
    height: fit-content;
}
.tab-content-row{}
.course-col{}
.course-col a {
    padding: 25px;
    margin: 10px 0px;
    box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    -webkit-box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    -moz-box-shadow: 6px 2px 8px 0px rgb(183 183 183 / 68%);
    background: #fff;
    border-radius: 10px;
    border: 0px;
    display: block;
}
.course-col a img{width: 50px}
.course-col a p {
    color: #000;
    margin: 20px 0px 0px;
}


/*--------------------------------------------------------------
# slick slider
--------------------------------------------------------------*/


/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: auto;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots{
    display: flex;
    margin: auto;
    text-align: center;
    list-style: none;
    padding: 14px 0px 0px 23px;
}
.slick-dots li button {
    width: 10px;
    padding: 0px;
    height: 10px;
    border-radius: 100px;
    overflow: hidden;
    margin: 0px 2px;
}
.slick-dots li.slick-active button {
    background: #0071dc;
    border: 1px solid #0071dc;
}










/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1100px) {
  .about-icon img {
      width: 50px;
  }
  .course-md-4 a h4 {
    font-size: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-title-inner {
    font-size: 28px;
  }
  .banner-fluid h1 {
    font-weight: 900;
    font-size: 30px;
    line-height: 28px;
  }
  .fame-content h4 {
    font-size: 18px;
  }
  .edexe-col a h5 {
    font-size: 16px;
  }
.form-career-right{
    padding-left: 5%;
}

.form-career-left {
    padding-right: 5%;
}
.contact-left .d-flex {
    padding: 10px;
}
.contact-left .d-flex img {
    height: fit-content;
    margin-right: 10px;
}
.contact-left {
    padding-right: 15px;
}
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-nav-toggle {
    display: block;
    right: 0px;
    left: auto;
    position: absolute;
    float: right;
    text-align: right;
}
.contact-right {
    padding-left: 15px;
}
  .navbar ul {
    display: none;
  }
  .navbar li {
    position: relative;
    float: none!important;
    text-align: center;
}
.navbar-mobile ul {
    display: block;
    align-items: center;
    width: auto;
}
.navbar a, .navbar a:focus {
    display: block;
    text-align: center;
}
.navbar .getstarted, .navbar .getstarted:focus {
    float: none;
}
#footer ul {
    list-style: none;
    padding: 0px;
    text-align: center;
}
#footer img {
    text-align: center;
    margin: auto;
    display: block;
    margin-bottom: 30px;
}
#footer p {
    margin: 0px;
    text-align: center;
}
.form-career-right{
    padding-left: 2%;
}

.form-career-left {
    padding-right: 2%;
}
.courses-tabs .col-lg-3 h4 {
    width: 100%;
}
.courses-tabs .nav-item {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    margin-right: 30px;
}
.courses-tabs .nav-link b {
    margin-right: 10px;
}
.tab-content>.active {
    display: block;
    padding: 30px 0px;
}
.tab-content{padding:0px}
}


@media (max-width: 767px) {
  .about-icon img {
      width: 60px;
  }
  .about-hm-content {
    padding-left: 15px;
}
.col-test-img .test-title {
    position: absolute;
    top: 110px;
    right: 20px;
  }
  .col-test-content {
    padding-left: 15px;
}
.banner-fluid h1 {
    font-weight: 900;
    font-size: 25px;
    line-height: 25px;
}
.banner-fluid a {
    display: none;
}
.form-career-right{
    padding-left: 15px;
}

.form-career-left {
    padding-right: 15px;
}
.courses-tabs .nav-link {
    font-size: 16px;
}
.courses-tabs .nav-link b {
    width: 10px;
    height: 10px;
}
.courses-tabs .col-lg-3 h4 {
    width: 100%;
    margin-top: 20px;
}
}

@media (max-width: 575px) {
.banner-fluid .d-flex{display: block!important;}
.banner-img{display: none;}
.banner-content {
    display: block;
    padding: 5%;
    text-align: center;
}

.banner-fluid h1 {
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
}
.career-form {
    padding: 30px 0px 30px;
}
.courses-tabs .nav-item {
    margin-right: 15px;
}
.courses-tabs .nav-link b {
    margin-right: 3px;
    margin-top: -4px;
    display: inline;
}
.courses-tabs .nav-link {
    font-size: 14px;
}
}

