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

.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%;
}

.nav-box {
  height: 150px;
  position: relative;
}
.nav-box .g-image-front {
  padding-top: 40px;
  padding-bottom: 40px;
}
.nav-box .g-image-front img {
  height: 90px;
}
@media screen and (max-width: 768px) {
  .nav-box .g-image-front img {
    height: 60px;
  }
}
.nav-box::after {
  content: "";
  position: absolute;
  bottom: -70%;
  height: 60%;
  width: 1px;
  background-color: #005aab;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .nav-box::after {
    bottom: -10%;
    height: 30%;
  }
}

.main-box {
  height: calc(100vh - 150px);
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .main-box {
    height: auto !important;
  }
}
.main-box .gap-60 {
  gap: 60px;
}
.main-box .gap-right-30 {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .main-box .gap-right-30 {
    padding-left: 30px;
  }
}
.main-box .gap-left-30 {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .main-box .gap-left-30 {
    margin-top: 60px;
    padding-right: 30px;
  }
}
.main-box h1 {
  color: #005aab;
}
@media screen and (max-width: 768px) {
  .main-box h1 {
    font-size: 24px;
  }
}

.main-box-video video {
  box-shadow: 0 0 13px 7px rgba(0, 0, 0, 0.15);
}
.main-box-video .g-col-2 > div {
  position: relative;
}
.main-box-video .g-col-2 > div::before {
  content: "";
  position: absolute;
  height: 50%;
  width: calc(100% + 30px - 30px);
  background-color: #005aab;
  left: -16px;
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  .main-box-video .g-col-2 > div::before {
    width: calc(100% + 30px - 60px);
    left: 15px;
  }
}
.main-box-video .g-col-2.engVideo > div::before {
  left: 14px;
}
@media screen and (max-width: 768px) {
  .main-box-video .g-col-2.engVideo > div::before {
    left: 15px;
  }
}
.main-box-video .g-section-title {
  display: flex;
  justify-content: center;
}
.main-box-video .g-section-title h3 {
  width: max-content;
  position: relative;
  color: #ffffff;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .main-box-video .g-section-title h3 {
    font-size: 16px;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
.main-box-video .g-section-title h3::before {
  content: "";
  position: absolute;
  right: -25px;
  width: 20px;
  top: 16px;
  background: #ffffff;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .main-box-video .g-section-title h3::before {
    top: 10px;
  }
}
.main-box-video .g-section-title h3::after {
  content: "";
  position: absolute;
  left: -25px;
  width: 20px;
  top: 16px;
  background: #ffffff;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .main-box-video .g-section-title h3::after {
    top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .pdf-box > div {
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .pdf-box {
    margin-top: 80px;
  }
}
.pdf-box canvas {
  max-width: calc(100% - 80px);
  margin: 0 auto;
  max-height: 100vh;
}
@media screen and (max-width: 768px) {
  .pdf-box canvas {
    max-width: calc(100% - 100px);
  }
}
.pdf-box h2,
.pdf-box p {
  margin: 0 !important;
}
.pdf-box h2 {
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .pdf-box h2 {
    font-size: 24px;
    margin-top: 60px !important;
  }
}
.pdf-box p {
  font-size: 20px;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
}
@media screen and (max-width: 768px) {
  .pdf-box p {
    font-size: 16px;
    margin-bottom: 20px !important;
  }
}
.pdf-box .canvasCont {
  background-color: grey;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.pdf-box .buttonCont .g-input-box,
.pdf-box .buttonCont .g-input-box > div,
.pdf-box .buttonCont button {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .pdf-box .buttonCont .g-input-box {
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .pdf-box .buttonCont button {
    width: 40px;
    min-width: auto;
  }
}
.pdf-box .counterBox {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 6px 20px;
  border-radius: 5px;
  font-size: 14px;
}

.pdf-box-bg {
  background: grey;
  max-width: 600px;
  margin: 0 auto;
}
.pdf-box-bg > div {
  padding: 20px;
  cursor: pointer;
  position: relative;
}
.pdf-box-bg > div:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
}