body {
  font-family: 'Noto Sans', sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #67b0d1;
}

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans', sans-serif;
}

#main {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  background: #67b0d1;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #86c0da;
  color: #fff;
}

.back-to-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 {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 14px 0;
  background: #039;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgb(0, 22, 66);
  padding: 12px;
  border-bottom: 2px solid #000;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# 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: 4px 5px;
  margin-left: 10px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  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 {
  background: rgba(255, 255, 255, 1);
  color: #039;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  color: #2f4d5a;
}

.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: #2f4d5a;
}

.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: #00144f;
  border: 2px solid #00144f;
  border-radius: 10px;
  font-size: 38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(43, 111, 142, 0.9);
  transition: 0.3s;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #2f4d5a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #67b0d1;
}

.navbar-mobile .getstarted {
  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: #67b0d1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  transition: all 0.5s ease-in-out;
}

.card-body {
  box-shadow: 0 0 15px #000;
  border-radius: 20px;
}

#cards {
  background: linear-gradient(#ffffff, #f1f1f163), url("../img/spkbg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

}

#cards .card {
  border-radius: 20px;
  box-shadow: 0 0 45px #000;
  min-height: 100%;
}

#cards .heading-border {
  position: absolute;
  width: 100%;
  top: 60%;
}

#cards .card .user-picture img {
  position: absolute;
  top: -50%;
  right: 5%;
  background: #ccc !important;
  padding: 5px;
}

#cards .card .user-content .user-name {
  margin-top: 38px;
  font-size: 16px;
  font-weight: 600;
}

#cards .card .user-content p {
  font-size: 14px;
}

#cards1 {
  /* background: linear-gradient(#ffffff, #f1f1f163), url("../img/futuristic-pattern.jpg"); */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

}

#cards1 .card {
  border-radius: 20px;
  box-shadow: 0 0 45px #000;
  min-height: 100%;
}

#cards1 .heading-border {
  position: absolute;
  width: 100%;
  top: 60%;
}

#cards1 .card .user-picture img {
  position: absolute;
  background: #ccc !important;
  padding: 5px;
}

#cards1 .card .user-content .user-name {
  font-size: 16px;
  font-weight: 600;
}

#cards1 .card .user-content p {
  font-size: 14px;
}


#hero {
  width: 100%;
  /* background: url("../img/about-bg.jpg"); */
  background-size: cover;
  position: relative;
  /* margin-bottom: -90px; */
}

#hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: #f7f7f725; */
  z-index: 9;
}

#hero .hero-container {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 11;
}

#hero .img {
  width: 100%;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  padding: 10px;
  font-weight: 700;
  line-height: 56px;
  color: #00144f;
  text-shadow: -1px 0 2px #fff;
}

#hero h2 span {
  padding: 20px;
}

#hero h1 span {
  padding: 10px;
}

#hero h2 {
  color: #2b3379;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 26px;
  font-weight: 700;
  text-shadow: -1px 0 2px #fff;
}

#hero h4 {
  color: #00144f;
  font-size: 24px;
  margin-top: 5px;
  font-weight: 700;
  text-shadow: -1px 0 2px #fff;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #c63000;
  color: #00144f;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero img {
    width: 90%;
    padding: 10px;
  }
}

@media (max-width: 658px) {
  #hero h1 {
    font-size: 16px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 958px) {
  #hero h1 {
    font-size: 20px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


.highlights{
    background-color: #00144f;
    padding: 25px;
}
.highlights h4{
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 0;
    margin-bottom: 0;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: -1;
  }


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {

  overflow: hidden;
}

.section-bg {
  background-color: #f4f9fc;
}
.section-bg1 {
    background-color: #ffffff;
  }

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #00144f;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -5;
}


.section-title1 {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title1 h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    color: #fff;
    z-index: 2;
  }
  
  /* .section-title1 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 122px;
    height: 66px;
    background: url(../img/section-title-bg.png) no-repeat;
    z-index: -5;
  } */
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .container {
  position: relative;
  z-index: 10;
  margin-top: 4%;
}

.about .about-img img{
  width: 100%;
  /* padding: 10px;
  border: 3px solid #000; */
}




.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #2f4d5a;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 20px;
}

.about .content .about-btn {
  display: inline-block;
  background: #67b0d1;
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
}

.about .content .about-btn i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
}

.about .content .about-btn:hover {
  background: #7bbad7;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #67b0d1;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  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: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #00144f;
  top: 0;
  border-radius: 0px;
}

.bbb {
  width: 80px;
  height: 160px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #00144f;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 500;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #67b0d1;
  float: left;
  line-height: 0;
 
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #00144f;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #00144f;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#6ba5c029, #7585b582), url("../img/data.webp") fixed center center;
  background-size: cover;
  padding: 60px 0;
}



.cta h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Noto Sans', sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-btn {
  font-family: 'Noto Sans', sans-serif;
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 20px;
  margin: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  background-color: rgb(43, 51, 121);
  border: 4px solid #c63000;
  color: #fff;
}

.cta-btn:hover {
  border-color: #fff;
  background-color: #c63000;
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/* Registration closes in */


.cta1 {
  background: linear-gradient(#000000, #00000082), url("../img/AI_story4.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}



.cta1 h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.cta1 p {
  color: #fff;
}

.cta1 .cta1-btn {
  font-family: 'Noto Sans', sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta1-btn {
  font-family: 'Noto Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  margin: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  background-color: rgb(43, 51, 121);
  border: 2px solid #c63000;
  color: #fff;
}

.cta1-btn:hover {
  border-color: #fff;
  background-color: #c63000;
  color: #fff;
}

.cta1 .cta1-btn:hover {
  border-color: #fff;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #67b0d1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  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 .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# 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 #67b0d1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 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;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.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: #d5e9f2;
  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 .quote-icon-right1 {
  display: inline-block;
  right: 5px;
  position: relative;
  top: 2px;
  font-size: 18px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.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 #67b0d1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 95%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 65px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 160px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  color: #fff;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: justify;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 40px;
  margin-top: 50px;
}

.contact .info-box1 {
  color: #444444;
  background: #fff;
  text-align: justify;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 40px;
}



.contact .info-box i {
  font-size: 22px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 10px;
}

.contact .info-box h3 {
  font-size: 24px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.contact .info-box1 h3 {
  font-size: 24px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box1 i {
  font-size: 22px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 10px;
}

.contact .info-box1 p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Attend
--------------------------------------------------------------*/
#attend1 {
  background-color: #263F49;
  color: #fff;
  font-size: 14px;
}

#attend1 .attend-top {
  padding: 60px 0 10px 0;
}

#attend1 .attend-top .attend-info {
  margin-top: -60px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #c63000;
  text-align: left;
  padding: 30px;
}

#attend1 .attend-top .attend-info h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #00144f;
  z-index: 2;
}


#attend1 .attend-top .attend-info h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

#attend1 .attend-top .attend-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#attend1 .attend-top .attend-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Noto Sans', sans-serif;
}

#attend1 .attend-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}


#attend1 .attend-top .attend-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#attend1 .attend-top .attend-links ul i {
  padding-right: 2px;
  color: #00144f;
  font-size: 20px;
  line-height: 1;
}

#attend1 .attend-top .attend-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

#attend1 .attend-top .attend-links ul li:first-child {
  padding-top: 0;
}

#attend1 .attend-top .attend-links ul a {
  color: #00144f;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}


@media (max-width: 575px) {
  #attend1 .attend-top .attend-info {
    margin: -20px 0 30px 0;
  }
}

/* 2nd edition */


#attend2 {
  background-image: url(../img/data-ai-banner-bg.png);
  color: #fff;
  font-size: 14px;
}

#attend2 .attend-top {
  padding: 60px 0 10px 0;
}

#attend2 .attend-top .attend-info {
  margin-top: -60px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #c63000;
  text-align: left;
  padding: 30px;
}

#attend2 .attend-top .attend-info h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #00144f;
  z-index: 2;
}


#attend2 .attend-top .attend-info h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

#attend2 .attend-top .attend-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#attend2 .attend-top .attend-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Noto Sans', sans-serif;
}

#attend2 .attend-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}


#attend2 .attend-top .attend-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#attend2 .attend-top .attend-links ul i {
  padding-right: 2px;
  color: #00144f;
  font-size: 20px;
  line-height: 1;
}

#attend2 .attend-top .attend-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}

#attend2 .attend-top .attend-links ul li:first-child {
  padding-top: 0;
}

#attend2 .attend-top .attend-links ul a {
  color: #00144f;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}


@media (max-width: 575px) {
  #attend2 .attend-top .attend-info {
    margin: -20px 0 30px 0;
  }
}

.main-content5 {
  align-items: center;
  background-position: bottom;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  line-height: 1.5;
  padding-top: 20px;
  position: relative;
}

.main-title {
  color: #fff;
  font-size: 12px;
  letter-spacing: 8px;
  margin: 0px 0px 19px;
  text-align: center;
  text-transform: uppercase;
}

.container-countdown {
  display: flex;
  flex-flow: row nowrap;
}

.countdown-block {
  align-items: center;
  display: flex;
  flex-flow: column nowrap;
  margin-right: 30px;
}

.countdown-block :last-child {
  margin-right: 0;
}

.subtitle {
  color: #fff;
  font-size: 18px;
}

.time-element {
  background-color: #33354d;
  border-radius: 8px;
  box-shadow: 0px 8px 0px 0px #16151d;
  color: #fff;
  font-size: 3.5em;
  height: 70px;
  line-height: 68px;
  margin-bottom: 17px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 140px;
}

.time-element::before,
.time-element::after {
  background: #24242e;
  border-radius: 50%;
  content: "";
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  z-index: 6;
}

.time-element::before {
  left: -5px;
}

.time-element::after {
  right: -5px;
}

.time-element>span {
  left: 0;
  position: absolute;
  right: 0;
}

.top {
  background-color: #2a2a41;
  transform-origin: 50% 100%;
  transform: perspective(200px);
  z-index: 3;
}

.top::after,
.bottom-back::after {
  border-bottom: 1px solid hsl(240, 12%, 16%);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.bottom {
  z-index: 1;
}

.bottom::before {
  background-color: #33354d;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.bottom-back {
  background-color: #33354d;
  height: 50%;
  overflow: hidden;
  top: 0;
  z-index: 2;
}

.bottom-back span {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.top,
.top-back {
  backface-visibility: hidden;
  height: 50%;
  overflow: hidden;
}

.top-back {
  background-color: rgb(51, 53, 77);
  bottom: 0;
  transform-origin: 50% 0;
  transform: perspective(200px) rotateX(180deg);
  z-index: 4;
}

.top-back span {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -100%;
}

@media only screen and (max-width: 768px) {
  .main-content5 .container-countdown {
    flex-direction: column;
  }
}


.site-footer {
  background-color: #001642;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5
}

.site-footer hr.small {
  margin: 20px 0
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block
}

.footer-links a {
  color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #fff;
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.youtube:hover {
  background-color: red
}

.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  ;

}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}

.userMain .userBlock {
  float: left;
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  /* background: #fff; */
  /* height: 380px; */


}

/* .userMain .userBlock .backgrounImg {
  float: left;
  overflow: hidden;
  height: 90px;
} */

.userMain .userBlock .backgrounImg img {
  width: auto;
}

.userMain .userBlock .userImg {
  text-align: center;
}

.userMain .userBlock .userImg img {
  width: 180px;
  height: 180px;
  /* margin-top: -39px; */
  border-radius: 100%;
  border: 5px solid #c63000;

}

.userMain .userBlock .user-content {
  text-align: center;
  box-shadow: 0px 0px 23px -3px #c63000;
  background-color: #ffffff80;
  padding: 10px;
  min-height: 120px;
  margin-bottom: 0px;
}

.userMain .userBlock .user-content h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

.userMain .userBlock .user-content p {
  margin-bottom: 0px;
  font-size: 14px;
  margin-top: 0px;
}

.serv-section-2 {
  position: relative;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
  border-radius: 5px;
  overflow: hidden;
  padding: 30px;
}

.serv-section-2:before {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 0;
  content: " ";
  width: 120px;
  height: 120px;
  background: #f5f5f5;
  border-bottom-left-radius: 136px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  max-width: 100px;
  z-index: 1;
  text-align: center;
}

.serv-section-2-icon i {
  color: #00144F;
  font-size: 48px;
  line-height: 65px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
  position: relative;
}



.serv-section-2 h5 {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 500;
  margin-top: 60px;
}

.section-heading-line-left {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #00144F;
  border-radius: 25%;
  margin-top: 15px;
  margin-bottom: 5px;
}

.serv-section-2 p {
  margin-top: 25px;
  padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
  color: #fff;
}

.serv-section-2:hover:before {
  background: #00144F;
}

.pricing-table {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-table .ptable-item {
  width: 33.33%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .pricing-table .ptable-item {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .pricing-table .ptable-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .pricing-table .ptable-item {
    width: 100%;
  }
}

.pricing-table .ptable-single {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
  position: relative;
  width: 100%;
  text-align: center;
}

.pricing-table .ptable-single {
  background: #e7f0fd;
  height: 460px;
}

.pricing-table .ptable-single:hover {
  box-shadow: 0 0 10px #999999;
}

.pricing-table .ptable-header {
  margin: 0 30px;
  padding: 30px 0 45px 0;
  width: auto;
  background: #001642;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #e7f0fd;
}

.pricing-table .ptable-header::before {
  right: 50%;
  border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
  left: 50%;
  border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
  background: #FF6F61;
}

.pricing-table .ptable-status {
  margin-top: -30px;
}

.pricing-table .ptable-status span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  padding: 5px 0;
  text-align: center;
  color: #FF6F61;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  background: #2A293E;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #FF6F61;
}

.pricing-table .ptable-status span::before {
  right: 50%;
  border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
  left: 50%;
  border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
}

.pricing-table .ptable-price h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 300;
}

.pricing-table .ptable-body {
  padding: 20px 0;
}

.pricing-table .ptable-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table .ptable-description ul li {
  color: #001642;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px;
  border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li:last-child {
  border: none;
}

.pricing-table .ptable-footer {
  padding-bottom: 30px;

}

.pricing-table .ptable-action a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  background: #001642;
  border: 2px solid #444;
  border-radius: 24px;
}

.pricing-table .ptable-action a:hover {
  color: #001642;
  background: #ffF;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
  color: #00144F;
  background: #fff;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
  color: #FF6F61;
  background: #2A293E;
}

.sss {
  position: relative;
}

.sss .card {
  position: relative;
  width: 320px;
  height: 320px;
  background: rgba(203, 54, 0);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.sss .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 153, 0.788);
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.sss .card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.sss .card:after {
  content: "Awards";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 12em;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, 0.094);

}

.sss .card .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: .5s;
}

.sss .card:hover .imgBx {
  top: 0%;
  transform: translateY(-10%);
  /* bug  */
}

.sss .card .imgBx img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 270px;
}

.sss .card .contentBx {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
  font-size: 26px;
}

.sss .card .contentBx h2 {

  font-size: 26px !important;
}

.sss .card:hover .contentBx {
  height: 150px;
}

.sss .card .contentBx h2 {
  position: relative;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}

.sss .card .contentBx .callta {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 12px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(50px);
  transition: .5s;
}

.sss .card:hover .contentBx .callta {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: .7s;
}

.row.service-v1 img {
  border-bottom: 5px solid #E9931B;
  /* border-radius: 25px 25px 0 0; */
  border-top: 4px solid #E9931B;
}

.service-v1 h2 {
  color: #222;
  font-size: 24px;
  padding: 0px;
  margin: 12px 0;
}

.service-v1 span {
  padding: 10px 25px 20px;
  background-color: rgb(228, 228, 228);
  float: left;
}

#aaa {
  position: relative;
  /* background: #F9F9F9; */
  padding: 50px 0 0px 0;
}

#aaa img {
  max-width: 100%;
  height: auto;
}

.yxz {
  border: 1px solid #000;
  padding: 15px;
}

/* .card5 {
  background: #001642;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 320px;
  height: 380px;
  margin: 30px;
  border-radius: 20px;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
  box-shadow: 0 10px 0 #fff,
  inset 0 -15px 0 rgba(255, 255, 255, 0.24),
  0 25px 0 rgba(186, 116, 90, 0.916);
  overflow: hidden;
   
}

.card5::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -40%;
  padding: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
  transform: rotate(35deg);
  pointer-events: none;
  filter: blur(5px);
}

.card5:nth-child(1) {
  background: linear-gradient(to bottom, #001642, #001642);
}

.card5:nth-child(2) {
  background: linear-gradient(to bottom, #ffec61, #f321d7);
}

.card5:nth-child(3) {
  background: linear-gradient(to bottom, #24ff72, #9a4eff);
}

.card5 .icon {
  position: relative;
  width: 140px;
  height: 120px;
  background: #3c2846;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1),
          inset 0 -8px 0 #fff;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.card5 .icon::before {
  content: "";
  position: absolute;
  top: 0;
 
  width: 50px;

  background: transparent;
  border-top-right-radius: 50px;
  box-shadow: 15px -15px 0 15px #3c2846;
}

.card5 .icon::after {
  content: "";
  position: absolute;
  top: 0;
 
  width: 50px;

  background: transparent;
  border-top-left-radius: 50px;
  box-shadow: -15px -15px 0 15px #3c2846;
}

.card5 .icon ion-icon {
  color: #fff;
  position: relative;
  font-size: 6em;
  z-index: 1000;
  --ionicon-stroke-width: 24px;
}


.card5 .content {
  position: absolute;
  width: 100%;
  padding: 30px;
  padding-top: 150px;
  text-align: center;
}

.card5 .content h2 {
  font-size: 1.8em;
  color: #fff;
  margin-bottom: 15px;
}

.card5 .content p {
  color: #fff;
  line-height: 1.5em;
} */

.awards {
  background: linear-gradient(#000000, #00000063), url("../img/6927704.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

}

/* .awards{
  background-image: url('../img/awardsbg.jpg');
  background-size: cover;
  background-attachment: fixed;
} */
.awards p::after {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;

  margin: 4px 10px;
}

.awards .gold-text {
  color: #c3a343;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#fbf088, #c3a343);
  background: -o-linear-gradient(#fbf088, #c3a343);
  -webkit-background-clip: text;
  font-weight: 700;
  font-size: 38px;
  text-align: center;
}

.awards .icon-box {
  display: flex;
  align-items: center;
  padding: 3px;
  min-height: 180px;
  background: #1108017a;
  transition: ease-in-out 0.3s;
  box-shadow: 0 0 5px #fff;
}

.awards .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
  color: #5578ff;
}

.awards .icon-box img {
  width: 40%;
  padding-right: 10px;
}

.awards .icon-box h3 {
  font-weight: 500;
  padding: 10px 20px 0 0;
  margin: 0;
  padding: 0;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  transition: ease-in-out 0.2s;
}

.awards .icon-box:hover h3 {
  color: #045b87;
  transform: scale(1);
  font-weight: 600;
}

.awards .icon-box:hover {
  background: #ffffff;
  transform: scale(0.9);
}

.awards .icon-box:hover .btn-get-started {
  background: #2b3379;
  color: #fff;
  transform: scale(0.9);
  font-weight: 600;
}

.awards .btn-get-started {
    font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 50px;
  transition: ease-in-out 0.03s;
  color: #fff;
  background: #c63000;
}

/* .dataai {
  width: 100%;
  min-height: 380px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.service {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  bottom: 0;
  z-index: 1;
  box-shadow: 0 0 20px -15px #030380;
  transition: transform .8s;
  height: 300px;
}


.service-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: -90px auto 0;
  background: #fff;
  border: 15px solid #001642;
  display: flex;
  justify-content: center;
  align-items: center;
}


.service h4 {
 
  padding: 5px 8px;
  margin: 50px auto;
  background: #fff;
  position: relative;
}

.service h4::after,
.service h4::before {
  content: '';
  width: 40px;
  height: 30px;
 position: absolute;
 z-index: -1;
}

.service h4::after {
  background: linear-gradient(to right, #fff, #001642);
  right: -5px;
  top: -5px;
}

.service h4::before {
  background: linear-gradient(to right, #001642, #fff);
  left: -5px;
  bottom: -5px;
}



.dataai::after {
  content: '';
  height: 200px;
  width: 80%;
  background: #fff;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 10%;
  z-index: -1;
  box-shadow: 0 0 20px -15px #030380;
  transition: transform .8s;
}
.dataai::before {
  content: '';
  height: 200px;
  width: 64%;
  background: #fff;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 18%;
  z-index: -2;
}

.dataai:hover .service {
  transform: translateY(-30px);
}

.dataai:hover::after {
  transform: translateY(-15px);
}

.service-logo img {
  transition: transform 1s;
}

.dataai:hover .service-logo img {
  transform: rotate(360deg);
}
 */

.slider {
  position: relative;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  margin: auto auto;
}

.slider:hover>.button-wrapper {
  width: 100%;
}

.item-wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.4s ease;
}

.item-wrapper img {
  width: 100%;
  object-fit: cover;
  flex-basis: 100%;
}

.button-wrapper {
  position: absolute;
  width: calc(100% + 200px);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 25px));
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.indicator-wrapper {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.indicator.current {
  background-color: #777;
}

.indicator:not(.current):hover {
  background-color: #ddd;
}



.testimonial {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f9fc;
  line-height: 2;
  border-radius: 5px;
  margin: 0.5rem;
  box-shadow: 0 0 5px -2px hsla(0, 0%, 0%, 0.1);
  color: rgba(22, 22, 22, 1.0);
}

.testimonial figure {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -60px;
  position: relative;
}

.testimonial figure:before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 3px solid #ff4d4d;
  box-shadow: 0 1px hsla(0, 0%, 0%, 0.1);
}

.testimonial figure img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial #main-testimonial {
  text-align: center;
  margin: 0 10% 20px 10%;
}

.testimonial #main-testimonial p {
 
  position: relative;
  z-index: 5;
  text-align: left;
}

.testimonial #main-testimonial p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -5;
  opacity: 0.05;
  background-position: 20% 20%, 80% 80%;
  background-repeat: no-repeat;
}

.testimonial .test-name {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05rem;
}

.testimonial .test-position {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
}

#main-testimonial div {
  width: 100%;
}

#main-testimonial p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}