/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #65bf95;
  --color-secondary: #1b2f45;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0, 0, 0;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none;
  color: #65bf95
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
}

p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
}

.carousel-caption {
  padding: 20px;
  opacity: 1;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0.32549);
}

.carousel {
  margin-top: 20px;
  -moz-box-shadow: 8px 8px 12px #aaa;
  -webkit-box-shadow: 8px 8px 12px #aaa;
  box-shadow: 1px 1px 12px #555;
}

/************** feature area css ******************/


.single_feature {
  /*border: 2px solid #F2F2F2;*/
  padding: 10px;
  min-height: 200px;
}

.single_feature h3 {
  margin-top: 35px;
}

.single_feature i {
  font-size: 25px;
  color: #65bf95;
  border-radius: 50%;
  border: 2px solid #65bf95;
  height: 65px;
  width: 65px;
  text-align: center;
  padding-top: 17px;
}

/************** story area css ******************/

#story_area {
  background: #e9ebea;
}

.story_text h2,
.experience h2 {
  margin-bottom: 40px;
}

.story_text p,
.experience p,
.experience li {
  margin-bottom: 30px;
}


.story_text a {
  border: 2px solid #333333;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  margin-top: 20px;
  text-transform: uppercase;
}

.experience a {
  border: 2px solid #fff;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}


#stats_area {
  background: #1b1b1b;
  color: #fff;
}


.skills h2 {
  margin-bottom: 40px;
}

/************** blog area css ******************/

#blog_area {
  background: #fff;
}

.single_blog h2 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  margin-top: 20px;
}

.single_blog p {
  margin: 10px 0px;
}


.date i,
.comment i {
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

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

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

#footer .footer-top .footer-info h3 span {
  color: #65bf95;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #65bf95;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #65bf95;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  margin-left: 2%;
}

#footer .footer-top .footer-links ul a:hover {
  color: #65bf95;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}


/*===========================
  --- Contact ----
=========================== */

.validation {
  display: none;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 13px;
  color: red;
}

#sendmessage {
  border: 1px solid #65bf95;
  color: #fff;
  background: #65bf95;
  display: none;
  text-align: center;
  padding: 15px 12px 15px;
  margin: 10px 0;
  font-weight: 600;
  margin-bottom: 30px;
}

#sendmessage.show,
.show {
  display: block;
}

#errormessage {
  border: 1px solid #fe380e;
  color: #fff;
  background: #fe380e;
  display: none;
  text-align: center;
  padding: 15px 12px 15px;
  margin: 10px 0;
  font-weight: 600;
  margin-bottom: 30px;
}

#errormessage.show,
.show {
  display: block;
}

#contact-form {
  position: relative;
  z-index: 999;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
.contactForm textarea {
  width: 100%;
  background: #eeeeee;
  border: 0;
  font-size: 20px;
  text-align: left;
  vertical-align: middle;
  padding: 0 10px;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
.contactForm textarea:focus {
  background: #b7fad2;
  color: #000000;
  opacity: 0.4;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  transition: background 0.25 ease-in;
  -moz-transition: background 0.25 ease-in;
  -webkit-transition: background 0.25 ease-in;
}

#contact-form input[type="text"],
#contact-form input[type="email"] {
  height: 60px;
  margin-bottom: 30px;
}

#contact-form input[type="submit"] {
  color: #fff;
  width: 185px;
  height: 60px;
  text-shadow: none;
  font-size: 14px;
  padding: 0.5em;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  display: block;
  border: 0;
  text-transform: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

#contact-form input[type="submit"]:hover,
#contact-form input[type="submit"]:active {
  background: #43413e !important;
}

#contact-form textarea {
  padding-top: 1em;
}

textarea.form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

div.cform-response-output {
  max-width: 60%;
  text-align: center;
  margin-left: 40% !important;
  margin-top: 0.5em !important;
  padding: 0.5em !important;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.cform-not-valid-tip {
  color: #888;
  border: 1px dotted #ad3729 !important;
  width: 100% !important;
  left: 0 !important;
  padding: 0.5em !important;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.line-btn,
input[type="submit"],
button[type="submit"] {
  font-weight: bold;
  color: #000000;
  background-image: none;
  background-color: #ffffff;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
  cursor: pointer;
  border: 2px solid #000000;
  white-space: nowrap;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  display: inline-block;
}

.line-btn.green,
input[type="submit"].green,
button[type="submit"].green {
  background: #65bf95;
  border: none;
  color: #ffffff;
}

blockquote {
  display: block;
  font-size: 20px;
  position: relative;
  padding-left: 90px;
  color: #65bf95;
  border-color: #65bf95;
}

.sikia {
  color: #65bf95;
  font-weight: bold;
}

blockquote:before {
  content: "\f10d";
  font-size: 55px;
  font-family: FontAwesome;
  position: absolute;
  top: -4px;
  left: 20px;
}

/* On small device, don't display blockquote:before */

@media (max-width: 767px) {
  blockquote:before {
    display: none;
  }

  blockquote {
    padding-left: 0;
  }
}

blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

blockquote cite:before {
  content: "\2014 \2009";
}

#features_area {
  background: #fff;
  color: #021127;
}

#features_area p {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.6;
}

#features_area ul,
li {
  font-size: 16px;
}

#story_area p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.4;
}

#vie_sikia_area p {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.6;
}

#blog_area p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.5;
}

.experience p,
.experience li {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.5;
}

#clients_say_area p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.5;
}

.clients_say p {
  font-size: 14px !important;
  line-height: 1.4 !important;
}



#rse_bloc3_area {
  background: url(../images/rse4.jpg);
  background-size: cover;
  background-position: center 30%;
  min-height: 350px;
}

.rse_bloc3_area_text {
  color: #fff;
  padding: 10px;
  opacity: 1;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0.52549);
}

.rse_bloc3_area_text p {
  font-size: 16px !important;
}

#aikis_support_area {
  background: url(../images/aikis_support.jpg);
  padding-top: 35px;
  background-size: cover;
  background-position: center top;
}

.aikis_support_area_text {
  padding-top: 350px;
  padding-bottom: 50px;
  padding-left: 700px;
  text-shadow: 4px 4px 5px #000;
  color: #fff;
}

.bq_aikis_support {
  color: rgb(213, 107, 27);
  border-color: rgb(213, 107, 27);
  text-align: left;
}

.bq_aikis_support:before {
  color: rgb(213, 107, 27);
  border-color: rgb(213, 107, 27);
}

#aikis_logiciels_area {
  background: url(../images/aikis_logiciels.jpg);
  padding-top: 35px;
  background-size: cover;
  background-position: center top;
}

.aikis_logiciels_area_text {
  padding-top: 350px;
  padding-bottom: 50px;
  padding-left: 700px;
  text-shadow: 4px 4px 5px #000;
  color: #fff;
}

.bq_aikis_logiciels {
  color: #5f9ea0;
  border-color: #5f9ea0;
  text-align: left;
}

.bq_aikis_logiciels:before {
  color: #5f9ea0;
  border-color: #5f9ea0;
}


#partenaire_area {
  background: url(../images/partenaire.jpg);
  padding-top: 35px;
  background-size: cover;
  background-position: center top;
}

.partenaire_area_text {
  padding-top: 350px;
  padding-bottom: 50px;
  padding-left: 700px;
  text-shadow: 4px 4px 5px #000;
  color: #fff;
}

.sommaire {
  text-align: left;
  padding: 10px;
  background-color: #e9ebea;
}

.sommaire ul {
  padding-left: 0px !important;
}

.sommaire ul>li {
  font-size: 12px;
  list-style: none;
  margin-bottom: 2px;
  padding-left: 5px !important;
}

.sommaire ul>li:hover {
  border-left: 2px solid #000000;
  background-color: #ffffff;
  color: #65bf95;
}

.sommaire ul>li a {
  text-decoration: none;
  color: #000000;
  font-family: "Lato", sans-serif;
}

.sommaire ul>li a:hover {
  color: #65bf95;
}

#remarque {
  display: none;
}

#anniv_area {
  background: #fff;
  position: relative;
  background: url(../images/futur.jpg);
  background-size: cover;
  background-position: center center;
}


#anniv_area .experience {
  color: #000;
  padding: 40px;
  background-color: rgba(250, 250, 250, 0.8);
}


.card {
  border: 0;
  box-shadow: 0 2px 2px 0 rgba(60, 75, 100, 0.14),
    0 3px 20px -1px rgba(60, 75, 100, 0.12), 0 5px 10px 0 rgba(60, 75, 100, 0.2);
  font-size: 14px;
}

.card-body {
  padding: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.card-header {
  font-size: 16px;
  line-height: 28px;
  min-height: 75px;
}

.card-text {
  margin: 0px !important;
  text-align: center;
}

/* 
.navbar-nav {
  flex-direction: unset;
} */

/* Index page */

body {
  background-color: white;
}

.border {
  position: relative;
  padding: 20px;
  margin: 10px;
  text-align: center;
  border-radius: 15px;
  background-color: white;
}

.image-container {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  overflow: hidden;
  background-color: black;
  /* center the image */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10%;
}

.image-container img {
  display: block;
  filter: invert(1);
  /* invert the color of the image */
}

.h2_margin {
  margin-top: 30px;
}

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

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

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #65bf95;
}

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #65bf95;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

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

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #65bf95;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* .section-header p {
  margin-bottom: 0;
} */

.section-header2 h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header2 h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #65bf95;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.green-list li {
  text-align: left;
  margin-left: 25px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .aikis-image {
    max-width: 20%;
  }
}

@media screen and (max-width: 768px) and (min-width: 576px) {
  .aikis-image {
    max-width: 40%;
  }
}

@media screen and (max-width: 576px) {
  .aikis-image {
    max-width: 50%;
  }
}

.skill_right p {
  text-align: center;
  font-size: 18px;
}


.skill_right .skill_val {
  font-size: 50px;
  color: #65bf95;
}


.btn-outline-success {
  color: #65bf95;
  border-color: #65bf95;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #65bf95;
  border-color: #65bf95;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: white;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(white, 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

 /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .img {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .services .img img {
    transition: 0.6s;
  }
  
  .services .details {
    /*  PADDING 50 TOP? 30 ON SIDE AND 30 BOTTOM*/
    padding: 50px 30px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
  }

  /* ON BIG SCREEN ADD AN HEIGHT */
  @media screen and (min-width: 992px) {
    .services .details {
      height: 250px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .services .details {
      height: 290px;
    }
  }
    

  .services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid var(--color-white);
  }
  
  .services .details h3 {
    color: var(--color-primary);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
  }
  
  .services .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover .details h3 {
    color: var(--color-primary);
  }
  
  .services .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
  }
  
  .services .service-item:hover .details .icon i {
    color: var(--color-primary);
  }
  
  .services .service-item:hover .img img {
    transform: scale(1.2);
  }

  @media only screen and (max-device-width: 425px) {
    .map-img {
      transform: scale(4);
      height: 50%;
      margin-top: 160px;
    }
  }

  @media only screen and (min-device-width: 426px) and (max-device-width: 768px) {
    .map-img {
      transform: scale(2);
      height: 50%;
      margin-top: 110px;
    }
  }

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .map-img {
    transform: scale(1.5);
    height: 50%;
    margin-top: 110px;
  }
}
