/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #3196d3;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  text-align: center;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 60px;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  max-width: 46px;
  max-height: 46px;
}

/*--------------------------------------------------------------
# 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-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #004289;
  font-weight: 500;
  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: #3196d3;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

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

.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: #283d50;
  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(23, 35, 46, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg2.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

@media (max-width: 991px) {
  #hero {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
}

#hero .hero-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #hero .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#hero .hero-info {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
}

#hero .hero-info h1 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 31px;
  font-weight: 700;
}

#hero .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .hero-info .btn-get-started,
#hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero .hero-info .btn-get-started {
  background: #3196d3;
  border: 2px solid #3196d3;
  color: #fff;
}

#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero .hero-info .btn-services:hover {
  background: #3196d3;
  border-color: #3196d3;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}


/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
  margin-bottom: 40px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

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

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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


/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #3196d3;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #3196d3;
  font-size: 24px;
  line-height: 0;
}

#about .about-container .icon-box:hover .icon {
  background: #3196d3;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
  align-items: center;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/
/* Popular section */
a {
  text-decoration: none;
}

li {
  list-style: none;
}

section {
  padding: 3rem 0 2rem;
}

img {
  width: 100%;
}
.play-movie {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--main-color);
  font-size: 24px;
  animation: animate 2s linear infinite;
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: hsl(234 10% 20% / 60%);
  z-index: 400;
}

.video-container.show-video {
  display: flex;
}

.video-box {
  position: relative;
  width: 82%;
}

.video-box #myvideo {
  width: 100%;
  aspect-ratio: 16/9;
}

.close-video {
  position: absolute;
  top: -3rem;
  right: 0;
  font-size: 40px;
  color: var(--main-color);
}
.bx {
  cursor: pointer;
  color: #fff;
}
.play-movie {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  color: #fff;
  background-color: #3196d3;
}

.watch-btn .bx {
  margin-bottom: 9px;
  font-size: 21px;
  background: #3196d3;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-movie .bx:hover {
  background: #fff;
  color: #3196d3;
}

#services .container {
  max-width: 1060px;
  margin: auto;
  width: 100%;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--container-color);
  padding: 8px 14px;
  border: 1px solid hsl(200 100% 99% / 5%);
  margin-bottom: 2rem;
}

.heading-title {
  font-size: 1.2rem;
  font-weight: 500;
  
}
.tabs a {
  text-decoration: none;
  color: inherit;
}

.tabs a.active h2 {
  border-bottom: 2px solid #0073e6;
}

.popular-content {
  display: none;
}

.popular-content.active {
  display: block;
}

.tabs .heading-title{
  display: inline;
  margin: 10px;
  color: #333;
}

.movie-box {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.movie-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-box .box-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(8deg,
      hsl(240 17% 14% / 74%) 14%,
      hsl(240 17% 14% / 14%)44%);
  overflow: hidden;
}

#services .movie-title {
  text-align: left;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.movie-type {
  font-size: 0.938rem;
  color: #fff;
}

#services .play-btn {
  position: absolute;
  bottom: 0.6em;
  right: 0.8rem;
}

.swiper-btn {
  display: flex;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  margin: 0 0 0 10px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--text-color);
  font-size: 18px !important;
  font-weight: 700;
}

.movies .heading {
  padding: 10px 14px;
}


:root {
  --surface-color: #fff;
  --curve: 40;
}

/* Projects section */
.card {
  position: relative;
  display: block;
  height: 80%;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
    
.card__image {
  width: 100%;
  height: 100%;
}
    
.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius:10px;
  background-color: var(--surface-color);
  transform: translateY(100%);
  transition: .2s ease-in-out;
  /* height: 200px; */
}
    
.card:hover .card__overlay {
  transform: translateY(0);
}
    
.card__header {
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: 10px 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}
    
.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}
    
.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}
    
.card:hover .card__header {
  transform: translateY(0);
}
    
.card__thumb {
  /* padding: 5px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3196d3;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
}
    
.card__title {
  text-align: right;
  font-size: 1em;
  margin: 0 0 .3em;
  color: #000000;
}
    
    
.card__status {
  font-size: .8em;
  color: #3196d3;
}


#services .grade {
  position: absolute;
  top: 1%;
  right: 5%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #3196d3;
  border-radius: 50%;
  color: white;
  font-size: 24px;

}

#services .achive {
  text-align: right;
  line-height: 0px;
  margin-right: 5%;
}
#services {
  padding: 60px 0px 40px 0px;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .category {
  position: absolute;
  top: 5%;
  right: 9%;
}

#services ul {
  display: flex;
  justify-content: center;
  padding: 0px;

}

#services ul li {
  list-style: none;
  padding: 8px 20px;
  margin: 5px;
  cursor: pointer;
  text-align: center;
}

#services ul li.active {
  background-color: #000000;
}

#services .category:hover {
  box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 0.546);
  transform: translateY(20);

}

#services #DL,
#services .DL-list {
  background-color: #339fe0;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

#services #Eng,
#services .Eng-list {
  background-color: #b0cb0b;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

#services #AI,
#services .AI-list {
  background-color: #1f5eab;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

#services #IoT,
#services .IoT-list {
  background-color: #01a145;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

#services .all-list {
  background-color: #958f947a;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}
/* Tools section */
#services .box {
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}

#services .box:hover .title a {
  color: #3196d3;
}

#services .description {
  font-size: 14px;
  margin-left: 90px;
  line-height: 24px;
  margin-bottom: 0;
}

#services .title {
  
  padding-top: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  
  color: #111;
}


/* Activities Section
--------------------------------*/
#activites-bg {
  width: 100%;
  position: relative;
  background: url("../img/activites.png") center bottom no-repeat;
  background-size:cover;
  padding: 0px ;
}

@media (max-width: 991px) {
  #activites-bg {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #activites-bg {
    padding: 100px 0 20px 0;
  }
}

#activites-bg .activites-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #activites-bg .activites-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#activites-bg .activites-info {
  width: 50%;
  float: right;
  margin-top: 15%;
  /* display: block; */
}

@media (max-width: 991px) {
  #activites-bg .activites-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #activites-bg .activites-info {
    width: 100%;
  }
}

#activites-bg .activites-info h1 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 31px;
  font-weight: 700;
}

#activites-bg .activites-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #activites-bg .activites-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#activites-bg .activites-info .btn-get-started,
#activites-bg .activites-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#activites-bg .activites-info .btn-get-started {
  background: #3196d3;
  border: 2px solid #3196d3;
  color: #fff;
}

#activites-bg .activites-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#activites-bg .activites-info .btn-services {
  border: 2px solid #fff;
}

#activites-bg .activites-info .btn-services:hover {
  background: #3196d3;
  border-color: #3196d3;
  color: #fff;
}
/* #activites .detail1, .detail2,.detail3,.detail4,.detail5{

  margin: 5px;
  justify-content: center;
  align-items: center;
  align-content: center;

  position: absolute;
} */

.activites-details i {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  /* background: linear-gradient(45deg, #009540, #aec90b);
    -webkit-background-clip: text;
    background-clip: text; */
    color: #fff;
}
.activites-details {
  padding: 5px 0px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #004aad, #5de0e6);

  border-radius: 50px;

}
.activites-details p{
  display: inline-block;
    font-size: 16px;
    color:#fff ;
    /* -webkit-background-clip: text;
    background-clip: text;
    color: transparent; */
    margin: 0;
    line-height: 1.2;
    padding: 0;
}
#activites .title {

  padding-top: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#activites .title a {

  color: #1f5ba4;
}


/* CARD COMPONENT */

.activites-card {
  display: grid;
  place-items: center;
  width: 500px;
  /* max-width: 21.875rem; */
  height: 600px;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.activites-card>* {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.activites-card__background {
  object-fit: fit;
  max-width: 100%;
  height: 70%;
  /* justify-content: flex-start; */
}

.activites-card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-self: flex-end;
  height: 100%;
  color: #009540;
  font-weight: bolder;
  padding: 12% 1.25rem 1.875rem;
  background: #fff;
}

.activites-card__content--container {
  --flow-space: 1.25rem;
}

.activites-card__title {
  position: relative;
  color:#1f5ba4;
  font-weight: bold;
  /* width: fit-content; */
  width: -moz-fit-content;
  /* Prefijo necesario para Firefox  */
}

.activites-card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: calc((1.25rem - 0.5rem) * -1);
  left: -1.25rem;
  background-color: var(--brand-color);
}


.activites-card__button {
  padding: 10px 10px;
  width: -moz-fit-content;
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  font-size: 1.125rem;
  color: #009540;
  background-color: #fff;
  width: 100px;
  text-align: center;
  text-decoration: underline;
}

.activites-card__button:hover {
  /* background: linear-gradient(90deg in oklab, #aec90b, #fff); */

  color: #00000061;
  text-decoration: underline;
}

.activites-card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}
/*-----------------------------------------------------------------------------------------------------*/

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #why-us .card {
    margin: 0;
  }
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}
/*-----------------------------------------------------------------------------------------------------*/

/* Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 14px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

#team .member .social a:hover {
  color: #fff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/* Contact Section
--------------------------------*/
#contact {
  
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
/*   padding: 60px 180px; */
  overflow: hidden;
  align-items: center;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3196d3;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #3196d3;
  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 #3196d3;
}

#contact .social-links a:hover {
  background: #3196d3;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #b7d60c;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 36px;
  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;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea,
#contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus
#contact .php-email-form select:focus {
  border-color: #3196d3;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea,
#contact .php-email-form select{
  padding: 12px 15px;
}

#contact .php-email-form button[type=submit] {
  background: #3196d3;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}
#contact .php-email-form select{

}

#contact .php-email-form button[type=submit]:hover {
  background: #D2E7F5;
  cursor: pointer;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #3196d3;
  padding: 70px 0;
  align-items: center;
}

.footer-container {
  max-width: 1170px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.footer-col {
  width: 100%;
  padding: 0 15px;
  text-align: center
}

.footer ul {
  list-style: none;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
}


.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #ffffff;
  display: block;
  transition: all 0.3s ease;

}

.footer-col ul li a:hover {
  color: #929090;
  padding-left: 10px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgb(255, 255, 255, 0.2);
  margin-right: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 1s ease;

}

.footer-col .social-links a:hover {
  color: #f7f8fa;
  background-color: #fff;
}


#hero {
  margin-top: 50px;
  margin-bottom: 50px;
}



/*--------------------------------------------------------------
# Upload file --> pdf to photo
--------------------------------------------------------------*/

#upload-button {
  color: white;
  background-color: #3498dbcc;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  text-decoration: none;
  cursor: pointer;
  width: 250px;
  display: block;
  margin: 20px auto;
}

#file-to-upload {
  display: none;
}

#pdf-main-container {
  min-height: 200px;
  width: 400px;
  margin: 20px auto;
}

#pdf-loader {
  display: none;
  text-align: center;
  color: #999999;
  font-size: 13px;
  line-height: 100px;
  height: 100px;
}

#pdf-contents {
  display: none;
}

#pdf-meta {
  overflow: hidden;
  margin: 0 0 20px 0;
}

#pdf-buttons {
  float: left;
}

#page-count-container {
  float: right;
}

#pdf-current-page {
  display: inline;
}

#pdf-total-pages {
  display: inline;
}

#pdf-canvas {
  border: 1px solid #0e5199a9;
  box-sizing: border-box;
}

#page-loader {
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: none;
  color: #999999;
  font-size: 13px;
}

#download-image {
  width: 150px;
  display: block;
  margin: 20px auto 0 auto;
  font-size: 13px;
  text-align: center;
}

.move {
  background-color: #3498DB;
  border-radius: 3px;
  border: none;
  color: white;
  padding: 5px;
}

.download {
  background-color: #3498DB;
  border-radius: 3px;
  color: white;
  padding: 15px;
  text-decoration: none;
}
