:root,
[data-bs-theme=light] {
  --bs-primary-rgb: 254, 208, 0;
  --bs-secondary-rgb: 228, 47, 102;
}

#navigation{
  position: sticky;
  top: 0;
  background-color: #ffffffe6;

}

.btn{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.show .navbar-nav> li> a {
    line-height: 3 !important;
}
.mainHeading {
  width: 100%;
  height: 460px;
  position: relative;
  background-image: url(../images/Header-img.jpg);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 799px) {
  .mainHeading {
    padding: 15px;
  }

}
.mainHeading__content {
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 799px) {
  .mainHeading__content {
    /* min-height: 430px; */
    left: 0;
    transform: none;
    white-space: normal !important;
  }
}
.mainHeading__text {
  z-index: 1;
  background-color: #e42f66;
  padding: 40px;
  /* margin-top: 60px; */
  width: 50%;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  animation: text 0.8s 0.6s ease backwards;
  position: relative;
}
.mainHeading__text:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  animation: line 0.8s 0.6s ease backwards;
}
@keyframes line {
  0% {
    right: 0;
    width: 100%;
    opacity: 0;
  }
}
@media screen and (max-width: 799px) {
  .mainHeading__text {
    padding: 20px;
    /* margin: 90px 0 40px 0; */
    width: 100%;
    /* white-space: normal !important; */
  }
}
@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
}
.mainHeading__preTitle {
  /* text-transform: uppercase; */
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #637498;
}
.mainHeading__title {
  /* text-transform: uppercase; */
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-size: 32px;
  color: #ffffff;
  white-space: normal !important;
}
@media screen and (max-width: 799px) {
  .mainHeading__title {
    margin-bottom: 16px;
    font-size: 23px;
  }
}
.mainHeading__description {
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width: 799px) {
  .mainHeading__description {
    font-size: 14px;
  }
}
.mainHeading__image {
  right: 0;
  transform: translatey(0px);
  animation: image 0.6s 0.2s ease backwards;
}
@media screen and (max-width: 799px) {
  .mainHeading__image {
    height: 480px;
    width: 70%;
    transform: translatey(80px);
    right: -6%;
  }
}
@keyframes image {
  0% {
    opacity: 0;
    transform: translatey(200px);
  }
}

.mainHeading__image:before, .mainHeading__image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  top: 100%;
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
  opacity: 1;
  left: 0;
}
.mainHeading__image:before {
  animation: imageBefore 1s 0.2s ease backwards;
}
@keyframes imageBefore {
  0% {
    height: 100%;
    top: 0;
  }
}
.mainHeading__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta {
  padding: 16px 32px;
  color: #fff;
  background-color: #fed000;
  border: 0px solid rgba(99, 116, 152, 0.4);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 32px;
  cursor: pointer;
  box-shadow: inset 0px 0px 0px rgba(99, 116, 152, 0.2);
  transition: all 0.4s ease;
}
.cta:hover {
  border: 1px solid rgba(99, 116, 152, 0.1);
  box-shadow: inset 0px -80px 0px rgba(99, 116, 152, 0.1);
  transform: translateY(-5px);
}
@media screen and (max-width: 799px) {
  .cta {
    margin-top: 16px;
  }

}

@keyframes slide {
  0% {
    transform: translate3d(0,0,0)
  }
  100% {
    transform: translate3d(-100%,0,0)
  }
}

.header-background{
  background-color: #fed000;
  /* background: linear-gradient(90deg, #fed000 80%, #ffffff 80%); */
}

.Partners-slider {
  /* height: 100px; */
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  align-self: center;
}
.Partners-slide img {
  height: 60px;
}
.Partners-slider .Partners-slide-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  animation: slide 40s linear infinite;
}

.export-bg-color{
  background: #ffffff;
  background: linear-gradient(90deg, #fed000 70%, #e42f66 70%);
}

.Exports img {
  width: 100%;
margin-bottom: 15px;
border-radius: 5px;
}


/* About Us */

.About-Heading {
  width: 100%;
  height: 430px;
  position: relative;
  background-image: url(../images/Header/Eyes-Group.jpg);
  background-position: right;
  background-size: 48%;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}

.about-background{
  background-color: #fed000;
  /* background: linear-gradient(90deg, #fed000 80%, #ffffff 80%); */
  /* height: 430px; */
}

.CSR-Heading {
  width: 100%;
  height: 430px;
  position: relative;
  background-image: url(../images/Header/handsTrees.png);
  background-position: right;
  background-size:contain;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}

.CSR-background{
  background-color: #fed000;
  /* background: linear-gradient(90deg, #fed000 80%, #ffffff 80%); */
}

/* Services */

.services-Heading {
  width: 100%;
  height: 460px;
  position: relative;
  background-image: url(../images/Header/about.jpg);
  background-position: right;
  background-size: 65%;
  background-repeat: no-repeat;
    display: grid;
  align-items: center;
}

.services-background{
  background-color: #fed000;
  /* background: linear-gradient(90deg, #fed000 80%, #ffffff 80%); */
}

.Infrastructure-Heading {
  width: 100%;
  height: 430px;
  position: relative;
  background-image: url(../images/Header/factory-workers-1.jpeg);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}

.ContactUs-Heading {
  width: 100%;
  height: 430px;
  position: relative;
  background-image: url(../images/Header/Contact.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  display: grid;
  align-items: center;
}


figure.snip1150 {
  /* font-family: 'Raleway', Arial, sans-serif; */
  position: relative;
  /* margin: 10px; */
  /* min-width: 220px; */
  /* max-width: 310px; */
  height: 277px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  background: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
figure.snip1150 * {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
figure.snip1150 img {
  opacity: 0.3;
  max-width: 100%;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
figure.snip1150 figcaption {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  -webkit-transform: translateY(-75%);
  transform: translateY(-75%);
}
figure.snip1150 figcaption h2 {
  top: 50%;
  letter-spacing: -1px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 0;
  margin: 0;
  font-weight: 400;
}
figure.snip1150 figcaption h2 span {
  font-weight: 800;
  -webkit-transform: translate(-50%, 100%) scale(1.6);
  transform: translate(-50%, 100%) scale(1.6);
  display: inline-block;
}
figure.snip1150 figcaption:before,
figure.snip1150 figcaption:after {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 10px;
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
figure.snip1150 figcaption:before {
  top: 75%;
  -webkit-transform: rotate(-45deg) translateX(-80%);
  transform: rotate(-45deg) translateX(-80%);
}
figure.snip1150 figcaption:after {
  top: 75%;
  -webkit-transform: rotate(-45deg) translateX(80%);
  transform: rotate(-45deg) translateX(80%);
}

figure.snip1150 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
figure.snip1150:hover img,
figure.snip1150.hover img {
  opacity: 0.8;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
figure.snip1150:hover figcaption h2,
figure.snip1150.hover figcaption h2 {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
figure.snip1150:hover figcaption h2 span,
figure.snip1150.hover figcaption h2 span {
  -webkit-transform: translate(-50%, 110%) scale(1.9);
  transform: translate(-50%, 110%) scale(1.9);
}
figure.snip1150:hover figcaption:before,
figure.snip1150.hover figcaption:before {
  -webkit-transform: rotate(-45deg) translateX(-90%);
  transform: rotate(-45deg) translateX(-90%);
}
figure.snip1150:hover figcaption:after,
figure.snip1150.hover figcaption:after {
  -webkit-transform: rotate(-45deg) translateX(90%);
  transform: rotate(-45deg) translateX(90%);
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item img {
    display: block;
    width: 70%;
    margin: auto;
}