/* html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
} */
header {
  background: var(--Color-White, #FFF);
  box-shadow: 0px 3px 9px 0px #0000001F;
  padding: 3px 0;
  position: sticky;
  top: 0;
  z-index: 9;
}
.str-padding {
  padding-top: 4px;
  padding-bottom: 2px;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 14px; 
    height: 14px; 
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}
.navbar-toggler {
    line-height: 0.5rem;
}



.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-list .nav-link {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Sora', sans-serif;
  line-height: 24px;
  margin-left: -10px;
  color: #000000;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-list .nav-link:hover,
.nav-list .nav-link.active {
  color: #ff6600;
}


.nav-collapse-wrapper {
  background-color: #fff;
}

.banner-section{
  padding: 122px 0 172px 0;
  background-image: url('../images/about_2\ 1.png');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  position: relative;
  display: flex;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
  .banner-content {
  position: relative;
  z-index: 2;
  color: white;
}
.banner-section h1{
  font-family: Sora;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
}

.banner-section span{
  font-family: Sora;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FF6000;
}

.banner-section h6{
  font-family: Inter;
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -2%;
  vertical-align: middle;
}

.fill-btn {
  padding: 16px 30px 16px 30px;
  border-radius: 200px;
  font-family: inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  backdrop-filter: blur(32px);
    background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color:#FF6000;
  text-decoration: none;  
}
.fill-btn span {
  font-family: inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color:#FF6000;
  text-decoration: none;  
}
.arrow{
    display: inline-flex;
}
.fill-btn .arrow img {
    height: 24px;  
  width: 24px;
  border-radius: 40px;
  margin-top: 5px;
}
h2{
    font-size: 40px;
}
.section-padding{
    padding: 80px 0;
}
h2{
  font-family: Sora;
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -2px;
}
h2 span{
  color:  rgba(255, 96, 0, 1);
}
h4{
  font-family: Sora;
  font-weight: 300;
  font-style: Light;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -5%;
  color: #000000;
}
h6{
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
}
 .lightheading{
  font-family: Sora;
  font-weight: 200 !important;
  font-style: ExtraLight;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -5%;
  color: #000000;
}
.position-sticky{
top: 100px;
}
p{
  font-family: Inter;
  font-weight: 300 !important;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #000000;
}

/* link-hover animation */

.hover-link {
    display: inline-flex;
    padding: 4px 0 6px;
    overflow: hidden;
    transition: all .6s cubic-bezier(.65, 0, .35, 1);
    line-height: 1.3;
    letter-spacing: -2%;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    color: #FF6000;
    font-family: inter;
    font-weight: 400;
    padding: 5px;
    font-size: 18px;
    line-height: 140%;
}

.hover-link:before {
    translate: calc(-100% - 2px) 0;
    transition: all .4s cubic-bezier(.65, 0, .35, 1);
}

.hover-link:after,
.hover-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.5px;
    background-color: #FF6000;
    left: 0;
    bottom: 0;
    transition: all .3s cubic-bezier(.65, 0, .35, 1) .15s;
}

.hover-link span {
    display: block;
    transition: all 1s cubic-bezier(.22, 1, .36, 1);
    line-height: 30px;
}

.hover-link:hover:before {
    translate: 0 0;
    transition: all .5s cubic-bezier(.65, 0, .35, 1) .25s;
}

.hover-link:hover:after {
    translate: calc(100% + 50px) 0;
    transition: all .5s cubic-bezier(.65, 0, .35, 1);
}

/* product-card */

.product-card {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.product-wrapper .product-image {
  transition: transform 0.4s ease;
}

.product-wrapper .product-arrow {
  opacity: 50%;
  transition: opacity 0.4s ease;
}
.product-wrapper:hover .product-image {
  transform: scale(1.07);
}

.product-wrapper:hover .product-arrow {
  opacity: 1;
}

.product-title p{
  font-family: Sora;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.product-arrow{
  width: 24px;
  height: 24px;
  border-radius: 40px;
  opacity: 50%;
  color: #FF600080;
  backdrop-filter: blur(32px);
}
.dark-black-bk{
  background-color: #000000;
}

/* accordion */

.custom-accordion .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-weight: 500;
  padding: 16px 0;
  border: none;
  color: #000;
  justify-content: space-between;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-body {
  padding: 0 0 14px 0;
  color: #555;
}

.accordion-my-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}


.custom-accordion .accordion-button:not(.collapsed) .accordion-my-icon {
  transform: rotate(45deg);
}

.cabel-away{
  background-image: url('../images/cabel-away.png');
  background-size: 100% 100%;
  padding: 190px 0 190px 0;
  background-position: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* footer links */

.quick-links p {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -2%;
  font-family: inter;
}

.quick-links ul {
  padding-left: 0;
}

.quick-links ul li {
  list-style: none;
  margin: 25px 0;
}
.quick-links ul li a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  font-family: inter;
  text-decoration: none;
}
.quick-links .copyright{
  font-family: Inter;
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #000000;
}

/* about page */

.banner-section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}
.banner-section-about {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Keep video in flow */
.video-wrapper {
  position: relative;

  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Overlay content stays above */
.banner-section-about .container-fluid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.banner-section-about h1{
  font-family: Sora;
  font-weight: 600;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}
.banner-section-about span{
  font-family: Sora;
  font-weight: 600;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FF6000;
}
.banner-section-about h6{
  font-family: Inter;
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -2%;
  vertical-align: middle;
}

.banner-section-about .container {
  padding-top: 192px;
  padding-bottom: 172px;
}



.extra-pera{
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #FF6000;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  font-family: inter;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 4px;
  color: rgba(0, 0, 0, 1);
}

.breadcrumb-item a {
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}


.size-box {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  font-family: inter;
  background-color: #f8f8f8;
  line-height: 16px;
  transition: all 0.2s ease;
}
.color-box {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  font-family: inter;
  background-color: #f8f8f8;
  line-height: 16px;
  transition: all 0.2s ease;
}

  .color-black { background-color: #000000; }
  .color-blue { background-color: #0070C0; }
  .color-green { background-color: #009900; }
  .color-grey { background-color: #a6a6a6; }
  .color-red { background-color: #ff1d1e; }
  .color-white { background-color: #f8f8f8;  }
  .color-yellow { background-color: #ffff00; }
.size-box:hover {
  border-color: #ff6600;
}
.size-box.active {
  border: 1px solid #ff6600;
}
.product-size-title{
  font-family: Sora;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  opacity: 50%;
}
.underline{
  border: 0.5px solid rgba(0, 0, 0, 0.12);
}
.certificate-underline{
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin: 80px 0 80px 0;

}
.light-pink-bk{
  background-color: #F5F5F5;
   padding: 80px 0;
}
.certificate-box {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  }
.working-logo{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 86px 16px 86px 16px;
  text-align: center;
}

.certificate-box img {
  width: 100%;
  height: auto;
}
.certificate-text{
  font-family: Sora;
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 1);
}
.hiring .text-under{
  font-family: Inter;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-decoration: underline;
  text-decoration-style: solid;
  font-weight: 400 !important;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  font-family: inter;
  box-shadow: none !important;
  color: #000000; 
  opacity: 70%;
  font-size: 16px;
}
 input::placeholder,
textarea::placeholder {
  font-size: 16px; 
  font-family: inter;
  font-weight: 400 !important;          
}

.form-control:focus {
  border-bottom: 1px solid #000;
  outline: none;
}

.required::after {
  content: ' *';
  color: red;
}

.form-select {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none !important;
  padding-left: 0; 
  font-size: 16px;
  font-weight: 400;
}
.form-select:focus {
  border-bottom: 1px solid #000;
}
.form-control, 
.form-select {
  background-color: #F5F5F5 !important; 
}
.btn-wrapper {
    display: flex;            
    flex-wrap: wrap;         
    gap: 10px;                
    align-items: center;
}
.submit-btn {
  padding: 15px 24px;
  font-family: inter;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 20px;
  text-align: left;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  margin-top: 30px;        
  display: inline-block;
  max-width: 100%;
}
.browse-btn,
.choose-btn {
  padding: 10px 24px;
  font-family: inter;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 20px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  gap: 8px;
}
.browse-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.browse-btn {
  background-color: rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.5);
}

.choose-btn {
  color: rgba(0, 0, 0, 0.5);
}










   


    





















@media only screen and (max-device-width: 768px) {
    .banner-section h1{ 
font-size: 44px;
margin-left: 50px;
}
    .banner-section span{
font-size: 44px;
}

.banner-section h6{
font-size: 16px;
margin-left: 50px;
}
h2{
  font-size: 30px;
}
.lightheading{
  font-size: 30px;
}
h4{
  font-size: 20px;
}
h6{
  font-size: 16px;
}
p{
  font-size: 14px;
}

.cabel-away{
    padding: 90px 0 90px 0;
}
.certificate-text{
  font-size: 14px;
}
  /* .choose-btn,
    .submit-btn {
        width: 100%;            
        text-align: center;    
    }

    .btn-wrapper {
        flex-direction: column; 
        align-items: stretch;
    } */
     .banner-section {
    padding: 100px 20px 100px 20px; 
    flex-direction: column;
    text-align: center;
  }

  .banner-section h1,
  .banner-section span {
    font-size: 42px; 
    line-height: 110%;
  }
  .banner-section-about h1{
  font-size: 30px;
}
.banner-section-about span{
  font-size: 30px;
}
.banner-section-about h6{
  font-size: 16px;
}
  .banner-section h6 {
    font-size: 16px;
    line-height: 130%;
  }
  .quick-links ul li {
    margin: 10px 0;
}

  .fill-btn {
    padding: 10px 24px;
    font-size: 16px;
    margin-left: 40px;
  }
  .fill-btn span {
    font-size: 14px;
  }

  .fill-btn .arrow img {
    height: 14px;
    width: 14px;
    margin-top: 3px;
  }
  .hover-link {
  font-size: 15px;
}
}




@media only screen and (max-device-width: 576px) {
      .banner-section h1{ 
font-size: 24px;
} 
.banner-section span{
font-size: 24px;
}
.banner-section-about h1{
  font-size: 25px;
}
.banner-section-about span{
  font-size: 25px;
}
.banner-section-about h6{
  font-size: 14px;
}

.quick-links ul li {
    margin: 10px 0;

}
h2{
    font-size: 28px;
}
h6{
  font-size: 14px;
}
.lightheading{
  font-size: 25px;
}
p{
  font-size: 14px;
  line-height: 20px;
}
 .hover-link {
  font-size: 14px;
}
.product-title p{
font-size: 14px;
}
h4{
font-size: 18px;
}
 
 .custom-accordion .accordion-button {
  padding: 10px 0;
}
.custom-accordion .accordion-body {
  padding: 0 0 8px 0;
}
.cabel-away{
    padding: 50px 0 50px 0;
}
.certificate-text{
  font-size: 12px;
}
.hiring .text-under{
      font-size: 10px;
    }
    .banner-section {
    padding: 80px 15px 80px 15px; 
    flex-direction: column;
    text-align: center;
  }

  .banner-section h1,
  .banner-section span {
    font-size: 32px; 
    line-height: 110%;
  }

  .banner-section h6 {
    font-size: 14px;
    line-height: 130%;
  }

  .fill-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .fill-btn span {
    font-size: 14px;
  }

  .arrow img {
    height: 18px;
    width: 18px;
    margin-top: 2px;
  }
  .quick-links ul li a{
     font-size: 14px;
     line-height: 20px;
  }
  .quick-links .copyright{
    font-size: 14px;
    line-height: 20px;
  }
}





@media (min-width: 768px) and (max-width: 991.98px) {
  h4{
    font-size: 20px;
    align-items: center;
    gap: 10px;
  }
  .custom-accordion .accordion-button {
  padding: 10px 0;
}
.custom-accordion .accordion-body {
  padding: 0 0 8px 0;
}
}



@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 30px;
    z-index: 99;
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.1);
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
  }
  .nav-list .nav-link {
    margin-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
  }
    /* .navbar-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  } */

  .navbar-nav .nav-link {
    padding-top: 1px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
}

/* responsive only bg video */

@media (max-width: 767.98px) {
  .banner-section-about .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .video-wrapper {
    height: auto;
  }

  .bg-video {
    position: relative;
    height: auto;
    max-height: 450px;
    object-fit: contain;
  }

  .banner-section-about .container-fluid {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
}

@media (max-width: 576px) {
  .banner-section-about .container {
    padding-top: 60px;
    padding-bottom: 10px;
  }

}
@media (min-width: 992px) {
  .video-wrapper {
    max-height: 800px;
    overflow: hidden;
  }
  .banner-section-about .container {
    padding-top: 200px;
    padding-bottom: 80px;
  }

  .bg-video {
    height: 100%;
    width: 100%;
    object-fit: contain;
  
  }

  .banner-section-about::before {
    height: 100%;
  }
}













