@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
main {
  overflow-x: hidden;
}

.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary);
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 80vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 0;
  right: 0;
  background-image: url(/assets/icon/dots.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  z-index: 1;
}
.home-banner .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-banner .grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media only screen and (max-width: 675px) {
  .home-banner .grid {
    margin-top: 0;
  }
}
.home-banner .grid .video video, .home-banner .grid .video img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .grid .content {
  padding-right: 10rem;
}
@media only screen and (max-width: 675px) {
  .home-banner .grid .content {
    padding-right: 0;
  }
}
.home-banner .grid .content h4 {
  color: var(--white);
}
.home-banner .grid .content p {
  margin: 18px 0 45px;
  color: var(--litewhite);
}
@media only screen and (max-width: 991px) {
  .home-banner .grid .content p {
    margin: 7px 0 24px;
  }
}
.home-banner .grid .content .btn-underline {
  opacity: 0.7;
}

.home-secA {
  background: var(--gray);
}
@media only screen and (max-width: 675px) {
  .home-secA {
    padding: 20px 0;
  }
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 991px) {
  .home-secA .grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.home-secA .grid .item {
  padding: 30px 0;
  margin: 30px 0;
}
@media only screen and (max-width: 675px) {
  .home-secA .grid .item {
    padding: 0;
    margin: 0;
  }
}
.home-secA .grid .item:not(:first-child) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 40px;
  gap: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .item:not(:first-child) {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA .grid .item:not(:first-child) {
    border: none;
    padding: 0;
    gap: 4px;
  }
}
.home-secA .grid .item:not(:first-child) p {
  width: 80%;
  margin-right: auto;
}
.home-secA .grid .item .icon {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.home-secA .grid .item .icon h6 {
  color: var(--primary);
}
.home-secA .grid .item p {
  font-size: 14px;
  margin: 10px 0 15px;
}

.home-secB {
  padding: 60px 0 70px;
}
@media only screen and (max-width: 675px) {
  .home-secB {
    padding: 20px 0 60px;
  }
}
.home-secB .heading {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading {
    padding: 30px 0 20px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secB .heading {
    grid-template-columns: 1fr;
    padding: 16px 0 14px;
    gap: 14px;
  }
}
.home-secB .heading h3 {
  color: var(--primary);
}
@media only screen and (max-width: 675px) {
  .home-secB .heading h3 {
    text-align: center;
  }
}
.home-secB .heading p {
  color: var(--text);
  width: 80%;
}
@media only screen and (max-width: 675px) {
  .home-secB .heading p {
    width: 100%;
    text-align: center;
  }
}
.home-secB .btn-center {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .home-secB .btn-center {
    margin-top: 8px;
  }
}
.home-secB .card {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 30px 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .card {
    grid-template-columns: 1fr;
    padding: 45px 0;
  }
}
@media only screen and (max-width: 675px) {
  .home-secB .card {
    text-align: center;
    padding: 30px 0;
  }
}
.home-secB .card .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.home-secB .card .heading {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .home-secB .card .heading {
    justify-content: flex-start;
  }
}
.home-secB .card .heading h6 {
  color: var(--primary);
  width: 100%;
  max-width: 300px;
}
.home-secB .card .para p {
  margin-bottom: 20px;
}

.home-secC {
  background: var(--primary);
  position: relative;
}
.home-secC::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 0;
  left: 0;
  background-image: url(/assets/icon/dots.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  z-index: 1;
}
.home-secC .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secC .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.home-secC .grid .content {
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  .home-secC .grid .content {
    order: 2;
    text-align: center;
  }
}
.home-secC .grid .content h4 {
  color: var(--white);
}
.home-secC .grid .content p {
  color: var(--litewhite);
  margin: 8px 0 24px;
}
.home-secC .grid .mask-img {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secC .grid .mask-img {
    order: 1;
  }
}
.home-secC .grid .mask-img img {
  display: block;
  width: 100%;
}
.home-secC .grid .mask-img .maskImg {
  position: absolute;
  left: 46%;
  top: 44%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .home-secC .grid .mask-img .maskImg {
    left: 47%;
    top: 45%;
    width: 42%;
  }
}
.home-secC .grid .mask-img .maskImg img {
  display: block;
}

.home-secD {
  padding: 70px 0;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secD {
    padding: 40px 0;
  }
}
.home-secD .heading {
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.home-secD .heading h3 {
  color: var(--primary);
}
.home-secD .row {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .home-secD .row {
    margin-top: 50px;
  }
}
.home-secD .row .logo-right .swiper-wrapper, .home-secD .row .logo-left .swiper-wrapper {
  transition-timing-function: linear;
}
.home-secD .row .logo-left {
  margin-top: 40px;
}

.home-secE {
  background: var(--primary);
}
.home-secE .grid {
  display: grid;
  grid-template-columns: 1fr 550px;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secE .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.home-secE .grid .content:not(.names > p) {
  padding: 60px 8rem 40px 40px;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secE .grid .content:not(.names > p) {
    order: 2;
    text-align: center;
  }
}
@media only screen and (max-width: 675px) {
  .home-secE .grid .content:not(.names > p) {
    padding: 65px 14px 30px 14px;
  }
}
.home-secE .grid .content:not(.names > p) h4 {
  color: var(--white);
}
.home-secE .grid .content:not(.names > p) p {
  color: var(--litewhite);
  margin: 18px 0 24px;
}
@media only screen and (max-width: 991px) {
  .home-secE .grid .content:not(.names > p) p {
    margin: 18px 0 36px;
  }
}
.home-secE .grid .content:not(.names > p) .play-btn {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 675px) {
  .home-secE .grid .content:not(.names > p) .play-btn {
    top: 0;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
.home-secE .grid .content:not(.names > p) .qoutes {
  position: absolute;
  right: 0;
  bottom: 0;
}
.home-secE .grid .content:not(.names > p) .qoutes img {
  display: block;
}
.home-secE .grid .content:not(.names > p) .names {
  border-left: 3px solid var(--secondary);
  padding-left: 2rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 991px) {
  .home-secE .grid .content:not(.names > p) .names {
    margin-top: 4rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-top: 3px solid var(--secondary);
    border-left: none;
    padding-top: 10px;
  }
}
.home-secE .grid .content:not(.names > p) .names h6 {
  font-size: 18px;
  color: var(--white);
}
.home-secE .grid .content:not(.names > p) .names p {
  font-size: 12px;
  color: var(--litewhite);
  margin: 4px 0 10px;
}
.home-secE .grid .content:not(.names > p) .names img {
  margin-top: 10px;
}
.home-secE .grid .img {
  height: 622px;
}
@media only screen and (max-width: 991px) {
  .home-secE .grid .img {
    order: 1;
  }
}
@media only screen and (max-width: 675px) {
  .home-secE .grid .img {
    height: 322px;
  }
}
.home-secE .grid .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.home-secF {
  padding: 50px 0;
}
@media only screen and (max-width: 675px) {
  .home-secF {
    padding: 36px 0 50px;
  }
}
.home-secF .heading {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 675px) {
  .home-secF .heading {
    margin-bottom: 30px;
  }
}
.home-secF .heading h3 {
  color: var(--primary);
}
.home-secF .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .home-secF .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 675px) {
  .home-secF .grid {
    grid-template-columns: 1fr;
  }
}
.home-secF .grid .card {
  border-top: 1px solid rgba(11, 36, 81, 0.2);
  display: grid;
  grid-template-columns: 1fr;
}
.home-secF .grid .card .content {
  padding: 20px 0;
}
@media only screen and (max-width: 675px) {
  .home-secF .grid .card .content {
    order: 2;
  }
}
.home-secF .grid .card .content h6 {
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 500;
}
.home-secF .grid .card .content p {
  color: var(--text);
  font-size: 14px;
}
@media only screen and (max-width: 675px) {
  .home-secF .grid .card .img {
    order: 1;
  }
}
.home-secF .grid .card .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.home-secF .btn-center {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .home-secF .btn-center {
    margin-top: 20px;
  }
}/*# sourceMappingURL=home.css.map */