/*
Theme: C2 Developer Zone
Author: Team C2 Developer Zone
Version: 0.2
Author URI: https://c2developerzone.com/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #444444;
    font-family: "Monda", sans-serif;
    background: #fff;
}
p{
  color: #202020;
   font-family: "Monda", sans-serif;
}
a {
    font-family: "Alatsi", sans-serif;
    color: #3734A9;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  color: #353458;
}
a.theme-btn, .form-btn button {
    margin: 3rem auto 0.5rem;
    display: inline-flex;
    color: #ffffff;
    padding: 0.6rem 1.6rem 0.6rem 1.4rem;
    border-radius: 100px;
    border: solid 3px rgb(255 255 255);
    transition: 0.3s ease;
    background: #3937aa;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.2px;
    box-shadow: 0px 0px 0px 2px #3937aa;
}
a.theme-btn:hover, .form-btn button:hover {
    transition: 0.3s ease;
    background: #01d5e6;
    box-shadow: 0px 0px 0px 2px #01d5e6;
}
section{
  position:relative;
}
.pd{
  padding: 0;
}
.pd-left{
  padding-left:0;
}
.pd-right{
  padding-right:0;
}
.text-right{
	text-align:right;
}
.owl-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 1.5rem 0 0;
}
button.owl-prev, button.owl-next {
    border-radius: 100px;
    width: 44px;
    height: 44px;
    background: #4C4AB2 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 33px !important;
    position: relative;
    border: solid 3px #ffffff !important;
    box-shadow: 0 0 0 2px #4c4ab2;
}
button.owl-prev span, button.owl-next span {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 5px;
    font-weight: 400;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  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);
  }
}


.inner-bg{
    background-image: url(https://sunvidia.com/wp-content/uploads/2024/11/sunvidia-inner-bg.webp);
    max-height: 400px;
    height: 100vh;
    background-position: center right;
    background-repeat: no-repeat;
}
.inner-bg .container {
    position: relative;
    height: 100%;
}
.inner-heading {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.inner-heading h1 {
    color: #fff;
}

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

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

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

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


/*Topbar Sec*/

section.topbar-sec {
    padding: 10px 0;
    background: #4C4AB2;
    width: 90%;
    margin: auto;
    border-radius: 0 0 20px 20px;
}
.topbar-left a {
    padding: 2px 5px;
    display: inline-block;
    margin-right: 8px;
    font-family: "Monda", sans-serif;
    color: #fff;
}
.topbar-left a:hover {
    color: #00dced;
}
.topbar-left a img {
    margin-right: 5px;
    height: 20px;
}
.topbar-left a:first-child {
    border-right: solid 1px #fff;
    padding-right: 16px;
}
.social-link {
    text-align: right;
}
.social-link a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4c4ab2;
    border: solid 1px #fff;
    margin: 0 3px;
    background: #fff;
    border-radius: 7px;
    font-size: 20px;
}
.topbar-left {
    display: flex;
    align-items: center;
    height: 100%;
}
.search-modal {
    display: none;
}
.search-modal-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(51deg, rgba(55, 52, 169, 1) 24%, rgba(255, 255, 255, 1) 127%);
}
.searchbx {
    width: 65%;
    position: relative;
}
.search-modal .close-modal {
    position: absolute;
    color: #00DCED;
    top: 50px;
    right: 27px;
    font-size: 25px;
    background: #3936aa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
input#enterp {
    max-height: 72px;
    height: 100vh;
    background: #f9f9ff;
    border: solid 1px #ffffff59;
    color: #202020;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 17px 0;
    background: #ffffff;
    position: sticky;
    top: 0;
    width: 90%;
    margin: 1rem auto -2rem;
    border-radius: 0 0 20px 20px;
}
.header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.2rem;
}
#header.header-scrolled, #header.header-inner-pages {
    background: rgb(255 255 255);
    width: 100%;
}

#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 {
    width: 180px;
}
.header-right {
    display: flex;
    align-items: center;
}
.search-button {
    border-radius: 100px;
    padding: 7px 8px 7px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4C4AB2;
    color: #fff;
    border: none;
}
.search-button i {
    background: #00DCED;
    width: 49px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 39px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #353458;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: "Monda", sans-serif;
}
.current-menu-item a {
    color: #00dced;
}
.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: #00DCED;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.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;
    text-transform: none;
    color: #13192b;
    letter-spacing: -0.2px;
}

.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: #00DCED;
}

.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: #00dced;
    font-size: 32px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    margin: 0 0 0 21px;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.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: 14px;
    color: #37517e;
    font-weight: 500;
}

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

.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: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}



@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 75px 0 70px;
    overflow: hidden;
}
.theme-heading-sec {
    margin-bottom: 2.6rem;
}
.theme-heading-sec h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0.6rem;
}


/*Banner*/

#demo {
    background: linear-gradient(51deg, rgba(55, 52, 169, 1) 24%, rgba(255, 255, 255, 1) 127%);
    border-radius: 0 0 0 150px;
    position: relative;
    overflow: hidden;
}
.carousel-inner{
  position: relative;
  z-index: 1;
}
.carousel-item {
    padding: 3rem 0 0rem;
    height: 88vh;
}
div#demo .container-fluid {
    width: 92%;
}
.banner-heading {
    padding-left: 3rem;
    padding-right: 10rem;
}
.banner-heading a.theme-btn {
    margin:0;
}
.banner-heading h1 {
    color: #ffffff;
    font-size: 63px;
    font-weight: 100;
    letter-spacing: 0.1px;
    line-height: 69px;
    text-transform: uppercase;
    border-left: solid 5px #00DCED;
    padding-left: 13px;
}
.banner-heading h1 span {
    color: #ee0d0d;
    display: block;
}
.banner-heading p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin: 1.7rem 0 2rem;
    letter-spacing: 0.3px;
    font-weight: 400;
}
.ban-col{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner-rt-col {
    position: relative;
}
.carousel-indicators {
    justify-content: center;
    margin-right: 7%;
    margin-left: 7%;
}
.carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    margin-right: 4px;
    margin-left: 4px;
    opacity: .5;
    border-radius: 100%;
    border:solid 5px #3734a9;
    box-shadow: 0px 0px 0px 1px #ffffff;
}
.carousel-indicators .active {
    opacity: 1;
    box-shadow: 0px 0px 0px 1px #00dced;
    background: #00dced;
}
.carousel-control-next, .carousel-control-prev {
    width: 3%;
}
.carousel-control-prev img {
    width: 16px;
    margin-right: 1rem;
}
.carousel-control-next img {
    width: 16px;
    margin-left: 1rem;
}

/*Inner Banner*/


section.inner-banner-sec {
    max-height: 350px;
    height: 100vh;
    background: #171720;
}
section.inner-banner-sec:before {
    content: "";
    background-image: url(assets/img/inner-bg-1.png);
    width: 328px;
    height: 460px;
    position: absolute;
    top: 0;
    left: 0;
}
section.inner-banner-sec:after {
    content: "";
    background-image: url(assets/img/inner-bg-2.png);
    width: 328px;
    height: 460px;
    position: absolute;
    top: 0;
    right: 0;
}
.inner-bg-wrapper {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.inner-bg-wrapper h1 {
    color: #fff;
    font-weight: 500;
    font-size: 48px;
}
.carousel-control-next{
    width: 50px;
    height: 88px;
    border-radius: 100px 0 0 100px;
    background: #ffffff;
    opacity: 1;
		top: 45%;
    transform: translateY(-50%);
}
.carousel-control-prev {
    width: 50px;
    height: 88px;
    border-radius: 0 100px 100px 0;
    background: #ffffff;
    opacity: 1;
		top: 45%;
    transform: translateY(-50%);
}


/*Feature Section*/

.feature-wrapper {
    background: #F5F5F5;
    padding: 1.4rem;
    text-align: center;
    border-radius: 25px;
    border: solid 1px rgba(76, 74, 178, 0.11);
}
section.feature-sec h3 {
    font-size: 2.4rem;
    text-align: center;
    width: 76%;
    margin: 0 auto 7rem;
    letter-spacing: -0.5px;
}
.feature-img {
    width: 120px;
    height: 120px;
    border: solid 4px #ffffff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -5rem auto 1.5rem;
    background: #F5F5F5;
}
.feature-wrapper h6 {
    color: #3734A9;
    font-size: 20px;
}
.feature-wrapper p {
    margin-bottom: 0.7rem;
}
.feature-wrapper.active {
    background: #4C4AB2;
}
.feature-wrapper.active .feature-img {
    background: #4c4ab2;
}
.feature-wrapper.active h4,
.feature-wrapper.active p{
  color:#fff;
}
.feature-wrapper.active {
    background: #4C4AB2;
}
.feature-wrapper.active h6{
    color: #00DCED;
}



/*Service Section*/

section.service-sec {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(243, 249, 255, 1) 100%);
}
.service-sec .theme-heading-sec p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.service-course-wrapper {
    border: solid 1px hsl(241.15deg 41.27% 49.41% / 31%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    background: #fff;
    margin: 0.7rem 0;
}
.service-head {
    padding: 1.2rem 0.5rem 0.5rem 0.7rem;
}
.service-head h4 {
    letter-spacing: -0.5px;
    font-size: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.service-head p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 100;
}
.service-img{
  position: relative;
  border: solid 1px hsl(241.15deg 41.27% 49.41% / 31%);
  border-radius: 25px;
  overflow: hidden;
}
.service-img img {
    max-height: 230px;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
.srv-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.srv-link a:first-child {
    color: #3734A9;
}
a.link-shape {
    background: #4C4AB2;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    border-radius: 100%;
}
a.link-shape:hover {
    background: #00dced;
}
.service-course-wrapper:hover {
    background: #4C4AB2;
}
.service-course-wrapper:hover h4,
.service-course-wrapper:hover p{
    color: #fff;
}

.service-course-wrapper:hover .srv-link a:first-child{
    color: #00DCED;
}
.service-course-wrapper:hover a.link-shape{
  background: #fff;
  color: #00DCED;
}


/*Industry sec*/

section.industry-sec, .mission-sec {
    background-image: url(assets/img/industry-bg.webp);
    background-size: cover;
    background-position: center;
}
section.industry-sec a.theme-btn {
    margin: 2rem auto 0.5rem;
}
.ind-carousel {
    padding: 0 3rem 0 2rem;
}
.ind-carousel .item {
    background: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}
.ind-arc-wrap {
    border: solid 1px hsl(241.15deg 41.27% 49.41% / 31%);
    border-radius: 25px;
    padding: 0.9rem;
    margin: 0.7rem 0;
}
.industry-img {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-height: 243px;
    height: 100vh;
}
.industry-img img {
    object-position: center;
    object-fit: cover;
    height: 100%;
}
.industry-head h4 {
    margin: 8px 0 2px;
}
section.industry-sec .theme-heading-sec {
    padding: 5rem 6rem 0 7rem;
}
section.industry-sec .theme-heading-sec h2,
section.industry-sec .theme-heading-sec p{
   color:#fff;
}


/*About Us*/

.about-left-col {
    display: flex;
    align-items: center;
    padding-left: 2rem;
}
.about-left-col .theme-heading-sec {
    margin-bottom: 1.6rem;
}
.about-list h6 {
    position: relative;
    font-family: "Monda", sans-serif;
    padding-left: 2.5rem;
    margin-bottom: 22px;
}
.about-list h6:before {
    content: "";
    background-image: url(assets/img/check.png);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    background-size: 20px;
    background-repeat: no-repeat;
    left: 9px;
}
.about-sec a.theme-btn{
    margin: 1.5rem auto 0.5rem;
}


/*Footer*/

/*Footer Top*/

footer.footer-top {
    padding: 80px 0 115px;
    position: relative;
    background: #4C4AB2;
    overflow: hidden;
}
footer.footer-top .container {
    position: relative;
    z-index: 1;
}
footer.footer-top:before {
    content: "";
    background-image: url(assets/img/footer-shape-left.webp);
    width: 400px;
    height: 316px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 469px;
}
footer.footer-top:after {
    content: "";
    background-image: url(assets/img/footer-shape-left.webp);
    width: 469px;
    height: 316px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: 469px;
    transform: rotate(196deg);
}
.logo-wrap img {
    margin-bottom: 0.5rem;
}
.footer-contact-wrapper p {
    position: relative;
    color: #fff;
    font-size: 15px;
}
.footer-contact-wrapper p i {
    color: #00dced;
    font-size: 17px;
    margin-right: 10px;
}
.footer-wrapper h4 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-size: 1.8rem;
    font-weight: 400;
}
.footer-wrapper h4 span {
    color: #00dced;
}
ul.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.footer-nav li {
    display: inline-block;
    width: calc(100% / 2 - 5px);
}
ul.footer-nav li a {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    font-family: "Monda", sans-serif;
}
ul.footer-nav li a:hover {
    color: #00dced;
}
ul.footer-nav a:before {
    content: "\F285";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 14px;
    top: 0px;
    color: #00DCED;
}
.logo-wrap {
    text-align: center;
}
.logo-wrap p {
    color: #fff;
    font-size: 15px;
    margin: 1rem 0 1.7rem;
    font-weight: 400;
    padding: 0 3rem;
}


/*Footer Bottom*/

footer.footer-bottom {
    padding: 0;
    margin-top: -73px;
    position: relative;
}
footer.footer-bottom .container {
    background: #fff;
    padding: 25px 25px;
}
footer.footer-bottom .row {
    align-items: center;
}
footer .social-link {
    text-align: center;
}
.logo-wrap .social-link a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #353458;
    border: solid 1px rgb(255 255 255);
    margin: 0 3px;
}
.logo-wrap .social-link a:hover {
    background: #00DCED;
    border: solid 1px #00DCED;
}
.copyright-txt p {
    color: #353458;
    font-size: 15px;
    margin: 0;
    font-family: "Monda", sans-serif;
}
.copyright-txt p a {
    color: #4C4AB2;
    text-transform: uppercase;
    font-family: "Monda", sans-serif;
}
footer.footer-bottom ul {
    margin: 0;
    padding: 0;
}
footer.footer-bottom ul li {
    list-style: none;
    display: inline-block;
    margin-right: 18px;
}
footer.footer-bottom ul li a{
  color:#353458;
  font-size: 14px;
}
footer.footer-bottom ul li a:hover {
    color: #ea1826;
}
p.dev-by {
    margin: 0;
    text-align: right;
    color: #353458;
    font-size: 15px;
    font-weight: 500;
}
p.dev-by a {
    color: #4C4AB2;
    font-family: "Monda", sans-serif;
}
.footer-contact-wrapper p a {
    font-family: "Monda", sans-serif;
    color: #fff;
}
.footer-contact-wrapper p a:hover {
    color:#00DCED;
}
/* footer.footer-top .container {
    position: relative;
    z-index: 999;
} */



/* Details Page */
 .sidebar-list {
      background: #f5f5f5;
      padding: 40px 30px 28px;
      border-radius: 14px;
  }
    .sidebar-list ul {
        padding-left: 0;
        list-style-type: none;
    }
    .sidebar-list ul li {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 12px;
      }
.sidebar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 24px;
    color: #17012c;
    font-size: 18px;
    letter-spacing: -0.2px;
}
.sidebar-list ul li:hover {
    background: #5843c7;
}
.sidebar-list ul li:hover a {
    color: #fff;
    text-decoration: none;
}
.sidebar-list.sidebar-bg {
    background: #2d2d8a;
    text-align: center;
    margin: 1.5rem 0;
}
.details-rt-cont img.dt-top-img {
    max-height: 360px;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.sidebar-cta h4 {
    color: #fff;
    font-weight: 400;
    font-size: 2.4rem;
}
.sidebar-cta a {
    text-decoration: none;
    color: #5be5f8;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.details-rt-cont p {
    line-height: 26px;
}
.details-rt-cont img {
    margin-bottom: 2rem;
}
.details-rt-cont ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.details-rt-cont ul li {
    padding: 0 0 6px 34px;
	position:relative;
}
.details-rt-cont ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #2d2d8a;
    position: absolute;
    left: 5px;
    top: 7px;
    transform: rotate(45deg);
}


/* Contact Us */
.sunvidia-addsec {
    width: 85%;
    padding: 10% 5% 6%;
}
.sunvidia-icsec {
    background: #4c4ab2;
    position: relative;
    width: 15%;
    box-shadow: 4px 1px 7px rgba(5, 62, 90, 0.24);
}
.address-wrapper h4 {
    margin: 5% 0;
}
.address-wrapper i {
    color: #fbfbfb;
    font-size: 31px;
    padding: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 2px 7px rgba(4, 52, 76, 0.39);
}
.address-wrapper {
    background: #fbfbfb;
    box-shadow: 0px 0px 17px 1px rgba(37, 42, 55, 0.14);
    min-height: 200px;
    margin: 5% 0;
    display: flex;
    position: relative;
    overflow: hidden;
}



.techno-sec .theme-heading-sec {
    text-align: center;
    width: 60%;
    margin: 0 auto 3rem;
}
.techno-col {
	 display: flex;
    justify-content: space-between;
}
.techno-wrapper {
    margin: 5px;
}
.techno-wrapper .img-box img {
    max-height: 250px;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 14px;
}
.techno-head {
    text-align: center;
}
.techno-head h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 2px;
}

/*Contact Us*/

.contact-form-sec {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(243, 249, 255, 1) 100%);
}
.form-group {
    margin-bottom: 19px;
}
.form-group label {
    margin-bottom: 6px;
}
.form-control {
    max-height: 50px;
    height: 100vh;
    border: solid 1px #80808030;
}
textarea.form-control {
    min-height: unset;
    max-height: unset;
    height: auto;
}
.map-sec {
    height: 100%;
    border: solid 1px #35339f38;
    padding: 0.9rem;
    border-radius: 11px;
}
.form-btn button {
    margin: 1rem auto 0.5rem;
}
.form-btn input[type="submit"] {
    background: #4c4ab2;
    color: #fff;
    width: 100%;
    padding: 0.8rem;
    font-size: 16px;
    text-transform: uppercase;
}
.form-rt-col {
    padding: 2rem 0 2rem 2rem;
}
.detailssearch img {
    width: 70px;
    height: 70px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    object-fit: cover;
    margin-right: 10px;
}

.detailssearch {
	background-color: #fff;
	margin-bottom:7px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 7px;
}
.show-courses {
    position: absolute;
    z-index: 999;
    background: #f7f7f7;
    height: auto;
    width: 100%;
    padding: 25px;
    display: none;
    max-height: 260px;
    overflow-y: scroll;
    border: solid 1px rgb(53 106 170 / 15%);
    border-radius: 8px;
}


/*About-us Page*/

section.mission-sec {
    text-align: center;
}
section.mission-sec .theme-heading-sec h2, section.mission-sec p {
    color: #fff;
    padding: 0 7rem;
}

.what-makeus-sec ul {
    margin: 0;
    padding: 0;
	list-style:none;
}
.what-makeus-sec ul li {
    padding: 0 8px 18px 28px;
    font-size: 16px;
    position: relative;
    line-height: 23px;
}
.what-makeus-sec ul li:before {
    content: "";
    background-image: url(assets/img/check.png);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 7px;
    background-size: 20px;
    background-repeat: no-repeat;
    left: 0;
}

/*Career Sec*/

.career-sec .theme-heading-sec {
    text-align: center;
}
.career-heading {
    margin-bottom: 35px;
}
.career-form {
    background: #f6f6f6;
    padding: 2rem 3rem;
}
section.career-sec img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}


@media screen and (max-width: 767px) {

/*Topbar-sec*/
	
.topbar-sec .social-link {
    display: none;
}
section.topbar-sec {
    width: 100%;
    border-radius: 0 0 10px 10px;
}
.topbar-left {
    justify-content: space-between;
}
    .topbar-left a {
        padding: 2px 0px 2px 9px;
        margin-right: 0px;
        width: 50%;
        text-align: right;
    }
.topbar-left a span {
    display: none;
}
.topbar-left a img {
    height: 16px;
}
.topbar-left a:first-child {
    padding-right: 10px;
    padding-left: 0;
	text-align:left;
}
	
/*Header*/
	
button.search-button span {
    display: none;
}
.search-button {
    padding: 5px 5px 5px 0px;
}
.search-button i {
    width: 44px;
    margin-left: 6px;
}
.header-col {
    padding: 0 1.2rem;
}	
#header .logo img {
    width: 160px;
}
.searchbx {
    width: 90%;
}
	
/*Banner*/
	div#demo .row {
    flex-direction: column-reverse;
}
div#demo .container-fluid {
    width: 100%;
}
.ban-col {
    padding: 0;
}
    .banner-heading {
        padding-left: 1.5rem;
        padding-right: 0rem;
        padding-top: 2rem;
    }

.banner-heading h1 {
    font-size: 36px;
    line-height: 44px;
    padding-left: 12px;
}
#demo {
    border-radius: 0 0 0 82px;
}
	.banner-heading p {
    font-size: 15px;
    line-height: 24px;
    margin: 1.5rem 0 1.5rem;
}
	.carousel-control-next, .carousel-control-prev {
    width: 3%;
    display: none;
}
	
/*Feeature Sec*/
section {
    padding: 60px 0;
}	
section.feature-sec h3 {
    font-size: 2rem;
    margin: 0 auto 5rem;
	width:100%;
}
.feature-img {
    width: 105px;
    height: 105px;
    margin: -4rem auto 0.8rem;
}
.feature-img img {
    width: 55px;
}
.feature-wrapper {
    margin-bottom: 2.6rem;
}
	
/*Service Sec*/
	
    section.service-sec {
        background: linear-gradient(1deg, rgba(255, 255, 255, 1) 0%, rgba(243, 249, 255, 1) 100%);
    }
.service-sec .theme-heading-sec {
    text-align: center;
}
.service-sec a.theme-btn{
    margin: 0rem auto 2.5rem;
}
.service-sec .text-right {
    text-align: center;
}
.service-course-wrapper {
    margin: 0.4rem 0;
}
	
/**/
	section.industry-sec {
    padding-bottom: 45px;
}
	section.industry-sec .theme-heading-sec {
		padding: 0rem 0rem 0 0rem;
		text-align: center;
	}
	.ind-carousel {
    padding: 0 1rem 0 1rem;
}
.ind-arc-wrap {
    margin: 0.4rem 0;
}
	
/*about-res*/
	
	.about-left-col {
		padding: 0 18px;
		margin-top: 3rem;
	}
	.about-list h6 {
    padding-left: 2.2rem;
}
.about-sec a.theme-btn {
    margin: 3rem auto 0.5rem;
    display: table;
}	
.about-list h6:before {
    left: 10px;
}
section.mission-sec .theme-heading-sec h2, section.mission-sec p {
    padding: 0 0.3rem;
}
section.mission-sec .theme-heading-sec {
    margin-bottom: 1.6rem;
}
section.vision-sec {
    padding-top: 0;
}
	
/**/	

.techno-sec {
    padding: 0px 0 70px;
}
.techno-sec .theme-heading-sec {
    width: 100%;
}
.techno-col {
    display: unset;
}
.techno-wrapper {
    margin: 5px;
    width: calc(100% / 2 - 15px);
    display: inline-block;
	margin-bottom: 12px;
}
.techno-wrapper .img-box img {
    max-height: 179px;
    border-radius: 8px;
}

/*footer*/

footer.footer-top {
    padding: 60px 0 115px;
}
ul.footer-nav {
    margin: 0 auto 2rem;
    display: table;
}
	
.footer-wrapper h4 {
    margin-bottom: 1rem;
    text-align: center;
}
.logo-wrap p {
    padding: 0 1rem;
}
footer .social-link {
    margin-bottom: 2rem;
}
    .footer-contact-wrapper p {
        text-align: center;
        margin-bottom: 7px;
    }
	.copyright-txt {
    text-align: center;
}
	p.dev-by {
    margin: 4px 0 0;
	text-align:center;
}
	
/*Inner Banner*/
	
.inner-bg {
    max-height: 250px;
    background-position: 76%;
    background-size: cover;
    padding: 1rem;
}
	
/*Career*/

section.career-sec {
    padding: 45px 0;
}
.career-form {
    padding: 2rem 1rem;
}
}
span.ins-war {
    color: red;
    font-size: 14px;
    font-weight: bold;
}
.form-control:focus {
    box-shadow: unset;
}
span.require-star {
    color: red;
}