@charset "UTF-8";
/* Sass files import */
/* SASS Variables */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  max-width: 100%;
  max-height: 100%;
}

body {
  background: #0E0F10;
}

.hide-on-tablet {
  display: block;
  visibility: visible;
}
@media only screen and (max-width: 1280px) {
  .hide-on-tablet {
    display: none !important;
    visibility: hidden;
  }
}

.hide-on-mobile {
  display: block;
  visibility: visible;
}
@media only screen and (max-width: 992px) {
  .hide-on-mobile {
    display: none !important;
    visibility: hidden;
  }
}

.hide-on-desktop {
  display: none;
  visibility: hidden;
}
@media only screen and (max-width: 992px) {
  .hide-on-desktop {
    display: block;
    visibility: visible;
  }
}

.hide-on-small {
  display: block;
  visibility: visible;
}
@media only screen and (max-width: 576px) {
  .hide-on-small {
    display: none !important;
    visibility: hidden;
  }
}

body {
  font-family: "Inter", sans-serif;
}

p,
span,
strong,
a,
ul li,
ol li {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  transition: font-size 0.3s ease;
}
p.pink-text,
span.pink-text,
strong.pink-text,
a.pink-text,
ul li.pink-text,
ol li.pink-text {
  color: #ff2455;
}
@media only screen and (max-width: 1500px) {
  p,
  span,
  strong,
  a,
  ul li,
  ol li {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1280px) {
  p,
  span,
  strong,
  a,
  ul li,
  ol li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  p,
  span,
  strong,
  a,
  ul li,
  ol li {
    font-size: 15px;
  }
}

b,
strong {
  font-weight: 600;
}

@media only screen and (max-width: 1500px) {
  li em span {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1280px) {
  li em span {
    font-size: 1em;
  }
}

ol {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
ol li {
  list-style-type: none;
  counter-increment: ol-counter;
  position: relative;
  padding-left: 65px;
  line-height: 50px;
}
ol li:before {
  content: counter(ol-counter);
  background: url(../images/rufiji-ol-background.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

#main-content a, footer a {
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}
#main-content a:after, footer a:after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, #82C9FF 0%, #FECEA2 25%, #F5A0CE 75%, #8629FD 100%);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: all 0.3s ease;
}
#main-content a:hover, footer a:hover {
  background: linear-gradient(90deg, #82C9FF 0%, #FECEA2 25%, #F5A0CE 75%, #8629FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#main-content a:hover:after, footer a:hover:after {
  width: 100%;
}

.no-word-break {
  white-space: nowrap;
}

.elementor-section a {
  color: #0E0F10;
  border-bottom: 1px dotted #0E0F10;
}

.icon-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.circle-title {
  background: url(../images/rufiji-circle-title-background.svg) no-repeat;
  background-size: cover;
  min-height: 115px;
  min-width: 115px !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  transition: all 0.3s ease;
}
.circle-title h3 {
  margin-bottom: 0;
}
.circle-title:hover {
  transform: scale(1.1);
  transform-origin: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 300;
  transition: font-size 0.3s ease;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1 span,
h1 b,
h1 i,
h1 strong,
h2 span,
h2 b,
h2 i,
h2 strong,
h3 span,
h3 b,
h3 i,
h3 strong,
h4 span,
h4 b,
h4 i,
h4 strong,
h5 span,
h5 b,
h5 i,
h5 strong,
h6 span,
h6 b,
h6 i,
h6 strong {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: none;
}
h1.pink-text,
h2.pink-text,
h3.pink-text,
h4.pink-text,
h5.pink-text,
h6.pink-text {
  color: #ff2455 !important;
}
h1.pink-text span,
h1.pink-text b,
h1.pink-text i,
h1.pink-text strong,
h2.pink-text span,
h2.pink-text b,
h2.pink-text i,
h2.pink-text strong,
h3.pink-text span,
h3.pink-text b,
h3.pink-text i,
h3.pink-text strong,
h4.pink-text span,
h4.pink-text b,
h4.pink-text i,
h4.pink-text strong,
h5.pink-text span,
h5.pink-text b,
h5.pink-text i,
h5.pink-text strong,
h6.pink-text span,
h6.pink-text b,
h6.pink-text i,
h6.pink-text strong {
  color: #ff2455 !important;
}

/* Page title on header */
h1 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 15px;
    text-align: center;
  }
}

/* Page description - big text */
h2 {
  font-size: 50px;
}
h2 span {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1680px) {
  h2 {
    font-size: 46px;
  }
}
@media only screen and (max-width: 1500px) {
  h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 36px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  h2 {
    font-size: 25px;
  }
}

/* Section title */
h3 {
  font-size: 36px;
}
h3 span {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1500px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1280px) {
  h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 22px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  h3 {
    font-size: 21px;
  }
}

/* Second level titles */
h4 {
  font-size: 28px;
}
h4 span {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1500px) {
  h4 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1280px) {
  h4 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 992px) {
  h4 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

/* Content category titles */
h5 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1500px) {
  h5 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1280px) {
  h5 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 992px) {
  h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  h5 {
    font-size: 15px;
  }
}

/* Used on footer */
h6 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-template-template-header-simple .elementor-element ul li {
  list-style-type: none;
  padding-left: 2em;
  position: relative;
  line-height: 1.5;
  margin-bottom: 1em;
}
.page-template-template-header-simple .elementor-element ul li:last-of-type {
  margin-bottom: 0;
}
.page-template-template-header-simple .elementor-element ul li:before {
  content: "";
  width: 25px;
  height: 2px;
  background: linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  position: absolute;
  top: 0.75em;
  left: 0;
}

#scrollTopBtn {
  cursor: pointer;
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #0E0F10;
  border: none;
  border-radius: 100%;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.button {
  font-size: 14px;
  font-weight: 600;
  color: #0E0F10;
  background: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 2.5rem;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .button {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1280px) {
  .button {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .button {
    font-size: 11px;
  }
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  filter: blur(10px);
  border-radius: 10px;
  z-index: -1;
  transition: all 0.3s ease;
}
.button:hover:after {
  filter: blur(15px);
}
.button.outline {
  background: none;
  border: 1px solid white;
  color: white;
}
.button.outline:after {
  display: none;
}

.elementor-button {
  background: #ffffff !important;
  padding: 1.25rem 2.5rem !important;
  border-radius: 10px !important;
}
.elementor-button span {
  color: #0E0F10 !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1500px) {
  .elementor-button span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1280px) {
  .elementor-button span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-button span {
    font-size: 11px;
  }
}
.elementor-button:after {
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21% !important);
  filter: blur(10px);
  border-radius: 10px;
  z-index: -1;
}
.elementor-button:hover {
  color: #0E0F10 !important;
  -webkit-text-fill-color: #0E0F10 !important;
}
.elementor-button:hover:after {
  filter: blur(15px);
}

header {
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px 50px 25px 50px;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 8000;
}
@media only screen and (max-width: 992px) {
  header {
    padding: 30px 20px 10px 20px;
  }
}
header.p-absolute {
  position: absolute;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease;
}
header .logo img {
  width: clamp(250px, 100%, 120%);
  max-width: 200px;
  height: auto;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  header .logo img {
    max-width: 160px;
  }
}
@media only screen and (max-width: 1280px) {
  header .logo img {
    max-width: 140px;
  }
}
header .button {
  font-size: 13px;
  padding: 1rem 1.75rem;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1500px) {
  header .button {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1280px) {
  header .button {
    font-size: 11px;
    letter-spacing: 0;
    padding: 0.75rem 1.25rem;
  }
}

.switch-language {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .switch-language {
    justify-content: flex-end;
  }
}
.switch-language p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-right: 20px;
}

.landing-section {
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  contain: paint;
}
.landing-section .content {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .landing-section .content {
    grid-template-columns: 100%;
  }
}
.landing-section .content .page-informations {
  opacity: 0;
  padding: 0;
  padding-right: 15rem;
}
@media only screen and (max-width: 1500px) {
  .landing-section .content .page-informations {
    padding-right: 12rem;
  }
}
@media only screen and (max-width: 1280px) {
  .landing-section .content .page-informations {
    padding-right: 8rem;
  }
}
@media only screen and (max-width: 992px) {
  .landing-section .content .page-informations {
    padding: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .landing-section .content .page-informations {
    padding: 2rem !important;
    padding-top: 0 !important;
    text-align: center;
  }
}
.landing-section .content .page-informations .button {
  margin-top: 1rem;
}
.landing-section .content .illustration-3d {
  opacity: 0;
  height: 100vh;
  mix-blend-mode: lighten;
}
@media only screen and (max-width: 992px) {
  .landing-section .content .illustration-3d {
    height: 50vh;
  }
}
@media only screen and (max-width: 767px) {
  .landing-section .content .illustration-3d {
    height: 45vh;
    margin-top: 0;
    margin-bottom: -5rem;
  }
}
.landing-section .content .illustration-3d video {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
}
.landing-section .landing-light-left {
  position: absolute;
  width: 60vw;
  height: 80vh;
  left: -30vw;
  top: 0;
  background: radial-gradient(50% 50% at 50% 50%, #381255 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .landing-section .landing-light-left {
    top: 50vh;
    height: 60vh;
  }
}
@media only screen and (max-width: 767px) {
  .landing-section .landing-light-left {
    top: 40vh;
    transform: scaleX(1.5) scaleY(0.4);
  }
}
.landing-section .landing-light-right {
  position: absolute;
  width: 100vw;
  height: 100vh;
  right: -62vw;
  top: -50vh;
  background: radial-gradient(50% 50% at 50% 50%, #A63B90 0%, #3C214E 0.01%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: 7000;
  mix-blend-mode: lighten;
}

.home .landing-section .content .page-informations {
  padding-right: 1rem;
  padding-left: 15rem;
}
@media only screen and (max-width: 1500px) {
  .home .landing-section .content .page-informations {
    padding-left: 12rem;
  }
}
@media only screen and (max-width: 1280px) {
  .home .landing-section .content .page-informations {
    padding-left: 8rem;
  }
}
@media only screen and (max-width: 992px) {
  .home .landing-section .content .page-informations {
    padding-left: 4rem;
  }
}
@media only screen and (min-width: 992px) {
  .home .landing-section .content .page-informations {
    grid-row: 1; /* NEW */
  }
}
@media only screen and (min-width: 992px) {
  .home .landing-section .content .illustration-3d {
    height: 100vh;
  }
}
.home .landing-section .content .illustration-3d video {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
}

.error404 .landing-section .content {
  display: flex;
  justify-content: center;
}
.error404 .landing-section .content .illustration-3d {
  height: 100vh;
}

.single .landing-section,
.page-template-template-header-simple .landing-section,
.category .landing-section {
  min-height: 50vh;
}
.single .landing-section .content,
.page-template-template-header-simple .landing-section .content,
.category .landing-section .content {
  display: flex;
  z-index: 200;
  justify-content: center;
  text-align: center;
}
.single .landing-section .content .page-informations,
.page-template-template-header-simple .landing-section .content .page-informations,
.category .landing-section .content .page-informations {
  padding: 0;
}
.single .landing-section .single-landing-section-overlay,
.page-template-template-header-simple .landing-section .single-landing-section-overlay,
.category .landing-section .single-landing-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#wpfront-notification-bar {
  max-height: 48px;
}
#wpfront-notification-bar .wpfront-message.wpfront-div {
  padding: 0.6rem;
}
@media only screen and (max-width: 767px) {
  #wpfront-notification-bar .wpfront-message.wpfront-div {
    max-width: 60vw;
  }
}
#wpfront-notification-bar .wpfront-close {
  border: none;
  font-size: 12px;
  margin: 15px 5px;
}

@media only screen and (min-width: 992px) {
  .menu li {
    display: inline-block;
    padding-right: 20px;
    padding-left: 0;
    position: relative;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1680px) {
  .menu li {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .menu li {
    padding-right: 3px;
  }
}
@media only screen and (min-width: 992px) {
  .menu li:before {
    display: none;
  }
  .menu li:last-of-type {
    padding-right: 0;
  }
  .menu li a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    background: #0E0F10;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1500px) {
  .menu li a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .menu li a {
    font-size: 10px;
    letter-spacing: 0;
    padding: 0.75rem 1.25rem;
  }
}
@media only screen and (min-width: 992px) {
  .menu li a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  .menu li.current-menu-item a:before, .menu li:hover a:before {
    width: 102.5%;
    height: 104%;
    left: -1%;
    top: -2%;
    border-radius: 10px;
  }
  .menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #141414;
    border-radius: 10px;
    padding: 1rem 1rem 1rem 0;
    transform: translateY(-10px);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .menu li ul.sub-menu li {
    pointer-events: none;
    white-space: nowrap;
  }
  .menu li ul.sub-menu li .submenu-icon-parent {
    width: 45px;
    display: flex;
    justify-content: space-evenly;
  }
  .menu li ul.sub-menu li a {
    background: none;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .menu li ul.sub-menu li a:before {
    display: none;
  }
  .menu li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 45%;
    right: 30px;
    width: 8px;
    height: 5px;
    background: url("../images/rufiji-submenu-icon.svg") no-repeat;
    background-size: contain;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1680px) {
  .menu li.menu-item-has-children:after {
    right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1500px) {
  .menu li.menu-item-has-children:after {
    right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .menu li.menu-item-has-children:after {
    right: 8px;
  }
}
@media only screen and (min-width: 992px) {
  .menu li.menu-item-has-children:hover .sub-menu {
    transform: translateY(10px);
    opacity: 1;
    height: auto;
    overflow: auto;
  }
  .menu li.menu-item-has-children:hover .sub-menu li {
    pointer-events: all;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-menu-trigger, .fermer-mobile-menu {
    cursor: pointer;
  }
  .mobile-menu-trigger a, .fermer-mobile-menu a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    background: #0E0F10;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1500px) {
  .mobile-menu-trigger a, .fermer-mobile-menu a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1280px) {
  .mobile-menu-trigger a, .fermer-mobile-menu a {
    font-size: 12px;
    letter-spacing: 0;
    padding: 0.75rem 1.25rem;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 7000;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .fermer-mobile-menu {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 8000;
  }
  nav.mobile {
    position: fixed;
    top: 35vh;
    left: 0;
    opacity: 0;
    width: 100vw;
    height: 100%;
    background: #0E0F10;
    z-index: 8000;
    padding: 2em;
    border: 1px solid rgba(193, 249, 255, 0.38);
    border-radius: 20px;
  }
  nav.mobile ul {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    height: 100%;
  }
  nav.mobile ul li {
    width: 100%;
    line-height: 3.25;
    list-style-type: none;
    border-bottom: 1px solid #666;
  }
  nav.mobile ul li.current-menu-item a {
    background: linear-gradient(90deg, #82C9FF 0%, #FECEA2 25%, #F5A0CE 75%, #8629FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  nav.mobile ul li .sub-menu {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  nav.mobile ul li .sub-menu.visible {
    opacity: 1;
    height: auto;
    overflow: auto;
  }
  nav.mobile ul li a {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 1rem 1rem 1rem 0;
    border-radius: 10px;
    display: flex;
    position: relative;
    background: #0E0F10;
  }
  nav.mobile ul li a .submenu-icon-parent {
    width: 45px;
    display: flex;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1500px) {
  nav.mobile ul li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1280px) {
  nav.mobile ul li a {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 992px) {
  nav.mobile .button.outline {
    margin-top: 1rem;
    left: calc(50% - 80px);
  }
}
::-moz-placeholder {
  color: #fff !important;
  opacity: 0.5 !important;
}
::placeholder {
  color: #fff !important;
  opacity: 0.5 !important;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

form input, form select, form textarea {
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  color: #fff !important;
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  padding: 0.5rem 1rem !important;
  margin-bottom: 8px !important;
  width: 100%;
}
@media only screen and (max-width: 1500px) {
  form input, form select, form textarea {
    font-size: 1.15em !important;
  }
}
@media only screen and (max-width: 1280px) {
  form input, form select, form textarea {
    font-size: 1.1em !important;
  }
}
@media only screen and (max-width: 992px) {
  form input, form select, form textarea {
    font-size: 1em !important;
  }
}
form .wpcf7-not-valid-tip {
  background: red;
  color: white !important;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
form .wpcf7-response-output {
  background: red;
  color: white !important;
  font-size: 1rem;
  border-radius: 10px;
  border: none !important;
  margin: 0 !important;
}
form input[type=submit],
form .subscribe-newsletter {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0E0F10 !important;
  background: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 2.5rem !important;
  border-radius: 10px !important;
  display: inline-block;
  position: relative;
  height: auto !important;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  form input[type=submit],
  form .subscribe-newsletter {
    font-size: 13px !important;
  }
}
@media only screen and (max-width: 1280px) {
  form input[type=submit],
  form .subscribe-newsletter {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 992px) {
  form input[type=submit],
  form .subscribe-newsletter {
    font-size: 1em !important;
  }
}
@media only screen and (max-width: 767px) {
  form input[type=submit],
  form .subscribe-newsletter {
    font-size: 11px !important;
  }
}
form input[type=submit]:after,
form .subscribe-newsletter:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  filter: blur(10px);
  border-radius: 10px;
  z-index: -1;
  transition: all 0.3s ease;
}
form input[type=submit]:hover:after,
form .subscribe-newsletter:hover:after {
  filter: blur(15px);
}
form input[type=submit] span,
form .subscribe-newsletter span {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-weight: normal;
}
form .wpforms-error {
  font-family: "Inter", sans-serif;
  font-size: 1em !important;
  color: #fff !important;
  font-weight: normal;
}

.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: #0b6467 !important;
  border: none !important;
}

/* Intégration Calendly - Prise de rdv */
.calendly-embed {
  height: 100%;
  border-radius: 10px;
  overflow: clip;
}
@media only screen and (max-width: 767px) {
  .calendly-embed {
    min-height: 70vh;
    height: auto;
    border-radius: 0;
  }
}

/* Inscription newsletter */
#optin-email {
  padding: 1rem;
  width: 100%;
}

.sib_signup_form .sib-alert-message-success {
  background-color: #0fc546 !important;
  border: none !important;
  color: #fff !important;
  font-size: 1em !important;
}
.sib_signup_form .sib-alert-message-warning {
  background-color: #c52020 !important;
  border: none !important;
  color: #fff !important;
  font-size: 1em !important;
}

.elementor-element.e-con.e-parent {
  margin: 6rem 0;
  overflow-x: clip;
}
@media only screen and (max-width: 1500px) {
  .elementor-element.e-con.e-parent {
    margin: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-element.e-con.e-parent {
    margin: 1rem 0;
  }
}

.home-3-blocks {
  padding: 5rem 8rem !important;
  gap: 1.5rem !important;
}
@media only screen and (max-width: 1500px) {
  .home-3-blocks {
    padding: 4rem 6rem !important;
  }
}
@media only screen and (max-width: 1280px) {
  .home-3-blocks {
    padding: 4rem 4.5rem !important;
  }
}
@media only screen and (max-width: 992px) {
  .home-3-blocks {
    padding: 2rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .home-3-blocks {
    padding: 5rem 2rem !important;
  }
}
.home-3-blocks .circuit-image-base,
.home-3-blocks .circuit-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-3-blocks .circuit-image-base img,
.home-3-blocks .circuit-image-hover img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .home-3-blocks .circuit-image-base,
  .home-3-blocks .circuit-image-hover {
    top: 0;
    transform: rotate(-90deg) scale(2);
  }
}
@media only screen and (max-width: 576px) {
  .home-3-blocks .circuit-image-base,
  .home-3-blocks .circuit-image-hover {
    transform: rotate(-90deg) scale(2.5);
  }
}
.home-3-blocks .circuit-image-base {
  opacity: 0;
}
.home-3-blocks .circuit-image-hover {
  opacity: 0.5;
}
.home-3-blocks .elementor-element.e-con {
  padding: 3rem;
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
}
@media only screen and (max-width: 1280px) {
  .home-3-blocks .elementor-element.e-con {
    padding: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .home-3-blocks .elementor-element.e-con {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .home-3-blocks .elementor-element.e-con {
    padding: 2rem !important;
  }
}
.home-3-blocks .elementor-element.e-con:hover img {
  transform: translateY(-10px);
}
.home-3-blocks .elementor-element.e-con:hover .icon-fade {
  opacity: 0;
}
.home-3-blocks h3 {
  text-align: center;
}
.home-3-blocks img {
  transition: all 0.3s ease;
}
.home-3-blocks .icon-fade {
  width: 100%;
  height: 70px;
  background: linear-gradient(transparent, black);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 500;
  transition: all 0.3s ease;
}

.section-nos-valeurs .valeurs-background-light {
  position: absolute;
  width: 1531px;
  height: 1343px;
  left: calc(50% - 765.5px);
  top: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #1B1C41 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
.section-nos-valeurs .icon-line .elementor-element.e-con {
  padding: 2rem;
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
}
.section-nos-valeurs .icon-line .elementor-element.e-con.empty {
  background: none;
  border: none;
}
.section-nos-valeurs .icon-line .elementor-element.e-con:hover img {
  transform: translateY(-10px);
}
.section-nos-valeurs .icon-line .elementor-element.e-con:hover .icon-fade {
  opacity: 0;
}
.section-nos-valeurs h4 {
  text-align: center;
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-nos-valeurs img {
  transition: all 0.3s ease;
}
.section-nos-valeurs .icon-fade {
  width: 100%;
  height: 70px;
  background: linear-gradient(transparent, black);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 500;
  transition: all 0.3s ease;
}

.profil-pour-vous-homepage {
  background: url(../images/profil-pour-vous-courbes.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.profil-pour-vous-homepage .profils-left-light {
  position: absolute;
  width: 1049px;
  height: 1083px;
  left: -100px;
  top: -250px;
  background: radial-gradient(50% 50% at 50% 50%, #381255 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 1500px) {
  .profil-pour-vous-homepage .profils-left-light {
    width: 889px;
    height: 973px;
    left: -170px;
    top: -120px;
  }
}
@media only screen and (max-width: 767px) {
  .profil-pour-vous-homepage .profils-left-light {
    transform: scale(0.5);
  }
}
.profil-pour-vous-homepage .profils-right-light {
  position: absolute;
  width: 787px;
  height: 813px;
  right: -550px;
  top: -200px;
  background: radial-gradient(50% 50% at 50% 50%, #172A5C 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .profil-pour-vous-homepage .profils-right-light {
    transform: scale(0.5);
  }
}

.comment-ca-marche-left-light {
  position: absolute;
  width: 1155px;
  height: 1191px;
  left: -868px;
  top: -100px;
  background: radial-gradient(50% 50% at 50% 50%, #381255 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .comment-ca-marche-left-light {
    transform: scale(0.5);
  }
}

.particuliers-section-1-light {
  position: absolute;
  width: 821px;
  height: 821px;
  left: 450px;
  top: 0;
  background: linear-gradient(180deg, #D9D9D9 0%, #8629FD 0.01%, #0E0F10 100%);
  opacity: 0.28;
  filter: blur(75px);
}
@media only screen and (max-width: 767px) {
  .particuliers-section-1-light {
    transform: scale(0.5);
  }
}

.particuliers-section-2-light {
  position: absolute;
  width: 869px;
  height: 869px;
  left: -264px;
  top: 0;
  background: linear-gradient(180deg, #3E1376 0%, #0E0F10 100%);
  opacity: 0.28;
  filter: blur(75px);
}
@media only screen and (max-width: 767px) {
  .particuliers-section-2-light {
    transform: scale(0.5);
  }
}

.rufiji-en-4-etapes .etapes-line {
  transform: translateY(550%);
}
@media only screen and (max-width: 1500px) {
  .rufiji-en-4-etapes .etapes-line {
    top: 42%;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-en-4-etapes .etapes-line {
    top: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-en-4-etapes .etapes-line {
    display: none;
  }
}
.rufiji-en-4-etapes .etapes-line img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .rufiji-en-4-etapes .circle-title:after {
    content: "";
    width: 1px;
    height: 90%;
    display: block;
    position: absolute;
    top: 100%;
    background: rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (max-width: 767px) and (max-width: 576px) {
  .rufiji-en-4-etapes .circle-title:after {
    height: 110%;
  }
}
.rufiji-en-4-etapes .etapes-left-light {
  position: absolute;
  width: 705px;
  height: 727px;
  left: -10vw;
  top: -5%;
  background: radial-gradient(50% 50% at 50% 50%, #1A2934 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .rufiji-en-4-etapes .etapes-left-light {
    transform: scale(0.5);
    top: -100px;
  }
}
.rufiji-en-4-etapes .etapes-right-light {
  position: absolute;
  width: 705px;
  height: 727px;
  left: 50vw;
  top: -5%;
  background: radial-gradient(50% 50% at 50% 50%, #1A2934 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .rufiji-en-4-etapes .etapes-right-light {
    transform: scale(0.5);
    left: -10vw;
    top: 480px;
  }
}

.bottom-page-CTA {
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
}
.bottom-page-CTA .e-con {
  padding-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .bottom-page-CTA .e-con {
    padding-top: 1rem;
    text-align: center !important;
    align-items: center !important;
  }
}

.category #main-content {
  max-width: 1140px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1280px) {
  .category #main-content {
    max-width: 100%;
    padding: 1rem;
  }
}

.breadcrumbs {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px 0 20px;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 2em;
}
.breadcrumbs p {
  color: #525252 !important;
}
.breadcrumbs a {
  font-size: 0.75em;
  background: none !important;
  background-clip: none !important;
  -webkit-text-fill-color: unset !important;
  color: #7e7e7e !important;
  transition: all 0.3s ease;
}
.breadcrumbs a.this-link, .breadcrumbs a:hover {
  color: #fff !important;
}
.breadcrumbs a:after {
  display: none !important;
}

.home .breadcrumbs,
.error404 .breadcrumbs {
  display: none;
}

.rufiji-pricing-table {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  /* Les points ont été cachés */
}
@media only screen and (max-width: 767px) {
  .rufiji-pricing-table {
    justify-content: flex-start;
    overflow-x: visible;
    overflow-y: hidden;
  }
}
.rufiji-pricing-table .not-available {
  opacity: 0.4;
}
.rufiji-pricing-table .rufiji-pricing-table-points {
  display: grid;
  grid-template-rows: 6% 25% 63%;
  padding: 4rem 0;
  display: none;
}
.rufiji-pricing-table .rufiji-pricing-table-points.details-supplementaires-active {
  grid-template-rows: 2% 12% 82%;
}
@media only screen and (max-width: 1500px) {
  .rufiji-pricing-table .rufiji-pricing-table-points.details-supplementaires-active {
    grid-template-rows: 1% 12% 82%;
  }
}
@media only screen and (max-width: 1500px) {
  .rufiji-pricing-table .rufiji-pricing-table-points {
    grid-template-rows: 5% 25% 66%;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-pricing-table .rufiji-pricing-table-points {
    grid-template-rows: 5% 27% 65%;
  }
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .rufiji-pricing-table-points {
    display: none;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-points ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
}
.rufiji-pricing-table .rufiji-pricing-table-points ul li {
  color: #797979;
  margin-bottom: 1rem;
  position: relative;
}
.rufiji-pricing-table .rufiji-pricing-table-points ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3b3b3b;
  position: absolute;
  bottom: -9px;
}
.rufiji-pricing-table .rufiji-pricing-table-points ul li.secondary {
  display: none;
}
.rufiji-pricing-table .rufiji-pricing-table-points ul li.secondary.visible {
  display: block;
}
.rufiji-pricing-table .detail-title {
  display: none;
  color: #797979;
  margin-bottom: 0;
}
.rufiji-pricing-table .detail-title:after {
  display: none !important;
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .detail-title {
    display: block;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col {
  padding: 3rem;
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  display: grid;
  grid-template-rows: 7% 25% 63%;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (max-width: 1500px) {
  .rufiji-pricing-table .rufiji-pricing-table-col {
    padding: 2rem;
  }
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .rufiji-pricing-table-col {
    grid-template-rows: 5% 33% 58%;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-pricing-table .rufiji-pricing-table-col {
    grid-template-rows: 4% 30% 62%;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-pricing-table .rufiji-pricing-table-col {
    min-width: calc(92vw - 2em);
    margin-bottom: 1em;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col.details-supplementaires-active {
  grid-template-rows: 3% 12% 82%;
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .rufiji-pricing-table-col.details-supplementaires-active {
    grid-template-rows: 2% 14% 82%;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-pricing-table .rufiji-pricing-table-col.details-supplementaires-active {
    grid-template-rows: 2% 13% 83%;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-pricing-table .rufiji-pricing-table-col.details-supplementaires-active {
    grid-template-rows: 2% 12% 85%;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col:hover {
  background: transparent;
}
.rufiji-pricing-table .rufiji-pricing-table-col:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #0E0F10, #3A1070, #0E0F10);
  z-index: -1;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Plus:before {
  background: linear-gradient(45deg, #0E0F10, #5B0935, #0E0F10);
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Plus:hover {
  border-color: #5B0935;
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Plus:hover:before {
  background: linear-gradient(-45deg, #0E0F10, #5B0935, #0E0F10);
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Premium:before {
  background: linear-gradient(45deg, #0E0F10, #5B4A0D, #0E0F10);
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Premium:hover {
  border-color: #5B4A0D;
}
.rufiji-pricing-table .rufiji-pricing-table-col.forfait-Premium:hover:before {
  background: linear-gradient(-45deg, #0E0F10, #5B4A0D, #0E0F10);
}
.rufiji-pricing-table .rufiji-pricing-table-col:hover {
  -o-border-image: none;
     border-image: none;
  border-color: #3A1070;
}
.rufiji-pricing-table .rufiji-pricing-table-col:hover:before {
  opacity: 1;
  background: linear-gradient(-45deg, #0E0F10, #3A1070, #0E0F10);
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-title {
  font-size: 26px;
  font-weight: 400;
}
@media only screen and (max-width: 1500px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-title {
    font-size: 21px;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-title {
    font-size: 18px;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-main-informations {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}
@media only screen and (max-width: 1280px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-main-informations {
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-main-informations img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
@media only screen and (max-width: 1500px) {
  .rufiji-pricing-table .rufiji-pricing-table-col .forfait-main-informations img {
    max-width: 115px;
  }
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-comparaison-values p {
  position: relative;
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-comparaison-values p:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3b3b3b;
  position: absolute;
  bottom: -9px;
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-details-supplementaires {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease;
}
.rufiji-pricing-table .rufiji-pricing-table-col .forfait-details-supplementaires.visible {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.rufiji-pricing-table .rufiji-pricing-table-col a.voir-plus-forfait {
  text-align: center;
  color: #797979 !important;
}
.rufiji-pricing-table .rufiji-pricing-table-col a.voir-plus-forfait:after {
  display: none !important;
}

.splide__list {
  align-items: center;
}

.section-compteurs-rufiji .e-con-inner {
  gap: 1rem !important;
}
@media only screen and (max-width: 992px) {
  .section-compteurs-rufiji .e-con-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .section-compteurs-rufiji .e-con-inner .elementor-element.e-con {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .section-compteurs-rufiji .e-con-inner {
    display: flex !important;
  }
  .section-compteurs-rufiji .e-con-inner .elementor-element.e-con {
    width: 100% !important;
  }
}
.section-compteurs-rufiji .elementor-element.e-con {
  padding: 4rem 3rem;
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: padding-box;
}
@media only screen and (max-width: 1500px) {
  .section-compteurs-rufiji .elementor-element.e-con {
    padding: 4rem 2rem;
  }
}
.section-compteurs-rufiji .elementor-counter-number-wrapper span {
  /* Same styles as the H3 */
  font-size: 36px;
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1500px) {
  .section-compteurs-rufiji .elementor-counter-number-wrapper span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1280px) {
  .section-compteurs-rufiji .elementor-counter-number-wrapper span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .section-compteurs-rufiji .elementor-counter-number-wrapper span {
    font-size: 22px;
  }
}
.section-compteurs-rufiji .elementor-counter-title {
  /* Same as paragraph */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5 !important;
  transition: font-size 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .section-compteurs-rufiji .elementor-counter-title {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1280px) {
  .section-compteurs-rufiji .elementor-counter-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .section-compteurs-rufiji .elementor-counter-title {
    font-size: 16px;
  }
}

.elementor-widget-tabs {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.elementor-widget-tabs .elementor-tabs-wrapper {
  display: flex;
  flex-direction: row;
}
.elementor-widget-tabs .elementor-tab-title {
  border-color: rgba(255, 255, 255, 0.2) !important;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .elementor-widget-tabs .elementor-tab-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1280px) {
  .elementor-widget-tabs .elementor-tab-title {
    font-size: 19px;
  }
}
@media only screen and (max-width: 992px) {
  .elementor-widget-tabs .elementor-tab-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-tabs .elementor-tab-title {
    font-size: 17px;
  }
}
.elementor-widget-tabs .elementor-tab-title:before {
  content: "";
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #82C9FF 0%, #FECEA2 25%, #F5A0CE 75%, #8629FD 100%);
  right: 0 !important;
  bottom: auto !important;
  top: 0;
  left: 0;
  border: none !important;
  transition: all 0.3s ease;
}
.elementor-widget-tabs .elementor-tab-title:hover {
  color: #fff;
}
.elementor-widget-tabs .elementor-tab-title.elementor-active {
  color: #fff;
}
.elementor-widget-tabs .elementor-tab-title.elementor-active:before {
  width: 100% !important;
}
.elementor-widget-tabs .elementor-tabs-content-wrapper {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content {
  border-color: rgba(255, 255, 255, 0.2) !important;
  padding: 5rem !important;
}
@media only screen and (max-width: 767px) {
  .elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content {
    padding: 1rem 3rem !important;
  }
}
.elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style-image: url("../images/rufiji-check-list-image.svg");
}
@media only screen and (max-width: 767px) {
  .elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content ul {
    display: block;
  }
}
.elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content ul li {
  padding: 1.5rem 2rem 1.5rem 1rem;
}
@media only screen and (max-width: 767px) {
  .elementor-widget-tabs .elementor-tabs-content-wrapper .elementor-tab-content ul li {
    padding: 0.9rem;
  }
}

.team-line {
  margin: 5rem 0 0 0 !important;
}
@media only screen and (max-width: 1500px) {
  .team-line {
    margin: 3rem 0 0 0 !important;
  }
}

.rufiji-team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 1500px) {
  .rufiji-team-members {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.rufiji-team-members .single-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rufiji-team-members .single-member figure {
  position: relative;
  width: 230px;
  height: 230px;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .rufiji-team-members .single-member figure {
    width: 190px;
    height: 190px;
  }
  .rufiji-team-members .single-member figure img {
    left: calc(50% - 95px) !important;
  }
}
@media only screen and (max-width: 1280px) {
  .rufiji-team-members .single-member figure {
    width: 180px;
    height: 180px;
  }
  .rufiji-team-members .single-member figure img {
    left: calc(50% - 90px) !important;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-team-members .single-member figure {
    width: 160px;
    height: 160px;
  }
  .rufiji-team-members .single-member figure img {
    left: calc(50% - 80px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-team-members .single-member figure {
    width: 200px;
    height: 200px;
  }
  .rufiji-team-members .single-member figure img {
    left: calc(50% - 100px) !important;
  }
}
@media only screen and (max-width: 576px) {
  .rufiji-team-members .single-member figure {
    width: 180px;
    height: 180px;
  }
  .rufiji-team-members .single-member figure img {
    left: calc(50% - 90px) !important;
  }
}
.rufiji-team-members .single-member figure img {
  position: absolute;
  top: 0;
  left: calc(50% - 115px);
  transition: all 0.3s ease;
  border-radius: 100%;
}
.rufiji-team-members .single-member figure img.member-image-to {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.rufiji-team-members .single-member figure .member-outline {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  transform: scale(1.4);
}
.rufiji-team-members .single-member figure:hover img.member-image-to {
  opacity: 1;
}
.rufiji-team-members .single-member figure:hover .member-outline {
  transform: scale(1.45);
}
.rufiji-team-members .single-member .member-social-media-links {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.rufiji-team-members .single-member .member-social-media-links li a:after {
  display: none !important;
}
.rufiji-team-members .single-member .member-social-media-links li a img {
  max-width: 24px;
}
@media only screen and (max-width: 1500px) {
  .rufiji-team-members .single-member .member-social-media-links li a img {
    max-width: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-team-members .single-member .member-social-media-links li a img {
    max-width: 16px;
  }
}
.rufiji-team-members.advisor-members {
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 1280px) {
  .rufiji-team-members.advisor-members {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rufiji-team-members.advisor-members .single-member figure {
  width: 170px;
  height: 170px;
}
.rufiji-team-members.advisor-members .single-member figure img {
  left: calc(50% - 85px);
}
@media only screen and (max-width: 1500px) {
  .rufiji-team-members.advisor-members .single-member figure {
    width: 140px;
    height: 140px;
  }
  .rufiji-team-members.advisor-members .single-member figure img {
    left: calc(50% - 70px) !important;
  }
}
@media only screen and (max-width: 1280px) {
  .rufiji-team-members.advisor-members .single-member figure {
    width: 130px;
    height: 130px;
  }
  .rufiji-team-members.advisor-members .single-member figure img {
    left: calc(50% - 70px) !important;
  }
}
@media only screen and (max-width: 992px) {
  .rufiji-team-members.advisor-members .single-member figure {
    width: 120px;
    height: 120px;
  }
  .rufiji-team-members.advisor-members .single-member figure img {
    left: calc(50% - 60px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .rufiji-team-members.advisor-members .single-member figure {
    width: 160px;
    height: 160px;
  }
  .rufiji-team-members.advisor-members .single-member figure img {
    left: calc(50% - 80px) !important;
  }
}
@media only screen and (max-width: 576px) {
  .rufiji-team-members.advisor-members .single-member figure {
    width: 140px;
    height: 140px;
  }
  .rufiji-team-members.advisor-members .single-member figure img {
    left: calc(50% - 70px) !important;
  }
}
.rufiji-team-members.advisor-members .single-member h5 {
  color: white;
  -webkit-text-fill-color: initial;
  letter-spacing: 0;
}
.rufiji-team-members.advisor-members .single-member p {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rufiji-team-members .members-section-light {
  position: absolute;
  width: 1275px;
  height: 1316px;
  left: calc(50% - 637.5px);
  top: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #291E11 0%, #0E0F10 100%, #091117 100%);
  border-radius: 100%;
  z-index: -1;
}

.elementor-toggle .elementor-toggle-item .elementor-tab-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #3e3f40;
}
.elementor-toggle .elementor-toggle-item .elementor-tab-title.elementor-active .elementor-toggle-title {
  font-weight: 600;
  background: linear-gradient(90deg, #82C9FF 0%, #FECEA2 25%, #F5A0CE 75%, #8629FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.elementor-toggle .elementor-toggle-item .elementor-toggle-icon .elementor-toggle-icon-closed svg path {
  fill: #fff;
}
.elementor-toggle .elementor-toggle-item .elementor-toggle-icon .elementor-toggle-icon-opened svg path {
  fill: #fff;
}
.elementor-toggle .elementor-toggle-item a.elementor-toggle-title:after {
  display: none !important;
}

.telechargement-fiche-produit .e-con-inner:not(.e-child) {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 5rem;
}
@media only screen and (max-width: 767px) {
  .telechargement-fiche-produit .e-con-inner:not(.e-child) {
    padding: 2rem 1rem !important;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media only screen and (max-width: 1280px) {
  .testimonial-grid {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-grid {
    grid-template-columns: auto;
  }
}
.testimonial-grid .testimonial-card {
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 2rem 1rem 1rem 1rem;
  overflow: clip;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .testimonial-grid .testimonial-card {
    padding-bottom: 2.5rem;
  }
}
.testimonial-grid .testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-grid .testimonial-card .testimonial-quote-image {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.testimonial-grid .testimonial-card .testimonial-card-content {
  padding: 1rem;
  display: grid;
  grid-template-rows: 70% 30%;
  height: 100%;
}
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-author {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-author p {
  margin-bottom: 0;
}
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-author .testimonial-author-image {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow: clip;
}
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-excerpt,
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-post-date {
  font-size: 1.1rem;
}
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-post-date,
.testimonial-grid .testimonial-card .testimonial-card-content .testimonial-author-name {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media only screen and (max-width: 1280px) {
  .news-grid {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 767px) {
  .news-grid {
    grid-template-columns: auto;
  }
}
.news-grid .news-card {
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0;
  overflow: clip;
  transition: all 0.3s ease;
}
.news-grid .news-card:hover {
  transform: translateY(-5px);
}
.news-grid .news-card .main-informations {
  min-height: 300px;
  position: relative;
}
.news-grid .news-card .main-informations a.news-card-link {
  display: block;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-grid .news-card .main-informations a.news-card-link:after {
  display: none !important;
}
.news-grid .news-card .main-informations .news-categories {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.news-grid .news-card .main-informations .news-categories li {
  display: inline-block;
  line-height: 1.5 !important;
  margin-right: 5px;
  border: 1px solid white;
  border-radius: 30px;
  padding: 0rem 1rem 0.25rem 1rem;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.news-grid .news-card .main-informations .news-categories li a {
  font-size: 1rem;
  line-height: 1;
}
.news-grid .news-card .main-informations .news-categories li a:after {
  display: none !important;
}
.news-grid .news-card .main-informations .news-categories li:last-of-type {
  margin-right: 0;
}
.news-grid .news-card .main-informations .news-categories li:before {
  display: none !important;
}
.news-grid .news-card .news-card-content {
  padding: 1rem;
}
.news-grid .news-card .news-card-content .news-card-title {
  margin-bottom: 1rem;
}
.news-grid .news-card .news-card-content .news-excerpt,
.news-grid .news-card .news-card-content .news-post-date {
  font-size: 1.1rem;
}
.news-grid .news-card .news-card-content .news-post-date {
  background: linear-gradient(90deg, #F6A85C, #F59333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.news-pagination {
  text-align: center;
  margin-top: 2rem;
}
.news-pagination a {
  margin: 0 5px;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(90deg, black, black, black, black);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.news-pagination a:hover, .news-pagination a.active {
  background-image: linear-gradient(90deg, black, black, black, black), linear-gradient(96.88deg, #82C9FF 0.22%, #FECEA2 32.89%, #F5A0CE 72.89%, #8629FD 99.21%) !important;
  background-clip: padding-box, border-box !important;
  background-origin: border-box !important;
  -webkit-text-fill-color: white !important;
}
.news-pagination a:after {
  display: none !important;
}

.single-post .actualites-single {
  background: none !important;
  margin: 2rem 10rem 3rem 10rem;
}
@media only screen and (max-width: 1500px) {
  .single-post .actualites-single {
    margin: 2rem 8rem 3rem 8rem;
  }
}
@media only screen and (max-width: 992px) {
  .single-post .actualites-single {
    margin: 2rem 6rem 3rem 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .single-post .actualites-single {
    margin: 2rem 2rem 3rem 2rem;
  }
}
.single-post .actualites-single .news-category {
  display: inline-block;
  line-height: 1.5 !important;
  margin-right: 5px;
  margin-bottom: 1rem;
  border: 1px solid white;
  border-radius: 30px;
  padding: 0.5rem 1rem 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.single-post .actualites-single .news-category p {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0;
}
.single-post .news-author {
  margin-top: 2rem;
}
.single-post .back-to-news-btn {
  display: inline-block;
}

footer {
  margin: 0 4rem;
}
@media only screen and (max-width: 767px) {
  footer {
    margin: 0 1rem;
  }
}
footer .footer-container {
  padding: 5rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  footer .footer-container {
    padding: 2rem 1.5rem;
  }
}
footer .footer-container .footer-information {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1280px) {
  footer .footer-container .footer-information {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  footer .footer-container .footer-information {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-container .footer-information {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .footer-container .footer-information .footer-widget .logo {
  margin-bottom: 1rem;
}
footer .footer-container .footer-information .footer-widget .logo img {
  max-width: 230px;
  height: auto;
}
footer .footer-container .footer-information .footer-widget p, footer .footer-container .footer-information .footer-widget li, footer .footer-container .footer-information .footer-widget a {
  font-size: 16px;
  line-height: 1.5;
}
footer .footer-container .footer-information .footer-widget ul {
  list-style-type: none;
  padding-left: 0;
}
footer .footer-container .footer-information .footer-widget ul li {
  line-height: 1.75;
}
footer .footer-container .footer-information .footer-widget .footer-social-media {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
footer .footer-psan-adan {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 2rem 0 1rem 0;
}
@media only screen and (max-width: 767px) {
  footer .footer-psan-adan {
    flex-direction: column;
  }
}
footer .footer-psan-adan p, footer .footer-psan-adan li, footer .footer-psan-adan a {
  font-size: 12px;
  line-height: 1.5;
  color: #8D8D8D;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-top: 1px solid #8D8D8D;
}
@media only screen and (max-width: 767px) {
  footer .copyright {
    flex-direction: column;
  }
}
footer .copyright p, footer .copyright a, footer .copyright span {
  color: #8D8D8D;
  font-size: 15px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  footer .copyright p, footer .copyright a, footer .copyright span {
    line-height: 2.5;
  }
}
footer .copyright .copyright-logo {
  margin: 0 10px;
  width: 20px;
  transform: translateY(3px);
  transition: all 0.3s ease;
}
footer .copyright .copyright-logo:hover {
  transform: translateY(3px) rotateY(180deg);
}/*# sourceMappingURL=theme.css.map */