@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.about-banner {
  margin-top: var(--headerheight);
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .about-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner {
    height: 60vh;
  }
}
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 50.48%, rgba(0, 0, 0, 0.98) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 45.79%, rgba(0, 0, 0, 0.95) 100%);
}
.about-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.about-banner .bg-wrapper {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 530px;
  margin: auto;
}
.about-banner .bg-wrapper h1 {
  font-weight: 300;
  font-size: 48px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .about-banner .bg-wrapper h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .about-banner .bg-wrapper h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .bg-wrapper h1 {
    font-size: 26px;
    margin-bottom: 7px;
    line-height: 1.1;
  }
}
.about-banner .bg-wrapper p {
  font-family: "Nunito";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .about-banner .bg-wrapper p {
    font-size: 14px;
    margin: auto;
    color: rgba(255, 255, 255, 0.8196078431);
  }
}
.about-banner .scroll-btn {
  position: absolute;
  top: 85%;
  left: 49%;
  animation: scroll 1.5s ease-in-out infinite forwards;
}
@media only screen and (max-width: 540px) {
  .about-banner .scroll-btn {
    top: 82%;
  }
}
.about-banner .scroll-btn p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 5%;
  text-align: center;
  text-transform: uppercase;
}

.banner-strip {
  background: #F2F2F2;
  padding: 25px;
}
@media only screen and (max-width: 540px) {
  .banner-strip {
    padding: 15px 10px;
  }
}
.banner-strip .counter-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 991px) {
  .banner-strip .counter-flex {
    align-items: unset;
  }
}
@media only screen and (max-width: 768px) {
  .banner-strip .counter-flex {
    align-items: unset;
    justify-content: center;
    gap: 45px;
  }
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex {
    align-items: unset;
    justify-content: space-around;
    gap: 0;
  }
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item {
    text-align: center;
  }
}
.banner-strip .counter-flex .counter-item h5 {
  font-weight: 500;
  font-size: 20px;
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item h5 {
    margin-bottom: 4px;
  }
}
.banner-strip .counter-flex .counter-item p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .banner-strip .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
  }
}

.about-secA {
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .about-secA {
    padding: 70px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-secA {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-secA {
    padding: 40px 0;
  }
}
.about-secA h2 {
  margin: 0 0 30px 0;
  font-weight: 300;
  font-size: 48px;
  line-height: 45px;
}
.about-secA h2 span:nth-child(1) {
  color: var(--primary);
}
.about-secA h2 span:nth-child(2) {
  color: #666666;
}
.about-secA h2 span:nth-child(3) {
  color: #03052E;
}
@media only screen and (max-width: 1280px) {
  .about-secA h2 {
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secA h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA h2 {
    font-size: 34px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
  }
}
.about-secA .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box {
    flex-direction: column;
    gap: 0px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box {
    flex-direction: column;
    gap: 0px;
  }
}
.about-secA .flex-box .flex-box-item:first-child {
  width: 47%;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:first-child {
    width: 100%;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul {
  border-left: 1px solid var(--black);
  padding-left: 46px;
  margin-left: 20px;
  padding-top: 10px;
}
@media only screen and (max-width: 991px) {
  .about-secA .flex-box .flex-box-item:first-child ul {
    padding-left: 25px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:first-child ul {
    padding-left: 20px;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul li:last-child {
  padding: 0 0 100px 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:first-child ul li:last-child {
    padding: 0 0 50px 0;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul li {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  text-align: justify;
  position: relative;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 991px) {
  .about-secA .flex-box .flex-box-item:first-child ul li {
    font-size: 14px;
    margin: 0 0 17px 0;
    text-align: left;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -54px;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
}
@media only screen and (max-width: 991px) {
  .about-secA .flex-box .flex-box-item:first-child ul li::before {
    left: -34px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:first-child ul li::before {
    left: -28px;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec {
  position: relative;
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure {
  width: 500px;
  height: 415px;
  border-top-left-radius: 50px;
  line-height: 0;
}
@media only screen and (max-width: 1170px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure {
    width: 400px;
    height: 315px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure {
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure {
    width: 100%;
    height: 235px;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure video, .about-secA .flex-box .flex-box-item:last-child .video-sec figure img {
  transform: translate(-10%, 0%);
  border-top-left-radius: 50px;
}
@media only screen and (max-width: 1024px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure video, .about-secA .flex-box .flex-box-item:last-child .video-sec figure img {
    transform: translate(-4%, 5%);
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure video, .about-secA .flex-box .flex-box-item:last-child .video-sec figure img {
    transform: translate(0%, 0%);
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .play-button {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure .play-button {
    left: 50%;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .play-button .play-btn {
  background: var(--white);
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .play-button .play-btn::after {
  border-left: calc(var(--btnsize) / 5.6) solid #1C499B;
}
.about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
  position: absolute;
  background: var(--primary);
  width: 500px;
  height: 415px;
  top: 10%;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1170px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
    width: 400px;
    height: 315px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
    top: 9%;
    left: 15%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
    width: 100%;
    height: 235px;
    top: 7%;
    left: 3%;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 0;
}

.about-secB .bg {
  background-image: url(../../../assets/images/about/vision-mission.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  mix-blend-mode: plus-lighter;
  position: relative;
  position: relative;
}
.about-secB .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.about-secB .bg::before {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
@media only screen and (max-width: 1170px) {
  .about-secB .bg {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .about-secB .bg {
    height: 70vh;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg {
    height: 60vh;
  }
}
.about-secB .bg figcaption {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .about-secB .bg figcaption {
    left: 50%;
  }
}
.about-secB .bg .container {
  height: 100%;
  position: relative;
  max-width: 1180px;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container {
    height: 60vh;
  }
}
.about-secB .bg .container .tab-section {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
}
@media only screen and (max-width: 1024px) {
  .about-secB .bg .container .tab-section {
    left: 5%;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section {
    width: 100%;
    max-width: 90%;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.about-secB .bg .container .tab-section .tab-nav {
  display: flex;
  justify-content: start;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .about-secB .bg .container .tab-section .tab-nav {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav {
    justify-content: center;
  }
}
.about-secB .bg .container .tab-section .tab-nav li {
  position: relative;
}
.about-secB .bg .container .tab-section .tab-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #5393C5;
}
.about-secB .bg .container .tab-section .tab-nav li a {
  color: var(--white);
  font-weight: 600;
  font-size: 36px;
}
@media only screen and (max-width: 991px) {
  .about-secB .bg .container .tab-section .tab-nav li a {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav li a {
    font-size: 28px;
  }
}
.about-secB .bg .container .tab-section .tab-nav li.active {
  position: relative;
}
.about-secB .bg .container .tab-section .tab-nav li.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: 0.5s ease;
}
.about-secB .bg .container .tab-section .tab-nav li.active a {
  color: var(--primary);
}
.about-secB .bg .container .tab-section .tab-nav-content {
  padding: 50px 0;
}
@media only screen and (max-width: 1170px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 30px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 20px 0 0;
    max-width: 440px;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 20px 0 0;
    max-width: 100%;
    margin: auto;
  }
}
.about-secB .bg .container .tab-section .tab-nav-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  opacity: 0;
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav-content p {
    font-size: 16px;
    text-align: center;
  }
}
.about-secB .bg .container .tab-section .tab-nav-content .active p {
  opacity: 1;
}

.about-secC {
  height: 80vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
  position: relative;
  background-image: url("../../../assets/images/about/core-value/1.jpg");
}
@media only screen and (max-width: 540px) {
  .about-secC {
    height: 100vh;
  }
}
.about-secC:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.about-secC .heading {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .about-secC .heading {
    display: none;
  }
}
.about-secC .heading h2 {
  font-weight: 300;
  font-size: 48px;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .about-secC .heading h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secC .heading h2 {
    font-size: 32px;
  }
}
.about-secC .property-column {
  flex: 1 1 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out;
  padding: 20px;
  overflow: hidden;
}
.about-secC .property-column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.about-secC .property-column:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.29);
  border-right: 1px solid rgba(255, 255, 255, 0.29);
}
@media only screen and (max-width: 540px) {
  .about-secC .property-column:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.29);
  }
}
@media only screen and (max-width: 768px) {
  .about-secC .property-column {
    flex: 1 1 50%;
    min-height: 250px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .property-column {
    flex: 1 1 100%;
    min-height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.29);
  }
}
.about-secC .property-column h3 {
  transform: translateY(65%);
  margin-bottom: 10px;
  z-index: 2;
  transition: transform 0.6s ease, left 0.6s ease;
  font-weight: 300;
  font-size: 24px;
  text-align: center;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column h3 {
    font-size: 22px;
  }
}
.about-secC .property-column p {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column p {
    line-height: 1.3;
  }
}
.about-secC .property-column .property-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  z-index: 2;
  color: white;
  max-width: 400px;
}
.about-secC .property-column img, .about-secC .property-column svg {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  z-index: 2;
}
.about-secC .property-column:hover::before {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.about-secC .property-column:hover .property-content {
  opacity: 1;
  transform: translateY(0);
  max-width: 400px;
}
.about-secC .property-column:hover img, .about-secC .property-column:hover svg {
  opacity: 1;
  transform: translateY(-20px);
  transition: opacity 1.5s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:hover img, .about-secC .property-column:hover svg {
    transform: translateY(-10px);
    width: 50px;
  }
}
.about-secC .property-column:hover h3 {
  transform: translateY(0%) !important;
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:hover h3 {
    transform: translateY(50px);
  }
}

.about-secD {
  background: #f5f5f5;
  padding: 80px 0;
}
@media only screen and (max-width: 1280px) {
  .about-secD {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-secD {
    padding: 40px 0;
  }
}
.about-secD .director-message {
  align-items: center;
  justify-content: center;
  gap: 100px;
}
@media only screen and (max-width: 1280px) {
  .about-secD .director-message {
    gap: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secD .director-message {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secD .director-message {
    flex-direction: column;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD .director-message {
    gap: 20px;
  }
}
.about-secD .director-message .colA, .about-secD .director-message .colB {
  width: 100%;
}
.about-secD .director-message .colA {
  flex: 0 1 30%;
}
@media only screen and (max-width: 991px) {
  .about-secD .director-message .colA {
    flex: 0 1 40%;
  }
}
.about-secD .director-message .colA figure {
  width: 100%;
  line-height: 0;
}
.about-secD .director-message .colB {
  flex: 1;
  max-width: 50%;
  padding: 20px 10px;
}
@media only screen and (max-width: 991px) {
  .about-secD .director-message .colB {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secD .director-message .colB {
    max-width: 100%;
    padding: 0;
  }
}
.about-secD .director-message .colB figcaption h3 {
  font-size: 36px;
  line-height: 1.5;
  color: var(--primary);
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .about-secD .director-message .colB figcaption h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secD .director-message .colB figcaption h3 {
    font-size: 28px;
  }
}
.about-secD .director-message .colB figcaption .desc p {
  color: var(--text);
}
.about-secD .director-message .colB figcaption .desc p:not(:last-child) {
  margin-bottom: 10px;
}
.about-secD .director-message .colB figcaption .desgn {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .about-secD .director-message .colB figcaption .desgn {
    margin-top: 20px;
  }
}
.about-secD .director-message .colB figcaption .desgn h6 {
  font-size: 24px;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .about-secD .director-message .colB figcaption .desgn h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD .director-message .colB figcaption .desgn h6 {
    font-size: 20px;
  }
}
.about-secD .director-message .colB figcaption .desgn p {
  color: var(--text);
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  .about-secD .director-message .colB figcaption .desgn p {
    font-size: 14px;
  }
}
.about-secD .director-message .colB figcaption .desgn img {
  width: 150px;
  margin-top: 10px;
}/*# sourceMappingURL=about.css.map */