@font-face {
  font-family: head;
  src: url(rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2);
}
@font-face {
  font-family: peras;
  src: url(UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2);
}
* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: white;
  background-color: black;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  max-width: 1500px;
}

button {
  width: -moz-fit-content;
  width: fit-content;
  font-family: peras;
  padding: 0.9rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  background-color: transparent;
  color: white;
  position: relative;
  font-size: 1rem;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: all 0.18s ease;
}

button:hover {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(transparent, rgba(204, 204, 204, 0.5));
}

span {
  background: linear-gradient(55deg, #e8d3be, #e98f81);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

p {
  text-align: center;
  font-family: peras;
  font-weight: 400;
  font-size: 2.5rem;
}

h5 {
  font-family: peras;
  font-weight: 300;
  text-align: center;
  font-size: 1rem;
  opacity: 0.5;
}

nav {
  padding: 2rem 4rem 0 4rem;
  max-width: 1500px;
  width: 100%;
  box-sizing: border-box;
}
nav .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1.5rem;
}
nav .logo {
  font-family: head;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
nav .logo img {
  width: 2rem;
  height: 2rem;
}
nav .logo h3 {
  font-size: 1.5rem;
  font-weight: 300;
}
nav .link {
  display: flex;
  gap: 1rem;
}

main {
  height: 100%;
  width: 100%;
}

.view1 {
  height: 55rem;
  background: url(line-waves.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -30px;
}
.view1 .hero {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 4rem;
  gap: 1rem;
}
.view1 .hero h1 {
  font-family: head;
  font-size: 11rem;
  font-weight: 500;
  background: linear-gradient(-55deg, #e8d3be 40%, #458aed);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.view1 .hero button {
  margin-top: 2rem;
}
.view1 .hero p {
  font-size: 1.2rem;
  margin-top: -2rem;
}

.view2 {
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.view2 p {
  font-size: 2.5rem;
}

.view3 {
  display: flex;
  gap: 3rem;
  padding: 6rem;
}
.view3 .top {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view3 .images {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: url(v3-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.view3 .images img:nth-child(1) {
  width: 77%;
  transition: all 1s ease;
}
.view3 .images img:nth-child(2) {
  position: absolute;
  transition: all 1s ease;
}
.view3 .bottom {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.view3 .bottom .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.view3 .bottom .info h2 {
  font-family: head;
  font-weight: 300;
  transition: all 0.5s ease;
}
.view3 .bottom .info h2:hover {
  font-weight: 600;
  background: linear-gradient(55deg, #e8d3be, #e98f81);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.view3 .bottom .info p {
  text-align: left;
  font-size: 1.15rem;
  opacity: 0.3;
  margin-left: 11%;
}
.view3 .bottom .info h6 {
  font-size: 0.9rem;
  font-family: peras;
  font-weight: 300;
}
.view3 .bottom .heading {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.view3 .bottom .heading .head-left {
  display: flex;
  gap: 1rem;
}
.view3 .bottom .heading .head-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 15%;
  background: url(info-chip.png);
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.images:hover img:nth-child(1) {
  transform: rotate(-50deg);
  scale: 0.9;
}

.images:hover img:nth-child(2) {
  transform: rotate(30deg);
  scale: 0.9;
}

.view3 .bottom .info:hover .head-right {
  opacity: 1;
  transform: translateX(0px);
}

.view4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: url(welcome-bg.69636648.png);
  background-size: contain;
}
.view4 p {
  font-size: 2.5rem;
}

.view5 {
  padding: 4rem;
}
.view5 .chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(block-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 3rem;
  border: 1px solid rgba(101, 55, 22, 0.3);
  border-radius: 2rem;
}
.view5 .top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}
.view5 .top p, .view5 .top h5 {
  text-align: left;
}
.view5 .top p {
  font-size: 2.5rem;
}
.view5 .top h5 {
  width: 50%;
  line-height: 1.4rem;
}
.view5 .bottom {
  width: 55%;
  background: url(block-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 1rem;
  padding: 2rem 0 2rem 2rem;
  aspect-ratio: 1/1;
  background-position: center;
}
.view5 .bottom .block {
  background: url(Item-1.png);
  background-size: contain;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-position: center;
}
.view5 .bottom:hover .block {
  scale: 1.02;
  transform: translateX(-6px) translateY(6px);
}

.view6 {
  padding: 4rem;
}
.view6 .chip {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: url(block-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 3rem;
  border: 1px solid rgba(101, 55, 22, 0.3);
  border-radius: 2rem;
}
.view6 .top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}
.view6 .top p, .view6 .top h5 {
  text-align: left;
}
.view6 .top p {
  font-size: 2.5rem;
}
.view6 .top h5 {
  width: 50%;
  line-height: 1.4rem;
}
.view6 .bottom {
  width: 100%;
  background: url(block-2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.view6 .bottom .block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 4.5rem 1.5rem 2rem 1.5rem;
  box-sizing: border-box;
}
.view6 .bottom .block img {
  height: 4.5vmax;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  transition: all 0.5s ease;
}
.view6 .bottom .block #flex-right {
  -o-object-position: left;
     object-position: left;
}

.view6 .bottom img:hover {
  scale: 1.1;
}

.view7 .bottom {
  width: 70%;
  background: url(capture\(2\).PNG);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  border: none;
}

.view8 {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  align-items: center;
  justify-content: space-evenly;
  overflow: auto;
}
.view8 .card {
  width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: url(partners-bg.338eeed9.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  padding: 1.5rem;
}
.view8 .card img {
  width: 22%;
}
.view8 .card p {
  opacity: 0.5;
  font-size: 1rem;
}
.view8 .card h4 {
  font-family: head;
  font-weight: 300;
  font-size: 1.5rem;
}

.view8::-webkit-scrollbar {
  display: none;
}

.view8-2 {
  display: flex;
  justify-content: center;
}

.view9 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.view10 {
  padding: 4rem;
  display: flex;
  gap: 1.5rem;
}
.view10 h3 {
  font-family: head;
  font-size: 1.8rem;
  font-weight: 400;
}
.view10 p {
  text-align: left;
  opacity: 0.5;
  font-size: 1.1rem;
  line-height: 1.5;
}
.view10 .top, .view10 .bottom {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
}
.view10 .top {
  background: url(workforce-block-1.png);
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.view10 .top .block {
  background: url(workforce-block-item-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: right;
}
.view10 .top .block .left img {
  width: 20rem;
  position: absolute;
  bottom: -28%;
  left: -15%;
  transition: all 1s ease-in-out;
}
.view10 .top .block .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 6rem 0;
  align-items: end;
}
.view10 .top .block .right img {
  transition: all 1.3s cubic-bezier(0, 0, 1, -0.35);
}
.view10 .top .block .right #img1 {
  transition-delay: 1.4s;
}
.view10 .top .block .right #img2 {
  transition-delay: 1.2s;
}
.view10 .top .block .right #img3 {
  transition-delay: 1s;
}
.view10 .top .block .right #img4 {
  transition-delay: 0.8s;
}
.view10 .bottom {
  background: url(workforce-block-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.view10 .bottom .sec {
  height: 100%;
  background: url(workforce-block-item-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.view10 .bottom .block {
  height: 100%;
}

.view10 .top:hover .left img {
  scale: 0.9;
  rotate: -45deg;
}

.view10 .top:hover .right img {
  scale: 1.1;
  transform: translateY(-1.5rem);
}

.view11 {
  margin: 0rem 4rem;
  padding: 3rem;
  background: url(block-bg.jpg);
  background-size: cover;
  background-position: right;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  border-radius: 2rem;
  border: 1px solid rgba(108, 43, 11, 0.3450980392);
  overflow: auto;
}
.view11 p {
  position: sticky;
  left: 50%;
  transform: translateX(-50%);
}
.view11 h5 {
  text-align: center;
  position: sticky;
  left: 50%;
  transform: translateX(-50%);
}
.view11 .slider {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  transform: translate(35%);
}
.view11 .testimonials {
  border-radius: 0.5rem;
}
.view11 #tm1 {
  background: url(testimonial-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 10rem;
  height: 10rem;
}
.view11 #tm2 {
  background: url(testimonial-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 23rem;
  height: 10rem;
}
.view11 #tm3 {
  background: url(testimonial-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20rem;
  height: 10rem;
}

.view11::-webkit-scrollbar {
  display: none;
}

.view12 {
  margin: 4rem 4rem 13rem 4rem;
  padding: 8rem 3rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  align-items: center;
  gap: 2rem;
  background: url(liness.PNG);
  background-size: cover;
  background-position: center;
}
.view12 p {
  font-size: 1rem;
  opacity: 0.5;
  text-align: center;
}
.view12 h4 {
  width: 70%;
  font-family: peras;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;
}

.footer {
  width: 100%;
  height: 30rem;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

footer {
  width: 100%;
  height: 50rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 13rem 18rem 0rem 18rem;
  border: 1px solid rgb(254, 123, 50);
  box-shadow: 0px -10px 20px 0px rgba(248, 171, 58, 0.7);
  border-radius: 50% 50% 0 0;
}
footer p {
  text-align: left;
  opacity: 0.5;
  font-size: 0.8rem;
}
footer .bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 0 1rem 0;
}
footer .left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .left p {
  font-size: 1rem;
}
footer .left img {
  width: 1.5rem;
}
footer .right {
  display: flex;
  gap: 1rem;
}
footer .right a {
  font-family: peras;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  nav .link {
    display: none;
  }
  .view1 .hero {
    margin-top: 8rem;
  }
  .view1 .hero h1 {
    font-size: 7rem;
  }
  .view2 {
    padding: 2rem;
  }
  .view3 {
    flex-direction: column;
    padding: 2rem;
  }
  .view3 .top {
    width: 100%;
  }
  .view3 .top img:nth-child(2) {
    width: 70%;
  }
  .view3 .bottom {
    width: 100%;
  }
  .view5 {
    padding: 2rem;
  }
  .view5 .chip {
    padding: 1.5rem;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .view5 .bottom {
    width: 100%;
    padding: 1rem 0 1rem 1rem;
  }
  .view6 {
    padding: 2rem;
  }
  .view6 .chip {
    flex-direction: column-reverse;
    padding: 1.5rem;
  }
  .view6 .chip .bottom {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .view6 .chip .bottom .block {
    gap: 0.4rem;
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  }
  .view6 .chip .bottom .block img {
    height: 8vw;
  }
  .view10 {
    flex-direction: column;
    padding: 2rem;
  }
  .view10 .top, .view10 .bottom {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    gap: 1rem;
  }
  .view10 .top h3, .view10 .bottom h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  .view10 .top p, .view10 .bottom p {
    text-align: center;
    font-size: 0.8rem;
  }
  .view10 .top .block .left img {
    width: 60%;
    max-width: 350px;
    bottom: -18%;
  }
  .view10 .bottom {
    height: 24rem;
  }
  .view11 {
    margin: 0 2rem;
  }
  .view12 {
    margin: 4rem 2rem 13rem 2rem;
    padding: 8rem 1rem;
  }
  .view12 h4 {
    font-size: 1.1rem;
  }
  .footer .bar {
    gap: 2rem;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */