.elementor-35 .elementor-element.elementor-element-35c7562{padding:-16px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-35c7562 *//* =====================================================
   VOYANEST ABOUT PAGE
   PREMIUM ANIMATED VERSION
   HEADER + FOOTER NOT INCLUDED
===================================================== */

.vn-about {
  --dark: #103c39;
  --dark2: #164e4a;
  --green: #28716c;
  --cream: #f7f3ed;
  --cream2: #eee9e1;
  --text: #63716e;

  width: 100%;
  margin: 0;
  padding: 0;

  overflow: hidden;

  background: var(--cream);
  color: var(--dark);

  font-family: Arial, Helvetica, sans-serif;
}

.vn-about *,
.vn-about *::before,
.vn-about *::after {
  box-sizing: border-box;
}

.vn-about img {
  display: block;
  max-width: 100%;
}

.vn-about a {
  text-decoration: none;
}


/* =====================================================
   HERO
===================================================== */

.vn-hero {
  position: relative;

  width: 100%;
  min-height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.vn-hero-image {
  position: absolute;
  inset: 0;

  background-image: url("https://tse1.mm.bing.net/th/id/OIP.OyHC0-tjEVv-hiX4NJ5MTwHaE8?r=0&rs=1&pid=ImgDetMain&o=7&rm=3");

  background-size: cover;
  background-position: center;

  animation: vnHeroZoom 12s ease-out forwards;
}

@keyframes vnHeroZoom {

  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }

}

.vn-hero-dark {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5,35,36,.86),
      rgba(5,35,36,.48) 48%,
      rgba(5,35,36,.08)
    );
}

.vn-hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1300px;

  margin: auto;

  padding: 120px 8%;
}

.vn-small-title {
  display: block;

  margin-bottom: 25px;

  color: #fff;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 4px;

  opacity: 0;

  animation: vnReveal .8s .3s forwards;
}

.vn-hero h1 {
  margin: 0 0 28px;

  color: white;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(55px, 7vw, 92px);

  font-weight: 400;

  line-height: .94;
}

.vn-hero h1 span {
  display: inline-block;

  opacity: 0;

  transform: translateY(50px);

  animation: vnTextUp .9s forwards;

  transition:
    color .3s ease,
    transform .3s ease;
}

.vn-hero h1 span:nth-child(1) {
  animation-delay: .45s;
}

.vn-hero h1 span:nth-child(2) {
  animation-delay: .58s;
}

.vn-hero h1 span:nth-child(3) {
  animation-delay: .72s;
}

.vn-hero h1 span:nth-child(4) {
  animation-delay: .86s;
}

.vn-hero h1 span:hover {
  color: #c4dfd9;

  transform:
    translateY(-7px)
    rotate(-1deg);
}

@keyframes vnTextUp {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes vnReveal {

  to {
    opacity: 1;
  }

}

.vn-hero p {
  max-width: 470px;

  margin: 0 0 30px;

  color: rgba(255,255,255,.88);

  font-size: 15px;

  line-height: 1.8;

  opacity: 0;

  transform: translateY(20px);

  animation:
    vnTextUp .8s 1.05s forwards;
}

.vn-hero-btn {
  display: inline-flex;

  align-items: center;
  gap: 20px;

  padding: 14px 22px;

  border: 1px solid rgba(255,255,255,.5);

  border-radius: 40px;

  color: white;

  font-size: 12px;

  opacity: 0;

  animation:
    vnReveal .8s 1.25s forwards;

  transition:
    background .3s ease,
    transform .3s ease;
}

.vn-hero-btn span {
  transition: transform .3s ease;
}

.vn-hero-btn:hover {
  background: white;
  color: var(--dark);

  transform: translateY(-4px);
}

.vn-hero-btn:hover span {
  transform: translateY(5px);
}


/* SCROLL */

.vn-scroll {
  position: absolute;

  z-index: 3;

  bottom: 30px;
  left: 8%;

  display: flex;

  align-items: center;
  gap: 15px;

  color: rgba(255,255,255,.75);

  font-size: 9px;
  letter-spacing: 2px;
}

.vn-scroll i {
  display: block;

  width: 45px;
  height: 1px;

  background: rgba(255,255,255,.6);

  position: relative;
}

.vn-scroll i::after {
  content: "";

  position: absolute;

  left: 0;
  top: -2px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: white;

  animation: vnScrollMove 2s infinite;
}

@keyframes vnScrollMove {

  0% {
    left: 0;
  }

  50% {
    left: 40px;
  }

  100% {
    left: 0;
  }

}


/* =====================================================
   OUR STORY
===================================================== */

.vn-story {
  width: 100%;
  max-width: 1250px;

  margin: auto;

  padding: 120px 7%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}


/* VISUAL */

.vn-story-visual {
  position: relative;

  min-height: 520px;

  display: flex;

  justify-content: center;
  align-items: center;
}

.vn-story-photo {
  position: relative;
  z-index: 3;

  width: 390px;
  height: 460px;

  overflow: hidden;

  border-radius: 200px 200px 35px 35px;

  transform: rotate(-4deg);

  box-shadow:
    0 30px 70px rgba(16,60,57,.18);

  animation:
    vnFloatImage 5s ease-in-out infinite;
}

@keyframes vnFloatImage {

  0%,100% {
    transform:
      rotate(-4deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(-2deg)
      translateY(-12px);
  }

}

.vn-story-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s ease,
    filter .5s ease;
}

.vn-story-photo:hover img {
  transform: scale(1.1);

  filter: saturate(1.15);
}


/* CIRCLES */

.vn-round-circle {
  position: absolute;
  z-index: 1;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(16,60,57,.18);

  border-radius: 50%;
}

.vn-dashed-circle {
  position: absolute;
  z-index: 1;

  width: 470px;
  height: 470px;

  border: 1px dashed rgba(16,60,57,.25);

  border-radius: 50%;

  animation: vnCircleRotate 18s linear infinite;
}

@keyframes vnCircleRotate {

  to {
    transform: rotate(360deg);
  }

}


/* PLANE */

.vn-plane {
  position: absolute;

  z-index: 5;

  right: 3%;
  top: 5%;

  color: var(--green);

  font-size: 31px;

  transform: rotate(-18deg);

  animation:
    vnPlaneMove 3s ease-in-out infinite;
}

@keyframes vnPlaneMove {

  0%,100% {
    transform:
      translate(0,0)
      rotate(-18deg);
  }

  50% {
    transform:
      translate(12px,-12px)
      rotate(-10deg);
  }

}


/* CAPTION */

.vn-photo-caption {
  position: absolute;

  left: 2%;
  bottom: 4%;

  z-index: 5;

  padding: 9px 14px;

  background: rgba(255,255,255,.85);

  color: var(--dark);

  font-size: 8px;

  letter-spacing: 2px;

  transform: rotate(-90deg);
}


/* STORY TEXT */

.vn-story-text {
  animation: vnContentReveal 1s ease both;
}

@keyframes vnContentReveal {

  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}

.vn-label {
  display: block;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 10px;

  font-weight: bold;

  letter-spacing: 3px;
}

.vn-story-text h2,
.vn-why-left h2 {
  margin: 0 0 22px;

  color: var(--dark);

  font-family: Georgia, serif;

  font-size: clamp(40px, 4.5vw, 58px);

  font-weight: 400;

  line-height: 1.03;
}

.vn-story-text h2 em,
.vn-why-left h2 em {
  color: var(--green);

  font-style: italic;
}

.vn-line {
  width: 65px;
  height: 1px;

  margin-bottom: 25px;

  background: var(--green);

  transition: width .5s ease;
}

.vn-story-text:hover .vn-line {
  width: 130px;
}

.vn-story-text p {
  max-width: 520px;

  margin: 0 0 17px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.9;
}


/* STORY LINKS */

.vn-story-links {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 28px;
}

.vn-story-links a {
  position: relative;

  color: var(--dark);

  font-family: Georgia, serif;

  font-size: 18px;

  font-style: italic;
}

.vn-story-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: var(--green);

  transition: width .35s ease;
}

.vn-story-links a:hover {
  color: var(--green);
}

.vn-story-links a:hover::after {
  width: 100%;
}

.vn-story-links a span {
  font-family: Arial;

  font-size: 11px;

  opacity: 0;

  transform: translateX(-5px);

  display: inline-block;

  transition: all .3s ease;
}

.vn-story-links a:hover span {
  opacity: 1;

  transform: translateX(3px);
}

.vn-story-links b {
  color: var(--green);

  font-size: 9px;
}


/* =====================================================
   PHILOSOPHY
===================================================== */

.vn-philosophy {
  padding: 110px 7%;

  background: var(--cream2);
}

.vn-center-heading {
  text-align: center;

  margin-bottom: 65px;
}

.vn-center-heading h2 {
  margin: 0 0 12px;

  font-family: Georgia, serif;

  font-size: clamp(38px, 4vw, 52px);

  font-weight: 400;
}

.vn-center-heading p {
  margin: 0;

  color: var(--text);

  font-size: 13px;
}

.vn-philosophy-grid {
  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4,1fr);
}

.vn-ph-card {
  position: relative;

  min-height: 270px;

  padding: 25px 30px;

  text-align: center;

  border-right:
    1px solid rgba(16,60,57,.15);

  overflow: hidden;

  transition:
    transform .45s ease,
    background .45s ease;
}

.vn-ph-card:last-child {
  border-right: none;
}

.vn-ph-card:hover {
  background: rgba(255,255,255,.45);

  transform: translateY(-12px);
}

.vn-ph-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 20px;

  display: flex;

  justify-content: center;
  align-items: center;

  border: 1px solid var(--green);

  border-radius: 50%;

  transition:
    background .4s ease,
    transform .5s ease;
}

.vn-ph-card:hover .vn-ph-icon {
  background: var(--dark);

  transform:
    rotate(12deg)
    scale(1.08);
}

.vn-ph-icon svg {
  width: 26px;
  height: 26px;

  fill: none;

  stroke: var(--green);

  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: stroke .3s ease;
}

.vn-ph-card:hover .vn-ph-icon svg {
  stroke: white;
}

.vn-ph-card h3 {
  margin: 0 0 12px;

  font-size: 17px;

  transition:
    color .3s ease,
    transform .3s ease;
}

.vn-ph-card:hover h3 {
  color: var(--green);

  transform: translateY(-3px);
}

.vn-ph-card p {
  margin: auto;

  max-width: 170px;

  color: var(--text);

  font-size: 12px;

  line-height: 1.7;

  transition:
    transform .3s ease,
    color .3s ease;
}

.vn-ph-card:hover p {
  color: var(--dark);

  transform: translateY(-3px);
}

.vn-card-number {
  position: absolute;

  right: 15px;
  bottom: 10px;

  color: rgba(16,60,57,.12);

  font-family: Georgia, serif;

  font-size: 42px;
}


/* =====================================================
   WHY VOYANEST
===================================================== */

.vn-why {
  max-width: 1250px;

  margin: auto;

  padding: 120px 7%;

  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap: 90px;

  align-items: center;
}

.vn-why-left p {
  max-width: 470px;

  margin: 0 0 30px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.9;
}

.vn-dark-button {
  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding: 15px 23px;

  border-radius: 40px;

  background: var(--dark);

  color: white;

  font-size: 12px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.vn-dark-button span {
  transition: transform .3s ease;
}

.vn-dark-button:hover {
  background: var(--green);

  transform: translateY(-5px);
}

.vn-dark-button:hover span {
  transform: translateX(7px);
}


/* BENEFITS */

.vn-benefits {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 45px 55px;
}

.vn-benefit {
  display: flex;

  gap: 17px;

  padding: 15px;

  border-radius: 10px;

  transition:
    background .35s ease,
    transform .35s ease,
    box-shadow .35s ease;
}

.vn-benefit:hover {
  background: white;

  transform: translateY(-7px);

  box-shadow:
    0 15px 40px rgba(16,60,57,.08);
}

.vn-benefit-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: #e8e0d5;

  transition:
    background .35s ease,
    transform .35s ease;
}

.vn-benefit:hover .vn-benefit-icon {
  background: var(--dark);

  transform: rotate(-10deg);
}

.vn-benefit-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: var(--green);

  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.vn-benefit:hover .vn-benefit-icon svg {
  stroke: white;
}

.vn-benefit div:last-child > span {
  color: #a3aaa8;

  font-size: 9px;

  letter-spacing: 1px;
}

.vn-benefit h3 {
  margin: 4px 0 6px;

  font-size: 14px;

  transition: color .3s ease;
}

.vn-benefit:hover h3 {
  color: var(--green);
}

.vn-benefit p {
  margin: 0;

  color: #7a8582;

  font-size: 11px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.vn-final {
  position: relative;

  min-height: 500px;

  overflow: hidden;

  display: flex;

  align-items: center;
}

.vn-final > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1.2s ease;
}

.vn-final:hover > img {
  transform: scale(1.04);
}

.vn-final-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7,48,47,.78),
      rgba(7,48,47,.30)
    );
}

.vn-final-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: auto;

  padding: 80px 7%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.vn-final-left {
  color: white;
}

.vn-final-left > span {
  font-family: Georgia, serif;

  font-size: 38px;

  font-style: italic;
}

.vn-final-left h2 {
  margin: 5px 0;

  font-family: Georgia, serif;

  font-size: clamp(48px, 6vw, 75px);

  font-weight: 400;

  line-height: .95;

  transition:
    transform .5s ease;
}

.vn-final-left:hover h2 {
  transform: translateX(12px);
}

.vn-final-plane {
  display: inline-block;

  margin-top: 25px;

  font-size: 30px;

  transform: rotate(-15deg);

  animation:
    vnFinalPlane 4s ease-in-out infinite;
}

@keyframes vnFinalPlane {

  0%,100% {
    transform:
      translateX(0)
      rotate(-15deg);
  }

  50% {
    transform:
      translateX(35px)
      rotate(-7deg);
  }

}

.vn-final-card {
  max-width: 410px;

  padding: 35px;

  background:
    rgba(9,54,52,.75);

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,255,255,.15);

  transition:
    transform .4s ease,
    background .4s ease;
}

.vn-final-card:hover {
  transform: translateY(-8px);

  background:
    rgba(9,54,52,.88);
}

.vn-final-card .vn-label {
  color: #a8d2cd;
}

.vn-final-card h2 {
  margin: 0 0 15px;

  color: white;

  font-family: Georgia, serif;

  font-size: 34px;

  font-weight: 400;
}

.vn-final-card p {
  margin: 0 0 22px;

  color: rgba(255,255,255,.76);

  font-size: 13px;

  line-height: 1.8;
}

.vn-final-card a {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  color: white;

  font-size: 12px;

  padding-bottom: 5px;

  border-bottom:
    1px solid rgba(255,255,255,.5);
}

.vn-final-card a span {
  transition: transform .3s ease;
}

.vn-final-card a:hover span {
  transform: translateX(7px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .vn-story {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 50px;
  }

  .vn-story-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .vn-line {
    margin-left: auto;
    margin-right: auto;
  }

  .vn-story-links {
    justify-content: center;
  }

  .vn-philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vn-ph-card:nth-child(2) {
    border-right: none;
  }

  .vn-why {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .vn-why-left {
    text-align: center;
  }

  .vn-why-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .vn-benefits {
    max-width: 700px;

    margin: auto;
  }

  .vn-final-content {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .vn-hero {
    min-height: 620px;
  }

  .vn-hero-content {
    padding: 90px 25px;
  }

  .vn-hero h1 {
    font-size: 52px;
  }

  .vn-hero p {
    font-size: 13px;
  }

  .vn-scroll {
    left: 25px;
  }


  .vn-story {
    padding: 80px 25px;
  }

  .vn-story-visual {
    min-height: 400px;
  }

  .vn-story-photo {
    width: 280px;
    height: 350px;
  }

  .vn-round-circle {
    width: 300px;
    height: 300px;
  }

  .vn-dashed-circle {
    width: 330px;
    height: 330px;
  }

  .vn-story-text h2,
  .vn-why-left h2 {
    font-size: 40px;
  }


  .vn-philosophy {
    padding: 80px 20px;
  }

  .vn-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .vn-ph-card {
    border-right: none;

    border-bottom:
      1px solid rgba(16,60,57,.15);
  }

  .vn-ph-card:last-child {
    border-bottom: none;
  }


  .vn-why {
    padding: 80px 25px;
  }

  .vn-benefits {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .vn-final {
    min-height: 650px;
  }

  .vn-final-content {
    padding: 70px 25px;
  }

  .vn-final-left h2 {
    font-size: 50px;
  }

  .vn-final-card {
    padding: 28px;
  }

}
/* =====================================================
   VOYANEST ABOUT US - FULL WIDTH FIX
   SAME METHOD AS CONTACT US
===================================================== */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.vn-about {
    width: 100vw !important;
    max-width: none !important;

    position: relative !important;
    left: 50% !important;

    margin-left: -50vw !important;
    margin-right: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;
}


/* ================= HERO ================= */

.vn-about .vn-hero {
    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* ================= FINAL CTA ================= */

.vn-about .vn-final {
    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 !important;

    box-sizing: border-box !important;
}


/* ================= ELEMENTOR HTML WIDGET ================= */

.elementor-element:has(.vn-about) {
    overflow: visible !important;
}

.elementor-element:has(.vn-about) > .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}/* End custom CSS */