/* styling about medica section */
#about_medica {
  padding-top: 100px;
  margin-bottom: 100px;

  .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    .info {
      flex: 1;

      .sub-title {
        font-size: 20px;
        line-height: 30px;
      }

      .title {
        font-size: 48px;
        line-height: 72px;
        font-weight: 600;
      }

      .description {
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
      }
    }

    .image {
      position: relative;
      flex: 1;

      &::after {
        content: '';
        position: absolute;
        top: 0px;
        right: -80px;
        height: 100%;
        width: 100%;
        background: var(--main-gradient);
        border-top-left-radius: var(--main-radius);
        border-bottom-left-radius: var(--main-radius);
        z-index: -1;
      }

      img {
        width: 450px;
        position: relative;
        top: 80px;
      }
    }
  }
}

/* styling our services section */
#our_services {
  padding-block: 50px;

  .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    .image {
      flex: 1;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -80px;
        height: 50%;
        width: calc(100% - 150px);
        background: var(--main-gradient);
        border-top-right-radius: var(--main-radius);
        border-bottom-right-radius: var(--main-radius);
        z-index: -1;
      }

      img {
        width: 100%;
      }
    }

    .info {
      flex: 1;

      .title {
        font-size: 20px;
      }

      .services-list {
        li {
          padding: 20px;
          background: var(--main-gradient);
          margin-bottom: 20px;
          border-radius: 16px;
          color: white;
          width: fit-content;

          &:nth-child(2) {
            margin-inline-start: 130px;
            width: 230px;
          }

          &:nth-child(3) {
            margin-inline-start: 160px;
            width: 300px;
          }

          &:nth-child(4) {
            margin-inline-start: 50px;
            width: 230px;
          }
        }
      }
    }

  }
}

/* styling overseas section */
#overseas {
  padding-block: 50px;

  .content {
    margin: auto;
    width: 800px;
    text-align: center;

    .title {
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      margin: 15px auto;
    }

    .description {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
    }
  }

}