
.info .image img{
height:400px;
width:480px
}
/*============== 
  TV Screens 
================*/
@media(min-width: 1441px) {

  /* styling hospitals section */
  #hospitals {
    .content {
      .image {
        margin-bottom: -350px;

        img {
          min-height: 400px !important;
        }
      }
    }
  }

  /* styling radiology centers section */
  #radiology {
    padding-block: 100px;

    .content {
      height: 520px;
      gap: 50px;

      .image {
        flex: 2;
      }

      .info {
        flex: 1;
      }
    }
  }
}

/*============== 
  Extra Large 
================*/
@media(max-width: 1440px) {
  /*  */
}

/*============== 
     Large 
================*/
@media(max-width: 1280px) {
  /*  */
}

/*============== 
     Medium 
================*/
@media(max-width: 1025px) {

  /* styling hospitals section */
  #hospitals {
    padding-block: 100px;
    margin-bottom: 250px;

    .content {
      flex-direction: column;

      .image {
        margin-bottom: 0px;

      }

      .info {
        margin-bottom: -250px;
      }
    }
  }

  /* styling laoratories section */
  #laboratories {
    .content {
      align-items: end;
      flex-direction: column-reverse;
      gap: 50px;

      .info {
        .hospitals-list {
          li {
            list-style: disc;
            font-weight: 700;
            line-height: 24px;

            &::marker {
              color: #D3C312;
              font-size: 20px;
            }
          }
        }
      }

      .image-one {
        align-self: flex-start;
        margin-top: -240px;

        img {
          width: 80%;
        }
      }

      .image-two {
        &::after {
          width: calc(100% + 60px);
        }

        img {
          width: 90%;
          margin-left: auto;
          display: block;
        }
      }
    }
  }
}

/*============== 
    Tablet 
================*/
@media(max-width: 768px) {

  /* styling hospitals section */
  #hospitals {
    padding-block: 100px;
    margin-bottom: 220px;

    .content {
      flex-direction: column;
      gap: 20px;

      .image {
        margin-bottom: 0px;

        img {
          width: 100%;
        }
      }

      .info {
        margin-bottom: -250px;
      }
    }
  }

  /* styling laoratories section */
  #laboratories {
    .content {
      align-items: end;
      flex-direction: column-reverse;
      gap: 50px;

      .image-one {
        display: none;
      }

      .image-two {
        margin-bottom: 30px;

        &::after {
          width: 100%;
        }

        img {
          width: 100%;
          display: block;
        }
      }
    }
  }

  /* styling radiology centers section */
  #radiology {
    padding-bottom: 60px;

    .content {
      height: 100%;
      flex-direction: column;

      .info {
        width: 100%;
      }
    }
  }

  .sec-title {
    font-size: 32px;
  }

  #transportation .content,
  #accomodation .content,
  #feeding .content {
    gap: 30px;
    flex-direction: column;

    .info {
      text-align: center;

      .title {
        font-size: 26px;
      }
    }

    .image {
      min-width: 500px;
    }
  }

  /* styling services section */
  #services {
    padding-top: 100px;

    .head {
      justify-content: center;
      flex-direction: column;
      text-align: center;

      .title {
        font-size: 30px;
      }

      .description {
        margin-top: 15px;
        font-size: 16px;
        width: 100%;
        padding-inline: 0px;
      }
    }

    .cards {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    }
  }
}

/*============== 
     Mobile 
================*/
@media(max-width: 576px) {

  /* styling hospitals section */
  #hospitals {
    text-align: center;
    padding-block: 80px;
    margin-bottom: 220px;

    .content {
      flex-direction: column;
      gap: 20px;

      .image {
        margin-bottom: 0px;

        img {
          width: 100%;
        }
      }

      .info {
        margin-bottom: -280px;

        .title {
          font-size: 20px;
        }

        ul {
          text-align: start;
          font-size: 14px;
        }
      }
    }
  }

  /* styling laoratories section */
  #laboratories {
    padding-top: 50px;
    text-align: center;

    .content {
      align-items: end;
      flex-direction: column-reverse;
      gap: 50px;

      .info {
        .title {
          font-size: 20px;
        }

        ul {
          text-align: start;
        }
      }

      .image-one {
        display: none;
      }

      .image-two {
        margin-bottom: 30px;

        &::after {
          width: 100%;
        }

        img {
          width: 100%;
          display: block;
        }
      }
    }
  }

  /* styling radiology centers section */
  #radiology {
    text-align: center;
    padding-bottom: 60px;

    .content {
      height: 100%;
      flex-direction: column;

      .info {
        width: 100%;

        .title {
          font-size: 20px;
        }

        ul {
          text-align: start;
          font-size: 14px;
        }
      }
    }
  }

  .sec-title {
    font-size: 24px;
  }

  #transportation .content,
  #accomodation .content,
  #feeding .content {
    flex-direction: column;
    gap: 20px;

    .info {
      text-align: center;

      .title {
        font-size: 20px;
      }
    }

    .image {
      min-width: 300px;
    }
  }

  /* styling services section */
  #services {
    padding-top: 100px;

    .head {
      justify-content: center;
      flex-direction: column;
      text-align: center;

      .title {
        font-size: 30px;
      }

      .description {
        margin-top: 15px;
        font-size: 16px;
        width: 100%;
        padding-inline: 0px;
      }
    }

    .cards {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

      .info {
        .title {
          margin-bottom: 10px !important;
          font-size: 18px !important;
        }

        .description {
          line-height: 20px !important;
          font-size: 14px !important;
        }
      }
    }
  }
}