body{
    margin: 0;
    font-family: 'poppins';
    overflow-x: hidden;
}

/* BACKTOP */

.back-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #0F268B;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 999;
}

.back-top.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-top:hover{
    transform: translateY(0) scale(1.06);
}

.back-top:active{
  transform: translateY(0) scale(0.92);
}

/* FIN BACKTOP */

/* BOUTONS */

.btn-cta-trans{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    border-radius: 100px;
    padding: 8px 16px 8px 16px;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-cta-trans:hover{
    transform: scale(1.05);
    color: #00A3FF;
    border: 1px solid #00A3FF;
}

/* FIN BOUTONS */


/* HEADER */

/* NAVBAR */

.bar-de-navigation{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-bottom: 1px solid rgb(206, 206, 206);
}

.logo-vultek{
    width: 118px;
    height: 39px;
    background-image: url('../images/vt.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 50px;
    z-index: 5;
}

.liens-nav{
    display: flex;
    flex-direction: row;
    list-style: none;
    text-decoration: none;
    gap: 50px;
    padding: 0;
    margin-left: auto;
    margin-right: 50px;
    margin-bottom: 0;
}

.liens-nav a{
    text-decoration: none;
    color: #000000;
    font-size: 16px;  
}

.liens-nav li a{
    display: inline-block;
    transition: 0.3s ease;
}

.liens-nav li a:hover{
    color: #00A3FF;
    transform: translateY(-4px);
    opacity: 0.9;
}

.btn-cta-trans-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    border-radius: 100px;
    padding: 8px 16px 8px 16px;
    gap: 8px;
    margin-right: 50px;
    transition: 0.3s ease;
}

.btn-cta-trans-nav:hover{
    transform: scale(1.05);
    color: #00A3FF;
    border: 1px solid #00A3FF;
}

.btn-cta-noir{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: black;
    color: white;
    border: 1px solid black;
    border-radius: 100px;
    padding: 8px 16px 8px 16px;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-cta-noir:hover{
    transform: scale(1.05);
    color: black;
    border: 1px solid rgb(189, 189, 189);
    background-color: rgb(228, 228, 228);
}

.btn-cta-blanc{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: white;
    color: #0F268B;
    border: 1px solid white;
    border-radius: 100px;
    padding: 8px 16px 8px 16px;
    gap: 8px; 
    transition: 0.3s ease;
}

.btn-cta-blanc:hover{
    transform: scale(1.05);
    color: white;
    border: 1px solid black;
    background-color: black;
}

/* FIN NAVBAR */

/* HERO SECTION */

.bordure{
    color: transparent;
    -webkit-text-stroke: 1px #00A3FF;
}

.surlignage{
    background: linear-gradient(#BDE6FF 0 0);
    background-position: 0 80%;
    background-size: 100% 16px; 
    background-repeat: no-repeat;
    box-decoration-break: clone;
}

.double-cta{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* FIN HERO SECTION */

.titre-texte{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.titre-texte h2{
    font-size: 50px;
    font-weight: 600;
    color: #0F268B;
    margin-bottom: 10px;
}

.titre-texte p{
    font-size: 18px;
    font-weight: 400;
    color: #6B7280;
    text-align: center;
    margin: 0;
}

.titre-texte-white{
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    width: 80%;
}

.titre-texte-black{
    font-size: 50px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    text-align: center;
    width: 80%;
}

input, textarea{
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #00A3FF; /* ta couleur Vultek */
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.2);
}

textarea{
    resize: vertical;
}


/* Section FAQ */

.wrapper {
    width: 80%;
}

.faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.container-faq {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
}

.question {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.reponse {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

/* Fin section FAQ */


/* REALISATIONS */

.realisation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    padding-top: 50px
}

.titre-real{
    display: flex;
    justify-content: center;
}

.titre-real h2{
    font-size: 50px;
    font-weight: 600;
    color: #0F268B;
    margin: 0 0 10px 0;
    text-align: center;
    width: 80%;
}

/* !!!!!!!!!!!!!!! SECTION 3D CARDS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.light:root {
  --main-bg: #f8f8f8;
  --box-bg: #ffffff;
  --name-color: #232323;
  --card-bg-text: #343434;
}

:root {
  --main-bg: #ffffff;
  --box-bg: rgb(255, 255, 255);
  --name-color: #0F268B;
  --card-bg-text: #ffffff;
}
  
.vtnr {
    margin-top: 20px;
  /* font-size: 15px; 
  font-weight: 400; 
  text-decoration: none; 
  color: #00A3FF;
  border: 1px solid #00A3FF; 
  border-radius: 100px; 
  padding: 10px; */
}

.container {
  position: relative; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-wrap: wrap;
  width: 100%; 
  transform-style: preserve-3d;
}
.container .box {
  position: relative; 
  width: 300px; 
  height: 400px; 
  margin: 40px; 
  border-radius: 20px; 
  transform-style: preserve-3d;
}

.container .box .name {
  position: absolute; 
  top: 0; 
  left: 0; 
  text-align: center; 
  color: var(--name-color);
  width: 100%; 
  transform-style: preserve-3d; 
  transform: translate3d(0, 0, 75px);
  transition: 0.5s; 
  opacity: 0; 
  z-index: 10;
}

.container .box:hover .name { 
  top: 40px; 
  opacity: 1; 
}

.container .box .buy {
  position: absolute; 
  bottom: 0; 
  left: 45%;
  transform-style: preserve-3d; 
  transform: translate3d(0, 0, 75px);
  color: #0F268B; 
  background: #333; 
  padding: 10px 25px; 
  border-radius: 30px;
  text-decoration: none; 
  font-size: 16px; 
  font-weight: 500; 
  transition: 0.5s; 
  opacity: 0; 
  z-index: 10;
}

.container .box:hover .buy { 
  bottom: 30px; 
  opacity: 1; 
}

.container .box .circle {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  width: 200px; 
  height: 200px; 
  border-radius: 50%;
  transition: 0.5s; 
  background: #ffffff; 
  transform-style: preserve-3d; 
  z-index: 10; 
  opacity: 1;
  transform: translate3d(-50%, -50%, 0px);
}

.container .box:hover .circle { 
  transform: translate3d(-50%, -50%, 35px); 
}

.container .box .product {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  max-width: 280px;
  transition: 0.5s; 
  z-index: 11; 
  transform-style: preserve-3d; 
  transform: translate3d(-50%, -50%, 0px);
  object-fit: cover;
}

.imgArticle{
  aspect-ratio: 2/2;
  object-fit: cover;
}

.container .box:hover .product { 
  transform: translate3d(-50%, -50%, 100px); 
}

/* .container .box:nth-child(1) .circle, .container .box:nth-child(1) .buy,
.container .box:nth-child(2) .circle, .container .box:nth-child(2) .buy,
.container .box:nth-child(3) .circle, .container .box:nth-child(3) .buy,
.container .box:nth-child(4) .circle, .container .box:nth-child(4) .buy,
.container .box:nth-child(5) .circle, .container .box:nth-child(5) .buy,
.container .box:nth-child(6) .circle, .container .box:nth-child(6) .buy,
.container .box:nth-child(7) .circle, .container .box:nth-child(7) .buy {
  background: transparent; 
  border: 1px solid #0F268B;
} */

.container .box .circle,
.container .box .buy {
  background: transparent;
  border: 1px solid #0F268B;
}

.mode-switch { 
  background: transparent; 
  border: none; 
  padding: 0; 
  color: var(--name-color);
  display: flex; 
  justify-content: center; 
  align-items: center; }
.mode-switch.active .moon { 
  fill: var(--name-color); 
}

.box::before {
  position: absolute; 
  content: ""; 
  top: 0; 
  width: 100%; 
  height: 100%;
  border-radius: 2.25rem; 
  z-index: -1; 
  border: 0.155rem solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; 
  mask-composite: exclude;
}

.blue { background: #9a9a9a; }
.red  { background: #9a9a9a; }
.green{ background: #9a9a9a; }

@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spin-border { from { --angle: 0deg; } to { --angle: 360deg; } }
.container .box{
  border: 4px solid transparent;
  background:
    linear-gradient(var(--box-bg), var(--box-bg)) padding-box,
    conic-gradient(from var(--angle), #00A3FF, #2563eb 43%, #012f99) border-box;
  animation: spin-border 6s linear infinite;
  border-radius: 20px;
}
.container .box:hover{ animation-duration: 10s; }

.container .box .badge{
  position: absolute; 
  top: 22px; 
  left: 22px;
  padding: 6px 10px; 
  border-radius: 999px;
  background: #00A3FF; 
  color: #fff; 
  font-size: 12px; 
  font-weight: 600;
  line-height: 1; 
  letter-spacing: .2px;
  z-index: 12; 
  transform: translate3d(0,0,60px);
  transition: opacity .35s ease, transform .35s ease;
}

.container .box .teaser{
  position: absolute; 
  left: 16px; 
  right: 16px; 
  top: 75%;
  font-weight: 400;
  font-size: 14px;
  text-align: center; 
  font-size: 12px; 
  font-weight: 500; 
  color: #545454;
  z-index: 9; 
  transform: translate3d(0,0,50px);
  opacity: 1; 
  transition: opacity .35s ease, transform .35s ease;
}

.container .box:hover .badge{
  opacity: 0; transform: translate3d(0,-6px,60px);
}
.container .box:hover .teaser{
  opacity: 0; transform: translate3d(0,6px,50px);
}

/* !!!!!!!!!!!!!!!!!!!!!!!! FIN SECTION 3D CARDS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

/* FIN REALISATIONS */

/* FOOTER */

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
    /* radial-gradient(ellipse 50% 50% at 75% 35%, #ffffff20 0%, transparent 200%),   
    radial-gradient(ellipse 50% 50% at 20% 70%, #ffffff20 0%, transparent 150%), */
    linear-gradient(180deg, #0F268B 0%, #042DE4 100%); 
}

.navh-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-top: 40px;
}

.logo-left{
    width: 148px;
    height: 69px;
    padding-left: 80px;
}

.logo-vultek-blanc{
    width: 148px;
    height: 69px;
    background-image: url('../images/logoblanc.webp');
    z-index: 5;
    background-repeat: no-repeat;
    background-size: 100%;
}

.navigation-footer{
    display: flex;
    flex-direction: column;
    border-left: 2px solid #00A3FF;
    padding: 0 30px;
}

.navigation-footer ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.navigation-footer ul a{
    list-style: none;
    text-decoration: none;
    font-size: 16px;
    color: white;
    transition: 0.3s ease;
}

.navigation-footer ul a:hover{
    color: #00A3FF;
}

.info-contact{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 2px solid #00A3FF;
    padding: 0 30px;
}

.info-contact li{
    list-style: none !important;
    text-decoration: none !important;
    font-size: 16px;
    color: white;
}

.reseau{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 30px;

}

.reseau a{
    text-decoration: none;
    width: max-content;
    font-size: 12px;
    color: white;
    transition: 0.3s ease;
}

.reseau a:hover{
    color: #00A3FF;
}

.icone-r{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.icone-r svg{
    width: 38px;
    transition: 0.3s ease;
}

.icone-r svg:hover{
    transform: scale(1.20);
}

.navb-footer{
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #fff;
    margin-top: 40px;
}


.navb-footer p{
    font-size: 12px;
    color: #fff;
}

/* FIN FOOTER */










@media (max-width: 1220px){
    

    .burger {
        right: 40px;
        width: 35px;
        height: 32px;
        cursor: pointer;
        position: relative;
        margin: 0;
        z-index: 9999;
    }

    .burger:before, .burger span, .burger:after {
        width: 100%;
        height: 4px;
        display: block;
        background: #000000;
        border-radius: 2px;
        position: absolute;
        opacity: 1;
    }

    .burger:before, .burger:after {
        transition: top .35s cubic-bezier(.23,1,.32,1),transform .35s cubic-bezier(.23,1,.32,1),opacity .35s cubic-bezier(.23,1,.32,1),background-color 1.15s cubic-bezier(.86,0,.07,1);
        -webkit-transition: top .35s cubic-bezier(.23,1,.32,1),-webkit-transform .35s cubic-bezier(.23,1,.32,1),opacity .35s cubic-bezier(.23,1,.32,1),background-color 1.15s cubic-bezier(.86,0,.07,1);
        content: "";
    }

    .burger:before {
        top: 4px;
    }

    .burger span {
        top: 15px;
    }

    .burger:after {
        top: 26px;
    }

    .burger:hover:before {
        top: 7px;
    }

    .burger:hover:after {
        top: 23px;
    }

    .burger.cross span {
        opacity: 0;
    }

    .burger.cross:before, .burger.cross:after {
        top: 40%;
    }

    .burger.cross:before {
        -webkit-transform: rotate(45deg); 
        -moz-transform: rotate(45deg);  
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); 
    }

    .burger.cross:after {
        -webkit-transform: rotate(-45deg); 
        -moz-transform: rotate(-45deg);  
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5); 
    }

    .burger:focus {
        outline: none;
    }

    .btn-cta-trans-nav{
        font-size: 14px;
    }

    .liens-nav{
        position: absolute;
        top: 0;
        left: 0;
        gap: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: rgb(255, 255, 255);
        width: 100%;
        height: 100vh;
        margin-left: -150%;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .liens-nav a{
        display: flex;
        font-size: 28px;
        text-align: left;
        border-bottom: 2px solid #00A3FF;
        border-radius: 10px;
        padding: 6px 15px 0px 15px;
    }

    .liens-nav li{
        width: fit-content;
        padding-left: 30px;
    }

    .body-no-scroll {
        height: 100vh;  
        overflow: hidden; 
    }
    
    .mobile-menu{
        margin-left: 0;
    }
}


@media (max-width: 900px){
    /* BACKTOP */
    .back-top{
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .titre-texte{
        max-width: 90%;
        margin-bottom: 50px;
    }

    .titre-texte h2{
        font-size: 32px;
        margin-top: 50px;
    }

    .titre-texte p{
        font-size: 16px;
        text-align: center;
    }

    .titre-texte-white{
        font-size: 32px;
    }

    .titre-real h2{
        font-size: 32px;
    }

    .navh-footer{
        flex-direction: column;
    }

    .logo-left{
        padding-left: 30px;
    }

    .navigation-footer{
        border-left: none;
        border-top: 2px solid #00A3FF;
        padding: 30px 10px;
        margin: 0 20px;
    }

    .info-contact{
        border-left: none;
        border-top: 2px solid #00A3FF;
        padding: 30px 10px;
        margin: 0 20px;
    }

    .reseau{
        align-items: flex-start;
        border-top: 2px solid #00A3FF;
        padding: 30px 10px;
        margin: 0 20px;
    }

}

@media (max-width: 700px){
    .burger{
        right: 20px;
    }

    .btn-cta-trans-nav{
        margin-left: auto;
        margin-right: 40px;
    }

    .btn-cta-trans-nav span{
        display: none;
    }

    .bar-de-navigation{
        justify-content: flex-start;
    }

    .logo-vultek{
        margin-left: 20px;
    }

}

@media (max-width: 500px){
    .double-cta{
        flex-direction: column;
    }
    
    .titre-texte h2{
        text-align: center;
    }

    .titre-texte h2{
        font-size: 28px;
    }

    .titre-texte-white{
        font-size: 28px;
    }

    .question{
        font-size: 16px;
    }

    .answercont{
        font-size: 14px;
    }

    .titre-real h2{
        font-size: 28px;
    }
}


#dashboardIcon{
    position: fixed;
    top:110px;
    right:10px;
}

p{
    margin-bottom: 0;
}