@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --maincolor: #0f63ac;
  --hover-color: #cae3f95c;
}

*body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
h1 {
  text-transform: uppercase;
}

.bg-color {
  background-color: var(--maincolor);
}

.text-color {
  color: var(--maincolor) !important;
}



.w-active {
  text-decoration: none;
  color: var(--maincolor);
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 50px;
  transition: ease 0.5s;
  font-weight: 500;
}

.w-active:hover {
  color: #fff;
  background-color: var(--hover-color);
  transition: ease 0.5s;
}

.small-heading {
  color: var(--maincolor);
  text-transform: capitalize;
}

.pt-80 {
  padding-top: 60px;
}
.img-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
/* header css starts*/
@media (min-width: 992px) {
  .navbar-nav {
    justify-content: end;
    width: -webkit-fill-available;
  }

  .navbar-nav li a {
    color: black;
    font-weight: 500;
    padding: 10px;
    margin: 0px 5px;
    text-decoration: none;
    transition: ease 0.6s;
    text-transform: uppercase;
  }

  .navbar-nav li a:hover {
    color: var(--maincolor);
    border-radius: 30px;
    transition: ease 0.6s;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    padding-top: 85px;
    display: contents;
  }

  .navbar-nav li {
    margin: 15px 0;
  }

  .navbar-nav li a {
    color: black;
    padding: 10px 15px;
    font-weight: 500;
    text-decoration: none;
  }
}


.navbar-nav .navlink.nav-active {
  color: var(--maincolor);
}

.navbar-nav .dropdown-menu a {
  margin: 0;
}

.navbar-nav .dropdown-menu a:hover {
  border-radius: 0;
}

/* header css ends*/

/* home page css starts*/
.home-top-banner {
  background-image: url(../images/home/team.png);
  height: 80vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.overlay:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    89.96deg,
    #d6d7d7 14.33%,
    rgba(226, 230, 230, 0) 61.2%
  );
}

h1 {
  font-size: clamp(30px, 3vw, 65px);
}

.small-heading {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--maincolor);
  letter-spacing: 3px;
}

.process-card img {
  width: 100px;
  height: 100px;
  background: #d3e8fb;
  padding: 15px;
  border-radius: 50px;
}

.expect-card {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: ease 0.3s;
  cursor: pointer;
}

.expect-card .head {
  color: var(--maincolor);
}

.expect-card p {
  color: #555555;
}

.expect-card:hover.expect-card p {
  color: #fff;
}

.expect-card:hover .head {
  color: #fff;
}

.expect-card:hover {
  border: 1px solid #fff;
  background-color: transparent;
  transition: ease 0.3s;
}

.help-card {
  background-color: #f5f5f5;
  border-radius: 18px;
  transition: ease 0.3s;
}

.help-card h3 {
  color: var(--maincolor);
}

.help-card a {
  background-color: var(--maincolor);
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  transition: ease 0.3s;
  width: fit-content;
  margin: auto;
}

.help-card:hover {
  background-color: var(--maincolor);
  color: #fff;
  transition: ease 0.3s;
}

.help-card:hover h3 {
  color: #fff;
}

.help-card:hover a {
  background-color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  transition: ease 0.3s;
  color: var(--maincolor);
}

#counter li {
  list-style: none;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
}

.connect-banner {
  background-image: url(../images/home/connect-banner.png);
  width: 100%;
  background-position: center;
  background-size: cover;
}

.overlay-banner:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    86.79deg,
    #0f63ac 0%,
    rgba(6, 40, 70, 0.21) 121.33%
  );
}

.company-carousel .owl-item img {
  display: block;
  margin: auto;
  width: fit-content !important;
  filter: grayscale(100%);
}

.slider {
  height: fit-content;
  position: relative;
  width: 100%;

  display: grid;
  place-items: center;
  overflow: hidden;
}
.slider::before,
.slider::after {
  position: absolute;
  /* background-image:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
  content: "";
  height: 100%;
  width: 25%;
  z-index: 2;
  pointer-events: none;
}
.slider::before {
  left: 0;
  top: 0;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/*  IMPORTANT CODE BELOW */

.slide-track {
  width: calc(150px * 20);
  display: flex;
  animation: scroll 20s linear infinite;
  justify-content: space-between;
}

.slide {
  width: fit-content;
  /* height: 65px; */
  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
  padding: 0px 25px;
}
.slide img {
  filter: grayscale(100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-150px * 10));
  }
}
@media screen and (max-width: 768px) {
  .slide-track {
    width: calc(80px * 20);
  }
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-80px * 10));
    }
  }
}

.owl-carousel .owl-nav {
  display: none !important;
}

.contact-banner {
  background-image: url(../images/home/contact-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-us li {
  list-style: none;
  padding: 12px 0;
}

.contact-us li a {
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.contact-us i {
  color: #fff;
}

.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px;
  outline: none;
  margin: 12px 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0px 0px 3px 1px #d3d3d3;
}
.customPreviousBtn {
  position: absolute;
  top: 0;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  right: 55px;
  background: #dbdbdb;
  padding: 5px 14px;
  border-radius: 50px;
  color: #fff;
  transition: ease 0.3s;
}
.customNextBtn {
  position: absolute;
  top: 0;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  right: 10px;
  background: #dbdbdb;
  padding: 5px 14px;
  border-radius: 50px;
  color: #fff;
  transition: ease 0.3s;
}
.customPreviousBtn:hover,
.customNextBtn:hover {
  background: var(--maincolor);
  transition: ease 0.3s;
}
.discover-carousel img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
}
.discover-carousel h3,
.corporate-gallery h3 {
  height: 130px;
}
.logo-carousel .owl-item img {
  display: block;
  margin: auto;
  width: fit-content !important;
}
.solutions-feautures-home {
  background-color: #f6f6f6;
  border-radius: 18px;
  transition: ease 0.3s;
  border: 1px solid;
}
.solutions-feautures-home h3 {
  color: var(--maincolor);
}
.soln-feature-img {
  width: 77px;
  height: 75px;
  object-fit: contain;
}
.solutions-feautures-home:hover .soln-feature-img {
  filter: brightness(0) invert(1);
  transition: ease 0.3s;
}
.solutions-feautures-home:hover {
  background-color: var(--maincolor);
  transition: ease 0.3s;
  color: #fff;
  border: 1px solid;
}
.solutions-feautures-home:hover.solutions-feautures-home h3 {
  color: #fff;
}
/* home page css ends*/

/* about page css starts */

@media (min-width: 992px) {
  .about-top-banner {
    background-image: url(../images/about/top-banner.png);
    height: 95vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: var(--maincolor);
  }

  .our-story-top-banner {
    background-image: url(../images/about/our-story-banner.png);
    height: 75vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: var(--maincolor);
  }

  .about-top-img {
    position: absolute;
    right: 0;
    top: 60%;
  }

  .our-story-img {
    position: absolute;
    right: 0;
    top: 0;
  }

  .mission-vision {
    margin-top: 135px;
  }


}

@media (max-width: 991px) {
  .about-top-banner {
    background-image: url(../images/about/top-banner.png);
    height: 125vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: var(--maincolor);
    padding-top: 100px;
  }

  .our-story-top-banner {
    background-image: url(../images/about/our-story-banner.png);
    padding: 45px 0;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: var(--maincolor);
  }
}

.le{
  margin-left: 40px ;
}
img.team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.team-members {
  height: 120px;
}
.team-members h4 {
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-profile {
  height: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-2-img img {
  width: 100px;
  height: auto;
}

.location {
  width: 20px;
  height: auto;
}

.map-products-img {
  width: 75px;
  height: auto;
}

/* about page css ends */
/* clientele page css starts */
.clientele-top-banner {
  background-image: url(../images/clientele/top-banner.png);
  height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .mobiletabs .nav-tab-item {
    display: flex;
  }

  .mobiletabs .nav-tab-item.active {
    display: flex;
    align-items: center;
  }
  /* 
  .navtabs.mobiletabs .nav-tab-item.active>a:before {
    content: "\f078";
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    color: var(--maincolor);
  } */

  .mobiletabs .nav-tab-item {
    float: left;
    margin: 5px 2px;
  }

  .tab-contents {
    clear: left !important;
  }
}

.navtabs a {
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-tab-item.active > a {
  background-color: var(--maincolor);
  color: #fff;
}

/* clientele page css ends */

/* corporate gallery css starts */
.corporate-gallery img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.logo-item img {
  width: 65%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
/* corporate gallery css ends */

/* fun event gallery css starts */
.event-top-banner {
  background-image: url(../images/gallery/awards/banner.png);
  height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.case-study-1 {
  background-image: url(../images/project-case-study/case-1.3.png);
  height: 80vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.case-study-1:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    358.76deg,
    #000000 -34.48%,
    rgba(0, 0, 0, 0) 113.78%
  );
}
.case-study-2 {
  background-image: url(../images/project-case-study/case-2.3.png);
  height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.case-study-2:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    358.76deg,
    #000000 -34.48%,
    rgba(0, 0, 0, 0) 113.78%
  );
}
.case-study-3 {
  background-image: url(../images/project-case-study/case-3.png);
  height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.case-study-3:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    358.76deg,
    #000000 -34.48%,
    rgba(0, 0, 0, 0) 113.78%
  );
}

.event-top-banner h1 {
  font-size: clamp(30px, 5vw, 70px);
}
@media (min-width: 768px) {
  .event-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px 100px;
    gap: 25px;
  }

  .event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Target every child element to span two rows */
  .event-img > * {
    grid-row: span 2;
  }

  /* Target the 1st and 3rd child elements to span one row each */
  .event-img > *:nth-child(1),
  .event-img > *:nth-child(3) {
    grid-row: span 1;
  }
}
@media (max-width: 767px) and (min-width: 500px) {
  .event-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }
  .event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Target every child element to span two rows */
  .event-img > * {
    grid-row: span 1;
  }
}
@media ((max-width: 499px)) {
  .event-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    margin-top: 10px;
  }
}
.award-photos img {
  width: 100%;
  object-fit: cover;
}
/* fun event gallery css ends */

/* contact page css starts */
.contact-top-banner {
  background-image: url(../images/contact/top-banner.jpg);
  height: 50vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.contact-overlay:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      357.85deg,
      #ffffff 5.55%,
      rgba(247, 247, 247, 0.83) 18.16%,
      rgba(1, 1, 1, 0.29) 98.3%
    ),
    linear-gradient(180deg, rgb(255 255 255) 0%, rgba(153, 153, 153, 0) 23.31%);
}

/* contact page css ends */

/* solutions page css starts */
.solutions-top-banner {
  background-image: url(../images/solutions/top-banner.png);
  height: 90vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.solutions-feautures {
  background-color: #f6f6f6;
  border-radius: 18px;
  transition: ease 0.3s;
}
.soln-feature-img {
  width: 77px;
  height: 75px;
  object-fit: contain;
}
.solutions-feautures:hover .soln-feature-img {
  filter: brightness(0) invert(1);
  transition: ease 0.3s;
}
.solutions-feautures:hover {
  background-color: var(--maincolor);
  transition: ease 0.3s;
  color: #fff;
}
.solutions-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  width: 75%;
  transform: translateY(-50%);
  z-index: -1;
  border-top: 1px dashed var(--maincolor);
}
.solutions-steps span {
  padding: 5px 13px;
}
/* solutions page css ends */

/* career page css starts */
.career-top-banner {
  background-image: url(../images/career/top-banner.png);
  height: 90vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.job-form input {
  padding: 5px;
  border: none;
  outline: none;
  width: 85%;
}
.job-logo img {
  width: 55px;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 5px;
}
.job-apply label {
  font-size: 14px;
}
.apply-btn {
  background: linear-gradient(183.87deg, #0f63ac 2.88%, #084070 96.59%);
}

/* footer css starts */
footer {
  background-color: var(--maincolor);
}

.footer-sc-icons a {
  text-decoration: none;
  color: var(--maincolor);
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease 0.4s;
}

.footer-sc-icons a:hover {
  color: #fff;
  background-color: var(--hover-color);
  transition: ease 0.4s;
}

/* footer css ends */

.testimonial-carousel img {
  padding: 10px;
  border-radius: 50px;
}
.checked {
  color: #ffd12e;
}

.customPreviousBtn1 {
  position: absolute;
  top: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  background: #dbdbdb;
  padding: 5px 14px;
  border-radius: 50px;
  color: #fff;
  transition: ease 0.3s;
  left: -10px;
}
.customNextBtn1 {
  position: absolute;
  top: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  right: -10px;
  background: #dbdbdb;
  padding: 5px 14px;
  border-radius: 50px;
  color: #fff;
  transition: ease 0.3s;
}
.customPreviousBtn1:hover,
.customNextBtn1:hover {
  background: var(--maincolor);
  transition: ease 0.3s;
}
.testimonial-carousel .item {
  height: 335px;
}
.testimonial-carousel p:first-child {
  height: 140px;
  overflow: auto;
}

*::-webkit-scrollbar-track {
  border: 1px solid var(--maincolor);
  background-color: #f5f5f5;
}

*::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--maincolor);
}

.col-md-4 img{
margin-bottom: 30px;
}