.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 30px 30px;
}

.nav__burger {
  padding: 5px;
  cursor: pointer;
  background-image: url("../images/burger.svg");
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
}

.nav__links {
  display: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
  padding: 0;
}

@media (max-width: 1225px) {
  .active .nav__burger {
    background-image: url("../images/croix.svg");
  }
  .nav.active {
    background-color: white;
  }
  .active .nav__links {
    padding-top: 50px;
    height: 100vh;
    background-color: white;
  }
  .nav__links.active {
    display: flex;
  }
}
.nav__item:hover .underline {
  display: block;
}

.nav__item--active .underline {
  display: block;
}

.nav__item {
  text-align: center;
}

.nav__item--cta {
  display: flex;
}

.nav__item--cta .btn {
  background-color: #0C1C40;
  transition: background-color 0.4s ease;
}
.nav__item--cta .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url("../images/cta-icon.svg");
  background-repeat: no-repeat;
}
.nav__item--cta .btn:hover {
  background-color: #5D6880;
}
.nav__item--cta a {
  color: white;
  padding: 1px;
  border-radius: 34px;
  display: inline-block;
  background: linear-gradient(to right, #666666, #0C1C40);
}

.nav .nav__item--cta a {
  color: white;
  font-size: 14px;
}

.nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0px 20px;
  margin-bottom: 50px;
}

.nav__item a {
  font-size: 14px;
  color: #0C1C40;
  text-decoration: none;
}

.nav ul li {
  display: flex;
  align-items: center;
}

.nav__logo {
  display: inline-block;
}
.nav__logo img {
  display: block;
}

.nav .logo {
  flex: 1;
  align-self: left !important;
}

@media (min-width: 1225px) {
  .nav {
    padding: 0px;
  }
  .nav__links {
    display: flex;
    width: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    position: relative;
    margin: 16px 0px;
    top: 0;
    left: 0;
  }
  .nav__logo {
    margin-left: 30px;
  }
  .nav__item {
    display: inline-block;
    margin-bottom: 0px;
  }
  .nav__burger {
    display: none;
  }
}
.footer {
  background-color: #fff;
  padding: 30px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  margin-top: 22px;
}

.footer__logo img {
  max-width: 150px;
}

.footer__logo p {
  font-size: 14px;
  color: #191A2F;
  margin-top: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}

.footer__column {
  width: 190px;
}

.footer__column h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

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

.footer__column ul li {
  margin-bottom: 8px;
}

.footer__column ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
}

.footer__social {
  margin-top: 25px;
}

.footer__social a {
  margin-left: 20px;
}

.footer__social img {
  width: 16px;
  height: 16px;
}

.footer__social--mobile {
  display: inline-flex;
}

.footer__social--desktop {
  display: none;
}

@media (min-width: 900px) {
  .footer__links {
    margin-left: 0px;
    flex-direction: row;
  }
  .footer__social--mobile {
    display: none;
  }
  .footer__social--desktop {
    display: inline-flex;
    margin-left: auto;
  }
  .footer__social a {
    margin-left: 0px;
    margin-right: 20px;
  }
  .footer__column {
    width: 250px;
  }
  .footer__links {
    gap: 40px;
  }
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}
html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0px;
  background-color: white;
  background-image: radial-gradient(circle at top right, rgb(170, 239, 229), transparent 700px);
  background-repeat: no-repeat;
  z-index: -1;
  overflow-x: hidden;
}

main {
  max-width: 1165px;
  margin: auto;
  padding: 0px 30px;
}

.hidden {
  display: none;
}

.underline {
  border-top: 2px solid #0C1C40;
  width: 35px;
  position: absolute;
  top: 30px;
  border-radius: 1.5px;
}

.text-white {
  color: white;
}

.text-primary {
  color: #01CEB0;
}

.text-danger {
  color: #ED5151;
}

.bg-primary {
  background-color: #01CEB0;
  transition: background-color 0.4s ease;
}

.bg-primary:hover {
  background-color: #56DECA;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  padding: 15px 30px 15px 30px;
  text-decoration: none;
  display: inline-block;
  border-radius: 34px;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 1;
}

.btn-discover {
  color: #0C1C40;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 14px 30px 14px 30px;
  background-color: white;
}

.btn::after {
  position: relative;
  left: 10px;
}

.btn--cta::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-position: center;
  background-image: url("../images/cta-icon.svg");
  background-repeat: no-repeat;
  position: relative;
  left: 10px;
}

.btn-discover-border {
  position: relative;
  display: inline-block;
  padding: 1px;
  border-radius: 34px;
  background: linear-gradient(to right, #01CEB0, #0C1C40);
  transition: background 0.4s ease;
  z-index: 1;
}

.btn-discover-border::before {
  position: absolute;
  border-radius: 34px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #01CEB0;
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}

.btn-discover-border:hover::before {
  opacity: 1;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__sideText--rightKk {
  margin-left: 80px;
}

.section__sideText {
  position: relative;
  z-index: 1;
  max-width: 572px;
  width: 100%;
}

.section__sideText__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
}

.section__sideText__text {
  margin-top: 25px;
  font-size: 18px;
}

.section__sideText__cta {
  margin-top: 27px;
}

.section__sideText__list {
  list-style: none;
}

.section__sideText__list li {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.section__sideText__list li::before {
  display: inline-flex;
  content: "";
  position: relative;
  left: 0px;
  top: 7px;
  flex: none;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  justify-content: center;
  background-image: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section__sideImg {
  position: relative;
}

.section__sideImg--right {
  margin-right: -240px;
  right: 185px;
}

.section__sideImg--left {
  margin-left: -231px;
  left: 90px;
}

.section__sideImg--leftKk {
  margin-left: -109px;
}

.section__sideImg--rightKk {
  margin-right: 100px;
  left: 29px;
}

.section--space {
  margin-top: 190px;
}

.section-number {
  position: absolute;
  width: 126px;
  height: 108px;
  top: -117px;
  left: -70px;
  background-repeat: no-repeat;
}

.brands {
  max-width: 615px;
  width: 100%;
  display: inline-flex;
  margin-top: 24px;
  justify-content: space-between;
  padding-bottom: 25px;
  flex-direction: row;
  border-bottom: 1px solid #AEB3BF;
}

.brands img {
  padding: 0px 10px;
}

.brands img:nth-child(1) {
  padding-left: 0px;
}

.brands img:nth-last-child(-n+1) {
  padding-right: 0px;
}

/**
 * Video
 */
.videoMockup {
  display: block;
  flex: 1;
  position: relative;
  top: -20px;
  max-width: 561px;
  width: 100%;
  margin-left: 20px;
  margin-top: 200px;
  margin-bottom: 200px;
}

.home .videoMiniature .videoMockup {
  margin-left: 0px;
  flex: 1;
}

.home .videoMiniature .videoMockup__screen {
  border-radius: 100px 100px 0% 0%;
}

.videoMiniature {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px 0px rgb(192, 216, 238);
  padding: 3px;
  border-radius: 0px 100% 100% 100%;
  background-color: white;
  width: 117px;
  height: 117px;
}

@media (max-width: 900px) {
  .videoMiniature {
    width: 96px;
    height: 96px;
  }
  .home .videoMiniature .videoMockup__screen {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.videoMiniature .playText {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #0C1C40;
  font-weight: 500px;
  margin-bottom: 10px;
  font-size: 14px;
}

.videoMockup:before {
  content: "";
  position: absolute;
  display: block;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  z-index: -1;
  background-color: #C0D8EE;
  border-radius: 100%;
  filter: blur(200px);
}

.videoMockup:after {
  content: "";
  position: absolute;
  display: block;
  height: 13px;
  bottom: -40px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(174, 179, 191, 0) 0%, rgb(174, 179, 191) 50%, rgba(174, 179, 191, 0) 100%);
  border-radius: 100%;
  filter: blur(10px);
}

.videoMockup__screen {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 30px;
  border: 2px solid #fff;
  overflow: hidden;
  background-color: #fff;
}

.soundButton {
  position: absolute;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  border-radius: 10px;
  border-style: none;
  background-image: url("../images/sound-disabled.svg");
  background-color: rgba(12, 28, 64, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 29px 29px;
}

.soundButton:hover {
  cursor: pointer;
}

.soundButton.muted {
  background-image: url("../images/sound-enabled.svg");
}

.videoMockup__screen:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.videoMiniature .videoMockup__screen:before {
  border-radius: 100px 100px 0px 0px;
  box-shadow: inset 0px 0px 10px 0px rgba(192, 216, 238, 0.7);
  position: relative;
  z-index: 1;
}

.videoMockup__screen > video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sectionKapticsKit {
  display: flex;
  max-width: 1165px;
  margin: 150px auto 0px auto;
  flex-direction: row;
  border-radius: 20px;
  background-image: radial-gradient(circle at 20% 100%, #C0D8EE, transparent 500px);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: white;
  border: 1px solid white;
  position: relative;
}

.kaptics-carousel, .kaptics-carousel .owl-stage-router {
  border-radius: 20px;
}

.kaptics-carousel::after {
  content: "";
  position: absolute;
  top: -150px;
  bottom: -150px;
  left: -150px;
  right: -150px;
  background-image: url("../images/section-kapticskit-bg.svg");
  background-repeat: no-repeat;
  background-size: 80% 90%;
  background-position: center;
  z-index: -1;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.kaptics-carousel .owl-dot {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid white !important;
  margin: 0 5px;
  background: rgb(221, 221, 221) !important;
  background: linear-gradient(50deg, rgb(221, 221, 221) 0%, rgb(255, 255, 255) 100%) !important;
  border-radius: 50%;
  cursor: pointer;
}

.owl-dot.active {
  background: #000; /* Couleur active */
  position: relative;
}

.owl-dot.active::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  -webkit-box-shadow: inset 2px -2px 4px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 2px -2px 4px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 2px -2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #4E93CC;
}

.owl-carousel {
  margin-bottom: 100px;
}

.sectionKapticsKit .section__sideText {
  padding: 60px 40px 60px 40px;
}

.sectionKapticsKit .section__sideText__title {
  font-size: 42px;
}

.sectionKapticsKit .section__sideText__list {
  font-size: 18px;
}

.sectionKapticsKit .section__sideImg {
  padding: 0px 40px;
}

.sectionKapticsKit.section {
  align-items: flex-end;
}

@media (max-width: 900px) {
  body {
    background-image: radial-gradient(circle at top right, rgb(170, 239, 229), transparent 350px);
  }
  main {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
  }
  .section-number {
    top: -117px;
    left: -52px;
  }
  .section {
    margin: 120px 0px 120px 0px;
    flex-direction: column;
  }
  .section__sideText {
    margin-top: 90px;
    max-width: 100%;
  }
  .section__sideText__title {
    font-size: 28px;
  }
  .section__sideImg--left {
    margin-left: 0px;
    left: 0px;
  }
  .section .section__sideText {
    order: 2;
  }
  .section .section__sideImg--right {
    order: 1;
  }
  .section__sideText--right {
    margin-left: 0px;
  }
  .section__sideImg img {
    width: 100%;
    height: auto;
  }
  .section__sideText__cta {
    text-align: center;
  }
  .videoMockup {
    margin: 0 0 50px 0;
  }
  .sectionKapticsKit {
    flex-direction: column;
    background-image: radial-gradient(circle at 10% 90%, #C0D8EE, transparent 400px);
    box-sizing: border-box;
    margin: 150px 0px 10px 0px;
  }
  .sectionKapticsKit::after {
    content: "";
    position: absolute;
    top: -150px;
    bottom: -150px;
    left: -150px;
    right: -150px;
    background-image: url("../images/section-kapticskit-bg-mobile.svg");
    background-repeat: no-repeat;
    background-size: 100% 90%;
    background-position: center center;
    z-index: -1;
  }
  .sectionKapticsKit .section__sideText {
    width: 100%;
    margin-top: 0px;
    padding: 60px 25px 0px 25px;
    box-sizing: border-box;
    order: 1;
  }
  .section__sideText__list li::before {
    top: 5px;
  }
  .sectionKapticsKit .section__sideText__title {
    margin-left: -6px;
  }
  .sectionKapticsKit__sideText__cta {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
  }
  .section__sideText__cta a:first-child {
    margin-right: 0px;
  }
  .sectionKapticsKit .section__sideImg {
    order: 2;
  }
  .sectionKapticsKit .section__sideText__title {
    font-size: 32px;
  }
  .sectionKapticsKit .section__sideText__list {
    font-size: 16px;
  }
  .sectionKapticsKit .section__sideImg {
    padding: 0px 10px;
  }
  .brands {
    padding-bottom: 0px;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .brands img {
    margin-bottom: 30px;
  }
  .brands img:nth-child(2) {
    padding: 0px 10px;
  }
  .brands img:nth-child(3) {
    padding-right: 0px;
  }
  .brands img:last-child {
    margin-right: 10px;
  }
}
main.OurResources {
  max-width: 100%;
  padding: 0px;
}

.pagination ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  text-decoration: none;
  color: #333;
  border-radius: 4px;
}

.pagination .current {
  text-decoration: underline;
  font-weight: bold;
}

/*# sourceMappingURL=our-resources.css.map */
