/* Visanet index-2: fly-one + work-process — Way2Fly adapted */
:root {
  --w2f-vn-accent: #ffd200;
  --w2f-vn-accent-rgb: 255, 210, 0;
  --w2f-vn-dark: #000000;
  --w2f-vn-dark-rgb: 0, 0, 0;
  --w2f-vn-white: #ffffff;
  --w2f-vn-light: #eef2f5;
  --w2f-vn-border: #dddddd;
  --w2f-vn-text: #636363;
  --w2f-vn-heading: #222222;
}

@keyframes flyUp {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) translateX(40px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes w2fRotateDash {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shineFullHover {
  0% { width: 0; height: 0; opacity: 0.8; }
  50% { width: 100%; height: 100%; opacity: 0.4; }
  100% { width: 0; height: 0; opacity: 0; }
}

/* ---- sec-title ---- */
.sec-title {
  margin-bottom: 24px;
}
.sec-title--center {
  margin-bottom: 41px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  align-items: center;
  justify-content: center;
}
.sec-title__top {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.sec-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: 0;
  font-size: 16px;
  line-height: 1;
  color: #ffd200 !important;
  height: 1em;
}
.sec-title__icon--left { padding-left: 16px; }
.sec-title__icon--right { padding-right: 16px; }
.sec-title__icon--left::before,
.sec-title__icon--right::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
}
.sec-title__icon--left::before { left: 0; }
.sec-title__icon--right::after { right: 0; }
.sec-title__icon--right i {
  transform: scaleX(-1);
  display: inline-block;
  line-height: 1;
}
.sec-title__tagline {
  margin: 0;
  font-size: 14px;
  color: #ffd200;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-flex;
  align-items: center;
}
.sec-title__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--w2f-vn-heading);
}

/* ---- visanet-btn ---- */
.visanet-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--w2f-vn-accent);
  padding: 14px 67px 14px 30px;
  transition: 500ms;
  border-radius: 100px;
  text-decoration: none !important;
}
.visanet-btn__icon-box {
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  transform: translateY(-50%);
  background-color: var(--w2f-vn-white);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.076, 1);
}
.visanet-btn__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
}
.visanet-btn__icon span {
  display: inline-flex;
  font-size: 14px;
  color: var(--w2f-vn-accent);
}
.visanet-btn__text {
  position: relative;
  font-size: 15px;
  color: #000000;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}
.visanet-btn:hover .visanet-btn__text {
  color: #ffffff;
}
.visanet-btn:hover .visanet-btn__icon-box {
  width: calc(100% - 12px);
}

/* ---- fly-one (exact Visanet index-2) ---- */
.fly-one {
  padding-bottom: 239px;
  position: relative;
  overflow: hidden;
}
.fly-one.section-space-t {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .fly-one {
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .fly-one {
    padding-bottom: 100px;
  }
  .fly-one.section-space-t {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .fly-one {
    padding-bottom: 80px;
  }
  .fly-one.section-space-t {
    padding-top: 80px;
  }
}
.fly-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.fly-one__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 37, 58, 0.97);
}
.fly-one .container {
  position: relative;
  z-index: 3;
}
@media (min-width: 1200px) {
  .fly-one .container {
    max-width: 1586px;
    padding-right: 40px;
  }
}
.fly-one__content {
  margin-left: auto;
  display: grid;
  gap: 30px 0;
  align-items: center;
  justify-content: flex-end;
  grid-template-columns: 288px 361px;
}
@media (max-width: 767px) {
  .fly-one__content {
    grid-template-columns: 1fr;
  }
}
.fly-one__client {
  padding: 36px 30px;
  text-align: center;
  background-color: #ffd200;
}
.fly-one__client__images {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.fly-one__client__img {
  width: 51px;
  height: 51px;
  position: relative;
  z-index: 1;
  display: inline-block;
  border-radius: 50%;
}
.fly-one__client__img:not(:first-child) {
  margin-left: -12px;
}
.fly-one__client__img:not(:first-child)::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -3px;
  border-radius: 50%;
  background-color: #ffffff;
}
.fly-one__client img {
  width: 51px;
  height: 51px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.fly-one__client__funfact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 60px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
}
.fly-one__client__funfact span {
  color: #000000;
}
.fly-one__client__funfact:not(:first-of-type) {
  margin-top: 18px;
}
.fly-one__client__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  line-height: 1.361;
  text-transform: capitalize;
}
@media (max-width: 375px) {
  .fly-one__client__funfact {
    font-size: 50px;
  }
  .fly-one__client__title {
    font-size: 18px;
  }
}
.fly-one__card {
  padding: 10px;
  position: relative;
  background-color: #ffffff;
}
.fly-one__card::before {
  content: "";
  width: 170px;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffd200;
}
.fly-one__card__inner {
  padding: 30px 0px 0px;
}
@media (max-width: 575px) {
  .fly-one__card__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 412px) {
  .fly-one__card__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fly-one__card__title {
  padding-bottom: 12px;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: capitalize;
  color: #222222;
  border-bottom: 1px solid #dddddd;
}
.fly-one__card__text {
  margin-bottom: 23px;
  color: #636363;
  line-height: 1.7;
}
.fly-one__card__image {
  position: relative;
  overflow: hidden;
}
.fly-one__card__image::before,
.fly-one__card__image::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  background-color: #ffffff;
  transition-duration: 1.3s;
}
.fly-one__card__image::before {
  left: 0;
  bottom: 0;
}
.fly-one__card__image::after {
  top: 0;
  right: 0;
}
.fly-one__card__image img {
  width: 100%;
  display: block;
}
.fly-one__card:hover .fly-one__card__image::before,
.fly-one__card:hover .fly-one__card__image::after {
  animation: shineFullHover 0.75s;
}
.fly-one__shape-1,
.fly-one .airplane-animated {
  max-width: min(790px, 55vw);
  height: auto;
  width: auto;
  position: absolute;
  top: 63px;
  left: calc((100% - 1320px) / 2);
  z-index: 2;
  pointer-events: none;
  animation: flyUp 6s ease-in-out infinite;
}
@media (max-width: 1399px) {
  .fly-one__shape-1,
  .fly-one .airplane-animated {
    left: 40px;
    max-width: 50vw;
  }
}
@media (max-width: 1199px) {
  .fly-one__shape-1,
  .fly-one .airplane-animated {
    top: 10px;
    left: calc((100% - 1100px) / 2);
    max-width: 45vw;
  }
}
@media (max-width: 991px) {
  .fly-one__shape-1,
  .fly-one .airplane-animated {
    display: none;
  }
}
.fly-one__shape-2 {
  width: 100%;
  height: 415px;
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
  background-color: #ffffff;
  -webkit-mask-image: url("../imgs/visanet/shapes/fly-shape-1-2.png");
  mask-image: url("../imgs/visanet/shapes/fly-shape-1-2.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}
@media (max-width: 767px) {
  .fly-one__shape-2 {
    display: none;
  }
}

/* ---- work-process ---- */
.work-process {
  counter-reset: workProcessStep;
  background-color: var(--w2f-vn-white);
  padding-bottom: 10px;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .work-process { padding-top: 80px; padding-bottom: 80px; padding-left: 12px; padding-right: 12px; }
}
.work-process__grid {
  position: relative;
  z-index: 1;
}
.work-process__grid::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 19px;
  left: 0;
  z-index: -1;
  background-color: var(--w2f-vn-border);
}
@media (max-width: 991px) {
  .work-process__grid::before { display: none; }
}
.work-process__item {
  text-align: center;
  margin-bottom: 30px;
}
.work-process__step {
  display: inline-block;
  margin: 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--w2f-vn-white);
  line-height: 1.25;
  text-transform: uppercase;
}
.work-process__step::after {
  content: "";
  width: 30px;
  height: 15px;
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  background-color: var(--w2f-vn-accent);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: all 500ms ease;
}
.work-process__step span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 8px 20px;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--w2f-vn-dark);
}
.work-process__step span::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 500ms ease;
  background-color: var(--w2f-vn-accent);
}
.work-process__step span::after {
  content: " 0" counter(workProcessStep);
  counter-increment: workProcessStep;
}
.work-process__item:hover .work-process__step::after {
  background-color: var(--w2f-vn-dark);
}
.work-process__item:hover .work-process__step span::before {
  width: 100%;
  left: 0;
}
.work-process__content {
  position: relative;
  padding: 45px 30px 30px;
}
.work-process__image {
  width: 197px;
  height: 197px;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
}
.work-process__image__main {
  width: 197px;
  height: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--w2f-vn-white);
}
.work-process__image__main::before,
.work-process__image__main::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  transition: all 500ms ease;
}
.work-process__image__main::before {
  border: 1px solid var(--w2f-vn-border);
}
.work-process__image__main::after {
  opacity: 0;
  border: 1px dashed var(--w2f-vn-accent);
  animation: w2fRotateDash 1s linear infinite;
}
.work-process__image img {
  width: 171px !important;
  height: 171px;
  object-fit: cover;
  border-radius: inherit;
}
.work-process__item:hover .work-process__image__main::before { opacity: 0; }
.work-process__item:hover .work-process__image__main::after { opacity: 1; }
.work-process__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 19px;
  right: -10px;
  font-size: 13px;
  color: var(--w2f-vn-white);
  border-radius: 50%;
  background-color: var(--w2f-vn-accent);
  transition: all 500ms ease;
}
.work-process__item:hover .work-process__icon {
  background-color: var(--w2f-vn-dark);
}
.work-process__inner {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-left: 8px;
  padding-right: 8px;
}
.work-process__title {
  margin-bottom: 10px;
  font-size: 11px !important;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--w2f-vn-heading);
  transition: color 500ms ease;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  max-width: 100%;
}
.work-process__title a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-size: inherit;
}
.work-process__text {
  margin: 0;
  color: var(--w2f-vn-text);
  transition: color 500ms ease;
  text-align: left;
}
.work-process__item:hover .work-process__title,
.work-process__item:hover .work-process__text {
  color: #ffffff !important;
}
.work-process__item:hover .work-process__title a {
  color: #ffffff !important;
}
.work-process__button {
  display: none !important;
}
.work-process__bg {
  width: 100%;
  height: calc(100% - 140px);
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 100px 100px 0 0;
  background-color: var(--w2f-vn-light);
}
.work-process__bg::before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
  background-color: #000000;
}
.work-process__item:hover .work-process__bg::before {
  height: 100%;
  background-color: #000000;
}
