/* @import url('../fonts/Nunito/nunito.css'); */

:root {
  font-size: 16px;
  --primary-color: #27395F;
  --secondary-color: #666666;
  --blue-color: #3884FD;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;  
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--secondary-color);
  font-family: 'Nunito Sans', sans-serif;  
}

a, li, button {
  all: unset;
}
a {
  cursor: pointer;
}

h1,h2,h3, a {
  color: var(--primary-color);
  font-family: 'Nunito Sans';
  font-weight: 800;
}
.menu-btn {
  display: none;
}

.navs {
  display: flex;
}
.navlists li a{    
  font-weight: 700;  
}

.arrow {
  background-size: contain;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.custom-detail[open] .arrow{  
  background-image: url('../imgs/plus.svg');  
}
.custom-detail .arrow{
  background-image: url('../imgs/minus.svg');  
}
.custom-detail[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}
.hero-bg {
  position: relative;
}
.hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: linear-gradient(180deg, rgba(233,235,239, 0.70) 0%, rgba(233,235,239, 0)  100%);
  z-index: -1;
}
input[name="tab"]:checked + label{  
  background: linear-gradient(180deg, #619EFF 0%, #3884FD 100%);
  box-shadow: 0px 8px 50px rgba(182, 222, 255, 0.5);
  color: white;
}

.menu a {
  position: relative;
  padding: 8px 16px;
}

.menu a::before,
.menu a::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
.menu1 a {
  display: inline-block;
}
.menu1 a::before,
.menu1 a::after {
  border: 0px solid transparent;
  width: 0%;
  height: 0%;
  bottom: 0%;
  right: 0%;
}

/* 'before' sudo element animates the bottom and left borders */
.menu1 a::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

/* 'after' sudo element animates the top and right borders */
.menu1 a::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.menu1 a:hover {
  color: var(--blue-color);
}

.menu1 a:hover::before,
.menu1 a:hover::after {
  /* border-color: var(--blue-color);
  transition: border-color 0s, width 0.3s, height 0.3s;
  width: 100%;
  height: 100%; */
}
.current-menu-item a{
  border: 2px solid var(--blue-color);
  pointer-events: none;
  color: var(--blue-color);
  padding: 6px 16px !important;  
}
/* Delay is added to the height animation of the 'before' sudo element */
.menu1 a:hover::before {
  transition-delay: 0s, 0s, 0.3s;
}

/* Delay is added to the width animation of the 'after' sudo element */
.menu1 a:hover::after {
  transition-delay: 0s, 0.3s, 0s;
}
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
.lower-bar {
  position: relative;
}
.lower-bar::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-image: url('../imgs/lower_bar_bg.svg');  
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
}
.footer-nav a {
  transition: all 0.3s ease-in-out;
  border: none;
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--secondary-color);
}
.footer-nav a:hover {
  color: var(--primary-color);
}
.blog-overlay {
  position: relative;
}
.blog-overlay::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2D2D2D 100%);  
}
.blog .slider__bullets.glide__bullets {  
  position: absolute;
  bottom: 1rem;
  left: 2rem;
}
.blog .slider__bullet.glide__bullet {
  background-color: white;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  border-radius: 0.5rem;
  margin: 0 0.5em;  
  opacity: 0.7;
  cursor: pointer;
}
.blog .slider__bullet.glide__bullet.glide__bullet--active {
  width: 3rem;  
  opacity: 1;
}
.blog-read img{
  width: 100%;
  height: auto;
}
.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: 3px;
  overflow-wrap: all;  
  word-break: break-word; 
}
.mission-desc-container {
  position: absolute;
  top: 30%;
  right: 6rem;
}
.career-list ul li{
  position: relative;  
  display: block;
  margin-top: 16px;
}
.career-list ul{  
  padding-left: 24px;
}
.career-list ul li::before{
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  background-color: #0B1A33;
  left: -24px;
  top: 12px;  
  border-radius: 50%;
}
.play-badge {
  width: 166px;
}
.single-page {
  min-height:90vh;
}
.line-height p {
  line-height: 1.7em;
}
.sticky-sub {
  position: fixed;
  top: 70px;
  z-index: 1;
  overflow-y: auto;
  transform: translateY(-200%);
  transition: all ease-in-out .8s;
}
.head-stick .sticky-sub {
  top: 112px;  
}
.sticky-sub__active {
  transform: translateY(0);
  transition: all ease-in-out .8s;
}
.tek-title {
  background-color: #B6DEFF;
  color: #1974E0;
}
.tek-title__active {
  background-color: #1974E0;
  color: white;
}
.off-image {
  position: relative;
  bottom: -152px
}
.tek-bot-container {
  margin-top: -200px;
}
.tek-bot {
  height: 544px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;  
  padding: 3rem;
  display: flex;
  align-items: flex-end;
  
}
.tek-bot h3{
  color: white;
  max-width: 740px;
  font-size: 3rem;
  line-height: 3.5rem;
}
.tek-imgs {
  border-radius: 8px;
  box-shadow:  0 8px 8px 0 rgba(0, 0, 0, 0.16);
}
.tek-imgs-container {
  padding: 8px;  
}
body #hubspot-messages-iframe-container {
	display: none !important;
}
.fci {
  max-width: 100%;
  max-height: 100%;
}
.home-glider .glide__bullet{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--blue-color);
  cursor: pointer;
}
.glide__bullets {
  background-color: #e9ebef7e;
  padding: 6px 20px;
  border-radius: 16px;
  display: flex;
  gap: 0.3rem;
}
.home-glider .glide__bullet.glide__bullet--active{
  background-color: var(--blue-color);
}
.cl {
  background-color: black;
  display: flex;
  border-radius: 8px;
  width: 166px;
  height: 47px;
  color: white;
  border: 1px solid gray;
}
.cl-u {
  font-weight: 400;
  font-size: 10px;
  margin-top: 7px;
  letter-spacing: 1px;
  display: flex;
}
.cl-d {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  display: flex;
  line-height: 18px;
}
.cb {
  display: flex;
  flex-wrap: wrap;
  max-width: 353px;
  gap: 8px;
  justify-content: center;
}
.banner {
  background-image: radial-gradient(at 0% 0%, #77CAFF 0%, #207FFF 100%);
  /* background-image: url('../imgs/bg-store.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  box-shadow: 0 16px 24px 0 rgba(32, 127, 255, 0.24);
  overflow: hidden;
  bottom: -100px;
}
.banner-tag {
  background-color: #FF6B07;
  height: 88px;
  width: 88px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.bttext {
  position: absolute;
  transform: rotate(-45deg) translate(-21%,48%);
}
.banner-btn {
  background-color: #FFFFFF20;
  border-radius: 100%;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.banner-btn:hover {
  transform: scale(1.1) translateY(-50%);
}
.gradient-1 {
  background-image: radial-gradient(79.63% 76%, #DDF1FF 0%, #AADCFF 100%);
  box-shadow: 0 8px 24px 0 rgba(32, 127, 255, 0.24);
}
.gradient-2 {
  background-image: radial-gradient(at left, #6CBBFF 0%, #207FFF 100%);
  /* background-image: url("../imgs/bg-help.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 16px 24px 0 rgba(32, 127, 255, 0.24);
}
.gradient-3 {
  background-image: radial-gradient(at left, #77CAFF 0%, #207FFF 100%);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 16px 24px 0 rgba(32, 127, 255, 0.24);
}
.ecc-desc__p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 1.2; /* Adjust line-height as needed */
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.2; /* Adjust line-height as needed */
  text-overflow: ellipsis;
}
.ecc-desc {
  display: grid;
  grid-template-rows: 1fr;
  transition: all 0.3s ease-in-out;
}
.ecc-desc > div {
  overflow: hidden;
}
.ecc:hover .ecc-desc {
  grid-template-rows: 1fr;
  transition: all 0.3s ease-in-out;
}
.ecc:hover {
  background-image: radial-gradient(37.85% 90.88%, #E6F6FF 0%, #FFFFFF 100%);
  transition: all ease-in-out 0.3s;
}

.reverse :nth-child(even of .flex-reverse) {
  flex-direction: row-reverse;
}

.card-help {
  padding: 1.5rem;
 
}
.card-help:nth-child(2) {
  position: relative;

}
.card-help:nth-child(2)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust the height of the fading effect as needed */
  background: linear-gradient(rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none; 
  border-radius: 8px;
}
.bg-tek {
  background-image: url("../imgs/bg-blog-tek.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.glide__bullets.tekno-bullets {
  background-color: transparent;
}
.glide__bullets.tekno-bullets .glide__bullet{
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  background-color: #E9EBEF;
  padding: 0 21px;
}
.glide__bullets.tekno-bullets .glide__bullet:hover, .glide__bullets.tekno-bullets .glide__bullet--active{
  color: #1974E0;
  border: 1px solid #1974E0;
  background-color: white;
}
.glide__bullets.tekno-bullets {
  justify-content: center;
  gap: 1rem;
}
.glide__arrows.tekno-arrows .glide__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.glide__arrows.tekno-arrows .glide__arrow.glide__arrow--left{
  left: 8px;
}
.glide__arrows.tekno-arrows .glide__arrow.glide__arrow--right{
  right: 8px;
}
.bdf {
  filter: drop-shadow(-6px 5px 5px #00000050);
}
.mktshw {
  position: absolute;
  left: 50%;
  z-index: -1;
  bottom: -10px;
  transform: translateX(-50%);
}
.mktlght {
  left: 0;
  width: 50%;
  top: 0;
}
.banner-tshdw {
  text-shadow: 2px 4px rgba(25, 116, 224, 0.32);
}
@keyframes sweep {
  0%    {opacity: 0; margin-left: -10px}
  100%  {opacity: 1; margin-left: 0px}
}
.row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(12, 1fr);  
  gap: 1.5rem;
}
.col-xl-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
.col-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
.col-3 {
  -ms-grid-column: span 3;
      grid-column: span 3;
}
.col-6 {
  -ms-grid-column: span 6;
      grid-column: span 6;
}
.col-8 {
  -ms-grid-column: span 8;
      grid-column: span 8;
}
.col-md-6 {
  -ms-grid-column: span 6;
      grid-column: span 6;
}
.col-md-7 {
  -ms-grid-column: span 7;
      grid-column: span 7;
}
.col-md-5 {
  -ms-grid-column: span 5;
      grid-column: span 5;
}
.col-md-8 {
  -ms-grid-column: span 8;
      grid-column: span 8;
}
.col-md-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
.col-md-2 {
  -ms-grid-column: span 2;
      grid-column: span 2;
}
.col-md-3 {
  -ms-grid-column: span 3;
      grid-column: span 3;
}
.col-sm-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
@media only screen and (max-width: 992px) { 
  :root {
    font-size: 14px;
  }   
  .col-xl-4 {
    -ms-grid-column: span 6;
        grid-column: span 6;  
  }
  .col-md-6,.col-md-7,.col-md-4, .col-md-2, .col-md-3, .col-md-8, .col-md-5 {
    -ms-grid-column: span 12;
        grid-column: span 12;
  }  
  .x-col-md-6 {
    -ms-grid-column: span 6;
    grid-column: span 6;
  }
  .col-md-6.half {
    -ms-grid-column: span 6;
        grid-column: span 6;        
  }
  .menu-btn {
    display: flex;
  }
  .navs ul{
    display: flex;
    flex-direction: column;
  }
  .nav-container, .nav-container .navs {
    position: fixed;
    top: 0;
    right: 0;
  }
  .nav-container .navs{
    max-width: 250px;
    width: 100%;
    background-color: var(--primary-color);    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    border-top-left-radius: 28px;
    box-shadow: 0px 8px 50px rgba(182, 222, 255, 0.5);
    z-index: 2;
    transform: translateX(250px);
    transition: all 0.3s ease-in-out;
  }
  .nav-container .navs a {
    color: white;
    margin: 8px 0;
  }
  .nav-overlay {
    width: 100%;
    min-height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;    
    visibility: hidden;    
    opacity: 0;
    content: '';    
    backdrop-filter: blur(3px);
  }
  .nav-container.nav-open .navs{
    transform: translateX(0);
  }
  .nav-container.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .sticky-sub, .sticky-sub-2 {
    height: 50vh;
  }
  .off-image {
    position: initial;    
  }
  .cb {
    justify-content: center;
    margin-inline: auto;
  }
  .flex-reverse {
    flex-direction: column;
  }
  .flex-reverse:nth-child(even) {
    flex-direction: column;
  }
  .flex-reverse > div {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) { 
  :root {
    font-size: 13px;
  }     
  .col-sm-4,.col-xl-4 {
    -ms-grid-column: span 12;
        grid-column: span 12;
  }  
  .mission-img {
    width: 100%;
    height: auto;
  }
  .mission-desc-container {
    right: 50%;
    transform: translateX(50%);
    width: 100%;    
  }
}
@media only screen and (max-width: 586px) {     
  .mission-desc-container {
    position: unset;
    transform: translateX(0);
    margin: 1rem auto;
  }
  .play-badge {
    width: 130px;
  }
  .cl {
    width: 130px;
    height: 37px;
  }
  .cl-u {
    margin-top: 7px;
    font-size: 7px;
    
  }
  .cl-d {
    letter-spacing: 0;
    font-size: 14px;
  }
  .single-page {
    min-height: 0;
  }
  .fci {
    max-width: initial;
    max-height: initial;
    width: 79%;
    height: auto; 
  }
  .col-sm-12 {
    -ms-grid-column: span 12;
    grid-column: span 12;
  }
}