 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&amp;family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&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&display=swap');

:root {
  scroll-behavior: smooth;
}


a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
 section {
    padding: 20px 0; 
}
.section-header a {  
    font-size: 15px;
}
.section-header h2 {
    font-size: 23px; 
}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  /* z-index: 9999; */
  z-index: 9;
  box-shadow: 0px 4px 39px 9px rgba(81, 69, 159, 0.09);
  background: #fff;
  
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  /*max-height: 25px; */
  max-height:42px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  /* padding: 14px 40px; */
  padding: 10px 40px;
  border-radius: 0px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  box-shadow: 0px 5px 6px rgb(0 0 0 / 20%);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

@media (max-width: 576px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    padding: 6px 19px;
	font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black) ;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

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

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100%);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: var(--color-black);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .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: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

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

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-black);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-black);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;    
  position: relative;
  padding: 180px 0 0px;
}

.hero-animated h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    font-family: var(--font-secondary);
    /* line-height: 35px; */
    line-height: 1.35;
}

.hero-animated h2 span {
  color: var(--color-primary);
}

.hero-animated p {
  color:  var(--color-black) ;
  margin: 0 0 30px 0;
  font-size: 15.5px;
  font-weight: 400;
  list-style: 1.55;
}

.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
  .hero-animated { 
    padding: 110px 0 0px;
	    background: #F8F8F8;
}
.carousel-item img{
	display:none; 
}
.carousel-inner { 
    padding-bottom: 60px;
}
a.btn-get-started:before { 
    width: 140px;
    height: 40px; 
}
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 0px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 24px;
  }

  .hero-animated p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  background: var(--color-black);
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  -webkit-animation: fadeInDownLite 1s both;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-static h2 span {
  color: var(--color-primary);
}

.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
  position:relative;
}
a.btn-get-started:before {
    content: "";
    width: 150px;
    height: 50px;
    background: #8BEAFF;
    position: absolute;
    z-index: -1;
    left: 10px;
}
.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
.carousel-indicators [data-bs-target] { 
   border-top: 0px solid transparent; 
    border-bottom: 0px solid transparent; 
    border-radius: 60px;
	background-color:#D9D9D9;
	width: 20px;
    height: 20px;
}
.carousel-indicators .active {
    background-color:#3046ff;
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Start solving your cloud skill gaps withincloud
--------------------------------------------------------------*/
.section-header a {
    color: var(--color-links);
    margin-bottom: 5px;
    display: block;
}
.skill-gaps h4 {
    /* font-size: 29px; */
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0px;
	transition: all ease-in-out 0.4s;
}
.skill-gaps p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.skills-gap-list li {
    width: 15.75%;
	position: relative;
}
.skills-gap-list li img {
    width: 100%;
    position: relative;
}
.skills-gap-list li:first-child:before {
    position: absolute;
    content: "";
    border-top: 11px solid transparent;
    border-bottom: 26px solid #d9d9d9;
    border-left: 41px solid transparent;
    border-right: 0px solid transparent;
    left: 0px;
    top: -49px;
    width: 20px;
    height: 50px;
}
.skills-gap-list li:last-child:before {
    position: absolute;
    content: "";
	border-top: 26px solid #d9d9d9;
    border-bottom: 26px solid transparent;
    border-left: 0px solid red;
    border-right: 41px solid transparent;
    right: 0px;
    bottom: -51px;
    width: 20px;
    height: 50px;
}


@media (max-width: 640px) {
 .skill-gaps h4 {
    font-size: 23px; 
}
.skills-gap-list {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
}
.skills-gap-list li {
    width: 30%; 
}
}
/*--------------------------------------------------------------
# Start solving your cloud skill gaps withincloud
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Customize and combine your content and skills within cloud
--------------------------------------------------------------*/
.manage-scale {
    background: radial-gradient(38.99% 54.56% at 50% 50%, #F2F9FF 0%, rgba(198, 224, 250, 0.468171) 35.47%, rgba(211, 228, 244, 0) 100%);
}
.manage-section {
    padding: 20px;
    box-shadow: 0px 4px 39px 9px rgba(81, 69, 159, 0.09);
	background: #fff;
}
.manage-heading h5 {
    font-size: 23px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 50px;
}
.manage-text h4 {
    font-size: 17px;
    color: var(--color-black);
	font-weight:600
}
.manage-text p {
    font-size: 14px;
    margin: 0px;
    color: var(--color-black);
}
.vertical-blue-line {
    position: relative;
}
.vertical-blue-line:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #3046ff;
    display: flex;
    align-items: center;
    left: 50%;
}
.get-demo {
    text-align: center;
    margin-top: 40px;
}
.manage-scale .btn-getstarted {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 0px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}

@media (max-width: 640px) {
.manage-text h4 {
    font-size: 16px; 
}
.manage-text p {
    font-size: 13px; 
}
}

/*--------------------------------------------------------------
# Customize and combine your content and skills within cloud
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# A Powerful and Innovative Feature Set
--------------------------------------------------------------*/
.powefull-innovative{
	background: var(--color-secondary);
	padding:20px;
	transition: box-shadow 0.5s ease-in-out;
	
}
.powefull-innovative:hover {
    box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
    transition: box-shadow 0.5s ease-in-out;
}
.powefull-innovative img {
    margin-bottom: 20px;
}
.powefull-innovative h4 {
    font-weight: 600;
    font-size: 17px;
    /* color: var(--color-black); */
    color: var(--color-secondary-dark);
    margin-bottom: 20px;
}
.powefull-innovative p.manage-inner-content {
    font-size: 14px;
    color: var(--color-black);
    min-height: 100px;
    max-height: 100px;
}
.powefull-innovative ul li {
    font-size: 14px;
    color: var(--color-black);
    line-height: 27px;
	display: flex;
}
.powefull-innovative ul li span {
    color: var(--color-links);
    margin-right: 10px;
    font-size: 17px;
}
/*--------------------------------------------------------------
# A Powerful and Innovative Feature Set
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Maximize value of cloud from withincloud
--------------------------------------------------------------*/
.maximize-section-bg{
	position:relative;  
}
.maximize-section-bg:before {
    content: "";
    background: var(--color-secondary);
    position: absolute;
    bottom: 60px;
    top: 160px;
    left: 0;
    right: 0;
    transform: skewY(-6deg);
	height: 500px;
    z-index: -1;
}
.maximize-cloud {
    background: var(--color-secondary-dark);
    padding:40px 50px;
    border-radius: 12px;
    color:  var(--color-white);
}
.maximize-cloud h4 {
    font-weight: 600;
}
.maximize-cloud p {
    margin: 0px;
    font-size: 14px;
}
button.book-btn {
    background: var(--color-primary);
    border-radius: 0px;
    color: var(--color-white);
}
 .btn-wcbutton, .btn-wcbutton:focus {
  text-align: center;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 10px 20px;
  border-radius: 0px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  box-shadow: 0px 5px 6px rgb(0 0 0 / 20%);
  display: block;
}

.btn-wcbutton:hover, .btn-wcbutton:focus {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}
.service-item{
text-align:center; 
}
.service-item h4 a {
    color: var(--color-secondary-dark);
    font-weight: 600;
    font-size: 18px;
}
.service-item p {
    font-size: 14px;
    color: var(--color-black);
    margin: 0px;
}

.enabling-certificate {
    margin-top: 50px;
    background: linear-gradient(94.97deg, #47D7AC -9.78%, #17257F 60.9%, #19294A 100%);
    padding: 50px 150px;
    border-radius: 12px;
}
.enabling-certificate 
 h4 {
    text-align: center;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}
.enabling-tabs {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.enabling-tabs:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    top: 50%;
}
.enabling-tabs:after {
    position: absolute;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffff;
    right: -4px;
    bottom: 19px;
}
ul.enabling-tabs li {
    z-index: 111;
    margin-right: 20px;
}
ul.enabling-tabs li button {
    background: #fff !important;
    color: var(--color-black);
    padding: 20px 21px;
    font-weight: 700;
    font-size: 14px;
}
ul.enabling-tabs li button.active {
    background: var(--color-yellow) !important;
    color: var(--color-black) !important;
}
span.troffy {
    position: absolute;
    right: -80px;
}
.tab-inner-content {
    margin: 40px 0 0 0;
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
}
.tab-inner-content h5 {
    font-weight: 700;
    font-size: 18px;
}
.tab-inner-content ul {
        margin: 20px 0 0 0;
}
.tab-inner-content ul li {
    font-size: 14px;
    line-height: 26px;
}

.enabling-outer-mobile {
    position: relative;
}
.enabling-outer-mobile:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 104%;
    background: #fff;
    top: -20px;
    left: 50%;
}
.enabling-outer-mobile:after {
    position: absolute;
    content: "";
    border-top: 10px solid #ffffff;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    right: 47.5%;
    bottom: -50px;
}
@media (max-width: 640px) {
 .maximize-cloud { 
    text-align: center;
}
 .maximize-cloud button.book-btn { 
    width: 40%;
    margin: 20px auto 0;
}
.maximize-section-bg:before {
    content: "";
    background: var(--color-white); 
    transform: skewY(0deg);
    height: 500px;
    z-index: -1;
}
.service-item {
    text-align: left;
}
.cluod-skilling .service-item {
    text-align: center;
} 
.tab-inner-content{
	    z-index: 1;
    position: relative;
}
 
.enabling-certificate{
	background: #192952;
        padding: 30px 0px 80px 0;
}
.enabling-certificate img {
    filter: grayscale(1);
	width: 30%;
}
 .btn-wcbutton, .btn-wcbutton:focus{
	 width:50%;
	 margin:20px auto 0; 
 }
 .mobile-troffy{
	  text-align: center;
    margin-top: 80px;
 }
 .mobile-troffy span{
    margin: 0px auto;
    width: 40%;
    text-align: center;
}
.mobile-troffy span img {
    width: auto;
    text-align: center;
    margin: auto;
	filter: inherit;
}
}

/*--------------------------------------------------------------
# Maximize value of cloud from withincloud
--------------------------------------------------------------*/
 

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
 

}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 40px 20px 20px;
  /* font-weight: 600; */
  font-weight: 400;
  border: 0;
  /* font-size: 18px; */
  font-size: 16px;
  color: var(--color-black);
  text-align: left;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 5px;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-primary);
}

.faq .accordion-body {
  padding: 0 20px 25px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}
 
/*--------------------------------------------------------------
# see-traning
--------------------------------------------------------------*/ 
section.see-traning {
    position: relative;
    background-size: cover;
    width: 100%;
    padding: 430px 0 60px 0;
}
section.see-traning:before {
    position: absolute;
    content: "";
    background-image: url(../../assets/img/see-traning-bg.png);
    width: 72%;
    height: 600px;
    top: 0px;
    left: 14%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
.see-traning-inner {
    background: var(--color-white);
    padding: 40px 50px;
    border-radius: 12px;
    color: var(--color-black);
	box-shadow: 0px 4px 39px 9px rgba(81, 69, 159, 0.09);
}
.see-traning-inner h4 {
    font-weight: 600;
}
.see-traning-inner p { 
    font-size: 14px;
}
/*--------------------------------------------------------------
# see-traning
--------------------------------------------------------------*/ 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content { 
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-black);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-black);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li { 
  display: flex;
  align-items: center;
}
 

.footer .footer-content .footer-links ul a {
  color: var(--color-black);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
      line-height: 28px;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-black);
}
 
.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}
.copyright {
    color: var(--color-black);
}

.footer .footer-legal {
    padding: 20px 0;
    border-top: 1px solid var(--color-black);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 640px){
	section.see-traning { 
    padding: 20px 0 60px 0;
}
section.see-traning:before { 
    background-image: inherit;
    width: 72%;
    height: 0px;
    top: 0px;
    left: 14%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
.see-traning-inner { 
    text-align: center;
}
.see-traning-inner  button.book-btn {
    background: var(--color-primary);
    border-radius: 0px;
    color: var(--color-white);
}
}

/* Ashish Code */
.font-merri {
  font-family: 'Merriweather', serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Modal css */
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
}

form.feedback-form .form-field {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba( var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.full-width {
  width: 100%;
}

.btn-submit {
  background: var(--color-secondary-dark);
}



.color-headings {
  color: var(--color-links);
}

.tab-inner-content h5 {
  color: var(--color-secondary-dark);
}

.nav-link:focus, .nav-link:hover {

  color: var(--color-secondary-dark); 
}

.carousel-control-prev {
  left: -140px;
}

.carousel-control-next {
  right: -140px;
}
