/*Common CSS*/
@font-face {
font-family: 'Avenir Roman';
font-style: normal;
font-weight: normal;
src: local('Avenir Roman'), url('../fonts/avenir_roman_12.woff') format('woff');
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: normal;
src: local('Inter'), url('../fonts/Inter-Regular.woff2') format('woff2');
}
*+html {
  margin:0px;
  padding:0px;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, header, footer, section, nav {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir Roman', sans-serif;
  font-weight:400;
  margin:0px;
  padding:0px;
}
img {
  border:0px;
  outline:none;
  max-width: 100%;
  height: auto;
  display: block;
}
p {
  margin:0px;
  font-family: "Inter", sans-serif;
}
ul li, ol li {
  margin:0px;
  padding:0px;
  list-style:none;
}
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
a{
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
}
p{
  margin: 0;
}

html, body{
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body{
  max-width: 100%;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
  background-color: #FFFFFF;
  color: #231F20;
  font-size: 24px;
}
section, footer{
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.top-area{
  position: relative;
  background-image: url('../images/banner-bg1_R.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px 0 260px;
}
.top-area::after{
  content: "";
  position: absolute;
  width: 445px;
  height: 445px;
  bottom: 160px;
  right: 64px;
  background-image: url('../images/banner-bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header {
  position: fixed;
  z-index: 99;
  width: 100%;
  max-width: calc(100% - 100px);
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.051);
  border-radius: 999px;
  padding: 12px;
  margin: 0 auto;
  transform: translateX(-50%);
  left: 50%;
  top: 32px;
  transition: 0.3s;
}
@media(min-width: 1800px){
  header{
    max-width: 1720px;
  }
}
header.sticky {
  top: 0;
  background-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0px 8px 15px rgba(1, 1, 1, 0.11);
  backdrop-filter: blur(10px);
}
header.sticky .btn, header.sticky .top-middle a {
  padding: 10px 30px;
}
.top-area .container{
  z-index: 1;
  position: relative;
}
h1{
  margin: 228px auto 48px;
  font-weight: 400;
  font-size: 114px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #231F20;
}
.fs24{
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}
.btn{
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 18px 36px;
  border: 1px solid #231F20;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}
.btn2{
  background-color: #231F20;
  color: #fff;
}
.btn:hover{
  border: 1px solid #F15B2A;
  color: #fff;
}
.btn2:hover{
  background-color: #231F20;
}
.btn::after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    background: #F15B2A;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}
.btn:hover::after{
  transform: translate(-50%, -50%) scale(1);
}
.logo{
  display: block;
  margin-left: 100px;
}

.top-middle a{
  font-size: 20px;
  padding: 18px 25px;
}
.header-desc p{
  margin-bottom: 64px;
  max-width: 1132px;
}
.top-middle a:hover, .navbar-nav .nav-item a:hover{
  color: #F15B2A;
}
.top-right a{
  font-size: 16px;
}








.navbar-collapse {
  position: absolute;
  top: 30px;
  background-color: #fff;
  min-width: 200px;
  right: 0;
  text-align: center;
  z-index: 99;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}
.nav-link.dropdown-toggle{
  position: relative;
}
.navbar-toggler:focus, .navbar-toggler:active{
  outline: 0;
  box-shadow: none;
}
.navbar-toggler {
  width: 30px;
  height: 30px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border: 0;
  padding: 0;
  top: -3.5px;
  right: 10px;
}
.navbar-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #231F20;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.navbar-toggler[aria-expanded="true"] span{
  background: #F15B2A;
}
.navbar-toggler span:nth-child(1) {
  top: 0px;
}
.navbar-toggler span:nth-child(2),.navbar-toggler span:nth-child(3) {
  top: 10px;
}
.navbar-toggler span:nth-child(4) {
  top: 20px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.navbar-nav .nav-item:last-child a {
  padding-bottom: 20px;
}










.how-works{
  background-color: #F5F5F7;
  padding: 120px 0 160px;
}
.how-works-desc{
  max-width: 1000px;
}
.heading2{
  margin-bottom: 24px;
  font-weight: 400;
  font-style: Roman;
  font-size: 64px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.heading3{
margin-bottom: 24px;
font-weight: 400;
font-style: Roman;
font-size: 50px;
leading-trim: NONE;
line-height: 60px;
letter-spacing: 0%;

}



#carousel1 {
}
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 225px;
  height: 56px;
  padding: 0 24px 0 24px;
  background: #fff;
  border-radius: 28px;
  margin: 70px auto 80px;
}
/* Bootstrap's carousel indicators */
.carousel-pagination .carousel-indicators {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  margin: 0;
  padding: 0;
  gap: 8px;
}

/* Individual dots */
.carousel-pagination .carousel-indicators button {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background-color: #D9D9D9;
  opacity: 1;
  transition: width 0.3s ease, background-color 0.3s ease;
}
/* Active dot */
.carousel-pagination .carousel-indicators button.active {
  width: 40px;
  background-color: #f15a24;
}
.carousel-step {
  color: #231F20;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
#carousel1 {
  touch-action: pan-y;
}
#carousel1 img {
  -webkit-user-drag: none;
  user-select: none;
}
.carousel-desc p{
text-align: left;
margin-right: 40px;
}
.carousel-desc .heading3{
  margin-right: 70px;
}






.everything {
  padding: 160px 0 240px;
  background-image: url(../images/everything-bg.png);
  background-size: initial;
  background-position: 95% 12%;
  background-repeat: no-repeat;
}
.everything-blocks{
  margin-top: 120px;
}
.everything-block{
  background-color: #EAF0F4;
  padding: 50px 60px 0;
  margin-bottom: 60px;
  border-radius: 32px;
  transition: 0.3s;
}
.everything-block:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.27);
  color: #f15a24;
}
.everything-block img{
  transition: 0.5s;
  transform-origin: bottom;
}
.everything-block:hover img {
  transform: scale(1.05);
}
.everything-block p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  margin-bottom: 47px;
  max-width: 418px;
}
.mt240 {
  margin-top: 240px;
}





.ai-naitive {
  background-color: #3A2448;
  color: #fff;
  padding: 112px 0;
}
.ai-naitive-block {
  position: relative;
  background-color: #EAF0F4;
  padding: 48px 96px;
  border-radius: 32px;
}
.ai-naitive-desc{
  margin-left: 36px;
}
.little-block {
  background-image: url(../images/video-mask.png);
  background-size: 100% 100%;
  background-position: left center;
  width: 302px;
  height: 88px;
  position: absolute;
  top: 65%;
  left: -20%;
}
.lb1 {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  margin: 19px 0 0 20px;
}
.lb1 video {
  width: 90px;
  height: 100px;
  border-radius: 50%;
  margin-left: -20px;
  margin-top: -26px;
}





.textile-regulation{
  background-color: #E2FBE8;
  padding-top: 160px;
  padding-bottom: 140px;
}
.marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
}
.marquee ul {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  flex-shrink: 0;
  animation: marquee 30s linear infinite;
}
.marquee li {
  flex-shrink: 0;
  white-space: nowrap;
  color: #fff;
  padding: 24px 40px;
  border-radius: 50px;
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-width)), 0, 0);
  }
}
.marquee-track {
  will-change: transform;
}

.marquee-track > ul {
  animation: none !important;
}

.marquee ul.clr1 li{
  background-color: #F1907D;
}
.marquee ul.clr2 li{
  background-color: #FF7A7A;
}
.marquee ul.clr3 li{
  background-color: #8D6EA8;
}
.marquee ul.clr4 li{
  background-color: #7DA780;
}
.marquee ul.clr5 li{
  background-color: #8799B9;
}
.marquee ul.clr6 li{
  background-color: #27AAE1;
}









.built-for {
  position: relative;
}
.built-for-desc{
  position: absolute;
  width: 100%;
  top: 160px;
  left: 0;
}
.built-for-desc p {
  max-width: 670px;
}
.container3{
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}









.feedback-block {
  background: linear-gradient(82.58deg, #FFFFFF 0%, #F4FBFE 15%, #CCD8E6 100%);
  padding: 80px;
  margin: 80px auto;
  border-radius: 32px;
}
.feedback-block h2{
  margin: 45px auto;
}
.container4{
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
}
.fs18{
  font-size: 18px;
}




.contact{
  padding: 200px 0 220px;
  background-image: url(../images/contact-bg_R.jpg);
  background-size: cover;
  background-position: center;
}
.contact .heading2{
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  letter-spacing: 0%;
}
.form {
  margin-top: 56px;
  max-width: 685px;
}
.form h3 {
  margin-bottom: 24px;
}
.form-control {
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
}



footer{
  background-color: #231F20;
  padding: 20px 0;
  color: #fff;
}
footer a, footer p{
  font-size: 20px;
}
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: 1px solid transparent;
  outline: none;
  background-color: #f15a24;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  font-size: 0;
  width: 35px;
  height: 35px;
  transition: 0.3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z'/%3E%3C/svg%3E");
}
#backToTopBtn:hover {
  border: 1px solid #f15a24;
  background-color: #fff;
  transform: scale(1.5);
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.39);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23f15a24' d='M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z'/%3E%3C/svg%3E");

}





/*Privacy and Terms Page CSS*/
.para-area{
  background-attachment: fixed;
}
.para-area::after{
  display: none;
}
.para-desc p:not(.para-head), .para-desc ol, .para-desc ul, .para-desc table{
  margin-bottom: 30px;
}
.para-desc p a{
  color: #f15a24;
}
.para-desc ol{
  padding-left: 16px;
}
.para-desc ol li {
  list-style: disc;
  font-size: 18px;
  margin-bottom: 5px;
}
.para-desc td {
  vertical-align: middle;
}
@media (max-width: 560px){
  .para-desc td{
    padding: 5px;
  }
}
.para-desc .para-head{
  margin-bottom: 15px;
}
.para-desc .para-head, .para-desc strong, th{
  font-weight: normal;
}
.para-desc .table > :not(caption) > * > * {
  background: transparent;
}
.para-desc .table {
  border-color: rgba(166, 166, 166, 0.31);
}
.para-desc .table thead tr{
  border-color: rgba(166, 166, 166, 0.6);
}





/*Scroll Animation CSS*/
/* Base hidden state */
[class*="fade-"],
.zoom-in {
  opacity: 0;
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

/* Directions */
.fade-up {
  transform: translateY(40px);
}
.fade-down {
  transform: translateY(-40px);
}
.fade-left {
  transform: translateX(40px);
}
.fade-right {
  transform: translateX(-40px);
}
.zoom-in {
  transform: scale(0.8);
}
.zoom-in2 {
  opacity: 0;
  transition: all 0.8s ease;
  transform: scale(0.2);
}
.animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.d100 { transition-delay: 0.1s; }
.d200 { transition-delay: 0.2s; }
.d300 { transition-delay: 0.3s; }
.d400 { transition-delay: 0.4s; }
.d500 { transition-delay: 0.5s; }
.d600 { transition-delay: 0.6s; }
.d700 { transition-delay: 0.7s; }
.d800 { transition-delay: 0.8s; }
.d900 { transition-delay: 0.9s; }
.d1000 { transition-delay: 1s; }











/*Responsive CSS*/

@media(max-width:1500px){
body{
  max-width: 1440px;
}
header {
  max-width: 1300px;
}
.btn, .top-middle a {
  padding: 18px 36px;
}
.top-area {
padding: 32px 0 185px;
}
.ai-naitive, .textile-regulation, .contact {
  padding: 80px 0 80px;
}
.everything{
  padding: 71px 0 162px;
}
.how-works{
  padding: 86px 0 164px;
}
.how-works-desc {
  max-width: 874px;
}
.heading2, .contact .heading2 {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 78px;
}
body, .fs24, .carousel-step, .everything-block p {
  font-size: 20px;
  line-height: 26px;
}
.logo {
  margin-left: 62px;
}
h1 {
  margin: 183px auto 29px;
  font-weight: 400;
  font-size: 96px;
}
.header-desc p {
  margin-bottom: 73px;
  max-width: 936px;
}
.hero-img {
  max-width: 1100px;
}
.carousel-desc p {
  margin-right: 77px;
}
.carousel-desc .heading3 {
  margin-right: 90px;
}
.everything-block p {
  max-width: 340px;
}
.heading3{
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 48px;
}
.ai-naitive-desc .heading2{
  font-size: 40px;
  line-height: 58px;
  max-width: 500px;
}
.ai-naitive-desc p{
  max-width: 528px;
}
.everything-block {
  background-color: #EAF0F4;
  padding: 30px 30px 0;
  margin-bottom: 60px;
}
.built-for-desc {
  top: 80px;
}
.built-for-desc p {
  max-width: 420px;
}
.container3, .container4 {
  max-width: 1140px;
}
.feedback-block .heading2{
  font-size: 44px;
  line-height: normal;
}
.form {
  max-width: 524px;
}
.textile-regulation .heading2 {
  max-width: 883px;
}
.marquee li {
  padding: 10px 20px;
}
.little-block {
  top: 68%;
  left: -15%;
  transform: scale(0.7);
}
.top-area::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 20px;
}
.ai-naitive-block {
  padding: 40px;
}

}


@media(min-width:1200px) and (max-width:1500px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1140px;
}
}

@media(max-width:1299px){
header {
  max-width: calc(100% - 32px);
}
body, .fs24, .carousel-step, .everything-block p {
  font-size: 17px;
  line-height: 24px;
}
.heading3 {
  font-size: 30px;
  line-height: 42px;
}
.heading2, .contact .heading2 {
  font-size: 48px;
  line-height: 55px;
}
.header-desc p {
  max-width: 800px;
}
}

@media(max-width:1199px){
.container3, .container4{
  padding-left: 16px;
  padding-right: 16px;
}
  .built-for {
  height: 1000px;
}
.built-for img {
  object-fit: cover;
  height: 100%;
}
.hero-img {
  max-width: 100%;
}


}

@media(max-width:991px){
  .carousel-desc {
  margin-bottom: 30px;
}
.carousel-pagination {
  margin: 50px auto 40px;
}
.everything-blocks {
  margin-top: 50px;
}
.mt240 {
  margin-top: 0px;
}
.carousel-desc .heading3 {
  margin-right: 0;
  text-align: center;
}
.carousel-desc p {
  margin-right: 0;
  text-align: center;
}
.everything-block p {
  max-width: 100%;
}
.feedback-block .heading2 {
  font-size: 36px;
}
.ai-naitive-desc {
  margin-left: 0;
}
.everything-blocks p, .everything-blocks .heading3{
  text-align: center;
}
.everything-block img, #carousel1 img, .ai-naitive-block img {
  margin-left: auto;
  margin-right: auto;
}
.ai-naitive-desc .heading2, .ai-naitive-desc p, .textile-regulation .heading2, .textile-regulation p, .built-for-desc .heading2, .built-for-desc p {
  max-width: 100%;
  text-align: center !important;
}
h1 {
  font-size: 80px;
}

}


@media(max-width:767px){
  h1 {
  margin: 120px auto 32px;
  font-size: 48px;
  line-height: 56px;
}
.top-area::after {
  width: 100px;
  height: 100px;
  bottom: 30px;
  right: 50px;
}
body, .fs24, .carousel-step, .everything-block p {
  font-size: 16px;
  line-height: 24px;
}
.heading2, .contact .heading2 {
  font-size: 36px;
  line-height: 42px;
  text-align: center !important;
}
.heading3 {
  font-size: 28px;
  line-height: 36px;
  text-align: center !important;
}
.everything-block {
  padding: 70px 24px 0;
  margin-bottom: 24px;
  text-align: center !important;
}
p, .carousel-desc p {
  text-align: center;
}
.container3, header {
  max-width: calc(100% - 32px);
}
footer a, footer p {
  font-size: 14px;
}
.form-control {
  padding: 12px 20px;
  font-size: 14px;
}
.feedback-block {
  padding: 40px 12px;
  margin: 50px auto;
}
#backToTopBtn {
  bottom: 50px;
  right: 12px;
}

}


@media(max-width:599px){
.built-for {
  height: 1200px;
}
.feedback-block .heading2 {
  font-size: 26px;
}
.logo {
  margin-left: 8px;
}
.how-works {
  padding: 80px 0 80px;
}
.top-area {
  padding: 32px 0 100px;
}
.everything-block {
  padding: 30px 24px 0;
}
.everything {
  padding: 70px 0 100px;
}


}











