.main-detail--log {
  & .detail-log--head {
    background-image: linear-gradient(to left,
        rgb(0 0 0 / 60%),
        rgb(0 0 0 / 60%)),
      url('../img/bglog.webp');
    height: 28rem;
    background-size: cover;
    background-position: center 15%;

    @media screen and (max-width:900px) {
      height: 20rem;
    }

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;

    .head-ct {
      text-align: center;
      color: white;
      padding: 0 2rem;

      img{
        max-width: 35%;
        margin-bottom: 1rem;

        @media screen and (max-width:600px) {
          max-width: 40%;
        }

        @media screen and (max-width:480px) {
          max-width: 68%;
        }
      }

      h1 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;

        @media screen and (max-width:900px) {
          font-size: 2.5rem;
        }

        @media screen and (max-width:770px) {
          font-size: 2rem;
        }

        @media screen and (max-width:500px) {
          font-size: 1.5rem;
        }
      }

      p {
        font-size: 1.3rem;
        margin-bottom: 2rem;

        @media screen and (max-width:770px) {
          font-size: 1rem;
        }
      }

      a {
        font-size: 15px;
        text-transform: uppercase;
        text-decoration: none;
        background-color: #002261;
        border-radius: 5px;
        color: white;
        padding: 0.8rem 1.4rem;
        transition: all .2s;
      }
    }
  }
}


.section-fonctionnalite {

  .bold{
    font-weight: 700;
  }

  & .fonct-content {
    padding: 0 1.5rem;

    .head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .row {
      display: flex;
      justify-content: center;
      gap: 10rem;
      margin-bottom: 4rem;

      @media screen and (max-width:1028px) {
        gap: 5rem;
      }

      @media screen and (max-width:900px) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
      }

      & .col {
        width: 30rem;

        @media screen and (max-width:900px) {
          width: 100%;
        }

        & div:first-child {
          display: flex;
          align-items: center;
          gap: .8rem;
          margin-bottom: .5rem;

          & i {
            font-size: 1.8rem;
            color: #002261;
          }
        }

        & div:last-child {
          margin-left: 3.5rem;

          @media screen and (max-width:600px) {
            margin-left: 2.2rem;
          }
        }
      }
    }

    & .capture {
      text-align: center;
      margin-bottom: 4rem;

      img {
        width: 40%;

        @media screen and (max-width:900px) {
          width: 70%;
        }
      }
    }
  }
}

.tarif2 {
  padding: 1.5rem .5rem !important;
}

.section-tarifs {
  background-color: #0022619c;
  padding: 1.8rem .5rem;
  margin-bottom: 3.5rem;

  & .tarif-content {

    & .head {
      text-align: center;
      color: white;
      margin-bottom: 2.5rem;

      h2 {
        margin-bottom: .5rem;
      }
    }

    & .head2 {
      text-align: center;
      color: white;
    }

    & .offer-boxs {

      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;

      .box {
        border: 1px solid #e6e6e6;
        padding: 1.5rem 2.5rem;
        background-color: white;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        border-radius: 1rem;
        width: 300px;

        & .name {
          h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
          }
        }

        & .avantages {

          ul {
            list-style: none;

            i {
              color: #e15b02;
            }
          }

          li {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid gray;
          }
        }

        & .link {
          margin-top: auto;
          align-self: center;

          a {
            text-decoration: none;
            padding: .5rem 1rem;
            border-radius: 8px;
            color: white;
            background-color: #c77a91;
          }
        }
      }
    }
  }
}

.t2 {
  h3 {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    gap: .5rem;
    justify-content: center;

    @media screen and (max-width: 560px) {
      flex-direction: column;
      font-size: 1.1rem;
      text-align: center;
    }
  }
}


.footer2 {
  margin: 0 !important;
  background-color: #f7f7f7 !important;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(214, 214, 214);
  padding: 1rem 0;
  z-index: 2;
  transition: all .1s;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}


