:root {
  --black-clr: #000000;
  --white-clr: #fff;
  --text-471: #5d6471;
  --text-63e: #1d263e;
  --text-E64: #303e64;
  --btn-clr: #172d67;
  --clr-4ff: #f0f4ff;
}


html,
body {
  font-family: "Gabarito", sans-serif;
  position: relative;

}

body {
  overflow-x: hidden;
}

ul {
  margin-bottom: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

button,
input,
textarea {
  border: 0;
  outline: none;
}

.flex {
  display: flex;
}

.item-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmn-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 42px;
  color: var(--text-63e);
  text-align: center;
}

body.hidden {
  overflow: hidden;
}

@keyframes slideIn {
  from {
    transform: translateX(310px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }  

  to {
    transform: translateX(310px);
    opacity: 0;
  }
}

@keyframes slideDown{
  0%{
    transform: translateY(-100px);
    opacity:0;

  }
  100%{
    transform: translateY(0);
    opacity:1;
  }
}

@keyframes slideRight{
  0%{
    transform: translateX(-165px);
    opacity:0;

  }
  100%{
    transform: translateY(0);
    opacity:1;
  }
}

@keyframes slideLeft{
  0%{
    transform: translateX(165px);
    opacity:0;

  }
  100%{
    transform: translateY(0);
    opacity:1;
  }
}

.help-block {
  font-size: 13px;
  color: red;
  margin-top: 5px;
  display: block;
}

/* navbar */
.nav-wrapper {
  padding-top: 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
}

.nav-wrapper.navbar-scrolled {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.5s ease-in-out;
  pointer-events: none;
}

.nav-wrapper.navbar-scrolled .nav-title {
  pointer-events: auto;
}

.nav-wrapper.scrolled-top {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  box-shadow: 0 0 9px #00000014;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
}

.nav-logo {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.nav-btn {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

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

.nav-title {
  background-color: #f0f4ff;
  width: 404px;
  height: 46px;
  display: flex;
  justify-content: space-around;
  border-radius: 62px;
  align-items: center;
  transition: 0.5s ease-in-out;
}

.nav-tab {
  position: relative;
}

.nav-indicator {
  position: absolute;
  background-color: #fff;
  height: 38px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.navbar-scrolled .nav-title {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--btn-clr);
  transition: 0.5s ease-in-out;
}

.navbar-scrolled .nav-title .links  {
  color:#ffffff;
  transition: all 0.3s ease-in-out;
}

.nav-wrapper.navbar-scrolled  .nav-title .links:hover {
  color:#ffffff;
}


.nav-wrapper.navbar-scrolled .nav-title .links.active {
  color: #14223e;
}

.nav-title .links {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: var(--text-471);
  padding: 10px 15px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.nav-title .links.active {
  /* background-color: var(--white-clr); */
  color: #14223e;
}

.nav-title .links:hover {
  color: #14223e;
}

.nav-btn {
  display: flex;
  align-items: center;
}

.nav-btn a {
  color: var(--white-clr);
  background-color: var(--btn-clr);
  padding: 12px 24px 11px 24px;
  border-radius: 25px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.nav-btn a:hover {
  background-color: var(--text-63e);
}

.nav-btn .cont-btn i {
  transform: translateX(-15px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.nav-btn .cont-btn:hover i {
  transform: translateX(5px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.nav-btn .cont-btn span {
  transform: translateX(6px);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.nav-btn .cont-btn:hover span {
  transform: translateX(-5px);
  transition: all 0.3s ease-in-out;
}

.ham-btn {
  display: none;
}

.navbar-mob {
  display: none;
}

/* main-section */
.main-content {
  padding-top: 160px;
  overflow-x: hidden;
  position:relative;

}

.main-content .container {
  background-image: url("../images/BANNER.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 87px;
  padding-bottom: 69px;
  /* min-height: 503px; */
}

.hero-img1-ani{
  animation: slideRight 1.5s ease-in-out forwards;
}

.hero-img2-ani{
  animation: slideDown 1.5s ease-in-out forwards;
}

.hero-img3-ani{
  animation: slideRight 1.5s ease-in-out forwards;
}

.hero-img4-ani{
  animation: slideLeft 1.5s ease-in-out forwards;
}
/* 
.animate {
  animation: slide 1s ease-in-out forwards;
} */

.hero-img1,
.hero-img2,
.hero-img3,
.hero-img4{
  position: absolute;
  /* opacity: 0; 
  transform: translateX(0);
  transition: opacity 0.1s ease */
}

.hero-img1 {
  top: 128px;
  right: 282px;
  opacity: 1;
}

.hero-img2 {
  top: 20px;
  right: -9px;
  opacity: 1;
}

.hero-img3 {
  top: 335px;
  right: 307px;
  opacity: 1;
}

.hero-img4 {
  top: 316px;
  right: -11px;
  opacity: 1;
}

.hero-row{
  position:relative;
}

.banner-img{
  position:relative;
}

.h-image-col{
  position:absolute;
  top: -90px;
}

.hero-title {
  font-size: 49px;
  line-height: 58px;
  font-weight: 500;
  max-width: 653px;
  color: var(--text-63e);
  margin-bottom: 60px;
}

.hero-desc {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--text-471);
  max-width: 587px;
  margin-bottom: 20px;
}

.cmn-btn {
  display: flex;
}

.cmn-btn a {
  color: var(--white-clr);
  background-color: var(--btn-clr);
  padding: 14px 24px 14px 18px;
  width: 134px;
  border-radius: 25px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cmn-btn a:hover {
  background-color: var(--text-63e);
}

.cmn-btn .cont-btn i {
  transform: translateX(-15px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.cmn-btn .cont-btn:hover i {
  transform: translateX(12px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.cmn-btn .cont-btn span {
  transform: translateX(12px);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.cmn-btn .cont-btn:hover span {
  transform: translateX(1px);
  transition: all 0.3s ease-in-out;
}


/* partnership */
.partners {
  padding-top: 35px;
}

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

.partner-image img {
  width: 100%;
  height: auto;
}

/* innovative-strategies */
.innovative-strategies {
  margin-top: 100px;
}

.invo-container {
  background-color: var(--clr-4ff);
  border-radius: 30px;
  padding: 70px 59px;
}

.invo-image {
  margin-bottom: 15px;
}

.invo-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-E64);
  margin-bottom: 15px;
}

.invo-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-471);
}

.invo-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.invo-col {
  width: 320px;
  min-height: 406px;
  background-color: #fff;
  padding: 30px;
  border-radius: 25px;
  transition: box-shadow 0.3s ease-in-out;
}

.invo-col:hover {
  /* box-shadow: 0 8px 15px rgba(0, 45, 95, 0.3); */
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); */
  box-shadow:  0 8px 15px rgba(0, 0, 0, 0.09)
}

/* connecting-brands */
.connecting-brand {
  margin-top: 100px;
  overflow-x: hidden;
  position: relative;
}

.cb-img{
  position:relative;
}

.hundred-image{
  margin-top: 20px;
}

.hundred-image span{
  background-color: #FFFFFF;
  box-shadow: 0px 6.86px 30.2px 0px rgba(0, 0, 0, 0.09);
  padding: 9px 28px 9px 22px;
  border-top-right-radius: 43px;
  border-bottom-right-radius: 43px;
  color:#172D67;
  transition: all 0.3s ease-in-out;
}

.hundred-image span:hover{
 color: #232323;
}


.hundred, .growth, .buzzer, .expert {
  position: absolute;
}

.cb-image {
  width: 493px;
  margin-top: -35px;
}

.hundred {
  top: 97px;
  left: -7px;
}

.growth{
  top: 170px;
  right: 25px;
}

.buzzer{
  top: 303px;
  left: -15px;
}

.expert{
  top: 385px;
  right: -7px;
}

.expert-wrap{
  position: relative;
}

.count-expert{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #172D67;
  transition: all 0.3s ease-in-out;
}

.count-expert:hover{
  color: #232323;
}

.hundred-ani{
  animation: slideRight 1.5s ease-in-out forwards;
}

.growth-ani{
  animation: slideDown 1.5s ease-in-out forwards;
}

.buzzer-ani{
  animation: slideRight 1.5s ease-in-out forwards;
}

.expert-ani{
  animation: slideLeft 1.5s ease-in-out forwards;
}


.count-expert span {
  display: inline-block; 
  width: 3ch; 
  text-align: right; 
}




.cb-image img {
  width: 100%;
  height: auto;
}

.cb-content {
  width: 555px;
}

.cb-row {
  margin-top: 50px;
}

.cb-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: #3d4865;
  margin-bottom: 20px;
}

.cb-desc {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-471);
  font-weight: 400;
  margin-bottom: 25px;
  width: 536px;
}

.cb-plan-cont {
  background-color: #f0f4ff;
  border-radius: 15px;
  padding: 20px 25px 20px 20px;
}

.cb-plan-cont:not(:last-child) {
  margin-bottom: 16px;
}

.cb-plan-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #3d4865;
  margin-bottom: 10px;
}

.cb-plan-desc {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: var(--text-471);
}

/* industries-we-serve */
.industries-we-serve {
  margin-top: 100px;
}

.industry-we-serve {
  background-color: #f0f4ff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.industry-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--text-471);
  text-align: center;
}

.industry-wrap {
  box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.09);
  min-height: 165px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  transition: box-shadow 0.3s ease-in-out;
}

.industry-wrap:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.industry-wrap .industry-image {
  display: flex;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s ease-in-out;
}

.industry-wrap:hover .industry-image {
  transform: translateY(-7px);
}

.industry-row {
  margin-top: 39px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* get-in-touch */
.get-in-touch {
  margin-top: 100px;
  position:relative;
  overflow-x: hidden;
}

.git-row {
  margin-top: 30px;
}


.contact-form label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #5d6471;
  margin-bottom: 5px;
}

.form-group .field {
  width: 263px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}

.form-group .field:hover {
  border: 1px solid #172d67;
}

.form-group .field:active {
  border: 1px solid #172d67;
}

.contact-form {
  width: 556px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: baseline;
}

#message {
  width: 556px;
  height: 100px;
}

.contact-btn {
  width: 164px;
}

.contact-btn button {
  color: var(--white-clr);
  background-color: var(--btn-clr);
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 164px;
  transition: all 0.3s ease-in-out;
}

.contact-btn button:hover {
  background-color: var(--text-63e) !important;
}

.contact-btn .form-btn i {
  transform: translateX(-15px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover .form-btn i {
  transform: translateX(5px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.contact-btn .form-btn span {
  transform: translateX(6px);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover .form-btn span {
  transform: translateX(-5px);
  transition: all 0.3s ease-in-out;
}

.git-img{
  position:relative;

}

.git-col{
  display:flex;
  justify-content:center;

}

.g-cont a{
  box-shadow: 0px 6.86px 30.21px 0px rgba(0, 0, 0, 0.09);
  color: #172d67;
  background-color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  border-radius: 30px;
  padding: 11px 17px 10px 19px;
  transition: all 0.3s ease-in-out;
}

.g-mail a{
  box-shadow: 0px 6.86px 30.21px 0px rgba(0, 0, 0, 0.09);
  color: #172d67;
  background-color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  border-radius: 30px;
  padding: 11px 17px 10px 19px;
  transition: all 0.3s ease-in-out;
}

.g-cont a:hover{
  color:#232323;
}

.g-mail a:hover{
color:#232323;
}

.git-contact, .git-mail{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.git-contact{
  position: absolute;
  top: 43px;
  left: calc(16.5% - 117px);
}

.git-mail{
  position: absolute;
  top: 258px;
  right: calc(11% - 117px);
}

.g-cont, .g-mail{
  margin-top: -28px;
}

.git-contact-ani{
  animation: slideRight 1.5s ease-in-out forwards;
}

.git-mail-ani{
  animation: slideLeft 1.5s ease-in-out forwards;
}
/* footer */
footer {
  margin-top: 60px;
}

.footer {

  background-color: #172d67;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  padding-top: 60px;
  position: absolute;
  width: 100%;
}

.footer-logo-sec p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
}

.quick-links a {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.quick-links a:hover {
  color: #9abdff;
}

.quick-links li:not(:last-child) {
  margin-bottom: 15px;
}

.info span {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.info-icon::before {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin-right: 12px;
  transition: color 0.3s ease-in-out;
}

.info:hover .info-icon::before {
  color: #9abdff;
}

.info:hover span {
  color: #9abdff;
}

.address {
  display: flex;
}

.info:not(:last-child) {
  margin-bottom: 15px;
}

.social-media {
  display: flex;
  justify-content: right;
  gap: 20px;
}

.social-media a {
  transition: all 0.1s ease-in-out;
}

.social-media a:hover {
  transform: scale(0.9);
}

/* .copyright-wrap p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 17px;
}



.copyright-wrap p span {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
} */

.info-add {
  margin-left: 8px;
}

.copyright-links a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 17px;
  transition: color 0.3s ease-in-out;
}

.copyright-links a:hover {
  color: #9abdff;
}

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

.copyright-wrap .fa-copyright {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}

.copyright-links {
  display: flex;
  align-items: center;
  gap: 50px;
}

.copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 0.5px solid #5d6471;
  margin-top: 60px;
}

.copyright-wrap p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 3px;
  position:relative;
}

.copyright-wrap p span {
  font-weight: 400;
  color: #ffffff;
  font-size: 26px;
  line-height: normal;
  transform: translateY(4px);
  display: inline-block;
 
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Media Queries----- */

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 1400px) {
  .main-content .container {
    padding-top: 125px;
    padding-bottom: 110px;
    /* min-height: auto; */
  }

  .hero-img1{
    top: 119px;
    right: 333px;
  }
  
  .hero-img2{
    top: 5px;
    right: 7px;
  }
  
  .hero-img3{
    top: 350px;
    right: 360px;
  }

    .hero-img4 {
      top: 327px;
      right: 14px;
    }

      .cb-image {
        width: 482px;
        margin-top: -17px;
      }

    .hundred{
      top: 97px;
      left: -15px;
    }
  
    .growth{
      top: 159px;
      right: 125px;
    }
    
    .buzzer{
      top: 295px;
      left: -19px;
    }
    
    .expert {
      top: 378px;
      right: 93px;
    }
  
  
}

@media screen and (max-width: 1199px) {
  .hero-desc {
    max-width: 558px;
  }

  .hero-img1 {
    top: 154px;
    right: 232px;
    width: 180px;
}

.hero-img2 {
  top: 46px;
  right: -9px;
  width: 120px;
}

.hero-img3 {
  top: 329px;
  right: 250px;
  width: 164px;
}

.hero-img4 {
  top: 323px;
  right: -21px;
  width: 145px;
}

  .hero-title {
    font-size: 42px;
    max-width: 600px;
  }

  .hero-img1 img,  .hero-img2 img, .hero-img3 img, .hero-img4 img{
    width:100%;
  }

  .main-content .container {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .invo-row {
    gap: 20px;
  }

  .invo-col {
    padding: 30px 20px;
  }

  .cb-content {
    width: 100%;
  }

  .cb-desc {
    width: 100%;
    text-align: center;
  }

  .cb-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .hundred {
    top: 97px;
    left: 210px;
  }

  .growth {
    top: 170px;
    right: 194px;
  }

  .buzzer {
    top: 303px;
    left: 205px;
  }

  .expert {
    top: 385px;
    right: 162px;
  }
  .cb-title {
    text-align: center;
  }

  .cb-plan {
    display: flex;
    gap: 30px;
    margin-top: 30px;
  }

  .cb-plan-cont {
    height: 200px;
    width:50%;
  }

  .cb-row {
    margin-top: 30px;
  }

  .industry-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .git-image {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .contact-form {
    width: 716px;
    margin: auto;
  }

  .form-group .field {
    width: 340px;
  }

  #message {
    width: 716px;
  }

  .contact-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .social-media {
    justify-content: left;
  }

  .git-contact {
    position: absolute;
    top: 43px;
    left: calc(15.5% - 117px);
  }

  .git-mail {
    top: 253px;
  }
}


@media screen and (min-width: 992px) {

  .nav-wrapper.navbar-scrolled {
    background-color: transparent;
    transition: 0.5s ease-in-out;

  }

  .nav-wrapper.navbar-scrolled .nav-logo {
    opacity: 0;
    transition: 0.5s ease-in-out;
  }

  .nav-wrapper.navbar-scrolled .nav-btn {
    opacity: 0;
    transition: 0.5s ease-in-out;
  }

}

@media screen and (max-width: 991px) {

  .nav-wrapper.navbar-scrolled {
    box-shadow: 0 0 9px #00000014;
    pointer-events: auto;
  }

  .ham-btn {
    display: inline-block;
    cursor: pointer;
  }

  .ham-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s ease-in-out;
  }

  .ham-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ham-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .ham-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .navbar-mob.show {
    display: block;
  }

  .navbar-mob .mob-links {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    color: var(--text-471);
    padding: 10px;
    border-radius: 20px;
    transition: color 0.3s ease-in-out;
  }

  .nav-mob-title .mob-links.active {
    color: #14223e;
  }

  .nav-mob-title .mob-links:hover {
    color: #14223e;
  }

  .nav-mob-btn a {
    color: var(--white-clr);
    background-color: var(--btn-clr);
    padding: 12px 24px 11px 24px;
    border-radius: 25px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .nav-mob-btn a:hover {
    background-color: var(--text-63e);
  }

  .nav-mob-btn .cont-btn i {
    transform: translateX(-15px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .nav-mob-btn .cont-btn:hover i {
    transform: translateX(6px);
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .nav-mob-btn .cont-btn span {
    transform: translateX(5px);
    display: inline-block;
    transition: all 0.3s ease-in-out;
  }

  .nav-mob-btn .cont-btn:hover span {
    transform: translateX(-5px);
    transition: all 0.3s ease-in-out;
  }


  .mob-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-mob-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .navbar-mob {
    position: absolute;
    background-color: #f0f4ff;
    top: 80px;
    width: 300px;
    right: 0;
    height: 100vh;
    padding: 20px;
    animation: slideOut 0.5s forwards;
    visibility: hidden;
  }

  .navbar-mob.show {
    display: block;
    animation: slideIn 0.5s forwards;
    visibility: visible;
  }

  .nav-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }



  .overlay {
    pointer-events: none;
    position: fixed;
    background: var(--black-clr);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    height: 100%;
    width: 100%;
    left: 0;
    top: 40px;
  }

  .overlay.active {
    opacity: 0.7;
    pointer-events: all;
  }

  .nav-mob-btn {
    margin-top: 24px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 43px;
    margin-bottom: 35px;
    max-width: 390px;
  }

  .hero-desc {
    max-width: 440px;
  }

  .main-content .container {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .partner-wrap {
    gap: 10px 30px;
  }

  .invo-row {
    gap: 30px;
    flex-direction: column;
  }

  .invo-col {
    width: 100%;
    min-height: 285px;
  }

  .cmn-title {
    font-size: 30px;
    line-height: 35px;
  }

  .industry-wrap {
    padding: 20px 10px;
  }

  .industry-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-desc {
    max-width: 400px;
  }

  .footer-row {
    gap: 50px 0px;
  }

  .quick-col {
    display: flex;
    justify-content: end;
  }

  .social-media {
    justify-content: right;
  }

  .main-content {
    padding-top: 130px;
  }

  .form-group .field {
    width: 330px;
  }

  .contact-form {
    width: 690px;
    margin: auto;
  }

  #message {
    width: 690px;
  }

  .hero-img1 {
    top: 140px;
    right: 153px;
    width: 160px;
  }

  .hero-img2 {
    top: 61px;
    right: -24px;
    width: 110px;
  }

  .hero-img3 {
    width: 145px;
    top: 282px;
    right: 164px;
  }

  .hero-img4 {
    width: 145px;
    top: 253px;
    right: -20px;
  }

  .hero-img1 img,  .hero-img2 img, .hero-img3 img, .hero-img4 img{
    width:100%;
  }

  .growth {
    top: 170px;
    right: 74px;
  }

  .hundred {
    top: 97px;
    left: 96px;
  }

  .buzzer {
    top: 303px;
    left: 86px;
  }

  .expert {
    top: 385px;
    right: 45px;
  }

}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .main-content {
    padding-top: 85px;
  }

  .hero-desc {
    max-width: 100%;
    text-align: center;
    margin-bottom: 35px;
  }

  .cmn-btn {
    text-align: center;
    justify-content: center;
  }

  .partner-wrap {
    gap: 10px 16px;
  }

  .invo-container {
    padding: 50px 30px;
  }

  .cmn-title {
    font-size: 25px;
    line-height: 30px;
  }

  .cb-plan {
    gap: 15px;
    flex-direction: column;
  }

  .cb-row {
    margin-top: 20px;
  }

  .cb-plan-cont {
    height: 160px;
    width: 100%;
  }

  .cb-image {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .industry-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-content .container {
    background-image: none;
  }

  .h-image-col{
    display:none;
  }

  .contact-form {
    width: 100%;
    flex-direction: column;
  }

  .form-group .field {
    width: 100%;
  }

  .contact-form .form-group {
    width: 100%;
  }

  #message {
    width: 100%;
  }

  .git-image img {
    width: 100%;
    height: auto;
  }

  .git-image {
    margin-bottom: 20px;
  }

  .partners {
    padding-top: 40px;
  }


  .quick-col {
    justify-content: start;
  }

  .social-media {
    justify-content: left;
  }

  .footer-row {
    gap: 40px 0px;
  }

  .copyright-links {
    gap: 40px;
  }

  .copyright-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form {
    gap: 15px;
  }

  .industry-we-serve {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .copyright-links {
    flex-direction: column;
    gap: 10px;
  }

  .innovative-strategies,
  .connecting-brand,
  .industries-we-serve,
  .get-in-touch,
  footer {
    margin-top: 50px;
  }

  .hundred-image span {
    font-size: 12px;
  }

  .hundred {
    top: 71px;
    left: 47px;
    width: auto;
  }
  .hundred  img{
    width: 70%;
  }

  .buzzer {
    top: 245px;
    left: 29px;
    width: 140px;
  }

  .growth {
    top: 125px;
    right: 14px;
    width: 135px;
  }

  .expert {
    top: 317px;
    right: 9px;
    width: 180px;
  }

  .buzzer img, .growth img,   .expert img{
    width:100%;
  }
  .copyright-wrap p{
    position:relative;
  }

.copyright-wrap p::before {
  content: '';
  height: 1px;
  background-color: #fff;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -3px;
}

.cb-image {
  width: 408px;

}

}

@media screen and (max-width: 575px) {
  .partner-wrap {
    gap: 14px;
  }

  .cb-title {
    font-size: 20px;
    line-height: 26px;
  }

  .industry-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 35px;
    line-height: 44px;
  }

  .footer {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }

  .cb-image {
    width: 343px;
  }

  .hundred-image {
    margin-top: 10px;
  }

  .hundred img {
    width: 60%;
  }

  .hundred-image span {
    font-size: 10px;
    padding: 9px 12px 9px 12px;
  }

  .hundred {
    top: 64px;
    left: calc(42% - 116px);
}

  .buzzer {
    top: 206px;
    width: 120px;
    left: calc(36% - 120px);
  }
  

  .growth {
    top: 114px;
    right: calc(33% - 112px);
    width: 112px;
  }

  .expert {
    top: 266px;
    right: calc(40% - 160px);
    width: 160px;
  }

  .count-expert {
    font-size: 12px;
  }

  .git-image {
    width: 343px;
  }

  .g-cont a, .g-mail a{
    font-size: 12px;
  }

  .g-cont-image{
    width: 115px;
    display: flex;
    justify-content: center;
  }
  .g-cont-image img{
    width: 100%;
  }

  .git-contact {
    top: 14px;
    left: calc(21.5% - 107px);
  }

  .git-mail {
    top: 204px;
    right: calc(16% - 110px);
  }
}

@media screen and (max-width: 480px) {
  .partner-wrap {
    gap: 10px;
  }

  .invo-title {
    font-size: 18px;
    line-height: 22px;
  }

  .invo-desc {
    font-size: 15px;
    line-height: 21px;
  }

  .cb-plan-title {
    font-size: 18px;
    line-height: 24px;
  }

  .cb-plan-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .cb-title {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }

  .copyright-wrap p {
    font-size: 12px;
  }

  .copyright-wrap .fa-copyright {
    font-size: 12px;
  }

  .buzzer {
    left: calc(33% - 120px);
  }

  .growth {
    right: calc(29% - 112px);
  }

  .git-image {
    width: 280px;
  }

  .g-cont-image {
    width: 100px;
  }

  .git-mail {
    top: 161px;
    right: calc(14% - 95px);
  }

  .git-contact {
    top: 14px;
    left: calc(13% - 90px);
  }

  .g-cont a.g-mail a{
    padding:10px;
  }
}

@media screen and (max-width: 420px) {
  .hero-title {
    font-size: 25px;
    line-height: 35px;
  }
  .cb-desc {
    font-size: 15px;
}
  .navbar-mob {
    width: 100%;
  }

  .cmn-title {
    font-size: 22px;
    line-height: 27px;
  }

  .nav-logo {
    width: 145px;
  }

  .nav-logo img {
    width: 100%;
    height: auto;
  }

  .navbar-mob {
    top: 73px;
  }

  .navbar-mob .mob-links {
    font-size: 16px;
    line-height: 20px;
  }

  .contact-btn button {
    width: auto;
  }
  
  .growth {
    right: calc(26% - 102px);
    width: 102px;
  }

  .expert {
    right: calc(34% - 125px);
    width: 125px;
  }
  .buzzer {
    left: calc(30% - 105px);
    width: 105px;
  }

  .count-expert {
    font-size: 10px;
  }

  .git-contact {
    top: 14px;
    left: calc(22% - 95px);
  }

  .git-image {
    width: 263px;
  }

  .g-cont-image {
    width: 90px;
  }

  .g-cont a, .g-mail a {
    font-size: 10px;
  }

  .git-mail {
    top: 160px;
    right: calc(18% - 85px);
  }

  .git-contact {
    top: 14px;
    left: calc(15% - 85px);
  }

  .form-group .field {
    height: 40px;
  }

  #message {
    height: 80px;
  }
}

@media screen and (max-width: 375px) {

  .cb-image{
    width:302px;
  }

  .growth {
    right: calc(26% - 95px);
    width: 95px;
  }

  .expert{
    top: 235px;
    right: calc(36% - 119px);
    width: 119px;
  }

  .git-contact {
    top: 14px;
    left: calc(18% - 85px);
  }

  .industry-desc {
    font-size: 14px;
}

.cb-plan-cont {
  height: 175px;
}
}