.inner_banner {
  width: 100%;
  display: block;
  position: relative;
  background-color: rgba(227, 223, 232, 0.5);
  overflow: hidden;
  padding:30px 0 !important;
}
/* .inner_banner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85%;
  content: "";
  background-color: var(--color-primary-dark1);
}
.inner_banner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85%;
  content: "";
  background-color: var(--color-primary-dark2);
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 0 100%);
} */
.ban_img {
  float: right;
  width: 45%;
  right: 0;
  top: 0;
  z-index: 1;
  position: relative;
}
.ban_img img {
  width: 100%;
  display: none;
}
.innertxt1 {
  position: relative;
  width: 100%;
  text-align: center;
  /*top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;*/
}
.innertxt1 ul {
  list-style: none;
  text-align: center;
  margin-top: -2rem;
  padding-left: 0;
}
.innertxt1 ul li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-secondary);
  font-family: var(--body-headings);

  font-size: 1.4rem;
}
.innertxt1 ul li:last-child {
  padding-right: 0;
}
.innertxt1 ul li:after {
  content: ">";
  color: #111;
  position: absolute;
  font-size: 1.4rem;
  right: 0.2rem;
  top: 0;
}
.innertxt1 ul li:last-child:after {
  display: none;
}
.innertxt1 ul li a {
  color: #111;
  text-decoration: none;
}
.inner_banner h1 {
  color: #111;
  font-weight: 900;
  margin-bottom: 3rem;
  display: table;
  line-height: 1.2;
  width: 100%;
  font-size: 4.6rem;
  letter-spacing: -0.1rem;
  font-family: var(--body-headings);
}
.banner_box-shape {
  position: absolute;
  bottom: 20%;
  z-index: 9;
  left: 0;
}
.banner_box-shape img {
  width: 100%;
  display: block;
}
/*kodefast_cs1*/
.kodefast_cs1 {
  padding: 5rem 0;
}
.kodefast_cs1 .grid {
  display: grid;
  grid-template-columns: 14fr auto;
  align-items: center;
}
.kodefast_cs1 h3 {
  font-size: 3.2rem;
  letter-spacing: -0.1rem;
  margin: 0;
}

.k_cs1_info {
  border-left: 2px solid #111;
  padding-left: 4rem;
  margin-left: 4rem;
}
/*kodefast_cs1*/

/*kodefast_cs2*/
.kodefast_cs2 {
  padding: 5rem 0 8rem;
  background-color: #f8f8fa;
}
.kodefast_cs2 h3,
.kodefast_cs3 h3,
.kodefast_cs4 h3 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: -0.1rem;
}

.tab-container {
  /* max-width: 600px;
  margin: 50px auto; 
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  */
  display: grid;
  grid-template-columns: 25fr 75fr;
  gap: 4rem;
  /* align-items: center; */
  margin-top: 3rem;
}

.tab-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.tab-nav li {
  margin-right: 10px;
}

.tab-nav a {
  text-decoration: none;
  color: #111;
  padding: 10px 20px;
  display: block;
  transition: background-color 0.3s;
  border-bottom: 1px solid #dfdfdf;
  font-size: 1.9rem;
  font-weight: 600;
  font-family: var(--body-headings);
}

.tab-nav a.active {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.tab-content {
  /* padding: 20px; */
  position: relative;
}

.tab-pane {
  display: none;
  position: relative;
  top: 0;
  left: 20px;
  /* right: 0; */
  opacity: 0;
  transform: translateX(0px);
  transition: opacity 0.5s, transform 0.5s;
}
.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateX(-20px);
  animation: fadeLeft 1s ease-out;
}
.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.tab-pane img {
  width: 100%;
  display: none;
}
.tab-pane h4 {
  font-family: var(--body-headings);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.tab-pane p {
  /* font-size: 1.6rem; */
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(0px);
  }
  to {
    opacity: 1;
    transform: translateX(-20px);
  }
}
/*kodefast_cs2*/

/*kodefast_cs3*/
.kodefast_cs3 {
  padding: 5rem 0;
  background-color: #fff;
}
.kodefast_cs3 h3 {
  padding-bottom: 2rem;
  border-bottom: 0.3rem solid #3b1d5c;
}
.accordion {
  width: 100%;
  list-style: none;
}
.accordion > li {
  /* background-color: #f3f3f3;
  border-radius: 20px;
  padding: 10px 50px; 
  margin-bottom: 10px;
  background-color: #f3f3f3;
  border-radius: 20px;*/
  /* margin-bottom: 1rem; */
  border-bottom: 1px solid #a0a0a0;
}
.accordion > li:first-child {
}
.accordion .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2.5rem 15px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  font-size: 2.1rem;
  color: #111111;
  font-weight: 700;
  background-color: #fff;
  font-family: var(--body-headings);
  /* border-radius: 15px; */
}
.accordion li.open .link {
}
.accordion .link::before {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  content: "+";
  font-size: 3.2rem;
  /* background-image: url(../images/aright.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px; */
  transition: all 0.3s;
  backface-visibility: hidden;
  color: #111;
  font-weight: 400;
}
.accordion .link img {
}
.accordion .submenu {
  display: none;
  padding: 0;
  list-style: none;
}
.accordion .submenu > li {
  position: relative;
  border-top: 0;
  padding: 0 15px 15px;
  font-family: var(--body-headings);
}
.accordion .submenu > li > ul > li {
  padding-left: 3rem;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: 1.4rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background-position: left 5px;
}
.accordion .submenu > li > ul > li ul {
  list-style: circle;
  font-size: 1.8rem;
  padding-left: 2rem;
  margin-top: 1rem;
}
.accordion .submenu > li > ul > li ul li {
  margin-bottom: 1rem;
}
.accordion .submenu > li p {
}
.accordion .submenu > li a {
}
.accordion li.open .link::before {
  /* transform: rotate(313deg) translateY(1rem);
  top: 25%; */
  /* background-image: url(../images/adown.svg);
  background-size: 40px; */
  content: "-";
  font-size: 4.2rem;
}
/*kodefast_cs3*/

/*kodefast_cs4*/
.kodefast_cs4 {
  padding: 5rem 0 10rem;
  background-color: #f8f8fa;
  background-image: url(../images/casestudy-pattern1.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 70%;
}
.kcs4_it {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  background-color: #fff;
  min-height: 45rem;
}
.kodefast_cs4 .owl-carousel .owl-item .item {
  padding: 20px 0;
}
.kcs4_it h4 {
  font-family: var(--body-headings);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.1rem;
}
.kcs4_it ul {
}
.kcs4_it ul li {
  padding-left: 3rem;
  background-image: url(../images/logo.svg);
  background-position: left 5px;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.kcs4_it ul li:last-child {
  margin-bottom: 0;
}
.kodefast_cs4 .owl-nav {
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}
/*kodefast_cs4*/

/*kodefast_cs_b*/
.kodefast_cs_b {
  padding: 5rem 0;
  background-color: #fff;
}
.kodefast_cs_bx1 {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 8rem;
  align-items: center;
  background-color: #fff;
  padding: 5rem;
  box-shadow: 0px 0px 32px 0px #bab1e07d;
  margin-bottom: 5rem;
  border-radius: 2rem;
}
.kodefast_cs_bx2 {
  box-shadow: none;
  background-color: rgba(227, 223, 232, 0.35);
  grid-template-columns: 60fr 40fr;
}
.kodefast_cs_bx1:last-child {
  margin-bottom: 0;
}
.section3_btm_cont {
  padding: 0;
}
.kodefast_cs_bx1 img {
  width: 100%;
  display: block;
}
.section3_btm_cont1 img {
  width: auto;
  height: 50px;
}
.section3_btm_cont3 a {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
}
.section3_btm_cont2 h4 {
  font-size: 3.6rem;
  line-height: 1.2;
}
/*kodefast_cs_b*/

.cd_contactpg1 {
  padding: 50px 0;
  display: block;
}
.cd_contactpg1 .grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 60px;
}
.cd_contactpg1 h3 {
  margin-bottom: 0;
}
.cd_contactpg1 input.form-control,
.cd_contactpg1 textarea.form-control, .cd_contactpg1 select.form-control {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #2a2a2a;
  font-size: 16px;
  height: 60px;
  padding: 0 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 60px;
  color: #111;
}
.cd_contactpg1 label {
  font-size: 16px;
  font-weight: 500;
}
.cd_contactpg1 label span {
  color: var(--color-secondary);
}
button.abtn {
  border-radius: 1rem;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 0 2rem;
  height: 5rem;
  line-height: 5rem;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-family: var(--body-headings);
  font-weight: 600;
  gap: 1rem;
  display: flex;
  align-items: center;
  border: 0;
}
button.abtn img {
  height: 12px;
  transition: all 0.3s;
  filter: brightness(0) invert(1);
}
button.abtn:hover img {
  transform: rotate(360deg);
}
button.abtn:hover {
  background-color: var(--color-primary);
}
.cd_contactpg1 textarea.form-control {
  height: 100px;
}
.cd_contactpg2 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 20px 50px;
  background-color: rgb(60, 29, 92);
  align-items: center;
}
.cotph {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  font-family: var(--body-headings);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}
.cd_contactpg2 .footer_social {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cotph img {
  height: 55px;
}
.cd_contactpg2 .footer_social a img {
  height: 21px;
}
.cd_contactpg3 {
  padding: 50px 0;
}
.cd_contactpg3 .grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 6rem;
  justify-content: center;
}
.cd_contactpg3 span.s_bor {
  width: 100px;
  height: 4px;
  background-color: var(--color-secondary);
  display: inline-block;
}
.cont_address1 {
  padding: 0;
  background-color: rgba(231, 228, 235, 0.4);
  box-shadow: var(--box-shadow1);
  display: grid;
  max-width: 31.5%;
  width: 100%;
}
.cd_contactpg3 .kodefast_hd1 {
  text-align: center;
}
.caddbox {
  padding: 20px;
}
.caddbox h3 {
  color: var(--color-dark);
  font-weight: 900;
  font-family: var(--body-headings);
  letter-spacing: -1px;
  margin: 20px 0;
  font-size: 2.6rem;
}
.caddbox p {
  color: #535353;
  font-size: 18px;
  line-height: 1.8;
}
.cont_address1 iframe {
  display: flex;
  margin-top: 0;
  border: 10px solid #fff !important;
  align-self: end;
}
.cd_contactpg1 h3 {
  color: var(--color-dark);
  font-weight: 900;
  font-family: var(--body-headings);
  letter-spacing: -1px;
  margin: 20px 0;
  font-size: 3.6rem;
}
.cd_contactpg1 p {
  font-size: 17px;
  line-height: 1.8;
}
.footer_social a {
  background-color: #fff;
}
.warning-content {
  text-align: center;
  background-color: rgba(227, 223, 232, 0.5);
  padding: 5rem;
}
.warning-content h1 {
  color: #111;
  font-weight: 900;
  margin-bottom: 3rem;
  display: table;
  line-height: 1.2;
  font-size: 4.6rem;
  letter-spacing: -0.1rem;
  font-family: var(--body-headings);
  text-align: center;
  width: 100%;
}
.warning-content p {
  margin-top: 3rem;
}
.kodefast_ft_b1 .kodefast_cs_bx1 {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  box-shadow: none;
  margin-bottom: 8rem;
}
.kodefast_ft_b1 .kodefast_cs_bx1:last-child {
  margin-bottom: 0;
}
.kodefast_ft_b1 .kodefast_cs_bx1 img {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.06);
}
.section3_btm_cont2 h4 {
  margin-top: 0;
}
.kodefast_ft_b2 {
  background-image: none;
}
.kodefast_ft_b2 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.kodefast_ft_b2 .grid .kcs4_it {
  min-height: auto;
}
.kodefast_ft_b2 .grid .kcs4_it > img {
  height: 5rem;
  margin: 0 0 3rem;
}
.kodefast_ft_b2 .grid .kcs4_it a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #111;
  margin-top: 2rem;
  font-family: var(--body-headings);
  color: #3b1d5c;
}
.kodefast_ft_b2 .grid .kcs4_it a img {
  height: 1rem;
}
/*kodefast_mp_bx1*/
.kodefast_mp_bx1 {
  padding: 5rem 0;
  width: 100%;
  padding-bottom: 10rem;
}
.kodefast_mp_bx1 h3 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: -0.1rem;
}
.kodefast_mp_bx1_info {
  text-align: center;
}
.kodefast_mp_bx1_info .img {
  position: relative;
  width: 100%;
  display: block;
}
.kodefast_mp_bx1_info .mp_img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px;
}
.kodefast_mp_bx1_info .mp_img img {
  width: 100%;
  height: 22.222rem;
  object-fit: cover;
  object-position: center center;
}
.kodefast_mp_bx1_info .laptop img {
  width: 100%;
  height: 33rem;
  display: block;
}
.kodefast_mp_bx1_info h4 {
  margin: 30px 0 5px;
  font-size: 1.9rem;
  font-weight: 600;
}
.kodefast_mp_bx1 .owl-item {
  opacity: 0.5;
}
.kodefast_mp_bx1 .owl-item.active.center {
  opacity: 1;
}
.kodefast_mp_bx1 .owl-item .laptop {
  display: none;
}
.kodefast_mp_bx1 .owl-item .mp_img {
  position: relative;
}
.kodefast_mp_bx1 .owl-item.active.center .laptop {
  display: block;
}
.kodefast_mp_bx1 .owl-item.active.center .mp_img {
  position: absolute;
}
.kodefast_mp_bx1 .owl-item.active.center .kodefast_mp_bx1_info .img {
}
.kodefast_mp_bx1 .owl-nav {
  left: 50%;
  transform: translateX(-50%);
  bottom: -7rem;
}
/*kodefast_mp_bx1*/

/*kodefast_tab-nav*/
.kodefast_mp_fix {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.kodefast_tab-nav {
  width: 100%;
  display: block;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.161);
  position: -webkit-sticky;
  position: sticky;
  top: 11.1rem;
  left: 0;
  z-index: 999;
  background-color: var(--color-white);
}
.kodefast_tab-nav ul {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.kodefast_tab-nav ul li {
}
.kodefast_tab-nav ul li a {
  color: #111;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 0;
  display: block;
  position: relative;
  font-family: var(--body-headings);
}
.kodefast_tab-nav ul li a:hover::before,
.kodefast_tab-nav ul li a.active::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--color-secondary);
  display: block;
}
.kodefast_tab-nav ul li a.active::before {
  height: 4px;
}
.kodefast_tab-nav ul li a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}
.kodefast_tab-nav ul li a.active {
  color: var(--color-secondary);
  text-decoration: none;
}
/*kodefast_tab-nav*/

/*kodefast_mp_bx2*/
.kodefast_mp_bx2 {
  display: block;
  position: relative;
  width: 100%;
}
.kodefast_mp_bx2 .grid {
  display: grid;
  grid-template-columns: 32rem 1fr;
}
.kodefast_mp_bx2_left {
  padding: 3rem;
  background-color: #f8f8fa;
}
.kodefast_mp_bx2_right {
  padding: 5rem;
}
.kodefast_mp_bx2_right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.kodefast_mp_bx2_right ul li {
}
.kodefast_mp_bx2_right ul li a {
  display: block;
  width: 100%;
  transition: all 0.3s;
  text-decoration: none;
  color: #111;
  font-family: var(--body-headings);
}
.kodefast_mp_bx2_right ul li a .img,
.kodefast_mp_bx2_right ul li a .img img {
  overflow: hidden;
  width: 100%;
}
.kodefast_mp_bx2_right ul li a h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  font-family: var(--body-headings);
  transition: all 0.3s;
}
.kodefast_mp_bx2_right ul li a span {
  font-size: 1.8rem;
  opacity: 0.7;
}
.kodefast_mp_bx2_right ul li a p {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
}
.kodefast_mp_bx2_right ul li a i {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.kodefast_mp_bx2_right ul li a:hover h4,
.kodefast_mp_bx2_right ul li a:hover i {
  color: var(--color-secondary);
}

.filterbx {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  font-family: var(--body-headings);
  font-weight: 600;
  margin-bottom: 2rem;
}
.filterbx i {
  font-size: 2rem;
}
.filter_search {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}
.filter_search input.form-control {
  border: 1px solid #dedede;
  font-family: var(--body-headings);
  font-size: 1.4rem;
  border-radius: 0;
  box-shadow: none;
  height: 4.2rem;
}
.filter_search button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.5;
}
.filter_accordian {
  padding: 0;
  background-color: transparent;
}
.filter_accordian .accordion .link {
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: transparent;
}
.filter_accordian .accordion .submenu > li {
  padding: 1rem 0;
}
.filter_accordian .accordion > li {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.filter_accordian .accordion li .link::before {
  content: "";
  background-image: url(../images/down.svg);
  background-size: 1.5rem;
  background-position: right center;
  background-repeat: no-repeat;
  transform: rotate(270deg) translateY(0%);
  width: 1.5rem;
  height: 1.5rem;
  top: 0%;
}
.filter_accordian .accordion li.open .link::before {
  content: "";
  transform: rotate(0deg) translateY(-50%);
  top: 50%;
}
.checkbox input[type="checkbox"] {
  margin: 0;
  position: relative;
}
.checkbox,
.radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  margin-bottom: 1rem;
}
.checkbox:last-child {
  margin: 0;
}
.checkbox label,
.radio label {
  font-size: 1.4rem;
  padding: 0;
  display: block;
  width: 100%;
}
.inner_banner a.btn {
  margin-top: 2rem;
}
.kodefast_mpi_bx1 {
  display: block;
  padding: 2rem 0 0;
  width: 100%;
}
.kodefast_mpi_bx1 .grid {
  display: grid;
  grid-template-columns: 30fr 70fr;
}
.kodefast_mpi_bx1_l {
  padding: 4rem 6rem;
  background-color: #f8f8fa;
}
.kodefast_mpi_bx1_r {
  padding: 5rem;
}
.kodefast_mpi_bx1_r h3, h3 {
  text-align: left;
  font-size: 3.6rem;
  letter-spacing: -0.1rem;
  margin-top: 0;
    line-height: 1.3;
    position: relative;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: 900;
    font-family: var(--body-headings);
}
.kodefast_mpi_bx1_r ul {
  margin-bottom: 3rem;
}
.kodefast_mpi_bx1_r ul li {
  padding-left: 3rem;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: 1.4rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background-position: left 5px;
  font-family: var(--body-headings);
}
.kodefast_mpi_bx1_r p {
  margin-bottom: 3rem;
}
.kodefast_mpi_bx1_r a.btn {
  font-family: var(--body-headings);
  background-color: #39225e;
}
.kodefast_mpi_bx1_r a.btn:hover {
  background-color: #0877b9;
}
.kodefast_mpi_bx1_l h4 {
  font-family: var(--body-headings);
  margin-bottom: 2rem;
}
.kodefast_mpi_bx1_l .flex1 {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.kodefast_mpi_bx1_l .flex1 a {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  font-size: 1.4rem;
  color: #3b1d5c;
  text-decoration: none;
}
.kodefast_mpi_bx1_l .flex1 a:hover {
  background-color: #f6edff;
}
.kodefast_mpi_bx1_l .flex1 a img {
  height: 1.2rem;
}
.kodefast_mpi_bx1_l hr {
  border-color: #dedede;
  margin: 1.5rem 0;
}
.kodefast_mpi_bx1_l h5 {
  font-family: var(--body-headings);
  margin-bottom: 2rem;
}
.kodefast_mpi_bx1_l .flex2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #111;
  opacity: 0.5;
  font-size: 1.4rem;
  font-family: var(--body-headings);
  margin-bottom: 0.75rem;
}
.kodefast_mpi_bx1_l ul {
}
.kodefast_mpi_bx1_l ul li {
  color: #111;
  opacity: 0.5;
  font-size: 1.4rem;
  font-family: var(--body-headings);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.kodefast_partners1 {
  padding: 5rem 0;
}
.kodefast_partners1_bx1 {
  background-color: #f8f8fa;
  padding: 2rem 5rem;
  margin: 4rem 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.kodefast_partners1_bx1 select {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
}
.kodefast_partners1_bx1 select option {
  font-size: 1.4rem;
}
.kodefast_partners1_bx1 .line {
  width: 1px;
  height: 3rem;
  background-color: rgba(59, 29, 92, 0.34);
}
.kodefast_partners1_bx2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.kodefast_partners1_bx2 a {
  display: block;
  text-align: center;
  padding: 3rem 3rem;
  box-shadow: var(--box-shadow1);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  min-height: 22rem;
  border: 1px solid #fff;
}
.kodefast_partners1_bx2 a:hover {
  border-color: #111;
}
.kodefast_partners1_bx2 a img {
  height: 8rem;
  transition: all 0.3s;
}
.kodefast_partners1_bx2 a h4 {
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
  color: #111;
  font-weight: 700;
  font-family: var(--body-headings);
}
.kodefast_partners1_bx2 a p {
  font-size: 1.6rem;
}
.kodefast_partners1_bx2 a span {
  position: absolute;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  left: 0;
  width: 100%;
  color: #3b1d5c;
  font-family: var(--body-headings);
  opacity: 0;
}
.kodefast_partners1_bx2 a span img {
  height: 1rem;
}
.kodefast_partners1_bx2 a:hover span {
  opacity: 1;
}
.kodefast_partners1_bx2 a:hover > img {
  height: 7rem;
}
.partnerinfo1 {
  padding: 5rem 0;
}
.partnerinfo1 .grid {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 5rem;
  align-items: center;
}
.partnerinfo1 .grid img {
  width: 18rem;
  display: block;
  margin-bottom: 2rem;
}
.partnerinfo1 h4 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 0 0 2rem;
  font-weight: 900;
  font-family: var(--body-headings);
}
.partnerinfo1 ul {
  margin-bottom: 3rem;
}
.partnerinfo1 ul li {
  padding-left: 3rem;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: 1.4rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background-position: left 5px;
}
.filterbx {
  justify-content: space-between;
}
.filterbx a {
  text-decoration: none;
  color: #111;
  display: none;
  font-size: 1.6rem;
}
a.mobfilter {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--color-secondary);
  padding: 2rem;
  width: 100%;
}
/*kodefast_mp_bx2*/

/*kodefast_usecase3*/
.kodefast_usecase3 {
  padding-top: 0;
  padding-bottom: 10rem;
}
.kodefast_usecase3 h3 {
  text-align: center;
}
.kodefast_usecase3 img {
  width: 95%;
  display: block;
  box-shadow: var(--box-shadow1);
}
.kodefast_usecase3 .owl-nav {
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
}
.kodefast_mpi_bx1 img {
  max-width: 70rem;
  width: 100%;
  display: block;
  margin-bottom: 3rem;
}
.kodefast_mpi_bx1 h5 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.kodefast_mpi_bx1_l ul li {
  opacity: 1;
  flex-direction: column;
  align-items: inherit;
}
.filter_accordian .accordion > li {
  padding-bottom: 2rem;
}
.filter_accordian .accordion .link {
  font-size: 1.8rem;
}
.filter_accordian a {
  text-decoration: none;
  color: #000;
  opacity: 0.65;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0rem;
}
.filter_accordian a:hover {
  opacity: 1;
}
.filter_accordian a.active {
  opacity: 1;
  font-weight: 600;
}
/*kodefast_usecase3*/

.innerservmenu {
  position: sticky;
  top: 7rem;
  width: 100%;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  gap: 0;
  z-index: 9;
  background-color: var(--color-secondary);
  justify-content: center;
  overflow:auto;
  align-items:center;
}
.innerservmenu li {
  color: #fff;
  font-size: 16px;
  position: relative;
}
.innerservmenu li a {
  text-decoration: none;
  color: #fff;
  padding: 1.5rem 2rem;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  transition: all 0.3s;
  font-size: 18px;
  font-family: var(--body-headings);
}
.innerservmenu li a i {
  font-size: 21px;
  margin-right: 10px;
}
.innerservmenu li a:hover {
  opacity:0.5;
}
.innerservmenu li.active a {
  background-color: #3c1d5c;
}
/*.innerservmenu li.active a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #3c1d5c;
}*/
.job-list h5{
  font-size:2.5rem;
}

@media only screen and (max-width: 90em) {
}
@media only screen and (max-width: 75em) {
}
@media only screen and (max-width: 60em) {
  .inner_banner h1 {
    font-size: 3.6rem;
    position: relative;
    display: table;
  }
  .inner_banner::before,
  .inner_banner::after {
    height: 100%;
  }
  .ban_img {
    float: none;
    width: 100%;
  }
  .innertxt1 {
    position: relative;
    top: auto;
    transform: translateY(0);
    padding: 8rem 0;
  }
  .contact_box1_grid,
  .careers_grid,
  .retails_grid,
  .aboutbx4 ul,
  .cd_aboutbx1 .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .contact_box1_grid::before {
    width: 100%;
    display: block;
  }
  .aboutbx2_in_box p {
    line-height: 1.4;
    height: auto;
  }
  .cart_bx2 {
    width: 90%;
  }
  .vh85 img {
    width: 10rem !important;
  }
  .visionbox {
    display: block;
  }
  .visionbox_1 {
    width: 100%;
    padding: 3rem;
  }
  .visionbox_1 img {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  .cd_aboutbx2 {
    display: inline-block;
    padding: 0 3rem 5rem;
    text-align: center;
  }
  .inner_banner h1 {
    width: 100%;
  }
  .cd_contactpg1 .grid,
  .cd_contactpg2 .grid,
  .cd_contactpg3 .grid,
  .cd_careersbx1 .grid,
  .infrapgbx1 .grid,
  .home_why .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .cont_address1 {
    max-width: 100%;
  }
  .cd_contactpg2 .grid {
    gap: 3rem;
  }
  .cotph {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .whyChoose_h4 a {
    position: relative;
    top: 0;
    right: auto;
    transform: translate(0);
    margin-top: 2rem;
  }
  .kodefast_cs_bx1,
  .kodefast_cs_bx2,
  .kodefast_cs1 .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .section3_btm_cont2 h4 {
    font-size: 3rem;
    letter-spacing: -0.5px;
  }
  .k_cs1_info {
    border-left: 0;
    border-top: 2px solid #111;
    padding-left: 0;
    padding-top: 2rem;
    margin-left: 0;
    margin-top: 2rem;
  }
  .tab-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .tab-grid,
  .kodefast_ft_b1 .kodefast_cs_bx1,
  .kodefast_ft_b2 .grid,
  .kodefast_mp_bx2 .grid,
  .kodefast_mp_bx2_right ul,
  .kodefast_mpi_bx1 .grid,
  .kodefast_partners1_bx2,
  .partnerinfo1 .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .kodefast_tab-nav {
    top: 7.5rem;
  }
  .kodefast_ft_b1 .kodefast_cs_bx1:nth-child(2n) {
    display: flex;
    flex-direction: column-reverse;
  }
  .cotph {
    font-size: 16px;
  }
  .cotph img {
    height: 45px;
  }
  .innertxt1 {
    padding: 5rem;
  }
  .kodefast_cs_b,
  .kodefast_cs1,
  .kodefast_cs2,
  .kodefast_cs3,
  .cd_contactpg1,
  .cd_contactpg2,
  .cd_contactpg3,
  .kodefast_cs4,
  .kodefast_platform_overview1,
  .kodefast_platform_overview2,
  .kodefast_platform_overview3,
  .kodefast_platform_overview4,
  .kodefast_mp_bx1,
  .kodefast_partners1,
  .partnerinfo1 {
    padding: 5rem 4rem;
  }
  .kodefast_mp_bx1 {
    padding-bottom: 10rem;
  }
  .kodefast_tab-nav ul {
    overflow: auto;
    padding: 0 3rem;
  }
  .kodefast_cs_bx1 {
    padding: 3rem;
  }
  .cd_contactpg2 .grid {
    padding: 2rem;
  }
  .cd_contactpg2 .footer_social a img {
    height: 2rem;
  }
  .cd_contactpg2 {
    padding: 0 4rem;
  }
  .kodefast_tab-nav ul li a {
    font-size: 1.8rem;
  }
  .kodefast_partners1_bx1 {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .filter_accordian {
    padding: 0;
  }
  .filterbx a {
    display: block;
  }
  .kodefast_mp_bx2_left {
    display: none;
  }
  a.mobfilter {
    display: inline-flex;
    font-size: 2.2rem;
    text-decoration: none;
    justify-content: flex-start;
    align-items: baseline;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background-color: #e9e9e9;
    color: var(--color-primary);
    text-align: left;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .kodefast_mp_bx2_left {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 99999999;
  }
  .innerservmenu {
    justify-content: left;
  }
  .innerservmenu li a {
    font-size:14px;
  }
}
@media only screen and (max-width: 37.5em) {
}
