/**
* Template Name: Vesperr - v4.7.0
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url("https://use.typekit.net/ovt6ynt.css");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&family=Spectral:wght@200;300;400;500;600;700;800&display=swap");


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 22px 0;
  background: #fff;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

/*--------------------------------------------------------------
# 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 0 10px 30px;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  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: #3498db;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #4aa3df;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
}
.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: #3498db;
}
.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: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.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(9, 9, 9, 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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #3498db;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.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: #3498db;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  margin-top: 80px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}
#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}
#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}
.section-title h2::before, .section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #3498db;
  display: inline-block;
}
.section-title h2::before {
  margin: 0 15px 10px 0;
}
.section-title h2::after {
  margin: 0 0 10px 15px;
}
.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}
.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}
.clients img:hover {
  filter: none;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #3498db;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #3498db;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #3498db;
}
.about .content .btn-learn-more:hover {
  background: #3498db;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .content {
  padding: 0;
}
.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}
.counts .content p {
  margin-bottom: 0;
}
.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}
.counts .content .count-box i {
  display: inline-block;
  font-size: 36px;
  color: #3498db;
  line-height: 0;
}
.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}
.counts .content .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}
.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: #6f6f6f;
}
@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 70%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

@media (max-width : 420px){
  .counts .content {
    align-items: center;
    text-align: center;
  }
  .counts .content .count-box i{
    padding-left: 25vw;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  height: 200px;
  width: 400px;
  position: relative;
  align-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}
.services .icon-box:hover::before {
  background: #3498db;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #111;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #3498db;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}
.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}
.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.more-services .card-title a {
  color: #222222;
}
.more-services .card-text {
  color: #5e5e5e;
}
.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}
.more-services .read-more a:hover {
  text-decoration: underline;
}
.more-services .card:hover .card-body {
  background: #3498db;
}
.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}
.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.features .icon-box h3 a:hover {
  color: #3498db;
}
.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3498db;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #3498db;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a i {
  line-height: 0;
}
.team .member .social a:hover {
  color: #3498db;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}
.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}
.pricing .recommended {
  border-color: #3498db;
}
.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}
.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.faq .faq-item i {
  color: #8bc4ea;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}
.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Poppins", sans-serif;
}
.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
}
.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #888;
}
.contact .social-links {
  padding-bottom: 20px;
}
.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #3498db;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #3498db;
}
.contact .social-links a:hover {
  background: #3498db;
  color: #fff;
}
.contact .info {
  color: #444444;
}
.contact .info i {
  font-size: 32px;
  color: #3498db;
  float: left;
  line-height: 1;
}
.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #3498db;
}
.contact .php-email-form button[type=submit] {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #2383c4;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}
#footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #222222;
}
#footer .footer-links a {
  color: #222222;
  padding-left: 15px;
}
#footer .footer-links a:first-child {
  padding-left: 0;
}
#footer .footer-links a:hover {
  color: #3498db;
}


@media (max-width: 700px) {
  #hero .font-align h1{
    text-align: center;
  }

  #hero .font-align h2{
    text-align: center;
  }

  #partner #nrdc img{
   width: 300px; 
  }
}
@media (max-width: 400px) {
  

  #partner #nrdc img{
   width: 200px; 
  }
}

/* Progress bar setup */
.header_fix {
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  background-color: #ffffff;
}


/* The progress container (grey background) */
.progress-container {
  margin-top: 91px;
  width: 100%;
  height: 8px;
  background: #ffffff;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: #3498db;
  width: 0%;
}




/* FAQ Section  */
.faq-section {
  padding-top: 20px;
  padding-left : 22px;
  padding-right: 22px;
}
.faq-header{
  font-size: 36px;
  padding: 24px;
  text-align: center;
}
  details {
    width: 75%;
    min-height: 5px;
    max-width: 700px;
    padding: 20px 35px 20px 20px;
    margin: 0 auto;
    position: relative;
    font-size: 22px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 15px;
    box-sizing: border-box;
    transition: all .3s;
  }
  
  details + details {
    margin-top: 20px;
  }
  
  details[open] {
    min-height: 50px;
    background-color: #2383c4;
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
  }
  
  details p {
    padding-top: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
  }
  
  summary {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
  }
  
  summary:focus {
    outline: none;
    
  }
  
  summary:focus::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 5px rgb(255, 255, 255);
  }
  
  summary::-webkit-details-marker {
    display: none
  }
  
  .control-icon {
    fill: rebeccapurple;
    transition: .3s ease;
    pointer-events: none;
  }
  
  .control-icon-close {
    display: none;
  }
  
  details[open] .control-icon-close {
    display: initial;
    transition: .3s ease;
  }
  
  details[open] .control-icon-expand {
    display: none;
  }

  /* faq search bar  */


 .faq-search {
  display: flex;
  justify-content: center;
  padding-left : 15%;
  padding-top: 150px;
}
.faq-search input[type=search] {
  border:solid 3px #2383c4;
  box-sizing:border-box;
  font-size:1.5em;
  height:1.5em;
  margin-left:-15vw;
  outline:solid #fc0 0;
  padding:.5em;
  /* transition:all 2s ease-in; */
  width:50vw;
  z-index:1;
}
.faq-search input[type=search]:focus {
  border:solid 3px #09f;      
  /* outline:solid #fc0 2000px; */
}


/* .caution-text{

} */





/* Event section  */
.card_main{
  margin-top: 200px;
}

.grid-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  grid-gap: 10px;
}

.grid-item{
  padding: 20px;
  text-align: center;
}

.card{
  display: flex;
}
.card-link{
  font-size: 1rem;
}
.card-link {
  letter-spacing: 0.0178571em;
  font-weight: 500;
}
.card-link:hover {
  text-decoration: none;
}
.footer {
  margin-top: auto;
}
.card {
  position: relative;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.8rem;
}
.--card-footer,
.card-img {
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.--card-smooth-caption,
.card-img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-footer {
  padding: 1.5rem;
  background-color: transparent;
  border-top: 0;
}
.--card-cup,
.card-img {
  border-top-right-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.5rem;
}
.card-title {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-family: Roboto;
  font-weight: 500 !important;
  font-style: normal;
}
.badge-warning2,
.text-muted,
a.card-link.text-primary.read-more {
  font-family: Roboto, sans-serif !important;
}
.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}
.card-subtitle {
  font-weight: 400;
  margin-top: 0.2rem;
}
.card-link + .card-link {
  margin-left: 1.5rem;
}
.card-footer:last-child {
  border-radius: 0 0 0.8rem 0.8rem;
}
.card-img-overlay {
  top: 0;
  padding: 1.25rem;
  border-radius: 0.8rem;
}
.card-img {
  flex-shrink: 0;
  width: 100%;
}
.--card-footer {
  display: block;
  margin: 0;
  font-size: 0.89rem;
  text-transform: uppercase;
  line-height: 1.5;
  transition: 0.2s ease-in-out;
  padding: 0;
}
.card-columns {
  padding-top: 15px;
}
.card-columns .card {
  margin-bottom: 12px !important;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
}
@media (min-width: 992px) {
  .card-columns {
    column-count: 2;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
}
@media (min-width: 1200px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
}
.--card-cup {
  height: 130px;
  width: 100%;
}
.--card-smooth-caption {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.98))
    rgba(0, 0, 0, 0);
  padding: 2rem 1.5rem 1.5rem;
}

.card-avatar {
  border-radius: 50%;
}
.avatar-border {
  border: 5px solid #fff;
}
.avatar-border.border-primary {
  border-color: #76135e;
}
.avatar-border.border-secondary {
  border-color: #7e6776;
}
.avatar-border.border-warning {
  border-color: #fb8b23;
}
.avatar-border.border-info {
  border-color: #0f4d5c;
}
.avatar-border.border-light {
  border-color: #f2f2f2;
}
.avatar-border.border-dark {
  border-color: #241e23;
}
.card.bg-secondary.two,
svg.card-avatar {
  box-shadow: -0.2em -0.125em 0.125em rgb(0 0 0 / 25%),
    0 0 0 0.04em rgb(0 0 0 / 30%), 0.02em 0.02em 0.02em rgb(0 0 0 / 40%) inset,
    -0.05em -0.05em 0.02em rgb(255 255 255 / 80%) inset !important;
}
p.card-text,
p.secondary {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
  line-height: 25px;
  text-overflow: clip;
  font-family: source sans pro;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-muted,
i.pr-1 {
  font-size: 13px !important;
  font-weight: 400;
}
.card.border-0 {
  box-shadow: 0 1px 3px rgb(0 0 0/12%), 0 1px 2px rgb(0 0 0/24%) !important;
  background: hsl(220deg 14% 97%) !important;
  text-align: left;
  background-color: #fff !important;
  position: relative;
  margin-top: 12px !important;
  border: 1px solid #eee !important;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: #000 !important;
}
a.card-link.text-primary.read-more {
  border-radius: 5px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 20%),
    inset 1px 1px 1px rgb(255 255 255 / 60%),
    inset -1px -1px 1px rgb(12 13 18 / 6%), -1px -1px 1px rgb(255 255 255 / 60%),
    -1px -1px 4px rgb(255 255 255 / 60%), -2px -2px 8px rgb(255 255 255 / 60%),
    1px 1px 1px rgb(12 13 18 / 6%), 1px 1px 4px rgb(12 13 18 / 6%),
    2px 2px 8px rgb(12 13 18 / 6%) !important;
  background-color: hsl(228deg 14% 93%);
  text-shadow: 0.25px 0.25px 0.25px hsl(233deg 5% 26% / 85%),
    0.35px 0.35px 0.35px hsl(233deg 5% 26% / 85%), 0 -1.1px 0 rgb(12 13 18 / 8%),
    0 1.2px 0 #fff !important;
  color: hsl(233deg 5% 26%) !important;
  font-weight: 300 !important;
  border: none !important;
  padding: 6px 12px;
  text-transform: uppercase;
  font-size: 11px;
}
.text-muted {
  opacity: 0.75 !important;
  text-transform: uppercase !important;
  color: hsl(220deg 3% 62%) !important;
  font-style: normal;
  text-shadow: 0.25pt 0.25pt 0.25pt #e9ecef;
  letter-spacing: 0.125em !important;
  line-height: 1rem;
}
.badge-warning2,
.h2.mb-2 {
  text-transform: uppercase;
}
.h2.mb-2 {
  font-size: 21px;
  font-weight: 900;
  font-family: "Roboto";
  letter-spacing: -0.125px;
  text-shadow: 0.25pt 0.3pt 1pt #343a40, 0.75pt 1.3pt 2pt #343a40;
  text-overflow: clip;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.badge-warning2 {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 8%,
    rgba(255, 255, 255, 0.03) 30%,
    rgba(255, 255, 255, 0.03) 60%,
    rgba(255, 255, 255, 0) 68%
  ) !important;
  background-color: rgba(230, 230, 230, 0.45) !important;
  border-radius: 6px;
  border-color: #ffffff99 #ffffff60 #0001 #ffffff50 !important;
  backdrop-filter: blur(11px) saturate(110%) !important;
  box-shadow: 0 1px 5px 1px rgb(41 41 41 / 45%),
    0 0.33em 0.725em -0.455em rgb(0 0 0 / 40%),
    inset 0 0.0625em 0 rgb(255 255 255 / 50%),
    inset 0 -0.125em 0.0625em rgb(0 0 0 / 28%) !important;
  border: 2px outset rgba(255, 255, 255, 0.3) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1666666667em !important;
  line-height: 18px;
  text-shadow: 0.25px 0.25px 0.85px #f8f9fa,
    0.125px 0.125px 1px rgb(83 97 110 / 83%);
  color: #22262a !important;
}
span.badge.badge-light {
  padding: 3.5px 5.5px;
  font-size: 12px;
  background-image: linear-gradient(#c1353e, #c22b3a, #e42d49, #e32c3e);
  box-shadow: 0 0 0.25px #e42d49,
    -0.5px -0.75px 1px rgb(241 249 255 / 15%) inset,
    -0.75px -1.5px 1.5px rgb(44 6 13 / 5%) inset, 0 -0.5px 0.75px 0.25px #c1353e,
    0 0.5px 0.75px 0.25px #e32c3e, 0 -0.75px 2px -0.75px #c1353e,
    0 0.75px 2px -0.75px #e32c3e, -0.5px -2px 3px 0.75px rgb(44 6 13 / 85%),
    -1.75px -2.5px 2.5px -0.25px rgb(150 90 64 / 35%),
    -0.75px -0.75px 0.625px 0.25px rgb(150 90 64 / 50%),
    -0.85px -0.35px 0.85px 0 rgb(201 149 135 / 55%),
    -1.25px -1.25px 1.65px 0 rgb(201 149 135 / 25%);
  border-radius: 4px;
  font-family: Roboto;
  color: #fff;
}
svg.card-avatar {
  background-color: #eee;
}
.card.bg-secondary.two {
  background-color: #eee !important;
}
.card-img-overlay.--card-img-overlay-purple {
  background-color: rgba(45, 26, 80, 0.7);
  background-image: url(http://ocdn.eu/images/pulscms/NTg7MDA_/68345f6b55ca22a993000441064192b9.jpg);
  background-image: url(https://assets.codepen.io/4927073/hero10.jpg);
  background-size: cover;
  background-position: 0 0;
  height: 125px;
  width: 100%;
  position: relative;
  padding: 2rem !important;
  border-radius: 12px !important;
}


.card-avatar.avatar-border.mt-n5,
.card-avatar.mr-44 {
  border: 1.5px solid #15181a;
  background: linear-gradient(#3c4349, #252a2d);
  position: relative;
  background-image: url(https://assets.codepen.io/4927073/icon-105_edited.jpg);
  background-size: 130%;
  background-position: 20% 10%;
}
.card-avatar.mr-44 {
  box-shadow: 0 -0.75px 0.5px 0 #212428 inset, 0 0.5px 0.5px #535d65 inset,
    0 0.5px 0.5px -0.25px rgb(5 6 6 / 50%),
    0 1.75px 1px -0.25px rgb(26 29 31 / 25%);
  padding: 40px !important;
  margin-right: 15px;
}
.card-avatar.mr-44.two {
  margin: auto;
  width: 40px;
  height: 40px;
  padding: 36px !important;
}
.tnlink3 {
  display: inline-flex;
  height: max-content;
  width: max-content;
  justify-content: center;
  align-items: center;
  color: #0007;
  font-size: 1rem;
  background: #fff;
  border: 0;
}
.footerright {
  display: inline-flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
  justify-content: right;
}
.card.border-0.three {
  box-shadow: rgb(0 0 0 / 23%) 0 0.0625em 0.0625em,
    rgb(0 0 0 / 20%) 0 0.25em 0.25em,
    rgb(0 0 0 / 18%) 0 0.45em 1.105em -0.0625em !important;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.125rem;
    orphans: 4;
    widows: 4;
  }
  .container {
    max-width: 98%;
  }
}
@media (min-width: 796px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.125rem;
    orphans: 4;
    widows: 4;
  }
}
.card-avatar.avatar-border.mt-n5 {
  box-shadow: 0 -0.75px 0.5px 0 #212428 inset, 0 0.5px 0.5px #535d65 inset,
    0 0.5px 0.5px -0.25px rgb(5 6 6 / 50%),
    0 1.75px 1px -0.25px rgb(26 29 31 / 25%);
  padding: 36px !important;
  width: 36px;
  height: 36px;
  margin: auto;
}
.mt-n5,
.my-n5 {
  margin-top: -4rem !important;
}
.card-footer.--card-footer.two {
  border-radius: 2px !important;
  margin: 0 auto auto;
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  padding-top: 0;
  column-gap: 14px;
}
a.card-link.text-primary.read-more.two {
  width: auto;
  margin-top: -10px;
  padding: 4px 20px;
  font-size: 10px;
}
.--card-cup.bg-primary {
  height: 85px;
  width: 100%;
  background-image: url(https://i.pinimg.com/originals/9d/f4/89/9df48939ab918b460cd289d78be3fdde.jpg) !important;
  background-size: cover;
  background-position: 50% 50%;
}
.card.bg-primary.text-white.text-center.p-4.border-0 {
  background-image: url(https://blue.kumparan.com/image/upload/v1634025439/0181372….jpg) !important;
  background-image: url(https://i.pinimg.com/originals/d7/16/3f/d7163f9cdfe701469b1d3f840b020d0b.jpg) !important;
  background-size: cover !important;
  background-position: 50% 0% !important;
}
.card.bg-primary.text-white.text-center.p-4.border-0.two {
  background-image: url(https://assets.codepen.io/4927073/8bc5f7c16cc6f6bc75ef79cb2130a855.jpg) !important;
  background-image: url(https://images.saatchiart.com/saatchi/1770883/art/8503701/7567820-ZHCPKESB-7.jpg) !important;
  background-position: 50% 50% !important;
  background-size: 50% !important;
}
.card.bg-primary.text-white.text-center.p-4.border-0.three {
  background-image: url(https://assets.codepen.io/4927073/8bc5f7c16cc6f6bc75ef79cb2130a855.jpg) !important;
}
blockquote.blockquote.mb-0 {
  color: #fff;
  font-size: 13px;
  font-family: Roboto;
  font-weight: 300;
  text-align: left;
  line-height: 1.25;
  padding: 8px 9px !important;
  text-shadow: 0 0.025em #000;
  box-shadow: 0 1px 24px -1px rgb(0 0 0 / 20%),
    inset 0 0.0625em 0 hsl(0deg 0% 100%);
  border-radius: 6px;
  border: 1.25px outset rgba(255, 255, 255, 0.3);
  margin: auto;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: linear-gradient(
    145deg,
    rgb(255 255 255 / 24%) 0,
    rgb(255 255 255 / 8%) 100%
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 94.1%, 0) 20%,
    hsla(0, 0%, 94.1%, 0.12)
  );
  box-shadow: inset 7px 7px 0 -6px hsl(0deg 0% 94% / 12%),
    inset -1px 1px 4px -1px hsl(0deg 0% 94% / 60%);
  backdrop-filter: blur(8px);
  font-weight: 400;
}
.myicoo {
  width: 25px;
  height: auto;
  display: flex;
  position: relative;
  content: url(https://assets.codepen.io/4927073/heartit.png);
  filter: drop-shadow(2px 1px 1px #000);
  transform: scale(1.25);
}
.card-img-overlay.--card-img-overlay-purple.three {
  height: 280px !important;
  background-image: url(https://i.pinimg.com/originals/9f/e3/05/9fe30526950c8405ecb5592b82b71fc5.jpg);
  background-position: 50% 50%;
}

.card-img-overlay.--card-img-overlay-purple.four {
  height: 300px !important;
  background-image: url(https://i.pinimg.com/originals/32/0c/95/320c950d7cad42875dbaafa9f15436e6.jpg);
  background-position: 50% 100%;
}

.h3 {
  box-shadow: 10px 0 15px 10px hsl(210deg 100% 2% / 15%);
  backdrop-filter: blur(20px) contrast(0.75) saturate(2) brightness(0.5)
    opacity(0.5);
  border-radius: 12px !important;
  width: 75%;
  display: inline-flex;
  padding: 4px 8px;
  font-size: 28px;
  text-transform: capitalize;
  text-transform: capitalize;
  letter-spacing: 0px;
  font-family: "Manrope" !important;
  font-weight: 800 !important;
}

i.pr-1 {
  padding: 0 !important;
}
a.dateit,
a.locit {
  padding-right: 2px;
  font-family: Roboto;
  line-height: normal;
  color: #a3a9ab;
  font-size: 12.5px;
  color: #0007;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.card-img-overlay.three {
  height: 250px;
  width: 100%;
  display: block;
  position: relative;
  object-fit:cover;
  /* border-radius: 12px 12px 2px 2px; */
}

.card-body.two {
  padding-bottom: 2px !important;
}

.card-body.three {
  background-image: url(https://pbs.twimg.com/media/FcREMbBakAAnAi4?format=jpg&name=large);
  background-size: cover;
  height: 340px;
  background-position: 50% 35%;
  border-radius: 12px 12px 0 0;
  border-radius: 12px;
}

.card-body.three .footer {
  color: red !important;
  margin-top: 150px;
}

small.text-muted {
  opacity: 1 !important;
  color: #e7e9f5 !important;
  padding: 5pt 10pt;
  box-shadow: 1px 1px 2px 1px #231f20;
  font-weight: 300;
  border-radius: 7px 7px 0px 0px !important;
  border-top: 1px solid #3b3d3f;
  letter-spacing: 0.1666666667em !important;
  font-family: "antique-olive" !important;
  background: hsl(232deg 6% 17%);
  z-index: -1;
  position: absolute;
  top: -30px;
  left: 6px;
  line-height: 1;
}

.card-avatar.avatar-border {
  box-shadow: 0 -0.75px 0.5px 0 #212428 inset, 0 0.5px 0.5px #535d65 inset,
    0 0.5px 0.5px -0.25px rgb(5 6 6 / 50%),
    0 1.75px 1px -0.25px rgb(26 29 31 / 25%);
  padding: 40px !important;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 1.5px solid #15181a;
  background: linear-gradient(#3c4349, #252a2d);
  position: relative;
  background-image: url(https://assets.codepen.io/4927073/icon-105_edited.jpg);
  background-size: 130%;
  background-position: 20% 10%;
}

h2.indent {
  margin-top: 20px;
  font-size: 20px;
  margin-right: 8px;
  float: left;
  text-align: right;
  font-family: "Roboto";
  font-weight: 900;
  line-height: 0.86;
  color: #b06;
  width: 50%;
  margin-left: -16px;
  text-transform: uppercase;
}

h2.indent.red {
  color: hsl(6deg 100% 40%);
}

p.indent {
  font-family: "freight-display-pro" !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.28;
  text-align: -webkit-left;
  margin-top: 18px;
}

.container-card.incard {
  max-width: 100% !important;
  padding-right: 0px;
  padding-left: 0px;
}

h5.card-title.text-white {
  line-height: 1.25;
  margin-bottom: 5px;
}

.card.border-0.wtab {
  margin-top: 30px !important;
}

.card-body.proavatar {
  padding-bottom: 20px !important;
  padding-top: 20px !important;
}

.proavatar .card-title {
  font-size: 18px !important;
  line-height: 1.5;
  margin-bottom: 0px !important;
  font-weight: 900 !important;
}

.card.bg-primary.text-white.text-center.p-4.border-0.four {
  height: 250px !important;
  background-image: url(https://assets.codepen.io/4927073/micard.png) !important;
  background-image: none !important;
  content: url(https://assets.codepen.io/4927073/micard3.png);
  width: 100%;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 20px !important;
}

span.badge {
  color: #f9fafb !important;
  box-shadow: 1px 1px 2px 1px #231f20;
  font-weight: 400;
  border-radius: 5px !important;
  letter-spacing: 0.135em !important;
  font-family: "antique-olive" !important;
  padding: 4px 5px !important;
  box-shadow: 0 0 0.25px hsl(208deg 7% 46%),
    -0.5px -0.75px 1px 0.25px hsl(206deg 100% 97% / 30%) inset,
    -0.75px -1.5px 1.5px 0.5px hsl(349deg 5% 10% / 10%) inset,
    0 -0.5px 0.75px 0.25px hsl(210deg 17% 50% / 15%),
    0 0.5px 0.75px 0.25px hsl(210deg 17% 50% / 15%),
    0 -0.75px 2px -0.75px hsl(210deg 16% 50% / 15%),
    0 0.75px 2px -0.75px hsl(0deg 0% 4% / 25%),
    -0.5px -2px 3px 0.75px hsl(349deg 4% 10% / 10%),
    -1.75px -2.5px 2.5px -0.25px hsl(0deg 0% 42% / 7%),
    -0.75px -0.75px 0.625px 0.25px hsl(18deg 40% 2% / 10%),
    -0.85px -0.35px 0.85px 0 hsl(13deg 38% 4% / 12%),
    -1.25px -1.25px 1.65px 0 hsl(13deg 38% 4% / 5%);
}

.badge-info {
  background-color: #fb7ea8;
  background-image: linear-gradient(
    hsl(342deg 84% 69%),
    hsl(340deg 81% 67%),
    hsl(337deg 94% 75%),
    hsl(340deg 94% 74%)
  );

  background-image: linear-gradient(90deg, #ea4c89, #c52362);
  color: #333;
  box-shadow: 0 0 0.25px #fb83b1,
    -0.5px -0.75px 1px hsl(206deg 100% 97% / 15%) inset,
    -0.75px -1.5px 1.5px hsl(349deg 76% 10% / 5%) inset,
    0 -0.5px 0.75px 0.25px #f26e95, 0 0.5px 0.75px 0.25px #fb7ea8,
    0 -0.75px 2px -0.75px #f26e95, 0 0.75px 2px -0.75px #fb7ea8,
    -0.5px -2px 3px 0.75px hsl(0deg 0% 0% / 85%),
    -1.75px -2.5px 2.5px -0.25px hsl(3deg 57% 63% / 35%),
    -0.75px -0.75px 0.625px 0.25px hsl(3deg 57% 63% / 50%),
    -0.85px -0.35px 0.85px 0 hsl(358deg 55% 39% / 55%),
    -1.25px -1.25px 1.65px 0 hsl(358deg 55% 39% / 25%) !important;
}

.badge-warning {
  color: #dee2e6 !important;
  background-color: #3e8ef1;
  background-image: linear-gradient(
    hsl(218deg 66% 53%),
    hsl(216deg 73% 51%),
    hsl(213deg 86% 59%),
    hsl(216deg 86% 58%)
  );

  box-shadow: 0 0 0.25px #3d8df0,
    -0.5px -0.75px 1px hsl(206deg 100% 97% / 15%) inset,
    -0.75px -1.5px 1.5px hsl(349deg 76% 10% / 5%) inset,
    0 -0.5px 0.75px 0.25px #3872d6, 0 0.5px 0.75px 0.25px #3881f0,
    0 -0.75px 2px -0.75px #3872d6, 0 0.75px 2px -0.75px #3881f0,
    -0.5px -2px 3px 0.75px hsl(211deg 85% 10% / 85%),
    -1.75px -2.5px 2.5px -0.25px hsl(240deg 49% 47% / 35%),
    -0.75px -0.75px 0.625px 0.25px hsl(240deg 49% 47% / 50%),
    -0.85px -0.35px 0.85px 0 hsl(235deg 40% 71% / 55%),
    -1.25px -1.25px 1.65px 0 hsl(235deg 40% 71% / 25%) !important;
}

.badge-info2 {
  background-color: #ff4935;
}

.badge-warning3 {
  background-image: linear-gradient(
    hsl(40deg 80% 60%),
    hsl(38deg 87% 58%),
    hsl(35deg 100% 66%),
    hsl(38deg 100% 65%)
  ) !important;
  box-shadow: 0 0 0.25px hsl(35deg 100% 66%),
    -0.5px -0.75px 1px hsl(206deg 100% 97% / 15%) inset,
    -0.75px -1.5px 1.5px hsl(349deg 76% 10% / 5%) inset,
    0 -0.5px 0.75px 0.25px hsl(40deg 80% 60%),
    0 0.5px 0.75px 0.25px hsl(38deg 100% 65%),
    0 -0.75px 2px -0.75px hsl(40deg 80% 60%),
    0 0.75px 2px -0.75px hsl(38deg 100% 65%),
    -0.5px -2px 3px 0.75px hsl(33deg 99% 10% / 85%),
    -1.75px -2.5px 2.5px -0.25px hsl(62deg 63% 54% / 35%),
    -0.75px -0.75px 0.625px 0.25px hsl(62deg 63% 54% / 50%),
    -0.85px -0.35px 0.85px 0 hsl(57deg 61% 89% / 55%),
    -1.25px -1.25px 1.65px 0 hsl(57deg 61% 89% / 25%) !important;
}

.badge-green {
      box-shadow: 0 0 0.25px hsl(77deg 88% 68%), -0.5px -0.75px 1px hsl(206deg 100% 97% / 15%) inset, -0.75px -1.5px 1.5px hsl(75deg 87% 10% / 5%) inset, 0 -0.5px 0.75px 0.25px hsl(82deg 68% 62%), 0 0.5px 0.75px 0.25px hsl(80deg 88% 67%), 0 -0.75px 2px -0.75px hsl(82deg 68% 62%), 0 0.75px 2px -0.75px hsl(80deg 88% 67%), -0.5px -2px 3px 0.75px hsl(75deg 87% 10% / 85%), -1.75px -2.5px 2.5px -0.25px hsl(104deg 51% 56% / 35%), -0.75px -0.75px 0.625px 0.25px hsl(104deg 51% 56% / 50%), -0.85px -0.35px 0.85px 0 hsl(99deg 49% 80% / 55%), -1.25px -1.25px 1.65px 0 hsl(99deg 49% 80% / 25%) !important;
    background-image: linear-gradient( hsl(82deg 68% 62%),hsl(80deg 75% 60%),hsl(77deg 88% 68%),hsl(80deg 88% 67%));
    text-shadow: 0.5px 0.5px 0.75px hsl(0deg 0% 0% / 75%);
    border-top: 1px solid transparent;
}

.badge-lightblue {
  background-image: linear-gradient( hsl(207deg 14% 71%),hsl(205deg 21% 69%),hsl(202deg 34% 77%),hsl(205deg 34% 76%)) !important;
    box-shadow: 0 0 0.25px hsl(202deg 34% 77%), -0.5px -0.75px 1px hsl(206deg 100% 97% / 15%) inset, -0.75px -1.5px 1.5px hsl(200deg 33% 10% / 5%) inset, 0 -0.5px 0.75px 0.25px hsl(207deg 14% 71%), 0 0.5px 0.75px 0.25px hsl(205deg 34% 76%), 0 -0.75px 2px -0.75px hsl(207deg 14% 71%), 0 0.75px 2px -0.75px hsl(205deg 34% 76%), -0.5px -2px 3px 0.75px hsl(200deg 33% 10% / 85%), -1.75px -2.5px 2.5px -0.25px hsl(0deg 0% 65% / 35%), -0.75px -0.75px 0.625px 0.25px hsl(0deg 0% 65% / 50%), -0.85px -0.35px 0.85px 0 hsl(0deg 0% 89% / 55%), -1.25px -1.25px 1.65px 0 hsl(0deg 0% 89% / 25%) !important;
}

/* Clients carousal section */

/* ________________________________ */

.carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #f3f9fd;
}

.logo-container {
  display: flex;
  height: 100%;
  animation: slide 30s infinite;
  animation-direction: alternate;
}

.logo-container img { 
  width: auto;
  height: 150px;
  margin: 100px 60px;
  padding-top: 30px;
  transition: transform 1s ease, opacity 0.5s ease;
}

.logo-container img.active {
  transform: scale(1.2);
  opacity: 1;
} 

@keyframes slide {
  100% {
    transform: translateX(-5300px);
  }
}


/* Event gallery section   */


.gal_container {
  margin: 0 auto;
  width: 90%;
}

.main_container {
  background-color: rgba(182, 182, 250, 0.361);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_view {
  width: 70%;
  height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main_view img {
  max-width: 95%;
  max-height: 95%;
  object-fit: fill;
}

.side_view {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.side_view img {
  width: 9rem;
  height: 7rem;
  object-fit: contain;
  cursor: pointer;
  margin: 0.5rem;
}

/* Navigation button styles */
.prev,
.next {
  position: relative;
  /* transform: translateY(-50%); */
  z-index: 1;
  width: 2rem;
  height: 2rem;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.prev:hover,
.next:hover {
  opacity: 0.8;
}

.prev i,
.next i {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.prev {
  left: -2rem;
}

.next {
  right: -2rem;
}

#nav_sign_left {
  position: relative;
  left: 25%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#nav_sign_right {
  position: relative;
  left: 45%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.custom-overview {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.workshop-container {
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: space-evenly;
}

.workshop-container .atls-sec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.indiv-atl-sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.indiv-sl-num {
  font-size: 4rem;
  margin-right: 40px;
}

.atls-sec .indiv-atls,.ecell-sec .indiv-atls {
  display: flex;
  flex-direction: column;
  background-color: #474997;
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  width: 30vw;
  transition: all 0.2s ease;
}

.indiv-atls:hover {
  -webkit-box-shadow: -11px 6px 30px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -11px 6px 30px -16px rgba(0, 0, 0, 0.75);
  box-shadow: -11px 6px 30px -16px rgba(0, 0, 0, 0.75);
}

.indiv-atls p,
.atl-data-header {
  color: white;
  margin: 0;
  margin-left: 20px;
}

.atls-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}

.atls-data img {
  width: 26px;
  height: 26px;
}

.glimpses-image-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.glimpses-image-container img{
  width: 400px;
  height: 200px;
  object-fit:cover ;
  margin: 1vh 1vw;
}

@media screen and (max-width: 800px) {
  .atls-sec{
    align-items: center !important;
  }
  .workshop-container{
    flex-direction: column;
    justify-content: center;
  } 
  .indiv-atls{
    width: 70vw !important;
  }
}


.program_img_logo{
  width: 20vw !important;
  height: auto;
}