:root {
  --containerSize: 1440px;
  --sectionGap: 160px;
  --gridColumn: 10;
  --fontFamily: "Inter", sans-serif;
  --containerGap: 48px;
  --background: 255, 255, 255;
  --surface: 255, 255, 255;
  --primary: 0, 0, 0;
  --secondary: 255, 255, 255;
  --onBackground: 0, 0, 0;
  --onSurface: 0, 0, 0;
  --onPrimary: 255, 255, 255;
  --onSecondary: 0, 0, 0;
}

.g-w-auto {
  width: auto !important;
}

.g-h-auto {
  height: auto !important;
}

.g-w-initial {
  width: initial !important;
}

.g-full {
  width: 100%;
}

.g-w-screen {
  width: 100vw;
}

.g-not-full {
  max-width: var(--containerSize);
}

.g-h-screen {
  height: 100vh;
}

.g-h-full {
  height: 100%;
}

.g-d-n {
  display: none;
}

.g-d-i-b {
  display: inline-block;
}

.g-d-b {
  display: block !important;
}

.g-d-f {
  display: flex;
}

.g-grid {
  display: grid;
}

.g-m-a {
  margin: 0 auto;
}

.g-overlay-black {
  position: relative;
}
.g-overlay-black::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.39;
}
.g-overlay-black .g-slide-content-container {
  z-index: 1;
}

.g-d-f-f_d-c {
  flex-direction: column !important;
}

.g-d-f-f_d-c_r {
  flex-direction: column-reverse !important;
}

.g-d-f-f_d-r {
  flex-direction: row !important;
}

.g-d-f-f_d-r_r {
  flex-direction: row-reverse !important;
}

.g-d-f-f_w-w {
  flex-wrap: wrap !important;
}

.g-d-f-f_w-w_r {
  flex-wrap: wrap-reverse !important;
}

.g-d-f-f_w-n_w {
  flex-wrap: nowrap !important;
}

.g-d-f-j_c-c {
  justify-content: center !important;
}

.g-d-f-j_c-f_s {
  justify-content: flex-start !important;
}

.g-d-f-j_c-f_e {
  justify-content: flex-end !important;
}

.g-d-f-j_c-s_b {
  justify-content: space-between !important;
}

.g-d-f-j_c-s_a {
  justify-content: space-around !important;
}

.g-d-f-a_i-c {
  align-items: center !important;
}

.g-d-f-a_i-f_s {
  align-items: flex-start !important;
}

.g-d-f-a_i-f_e {
  align-items: flex-end !important;
}

.g-d-f-a_i-s {
  align-items: stretch !important;
}

.g-d-f-a_i-b {
  align-items: baseline !important;
}

.g-d-f-a_c-s_b {
  align-content: space-between !important;
}

.g-d-f-a_c-s_a {
  align-content: space-around !important;
}

.g-d-f-a_c-s {
  align-content: stretch !important;
}

.g-d-f-a_c-c {
  align-content: center !important;
}

.g-d-f-a_c-f_s {
  align-content: flex-start !important;
}

.g-d-f-a_c-f_e {
  align-content: flex-end !important;
}

.g-d-f-cd-a_s-c {
  align-self: center !important;
}

.g-d-f-cd-a_s-f_s {
  align-self: flex-start !important;
}

.g-d-f-cd-a_s-f_e {
  align-self: flex-end !important;
}

.g-d-f-cd-a_s-s {
  align-self: stretch !important;
}

.g-d-f-j_s-c {
  justify-self: center !important;
}

.g-d-f-j_s-f_s {
  justify-self: flex-start !important;
}

.g-d-f-j_s-f_e {
  justify-self: flex-end !important;
}

.g-pos-r {
  position: relative !important;
}

.g-pos-a {
  position: absolute !important;
}

.g-pos-f {
  position: fixed !important;
}

.g-tlr {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

.g-t {
  top: 0 !important;
}

.g-l {
  left: 0 !important;
}

.g-r {
  right: 0 !important;
}

.g-b {
  bottom: 0 !important;
}

.g-o-h {
  overflow: hidden !important;
}

.m0 {
  margin: 0px !important;
}

.p0 {
  padding: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.p5 {
  padding: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.p10 {
  padding: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.p15 {
  padding: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.p20 {
  padding: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.p25 {
  padding: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.p30 {
  padding: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.p35 {
  padding: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.p40 {
  padding: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.p45 {
  padding: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.p50 {
  padding: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.m60 {
  margin: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.m70 {
  margin: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.p75 {
  padding: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.m90 {
  margin: 90px !important;
}

.p90 {
  padding: 90px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.m100 {
  margin: 100px !important;
}

.p100 {
  padding: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.g-grid {
  display: grid !important;
}

.play-btn {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.g-anim-1 {
  transform: translateY(7em) rotateZ(-9deg);
  transition: transform 0.7s 0.15s cubic-bezier(0.12, 0.32, 0.58, 1);
}
.g-anim-1.is-visible {
  transform: translateY(0) rotateZ(0deg);
}

.g-anim-t-1 {
  transform: translateX(2em);
  transition: transform 0.7s 0.5s ease-in-out;
}
.g-anim-t-1::after {
  transform: rotateY(90deg);
  transition: transform 0.7s 0.5s cubic-bezier(0, 1, 0.3, 1);
}
.g-anim-t-1.is-visible {
  transform: translateX(0);
}
.g-anim-t-1.is-visible::after {
  transform: rotateY(0deg);
}

.g-image-clip-reveal-top {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-top picture {
  transform: translateY(-30vh);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-top picture img {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-top.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-top.active picture {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateY(0);
}
.g-image-clip-reveal-top.active picture img {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-image-clip-reveal-top,
.g-image-clip-reveal-top img {
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
}
.g-image-clip-reveal-top.active, .g-image-clip-reveal-top.active img,
.g-image-clip-reveal-top img.active,
.g-image-clip-reveal-top img.active img {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-image-clip-reveal-bottom {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-bottom picture {
  transform: translateY(30vh);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-bottom picture img {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-bottom.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-bottom.active picture {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateY(0);
}
.g-image-clip-reveal-bottom.active picture img {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-image-clip-reveal-bottom,
.g-image-clip-reveal-bottom img {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.g-image-clip-reveal-bottom.active, .g-image-clip-reveal-bottom.active img,
.g-image-clip-reveal-bottom img.active,
.g-image-clip-reveal-bottom img.active img {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-image-clip-reveal-left {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-left picture {
  transform: translateX(-30vw);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-left picture img {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-left.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-left.active picture {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateX(0);
}
.g-image-clip-reveal-left.active picture img {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-image-clip-reveal-left,
.g-image-clip-reveal-left img {
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0 100%);
}
.g-image-clip-reveal-left.active, .g-image-clip-reveal-left.active img,
.g-image-clip-reveal-left img.active,
.g-image-clip-reveal-left img.active img {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-image-clip-reveal-right {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-right picture {
  transform: translateX(30vw);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-image-clip-reveal-right picture img {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-right.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-image-clip-reveal-right.active picture {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateX(0);
}
.g-image-clip-reveal-right.active picture img {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-image-clip-reveal-right,
.g-image-clip-reveal-right img {
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
}
.g-image-clip-reveal-right.active, .g-image-clip-reveal-right.active img,
.g-image-clip-reveal-right img.active,
.g-image-clip-reveal-right img.active img {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-video-clip-reveal-top {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-top .video-cont {
  transform: translateY(-30vh);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-top .video-cont video {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-top.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-top.active .video-cont {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateY(0);
}
.g-video-clip-reveal-top.active .video-cont video {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-video-clip-reveal-top,
.g-video-clip-reveal-top video {
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
}
.g-video-clip-reveal-top.active, .g-video-clip-reveal-top.active video,
.g-video-clip-reveal-top video.active,
.g-video-clip-reveal-top video.active video {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-video-clip-reveal-bottom {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-bottom .video-cont {
  transform: translateY(30vh);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-bottom .video-cont video {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-bottom.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-bottom.active .video-cont {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateY(0);
}
.g-video-clip-reveal-bottom.active .video-cont video {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-video-clip-reveal-bottom,
.g-video-clip-reveal-bottom video {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.g-video-clip-reveal-bottom.active, .g-video-clip-reveal-bottom.active video,
.g-video-clip-reveal-bottom video.active,
.g-video-clip-reveal-bottom video.active video {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-video-clip-reveal-left {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-left .video-cont {
  transform: translateX(-30vw);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-left .video-cont video {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-left.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-left.active .video-cont {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateX(0);
}
.g-video-clip-reveal-left.active .video-cont video {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-video-clip-reveal-left,
.g-video-clip-reveal-left video {
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0 100%);
}
.g-video-clip-reveal-left.active, .g-video-clip-reveal-left.active video,
.g-video-clip-reveal-left video.active,
.g-video-clip-reveal-left video.active video {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.g-video-clip-reveal-right {
  overflow: hidden;
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-right .video-cont {
  transform: translateX(30vw);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}
.g-video-clip-reveal-right .video-cont video {
  transform: scale(1.4);
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-right.active {
  transition: all 1.4s cubic-bezier(0.89, -0.1, 0.21, 1.09);
}
.g-video-clip-reveal-right.active .video-cont {
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
  transform: translateX(0);
}
.g-video-clip-reveal-right.active .video-cont video {
  transform: scale(1.0002);
  transition: all 1.4s 0.7s cubic-bezier(0.1, 1, 0.3, 1);
}

.g-video-clip-reveal-right,
.g-video-clip-reveal-right video {
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
}
.g-video-clip-reveal-right.active, .g-video-clip-reveal-right.active video,
.g-video-clip-reveal-right video.active,
.g-video-clip-reveal-right video.active video {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

@keyframes morph {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  font-family: var(--fontFamily) !important;
  background-color: var(--background);
  overflow-x: hidden;
}

body,
ul {
  margin: 0;
  padding: 0;
}

picture,
.video-cont {
  width: 100%;
  height: auto;
  display: block;
}

img,
video {
  height: auto;
  max-width: 100%;
  max-height: 100%;
  user-select: none;
  width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.g-main {
  width: 100%;
  height: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.g-section-title {
  width: 100%;
}
.g-section-title.g-s-t-a {
  width: auto;
}

.t_a-c {
  text-align: center !important;
}

.t_a-l {
  text-align: left !important;
}

.t_a-r {
  text-align: right !important;
}

.t_a-j {
  text-align: justify !important;
}

.f_w-300 {
  font-weight: 300 !important;
}

.f_w-400 {
  font-weight: 400 !important;
}

.f_w-500 {
  font-weight: 500 !important;
}

.f_w-600 {
  font-weight: 600 !important;
}

.f_w-700 {
  font-weight: 700 !important;
}

.f_w-800 {
  font-weight: 800 !important;
}

.f_w-900 {
  font-weight: 900 !important;
}

.gm-h1 {
  font-weight: 300;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -1.5px;
}

.gm-h2 {
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -0.5px;
}

.gm-h3 {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
}

.gm-h4 {
  font-weight: 400;
  font-size: 34px;
  line-height: 34px;
  letter-spacing: 0.25px;
}

.gm-h5 {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
}

.gm-h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

.gm-subtitle1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.15px;
}

.gm-subtitle2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1px;
}

.gm-body1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.gm-body2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.25px;
}

.gm-button {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.gm-caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
}

.gm-overline {
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hello {
  text-decoration: none;
}

.g-image-background {
  background: url("") no-repeat center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.g-image-front {
  position: relative;
}

.g-icon {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-content: center;
  justify-content: center;
}

.g-video-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.g-video-container .g-video-content {
  position: absolute !important;
  top: 0;
  left: 0;
  cursor: pointer;
  pointer-events: none;
}
.g-video-container video {
  width: 100%;
  height: 100%;
}

.g-c-background {
  color: rgb(var(--background));
}

.g-c-surface {
  color: rgb(var(--surface));
}

.g-c-primary {
  color: rgb(var(--primary));
}

.g-c-secondary {
  color: rgb(var(--secondary));
}

.g-c-onBackground {
  color: rgb(var(--onBackground));
}

.g-c-onSurface {
  color: rgb(var(--onSurface));
}

.g-c-onPrimary {
  color: rgb(var(--onPrimary));
}

.g-c-onSecondary {
  color: rgb(var(--onSecondary));
}

.g-b-background {
  background-color: rgb(var(--background));
}

.g-b-surface {
  background-color: rgb(var(--surface));
}

.g-b-primary {
  background-color: rgb(var(--primary));
}

.g-b-secondary {
  background-color: rgb(var(--secondary));
}

.g-b-onBackground {
  background-color: rgb(var(--onBackground));
}

.g-b-onSurface {
  background-color: rgb(var(--onSurface));
}

.g-b-onPrimary {
  background-color: rgb(var(--onPrimary));
}

.g-b-onSecondary {
  background-color: rgb(var(--onSecondary));
}

@endif;
.g-b_c-w {
  background-color: #ffffff !important;
}

.g-b_c-b {
  background-color: #000000 !important;
}

.g-c-w {
  color: #ffffff !important;
}

.g-c-b {
  color: #000000 !important;
}

.g-container {
  position: relative;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1248px) {
  .g-container {
    padding-left: calc(var(--sectionGap) / 2);
    padding-right: calc(var(--sectionGap) / 2);
  }
}
@media screen and (min-width: 1056px) {
  .g-container {
    padding-left: calc(var(--sectionGap) / 3);
    padding-right: calc(var(--sectionGap) / 3);
  }
}
@media screen and (max-width: 768px) {
  .g-container {
    padding-left: calc(var(--sectionGap) / 4);
    padding-right: calc(var(--sectionGap) / 4);
  }
}
@media screen and (max-width: 600px) {
  .g-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1055px) {
  .g-container {
    padding-left: calc(var(--sectionGap) / 4);
    padding-right: calc(var(--sectionGap) / 4);
  }
}
.g-container.no-side-gap {
  padding: 0 !important;
}

.g-section {
  padding-top: calc(var(--sectionGap) / 2);
  padding-bottom: calc(var(--sectionGap) / 2);
}
@media screen and (max-width: 768px) {
  .g-section {
    padding-top: calc(var(--sectionGap) / 4);
    padding-bottom: calc(var(--sectionGap) / 4);
  }
}
@media screen and (max-width: 600px) {
  .g-section {
    padding-top: calc(var(--sectionGap) / 4);
    padding-bottom: calc(var(--sectionGap) / 4);
  }
}
.g-section.no-side-gap {
  padding-left: 0;
  padding-right: 0;
}
.g-section.g-banner {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding: 0;
}
.g-section.g-section-w-bg-img {
  background-position: center;
  background-size: cover;
}

.g-content-group.g-zig-zag:nth-child(even) > .g-content-area {
  flex-direction: row-reverse;
}

.g-content-area {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-content: center;
}

.g-row {
  display: flex;
  width: 100%;
  height: 100%;
}
.g-row.g-row-fixed {
  flex-wrap: wrap;
}

.g-col-1 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .g-col-1 {
    width: 100%;
  }
}

.g-col-e-1 {
  width: 8.3333333333%;
}
@media screen and (max-width: 768px) {
  .g-col-e-1 {
    width: 100%;
  }
}

.g-col-2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .g-col-2 {
    width: 100%;
  }
}

.g-col-e-2 {
  width: 4.1666666667%;
}
@media screen and (max-width: 768px) {
  .g-col-e-2 {
    width: 100%;
  }
}

.g-col-3 {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .g-col-3 {
    width: 100%;
  }
}

.g-col-e-3 {
  width: 2.7777777778%;
}
@media screen and (max-width: 768px) {
  .g-col-e-3 {
    width: 100%;
  }
}

.g-col-4 {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .g-col-4 {
    width: 100%;
  }
}

.g-col-e-4 {
  width: 2.0833333333%;
}
@media screen and (max-width: 768px) {
  .g-col-e-4 {
    width: 100%;
  }
}

.g-col-5 {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .g-col-5 {
    width: 100%;
  }
}

.g-col-e-5 {
  width: 1.6666666667%;
}
@media screen and (max-width: 768px) {
  .g-col-e-5 {
    width: 100%;
  }
}

.g-col-6 {
  width: 16.6666666667%;
}
@media screen and (max-width: 768px) {
  .g-col-6 {
    width: 100%;
  }
}

.g-col-e-6 {
  width: 1.3888888889%;
}
@media screen and (max-width: 768px) {
  .g-col-e-6 {
    width: 100%;
  }
}

.g-col-7 {
  width: 14.2857142857%;
}
@media screen and (max-width: 768px) {
  .g-col-7 {
    width: 100%;
  }
}

.g-col-e-7 {
  width: 1.1904761905%;
}
@media screen and (max-width: 768px) {
  .g-col-e-7 {
    width: 100%;
  }
}

.g-col-8 {
  width: 12.5%;
}
@media screen and (max-width: 768px) {
  .g-col-8 {
    width: 100%;
  }
}

.g-col-e-8 {
  width: 1.0416666667%;
}
@media screen and (max-width: 768px) {
  .g-col-e-8 {
    width: 100%;
  }
}

.g-col-9 {
  width: 11.1111111111%;
}
@media screen and (max-width: 768px) {
  .g-col-9 {
    width: 100%;
  }
}

.g-col-e-9 {
  width: 0.9259259259%;
}
@media screen and (max-width: 768px) {
  .g-col-e-9 {
    width: 100%;
  }
}

.g-col-10 {
  width: 10%;
}
@media screen and (max-width: 768px) {
  .g-col-10 {
    width: 100%;
  }
}

.g-col-e-10 {
  width: 0.8333333333%;
}
@media screen and (max-width: 768px) {
  .g-col-e-10 {
    width: 100%;
  }
}

.g-col-11 {
  width: 9.0909090909%;
}
@media screen and (max-width: 768px) {
  .g-col-11 {
    width: 100%;
  }
}

.g-col-e-11 {
  width: 0.7575757576%;
}
@media screen and (max-width: 768px) {
  .g-col-e-11 {
    width: 100%;
  }
}

.g-col-12 {
  width: 8.3333333333%;
}
@media screen and (max-width: 768px) {
  .g-col-12 {
    width: 100%;
  }
}

.g-col-e-12 {
  width: 0.6944444444%;
}
@media screen and (max-width: 768px) {
  .g-col-e-12 {
    width: 100%;
  }
}

.g-navigation {
  background-color: transparent;
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
}
.g-navigation.scrolled {
  background-color: rgb(var(--secondary));
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  transition: all 0.2s ease-in-out;
}
.g-navigation .g-container {
  height: 100%;
  padding-left: 48px;
  padding-right: 48px;
}
.g-navigation .g-container .g-row {
  height: 100%;
}

.g-logo {
  display: flex;
  width: auto;
  flex-grow: 0;
  align-items: flex-start;
}
.g-logo .logo-img {
  height: 157px;
  width: initial;
  margin-left: -var(--containerGap);
}
.g-logo .logo-img img.g-base-height {
  height: 100%;
}
.g-logo .logo-img img.g-base-width {
  width: 100%;
}

.g-nav {
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  display: flex;
}
.g-nav .g-ul {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.g-nav .g-ul .g-li {
  position: relative;
  margin-left: 60px;
}
.g-nav .g-ul .g-li .g-a {
  color: #000000;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  user-select: none;
}
.g-nav .g-ul .g-li.act-s-1.active {
  font-weight: 700;
}
.g-nav .g-ul .g-li.act-s-1.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 2px;
  background-color: rgb(var(--primary));
}

.g-nav-btn {
  height: 60px;
  width: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000000000000;
}
@media screen and (max-width: 960px) {
  .g-nav-btn {
    display: block;
  }
}
.g-nav-btn .g-nav-btn-area {
  background-color: #000;
  height: 48px;
  width: 48px;
  cursor: pointer;
}
.g-nav-btn .g-nav-btn-area .g-nav-line {
  height: 2px;
  background-color: #fff;
  width: 24px;
  margin-left: 12px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}
.g-nav-btn .g-nav-btn-area .g-nav-line:nth-child(2) {
  transition: opacity 0.2s ease-in-out;
}
.g-nav-btn .g-nav-btn-area .g-nav-line:nth-child(1) {
  margin-top: -8px;
}
.g-nav-btn .g-nav-btn-area .g-nav-line:nth-child(3) {
  margin-top: 6px;
}

.nav-open .g-nav-line:nth-child(2) {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.nav-open .g-nav-line:nth-child(1) {
  margin-top: -1px !important;
  transform: rotate(-45deg) !important;
  transition: margin-top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
}
.nav-open .g-nav-line:nth-child(3) {
  margin-top: -1px !important;
  transform: rotate(45deg) !important;
  transition: margin-top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
}

.g-sub-ul {
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease-in-out;
}
.g-sub-ul .g-li {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .g-nav-t-1 {
    position: fixed;
    top: 0;
    bottom: 0;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgb(var(--secondary));
    width: 250px;
    margin-left: -250px;
  }
  .g-nav-t-1 .g-ul {
    flex-direction: column;
    padding-top: 70px;
  }
  .g-nav-t-1 .g-ul .g-li {
    margin: 5px 20px;
    line-height: 25px;
  }
  .g-nav-t-1.nav-f-l {
    left: 0;
  }
  .g-nav-t-1.nav-f-r {
    right: 0;
  }
}

.g-banner {
  width: 100%;
  min-height: 550px;
  height: 100vh;
}

.g-slider-container {
  width: 100%;
  height: 100%;
}
.g-slider-container .g-slider-wrapper .g-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.g-slider-container .g-slider-wrapper .g-slide .g-slide-content-container {
  margin-left: var(--containerGap);
}
.g-slider-container .g-slider-wrapper .g-slide .g-slide-content-container .g-slide-content .g-slide-heading {
  font-size: 5.2rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
}
.g-slider-container .g-slider-wrapper .g-slide .g-slide-content-container .g-slide-content .g-slide-subHeading {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 100;
  letter-spacing: 1.9px;
}
.g-slider-container .g-slider-pagination {
  margin-right: var(--containerGap);
}
.g-slider-container .g-slider-pagination span {
  position: relative;
  height: 14px;
  width: 14px;
  box-sizing: content-box;
  border: 1px solid rgb(var(--secondary));
  background-color: rgb(var(--secondary));
  opacity: 1;
  margin: 16px 10px !important;
}
.g-slider-container .g-slider-pagination span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: rgb(var(--secondary));
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
.g-slider-container .g-slider-pagination span.swiper-pagination-bullet-active {
  border: 1px solid rgb(var(--secondary));
  background-color: transparent;
}

.g-button-container,
.g-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.g-a-button {
  margin: 0 0 0 0;
  padding: 10px 30px;
  font-size: 1rem;
  display: flex;
  font-weight: 300;
  font-family: var(--fontFamily);
  cursor: pointer;
}
.g-a-button i {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.3em;
}
.g-a-button.b-s-1 {
  border: solid 1px rgb(var(--primary));
}
.g-a-button.b-s-2 {
  border: solid 1px rgb(var(--primary));
  background-color: rgb(var(--primary));
  color: rgb(var(--secondary));
}

.g-button-button {
  margin: 0 0 0 0;
  padding: 0.5em 1em;
  font-size: 1rem;
  background-color: rgb(var(--background));
  display: flex;
  border: "solid 1px #000000";
  font-weight: 300;
  font-family: var(--fontFamily);
  border-radius: 5px;
  box-shadow: "none";
  cursor: pointer;
}
.g-button-button i {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.3em;
}
.g-button-button.b-s-1 {
  border: solid 1px rgb(var(--primary));
}
.g-button-button.b-s-2 {
  border: solid 1px rgb(var(--primary));
  background-color: rgb(var(--primary));
  color: rgb(var(--secondary));
}

input,
textarea,
select {
  width: 100%;
  padding: 8px 8px;
  font-family: var(--fontFamily);
  font-size: 14px;
}

button {
  font-family: var(--fontFamily);
  min-width: 100px;
}

select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-position: 100%;
  background-repeat: no-repeat;
  color: rgb(var(--primary));
}

.g-input-box {
  padding-top: 10px;
}
.g-input-box .g-icon-input {
  --pl: 36px;
  position: relative;
}
.g-input-box .g-icon-input input,
.g-input-box .g-icon-input select {
  padding-left: var(--pl);
}
.g-input-box .g-icon-input i {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: var(--pl);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  color: #afafaf;
}
.g-input-box .g-radio-group {
  display: flex;
  width: 100%;
}
.g-input-box .g-radio-group .radio {
  display: flex;
  align-items: center;
  align-content: center;
}
.g-input-box .g-radio-group .radio input {
  width: 24px;
  height: 24px;
}

.g-input-box-1 .g-input-box-inner {
  position: relative;
}
.g-input-box-1 .input-box {
  border: none;
  outline: none;
  width: 100%;
}
.g-input-box-1 .g-label {
  display: none;
}
.g-input-box-1 .g-label,
.g-input-box-1 .input-box {
  font-size: 1rem;
  padding: 10px;
}
.g-input-box-1.b-r .input-box {
  border-radius: 100px;
  padding-left: 15px;
}
.g-input-box-1 button {
  background-color: rgb(var(--primary));
  color: rgb(var(--secondary));
  cursor: pointer;
}
.g-input-box-1 button:focus {
  border: 2px solid rgb(var(--primary));
  color: rgb(var(--primary));
  background-color: #fff !important;
}

.g-input-box-2 {
  padding: 0;
}
.g-input-box-2 textarea {
  height: auto !important;
  resize: none;
  padding-top: 10px !important;
}
.g-input-box-2 textarea::placeholder {
  font-size: 14px;
  color: #9e9e9e;
}
.g-input-box-2 .g-input-box-inner {
  position: relative;
  margin-top: 1rem;
}
.g-input-box-2 .g-input-box-inner .input-box {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(var(--secondary));
  border-radius: 0;
  outline: none;
  height: 2.625rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
  overflow: visible;
  line-height: 1.15;
}
.g-input-box-2 .g-input-box-inner .g-label {
  width: 100%;
  color: rgb(var(--secondary));
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  cursor: text;
  transform-origin: 0% 100%;
  transform: translateY(12px);
  pointer-events: none;
  transition: transform 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.g-input-box-2 .g-input-box-inner .g-label::after {
  display: block;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transition: 0.2s opacity ease-out, 0.2s color ease-out;
}
.g-input-box-2 .g-input-box-inner .g-error {
  position: relative;
  min-height: 18px;
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  color: red;
}
.g-input-box-2 .g-input-box-inner .input-box:focus ~ .g-label {
  color: rgb(var(--primary));
}
.g-input-box-2 .g-input-box-inner .input-box:focus ~ .g-label, .g-input-box-2 .g-input-box-inner .input-box:valid ~ .g-label {
  transform: translateY(-14px) scale(0.8);
  transform-origin: 0 0;
}

.g-input-box-3 .g-label {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: rgb(var(--primary));
}
.g-input-box-3 .input-box {
  border-radius: 5px;
  border: solid 1px #C9C9C9;
  height: 48px;
  font-size: 16px;
  border-radius: 4px;
  border-color: rgb(var(--borderColor));
}

.g-check-box .input-box {
  width: initial;
}

form {
  width: 100%;
}

.g-error {
  position: relative;
  min-height: 18px;
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  color: red;
}

.file-preview-box {
  font-size: 13px;
  margin: 0;
  overflow-y: hidden;
  position: relative;
  font-family: "Roboto", sans-serif;
  color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200000;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.1s, 0s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-delay: 0s, 0.1s;
}
.file-preview-box.f-p-op-n {
  opacity: 1;
  visibility: visible;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transition-delay: 0s, 0s;
  outline: none;
}
.file-preview-box .f-p-b-bg {
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.file-preview-box .f-p-b-prvwr {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  transition: bottom 0.218s ease-out;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt {
  position: absolute;
  top: 80px;
  bottom: 80px;
  margin-top: auto;
  margin-bottom: auto;
  outline: 0;
  width: 48px;
  height: 90px;
  z-index: 5;
  cursor: pointer;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre .prvwr-icn-cntnr, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt .prvwr-icn-cntnr {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.75);
  transition: background 0.2s, opacity 0.34s, transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre .prvwr-icn-cntnr:hover, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt .prvwr-icn-cntnr:hover {
  background-color: #d81e38;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre .prvwr-icn-cntnr i, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt .prvwr-icn-cntnr i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  height: 24px;
  width: 24px;
  box-sizing: border-box;
  padding: 2px;
  font-size: 20px;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre .prvwr-icn-cntnr i {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre.prvwr-btn-hs, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt.prvwr-btn-hs {
  cursor: default;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre.prvwr-btn-hs .prvwr-icn-cntnr, .file-preview-box .f-p-b-prvwr .prvwr-btn-nxt.prvwr-btn-hs .prvwr-icn-cntnr {
  display: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-pre {
  user-select: none;
  left: 12px;
  opacity: 1;
}
.file-preview-box .f-p-b-prvwr .prvwr-btn-nxt {
  user-select: none;
  right: 12px;
  opacity: 1;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn {
  position: absolute;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%);
  border-radius: 3px;
  bottom: 12px;
  z-index: 3;
  overflow: hidden;
  opacity: 1;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-pg-cntnr {
  background: rgba(0, 0, 0, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-size: 13px;
  line-height: 44px;
  height: 44px;
  vertical-align: middle;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-pg-cntnr .prvwr-ttl {
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-pg-cntnr .prvwr-curnt {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 48px;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-pg-cntnr .prvwr-slsh {
  display: inline;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-pg-cntnr .prvwr-totl {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 48px;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-btn-cntnr {
  background: rgba(0, 0, 0, 0.75);
  display: inline-block;
  padding: 2px;
  vertical-align: middle;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-btn-cntnr .prvwr-sngl-btn {
  user-select: none;
  border-radius: 1px;
  width: 24px;
  height: 24px;
  transition: background-color 0.1s, opacity 0.1s;
  line-height: 24px;
  margin: 0;
  padding: 8px;
  min-width: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.87);
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 0 rbga(0, 0, 0, 0.8);
  position: relative;
  display: inline-block;
}
.file-preview-box .f-p-b-prvwr .prvwr-srt-btn .prvwr-btn-cntnr .prvwr-sngl-btn .prvwr-sngl-btn-icn {
  width: 24px;
  height: 24px;
  opacity: 1;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  user-select: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts {
  min-width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts.prvwr-ldg-hd {
  display: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .prvwr-ldg-icn {
  height: 51px;
  width: 51px;
  top: 2px;
  display: inline-block;
  position: relative;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  margin-left: -25px;
  z-index: 18;
  pointer-events: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  padding-bottom: 100%;
  width: 100%;
  animation: spinLeft 1568.23529647ms linear infinite;
  pointer-events: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinRtr 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-lft, .file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-rit {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-lft .icon-loading-crcl, .file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-rit .icon-loading-crcl {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  border-color: #ddd #ddd transparent;
  border-radius: 50%;
  border-width: 4px;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-lft {
  left: 0;
  right: 49%;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-lft .icon-loading-crcl {
  left: 0;
  right: -100%;
  border-right-color: transparent;
  animation: spinLeftCircle 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-rit {
  right: 0;
  left: 49%;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts .icon-loading .icon-loading-container .icon-loading-rtr .icon-loading-rit .icon-loading-crcl {
  right: 0;
  left: -100%;
  border-left-color: transparent;
  animation: spinRightCircle 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-ldg-sts.d-p-n {
  display: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-img-cntnr .prvwr-img-inr-cntnr .prvwr-img-bx {
  transition-property: left, top, width, height;
  transition-duration: 0.218s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  position: absolute;
  background-color: #fff;
  background-image: linear-gradient(45deg, #efefef 25%, transparent 25%, transparent 75%, #efefef 75%, #efefef), linear-gradient(45deg, #efefef 25%, transparent 25%, transparent 75%, #efefef 75%, #efefef);
  background-position: 0 0, 10px 10px;
  background-size: 21px 21px;
  box-shadow: 0 4px 15px 2px rgba(0, 0, 0, 0.35);
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.file-preview-box .f-p-b-prvwr .prvwr-img-main .prvwr-img-cntnr .prvwr-img-inr-cntnr .prvwr-img-bx img {
  height: 100%;
  width: 100%;
  position: absolute;
}
.file-preview-box .f-p-b-tlbr {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  opacity: 1;
  z-index: 30000000;
  height: 56px;
  width: auto;
  padding: 0 0 16px 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  height: 48px;
  padding-top: 8px;
  margin-right: 12px;
  padding-left: 12px;
  pointer-events: auto;
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-bck-wt-nm {
  position: absolute;
  left: 12px;
  white-space: nowrap;
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-bck-wt-nm .tlbr-bck-btn {
  user-select: none;
  float: left;
  margin-left: 0;
  transition: background-color 0.1s, opacity 0.1s;
  border-radius: 2px;
  margin: 0;
  padding: 8px;
  min-width: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.87);
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
  vertical-align: middle;
  z-index: 1;
  min-height: 26px;
  position: relative;
  display: flex;
  align-items: center;
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-bck-wt-nm .tlbr-bck-btn .icon-right-arrow {
  border-radius: 2px;
  display: block;
  float: left;
  position: relative;
  font-size: 18px;
  padding-left: 8px;
  transform: rotate(180deg);
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-bck-wt-nm .tlbr-bck-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-nm {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-nm .tlbr-inr-nm {
  border: 1px solid transparent;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.75);
  margin: 0;
  white-space: nowrap;
  display: inline-block;
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-nm .tlbr-inr-nm .tlbr-inr-nm-i2 {
  user-select: none;
  padding-left: 8px;
  padding-right: 8px;
  min-width: 0;
  color: #fff;
  height: 30px;
  margin-left: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  border-top-right-radius: 0;
  display: inline-block;
  margin-right: 0;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  transition: background-color 0.1s, opacity 0.1s;
  border-radius: 2px;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
  vertical-align: middle;
  position: relative;
}
.file-preview-box .f-p-b-tlbr .f-p-b-inr-tlbr .tlbr-nm .tlbr-inr-nm .tlbr-inr-nm-i2 .fnly-nm {
  line-height: 24px;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

@keyframes spinLeft {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinRtr {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
@keyframes spinLeftCircle {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(130deg);
  }
}
@keyframes spinRightCircle {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-130deg);
  }
}
@keyframes logoRotation {
  0% {
    transform: perspective(800px) rotateY(-15deg) translateY(-50px) rotateX(10deg) scale(1);
  }
  20% {
    transform: perspective(800px) rotateY(34deg) translateY(-50px) rotateX(20deg) scale(1);
  }
  40% {
    transform: perspective(800px) rotateY(15deg) translateY(-50px) rotateX(12deg) scale(1);
  }
  60% {
    transform: perspective(800px) rotateY(13deg) translateY(-50px) rotateX(40deg) scale(1);
  }
  80% {
    transform: perspective(800px) rotateY(-40deg) translateY(-50px) rotateX(40deg) scale(1);
  }
  100% {
    transform: perspective(800px) rotateY(-15deg) translateY(-50px) rotateX(10deg) scale(1);
  }
}

.g-progress-cont {
  width: 90%;
  margin: 0 auto;
}
.g-progress-cont .g-progressbar {
  counter-reset: step;
}
.g-progress-cont .g-progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
  font-weight: 500;
}
.g-progress-cont .g-progressbar li::before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.g-progress-cont .g-progressbar li::after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #7d7d7d;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.g-progress-cont .g-progressbar li:first-child:after {
  content: none;
}
.g-progress-cont .g-progressbar li.active {
  color: rgb(var(--primary));
}
.g-progress-cont .g-progressbar li.active::before {
  border-color: rgb(var(--primary));
}
.g-progress-cont .g-progressbar li.active + li::after {
  background-color: #7d7d7d;
}

.pop_up_box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10000000;
  display: none;
}
.pop_up_box .pop_up_model {
  max-width: 675px;
  position: relative;
  z-index: 1;
}
.pop_up_box .pop_up_model > .g-content-area {
  height: initial;
}
.pop_up_box.show {
  display: block;
}
.pop_up_box .close-pop-up {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.g-accordion > .g-content-area {
  flex-direction: column;
}

.g-accordion-item .g-section-title {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.g-accordion-item .g-section-title h2 {
  letter-spacing: 1.4px;
}
.g-accordion-item .g-ul-list {
  display: none;
}
.g-accordion-item .g-ul-list.open {
  display: block;
}
.g-accordion-item .g-ul-list li {
  letter-spacing: 1.4px;
}

.checkbox {
  --background:rgb(var(--background));
  --border:#d1d6ee;
  --border-hover:#bbc1e1;
  --border-active:rgb(var(--onBackground));
  --tick:#fff;
  position: relative;
}
.checkbox input, .checkbox svg {
  width: 21px;
  height: 21px;
  display: block;
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: rgb(var(--background));
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}
.checkbox input:hover {
  --s:2px;
  --b:var(--border-hover);
}
.checkbox input:checked {
  --b:var(--border-active);
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--stroke, var(--border-active));
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.checkbox.path input:checked {
  --s:2px;
  transition-delay: 0.4s;
}
.checkbox.path input:checked + svg {
  --a:16.1 86.12;
  --o:102.22;
}
.checkbox.path svg {
  stroke-dasharray: var(--a, 86.12);
  stroke-dashoffset: var(--o, 86.12);
  transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}
.checkbox.bounce {
  --stroke:var(--tick);
}
.checkbox.bounce input:checked {
  --s:11px;
}
.checkbox.bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --scale:0;
}

@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.g-divider {
  height: 50px;
  width: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000000000000000000000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: white;
}

.logo {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #ffffff;
  animation: logoFade 2s ease-in-out infinite;
}

@keyframes logoFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0.5;
  }
  100% {
    transform: translateX(200%);
    opacity: 0.5;
  }
}
.progress-wrapper {
  position: relative;
  width: 400px;
  max-width: 80vw;
  perspective: 1000px;
}

.percentage {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #ffffff;
}
.percentage nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8), inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  position: relative;
  transform-style: preserve-3d;
  border: 1px solid #333;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}
.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 4px 4px 0 0;
}
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(4px);
  animation: shimmer 1.5s linear infinite;
}

.loading-text {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

#main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}
#main-content.visible {
  opacity: 1;
}

header {
  background: #000000;
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}
header h1 {
  font-size: 56px;
  margin-bottom: 20px;
  animation: slideDown 1s ease;
}
header p {
  font-size: 20px;
  opacity: 0.9;
  animation: slideDown 1s ease 0.2s backwards;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section {
  margin-bottom: 80px;
}
.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}
.section p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.card h3 {
  color: #000000;
  margin-bottom: 15px;
  font-size: 24px;
}
.card p {
  color: #666;
  line-height: 1.6;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
footer p {
  opacity: 0.8;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  margin: 30px 0;
}

p {
  text-wrap: pretty;
}

@media screen and (max-width: 1055px) {
  .main-banner-section {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
  }
}
.main-banner-section .home-nav {
  bottom: 40px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .main-banner-section .home-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    z-index: 10000000 !important;
    display: none;
  }
}
.main-banner-section .home-nav .hamberger {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.main-banner-section .home-nav .hamberger .line {
  height: 1px;
  width: 24px;
  background: #fff;
  position: relative;
}
.main-banner-section .home-nav .hamberger .line.line1 {
  top: -8px;
}
.main-banner-section .home-nav .hamberger .line.line2 {
  top: 10px;
}
.main-banner-section .home-nav ul {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .main-banner-section .home-nav ul {
    padding-right: 20px;
  }
}
.main-banner-section .home-nav ul a {
  color: #fff;
  font-size: 2vw;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-banner-section .home-nav ul a {
    font-size: 30px;
  }
}
.main-banner-section .home-nav ul a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.4s ease;
}
.main-banner-section .home-nav ul a:hover {
  letter-spacing: 2px;
  opacity: 0.7;
}
.main-banner-section .home-nav ul a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-row {
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
  }
}
.main-banner-section .mbs-row > div {
  width: 49%;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-row > div .text-content-mob {
    position: initial;
  }
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-row > div {
    height: 50vh;
    height: 50dvh;
    width: 100%;
  }
}
.main-banner-section .mbs-image {
  width: 100%;
}
.main-banner-section .mbs-image picture {
  height: 100%;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-image picture {
    height: 100%;
    display: block;
  }
}
.main-banner-section .mbs-image img {
  height: 100vh;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-image img {
    height: 50vh;
    height: 50dvh;
    min-height: 50vh;
    min-height: 50dvh;
  }
}
@media screen and (max-width: 1055px) {
  .main-banner-section .text-group > div {
    display: grid !important;
    grid-template-areas: "sub_title" "para" "title";
  }
}
.main-banner-section .main-title {
  z-index: 100000;
  mix-blend-mode: #000;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .main-title {
    grid-area: title;
  }
}
.main-banner-section .main-title h1 {
  font-size: 11.2vw;
  margin: 0;
  white-space: nowrap;
  color: transparent;
  margin-top: -25px;
  position: relative;
  background: linear-gradient(to left, #000 0 51%, #fff 50% 100%);
  background-clip: text;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .main-title h1 {
    font-size: 9vh;
    white-space: inherit;
    background: linear-gradient(to top, #000 0 51%, #fff 50% 100%);
    background-clip: text;
    margin: 0;
  }
}
.main-banner-section .main-title h1::before {
  content: "DIGITAL DESIGNER";
  position: absolute;
  color: #000;
  z-index: -1;
  -webkit-text-stroke: 1px #000;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .main-title h1::before {
    display: none;
  }
}
.main-banner-section .sub-title {
  z-index: 100000;
  text-align: right;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .sub-title {
    grid-area: sub_title;
  }
}
.main-banner-section .sub-title h3 {
  font-size: 3.5vw;
  margin-top: -1vw !important;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .sub-title h3 {
    font-size: 30px;
    display: none;
  }
}
.main-banner-section .mbs-para {
  text-align: right;
  z-index: 1000000;
  width: 100%;
  padding-right: 10px;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-para {
    grid-area: para;
  }
}
.main-banner-section .mbs-para p {
  max-width: 400px;
  margin-right: 0;
  margin-left: auto;
  color: #9d9d9d;
  font-size: 1.4vw;
  font-weight: 300;
}
@media screen and (max-width: 1055px) {
  .main-banner-section .mbs-para p {
    font-size: 18px;
  }
}

#formSection .form-title {
  width: 300px;
}
#formSection .form-title h2 {
  font-size: 35px;
  margin-bottom: 0;
}
#formSection .g-paragraph {
  width: 400px;
}
#formSection .g-paragraph p {
  font-size: 1.2rem;
  font-family: "Cormorant", serif;
}

.artwork-section .g-button-container {
  width: 100%;
}
.artwork-section .g-a-button {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .artwork-section .artwork-row {
    flex-direction: column;
  }
}
.artwork-section .artwork-image {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .artwork-section .artwork-image {
    width: 100%;
  }
}
.artwork-section .artwork-copy {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .artwork-section .artwork-copy {
    width: 100%;
    padding-top: 40px;
  }
}
.artwork-section .gallery-item-t {
  position: absolute;
  right: 60px;
  top: 0px;
  max-width: 170px;
}
.artwork-section .gallery-item:nth-child(1) {
  width: 50%;
}
.artwork-section .gallery-item:nth-child(1) picture {
  margin-left: 40px;
}
.artwork-section .gallery-item:nth-child(2) {
  width: 50%;
}
.artwork-section .gallery-item:nth-child(2) picture {
  margin-left: -40px;
}
.artwork-section .artwork-title h2 {
  font-size: 35px;
  margin: 0;
  text-align: center;
}
.artwork-section .artwork-para p {
  font-family: "Cormorant", serif;
  font-size: 18px;
  color: #505050;
  text-align: center;
}
.artwork-section .artwork-copy > div {
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .artwork-section .artwork-copy > div {
    padding-right: 0;
  }
}

.service-mb-only {
  display: none;
  background: #000;
  color: #fff;
  border: none;
  outline: none;
  padding: 8px;
}
@media screen and (max-width: 1055px) {
  .service-mb-only {
    display: block;
  }
}

.services-section {
  --w: 16vw;
  --h: 24vh;
  --paper: #f0f0f0;
  --paper-back: #ddd;
}
.services-section a {
  text-decoration: none;
}
.services-section .services-group > div {
  box-sizing: content-box;
  border-left-width: 0;
  border-right-width: 0;
}
.services-section .single-service {
  overflow: hidden;
}
.services-section .single-service > div {
  flex-direction: column;
}
.services-section .single-service .chess-black, .services-section .single-service .chess-white {
  will-change: transform, opacity;
}
.services-section .single-service-title .services-title h2 {
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 35px;
}
.services-section .single-service:hover .g-col-2 {
  filter: brightness(1.05);
}
.services-section .single-service .g-col-2 {
  height: 16.6666666667vw;
  width: 16.6666666667vw;
  transition: transform 0.3s ease;
}
.services-section .single-service .g-col-2 > div {
  justify-content: center;
}
.services-section .single-service .g-col-2.chess-black {
  background-color: #000;
  transition: transform 0.3s ease;
}
.services-section .single-service .g-col-2.chess-black .gallery-item {
  padding: 40px;
}
.services-section .single-service .g-col-2.chess-black picture {
  width: 100% !important;
  height: 100% !important;
}
.services-section .single-service .g-col-2.chess-white > div {
  padding: 15px;
}
.services-section .single-service .g-col-2 h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1;
  transition: transform 0.3s ease;
  text-align: center;
  color: #000;
}
.services-section .single-service .g-col-2 .gallery-item {
  overflow: hidden;
}
.services-section .single-service .g-col-2 .gallery-item.arrow-img {
  max-width: 30px;
  margin-bottom: 15px;
}
.services-section .single-service .g-col-2 .gallery-item.down-arrow-img {
  transform: rotate(180deg);
  margin-bottom: 0;
  margin-top: 15px;
}
.services-section .single-service .g-col-2 .gallery-item picture {
  height: 100%;
}
.services-section .single-service .g-col-2 .gallery-item picture img {
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}
.services-section .single-service .g-col-2 p {
  color: #a0a0a0;
  font-weight: 300;
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.form-section {
  background-color: #fff;
  position: relative;
  z-index: 11;
}
.form-section p {
  max-width: 340px;
}

.contact-form {
  display: flex;
  justify-content: center;
}
.contact-form .message_box {
  width: 75%;
}
.contact-form .submit_btn {
  width: 25%;
}
.contact-form .g-input-box-2 .input-box {
  border-bottom-color: #000 !important;
}
.contact-form .g-label {
  color: #000 !important;
}

.footer-section {
  background-color: #000;
  color: #fff;
  z-index: 100000000;
  position: relative;
}
.footer-section .footer-nav {
  flex-grow: 1;
}
.footer-section .footer-nav .g-content-area {
  align-content: flex-end;
}
.footer-section .footer-links {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.footer-section .footer-links li {
  padding-right: 20px;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-section .footer-links li a {
  color: #474747;
}
@media screen and (max-width: 768px) {
  .footer-section .footer-nav-links {
    flex-direction: column;
  }
}
.footer-section .footer-nav-links li {
  padding-top: 260px;
  padding-bottom: 10px;
  border-left: 1px solid #474747;
  border-bottom: 1px solid #474747;
  border-top: 1px solid #474747;
}
@media screen and (max-width: 768px) {
  .footer-section .footer-nav-links li {
    padding-top: 120px;
  }
}
.footer-section .footer-nav-links li:nth-child(1) {
  border-left: 0px;
}
.footer-section .footer-nav-links li a {
  color: #fff;
  font-size: 24px;
}

.work-section .portfolio-image,
#mbs_image {
  position: fixed;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
  overflow: hidden;
  z-index: 5;
  visibility: hidden;
}

#mbs_image {
  z-index: 100;
}

#mbs_image img,
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1055px) {
  #mbs_image img,
  .portfolio-image img {
    object-position: bottom;
  }
}

.text-group,
.home-nav {
  z-index: 1000000;
}

@media screen and (max-width: 1055px) {
  .text-group h3 {
    position: absolute !important;
    top: 74%;
    right: 0;
    color: #cacaca;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1055px) {
  .text-group h1 {
    position: absolute !important;
    top: 50dvh;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1055px) {
  .text-group .mbs-para p {
    position: absolute !important;
    top: 60%;
    right: 0;
    max-width: 80%;
    padding-right: 15px;
    text-wrap: pretty;
  }
}
@media screen and (max-width: 1055px) {
  .text-group {
    height: 100vh;
    top: 50vh;
    transform: translateY(-50vh) !important;
    width: 100vw;
  }
}

.work-section-para {
  position: relative;
  width: 100% !important;
  height: auto;
  text-align: center;
  font-size: 35px;
  max-width: 750px;
  margin: 0 auto;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .work-section-para {
    font-size: 24px;
    max-width: 90%;
    padding: 20px;
  }
}
.work-section-para p {
  font-weight: 700;
  opacity: 0;
  word-spacing: normal;
  line-height: 1.5;
  -webkit-hyphens: none;
  hyphens: none;
  margin: 0;
}

.para-div-cont {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
  font-weight: 700;
  color: #fff;
  font-family: "Cormorant", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  vertical-align: baseline;
}

.services-section {
  --w: 16vw;
  --h: 24vh;
  --paper: #f0f0f0;
  --paper-back: #ddd;
}
@media screen and (max-width: 1055px) {
  .services-section {
    display: none;
  }
}
.services-section .viewport {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}
.services-section .unfold-container {
  display: flex;
  transform-style: preserve-3d;
  will-change: transform;
  width: initial !important;
}
.services-section .column {
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transform-origin: left center;
}
.services-section .block {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.services-section .block-back {
  position: absolute;
  inset: 0;
  background: var(--paper-back);
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.services-section .hinge-v {
  transform-origin: top center;
}
.services-section .shading {
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0.8;
  z-index: 5;
  pointer-events: none;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000000000000;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#percent {
  font-family: "Inter", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
}

.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1055px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  body {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
  }
  .main-banner-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mbs-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mbs-row {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mbs-image {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mbs-image picture {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mbs-image img {
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block;
  }
}
.scroll-track-sm-mobile {
  height: calc(100vh + 160px);
  --block-w:40vw;
  --block-h:40vw;
  --paper:#fcfcfc;
  display: none;
}
.scroll-track-sm-mobile a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .scroll-track-sm-mobile {
    --block-w:40vw;
    --block-h:40vw;
  }
}
@media screen and (max-width: 1055px) {
  .scroll-track-sm-mobile {
    display: block;
  }
}
@media screen and (max-width: 1055px) {
  .scroll-track-sm-mobile {
    display: block;
  }
  .scroll-track-sm-mobile .viewport_sm {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    flex-direction: column;
  }
  .scroll-track-sm-mobile .unfold-container_sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
  }
  .scroll-track-sm-mobile .row_sm {
    display: flex;
    flex-direction: row;
    transform-style: preserve-3d;
    transform-origin: top center;
  }
  .scroll-track-sm-mobile .block_sm_bl {
    background: #000 !important;
  }
  .scroll-track-sm-mobile .block_sm {
    position: relative;
    width: var(--block-w);
    height: var(--block-h);
    background: var(--paper);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    transform-origin: left center;
  }
  .scroll-track-sm-mobile .hinge-h_sm {
    transform-origin: left center;
  }
  .scroll-track-sm-mobile .hinge-v_sm {
    transform-origin: top center;
  }
  .scroll-track-sm-mobile .block_sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }
  .scroll-track-sm-mobile .text_sm {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .scroll-track-sm-mobile .text_sm h2 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  .scroll-track-sm-mobile .shading_sm {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.9;
    z-index: 5;
    pointer-events: none;
  }
}

.about-banner-section .about-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .about-banner-section .about-desktop {
    display: none;
  }
}
.about-banner-section .about-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-banner-section .about-mobile {
    display: block;
  }
}
.about-banner-section .abs-text-containter {
  max-width: 1400px;
  margin: 0 auto;
  height: 100vh;
  color: #fff;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .about-banner-section .abs-text-containter > div {
    align-content: flex-start;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .about-banner-section .abs-text-containter {
    padding: 0 40px;
  }
}
.about-banner-section .abs-image {
  height: 100%;
  width: 100%;
}
.about-banner-section .abs-image.about-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .about-banner-section .abs-image.about-desktop {
    display: none;
  }
}
.about-banner-section .abs-image.about-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-banner-section .abs-image.about-mobile {
    display: block;
  }
}
.about-banner-section .abs-image picture {
  height: 100%;
}
.about-banner-section .abs-image picture img {
  object-fit: cover;
  height: 100%;
}
.about-banner-section .abs-row > div {
  width: 100%;
}
.about-banner-section .about-title h1 {
  font-size: 10vw;
  margin: 0;
}
.about-banner-section .abs-para {
  max-width: 40vw;
}
@media screen and (max-width: 768px) {
  .about-banner-section .abs-para {
    max-width: 100%;
  }
}
.about-banner-section .abs-para p {
  margin: 0;
  font-family: "Cormorant", serif;
  font-size: 22px;
  line-height: 1.3;
  max-width: 600px;
}

.journey-section .jrn-row {
  gap: 30px;
}
@media screen and (max-width: 1055px) {
  .journey-section .jrn-row {
    flex-direction: column;
  }
  .journey-section .jrn-row > .g-col-4 {
    width: 80%;
  }
}
.journey-section .jrn-main-title h1 {
  font-weight: 300;
}
.journey-section .tl-cont > div {
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
}
.journey-section .tl-cont h2 {
  font-size: 1.8rem;
}
.journey-section h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #5f5f5f;
}
.journey-section p {
  margin-bottom: 0;
}
.journey-section .abs-pos p {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: #5f5f5f;
}
.journey-section .abs-jrn-desc p {
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .education-section .edu-row {
    flex-direction: column;
  }
  .education-section .edu-row .right-container {
    width: 100%;
  }
}
.education-section .edu-main-title h1 {
  font-weight: 300;
}
.education-section .right-container {
  width: 75%;
}
.education-section .right-container > div {
  width: 100%;
}
.education-section .right-container .single-row {
  width: 100%;
  border-top: 1px solid #bbbbbb;
}
.education-section .right-container .single-row:last-child {
  border-bottom: 1px solid #bbbbbb;
}
.education-section .right-container .single-row > div {
  justify-content: space-between;
  padding: 30px;
}
.education-section .right-container .jrn-title,
.education-section .right-container .abs-pos {
  width: 100%;
}
.education-section .right-container h2 {
  margin-bottom: 0;
}
.education-section .right-container p {
  margin: 0;
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
}
.education-section .right-container .abs-pos-bt {
  margin-top: 20px;
}
.education-section .right-container .abs-pos-bt p {
  color: #aaa;
  font-size: 1.2rem;
}

.portfolio-banner-section img {
  height: 100%;
}
@media screen and (max-width: 1055px) {
  .portfolio-banner-section img {
    height: 500px !important;
  }
}
.portfolio-banner-section .abs-text-containter {
  height: 100%;
  position: absolute;
}
.portfolio-banner-section .abs-text-containter > div {
  align-items: center;
  align-content: center;
  padding: 0;
}
.portfolio-banner-section .abs-text-containter .g-button-container {
  position: fixed;
  bottom: 60px;
  left: 60px;
  background-color: #000;
  z-index: 11111;
  padding: 10px;
}
@media screen and (max-width: 1055px) {
  .portfolio-banner-section .abs-text-containter .g-button-container {
    bottom: initial;
    top: 30px;
    left: 20px;
    padding: 0;
    background-color: transparent;
  }
}
.portfolio-banner-section p {
  max-width: 600px;
  font-family: "Cormorant", serif;
  font-size: 1.2rem;
}

@media screen and (max-width: 1055px) {
  .single-folio-page .portfolio-banner-section img {
    height: 250px !important;
  }
}

.portfolio-grid {
  background-color: #eee;
}
.portfolio-grid .portfolio-image img {
  border: 1px solid #eee;
  max-height: 80dvh;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.portfolio-grid .pg-row {
  flex-direction: column;
  gap: 12 0px;
}
.portfolio-grid p,
.portfolio-grid h2 {
  margin: 0;
}
.portfolio-grid .single-containter {
  box-shadow: 6px 6px 10px 5px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  background-color: #fff;
  will-change: transform;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.portfolio-grid .single-containter > div {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1055px) {
  .portfolio-grid .single-containter > div {
    padding: 20px;
  }
}
.portfolio-grid .single-containter .portfolio-sub-title p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #aaa;
}
.portfolio-grid .single-containter .content-containter > div {
  padding-right: 20px;
}
.portfolio-grid .single-containter .portfolio-title {
  margin-top: 15px;
  margin-bottom: 10px;
}
.portfolio-grid .single-containter .portfolio-paragraph {
  margin-bottom: 30px;
}
.portfolio-grid .single-containter .portfolio-paragraph p {
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
  text-wrap: pretty;
}
@media screen and (max-width: 1055px) {
  .portfolio-grid .single-containter .portfolio-paragraph p {
    text-align: left;
  }
}
.portfolio-grid .single-containter .g-button-container {
  background-color: #eee;
}
@media screen and (max-width: 1055px) {
  .portfolio-grid .single-containter .g-button-container {
    margin-bottom: 50px;
  }
}
.portfolio-grid .single-containter .g-button-container a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}

.services-page {
  background-color: #eee;
}
.services-page .single-containter .services-li {
  font-family: "Cormorant", serif;
  list-style-type: disc;
  font-size: 20px;
}
.services-page .single-containter .portfolio-image::after {
  content: "";
  position: absolute;
  background-image: url("../img/portfolio/editorial-img-1.jpg");
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: bottom;
}
.services-page .single-containter:nth-child(1) .portfolio-image::after {
  background-image: url("../img/portfolio/editorial-img-1a.jpg");
}
.services-page .single-containter:nth-child(2) .portfolio-image::after {
  background-image: url("../img/home/packaging_1.jpg");
}
.services-page .single-containter:nth-child(3) .portfolio-image::after {
  background-image: url("../img/home/painting_1.jpg");
}
.services-page .single-containter:nth-child(4) .portfolio-image::after {
  background-image: url("../img/portfolio/portfolio-page-thumnail.jpg");
}
.services-page .single-containter:nth-child(5) .portfolio-image::after {
  background-image: url("../img/portfolio/book-portfolio.jpg");
}
.services-page .single-containter:nth-child(6) .portfolio-image::after {
  background-image: url("../img/portfolio/portfolio-page-thumnail-posters.jpg");
}

.services-grid .sr-row {
  flex-direction: column;
}
@media screen and (max-width: 1055px) {
  .services-grid .sr-row {
    gap: 80px;
  }
}
.services-grid .sr-row .portfolio-image {
  padding: 80px;
  background-color: #000;
}
@media screen and (max-width: 1055px) {
  .services-grid .sr-row .single-containter:nth-child(2) > div, .services-grid .sr-row .single-containter:nth-child(4) > div, .services-grid .sr-row .single-containter:nth-child(6) > div {
    flex-direction: column-reverse;
  }
}
.services-grid .sr-row .single-containter .content-containter {
  background-color: #fff;
  padding: 20px 40px;
  text-align: center;
}
.services-grid .sr-row .single-containter .content-containter > div {
  justify-content: center;
  flex-direction: column;
}
.services-grid .sr-row .single-containter .content-containter .portfolio-title {
  max-width: 450px;
}
.services-grid .sr-row .single-containter .content-containter h2 {
  margin: 0;
  text-align: left;
  font-family: "Cookie", cursive;
  font-size: 50px;
}
.services-grid .sr-row .single-containter .content-containter p {
  font-family: "Cormorant", serif;
  text-align: left;
  max-width: 450px;
  font-size: 20px;
}
.services-grid .sr-row .single-containter .content-containter .g-button-container {
  justify-content: flex-start;
}
.services-grid .sr-row .single-containter .content-containter .g-button-container .g-a-button {
  background-color: #000;
  color: #fff;
}
.services-grid .sr-row .portfolio-image img {
  max-height: 500px;
  object-fit: contain;
}

.contact-page .abs-text-containter > div {
  align-content: center;
}
.contact-page .abs-image picture {
  background: #000;
}
.contact-page .abs-image picture img {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact-page .abs-image img {
    height: 400px !important;
  }
}
.contact-page .portfolio-banner-section .about-title h1 {
  font-size: 6vw;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-page .portfolio-banner-section .about-title h1 {
    font-size: 9vw;
  }
}
.contact-page .portfolio-banner-section .abs-row > div > div {
  justify-content: center;
}
.contact-page .form-section {
  background-color: #000;
  color: #ffffff !important;
}
.contact-page .contact-form .g-input-box-2 .input-box {
  border-bottom-color: #ffffff !important;
  color: #ffffff !important;
}
.contact-page .contact-form button {
  background-color: #fff !important;
  color: #000 !important;
}
.contact-page .g-label {
  color: #ffffff !important;
}

.main-navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000000;
  height: 100px;
}
.main-navigation .nav-row {
  align-items: center;
}
.main-navigation .nav-row ul {
  justify-content: space-between;
}
.main-navigation .nav-row ul a {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

body.menu-open {
  overflow: hidden;
}

header {
  --nav-bg: #0f172a;
  --accent: #3b82f6;
  --text-light: #f8fafc;
  --text-dark: #1e293b;
  --gray-light: #f1f5f9;
  --gray-text: #64748b;
  --bezier-curve: cubic-bezier(0.85, 0, 0.15, 1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 60;
  padding: 1.5rem 2.5rem;
  background: none;
  border-bottom: none;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1055px) {
  .header-container {
    justify-content: flex-end;
  }
}
.header-container a {
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  justify-content: space-around;
}

@media screen and (max-width: 1055px) {
  .desktop-nav {
    display: none;
  }
}
@media screen and (min-width: 769px), print {
  .hamburger {
    display: none !important;
  }
  .nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: inherit;
    text-decoration: none;
  }
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--bezier-curve);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  z-index: 100;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: auto;
}

.hamburger-inner {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: all 0.4s var(--bezier-curve);
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: inherit;
  left: 0;
  transition: all 0.4s var(--bezier-curve);
}

.active .hamburger-inner {
  background: transparent;
}
.active .hamburger-inner::before {
  transform: translateY(6px) rotate(45deg);
  background: var(--text-dark);
}
.active .hamburger-inner::after {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--text-dark);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--nav-bg);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 45px) 45px);
  transition: clip-path 0.8s var(--bezier-curve);
  visibility: hidden;
}
.mobile-overlay.active {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 45px) 45px);
}
.mobile-overlay.active .mobile-link-wrapper a {
  transform: translateY(0) skewY(0);
  opacity: 1;
}

.mobile-nav-content {
  width: 100%;
  padding: 0 3rem;
}

.mobile-link-wrapper {
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}
.mobile-link-wrapper a {
  display: block;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(110%) skewY(7deg);
  transition: transform 0.8s var(--bezier-curve), opacity 0.8s var(--bezier-curve);
  opacity: 0;
}
.mobile-link-wrapper:nth-child(1) a {
  transition-delay: 0.1s;
}
.mobile-link-wrapper:nth-child(2) a {
  transition-delay: 0.15s;
}
.mobile-link-wrapper:nth-child(3) a {
  transition-delay: 0.2s;
}
.mobile-link-wrapper:nth-child(4) a {
  transition-delay: 0.25s;
}
.mobile-link-wrapper:nth-child(5) a {
  transition-delay: 0.3s;
}

.mobile-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

main {
  min-height: 200vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-subtitle {
  color: var(--gray-text);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.single-folio-page .overflow-hidden {
  overflow: hidden;
}
.single-folio-page .portfolio-grid {
  background-color: #fff !important;
}
.single-folio-page .horizontal-wrapper .horizontal-container {
  width: max-content;
  flex-wrap: nowrap;
  align-items: center;
  height: 100vh;
  will-change: transform;
}
.single-folio-page .horizontal-wrapper .horizontal-container .media-card {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-folio-page .horizontal-wrapper .horizontal-container .media-card.active {
  transform: scale(1.05);
  z-index: 10;
}
.single-folio-page .horizontal-wrapper .horizontal-container .media-card video,
.single-folio-page .horizontal-wrapper .horizontal-container .media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.single-folio-page .horizontal-wrapper .horizontal-container .media-card.active video,
.single-folio-page .horizontal-wrapper .horizontal-container .media-card.active img {
  opacity: 1;
}
.single-folio-page .horizontal-wrapper .horizontal-container .media-card video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.single-folio-page .about-banner-section .g-a-button,
.single-folio-page .back-to-folio .g-a-button {
  padding-left: 5px;
  padding-right: 5px;
  color: #fff;
  font-size: 16px;
}
.single-folio-page .about-banner-section .g-a-button i,
.single-folio-page .back-to-folio .g-a-button i {
  transform: rotate(180deg);
  margin-right: 8px;
}
.single-folio-page .single-containter {
  box-shadow: none !important;
  border-radius: 0;
  border-bottom: none;
  height: auto !important;
}
.single-folio-page .single-containter img {
  border: 1px solid #eee;
}
.single-folio-page .main-wrapper {
  background-color: #000;
}
.single-folio-page .main-wrapper h2 {
  color: #fff;
  font-size: 2rem;
}
.single-folio-page .main-wrapper p {
  color: #fff;
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
}
.single-folio-page .video-conta:nth-child(2) {
  padding-left: 15px;
}
.single-folio-page .video-conta:nth-child(1) {
  padding-right: 15px;
}
.single-folio-page .video-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .single-folio-page .video-container > div {
    flex-direction: column;
  }
}
.single-folio-page .content-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .single-folio-page .content-section > div {
    align-content: flex-end;
    align-items: flex-end;
  }
}
@media screen and (min-width: 769px), print {
  .single-folio-page .content-section {
    width: 50%;
    justify-content: center;
    padding: 4rem;
    transform: translateX(-100px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}