* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #343434;
  background: #fff;
  line-height: 1.5;
}

/* Echelle Typographique*/

h1 {
  font-size: 38px;
  font-weight: 700;
  color: #00a0b4;
  line-height: 1.2;
}

h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 25px;
  color: #343434;
}

h3 {
  font-size: 1.5rem;
  font-weight: 200;
  color: #343434;
}

h4 {
  font-size: 20px;
  font-weight: 500;
  color: #00a0b4;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}


small {
  font-size: 0.833rem;
}

a {
  text-decoration: none;
}

/*Buttons*/
.ipls-btn {
  background-color: #00b2c8;
  border-radius: 20px;
  padding: 7px 20px;
  text-transform: none;
  transition: all ease-in-out 0.5s !important;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-left: 40px;

}

.ipls-btn:hover {
  background-color: #057e8e !important;
  transition: all ease-in-out 0.5s !important;
}


/* comportement site navigation au scroll */

.site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1030;
}

#site-topbar {
  max-height: 45px;
  opacity: 1;
  overflow: hidden;
}

#site-topbar.is-hidden {
  max-height: 0;
  opacity: 0;
  border-bottom: 0 !important;
}

#site-navbar {
  position: relative;
  z-index: 1031;
}

/* sécurité visuelle pour éviter les sauts */
#site-navbar .navbar {
  margin-bottom: 0;
}

/* bouton back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #212529;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

.back-to-top:hover,
.back-to-top:focus {
  background: #000;
  color: #fff;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Breadcrumb
---------------------------------- */
.page-intro {
  padding: 10px 0;
  -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.06) inset;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.06) inset;
  background-color: #fafafa;
  border-bottom: 1px solid #dadada;
  margin-bottom: 24px;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  font-size: 13px;
  padding: 8px 0;
}

.breadcrumb li {
  margin-right: 14px;
}

/* partie */
.main {
  margin-bottom: 50px;
}

.submain {
  padding-top: 25px;
  padding-bottom: 25px;
}

.space {
  height: 25px;
}

/*footer*/
.footer {
  background-color: #e9eaeb;
  padding-top: 25px;
}

.subfooter {
  padding: 25px 0;
  background-color: #27313c;
  color: #e9eaeb;
}

.footer-content .social-links li a {
  background-color: #27313c;
  border-color: #27313c;
  color: #fff;
}

.footer-content .social-links li a:hover {
  background-color: #FFF;
  border-color: #27313c;
  color: #27313c;
}

.gallery {
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
}

.gallery-item {
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 10px;
}



img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* HERO SLIDER - HOMEPAGE----------------------------------------------------------------*/

.hero-carousel {
  position: absolute;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(117deg, rgba(9, 30, 121, 1) 0%, rgba(102, 157, 223, 1) 93%, rgba(102, 157, 223, 1) 100%);
  padding: 20px
}

.hero-carousel .hero-carousel-list .hero-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.hero-carousel .hero-carousel-list .hero-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel .hero-carousel-list .hero-carousel-item .hero-carousel-content {
  position: absolute;
  top: 10px;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  color: white;
  min-height: 85%;
  padding: 20px;
  border-radius: 25px;
}

.hero-carousel-content .hero-title {
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 10px;
  min-height: 60px;
  text-shadow: rgba(62, 66, 66, 1) 0px 4px 4px;
}


.hero-carousel-content .hero-text {
  font-size: 2.5em;
  min-height: 120px;
  text-shadow: rgba(62, 66, 66, 1) 0px 2px 2px;

}

.hero-slider-cta {
  display: flex;
  padding-top: 10px;
}

.hero-slider-cta .product_btn {
  margin-top: 40px;
  background-color: #00b2c8;
  border-radius: 20px;
  padding: 7px 20px;
  text-transform: none;
  color: white;
  text-decoration: none;
  border: none;
  -webkit-box-shadow: 4px 7px 15px -6px #000000;
  box-shadow: 4px 7px 15px -6px #000000;
}

.hero-slider-arrow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}

.hero-slider-arrow button {
  width: 70px;
  height: 40px;
  border-radius: 25px;
  background-color: #ffffff;
  border: none;
  font-family: monospace;
  color: #2f2f2f;
  font-weight: bold;
  font-size: large;
  transition: .2s;
  z-index: 100;
  margin: 30px;
  -webkit-box-shadow: 4px 7px 15px -6px #000000;
  box-shadow: 4px 7px 15px -6px #000000;
}

.hero-slider-arrow button:hover {
  background-color: #00b2c8;
  color: #FFFFFF;
}

.hero-carousel-list .hero-carousel-item:nth-child(1) {
  z-index: 1;
}


.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-title,
.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-subtitle,
.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-text,
.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-slider-cta {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-title {
  animation-delay: 0.5s;
}

.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-text {
  animation-delay: 0.7s;
}

.hero-carousel-list .hero-carousel-item:nth-child(1) .hero-slider-cta {
  animation-delay: 0.9;
}

/* effect next click */
.hero-carousel.next .hero-carousel-list .hero-carousel-item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  border-radius: 20px;
  animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;

  }
}


/* effect prev click */

.hero-carousel.prev .hero-carousel-list .hero-carousel-item:nth-child(2) {
  z-index: 2;
}



.hero-carousel.prev .hero-carousel-list .hero-carousel-item:nth-child(2) .hero-title,
.hero-carousel.prev .hero-carousel-list .hero-carousel-item:nth-child(2) .hero-subtitle,
.hero-carousel.prev .hero-carousel-list .hero-carousel-item:nth-child(2) .hero-text,
.hero-carousel.prev .hero-carousel-list .hero-carousel-item:nth-child(2) .hero-slider-cta {
  animation: contentOut .5s linear 1 forwards;
}

@keyframes contenOut {
  to {
    transform: translateX(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

.hero-carousel.prev .hero-slider-arrow button,
.hero-carousel.next .hero-slider-arrow button {
  pointer-events: none;
}

/* time*/
.time {
  width: 0%;
  height: 3px;
  background-color: blue;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
}

.hero-carousel.prev .time,
.hero-carousel.next .time {
  width: 100%;
  animation: timeRunning 0.5s linear 1 forwards;
}

@keyframes timeRunning {
  to {
    width: 0px;
  }
}

@media screen and (max-width: 700px) {
  .hero-carousel .hero-carousel-list .hero-carousel-item {
    padding-right: 0;
  }

  .hero-carousel .hero-carousel-list .hero-carousel-item .hero-title {
    font-size: 2.5rem;
  }

  .hero-carousel .hero-carousel-list .hero-carousel-item .hero-text {
    font-size: 2rem;
    min-height: 50px;
  }

  .hero-slider-arrow {
    bottom: -10px;
  }
}

/* espace pour le hero slider*/
.index-content {
  margin-top: 450px;
}







/* background image card section*/
.solution {
  background-image: url(/assets/images/background/bg-solutions.webp);
  background-size: cover;
}

.graphic {
  background-image: url(/assets/images/background/bg-graphic.png);
}

.assistance {
  background-image: url(/assets/images/background/bg-assistance.jpg);
  background-size: cover;
}

.ipls {
  background-image: url(/assets/images/logo/icon-ipls.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.ipls2 {
  background-image: url(/assets/images/background/bg-ipls.jpg);
  background-size: cover;
}

.communications {
  background-image: url(/assets/images/background/bg-com.jpg);
  background-size: cover;
  height: 150px;
}

.securite {
  background-image: url(/assets/images/background/bg-securite.jpg);
  background-size: cover;
  height: 150px;
}

.produits {
  background-image: url(/assets/images/background/bg-produits.jpg);
  background-size: cover;
}

.pageEDI {
  background-image: url(/assets/images/background/bg-page-edi.jpg);
  background-size: cover;
}

.pageEmulation5250 {
  background-image: url(/assets/images/background/bg-emulation.jpg);
  background-size: cover;
}

.sysgroup2 {
  background-image: url(/assets/images/background/bg-syspertec.jpg);
  background-size: cover;
}

/* card IPLS */

.ipls-card {
  max-width: 400px;
  padding: 15px;
  text-align: left;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid lightgrey;
  margin-right: 5px;
}

/* default button*/
.btn-default {
  background-color: #00b2c8;
  color: #fff !important;
  border-color: #00a0b4;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #fff !important;
  background-color: #00a0b4;
  border-color: #00a0b4;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default {
  background-color: #0068B1;
  border-color: #0068B1;
}



.site-header {
  background: #1f2937;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.navbar-expand-lg .container,
.header-top .container {
  min-width: 90vw;
}

.site-logo {
  max-width: 150px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.85em;
}

ul.dropdown-menu {
  background-color: #212529;
}

a.dropdown-item.active {
  background-color: #32373b;
}

a.dropdown-item {
  color: #dadada
}

ul.dropdown-menu li {
  color: #dadada;
  border-bottom: 1px solid rgb(104, 103, 103);
}

ul.dropdown-menu li:last-of-type {
  border-bottom: none;
}

ul.dropdown-menu li a.dropdown-item:hover {
  background-color: #32373b;
  color: #dadada;
  transition: ease-in 0.8;
}


.site-footer {
  background: #f3f4f6;
  padding: 24px 0;
  border-top: 1px solid #ddd;
}

/*cta section*/
.call-to-action {
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 250px;
  flex-wrap: wrap;

}

@media (min-width: 992px) {
  .dropdown-hover {
    position: relative;
  }

  .dropdown-hover>.dropdown-menu {
    top: 100%;
    left: 0;
    margin-top: 0;
  }

  .dropdown-hover:hover>.dropdown-menu {
    display: block;
  }

  .dropdown-hover>.dropdown-toggle-split::after {
    margin-left: 0.15rem;
  }
}


/* SuPTopBar */

.header-top {
  font-size: 14px;
  background-color: black;
  max-height: 45px;
  overflow: hidden;
}

.form-control {
  padding: 0.1rem 0.75rem;
}

.topbar-search-wrap {
  justify-content: flex-end;
  position: relative;
}

.topbar-lang-wrap {
  padding-right: 16px;
}

.topbar-lang-links a {
  text-decoration: none;
  color: #dadada;
}

.top-social {
  color: white;
  font-size: 18px;
}

.top-social:hover {
  color: #00b2c8;
}

#searchIcon {
  position: absolute;
  right: 0px;
  top: 1px;
  border: none;
  font-size: 17px;
  background-color: transparent;
  color: #00b2c8;
}



/* Liste   */
.sq-list {
  list-style-type: square;
}

.sq-list li::marker {
  color: #00b2c8;
}

.no-list {
  list-style-type: none;
}

.no-list li,
.sq-list li {
  padding-bottom: 10px;
}

.ipls-blue {
  color: #00a0b4;
}

/*Icones*/
.bigIcon {
  font-size: 45px;
}

.cta-item {
  min-width: 60%;
}

/* table panel*/

.tabs-style-2 .nav-tabs {
  border-bottom: 1px solid #00a0b4;
}

.tabs-style-2 .tab-content {
  border: none;
  padding: 20px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.noMarBot {
  margin-bottom: 0px;
}

#iplsTab .nav-item a {
  color: #00a0b4;
  font-size: 12px;
  color: #00a0b4;
  margin-left: 0;
  margin-right: 0;
}


/* accordion */
.accordion-header {
  margin-top: 0px;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #00a0b4 !important;
  text-decoration: none;
  color: white !important;
}

.accordion-body img {
  float: left;
  margin-right: 25px;
}

.rlmod a {
  font-weight: bold;
  text-decoration: none;
  color: #1f2937;
}

.rlmod a:hover {
  color: #00a0b4;
}

.rlmod a.datasheet {
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background-color: #00a0b4;
  padding: 5px 10px;
  border-radius: 15px;
}

a.datasheet:hover {
  background-color: #1f2937;
  transition: 1s all ease-in-out;
}

.accordion-collapse {
  transition: 0.7s all ease-in-out;
}

.imgcenter {
  margin: 0px auto;
}

.box-style-1 {
  max-width: 80vw;
  padding: 20px;
  background-color: #00b2c8;
  margin: 25px auto;
}

.box-style-1,
.box-style-1 p {
  color: white;
}

.grid .col-md-2 {
  background-color: #FFFFFF;
  border: 1px solid #dadada;
  max-height: 147px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 5px;
  margin-right: 5px;
}

/*documentation tables*/
div.row-doc {
  margin-top: 5vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product_card {
  min-height: 100%;
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.57);
  border-radius: 0px 0px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body {
  padding: 0 15px;
  text-align: center;
}

.product_name {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.card-footer {
  display: flex;
  justify-content: center;
}

.product_btn {
  border-radius: 25px;
  text-transform: none;
  margin-bottom: 25px;
}

.footer-link {
  margin-right: 5px;
  margin-left: 5px !important;
}

.footer-link:hover {
  color: #00b2c8;
}

/* adaptation tarte au citron comportement banniere */

html.tac-lock,
body.tac-lock {
  overflow: hidden;
  height: 100%;
}

#tac-page-blocker {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(255, 255, 255, 0.01);
}

body.tac-consent-active #tac-page-blocker {
  display: block;
}

/* Bannière principale */
#tarteaucitronRoot,
#tarteaucitronAlertBig,
#tarteaucitronAlertSmall {
  z-index: 99999 !important;
}

/* Panneau de personnalisation */
#tarteaucitron {
  z-index: 100000 !important;
}

/* Fond / wrapper du panneau si présent */
#tarteaucitronBack {
  z-index: 99998 !important;
}
