* {
  box-sizing: border-box;
  outline: none !important;
}

.about-timeline{
	display: flex;
    min-height: 70vh;
	flex-wrap: wrap;
}

.content-showcase{
	width: 30%;
    padding: 30px;
    background: linear-gradient(45deg, #dd2d55, #1985d6);
    border-radius: 30px;
    color: white;
    display: grid;
    align-items: end;
	flex: 1 1 0%;
}

.content-top{
    text-align: center;
}

.content-bottom{
    text-align: center;
}

.info-icon{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 19px;
    background: #cd3a63;
    color: white;
    border: none;
    transition: 0.15s all;
}

.info-icon:hover{
    border: 3px solid #d5a9a9;
    background: #b42247;
}

.show-image-info{
       position: absolute;
    z-index: 111111111;
    top: 0;
    left: 0;
    padding: 25px;
    background: #1a1a1a;
    border-radius: 30px;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s all;
        width: 100%;

}

.show-image-info img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.content-showcase p{
    font-weight: 100;   
}
.journey-wrapper {
	margin: 0 auto;
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    outline: none !important;
    background: white;
    margin-left: 15px;
    border-radius: 30px;
    display: inline-grid;
    align-content: center;
    position: relative;
	flex: 1 1 60%;
}

.gallery-bx{
    margin-top: 50px;
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background: #8e848775;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
}

.imgsa{
	padding: 20px;
/*     border: 1px solid #d0cbcb; */
    margin: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
/*     background: #00000045; */
}

.imgsa img{
	transition: transform 0.3s ease;
	cursor: pointer;
}

.imgsa:hover img{
	transform: scale(1.2);
	border-radius: 10px;
}
.imgsa video{
	height: auto;
    max-height: 250px;
    margin: auto;
	border-radius: 10px;
	transition: transform 0.3s ease;
}
.imgsa:hover video{
	transform: scale(1.2);
}

.timeline-box h6{
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;
    opacity: 0;
    text-align: center;
    position: relative;
    margin-top: -47px;
}

.timeline-box h6 svg{
	/* transform: rotate(180deg); */
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.timeline-box p {
    width: 160px;
    color: #000000;
    font-weight: 700;
    font-family: system-ui;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    height: 100%;
    overflow: hidden;
    line-height: 1;
}

.timeline-box p i{
    font-size: 14px;
    position: absolute;
    bottom: -15px;
    color: black;
}
.timeline-box p:last-of-type {
  /* margin-bottom: 15px; */
}
.start-point h4 {
	font-size: 10px;
    color: #403e3e;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #ffffff;
    border: 1px solid black;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 13px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    animation: flipAndShow 2s forwards; /* Adjust the duration as needed */
    opacity: 0;
}

@keyframes flipAndShow {
  0% {
    transform: perspective(400px) rotateY(-180deg);
    opacity: 0; /* Start with opacity 0 */
  }
  50% {
    transform: perspective(400px) rotateY(-90deg);
    opacity: 0; /* Halfway through the animation, opacity remains 0 */
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; /* At the end of the animation, opacity becomes 1 */
  }
}


.black-dot {
  width: 21px;
  height: 21px;
  background-color: #000;
  border-radius: 50%;
  display: block;
  margin: 0 auto 62px;
  z-index: 1;
}
.start-point {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.timeline-row .horizontal-line {
	width: 0;
    margin: 0 auto;
    position: absolute;
    top: -1px;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, 0%);
    /* transform: translateX(-100%); */
    background: #484444;
    margin-top: -20px;
	  height: 25px;
    transition: width 1s;
    transform-origin: left;
    visibility: hidden;
}

@keyframes expandWidth {
  0%{
    width: 0;
  }
  10%{
    width: 100%;
  }
  50% {
    width: 0;
    transform: translateX(-100%); /* Start from left */
    visibility: hidden;
  }
  100% {
    width: calc(100% - 150px); /* End with width 100% */
    transform: translate(-50%, 0%); /* End at original position */
    visibility: visible;
  }
}

#features.animate .swiper-slide-active .timeline-row:nth-child(1) .horizontal-line {
  width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2) .horizontal-line {
  width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  animation-delay: 2s;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .horizontal-line {
 width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  animation-delay: 3s;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4) .horizontal-line {
  width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  animation-delay: 4s;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5) .horizontal-line {
  width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  animation-delay: 5s;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(6) .horizontal-line {
  width: calc(100% - 150px);
  animation: expandWidth 1s forwards; /* Animation */
  animation-delay: 6s;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-60%);
    visibility: visible;
  }
  100% {
    /* transform: translateX(0); */
    visibility: visible;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(10%);
    visibility: visible;
  }
  100% {
    /* transform: translateX(0); */
    visibility: visible;
  }
}

@keyframes fadeIn {
  80% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

.timeline-row .horizontal-line::before{
	width: 100%;
    content: "";
    border-top: 2px dashed #fff;
    display: inline-block;
    color: white;
    margin-bottom: 1px;
    padding: 0;
}

.timeline-row .verticle-line {
  margin: 0;
  padding: 0;
  width: 2px;
  border-right: 1px solid #aaa;
  height: calc(100% - 150px);
  position: absolute;
  top: 0;
  right: 0;
  margin: auto 0;
  bottom: 0;
}
.timeline-row:nth-child(2n + 2) .verticle-line {
  left: 0;
  right: inherit;
}
.corner {
	position: absolute;
    border-right: 2px dashed #aaa;
    width: 68px;
    height: 45px;
    right: 0;
    border-top: 2px dashed #aaa;
    border-radius: 0 70px 0 0;
    border: dashed 2px white;
    outline: solid 13px #484444 !important;
    background: #484444;
    border-left: 0;
    border-bottom: 0;
    margin: -8px -4px;
    z-index: 1;
    visibility: hidden;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(1)  .top {
  animation: 2.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2)  .top {
  animation: 3.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3)  .top {
  animation: 4.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4)  .top {
  animation: 5.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5)  .top {
  animation: 6.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(6)  .top {
  animation: 7.5s fadeIn;
  animation-fill-mode: forwards;
}




#features.animate .swiper-slide-active  .timeline-row:nth-child(1)  .bottom {
  animation: 3.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active  .timeline-row:nth-child(2)  .bottom {
  animation: 4.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active  .timeline-row:nth-child(3)  .bottom {
  animation: 5.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active  .timeline-row:nth-child(4)  .bottom {
  animation: 6.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active  .timeline-row:nth-child(5)  .bottom {
  animation: 7.5s fadeIn;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active  .timeline-row:nth-child(6)  .bottom {
  animation: 8.5s fadeIn;
  animation-fill-mode: forwards;
}

.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left: 1px solid #ffffff;
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.corner.bottom {
	top: inherit;
    border-bottom: 2px dashed #ffffff;
    border-radius: 0 0 70px 0;
    right: 0;
    bottom: 0px;
    border: dashed 2px white;
    outline: solid 13px #484444 !important;
    background: #484444;
    border-left: 0;
    border-top: 0;
    margin: 9px -4px;
    z-index: 1;
}

.cover-corner{
	height: 75px;
    width: 70px;
    z-index: 111;
    position: absolute;
    background: white;
    right: 11px;
    top: 4px;
    border-top-right-radius: 39%;
    border-bottom-right-radius: 39%;
}

.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left: 2px dashed #ffffff;
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.timeline-row:nth-child(2n + 2) .corner.bottom {
  border-radius: 0 0 0 70px;
}

.timeline-row:nth-child(2n + 2) .cover-corner {
	left: 8px;
    transform: rotate(180deg);
  }

.timeline-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 0px;
  position: relative; /*padding: 0 66px 130px;margin-right: 111px;*/
}
.timeline-row:nth-child(2n + 2) {
  justify-content: space-around;
  text-align: right;
  padding: 0 2%;
}
.timeline-row:nth-child(2n + 2) {
  flex-direction: row-reverse;
}
/*.timeline-row:nth-child(2n+2) .timeline-content-txt { text-align: center; }*/
.timeline-box {
  /*padding: 45px 50px 130px;*/
  /*max-width: 550px;*/
  /*margin-right: 25px;*/
  position: relative;
}
.timeline-main {
  margin-top: 75px;
}
.timeline-row:first-child {
  margin: 0 0px 0 auto;
  max-width: 80%;
  justify-content: space-around;
  padding: 0 0 0 75px;
}
.corner.bl {
  bottom: 0;
  left: 0;
  border-left: 2px dashed #aaa;
  border-bottom: 2px dashed #aaa;
  border-radius: 0 0 0px 100%;
  border-right: none;
  border-top: none;
  height: 76px;
  width: 76px;
}

.hifwee p{
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    /* text-shadow: -2px 3px 4px #c7c1c1; */
    /* border: 1px solid grey; */
    border-radius: 30px;
    padding: 10px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
}

.hifwee p img{
    margin-right: 10px;
}
.start-point .corner.bl {
  left: 49.8%;
  bottom: 0px;
  transform: translateY(100%);
  top: unset;
}
.timeline-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 27.5px;
  height: 1px;
  width: 100%;
}
.timeline-box-wrap {
	position: relative;
    padding: 0;
    height: 100px;
    z-index: 112;
	text-align: center;
	width: auto;

}
/*.timeline-row:after{content: ''; position: absolute; left: 50%; top: 74.5px; height: 1px; width: 91%; background-color: #aaa; transform: translateX(-50%);top: 0;} .timeline-row .verticle-line { margin: 0; padding: 0; width: 1px; border-right: 1px solid #aaa; height:calc(100% - 126px); position: absolute; top: calc( 50% + 75px );; right: 0; margin: auto 0; bottom: unset; transform: translateY(-50%);top: 50%; } */
.timeline-row:first-child::after {
  left: -54px;
  width: 97%;
  transform: none;
}
/*.timeline-row:first-child .timeline-box:last-child{margin-right: 5%;} */
.timeline-content {
  padding: 6px 10px 0;
}
/* .timeline-content-txt {
  padding: 10px 0 0 0;
} */
.timeline-box.img-right .timeline-content,
.timeline-box.img-left .timeline-content {
  display: flex;
  align-items: flex-start;
}
.timeline-box.img-right .timeline-content img {
  margin-left: 18px;
}
.timeline-box.img-left .timeline-content img {
  margin-right: 18px;
}
.timeline-box.img-left .timeline-content {
  flex-direction: row-reverse;
}
.timeline-row:first-child .timeline-box:first-child img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  display: block;
  margin: 0;
}
.timeline-box-wrap .timeline-content img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  z-index: 2;
  position: relative;
}
.timeline-row:last-child .corner.bottom {
  display: none;
}
.timeline-row:nth-child(2n + 1) .timeline-box:last-child .timeline-box-wrap {
  text-align: center;
}
.start-point.end-point:before {
  display: none;
}
.start-point.end-point {
  position: absolute;
  bottom: 0;
  right: 0%;
  transform: translateX(50%);
  z-index: 1111;
}
.timeline-row:nth-child(2n + 2) .start-point.end-point {
  left: 0;
  transform: translateX(-50%);
  right: unset;
}

.timeline-box.img-right .timeline-content-txt {
  /* text-align: right; */
}
.timeline-box.img-left .timeline-content-txt {
  text-align: left;
}
.timeline-box.img-left,
.timeline-box.img-right {
  text-align: center;
}
.timeline-row:first-child .timeline-box::after {
  left: auto;
  right: 0;
  -webkit-transform: translate(100%, -50%) rotate(0deg);
  transform: translate(100%, -50%) rotate(0deg);
}
.timeline-row:first-child .timeline-box:first-child {
  width: auto;
}
.timeline-row .timeline-box:nth-child(3)::after {
  display: none;
}
.timeline-row:last-child .verticle-line::after {
  display: none;
}
.timeline-row:first-child .timeline-box:nth-child(2)::after {
  display: none;
}

.timeline-content-img .timeline-content {
  position: relative;
}

/*==============Responsive==============*/


.timeline-main .timeline-row:nth-child(1) .timeline-box:nth-child(1) p{
    color: #0868b0;
}

.timeline-main .timeline-row:nth-child(1) .timeline-box:nth-child(2) p{
    color: #7108b0;
}

.timeline-main .timeline-row:nth-child(2) .timeline-box:nth-child(1) p{
    color: #2e721c;
}

.timeline-main .timeline-row:nth-child(2) .timeline-box:nth-child(2) p{
    color: #b03108;
}

.timeline-main .timeline-row:nth-child(2) .timeline-box:nth-child(3) p{
    color: #0884b0;
}

.timeline-main .timeline-row:nth-child(3) .timeline-box:nth-child(1) p{
    color: #08b009;
}

.timeline-main .timeline-row:nth-child(3) .timeline-box:nth-child(2) p{
    color: #91b008;
}

.timeline-main .timeline-row:nth-child(3) .timeline-box:nth-child(3) p{
    color: #b00851;
}

.timeline-main .timeline-row:nth-child(4) .timeline-box:nth-child(1) p{
    color: #b07a08;
}

.timeline-main .timeline-row:nth-child(4) .timeline-box:nth-child(2) p{
    color: #b03908;
}

.timeline-main .timeline-row:nth-child(4) .timeline-box:nth-child(3) p{
    color: #08b0b0;
}

@media screen and (max-width: 1800px) {
  /*.timeline-box {*/
  /*  max-width: 460px;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content img,*/
  /*.timeline-box.img-left .timeline-content img {*/
  /*  max-width: 220px;*/
  /*  max-height: 230px;*/
  /*}*/
  /*.timeline-box-wrap .timeline-content img {*/
  /*  max-width: 100%;*/
  /*}*/
}

@media screen and (max-width: 1600px) {
  /*.timeline-row:first-child .timeline-box:first-child {*/
  /*  width: auto;*/
  /*}*/
  /*.timeline-box {*/
  /*  max-width: 380px;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content img,*/
  /*.timeline-box.img-left .timeline-content img {*/
  /*  max-width: 180px;*/
  /*  max-height: 190px;*/
  /*}*/
  /*.timeline-box p {*/
  /*  font-size: 14px;*/
  /*}*/
}

@media screen and (max-width: 1440px) {
  /*.start-point h4 {*/
  /*  font-size: 10px;*/
  /*  letter-spacing: 0;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:first-child {*/
  /*  width: auto;*/
  /*}*/
  /*.timeline-box p {*/
  /*  font-size: 14px;*/
  /*  line-height: 1.2;*/
  /*}*/
  /*.timeline-box {*/
    /*max-width: 300px;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content img,*/
  /*.timeline-box.img-left .timeline-content img {*/
  /*  max-width: 140px;*/
  /*  max-height: 200px;*/
  /*}*/
  /*.timeline-box-wrap .timeline-content img {*/
  /*  max-width: 100%;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:nth-child(2) {*/
    /*width: 30%;*/
  /*}*/
}

@media screen and (max-width: 1199px) {
  /*.timeline-box {*/
  /*  max-width: 240px;*/
  /*}*/
  /*.timeline-row:first-child {*/
  /*  padding: 0 0 0 60px;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:first-child {*/
  /*  width: 30%;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content,*/
  /*.timeline-box.img-left .timeline-content {*/
  /*  flex-wrap: wrap;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content img,*/
  /*.timeline-box.img-left .timeline-content img {*/
  /*  max-width: 180px;*/
  /*  max-height: 200px;*/
  /*}*/
  /*.top-timeline-arrow.timeline-content-img .timeline-content::after {*/
  /*  right: 0;*/
  /*}*/
  /*.img-right.timeline-content-img .timeline-content::after {*/
  /*  top: -20px;*/
  /*  right: -45px;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content-txt {*/
  /*  width: 90%;*/
  /*}*/
}

@media screen and (max-width: 1024px) {
  /*.corner {*/
  /*  display: none;*/
  /*}*/
  /*.timeline-row .horizontal-line {*/
  /*  display: none;*/
  /*}*/
  /*.timeline-row:first-child {*/
  /*  max-width: 100%;*/
  /*  padding: 0;*/
  /*}*/
  /*.timeline-main {*/
  /*  margin-top: 0;*/
  /*}*/
  /*.timeline-row .verticle-line {*/
  /*  right: 50%;*/
  /*  transform: translate(50%, 0);*/
  /*  height: calc(100% - 0px);*/
  /*}*/
  /*.timeline-row:nth-child(2n + 2) .verticle-line {*/
  /*  left: auto;*/
  /*  right: 50%;*/
  /*}*/
  /*.verticle-line::after {*/
  /*  display: none;*/
  /*}*/

  /*.timeline-row .timeline-box {*/
  /*  width: 100%;*/
  /*  max-width: 100%;*/
  /*  margin: 0;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:first-child {*/
  /*  width: 100%;*/
  /*  margin: 0;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:nth-child(2) {*/
  /*  width: 100%;*/
  /*}*/
  /*.timeline-box p br {*/
  /*  display: none;*/
  /*}*/
  /*.timeline-content {*/
  /*  padding: 0;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content-txt {*/
  /*  width: 100%;*/
  /*}*/
  /*.start-point.end-point {*/
  /*  right: 50%;*/
  /*}*/
  /*.start-point h4 {*/
  /*  margin-bottom: 0;*/
  /*}*/
  /*.timeline-box::after {*/
  /*  -webkit-transform: translate(-100%, 100%) rotate(180deg);*/
  /*  transform: translate(-100%, 100%) rotate(180deg);*/
  /*  right: 50%;*/
  /*  top: 20px;*/
  /*  left: 50%;*/
  /*}*/
  /*.timeline-box-wrap {*/
  /*  width: 50%;*/
  /*  text-align: right;*/
  /*  padding: 0 30px 0 0;*/
  /*  margin: 40px 0 0 0;*/
  /*}*/
  /*.timeline-row .timeline-box img {*/
  /*  margin: 0 0 0 auto;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:nth-child(2)::after {*/
  /*  display: block;*/
  /*}*/
  /*.timeline-row:first-child .timeline-box:first-child img {*/
  /*  margin: 0 0 0 auto;*/
  /*}*/
  /*.timeline-box.img-right .timeline-content img,*/
  /*.timeline-box.img-left .timeline-content img {*/
  /*  margin: 0 0 0 auto;*/
  /*}*/
  /*.timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {*/
  /*  margin: 40px 0 0 auto;*/
  /*  padding: 0 0 0 30px;*/
  /*  text-align: left;*/
  /*}*/
  /*.timeline-row:nth-child(2n + 1) .timeline-box::after {*/
  /*  left: auto;*/
  /*  right: 50%;*/
  /*  -webkit-transform: translate(0%, 100%) rotate(180deg);*/
  /*  transform: translate(0%, 100%) rotate(180deg);*/
  /*  top: 20px;*/
  /*}*/
  /*.timeline-row .timeline-box:nth-child(2n)::after {*/
  /*  transform: translate(100%, 100%) rotate(0deg);*/
  /*  -webkit-transform: translate(100%, 100%) rotate(0deg);*/
  /*  right: 50%;*/
  /*  left: auto;*/
  /*}*/
  /*.timeline-row .timeline-box:nth-child(3)::after {*/
  /*  display: block;*/
  /*}*/
  /*.timeline-box.img-left .timeline-content-txt {*/
  /*  text-align: right;*/
  /*}*/
  /*.timeline-row:last-child {*/
  /*  padding-bottom: 70px;*/
  /*}*/
}

@media screen and (max-width: 767px) {
    .about-timeline{
    	display: block;
    	padding: 0;
    	min-height: auto;
    }
    .timeline-main{
        padding: 0 20px;
    }
    .content-showcase{
        width: 100%;
    }
    
    .timeline-row:first-child{
        max-width: 100%;
    }
    
    .timeline-box{
        width: 20vw;
    }
    
    .timeline-box p{
        width: 22vw;
        font-size: 11px;
    }
    
    .timeline-content {
        padding: 6px 2px 0;
    }
    
    .journey-wrapper{
          padding: 25px 10px;
    margin: 0;
        margin-top: 15px;
  }
  
  .content-top{
      width: 85%;
      margin: auto;
  }
  
  .content-bottom{
      width: 85%;
      margin: auto;
  }
  
  .hifwee{
      margin-top: 15px;
  }
  
  .hifwee p {
        height: 50px;
        padding: 0px;
    }
	
	.gallery-bx{
		display: block;
		margin-top: 30px;
		padding: 10px;
	}
	
	.imgsa{
		padding: 5px;
	}
	
	.imgsa:hover img {
		transform: none;
		border-radius: none;
	}
	
	.imgsa:hover video {
		transform: none;
		border-radius: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	
	.about-timeline{
    	display: block;
    	padding: 0px;
    	min-height: auto;
    }
    .content-showcase{
        width: 100%;
    }
    
    .timeline-row:first-child{
        max-width: 100%;
    }
    
    .timeline-box{
        width: 25vw;
    }
    
    .timeline-box p{
        width: 22vw;
        font-size: 11px;
    }
    
    .timeline-content {
        padding: 6px 2px 0;
    }
    
    .journey-wrapper {
        padding: 20px;
        margin: 0;
     margin-top: 15px;
    }
    
    
  .content-top{
      width: 85%;
      margin: auto;
  }
  
  .content-bottom{
      width: 85%;
      margin: auto;
  }
  
  .hifwee{
      margin-top: 15px;
  }
  
  .hifwee p {
        height: 50px;
        padding: 0px;
    }
	
	.product-name h1{
	       font-size: 35px;
        padding: 30px;
	}
	
	.gallery-bx{
		display: block;
		margin-top: 30px;
		padding: 10px;
	}
	
	.imgsa{
		padding: 5px;
	}
	
	.imgsa:hover img {
		transform: none;
		border-radius: none;
	}
	
	.imgsa:hover video {
		transform: none;
		border-radius: none;
	}

}


#features .button-container{
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 5px;
    top: -70px;
}

#features  .button-left-black{
    color: #1c85d6;
    width: 55px;
    height: 55px;
    border: 1px solid #1c85d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 7.5px;
    cursor: pointer;
    left: -135px;
}

#features .button-right-black{
    color: #1c85d6;
    width: 55px;
    height: 55px;
    border: 1px solid #1c85d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     margin: 0 7.5px;
     cursor: pointer;
     right: auto;
}

/* The Modal (background) */
.modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 0; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  transition: height 0.3s; /* Animation */
}

/* Modal Content/Box */
.modal-content {
      background-color: #fefefe;
    margin: 2% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 90vh;
    background-size: cover;

}

/* Animation to slide up from bottom */
.modal.slide-up {
  height: 100%; /* Full height */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


#features.animate .swiper-slide-active .timeline-row:nth-child(1) .timeline-box:nth-child(1) h6{
  animation: 0.5s bounceIn;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(1) .timeline-box:nth-child(2) h6{
  animation: 0.5s bounceIn;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}


#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(1) h6{
  animation: 0.5s bounceIn;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(2) h6{
  animation: 0.5s bounceIn;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(3) h6{
  animation: 0.5s bounceIn;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(1) h6{
  animation: 0.5s bounceIn;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(2) h6{
  animation: 0.5s bounceIn;
  animation-delay: 5.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(3) h6{
  animation: 0.5s bounceIn;
  animation-delay: 6s;
  animation-fill-mode: forwards;
}


#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(1) h6{
  animation: 0.5s bounceIn;
  animation-delay: 7s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(2) h6{
  animation: 0.5s bounceIn;
  animation-delay: 7.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(3) h6{
  animation: 0.5s bounceIn;
  animation-delay: 8s;
  animation-fill-mode: forwards;
}



#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(1) h6{
  animation: 0.5s bounceIn;
  animation-delay: 9s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(2) h6{
  animation: 0.5s bounceIn;
  animation-delay: 9.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(3) h6{
  animation: 0.5s bounceIn;
  animation-delay: 10s;
  animation-fill-mode: forwards;
}






#features.animate .swiper-slide-active .timeline-row:nth-child(1) .timeline-box:nth-child(1) p{
  animation: 0.5s bounceIn;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(1) .timeline-box:nth-child(2) p{
  animation: 0.5s bounceIn;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}


#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(1) p{
  animation: 0.5s bounceIn;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(2) p{
  animation: 0.5s bounceIn;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(2) .timeline-box:nth-child(3) p{
  animation: 0.5s bounceIn;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(1) p{
  animation: 0.5s bounceIn;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(2) p{
  animation: 0.5s bounceIn;
  animation-delay: 5.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(3) .timeline-box:nth-child(3) p{
  animation: 0.5s bounceIn;
  animation-delay: 6s;
  animation-fill-mode: forwards;
}


#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(1) p{
  animation: 0.5s bounceIn;
  animation-delay: 7s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(2) p{
  animation: 0.5s bounceIn;
  animation-delay: 7.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(4) .timeline-box:nth-child(3) p{
  animation: 0.5s bounceIn;
  animation-delay: 8s;
  animation-fill-mode: forwards;
}



#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(1) p{
  animation: 0.5s bounceIn;
  animation-delay:9s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(2) p{
  animation: 0.5s bounceIn;
  animation-delay: 9.5s;
  animation-fill-mode: forwards;
}

#features.animate .swiper-slide-active .timeline-row:nth-child(5) .timeline-box:nth-child(3) p{
  animation: 0.5s bounceIn;
  animation-delay: 10s;
  animation-fill-mode: forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
   opacity: 1;
    transform: scale(1);
  }
}


.avail svg{
    animation: 1.5s bounceInSlow infinite;
    z-index: 1111;
}


@keyframes bounceInSlow {
  0% {
    opacity: 1;
    transform: scale(0.9);
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    66% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.timeline-row:nth-child(1) .timeline-box:nth-child(1) svg .lcol{
    fill: #1985d6 !important;
}

.timeline-row:nth-child(1) .timeline-box:nth-child(2) svg .lcol{
    fill: #dd2d55 !important;
}


.timeline-row:nth-child(2) .timeline-box:nth-child(1) svg .lcol{
    fill: #59c4ac !important;
}


.timeline-row:nth-child(2) .timeline-box:nth-child(2) svg .lcol{
    fill: #f8ae43 !important;
}


.timeline-row:nth-child(2) .timeline-box:nth-child(3) svg .lcol{
    fill: #1f65c3 !important;
}


.timeline-row:nth-child(3) .timeline-box:nth-child(1) svg .lcol{
    fill: #62c014 !important;
}

.timeline-row:nth-child(3) .timeline-box:nth-child(2) svg .lcol{
    fill: #1985d6 !important;
}

.timeline-row:nth-child(3) .timeline-box:nth-child(3) svg .lcol{
    fill: #dd2d55 !important;
}


.timeline-row:nth-child(4) .timeline-box:nth-child(1) svg .lcol{
    fill: #59c4ac !important;
}


.timeline-row:nth-child(4) .timeline-box:nth-child(2) svg .lcol{
    fill: #f8ae43 !important;
}


.timeline-row:nth-child(4) .timeline-box:nth-child(3) svg .lcol{
    fill: #1f65c3 !important;
}




