:root {
  --primary-color: #FE6700;
}

.transport-service {
  padding-bottom: 90px;
  padding-top: 120px;
  background-color: #F6F6F6;
}

.transport-service .head {
  text-align: center;
  margin-bottom: 60px;
}

.transport-service .head .sec-title {
  color: #000;
  margin-bottom: 25px;
}

.transport-service .head p {
  color: #3C3C3C;
  max-width: 534px;
  margin: auto;
  line-height: 26px;
}

.transport-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width: 1200px) {
  .transport-service-list {
    gap: 30px;
  }
}

.transport-service-list .items {
  width: calc(33% - 20px);
  position: relative;
  overflow: hidden;
}

/* @media screen and (min-width: 1200px) { */
@media screen and (min-width: 1440px) {
  .transport-service-list .items {
    width: 380px;
  }
}

.transport-service-list .items::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #FE6700;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transport-service-list .items .btn-link {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  position: absolute;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 170px;
  right: 20px;
  z-index: 2;
  text-decoration: none;
  -webkit-transform: translateX(150px);
  transform: translateX(150px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transport-service-list .items .btn-link span::before {
  color: #000;
}

.transport-service-list .items figure {
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 1200px) {
  .transport-service-list .items figure {
    margin-bottom: 25px;
  }
}

.transport-service-list .items figure img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.transport-service-list .items .title {
  line-height: 25px;
  margin-bottom: 20px;
  padding-right: 40px;
}

.transport-service-list .items:hover::before {
  width: 100%;
}

.transport-service-list .items:hover .btn-link {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.transport-service-list .items:hover figure img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}



.items_link_card .items.link {
  border: 1px solid #FE6700;
  border-radius: 15px;
  padding: 40px 64px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 380px;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 270px;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

@media screen and (max-width: 1440px) {
  .items_link_card {
    width: calc(33% - 20px);
  }
}

.transport-service-list .items.link::before {
  display: none;
}

.items_link_card {
  display: flex;

}

/* .transition_unset {
  -webkit-transition: all 0.5s ease-in-out !important;
  transition: all 0.5s ease-in-out !important;
  transition-delay: 0.5s !important;
  transition-duration: 1.5s !important;

} */

.transport-service-list .items.link .btn-link {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #FE6700;
  display: inline-block;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  top: auto;
  bottom: 30px;
  left: 40px;
}

.transport-service-list .items.link .btn-link span {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.transport-service-list .items.link .btn-link span::before {
  color: #fff;
}

.transport-service-list .items.link:hover {
  background-color: #FFEDE0;
}

.transport-service-list .items.link:hover .btn-link span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.other-service {
  padding-top: 120px;
  padding-bottom: 120px;
}

.other-service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.other-service-wrap .items {
  width: 585px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.other-service-wrap .items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

.other-service-wrap .items .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 30px;
  padding: 0 30px;
}

.other-service-wrap .items .content .title {
  max-width: 337px;
  color: #fff;
  line-height: 30px;
}

.other-service-wrap .items .content span {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.other-service-wrap .items .content span::before {
  color: #000;
}

.other-service-wrap .items:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.other-service-wrap .items:hover .content span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.why-cigisped {
  padding-top: 120px;
  background-color: #F6F6F6;
  padding-bottom: 120px;
}

.why-cigisped .head .title-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 70px;
}

.why-cigisped .head .title-field .sec-title {
  color: #000;
}

.why-cigisped .head .title-field p {
  max-width: 496px;
  color: #3C3C3C;
  line-height: 26px;
}

.why-cigisped-list {
  border-top: 1px solid #BFBFBF;
  position: relative;
}

.why-cigisped-list:last-child {
  border-bottom: 1px solid #BFBFBF;
}

.why-cigisped-list::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #498611;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.why-cigisped-list .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 50px 100px 50px 120px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  position: relative;
  z-index: 2;
}

.why-cigisped-list .content figure {
  position: absolute;
  left: 120px;
  bottom: -60px;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.why-cigisped-list .content .detail {
  width: 371px;
}

.why-cigisped-list .content .detail .title {
  font-size: 1.375rem;
  color: #000;
  line-height: 28px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.why-cigisped-list .content .detail p {
  color: #3C3C3C;
  line-height: 26px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.why-cigisped-list:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.why-cigisped-list:hover .content figure {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.why-cigisped-list:hover .content .detail .title {
  color: #fff;
}

.why-cigisped-list:hover .content .detail p {
  color: #fff;
}