/* hidden header icon  */

@media (max-width: 991px) {
  .social-icons {
    display: none;
    i {
      font-size: 1.5rem;
      margin: 0 5px;
      cursor: pointer;
    }
  }
}

/* header image title  */
@media (max-width: 950px) {
  .header-content {
    position: relative;
    z-index: 1;
    h6 {
      text-align: center;
      font-size: 22px;
      font-family: cursive;
      color: var(--whiteColor);
    }
    h1 {
      width: 100%;
      margin: auto;
      text-align: center;
      font-size: 5vmax;
      padding-left: 20px;
      color: var(--whiteColor);
    }
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 1250px;
    margin: auto;
    .about-section {
      display: flex;
      margin: 120px 0;
    }
    .about-image {
      img {
        width: 550px;
        height: 500px;
      }
    }
    .about-title {
      p {
        width: fit-content;
        padding: 12px;
        font-weight: 650;
        font-size: 13px;
        letter-spacing: 1px;
        background-color: #e0f6e9;
      }
      h1 {
        color: #024731;
        font-weight: bold;
        margin: 20px 0 0 0;
        font-size: 55px;
        letter-spacing: 1px;
      }
    }
    .about-peragraph {
      margin: 20px 0;
      padding: 6px;
      p {
        max-width: 550px;
        font-size: 16px;
        margin: 15px 0;
        color: gray;
      }
    }
    .icon-component {
      display: flex;
      align-items: center;
      margin-right: 10px;
      gap: 50px;
      .time-lien {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        i {
          font-size: 35px;
          cursor: pointer;
          color: green;
        }
        p {
          font-size: 15px;
          margin-top: 5px;
        }
      }
    }
    #about {
      padding: 15px 10px;
    }
  }
  .about-content {
    margin-top: 50px;
  }
  .slider-wrapper {
    margin: 50px 0;
  }
}

/* swiper  */

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

/* about page  */

@media (max-width: 1060px) {
  .about-page-content {
    display: flex;
    margin-top: 100px;
    flex-wrap: wrap;
    flex-direction: column;
  }
}


/* contact banner */

@media(max-width:1050px){
  .contact-section {
    display: flex;
    flex-direction: column;
  }
  .contact-input{
    margin-left: 0px;
    margin-top: 40px;
  }
  .contact-details {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    background-color: #097e51;
    h3 {
      width: 100%;
      font-size: 4vw;
      color: white;
      padding: 20px;
    }
    .address {
      padding: 20px;
      display: flex;
      gap: 20px;
      i {
        font-size: 25px;
        color: white;
        margin: 5px 0;
      }
      p {
        color: white;
        font-size: 20px;
      }
    }
  }
  .contact-input-details {
    p {
      font-size: 18px;
      font-weight: bold;
    }
    h2{
      font-size: 10vw;
    }
    h6{
      font-size: 18px;
      color: gray;
    }
  }
  .inputs-sections {
    width: 100%;
    margin: 20px 0;
    input {
      width: 100%;
      margin: 10px 0;
      height: 50px;
      &:focus {
        box-shadow: none;
        outline: none;
      }
    }
    #message {
      height: 120px;
      &:focus {
        box-shadow: none;
        outline: none;
      }
    }
    .send-btn {
      width: 150px;
      height: 40px;
      border-radius: 5px;
      font-size: 15px;
      border: none;
      background-color: #097e51;
      color: white;
    }
  }
}