.transport_hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 70px !important;

  @media screen and (max-width: 630px) {
    padding-top: 20px !important;
  }

  .decoration_right {
    @media screen and (max-width: 630px) {
      top: 20px !important;
    }

    @media screen and (max-width: 480px) {
      display: none;
    }
  }

  .trans_hero_header {
    height: fit-content;
    width: 100%;
    padding: 40px 0;

    @media screen and (max-width: 630px) {
      padding: 20px 0;
    }

    @media screen and (max-width: 480px) {
      padding: 0 0 10px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    img {
      width: fit-content;
      height: 70px;

      @media screen and (max-width: 768px) {
        width: 70%;
      }
    }

    p {
      font-size: 32px;
      color: var(--primary-color);
      font-weight: 600;

      @media screen and (max-width: 768px) {
        font-size: 20px;
      }

      @media screen and (max-width: 480px) {
        font-size: 19px;
        width: 250px;
        text-align: center;
      }
    }
  }

  .trans_hero_title {
    display: flex;
    gap: 30px;
    height: 350px;
    padding-top: 40px;

    @media screen and (max-width: 980px) {
      height: fit-content;
      padding: 40px;
    }

    @media screen and (max-width: 480px) {
      flex-direction: column;
      align-items: center;
      padding: 0;
      gap: 20px;
    }

    .trans_book {
      height: 120px;
      width: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: #fff;
      color: #ff3a3a;
      font-weight: 700;
      font-size: 30px;
    }

    .trans_contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;

      .more {
        color: var(--tertiery-color);
        font-size: 20px;
        font-weight: 500;
      }
    }
  }

  .trans_hero {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 430px;

    @media screen and (max-width: 980px) {
      flex-direction: column;
      justify-content: flex-start;
      height: 730px;
      align-items: center;
    }

    @media screen and (max-width: 768px) {
      height: 650px;
    }

    @media screen and (max-width: 480px) {
      height: 660px;
    }

    .trans_hero_image {
      height: 300px;
      width: fit-content;
      position: absolute;
      right: 0;
      top: -75px;

      @media screen and (max-width: 980px) {
        position: initial;
      }

      @media screen and (max-width: 768px) {
        height: fit-content;
        width: 400px;
      }

      @media screen and (max-width: 480px) {
        width: 300px;
        padding-top: 40px;
      }

      img {
        height: 100%;
        width: 100%;
      }
    }
  }
}

.content_flow {
  background-color: #fff;
  width: 1000px;
  height: 360px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  position: absolute;
  top: -180px;
  z-index: 9;

  @media screen and (max-width: 980px) {
    width: 90%;
    height: fit-content;
  }

  @media screen and (max-width: 480px) {
    padding: 10px 30px;
  }

  .title {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    color: var(--tertiery-color);
    font-size: 24px;
    font-weight: 600;
    text-align: center;

    @media screen and (max-width: 980px) {
      font-size: 20px;
    }

    @media screen and (max-width: 480px) {
      padding-top: 10px;
      padding-bottom: 0;
    }
  }

  .item {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;

    @media screen and (max-width: 980px) {
      flex-wrap: wrap;
      gap: 20px;
    }

    @media screen and (max-width: 480px) {
      padding-bottom: 20px;
    }

    .item_cont {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 160px;
      height: fit-content;
      gap: 15px;

      p {
        text-align: center;
        line-height: 1.2;
        color: var(--tertiery-color);
        font-size: 16px;
        font-weight: 500;
      }
    }
  }
}

.trans_hero2 {
  padding-top: 220px !important;

  @media screen and (max-width: 630px) {
    padding-top: 370px !important;
  }

  @media screen and (max-width: 450px) {
    padding-top: 510px !important;
  }

  .trans_doc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;

    p {
      font-size: 24px;
      font-weight: 600;
      color: var(--tertiery-color);
      text-align: center;
    }

    .trans_galery {
      width: 100%;
      height: 540px;
      display: flex;
      align-items: flex-start;
      gap: 17px;
      overflow-x: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none;
      scroll-behavior: smooth;
      transition: all 0.5s;
      scroll-snap-type: x mandatory;

      .image {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
        display: flex;
        flex-direction: column;
        flex: 0 0 calc(25% - 15px);
        box-sizing: border-box;
        scroll-snap-align: start;
        transform-origin: center center;
        flex-shrink: 0;
        position: relative;
        margin: 0;
        overflow: hidden;

        @media screen and (max-width: 630px) {
          flex: 0 0 calc(50% - 15px);
        }

        @media screen and (max-width: 450px) {
          flex: 0 0 calc(100% - 15px);
        }

        >a {
          height: 48%;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 10px;
          overflow: hidden;
          scale: 0.9;
          transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

          &:hover {
            scale: 1;
          }

          img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            float: left;
            overflow: hidden;
          }
        }
      }
    }
  }
}

.trans_foot {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
  align-items: center;

  @media screen and (max-width: 980px) {
    flex-direction: column;
    gap: 25px;
  }

  .trans_foot_image {
    height: 227px;
    width: fit-content;

    @media screen and (max-width: 768px) {
      width: 90%;
      height: fit-content;
    }

    @media screen and (max-width: 480px) {
      width: 100%;
      text-align: center;
    }

    img {
      height: 100%;
      width: fit-content;

      @media screen and (max-width: 768px) {
        width: 90%;
        height: fit-content;
      }
    }
  }

  .trans_foot_title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;

    p:nth-child(2) {
      font-size: 30px;
      font-weight: 700;
    }

    @media screen and (max-width: 480px) {
      text-align: center;
    }
  }
}