@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@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');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
  font-family: Helvetica_bold;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueBold.otf");
}

@font-face {
  font-family: Helvetica_medium;
  src: url("../fonts/helvetica-neue-5/HelveticaNeueMedium.otf");
}

@font-face {
  font-family: Roundkey;
  src: url("../fonts/Roundkey-Font/RoundkeySoft\ Medium.otf");
}

/* Root Styling */
:root {
  --c1: #21adde;
  --c2: #146195;
  --c4: #364D93;

  --c3: linear-gradient(90deg, rgba(14, 186, 177, 1) 0%, rgba(14, 166, 158, 1) 100%);
  --f1: "Inter";
  --f2: "Poppins";
  --f3: "Nunito";
  --f4: 'Helvetica_bold';
  --f5: 'Helvetica_medium';
  --f6: "Montserrat";
  --f7: "Roundkey";
  --f8: "Open Sans";
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c2);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


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

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 12px 35px;
  background: var(--c2);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
}

.themebtn:hover {
  background: var(--c1);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c1);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}

.header__logo {
  width: 100px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.header-main__nav li a {
  font-size: 15px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
}

.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
}

.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

.header-main__nav li a:hover {
  color: var(--c1);
}

.header-main__nav li a.active {
  color: var(--c1);
}

/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 89vh;
  overflow: hidden;
  background: #000;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--f1);
}

.banner_cont h3 {
  font-size: 55px;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 59px;
}

.banner_cont p {
  font-size: 15px;
}

/* baner css end */

/* new css start */

.footer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 0 120px;
}

.footer_overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: hue-rotate(39deg);
}

.footer_main {}

.footer_title1 {
  font-size: 45px;
  font-family: var(--f1);
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.footer_text {
  font-size: 13px;
  font-family: var(--f2);
  color: #fff;
}

.footer_contact input,
textarea {
  width: 90%;
  font-size: 14px;
  font-family: var(--f1);
  height: 50px;
  padding: 0 30px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.footer_contact textarea {
  height: 90px;
  padding-top: 8px;
}

.footer_contact input:focus,
textarea:focus {
  outline: 0;
}

.footer_logo {
  width: 220px;
  margin-top: 3px;
}

.footer_contact_list li {
  display: flex;
  align-items: center;
}

.footer_contact_list li a span {
  display: block;
  margin-left: 37px;
  font-size: 13px;
}

.footer_contact_list {
  margin-top: 30px;
}

.footer_contact_list li a {
  font-size: 13px;
  font-family: var(--f1);
  color: #fff;
  margin-bottom: 20px;
}

.footer_contact_list li a i {
  margin-right: 10px;
  font-size: 26px;
}

.footer_title2 {
  font-size: 18px;
  font-family: var(--f1);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}

.footer_list li a {
  font-size: 13px;
  font-family: var(--f1);
  color: #fff;
  margin-bottom: 10px;
}

.footer_title2:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 3px;
  background: #fff;
  bottom: -14px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0px;
}

.footer__social li a i {
  font-size: 24px;
  color: #fff;
}

.footer__social li:nth-child(4) {
  border-right: 1px solid #ffffff47;
  padding-right: 13px;
}

.footer__social li {
  font-size: 13px;
  font-family: var(--f1);
  color: #fff;
  padding-left: 10px;
}


.full_stack {
  padding: 70px 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.stack_card {
  padding: 40px 40px 20px;
  text-align: center;
  transition: 500ms all;
  border-radius: 10px;
}

.stack_img {
  width: 70px;
  margin: 0 auto;
  transition: 500ms all;
}

.stack_title {
  font-size: 22px;
  font-family: var(--f5);
  margin-top: 10px;
  font-weight: 700;
  transition: 500ms all;
}

.stack_text {
  font-size: 15px;
  font-family: var(--f1);
  transition: 500ms all;
  line-height: 32px;
}

.stack__bt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

.stack__bt .themebtn {
  background: #fff;
  color: var(--c2);
  font-family: var(--f1);
}

.stack_card:hover {
  background: var(--c1);
  transform: scale(1);
  box-shadow: 7px 4px 15px 1px #44444480;
}

.stack_card:hover img {
  filter: invert(1);
}

.stack_card:hover .stack_title {
  color: #fff;
}

.stack_card:hover .stack_text {
  color: #fff;
}

.stack_card:hover .stack__bt {
  opacity: 1;
  visibility: visible;
}

.stack_overlay {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  filter: hue-rotate(35deg);
}

.full_stack__main {
  position: relative;
}

/* new css start */

.footer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 160px 0 30px;
}

.footer_overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer_main {
  position: relative;
}

.footer_title1 {
  font-size: 40px;
  font-family: var(--f1);
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.footer_text {
  font-size: 13px;
  font-family: var(--f2);
  color: #fff;
}

.footer_contact input,
textarea {
  width: 90%;
  font-size: 14px;
  font-family: var(--f1);
  height: 50px;
  padding: 0 30px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: none;
}

.footer_contact textarea {
  height: 90px;
  padding-top: 8px;
}

.footer_contact input:focus,
textarea:focus {
  outline: 0;
}

.footer_logo {
  width: 220px;
  margin-top: 10px;
}

.footer_contact_list li {
  display: flex;
  align-items: center;
}

.footer_contact_list li a span {
  display: block;
  margin-left: 37px;
  font-size: 14px;
}

.footer_contact_list {
  margin-top: 30px;
}

.footer_contact_list li a {
  font-size: 13px;
  font-family: var(--f1);
  color: #fff;
  margin-bottom: 20px;
}

.footer_contact_list li a i {
  margin-right: 10px;
  font-size: 26px;
}

/* nauman */



.business_online {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 26px 0px;
}

.business_online_overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  filter: hue-rotate(25deg);
}

.business_cont h3 {
  color: #fff;
  text-transform: capitalize;
  font-family: var(--f1);
  font-weight: 700;
  font-size: 46px;
}

.business_btn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.about_cont h3 {
  font-family: var(--f1);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 46px;
  line-height: 1.3;
}

.about_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  line-height: 2.1;
  width: 90%;
}

.about_us {
  padding: 90px 0px 100px;
}

.about_card {
  padding: 28px 18px;
  background: #f6fffe;
  border-radius: 20px;
  width: 100%;
  margin-bottom: -20px;
  position: relative;
  box-shadow: 0 0 15px 1px #4444;
}

.about_img {
  padding: 12px 0px;
  border-radius: 20px;
  width: 60px;
  height: auto;
  margin-bottom: 24px;
  filter: hue-rotate(23deg);
}

.about_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about_card_cont h4 {
  font-family: var(--f1);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 19px;
  margin-bottom: 20px;
}

.about_card_cont h6 {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 17px;
}

.about_card_cont a {
  font-family: var(--f1);
  font-weight: 500;
  font-size: 15px;
  color: var(--c1);
}

.about_card.alt {
  margin-top: 68px;
}

.about_img.alt {
  background: gainsboro;
  padding: 8px;
  width: 75px;
}

.about_card.col {
  background: #f3f6f8;
}

.banner_content {
  text-align: -webkit-center;
  position: relative;
}

.banner_content h5 {
  font-size: 21px;
  font-family: var(--f2);
  font-weight: 600;
  color: var(--c2);
  position: relative;
}

.banner_content h5:before {
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--c2);
  left: 34.5%;
  content: '';
  top: 50%;
  transform: translatey(-50%);
}

.banner_content>h3 {
  font-size: 75px;
  font-family: var(--f2);
  color: #333133;
  font-weight: 700;
}

.banner_content>h3 span {
  color: var(--c2);
}

.banner_content p {
  font-family: var(--f2);
  font-weight: 500;
  color: #333133;
  margin: 10px 0 0;
}

.banner_bottom {
  display: flex;
  align-items: center;
  width: 65%;
  margin: 30px auto 0;
  justify-content: space-between;
}

.banner_botCon span {
  font-size: 16px;
  color: #444;
  text-align: left;
}

.banner_botCon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 78px;
  font-family: var(--f7);
  color: #444;
}


.banner_clients {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clint_img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid #221D29;
  scale: 1.4;
}

.costumerCon p {
  margin: 0;
  font-size: 14px;
  text-align: start;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: var(--f1);
  color: #444;
}

.rating i {
  color: #FFC700;
  font-size: 14px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 110px 0 0;
  min-height: 90vh;
}

.star {
  width: 30px;
  height: 30px;
  position: absolute;
  animation: shine 2s linear infinite;
  filter: hue-rotate(38deg);
}

.star--top {
  top: -70px;
  left: 80px;
}

.star--left {
  top: 0px;
  left: -40px;
  width: 40px;
  height: 40px;
}

.star--right {
  right: 0px;
  top: 30px;
}

.star--bottom {
  top: 160px;
  right: 30px;
  width: 40px;
  height: 40px;
}

.star--right {
  width: 30px;
  height: 30px;
}

@keyframes shine {
  0% {
    scale: 1;
    opacity: 0.1;
  }

  50% {
    scale: 1.5;
    opacity: 1;
  }

  100% {
    scale: 1;
    opacity: 0.1;
  }
}

.scroll_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  display: grid;
  place-content: center;
  filter: hue-rotate(45deg);
}

.arrow_img {
  width: 25px;
  height: 25px;
}

.arrow_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  animation: spinner 6s linear infinite;
}

@keyframes spinner {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about_card:before {
  position: absolute;
  width: 101%;
  height: 101%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  background: linear-gradient(180deg, var(--c1) 20%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  border-radius: 20px;
}

.about_card.col:before {
  position: absolute;
  width: 101%;
  height: 101%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  background: linear-gradient(180deg, var(--c4) 20%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  border-radius: 20px;
}

.themebtn--trans {
  border: 1px solid #fff;
  background: transparent !important;
}

.themebtn--white {
  background: #fff;
  color: var(--c2);
}

.themebtn--white:after {
  background: var(--c2);
}

.themebtn--white:hover {
  color: #fff;
}

.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header_nav li a {
  font-size: 15px;
  font-family: var(--f1);
  color: #444;
  position: relative;
}

.header_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn1 {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f2);
  font-weight: 500;
}

.btn1 i {
  font-size: 18px;
}

header.header {
  position: absolute;
  width: 100%;
  padding: 20px 0;
  z-index: 99;
}

.clint_item {
  margin: 0 !important;
}

.custumer_images .slick-list {
  padding: 10px 7px;
}

.clints__main {
  width: 90px;
}

.header_nav li a:before {
  position: absolute;
  width: 0%;
  height: 2px;
  background: #444;
  content: '';
  bottom: 0;
  transition: 500ms all;
  left: 0;
}

.header_nav li a:hover:before {
  width: 100%;
}

/* project section css start */

.swiper-container {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.project {
  padding: 70px 0px;
}

.project .container {
  overflow: hidden;
}

.project_img {
  width: 100%;
  height: 480px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 0px #a1a1a1;
  border-radius: 3px;
}

.project_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 500ms;
}

.project_img:hover img {
  object-position: bottom;
}

.swiper-pagination {
  display: none !important;
}

.swiper-button-prev {
  display: none;
}

.swiper-button-next {
  display: none;
}

.swiper-slide.project_item.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active {
  transform: scale(1.2) !important;
}

/* project section css end */


.section_title h3 {
  font-size: 43px;
  font-family: var(--f1);
  font-weight: 700;
  text-transform: capitalize;
  color: #042638;
}

.section_title p {
  font-size: 15px;
  font-family: var(--f2);
  color: #000;
}

.width_60 {
  width: 60%;
}



/* consultation section css start */

.marquee {
  overflow-x: clip;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
}

.marquee-inner img {
  height: 100%;
  transition: transform 0.5s;
  width: 25vw;
  border-radius: 16px;
}

.marquee-inner img:hover {
  transform: scale(1.03);
}


.marquee-inner .consultation_img:nth-child(even) {
  transform: rotate(6deg);
  position: relative;
  z-index: 1;
}

.marquee-inner .consultation_img:nth-child(odd) {
  transform: rotate(-10deg);
}

.consultation_img {
  margin: 0px -13px;
}

.consultation_img:hover {
  position: relative;
  z-index: 99;
}

/* consultation section css end */

.consultation {
  margin-bottom: -70px;
  position: relative;
  z-index: 99;
  padding-top: 70px;
}



/* testimonial section css start */

/* ----------------testimonials--------------- */

.testimonial {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  align-items: center;
  padding: 70px 0;
  background: #F3FBFA;
}

.testi_overlay {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  filter: hue-rotate(35deg);
}

.testi_main {
  position: relative;
}

.testi_title {
  font-size: 45px;
  font-family: var(--f3);
  font-weight: 800;
  color: #000;
  text-transform: capitalize;
}

.testi_qoute {
  width: 65px;
  height: 65px;
  background: var(--c2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 34px 0;
}

.testi_qoute i {
  font-size: 40px;
  color: #fff;
}

.testi_text {
  font-size: 25px;
  font-family: var(--f1);
  line-height: 49px;
  color: #000;
  font-weight: 500;
  margin-bottom: 50px;
}

.testi_user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.test_user_left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi_user_img {
  width: 90px;
}

.testi_name {
  font-size: 34px;
  font-family: var(--f8);
  color: #000;
  line-height: 34px;
  font-weight: 700;
}

.testi_name span {
  display: block;
  font-size: 18px;
  color: #444444;
  font-family: var(--f7);
  font-weight: 500;
}

.testi_rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.testi_rating li i {
  font-size: 30px;
  color: #F79F1F;
}

/* testimonial section css end */

.testo_item.blurred img {}


.testo_item {
  padding: 40px 50px;
  box-shadow: 0px 0px 1px 1px var(--c2);
  border-radius: 20px;
  width: 76%;
  background: #F6FFFE;
}

.testo_cont p {
  font-size: 14px;
  font-family: var(--f2);
  margin: 20px 0px;
  font-weight: 500;
  line-height: 2;
}

.user_img {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 100%;
}

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

.user_detail h5 {
  font-size: 21px;
  font-family: var(--f8);
  font-weight: 700;
  margin-bottom: 3px;
  color: #000;
}

.user_detail span {
  font-size: 14px;
  font-family: var(--f8);
  font-weight: 400;
}

.user_main ul {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f79f1f;
  font-size: 17px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote_img {
  width: 60px;
  height: 60px;
  background: var(--c2);
  border-radius: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testo_main {
  position: relative;
  margin: 30px 0px;
}

.testo_item.blurred {
  position: absolute;
  top: -28px;
  right: 32px;
  z-index: -1;
  filter: blur(5px);
}

.testo_slider .draggable {
  padding: 100px 0px !important;
}

.testi_cont {
  width: 92%;
}

.testo_btn {
  margin-top: 40px;
}

.technology {
  padding: 70px 0;
}

.techno_image {
  width: 100%;
  height: 372px;
}

.tech_img_box {
  width: 70px;
  height: 60px;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px 0 #b7b6b6;
  transition: 500ms;
}

.tech_img {
  width: 100%;
  height: 28px;
  filter: hue-rotate(15deg);
}

.techno_crd {
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 10px 0 lightgray;
  padding: 15px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.tech_cont {
  width: 300px;
}

h3.tech_title {
  font-size: 15px;
  font-family: var(--f3);
  font-weight: 700;
}

.tech_text {
  font-size: 11px;
  font-family: var(--f2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: height 0.5s ease;
  margin: 0;
  height: 50px;
  overflow: hidden;
}

.techno_crd::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 100%;
  left: 0;
  background: var(--c1);
  opacity: 0;
  transition: 500ms;
}

.techno_crd:hover .tech_text {
  height: 100px;
}

.techno_crd:hover::before {
  opacity: 1;
}

.techno_crd:hover {
  align-items: flex-start;
}

.text-black h3 {
  color: #000 !important;
}

.width_80 {
  width: 80%;
}

.mb-4rem {
  margin-bottom: 5rem;
}

.header_nav li a:hover {
  color: var(--c2);
}

.header_nav li a:hover:before {
  background: var(--c3);
}

.stack__bt .themebtn:hover {
  color: #fff;
}

.about_card.col a {
  color: var(--c2);
}

.sub_menu {
  position: absolute;
  width: max-content;
  background: #ffffffa1;
  backdrop-filter: blur(9px);
  border-radius: 20px;
  min-width: 320px;
  top: 100px;
  transition: 300ms all;
  box-shadow: 0 0 15px 1px #4444;
  opacity: 0;
  visibility: hidden;
}

.sub_menu li a {
  width: 100%;
  padding: 10px 10px 10px 0;
  margin: 0 0 0 20px;
}

.sub_menu li a:before {
  display: none;
}

.sub_menu li a:after {
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--c1);
  content: '';
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  transition: 500ms all;
}

.sub_menu li a:hover {
  padding-left: 27px !important;
  color: var(--c1);
}

.sub_menu li a:hover:after {
  width: 21px;
}

.header_nav li:hover .sub_menu {
  top: 90px;
  opacity: 1;
  visibility: visible;
}

.banner--inner {
  min-height: 60vh;
}

.serv_content h3 {
  font-family: var(--f3);
  font-weight: 700;
  font-size: 30px;
  color: var(--c2);
}

.serv_list {
  margin: 20px 0 0;
}

.serv_list li {
  margin: 0 0 10px;
  font-size: 14px;
  color: #444;
}

.serv_content {
  margin: 0 0 40px;
}

.serv_img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.serv_innerList li {
  padding: 18px 0 18px 35px;
  font-size: 20px;
  font-family: var(--f1);
  position: relative;
}

.serv_innerList li:before {
  position: absolute;
  font-size: 30px;
  font-family: 'boxicons';
  content: "\ed31";
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  color: var(--c1);
}

.servcon_list {
  margin: 20px 0 0;
}

.servcon_list li {
  margin: 0 0 10px;
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  padding-left: 20px;
}

.servcon_list li:before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: '';
  background: var(--c2);
  border-radius: 100%;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

.service_about {
  padding-bottom: 40px;
}

.service_sec {
  padding: 100px 0 70px;
}

.about_card--alt h6 {
  font-size: 14px;
}

.about_cont--alt h3 {
  width: 100%;
}

.about_us {
  position: relative;
}

.business_cont p {
  font-size: 14px;
  margin: 10px 0 0;
  color: #fff;
  line-height: 24px;
}

.caseStudies {
  padding: 70px 0;
}

.case_studies_card {
  padding: 50px;
  background: var(--c4);
  border-radius: 28px;
  position: relative;
  height: 390px;
  margin-top: 50px;
  overflow: hidden;
}

.case_title {
  font-size: 35px;
  font-family: var(--f1);
  color: #fff;
  font-weight: 600;
}

.class_text {
  font-size: 14px;
  font-family: var(--f2);
  color: #fff;
}

.case_study__image {
  width: 47%;
  height: 354px;
  position: absolute;
  right: 51px;
  bottom: -7px;
  border-radius: 10px;
}

.case_study__image img {
  border-radius: 10px;
  transition: 500ms all;
}

.case_study__image:hover img {
  transform: scale(1.1);
}

.case_cont {
  margin-top: 70px;
  width: 90%;
}


.port__tabs .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.port_image {
  width: 100%;
  height: 548px;
  cursor: pointer;
  position: relative;
}

.port_image img {
  object-position: top;
  transition: 3000ms all;
}

.portfolio_sec {
  padding: 30px 0 0;
}

.portfolio_sec .row .col-md-3 {
  padding: 0;
  margin: 0;
}

.port_image:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: #00000073;
  transition: 500ms all;
  opacity: 0;
  visibility: hidden;
}

.port_image:hover:before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.port_image:hover img {
  object-position: bottom;
}

.port_image:after {
  position: absolute;
  content: "\ebf7";
  font-family: boxicons;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 500ms all;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 50px;
}

.port_image:hover:after {
  opacity: 1;
  visibility: visible;
}

.portfolio {
  padding: 100px 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: gray;
}

.nav-pills .nav-link {
  background: var(--c2);
  color: #fff;
  font-size: 14px;
  font-family: var(--f1);
}

.serv_img--alt {
  position: sticky !important;
  top: 10px;
  height: 490px;
}

.serv_inerrContent h4 {
  font-size: 25px;
  font-family: var(--f2);
  color: #000;
  margin: 0 0 10px;
}

.serv_inerrContent {
  margin: 0 0 10px;
}

.business_cont--alt h3 {
  font-size: 30px;
}

.about_Innerimg {
  width: 100%;
  height: 609px;
}

.about_innerContent h5 {
  color: var(--c2);
  font-size: 14px;
  font-family: var(--f2);
  text-transform: uppercase;
}

.about_innerContent h3 {
  font-size: 50px;
  font-family: var(--f2);
  font-weight: 700;
}

.about_innerContent p {
  font-size: 14px;
  line-height: 30px;
  margin: 20px 0;
}

.about_Innerimg img {
  object-position: bottom;
}

.about_Sec {
  padding: 70px 0 0;
}

.blogs {
  padding: 70px 0px;
}

.learnint_main_img {
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: 4px;
}

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

.blog_main_cont {
  margin-top: 10px;
  padding: 0px 5px;
}

.learninr_main_title {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 700;
  color: #042638;
}

.learninr_main_title:hover {
  color: var(--c2);
}

.blog_main_cont p {
  margin: 4px 0px 12px;
  font-size: 16px;
  color: #79858b;
}

.blog_main_link {
  font-size: 19px;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 500;
  color: var(--c1);
}


.blog_main_link:hover {
  letter-spacing: 1px;
}

.blog_item_img {
  width: 100%;
  height: 233px;
  overflow: hidden;
  border-radius: 4px;
}

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

.blog_item_cont {
  margin-top: 10px;
  padding: 0px 5px;
}

.blog_item_title {
  font-size: 17px;
  font-family: var(--f2);
  font-weight: 600;
  color: #042638;
}

.blog_item_title:hover {
  color: var(--c1);
}


.blog_items {
  margin-bottom: 30px;
}

a.logo img {
    width: 140px;
}
.case_cont a {
    color: #fff;
    text-decoration: underline !important;
}
.banner_content h4 {
  font-size: 40px;
  font-family: var(--f1);
  font-weight: 700;
  margin: 0;
}

.caseStudiesDetail {
    padding: 70px 0px;
}

.caseStudiesDetail_main h5 {
    font-size: 20px;
    font-family: var(--f1);
    font-weight: 600;
}

.caseStudiesDetail_main p {
    font-size: 16px;
}

.benefits_item h4 {
  font-size: 20px;
  font-family: var(--f1);
  font-weight: 600;
}

.benefits_item p {
  font-size: 14px;
}

.benefits_item {
  margin-bottom: 24px;
}