/* roboto-300 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../fonts/roboto-v20-latin-300.woff2") format("woff2"), url("../fonts/roboto-v20-latin-300.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/roboto-v20-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v20-latin-regular.woff") format("woff");
  font-display: swap;
}

/* roboto-500 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/roboto-v20-latin-500.woff2") format("woff2"), url("../fonts/roboto-v20-latin-500.woff") format("woff");
  font-display: swap;
}

/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/roboto-v20-latin-700.woff2") format("woff2"), url("../fonts/roboto-v20-latin-700.woff") format("woff");
  font-display: swap;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    transform: translate3d(0);
    opacity: 1;
  }
}

.visible-slideLeft {
  animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    transform: translate3d(0);
    opacity: 1;
  }
}

.visible-scale {
  animation: visible-scale 1s ease forwards;
}

@keyframes visible-scale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

input,
label,
select,
button,
textarea {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  line-height: 1;
  outline: none;
}

body {
  display: flex;
  flex-direction: column;
  color: rgba(0, 0, 0, 0.9);
  font-family: "Roboto", sans-serif;
  background-color: #ecf6fd;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.no-visible {
  opacity: 0;
}

/* CONTAINER */
.container {
  width: 100%;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.container_section {
  padding-top: 100px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}

@media screen and (max-width: 1100px) {
  .container {
    padding: 0 20px;
  }
  .container_section {
    padding-top: 60px;
  }
}

/* TITLE */
.section__bg {
  background-color: #f9fafd;
}

.section__title {
  font-size: 2rem;
  font-weight: 500;
}

/* DESCRIPTION  */
.section__description {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 300;
  display: block;
  position: relative;
}

/* SEPARATOR */
.section--separator::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 6px;
  background-color: #f57a8c;
  border-radius: 3px;
}

/* BUTTONS */
.bt-primary {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02rem;
  height: 28px;
  font-size: 0.8rem;
  padding: 0 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: white;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: rgba(43, 112, 161, 0.7);
  width: 100%;
}

.bt-primary:hover {
  opacity: 0.8;
}

.bt-primary--inside {
  position: absolute;
  right: 0;
  border-radius: 0 4px 4px 0;
  margin-right: 10px;
  width: 90px;
}

.bt-secondary {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02rem;
  border-radius: 5px;
  font-size: 1.3em;
  line-height: 31px;
  text-transform: uppercase;
  cursor: pointer;
  height: 55px;
  width: 80%;
}

.bt-secondary--white {
  width: 400px;
  background-color: #fdfdfd;
  color: #47779a;
  transition: all 0.3s ease;
}

.bt-secondary--white:hover {
  background-color: #75bad8;
  color: white;
}

.bt-secondary--blue {
  background-color: rgba(43, 112, 161, 0.7);
  color: white;
  transition: opacity 0.3s ease;
  margin-top: 19px;
}

.bt-secondary--blue:hover {
  opacity: 0.8;
}

.bt-secondary--small {
  height: 49px;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: inherit;
}

@media screen and (max-width: 1100px) {
  .bt-secondary--blue {
    width: 100%;
    margin-top: 10px;
  }
  .bt-secondary {
    font-size: 1em;
    line-height: 21px;
  }
  .bt-secondary--white {
    width: 300px;
    margin: 10px;
  }
}

/* HEADER */
.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.header__logo {
  width: 180px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.header__list {
  display: flex;
  margin: 0 20px;
}

.header__item {
  position: relative;
  margin: 0 14px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #6d6b6b;
  transition: color 0.3s ease;
  cursor: pointer;
}

.header__item:hover {
  color: black;
}

.header__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  background-color: #47779a;
  transition: transform 0.4s ease;
}

.header__item:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* header> AREA CONNEXION */
.header__log {
  margin-left: 40px;
}

.header__form {
  position: relative;
  display: flex;
}

.header__input {
  height: 28px;
  padding: 0 10px 0 10px;
  border-radius: 4px 0 0 4px;
  font-size: 0.8rem;
  background-color: white;
  margin-right: 10px;
  color: #6d6b6b;
}

.header__input--connect {
  border-radius: 3px;
  width: 120px;
  margin-bottom: 7px;
}

.header__burger div {
  background-color: khaki;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background-color: #6d6b6b;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.header__burger--toggle .burger__line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.header__burger--toggle .burger__line2 {
  opacity: 0;
}

.header__burger--toggle .burger__line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 1100px) {
  .header__burger div {
    display: block;
  }
  .header__nav {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    top: 85px;
    left: 0;
    min-height: calc(100vh - 125px);
    width: 100%;
    position: absolute;
    background-color: #ecf6fd;
    transition: all 0.3s ease;
    transform: translateX(100%);
    border-bottom: 1px solid #47779a;
    padding: 20px;
    display: none;
    z-index: 2;
  }
  .header__nav--active {
    display: inline-flex;
    transform: translateX(0);
  }
  .header__list {
    margin: 0;
    flex-direction: column;
  }
  .header__item {
    padding: 10px 0px;
  }
  .header__log {
    margin-left: 0;
  }
  .header__connexion {
    top: -145px;
  }
}

/* HERO HEADER */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 70px;
  padding-left: 18px;
}

.hero__left {
  max-width: 430px;
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 47px;
  opacity: 0;
  animation: slideFadeIn 0.5s ease forwards;
}

.hero__subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 34px;
  color: #47779a;
  margin-top: 0.9375rem;
  opacity: 0;
  animation: slideFadeIn 0.5s ease forwards 0.13s;
}

.hero__description {
  font-size: 1.2rem;
  line-height: 30px;
  font-weight: 400;
  margin-top: 15px;
  opacity: 0;
  animation: slideFadeIn 0.5s ease forwards 0.26s;
}

.hero__btn {
  display: block;
  opacity: 0;
  animation: slideFadeIn 0.5s ease forwards 0.39s;
}

.hero__image {
  width: 692px;
}

.hero__right {
  animation: slideLeft 1s ease forwards;
}

.hero-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 560px;
  padding: 41px 0 110px 0;
  width: 50%;
  text-align: center;
  position: relative;
}

.hero-product .hero-product__subtitle {
  order: 0;
}

.hero-product__vignette {
  position: absolute;
  background-color: #f9fafd;
  bottom: -88px;
  left: -97px;
  width: 198px;
  height: 183px;
  border-radius: 40px;
}

.hero-product__vignette img {
  padding-top: 49px;
  height: 140px;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__image {
    margin-top: 30px;
    max-width: 100%;
  }
  .hero-product__vignette {
    display: none;
  }
}

/* SOFTWARE */
.software {
  padding-top: 0px;
  padding-bottom: 10px;
  height: 221px;
  text-align: center;
}

.software__title {
  font-size: 2rem;
  font-weight: 500;
}

.software__liste {
  display: flex;
  justify-content: space-between;
  margin-top: 41px;
}

@media screen and (max-width: 1100px) {
  .software {
    width: 90%;
    margin: 0 10px;
    padding-top: 20px;
    padding-bottom: 10px;
    height: 100%;
  }
  .software__title {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .software__liste {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
  }
  .software__liste img {
    margin: 10px 0px;
  }
  .software__li {
    margin-top: 10px;
  }
}

/* PRODUCT */
.products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 69px 97px;
  height: 100%;
  margin-top: 90px;
}

.products__item {
  padding: 22px;
  background-color: #ecf6fd;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  max-width: 300px;
  position: relative;
  text-align: center;
}

.products__list_IA {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 69px 97px;
  height: 100%;
  margin-top: 90px;
}

.products__item_IA {
  padding: 22px;
  background-color: #ecf6fd;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  max-width: 550px;
  position: relative;
  text-align: center;
}

.products__icon {
  height: 100px;
  margin: 15px 0;
}

.products__title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.products__description {
  margin: 9px 0;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
  height: 100px;
}

.products__description a:hover {
  color: #47779a;
}

@media screen and (max-width: 1100px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 39px 74px;
  }
  .products__item {
    padding: 22px;
    max-width: 100%;
  }
  
  .products__list_IA {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 74px;

}

.products__item_IA {
  padding: 22px;
  max-width: 100%;
}

}

@media screen and (max-width: 750px) {
  .products__list  {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }  
  .products__list_IA {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .products__description {
    font-size: 1rem;
  }
}

/* CLIENTSs */
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  padding-bottom: 90px;
}

.clients__logo-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  width: 100%;
  height: auto;
  min-height: 135px;
  background-color: white;
  border-radius: 16px;
  margin: 10px 0;
  overflow: hidden;
}

.clients__logo-col {
  width: 207px;
  margin: 10px;
}

.clients__logo-img {
  width: auto;
  max-height: 130px;
}

@media screen and (max-width: 1100px) {
  .clients__logo {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .clients__logo-col {
    width: 90%;
  }
}

.avantage {
  padding-bottom: 90px;
}

.avantage_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 50px;
  position: relative;
  margin-top: 90px;
}

.avantage__item {
  background-color: white;
  width: 100%;
  height: 450px;
  border-radius: 15px;
  padding: 50px;
}

.avantage__item a {
  color: rgba(43, 112, 161, 0.7);
}

.avantage__item a:hover {
  color: #6d6b6b;
}

.avantage__item p {
  position: relative;
  text-align: justify;
}

.avantage__item h2 {
  color: #47779a;
  font-size: 2rem;
  font-weight: 500;
  margin: 25px 0;
  text-align: left;
}

.avantage__item img {
  width: 100px;
  align-self: center;
}

.cercle-centre,
.cercle-centre::before,
.cercle-centre::after {
  background-color: #f9fafd;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.cercle-centre::before,
.cercle-centre::after {
  content: "";
  background-color: white;
  width: 200px;
  height: 200px;
}

.cercle-centre::after {
  background-color: #f9fafd;
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 1100px) {
  .avantage_list {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .cercle-centre {
    display: none;
  }
  .avantage__item {
    height: auto;
    padding: 20px;
    width: 100%;
  }
}

.portofolio__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 90px 40px 0 40px;
}

.portofolio__list img {
  border-radius: 15px;
}

@media screen and (max-width: 1100px) {
  .portofolio__list img:last-child {
    margin-top: 30px;
  }
}

/* CALL TO ACTION */
.cta {
  background-color: #5591b5;
  padding: 20px 15px;
}

.cta__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
  color: white;
}

.cta__title {
  font-size: 2rem;
  font-weight: 500;
}

.cta__title_plus {
  font-size: 1.4rem;
  font-weight: 500;
}

.cta__description {
  font-size: 1.8rem;
  font-weight: 300;
}

.cta__description-produit {
  font-size: 1.2rem;
  font-weight: 300;
}

.cta__description-produit a:hover {
  color: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 1100px) {
  .cta__container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px 0;
  }
  .cta__title {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .cta__description {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 4px;
  }
}

/* FOOTER */
.footer {
  background-color: #3b353b;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 93px;
  color: #fffbfb;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer__list {
  display: flex;
}

.footer__item {
  color: #fffbfb;
  position: relative;
  margin-left: 10px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer__item:hover {
  color: #a2a4a5;
}

.footer__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: #fffbfb;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.4s ease;
}

.footer__item:hover::before {
  transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 1100px) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.93rem;
    line-height: 1.6em;
  }
  .footer__right {
    display: none;
  }
}

.produit {
  padding: 1px 0px 100px 0px;
}

.presentation {
  padding-top: 100px;
}

.presentation__section {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.presentation__intro {
  max-width: 520px;
  line-height: 25px;
}

.presentation__intro h2,
.presentation__intro p,
.presentation__intro li,
.presentation__intro strong {
  display: block;
}

.presentation__intro h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.presentation__intro p,
.presentation__intro li {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4rem;
}

.presentation__intro strong {
  margin: 10px 0 5px 0;
}

.presentation__intro li {
  margin-left: 24px;
  padding-bottom: 6px;
}

.presentation__intro li::before {
  content: "";
  position: absolute;
  background-image: url("../img/icons/fa-solid_check.svg");
  top: 2px;
  left: -24px;
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 30px;
}

.presentation__video {
  position: relative;
}

.presentation__video video {
  position: relative;
  z-index: 10;
  width: 520px;
}

.presentation__video::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 310px;
  top: -5px;
  right: -5px;
  z-index: 0;
  background: #e9eff3;
  transform: rotate(4.5deg);
}

.presentation__video__verticale {
  position: relative;
}

.presentation__video__verticale video {
  position: relative;
  z-index: 10;
  width: 500px;
}

.presentation__video__verticale::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 550px;
  top: -25px;
  right: -5px;
  z-index: 0;
  background: #e9eff3;
  transform: rotate(4.5deg);
}

.presentation__video__verticale_iphone {
  position: relative;
}

.presentation__video__verticale_iphone video {
  position: relative;
  z-index: 10;
  width: 500px;
  margin-top:-30px;
}


.etape {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -12px;
  left: -12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f29fae;
  border: solid 5px #f9fafd;
  font-weight: 700;
  color: white;
  font-size: 1.6rem;
}

.comptatible{
	margin-top:30px;
}
.comptatible a:hover{
	color:#2b70a1;
}

@media screen and (max-width: 1100px) {
  .presentation {
    padding-top: 45px;
  }
  .presentation__section {
    display: flex;
    flex-direction: column;
  }
  .presentation__video::before {
    display: none;
  }
  .presentation__video__verticale::before {
    display: none;
  }
}

.contact {
  padding: 90px 0;
}

.contact__section {
  display: flex;
  justify-content: space-between;
}

.contact__left {
  max-width: 520px;
}

.contact__left h2,
.contact__right h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact__left p,
.contact__right p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.4rem;
}

.contact__coordinate {
  display: flex;
  justify-content: space-between;
  max-width: 460px;
  margin-top: 20px;
}

.contact__phone {
  margin-top: 40px;
}

.contact__adress h3 {
  margin-top: 10px;
  font-weight: 500;
}

.contact__iframe {
  width: 525px;
  height: 450px;
}

.contact__form {
  margin-top: 30px;
  position: relative;
}

.contact__form .bt-secondary {
  width: 100%;
}

.contact__form .text-input,
textarea {
  margin: 10px 0 15px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  padding: 10px;
}

.contact__form-adresse {
  height: 70px;
}

.contact__form-message {
  height: 120px;
}

.erreur input:invalid {
  border: 2px dashed red;
}

.erreur input:valid {
  border: 1px solid black;
}

@media screen and (max-width: 1100px) {
  .contact {
    padding-top: 45px;
  }
  .contact__section {
    flex-direction: column;
  }
  .contact__right {
    margin-top: 30px;
  }
  .contact__iframe {
    width: 100%;
    height: 250px;
  }
  .contact__coordinate {
    flex-direction: column;
  }
}

.devis {
  padding: 70px 0;
}

.devis p {
  margin-bottom: 40px;
}

.devis__liste {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 45px;
  margin-bottom: 40px;
}

.devis__liste .checked {
  background-color: #ecf6fd;
}

.devis__item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  background-color: white;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  padding: 10px 0;
}

.devis__item input[type="checkbox"] {
  margin-right: 10px;
}

.devis__item a:hover {
  color: rgba(43, 112, 161, 0.7);
}

.devis h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.checkbox:hover .checkbox__check {
  background: #f57a8c;
}

.checkbox__input {
  width: 0;
  height: 0;
  opacity: 0;
  outline: none;
}

.checkbox__input:checked + .checkbox__check {
  background: #f57a8c;
  border: 0.15rem solid #f57a8c;
  stroke-dashoffset: 0;
}

.checkbox__check {
  box-sizing: unset;
  margin-right: 10px;
  border: 0.15rem solid #d5d5d5;
  stroke: #f9f9f9;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  stroke-linecap: round;
  stroke-width: 0.2em;
  border-radius: 0.2em;
  fill: none;
  transition: background 0.4s, stroke-dashoffset 0.6s;
}

@media screen and (max-width: 1100px) {
  .devis__liste {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}

.clients__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 69px 97px;
  height: 100%;
}

.clients__item {
  padding: 22px;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
  width: 100%;
  max-width: 300px;
  position: relative;
  text-align: center;
  color: white;
}

.clients__item img {
  margin-bottom: 20px;
}

.clients__item span {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: rgba(43, 112, 161, 0.7);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: white;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
}

@media screen and (max-width: 1100px) {
  .clients__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 39px 74px;
  }
  .clients__item {
    padding: 22px;
    max-width: 100%;
  }
    .products__item_IA {
    padding: 22px;
    max-width: 100%;
    position: relative; 
  }
}

@media screen and (max-width: 750px) {
  .clients__list {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }  
  .clients__list_IA {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
    .products__item_IA {
      position: relative;
  }

  .clients__description {
    font-size: 1rem;
  }
  .presentation__video__verticale_iphone video {
  margin-top:0px;
}
}
