@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(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
@media only screen and (max-width: 540px) {
  .about-banner::before {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 26.44%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(177deg, rgba(0, 0, 0, 0) 43.27%, rgba(0, 0, 0, 0.65) 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;
  margin-top: var(--headerheight);
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container {
    padding: 0;
  }
}
.about-banner .video-background .container .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 15%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .about-banner .video-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.about-banner .video-background .container .bg-wrapper .btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  margin: auto;
}
.about-banner .video-background .container .bg-wrapper .btn a {
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper .btn {
    display: flex;
    justify-content: center;
    margin: auto;
    padding-top: 20px;
  }
}
.about-banner .video-background .container .bg-wrapper h1 {
  font-weight: 700;
  line-height: 0.99;
  margin-bottom: 18px;
  max-width: 650px;
  margin: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about-banner .video-background .container .bg-wrapper h1 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .video-background .container .bg-wrapper h1 {
    max-width: 90%;
    text-align: center;
    margin: auto;
    font-size: 25px;
    line-height: 1.2;
  }
}
.about-banner .video-background .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  opacity: 0.8;
}
@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: 80%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
    margin: auto;
    padding-top: 10px;
  }
}

.about-secB {
  padding: 100px 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .about-secB {
    padding: 70px 0px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB {
    padding: 50px 0px;
  }
}
.about-secB .flex-box {
  justify-content: space-evenly;
  gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .about-secB .flex-box {
    gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box {
    flex-direction: column;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box {
    gap: 20px;
  }
}
.about-secB .flex-box .flex-box-item:first-child figure {
  width: 502px;
  height: 355px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box .flex-box-item:first-child figure {
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box .flex-box-item:first-child figure {
    height: 100%;
    width: 100%;
  }
}
.about-secB .flex-box .flex-box-item:first-child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secB .flex-box .flex-box-item:first-child figure .top-left {
  position: absolute;
  top: -4%;
  left: -4%;
  border-left: 7px solid var(--primary);
  border-top: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(-15px, -15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box .flex-box-item:first-child figure .top-left {
    top: 6px;
    left: 7px;
    border-left: 3px solid var(--primary);
    border-top: 3px solid var(--primary);
  }
}
.about-secB .flex-box .flex-box-item:first-child figure .bottom-right {
  position: absolute;
  bottom: -4%;
  right: -4%;
  border-bottom: 7px solid var(--primary);
  border-right: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(15px, 15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box .flex-box-item:first-child figure .bottom-right {
    right: 7px;
    bottom: 10px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
  }
}
.about-secB .flex-box .flex-box-item:last-child {
  max-width: 40%;
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box .flex-box-item:last-child {
    max-width: 100%;
    text-align: center;
  }
}
.about-secB .flex-box .flex-box-item:last-child h2 {
  color: var(--secondary);
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin: 15px 0 20px 0;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box .flex-box-item:last-child h2 {
    font-size: 30px;
    max-width: 100%;
  }
}
.about-secB .flex-box .flex-box-item:last-child p {
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  padding-bottom: 10px;
}

.about-secC {
  overflow: hidden;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: var(--secondary);
}
.about-secC h2 {
  color: white !important;
  font-weight: 800;
  font-size: 36px;
  text-align: center;
}
.about-secC .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .about-secC .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .grid-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
}
.about-secC .grid-box .grid-box-item {
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1607843137);
  height: 229px;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.0509803922);
  border-radius: 5px;
}
@media only screen and (max-width: 1024px) {
  .about-secC .grid-box .grid-box-item {
    padding: 20px;
  }
}
.about-secC .grid-box .grid-box-item figure {
  text-align: center;
  margin-bottom: 10px;
}
.about-secC .grid-box .grid-box-item figure svg path {
  fill: white;
}
.about-secC .grid-box .grid-box-item h3 {
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  margin-bottom: 6px;
  transition: 0.4s ease;
}
.about-secC .grid-box .grid-box-item p {
  font-weight: 400;
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6980392157);
  transition: 0.4s ease;
}
.about-secC .grid-box .grid-box-item a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  margin-top: 15px;
  display: inline-block;
}
.about-secC .grid-box .grid-box-item a svg {
  transition: 0.4s ease;
}
.about-secC .grid-box .grid-box-item a:hover svg {
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .about-secC .grid-box .grid-box-item:last-child {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .grid-box .grid-box-item:last-child {
    grid-column: span 1;
  }
}
.about-secC .grid-box .active {
  background: white;
}
.about-secC .grid-box .active h3 {
  color: var(--secondary);
}
.about-secC .grid-box .active p {
  color: rgba(102, 102, 102, 0.6980392157);
}
.about-secC .grid-box .active figure svg path {
  fill: var(--primary);
}
.about-secC .bottom-btn {
  display: flex;
  justify-content: center;
}
.about-secC .bottom-btn a {
  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}

.about-secD {
  position: relative;
  color: white;
  overflow: hidden;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .about-secD {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .about-secD {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD {
    height: 60vh;
  }
}
.about-secD::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 60.1%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
@media only screen and (max-width: 540px) {
  .about-secD::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 60.1%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  }
}
.about-secD .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-secD .video-background .container {
    padding: 0;
  }
}
.about-secD .video-background .container .top-left {
  position: absolute;
  top: 10%;
  left: 10%;
  border-left: 7px solid white;
  border-top: 7px solid white;
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(-15px, -15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secD .video-background .container .top-left {
    width: 70px;
    height: 40px;
    border-top: 3px solid white;
    border-left: 3px solid white;
  }
}
.about-secD .video-background .container .bottom-right {
  position: absolute;
  bottom: 10%;
  right: 10%;
  border-bottom: 7px solid white;
  border-right: 7px solid white;
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(15px, 15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secD .video-background .container .bottom-right {
    width: 70px;
    height: 40px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
  }
}
.about-secD .video-background .container .bg-wrapper {
  position: absolute;
  width: 100%;
  bottom: 30%;
  z-index: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 991px) {
  .about-secD .video-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD .video-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.about-secD .video-background .container .bg-wrapper h2 {
  font-weight: 800;
  line-height: 0.99;
  max-width: 770px;
  margin: auto;
  font-size: 48px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .about-secD .video-background .container .bg-wrapper h2 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD .video-background .container .bg-wrapper h2 {
    max-width: 100%;
    text-align: center;
    margin: auto;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.about-secD .video-background .container .bg-wrapper p {
  font-weight: 400;
  color: white;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 480px;
  margin: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .about-secD .video-background .container .bg-wrapper p {
    max-width: 90%;
  }
}
.about-secD .video-background .container .play-button button {
  background: var(--white);
}
.about-secD .video-background .container .play-button button::after {
  border-left: calc(var(--btnsize) / 5.6) solid var(--secondary);
}

.about-secE {
  padding: 100px 0;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .about-secE {
    padding: 50px 0;
  }
}
.about-secE .flex-box {
  justify-content: space-evenly;
  gap: 100px;
}
@media only screen and (max-width: 768px) {
  .about-secE .flex-box {
    flex-direction: column;
    gap: 70px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box {
    gap: 0;
  }
}
.about-secE .flex-box .flex-box-item:first-child figure {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-secE .flex-box .flex-box-item:first-child figure {
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box .flex-box-item:first-child figure {
    width: 100%;
    height: 100%;
  }
}
.about-secE .flex-box .flex-box-item:first-child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secE .flex-box .flex-box-item:first-child figure .top-left {
  position: absolute;
  top: -7%;
  left: -7%;
  border-left: 7px solid var(--primary);
  border-top: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(-15px, -15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box .flex-box-item:first-child figure .top-left {
    top: 6px;
    left: 7px;
    border-left: 3px solid var(--primary);
    border-top: 3px solid var(--primary);
  }
}
.about-secE .flex-box .flex-box-item:first-child figure .bottom-right {
  position: absolute;
  bottom: -7%;
  right: -7%;
  border-bottom: 7px solid var(--primary);
  border-right: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(15px, 15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box .flex-box-item:first-child figure .bottom-right {
    right: 7px;
    bottom: 10px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
  }
}
.about-secE .flex-box .flex-box-item:last-child {
  max-width: 45%;
}
@media only screen and (max-width: 768px) {
  .about-secE .flex-box .flex-box-item:last-child {
    max-width: 100%;
    text-align: center;
  }
}
.about-secE .flex-box .flex-box-item:last-child h4 {
  color: var(--text) !important;
  font-size: 16px;
  line-height: 45px;
  font-weight: 700 !important;
}
.about-secE .flex-box .flex-box-item:last-child h2 {
  color: var(--secondary);
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin: 15px 0 15px 0;
  max-width: 75%;
}
@media only screen and (max-width: 768px) {
  .about-secE .flex-box .flex-box-item:last-child h2 {
    font-size: 30px;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box .flex-box-item:last-child h2 {
    max-width: 100%;
  }
}
.about-secE .flex-box .flex-box-item:last-child p {
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  margin-bottom: 8px;
}
@media only screen and (max-width: 540px) {
  .about-secE .flex-box .flex-box-item:last-child p {
    margin-bottom: 10px;
  }
}
.about-secE .flex-box .flex-box-item:last-child .user-info h5 {
  font-size: 15px;
  color: black;
  font-weight: 600;
}
.about-secE .flex-box .flex-box-item:last-child .user-info p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.about-secE .flex-box .flex-box-item:last-child .bottom-btn {
  text-align: center;
  margin: auto;
  padding-top: 30px;
}
.about-secE .flex-box .flex-box-item:last-child .bottom-btn a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary);
  padding: 10px 20px;
  border-radius: 25px;
}
.about-secE .flex-box .flex-box-item:last-child .bottom-btn a span {
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.about-secE .flex-box .flex-box-item:last-child .bottom-btn a svg {
  width: 15px;
  height: 12px;
}
.about-secE .flex-box .flex-box-item:last-child .bottom-btn a svg path {
  fill: white;
}/*# sourceMappingURL=about.css.map */