@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("blog.css");
@import url("contact.css");
@import url("portfolio.css");
@import url("services.css");
@import url("footer.css");
@import url("nav-bar.css");
@import url("utils.css");
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1c6142;
  border-radius: 5px;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #543d74;
}

body,
html {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #fdfdfd;
}

@media (max-width: 768px) {
  body,
  html {
    font-size: 14px;
  }
}

@media (max-width: 570px) {
  body,
  html {
    font-size: 12px;
  }
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li a {
  color: black;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
  background-color: #ffffff;
}

.container {
  max-width: 1350px;
  margin: 0 auto;

  width: 100%;
  background-image: url("../images/bgcontainer.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.roadmap {
  margin: 80px auto;
}

@media (max-width: 1300px) {
  .container {
    max-width: unset;
    padding-inline: 16px;
  }
}

.banner {
  background-color: #ffffff;
  margin-top: 86px;
}

.banner .cta-image {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 86px);
  position: relative;
}

.banner .cta-image > div:first-child {
  width: 50%;
  z-index: 2;
}

.banner .cta-image > div:last-child {
  width: 50%;
}

.banner .cta-image h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 800;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.banner .cta-image h1 span {
  color: #1c6142;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.banner .cta-image h1 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #97ceba;
  border-radius: 2px;
}

.banner .cta-image p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: #4a4a4a;
  max-width: 600px;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.banner .cta-image p span {
  display: none;
}

.banner .cta-image .block-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 550px;
}

.banner .block-iphone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner .block-iphone .bg-round {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .block-iphone .bg-round > img {
  height: 550px;
  z-index: 3;
  position: relative;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .banner .cta-image {
    flex-direction: column-reverse;
    min-height: unset;
    padding-bottom: 80px;
  }

  .banner .cta-image > div:first-child,
  .banner .cta-image > div:last-child {
    width: 100%;
  }

  .banner .cta-image > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner .cta-image h1,
  .banner .cta-image p {
    text-align: center;
  }

  .banner .block-iphone .bg-round > img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .banner .cta-image h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .banner .cta-image p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .call-us {
    padding: 8px 16px;
    font-size: 1rem;
  }

  .devis {
    position: relative;
    margin: 8px auto;
    width: 150px;
    display: block;
  }
}

.card-client p {
  max-height: none; /* Remove height restriction */
  display: block; /* Change to block to allow normal behavior */
  -webkit-line-clamp: none; /* Remove line clamping */
  -webkit-box-orient: initial; /* Reset box orientation */
  overflow: visible; /* Allow text to overflow if necessary */
  text-overflow: clip; /* No ellipsis, full text visible */
}

.card-client p::before {
  content: "“"; /* Opening quote */
}

.card-client p::after {
  content: "”"; /* Closing quote */
}
.side-img {
  width: 35svw;
}

@media (max-width: 570px) {
  .image-contact {
    display: none;
  }
  .banner .cta-image {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .banner .block-iphone {
    display: flex;
  }
}

.cta-bottom {
  padding-block: 100px;
}

.cta-bottom .big-banner {
  background-color: #dff9e9;

  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
}

.cta-bottom .big-banner > h1 {
  color: "black";
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 800;
  max-width: 500px;
  margin-bottom: 0.5rem;
}

@media (max-width: 940px) {
  .cta-bottom {
    padding-block: 60px;
  }
}

@media (max-width: 768px) {
  .cta-bottom {
    padding-block: 60px;
  }

  .cta-bottom .big-banner {
    padding: 32px;
  }
}

.card-wrapper-what-is {
  background-color: transparent;
}

.card-wrapper-what-is .what-is-content {
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-wrapper-what-is .what-is-content .card-item {
  flex: 1;
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px 0px rgba(75, 41, 126, 0.0392156863);
  border-radius: 1rem;
}

.card-wrapper-what-is .what-is-content .card-item > span {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background-color: #8636a9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-wrapper-what-is .what-is-content .card-item > h1 {
  font-weight: 600;
  font-size: 1.125rem;
  margin: 16px 0 8px 0;
  text-align: left;
}

.card-wrapper-what-is .what-is-content .card-item > p {
  color: #85808f;
  font-size: 0.875rem;
  text-transform: initial;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .card-wrapper-what-is .what-is-content .card-item {
    flex: none;
    width: calc(50% - 12px);
  }
}

@media (max-width: 570px) {
  .card-wrapper-what-is .what-is-content .card-item {
    width: 100%;
  }
}

.service-container {
  padding-top: 15svh;
}

.blog-container {
  padding-top: 15svh;
}

.blog-container .descri-blog {
  text-align: justify;
  margin-bottom: 80px;
}

.blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog p {
  text-align: center;
  max-width: 700px;
}

.blog .blog-wrap {
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.blog-card .left {
  /* flex: 1; */
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 3px 2px 3px 3px rgba(75, 41, 126, 0.0592156863);
  border-radius: 1rem;
  display: flex;
  gap: 8px;
  flex-direction: column !important;
}
.blog-card .dateblog {
  height: 20px;
}
.blog-card span {
  font-size: 12px;
}
.blog-card svg {
  width: 15px;
  height: 15px;
}
.blog-card h2 {
  color: #1c6142;
  font-size: 30px;
}

.blog-card p {
  max-width: 250px;
  text-align: justify;
  color: #00000094;
  line-clamp: 2 !important;
}

.blog-card a {
  display: inline-block;
  width: 95%;
  padding: 8px;
  border: 2px #1c6142 solid;
  color: #1c6142;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.blog-card a:hover {
  background-color: #1c6142;
  color: white;
}

.plusblog {
  width: 100%;
  height: 350px;
  padding: 80px 80px 140px 80px;
  background-image: url("../images/bgblog.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.plusblog .title {
  font-size: 2.5rem;
  color: #1c6142;
}
.form-body .title {
  font-size: 40px;
}
.serv {
  position: relative;
}
.serv:hover .option {
  display: flex;
}
.option {
  width: fit-content;
  height: fit-content;
  padding: 16px;
  background-color: rgb(255, 255, 255);
  list-style: none;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 40px;
}

.plusblog .btn-blog {
  display: inline-block;
  padding: 14px 80px;
  border: 2px #1c6142 solid;
  color: #1c6142;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
}

.form-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 120px 0 80px 0;
}

.form-wrapper > form {
  /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
  width: 48.5%;
  padding: 32px;
  border-radius: 16px;
}

.form-wrapper > form .form-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper > form .form-head > span {
  width: 104px;
  height: 104px;
  border-radius: 26px;
  background-color: #46297b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-wrapper > form .form-head h5 {
  font-weight: 600;
  font-size: 1.125rem;
  color: #46297b;
}

.form-wrapper > form .form-foot {
  padding-top: 16px;
}

/* .form-wrapper > form .form-foot button {
  background-color: #1c6142;
  width: 100%;
  border: none;
  border-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 48px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffff;
} */

.form-wrapper > form .form-foot button svg {
  margin-left: 8px;
}

.form-wrapper > form .form-body .first-input {
  display: flex;
  gap: 16px;
}

.form-wrapper > form .form-body .first-input > div {
  width: 50%;
}

@media (max-width: 570px) {
  .form-wrapper > form .form-body .first-input {
    display: block;
  }

  .form-wrapper > form .form-body .first-input > div {
    width: 100%;
  }
}

.form-wrapper > form .custom-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
}

.form-wrapper > form .custom-input label {
  color: rgb(133, 128, 143);
  font-size: 0.875rem;
}

.form-wrapper > form .custom-input span {
  margin-top: 4px;
  position: relative;
}

.form-wrapper > form .custom-input span svg {
  position: absolute;
  top: 12px;
  left: 12px;
}

.form-wrapper > form .custom-input span input {
  width: 100%;
  height: 48px;
  background-color: rgb(242, 241, 243);
  border: none;
  border-radius: 16px;
  color: rgb(133, 128, 143);
  font-weight: 500;
  font-size: 0.875rem;
  font-family: Poppins;
  padding: 0 16px 0 48px;
}

.form-wrapper > form .custom-input span input:focus {
  outline: none;
}

.form-wrapper > form .custom-input span textarea {
  width: 100%;
  background-color: rgb(242, 241, 243);
  border: none;
  border-radius: 16px;
  color: rgb(133, 128, 143);
  font-weight: 500;
  font-size: 0.875rem;
  font-family: Poppins;
  padding: 16px;
  resize: none;
}

.form-wrapper > form .custom-input span textarea:focus {
  outline: none;
}

@media (max-width: 930px) {
  .form-wrapper {
    flex-direction: column;
    padding: 40px 0 80px 0;
  }

  .form-wrapper > form {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }

  .form-wrapper > form:last-of-type {
    margin-top: 40px;
  }
}

.download-btn-azplus-disabled {
  opacity: 0.4;
  cursor: no-drop;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
  border-bottom: 0.5px rgb(176, 176, 176) solid;
}

.tab input:checked ~ .tab__content {
  max-height: fit-content;
}

.accordion {
  border-radius: 0.5rem;
  overflow: hidden;
}

.tab__label,
.tab__close {
  display: flex;
  color: black;
  background: transparent;
  cursor: pointer;
}

.tab__label {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.tab__label > span {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background-color: #8636a9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab__label::after {
  content: "\276F";
  position: absolute;
  left: 95%;
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
  float: right;
}

.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}

.tab__content p {
  margin: 0;
  padding: 1rem;
}

.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce 0.5s infinite;
}

@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }

  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}

.cgu-p {
  text-align: justify;
  margin-bottom: 40px;
}

.blog-content {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.blog-wraps {
  display: flex;
}

.blog-content .sidebar {
  width: 35%;
  height: fit-content;
  border-radius: 24px;
  background-color: rgb(245, 245, 245);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 24px;
  box-sizing: border-box;
}
.blog-wraps .sidebar {
  width: 35%;
  height: fit-content;
  border-radius: 24px;
  background-color: rgb(245, 245, 245);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 24px;
  box-sizing: border-box;
}
.sidebar .activeleft {
  background-color: #0a7022;
  padding: 16px;
}
.activeleft a {
  color: white !important;
}

@media (max-width: 930px) {
  .blog-content .sidebar {
    display: none;
  }
  .blog-wraps .sidebar {
    display: none;
  }

  .card-client {
    width: 90% !important;
  }

  .card-client:nth-child(n + 2) {
    display: none;
  }

  .blog-content .detail-content {
    width: 98% !important;
  }

  .bg-round .blogimg {
    height: 30vh !important;
    height: auto;
    object-fit: cover;
  }
}

.sidebar ul li {
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgb(122, 122, 122);
  cursor: pointer;
  padding: 8px;
}
.sidebar ul li:hover {
  background-color: #0a70221e;
}
.sidebar ul li a {
  color: rgb(122, 122, 122);
}

.blog-content .detail-content {
  width: 75%;
}

.image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 10px 0;
  text-transform: initial;
}

.divider {
  border: 0.3px solid rgb(233, 232, 232);
  margin: 8vh 0 4vh 0;
}

.intro {
  justify-content: start;
  text-align: start;
  margin: 0 8vw;
}

.intro p {
  margin-bottom: 15px;
}

.icon-box {
  width: 70px;
  height: 70px;
  font-size: 100px;
  font-weight: 700;
  border-radius: 13px;
  box-shadow: 0 3px 6px #e9f4ef;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box > i {
  font-size: 40% !important;
}

.violet-icon {
  background-color: rgb(250, 169, 228);
  color: rgb(150, 0, 109);
}

.yellow-icon {
  background-color: rgb(255, 217, 120);
  color: rgb(124, 89, 0);
}

.orange-icon {
  background-color: rgb(255, 166, 102);
  color: rgb(155, 65, 0);
}
.bleu-icon {
  background-color: rgb(147, 231, 254);
  color: rgb(0, 88, 112);
}
.green-icon {
  background-color: rgb(196, 250, 169);
  color: rgb(40, 135, 3);
}
/* .arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 8px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: transform 250ms ease-in-out;
}

.arrow:hover {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transition: transform 250ms ease-in-out;
} */

.bg-round {
  position: relative !important;
}
.bg-round > img {
  object-fit: cover !important;
}

.devis {
  position: absolute;
  top: 20px;
  right: 5px;
  width: 150px;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .devis {
    position: relative;
    margin: 8px auto;
    width: 150px;
    display: block;
  }
  
  .call-us {
    padding: 8px 16px;
  }
  
  .call-us a {
    font-size: 1rem;
  }
  
  .banner .cta-image > div h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  
  .banner .cta-image > div p {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.mention {
  font-size: 10px;
  font-weight: 500;
  color: black;
}

.partenaires {
  padding-left: 25px;
}

.partenaires > ul > li {
  margin-top: 15px;
}

.call-us {
  display: inline-flex;
  align-items: center;
  background-color: #a9cbb7;
  padding: 12px 24px;
  border-radius: 50px;
  margin: 8px 0 2.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: #1c6142;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  white-space: nowrap;
  gap: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.call-us::before {
  content: '\f095';
  font-family: 'bootstrap-icons';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.call-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1c6142;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.call-us:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  background-color: #1c6142;
  color: white;
  border-color: #a9cbb7;
}

.call-us:hover::before {
  transform: scale(1.2);
}

.call-us:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.call-us:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .call-us {
    padding: 8px 16px;
    font-size: 1rem;
    background-color: #1c6142;
    color: white;
  }
  
  .call-us:hover {
    background-color: #a9cbb7;
    color: #1c6142;
  }
}

.btn-devis {
  background-color: #1c6142;
  color: white !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #1c6142;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-devis:hover {
  background-color: transparent;
  color: #1c6142 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(28, 97, 66, 0.2);
}

.devis {
  position: absolute;
  top: 20px;
  right: 5px;
  width: 225px;
  height: auto;
  border-radius: 30px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.devis:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
  .devis {
    position: relative;
    margin: 20px auto;
    width: 150px;
    display: block;
  }
  
  .call-us {
    padding: 8px 16px;
  }
  
  .call-us a {
    font-size: 1rem;
  }
  
  .banner .cta-image > div h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  
  .banner .cta-image > div p {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
