/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--t-gris-corps);
}

a {
  color: var(--t-bleu-2);
  text-decoration: none;
}

a:hover {
  color: var(--t-bleu-1);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: var(--t-bleu-fonce);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--t-bleu-fonce);
  background: linear-gradient(160deg, rgba(38,75,129,1) 0%, rgba(12,117,191,1) 100%);
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgba(37, 170, 225, 0.5);
  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: rgba(37, 170, 225, 0.9);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  height: 80px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(38, 75, 129, 0.9);
  backdrop-filter: blur(6px);-webkit-backdrop-filter: blur(6px);
}

#header .logo {
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  padding: 10px 0;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

#header.header-scrolled .logo img {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 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 {
  color: #FFF;
}

.navbar a:not(.getstarted):hover:after,
.navbar .active:not(.getstarted):after {
  content:'';
  background: var(--t-bleu-1);
  width: calc(100% - 30px);
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

#header.header-scrolled .navbar a:not(.getstarted):hover:after,
#header.header-scrolled .navbar .active:not(.getstarted):after {
  content:'';
  background: var(--t-bleu-1);
  width: calc(100% - 30px);
  height: 3px;
  position: absolute;
  bottom: -19px;
  right: 0;
  border-radius: 30px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--t-bleu-1);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px){
  #header.header-scrolled .navbar .getstarted,
  #header.header-scrolled .navbar .getstarted:focus {
    background: var(--t-bleu-2);
    border: 2px solid var(--t-bleu-2);
  }
}


#header.header-scrolled .navbar .getstarted:hover,
#header.header-scrolled .navbar .getstarted:focus:hover,
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--t-bleu-1);
  border: 2px solid var(--t-bleu-1);
}

.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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: var(--t-bleu-fonce);
}

.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: var(--t-bleu-2);
}

.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: #fff;
  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 a:not(.getstarted):hover:after,
  .navbar .active:not(.getstarted):after {
  content:'';
  display: none;
  }

  #header.header-scrolled .navbar a:not(.getstarted):hover:after,
  #header.header-scrolled .navbar .active:not(.getstarted):after {
  content:'';
  display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: visible;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 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;
  height: fit-content;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 100vh rgba(38, 75, 129, 0.5);
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--t-bleu-2);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .getstarted.dark-bs {
  box-shadow: none;
}

.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: var(--t-bleu-2);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 630px;
  background: rgb(38,75,129);
  background: url(/assets/img/transparent-noise.webp) repeat, url(/assets/img/dnil-electronics_motif-points-circuits_blanc_2.svg) no-repeat, linear-gradient(160deg, rgba(38,75,129,1) 0%, rgba(12,117,191,1) 100%);
  background-size: auto,900px,auto;
  background-position: top left,calc(60% + 320px) -100px,top left;
  background-attachment: fixed,fixed,local;
  overflow: visible;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: var(--t-clair-3);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .hero-img {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 30px;
  animation: d-shadow-bright-blue 2s ease-in-out infinite alternate-reverse both;
}

@media screen and (min-height: 665px) {
  #hero .hero-img {
    animation: slide-fade-down linear, d-shadow-bright-blue 2s ease-in-out infinite alternate-reverse both;
    animation-timeline: view(block);
    animation-range: contain 90% contain 300%;
  }
}

#hero .hero-img #hero-img-1 {
  position: relative;
  bottom: -10px;
  width: 100%;
  object-fit: contain;
}

#hero .hero-img #hero-img-2 {
  position: relative;
  bottom: -100px;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
  }

  #hero .animation {
    animation: none;
  }

  #hero .hero-img{
    gap: 0;
  }

  #hero .hero-img #hero-img-1 {
    bottom: 0;
  }

  #hero .hero-img #hero-img-2,
  #hero .hero-img #hero-img-2_ct {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-blanc-bright {
    animation: none;
    z-index: 1;
  }

  #hero .hero-img {
    max-width: 100%;
    align-items: center;
  }
}

@media (max-width: 575px) {

  #hero .hero-text {
    text-align: center;
    display: flex;
    align-items: center;
  }

  #hero .hero-img #hero-img-1_ct {
    max-width: 80%;
  }

  #hero .hero-img #hero-img-1 {
    height: 550px;
    margin-top: 30px;
    margin-bottom: -300px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--t-clair-1);
  border-top: 1px solid var(--t-clair-2);
  border-bottom: 1px solid var(--t-clair-2);
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 1px 1px 0px #fff;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--t-clair-3);
  bottom: 1px;
  left: calc(50% - 60px);
  transition: all 0.5s ease-out;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--t-bleu-1);
  bottom: 0;
  left: calc(50% - 20px);
  border-radius: 30px;
  transition: all 0.6s ease-in;
}

.section-title h2 .lora-logo {
  position: relative;
  top:-1px;
  filter: drop-shadow(1px 1px 0px #fff);
  transition: all 0.3s ease-in-out;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Avantages
--------------------------------------------------------------*/
#avantages.avantages {
  background: rgb(38,75,129);
  background: url(/assets/img/transparent-noise.webp) repeat, url(/assets/img/dnil-electronics_motif-points-circuits_blanc_2.svg) no-repeat, linear-gradient(160deg, rgba(38,75,129,1) 0%, rgba(12,117,191,1) 100%);
  background-size: auto,900px,auto;
  background-position: top left,calc(60% + 320px) -100px,top left;
  background-attachment: fixed,fixed,local;
  padding: 0;
}

.avantages .bg-blur-5 {
  height: 100%;
}

.avantages .icon-box {
  padding: 50px 30px;
  background: url(/assets/img/transparent-noise.webp) repeat, linear-gradient(160deg, rgb(255, 255, 255, 0.7), rgb(255, 255, 255, 1) 100%);
  background-blend-mode: difference;
  border: solid 1px #fff;
  border-radius: 10px;
}

@media (min-width: 992px){
  .avantages .icon-box:hover {
    background: #FFF;
  }
}

.avantages .icon-box .icon {
  margin-bottom: 10px;
}

.avantages .icon-box .icon i {
  color: var(--t-bleu-2);
  filter: drop-shadow(1px 1px 0px #fff);
  font-size: 36px;
  transition: 0.3s;
}

.avantages .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
  filter: drop-shadow(1px 1px 0px #fff);
}

.avantages .icon-box h4 {
  transition: ease-in-out 0.3s;
}

.avantages .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.avantages .icon-box:hover h4 {
  color: var(--t-bleu-2);
}

/*--------------------------------------------------------------
# A propos
--------------------------------------------------------------*/
.a-propos .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.a-propos .content .center-btn {
  display: flex;
  justify-content: center;
}

.a-propos .content .btn-learn-more {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--t-bleu-2);
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--t-bleu-2);
}

.a-propos .content .btn-learn-more:hover {
  background: var(--t-bleu-2);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Relais LoRa / Convertisseur analogique LoRa
--------------------------------------------------------------*/
/*---Section title---*/
.relais-lora .section-title,
.convertisseur-analogique-lora .section-title {
  height: 73px;
}

.relais-lora .section-title h2,
.convertisseur-analogique-lora .section-title h2 {
  transition: all 0.3s ease-in-out;
}

.relais-lora .section-title h2.sticky-js:not(.is-sticky),
.convertisseur-analogique-lora .section-title h2.sticky-js:not(.is-sticky) {
  position: relative !important;
  transition: all 0.3s ease-in-out;
}

.relais-lora .section-title h2.sticky-js.is-sticky,
.convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky {
  width: 100% !important;
  left: 0px !important;
  padding: 15px 0 10px 0;
  background: rgba(243, 245, 250, 0.5);
  z-index: 1;
  font-size: 22px;
  box-shadow: 0 20px 80px rgba(193, 199, 212, 0.3);
  backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(8px);
}

.relais-lora .section-title h2.sticky-js.is-sticky .lora-logo,
.convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky .lora-logo {
  width: 55px;
}

@media (max-width: 768px) {
  .relais-lora .section-title h2.sticky-js.is-sticky,
  .convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky {
    padding: 10px 0 7px 0;
    font-size: 18px;
  }
  
  .relais-lora .section-title h2.sticky-js.is-sticky .lora-logo,
  .convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky .lora-logo {
    width: 44px;
  }
}

.relais-lora .section-title h2.sticky-js.is-sticky::before,
.convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky::before {
  width: 100%;
  bottom: -1px;
  left: 0;
}

.relais-lora .section-title h2.sticky-js.is-sticky::after,
.convertisseur-analogique-lora .section-title h2.sticky-js.is-sticky::after {
  bottom: -2px;
}

.relais-lora .section-title h2 span,
.convertisseur-analogique-lora .section-title h2 span {
  font-size: 0;
}

/*---Content---*/
.relais-lora .container,
.convertisseur-analogique-lora .container {
  padding-top: 60px;
}

/*img*/
.relais-lora .images-produits.swiffy-slider,
.convertisseur-analogique-lora .images-produits.swiffy-slider {
  background: #FFF;
  border: 1px solid var(--t-clair-2);
  box-shadow: 0 20px 80px rgba(193, 199, 212, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .relais-lora .images-produits.swiffy-slider.is-sticky,
  .convertisseur-analogique-lora .images-produits.swiffy-slider.is-sticky {
    max-height: calc( 100vh - 180px);
  }
}

.relais-lora .images-produits.swiffy-slider .slide,
.convertisseur-analogique-lora .images-produits.swiffy-slider .slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 20px;
  aspect-ratio: 1 / 1;
}

.relais-lora .images-produits.swiffy-slider .slide .img-title,
.convertisseur-analogique-lora .images-produits.swiffy-slider .slide .img-title {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--t-gris-corps);
}

.relais-lora .images-produits.swiffy-slider .slider-nav,
.convertisseur-analogique-lora .images-produits.swiffy-slider .slider-nav {
  -webkit-filter: drop-shadow(0 5px 10px rgba(193, 199, 212, 0.5));
  filter: drop-shadow(0 5px 10px rgba(193, 199, 212, 0.5));
}

.relais-lora .images-produits.swiffy-slider .slider-nav::before,
.convertisseur-analogique-lora .images-produits.swiffy-slider .slider-nav::before {
  border-radius: 10px;
}

/*text*/
.relais-lora .content,
.convertisseur-analogique-lora .content {
  font-size: 15px;
}

.relais-lora .content h3,
.convertisseur-analogique-lora .content h3 {
  font-size: 28px;
  font-weight: 700;
}

.relais-lora .content h4,
.convertisseur-analogique-lora .content h4 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.relais-lora .content .produit-specs,
.convertisseur-analogique-lora .content .produit-specs {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-column-gap: 30px;
  grid-row-gap: 0;
}

@media (min-width: 992px) and (max-width: 1399px),
(max-width: 767px) {
  .relais-lora .content .produit-specs,
  .convertisseur-analogique-lora .content .produit-specs {
    display: flex;
    flex-direction: column;
  }
}

.relais-lora .content h5,
.convertisseur-analogique-lora .content h5 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--t-bleu-2);
}

.relais-lora .content ul li > span,
.convertisseur-analogique-lora .content ul li > span {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--t-gris-corps);
  
}

.relais-lora .content .demonstration {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
}

.relais-lora .content #demo-gif {
  background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTIzIDEwOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBmaWxsPSIjQzhENURDIiBkPSJNNTkuNywtMzNDNjkuMSwtMTguMiw2Mi43LDcuMiw1MC4xLDI2QzM3LjYsNDQuOSwxOC44LDU3LjIsMS44LDU2LjJDLTE1LjIsNTUuMiwtMzAuNCw0MC43LC00Mi40LDIyLjJDLTU0LjUsMy42LC02My40LC0xOS4xLC01NS45LC0zMi45Qy00OC4zLC00Ni43LC0yNC4xLC01MS42LDAuNSwtNTEuOUMyNS4xLC01Mi4yLDUwLjMsLTQ3LjksNTkuNywtMzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1OSA1MikiIC8+Cjwvc3ZnPg==") no-repeat;
  background-position: center calc(50% + 10px);
  width: 50%;
  height: fit-content;
  aspect-ratio: 1 / 1;
  order: -1;
}

.relais-lora .content #demo-gif img {
  mask-image: linear-gradient(0deg, #000000 92%, transparent 98%);
  filter: drop-shadow(0 5px 3px rgba(38, 75, 129, 0.5)) brightness(105%);
  width: 100%;
  max-width: 350px;
  object-fit: contain;
}

@media (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .relais-lora .content .demonstration {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .relais-lora .content #demo-gif {
    width: 350px;
    max-width: 100%;
    order: 1;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: url("../img/transparent-noise.webp") fixed repeat,linear-gradient(rgba(15, 101, 158, 0.8), rgba(38, 75, 129, 0.9)), url("../img/dnil-electronics_cta-bg.webp") fixed center center;
  background-size: auto, cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--t-bleu-1);
  border: 2px solid var(--t-bleu-1);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  box-shadow: 0 20px 80px rgba(193, 199, 212, 0.3);
  border-radius: 10px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--t-bleu-2);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--t-bleu-2);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Acheter
--------------------------------------------------------------*/
section#acheter {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(171deg, var(--t-clair-2) 20%, rgba(244,246,250,0) 100%), url(/assets/img/dnil-electronics_city_lorawan_background_2.webp) no-repeat;
  background-size: auto, cover;
  background-position: auto, center bottom;
}

.acheter .section-title h2::after {
  background: linear-gradient(90deg, rgba(0,55,229,1) 33%, rgba(255,255,255,1) 33%, rgba(255,255,255,1) 66%, rgba(226,0,0,1) 66%);
  box-shadow: 0 2px 8px 1px rgba(193, 199, 212, 0.3);
}

.acheter .section-title p q {
  font-style: italic;
}

.acheter .icon-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  background: #ffffffc0;
  border: solid 1px #fff;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(193, 199, 212, 0.3);
}

@media (min-width: 992px){
  .acheter .icon-box:hover {
    background: #FFF;
  }

  .acheter .icon-box:hover .box-button {
    transform: scale(1.05) rotate(-1deg);
  }

  .acheter .icon-box:hover .icon-info {
    background: var(--t-bleu-1);
    border: solid 2px var(--t-bleu-1);
  }
}

.acheter .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  filter: drop-shadow(1px 1px 0px #fff);
}

.acheter .icon-box h4 {
  transition: ease-in-out 0.3s;
}

.acheter .icon-box:hover h4 {
  color: var(--t-bleu-2);
}

.acheter .icon-box .box-button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background: #FFF;
  box-shadow: 0 20px 80px rgba(193, 199, 212, 0.7);
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.acheter .icon-box .icon-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--t-bleu-2);
  border: solid 2px var(--t-bleu-2);
  border-radius: 50px;
  padding : 6px 20px;
  transition: all 0.3s ease-in-out;
}

.acheter .icon-box .icon-info i {
  color: #FFF;
  font-size: 30px;
  transition: 0.3s;
}

.acheter .icon-box .icon-info h5{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1em;
  color: #FFF;
  margin-bottom: 0;
}

.acheter .icon-box .box-button button {
  background: #FFF;
  border: none;
  position: relative;
  margin-left: -30px;
  padding: 8px 10px 8px 35px;
}

.acheter .icon-box .box-button button i {
  color: var(--t-bleu-2);
  font-size: 20px;
}

.acheter .icon-box .box-button button:hover i {
  color: var(--t-bleu-1);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: var(--t-bleu-fonce);
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--t-bleu-fonce);
}

#footer .footer-top {
  padding: 60px 50px 30px 50px;
  background: #fff;
}

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

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

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  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: var(--t-bleu-2);
  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: var(--t-gris-corps);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--t-bleu-2);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Light box
--------------------------------------------------------------*/
.lightbox .carousel-inner .ratio img {
  transform: scale(90%);
}