:root {
    --primary: #067790;
    --grey: #f6f6f6;
    --bg-card: #1e293b;
    --cyan: #80dce8;
    --border: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --blue-dark: #181852;
    --gradient-1: linear-gradient(135deg, #181852 0%, #067790 60%, #80dce8 100%);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Poppins', sans-serif;

    --gap: 1.25rem;
    --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --closed: 5rem;
    --open: 35rem;
}


body {
    font-family: var(--font-family);
    font-weight: 500;
    background: var(--grey);
    overflow-x: hidden;
    transition: background var(--transition-fast), color var(--transition-fast);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .hero-name {
    font-weight: bold;
}

h2 {
  font-size: 2.5rem;
}

.t-center{
    text-align: center;
}


p {
    font-size: 1.1rem;
}

/* SCROLL DOWN */
.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 12px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: var(--primary);
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

@keyframes  scroll {
    0% {opacity: 0;}
    10% { transform: translateY(0); opacity: 1;}
    100% { transform: translateY(15px); opacity: 0;}
}

@media (max-width: 1000px){
    .scroll-down { display: none; }
}

/*HEADER */

.hero-section {
    display: flex;
    justify-content: center;
    min-height: 93vh;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.2;
    }
}


@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-name {
    font-family: var(--font-family);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.name-value {
    display: inline-block;
    background: none;
    -webkit-text-fill-color: initial;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5 ease;
    white-space: pre;

    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.char.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.profile-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.profile-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
}

.profile-placeholder {
    font-size: 8rem;
    color: var(--primary);
}

.floating-badge {
    position: absolute;
    background: var(--primary);
    border: 1px solid var(--cyan);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
    min-width: 200px;
}


.floating-badge i {
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-libs {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 5%;
    right: -30%;
    animation-delay: 0.5s;
}

.badge-3 {
    top: 50%;
    left: -25%;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1500px){
    .hero-image-container {
        width: 400px;
        height: 400px;
    }
    .badge-title {
        font-size: 1rem;
    }

    .badge-libs {
        font-size: 0.75rem;
    }
    .hero-name {
        font-size: 4rem;
    }
}


@media (max-width: 1024px) {
    .hero-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-name {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .badge-libs {
        display: none;
    }

    .floating-badge {
        min-width: auto;
        padding: 0.8rem 1rem;
    }

    .floating-badge i {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-name {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-image-container {
        width: 220px;
        height: 220px;
    }

    .profile-image-glow {
        width: 110%;
        height: 110%;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .hero-name {
        font-size: 1.5rem;
    }

    .hero-image-container {
        width: 180px;
        height: 180px;
    }
}


/* FEATURES */
.growUpFeature {
    color: var(--cyan);
    font-size: 1.15rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    font-weight: 600;
    transition-delay: 3s;
}


.track {
  display: flex;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 40rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}

.project-card[active] {
  flex-basis: var(--open);
}

.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.3s, transform var(--speed);
  background: var(--gradient-1);
  z-index: 1;
}

.project-card:hover .project-card__bg {
  filter: brightness(1.1);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.project-card[active] .content-features {
  animation: fadeIn 2s ease-out forwards;
  transform: translateY(-100px);
}

@keyframes typing {
    from { max-height: 0; }
    to { max-height: 100%; }
}


.project-card__title {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  max-height: 0;
  overflow: hidden;
}

.project-card__title.start-typing{
  animation: typing 2.5s steps(30, end) forwards;
}

.project-card__desc {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 3rem;
  justify-content: flex-start;
}

.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 2.2rem;
  max-height: none;
  animation: none;
}

.project-card[active] .project-card__desc {
  display: block;
}

.project-card__desc {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 2rem;
}

.dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--blue-dark);
  transform: scale(1.3);
}


@media (max-width: 1100px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 60px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 23rem;
    transform: none;
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    margin-right: auto;
  }

  .project-card__desc{
    display: none;
  }

  .project-card[active] .project-card__content {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-top: 1rem;
  }
  .dots {
    display: none;
  }
}

/*MAP*/
.svg-container {
    width: 100%;
    height: auto;
    max-width: 700px;
    fill: var(--blue-dark);
    stroke: #ffffff;
    stroke-width: 0.5;
}
.dot {
    fill:  var(--cyan);
}

.label {
    fill: var(--cyan);
    font-size: 1.5rem;
    pointer-events: none;
}


/* AVANTAGES */
.color-gradient {
    background: var(--gradient-1);
    color: white;
    border-radius: 1rem;
    border: none;
}

.donut {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: conic-gradient(
    var(--blue-dark) calc(var(--percentage) * 1%),
    #e9ecef 0
  );
}

.donut::before {
  content: "";
  width: 23rem;
  height: 23rem;
  background: var(--grey);
  border-radius: 50%;
  position: absolute;
}

.donut span {
  font-size: 4rem;
  font-weight: bold;
  z-index: 1;
  color: var(--primary);
}

.avantages-equipe-section {
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 70vh;
}

.is-visible .headerAvantages  {
    opacity: 1;
    transform: translateY(0);
}

.is-visible .subAdvantage-left{
    opacity: 1;
    animation: slideInLeftAdvantage 1s ease-out forwards;
}

.subAdvantage-left {
    opacity: 0;
    color: var(--blue-dark);
}

@keyframes slideInLeftAdvantage {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.subAdvantage-left {
    opacity: 0;
    color: var(--blue-dark);
}

.is-visible .subAdvantage-right{
    opacity: 1;
    animation: slideInRightAdvantage 1s ease-out forwards;
}

.subAdvantage-right {
    opacity: 0;
    color: var(--blue-dark);
}

@keyframes slideInRightAdvantage {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

h3 {
    font-size: 2rem;
}

.growUp {
    color: var(--primary);
    font-size: 2.5rem;
}

@media (max-width: 768px){
    .growUp{font-size: 2rem;}
}

.growUph3 {
    color: var(--primary);
    font-size: 2.2rem;
}

.headerAvantages{
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease-out;
    width: 70%;
    text-align: center;
    color: var(--blue-dark);
}


.avantages-section .center-div,
.avantages-section .item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.is-visible .center-div,
.is-visible .item {
    opacity: 1;
    transform: scale(1);
}

.is-visible .item.left-top { transition-delay: 0.5s; }
.is-visible .item.right-top { transition-delay: 0.9s; }
.is-visible .item.right-bottom { transition-delay: 1.3s; }
.is-visible .item.bottom { transition-delay: 1.7s; }
.is-visible .item.left-bottom { transition-delay: 2s; }

.avantages-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 80vh;
}

.circle-main{
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-div h2 {
    color: #fff;
    text-align: center;
}

.choices {
    position: absolute;
    width: 100%;
    height: 100%
}

.item{
    position: absolute;
    display: flex;
    align-items: center;
    width: 380px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1,275);
}

.left-top {
    top: 0;
    left: -290px;
    flex-direction: row-reverse;
}

.left-bottom {
    bottom: 8%;
    left: -300px;
    flex-direction: row-reverse;
}

.right-top {
    top: 0;
    right: -290px;
}

.right-bottom {
    bottom: 11%;
    right: -300px;
}

.bottom {
    bottom: -40%;
    right: 70px;
    flex-direction: column;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-circle i{
    font-size: 2.5rem;
    color: var(--blue-dark);
}

.text-box{
    padding: 15px;
    max-width: 380px;
}

.bottom .text-box {
    text-align: center;
}

.left-top .text-box .left-bottom .text-box {
    text-align: right;
}

.right-top .text-box .right-bottom .text-box {
    text-align: left;
}

.text-box h3 {
    font-size: 1.5rem;
    color: var(--blue-dark);
}

.text-box p {
    color: var(--primary);
    line-height: 1.2;
    font-weight: 300;
}

@media (max-width: 2000px){
    .avantages-section { margin-bottom: 15rem !important; }
}

@media (max-width: 1200px){
    .circle-main { width: 500px; height: 500px }
    .item { width: 250px; margin-bottom: -2em; }
    .left-top { left: -180px; }
    .right-top { right: -180px; }

    .icon-circle { width: 70px; height: 70px; }
    .icon-circle i { font-size: 1.8rem; }
    .center-div h2 { font-size: 2rem;}
    .left-bottom, .right-bottom { bottom: 30%; }
    .bottom { bottom: -25%; left: 30px; }

    .right-bottom { right: -220px; }
    .left-bottom { left: -220px; }
}

.atoutMobile {
    display: none;
}


@media (max-width: 768px){
    .atoutPc { display: none; }
    .atoutMobile { display: block; }
    .donut { width: 20rem;  height: 20rem;}
    .donut::before {width: 18rem; height: 18rem;}
}

/* ABONNEMENTS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.avantages-desc,
.feature-item, .surmesure {
    display: flex;
    align-items: start;
    margin-bottom: 0.5rem;
    position: relative;
    opacity: 0;
}

.visible-abonnement {
    opacity: 1;
    animation: slideInLeft 0.3s ease-out both;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(1),
.col-lg-6:nth-child(2) .feature-item:nth-child(1),
.col-lg-6:nth-child(3) .feature-item:nth-child(1),
.col-lg-6:nth-child(4) .feature-item:nth-child(1) {
    animation-delay: 0s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(2),
.col-lg-6:nth-child(2) .feature-item:nth-child(2),
.col-lg-6:nth-child(3) .feature-item:nth-child(2),
.col-lg-6:nth-child(4) .feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(3),
.col-lg-6:nth-child(2) .feature-item:nth-child(3),
.col-lg-6:nth-child(3) .feature-item:nth-child(3),
.col-lg-6:nth-child(4) .feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(4),
.col-lg-6:nth-child(2) .feature-item:nth-child(4),
.col-lg-6:nth-child(3) .feature-item:nth-child(4),
.col-lg-6:nth-child(4) .feature-item:nth-child(4) {
    animation-delay: 0.6s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(5),
.col-lg-6:nth-child(2) .feature-item:nth-child(5),
.col-lg-6:nth-child(3) .feature-item:nth-child(5),
.avantages-desc {
    animation-delay: 0.8s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(6),
.col-lg-6:nth-child(2) .feature-item:nth-child(6),
.col-lg-6:nth-child(3) .feature-item:nth-child(6),
.surmesure {
    animation-delay: 1s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(7),
.col-lg-6:nth-child(2) .feature-item:nth-child(7),
.col-lg-6:nth-child(3) .feature-item:nth-child(7),
.price-contact {
    animation-delay: 1.2s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(8),
.col-lg-6:nth-child(2) .feature-item:nth-child(8),
.col-lg-6:nth-child(3) .feature-item:nth-child(8) {
    animation-delay: 1.4s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(9),
.col-lg-6:nth-child(2) .feature-item:nth-child(9),
.col-lg-6:nth-child(3) .feature-item:nth-child(9){
    animation-delay: 1.6s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(10),
.col-lg-6:nth-child(2) .feature-item:nth-child(10),
.col-lg-6:nth-child(3) .feature-item:nth-child(10) {
    animation-delay: 1.8s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(11),
.col-lg-6:nth-child(2) .feature-item:nth-child(11),
.col-lg-6:nth-child(3) .feature-item:nth-child(11) {
    animation-delay: 2s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(12),
.col-lg-6:nth-child(2) .feature-item:nth-child(12),
.col-lg-6:nth-child(3) .feature-item:nth-child(12) {
    animation-delay: 2.2s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(13),
.col-lg-6:nth-child(2) .feature-item:nth-child(13),
.col-lg-6:nth-child(3) .feature-item:nth-child(13) {
    animation-delay: 2.4s;
}

.col-lg-6:nth-child(1) .feature-item:nth-child(14),
.col-lg-6:nth-child(2) .feature-item:nth-child(14),
.col-lg-6:nth-child(3) .feature-item:nth-child(14) {
    animation-delay: 2.6s;
}

.main-title {
    color: var(--blue-dark);
    margin-bottom: 50px;
    margin-top: 50px;
}

.main-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}


.wrapper {
    display: flex;
    justify-content: center;
    min-height: 80vh;
}

.price-table {
    background: var(--gradient-1);
    border: none !important;
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    transition: transform 0.3s ease;
    width: 35em;
    height: 51em;
}


.choice::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 102%;
    height: 102%;
    background: var(--gradient-1);
    transform: translate(-50%, -50%);
    z-index: -5;
    border-radius: 16px;
}

.choice::after {
    filter: blur(40px);
}

.div-icon-abo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
    margin-top: -1em;
}

.icon-abo i{
    font-size: 4rem;
    color: var(--grey);
}

.price-contact {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-top: 1rem;
    opacity: 0;
}

.price-contact:hover {
    color: var(--blue-dark);
}


.price {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.1em;
}

.price small {
    font-size: 1.25rem;
    font-weight: 400;
}

.title {
    font-size: 1.8rem;
    text-align: center;
}

.surmesure {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1em;
}

.description {
    font-size: 1rem;
    text-align: center;
    margin-top: 0.2em;
    opacity: 0.8;
    margin-bottom: 2em;
}

.avantages-desc {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0.2em;
}

.checkmark, .uncheckmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.uncheckmark {
    background-color: var(--blue-dark);
    color: var(--grey);
}

.checkmark {
    background-color: var(--grey);
    color: var(--blue-dark);
}

.question-icon {
    display: flex;
    align-items: center;
    margin-left: 6px;
    opacity: 0.6;
    cursor: pointer;
}

.answer {
   padding: 12px;
   background-color: #fff;
   color: var(--blue-dark);
   border-radius: 8px;
   position: absolute;
   top: -12px;
   z-index: 100;
   width: 90%;
   left: 50%;

   transform: translateY(-100%) translateX(-50%) scale(0);
   transform-origin: bottom center;
   pointer-events: none;
   font-size: 0.85rem;
   text-align: center;
   transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.answer::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.feature-item:hover .answer {
    transform: translateY(-100%) translateX(-50%) scale(1)
}

/* CLIENTS */
.clients-col {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible .clients-col {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.is-visible .clients-col:nth-child(1) { transition: 1s; }
.is-visible .clients-col:nth-child(2) { transition: 1.5s; }
.is-visible .clients-col:nth-child(3) { transition: 2s; }
.is-visible .clients-col:nth-child(4) { transition: 2.5s; }


.clients-card {
    background: var(--grey);
    border-color: var(--grey);
    border-radius: 16px;
    color: #fff;
    width: 25em;
    height: 15em;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}

.clients-card img {
    width: auto;
    height: auto;
    transition: all 1s ease;
}

.clients-sections{
    min-height: 45vh !important;
}


/* FOOTER */
.footer-section {
    position: relative;
    background: var(--gradient-1);
    border-top: 0.1rem solid var(--cyan);
    margin-top: 5rem;
}

.footer-cta {
    border-bottom: 1px solid var(--cyan);
}

.linkedin_logo{
    font-size: 20px;
    color: #fff;
}

.single-cta i {
    color: var(--cyan);
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px;
}

.cta-text span, .cta-text a {
    font-size: 15px;
}

.cta-text a {
    color: #fff;
}

.cta-text a:hover{
    color: var(--cyan);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 28px;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--cyan);
}

.footer-widget  span {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget  span a:hover{
    color: var(--cyan);
}

.footer-widget  span a {
    color: #fff;
}

.copyright-area{
    background: var(--blue-dark);
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: var(--grey);
}

/* NAVBAR */
.img-fluid-nav-bar{
    height: 60px;
    width: 60px;
}

@media (max-width: 768px){
.img-fluid-nav-bar{
    height: 45px;
    width: 45px;
}
}

.login-btn {
    background: #fff;
}

.nav-item {
    min-width: 9rem;
}

.menuBar {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    height: 7vh;
    background: var(--gradient-1);
    border-bottom: 0.1rem solid var(--cyan);
}

.navbar-nav .nav-link {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.navbar-collapse.collapse.show {
    border-bottom: 0.1rem solid var(--cyan);
    background: var(--gradient-1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link{
    color: white !important;
    font-size: 1.1rem;
}

.nav-link:hover{
    color: var(--cyan) !important;
}

.dropdown-menu-innov {
    color: white !important;
    background-color: var(--primary);
    border: 0.1rem solid #ffffffaa;
}

.dropdown-item-innov {
    color: white !important;
    background-color: var(--primary);
}

.dropdown-item-innov:hover {
    background-color: #ffffff44;
}

/* BASE */

.text-underline {
    text-decoration: underline;
}

.mr-2r {
    margin-right: 2rem !important;
}

.mb-1r {
    margin-bottom: 1rem !important;
}

.mb-5r {
    margin-bottom: 5rem !important;
}

.mt-1r {
    margin-top: 1rem;
}

.mt-2r {
    margin-top: 2rem;
}

.mt-4r {
    margin-top: 4rem;
}

.ml-2r {
    margin-left: 2rem !important;
}

.w-15r  {
    width: 20rem !important;
}

.size-4r {
    font-size: 4rem;
}

.bodyContent{
    width: 90vw;
    min-height:99vh;
    margin-left: 5vw;
    margin-right: 5vw;
    background: var(--dark-blue-bg);
}

@media (max-width: 767px){
    .colTitlePageContent{
        width: 100% !important
    }
    .bodyContent{ padding-top: 9rem;}
}

.titlePageContent{
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.title-wrapper {
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.containerBody{
    width: 100%;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

