@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.about-banner {
  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: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .about-banner {
    height: 50vh;
  }
}
@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) 0%, rgba(0, 0, 0, 0.36) 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;
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container {
    padding: 0;
  }
}
.about-banner .video-background .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper {
    width: 100%;
  }
}
.about-banner .video-background .container .bg-wrapper span {
  display: block;
  text-align: center;
}
.about-banner .video-background .container .bg-wrapper h1 {
  line-height: 1.1;
  text-align: center;
  margin-bottom: 18px;
  max-width: 660px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper h1 {
    font-size: 26px;
  }
}
.about-banner .video-background .container .bg-wrapper h2 {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-banner .video-background .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .about-banner .video-background .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
    display: none;
  }
}

.about-secA {
  background: var(--primary);
  padding: 100px 0;
}
@media only screen and (max-width: 540px) {
  .about-secA {
    padding: 60px 0;
  }
}
.about-secA .content {
  max-width: 70%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .about-secA .content {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .content {
    max-width: 100%;
  }
}
.about-secA .content p {
  color: var(--white);
}
@media only screen and (max-width: 1024px) {
  .about-secA .content p {
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .content p {
    font-size: 14px;
    font-weight: normal;
  }
}
.about-secA .content .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 50px 0 0 0;
  max-width: 80%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .about-secA .content .grid-box {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .content .grid-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
.about-secA .content .grid-box .grid-box-item:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.2901960784);
}
@media only screen and (max-width: 540px) {
  .about-secA .content .grid-box .grid-box-item:nth-child(1) {
    border: none;
  }
}
.about-secA .content .grid-box .grid-box-item:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.2901960784);
}
@media only screen and (max-width: 540px) {
  .about-secA .content .grid-box .grid-box-item:nth-child(2) {
    border: none;
  }
}
.about-secA .content .grid-box .grid-box-item {
  text-align: center;
  padding: 0 25px;
}
.about-secA .content .grid-box .grid-box-item img {
  margin-bottom: 6px;
}
.about-secA .content .grid-box .grid-box-item h4 {
  font-size: 450;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}
.about-secA .content .grid-box .grid-box-item p {
  font-size: 14px;
}

.about-secB {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .about-secB {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .about-secB {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB {
    height: 70vh;
  }
}
.about-secB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.73) 100%);
}
@media only screen and (max-width: 768px) {
  .about-secB::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  }
}
.about-secB .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .about-secB .video-background .container {
    padding: 0;
  }
}
.about-secB .video-background .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 32%;
}
@media only screen and (max-width: 991px) {
  .about-secB .video-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .video-background .container .bg-wrapper {
    left: 50%;
    transform: translate(-50%);
    max-width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .video-background .container .bg-wrapper {
    max-width: 90%;
  }
}
.about-secB .video-background .container .bg-wrapper .play-button {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .about-secB .video-background .container .bg-wrapper .play-button {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}
.about-secB .video-background .container .bg-wrapper .play-button p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.about-secB .video-background .container .bg-wrapper h1 {
  line-height: 1.1;
  text-align: left;
  margin-bottom: 18px;
  max-width: 660px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .about-secB .video-background .container .bg-wrapper h1 {
    text-align: center;
  }
}
.about-secB .video-background .container .bg-wrapper h2 {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about-secB .video-background .container .bg-wrapper h2 {
    text-align: center;
  }
}
.about-secB .video-background .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 50%;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .about-secB .video-background .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .video-background .container .bg-wrapper p {
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .video-background .container .bg-wrapper p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
  }
}

.about-secC .heading {
  max-width: 60%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .about-secC .heading {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .about-secC .heading {
    max-width: 100%;
  }
}
.about-secC .flex-box {
  padding: 50px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 45px;
}
@media only screen and (max-width: 1024px) {
  .about-secC .flex-box {
    gap: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secC .flex-box {
    flex-direction: column-reverse;
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
.about-secC .flex-box .flex-box-item:first-child img {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secC .flex-box .flex-box-item:last-child {
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .about-secC .flex-box .flex-box-item:last-child {
    width: 100%;
    text-align: center;
  }
}
.about-secC .flex-box .flex-box-item:last-child p {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about-secC .flex-box .flex-box-item p {
    text-align: justify;
  }
}/*# sourceMappingURL=about.css.map */