@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Readex+Pro:wght@300;400;500;600;700&display=swap");

:root {
  --h1-color: #2a2053;
  --p-color: rgba(2, 2, 2, 0.7);
  --para-text: rgba(42, 32, 83, 0.8);
  --button-bg-color: #c00404;
  --bg-color: #f08500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* nav-section */

.color-div {
  background-color: #ffffff;
}

.main-div {
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px !important;
}

.my-container {
  width: 85%;
  margin: auto;
}

.logo-div {
  width: 100px;
  height: 33px;
  margin-top: auto;
  margin-bottom: auto;
}

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

.after-logo-block {
  display: flex;
  gap: 64px;
  font-family: "Readex Pro", sans-serif;
}

.menu-div {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  padding-right: 50px;
}

.menu-div ul {
  display: flex;
  gap: 40px;
  margin: auto;
  list-style: none;
  padding-left: 0px !important;
}

.menu-div ul li a {
  color: var(--h1-color);
  font-family: "Readex Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  list-style: none;
  text-decoration: none;
  /* letter-spacing: 0.5px;        */
}

.menu-div ul li a:hover {
  color: #c00404;
}

.menu-div ul li.msjk-active a {
  color: #c00404;
  border-bottom: 1px solid #c00404;
}

.hamburger-div {
  display: none;
  margin-top: auto;
  margin-bottom: auto;
}

.hamburger-div i {
  font-size: 25px;
  color: var(--h1-color);
}

.demo-btn {
  border: none;
  border-radius: 8px;
  background-color: var(--button-bg-color);
  color: #ffffff;
  font-size: 16px;
  font-family: "Readex Pro", sans-serif;
  border: 1px solid var(--button-bg-color);
  text-transform: capitalize;
  text-decoration: none;
  padding: 10px 35px;
  font-weight: 600px;
  text-align: center;
}
/* @media (max-width:1204px){
    .menu-div {
        padding-right: 20px;
    }
} */
@media (max-width: 992px) {
  .demo-btn-div {
    display: none;
  }
}
@media (max-width: 992px) {
  .after-logo-block {
    gap: 45px;
  }

  .hamburger-div {
    display: block;
  }

  .menu-div ul {
    position: absolute;
    flex-direction: column;
    padding: 16px 16px 32px;
    width: 100%;
    background-color: #f19619;
    top: 70px;
    left: -100%;
    transition: opacity 400ms;
    z-index: 1;
  }

  .menu-div ul li {
    border-left: none;
  }

  .menu-div ul li a {
    padding-left: 16px;
    color: var(--h1-color);
  }

  .menu-div a {
    margin: 10px 0;
    line-height: 30px;
  }

  .menu-div ul.show {
    left: 0;
  }

  .demo-btn {
    padding: 10px 14px;
  }
}
@media (max-width: 768px) {
  .demo-btn {
    font-size: 14px;
  }
}
/* end of nav-section */

/* heropage-section */

.mjf-container {
  max-width: 1000px;
  margin: auto;
  margin-top: 15px;
}

.hero-heading {
  align-items: center;
}

.hero-heading-p {
  color: #2a2053;
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 55.8px;
  /* letter-spacing: 1px; */
  text-transform: capitalize;
}

.hero-description-p {
  color: #2a2053;
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 25.2px; /* 140% */
  letter-spacing: 0px;
  /*text-transform: capitalize;   */
  max-width: 828px;
  width: 100%;
  margin: auto;
  margin-bottom: 35px !important;
  /* padding: 0px 16px !important; */
}

.hero-button {
  text-align: center;
  margin-bottom: 21px !important;
}

.hero-image {
  /* width: ; */
  height: auto;
  /* margin-left: 10%; */
  /* background-color: #C00404; */
}

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

.trusted-section {
  max-width: 900px !important ;
  margin: auto;
  text-align: center;
  margin-top: 26px !important;
  /* margin-bottom: 30px !important; */
}

.trusted-heading {
  max-width: 350px;
  position: relative;
  margin: auto;
  text-align: center;
}

.trusted-heading-text::before,
.trusted-heading-text::after {
  content: "";
  width: 49px;
  height: 2px;
  background-color: #0000002a;
  display: block;
  position: absolute;
  top: 50%;
}

.trusted-heading-text::before {
  left: 0;
}

.trusted-heading-text::after {
  right: 0;
}

.trusted-heading-text {
  color: #020202;
  opacity: 0.7;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.companies-sec {
  margin-top: 33px !important;
  margin-bottom: 40px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.each-company {
  width: 99px;
  height: 55px;
}

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

@media (max-width: 1000px) {
  .heropage-section {
    padding: 0px 16px;
  }

  .hero-image {
    width: 100% !important;
    margin-left: unset !important;
    /* padding: 0px 16px; */
  }
}

@media (max-width: 768px) {
  .hero-heading-p {
    font-size: 30px;
    line-height: 40.8px;
  }

  .hero-description-p {
    font-size: 16px;
    line-height: 20.8px;
    padding: 0px 0px !important;
  }

  .one-company {
    padding: unset;
  }

  .hero-description-p {
    font-size: 14px;
  }
}

@media (max-width: 578px) {
  .hero-heading-p {
    font-size: 26px !important;
    line-height: 30.8px !important;
  }

  .hero-description-p {
    font-size: 12px;
    margin-bottom: 24px !important;
  }

  .trusted-heading-text {
    font-size: 14px;
  }
}

/* end of heropage-section  */

/* feature-section */

.feature-block {
  text-align: center;
  padding: 0px 25px;
}

/* .feature-before-heading{
    position: relative;
} */
.feature-before-heading {
  max-width: 200px;
  position: relative;
  margin: auto;
  text-align: center;
}

.feature-before-heading-text {
  color: #2a2053;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  margin-bottom: 0px !important;
  text-align: center;
}

.feature-before-heading-text::before,
.feature-before-heading-text::after {
  content: "";
  width: 49px;
  height: 2px;
  background-color: #0000002a;
  display: block;
  position: absolute;
  top: 50%;
}
.feature-before-heading-text::before {
  left: 0;
}

.feature-before-heading-text::after {
  right: 0;
}

.feature-heading {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.feature-heading-text {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.25px;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.feature-heading-para {
  color: rgba(2, 2, 2, 0.7);
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  padding: 0% 26%;
  margin-bottom: 0px !important;
}

.feature-after-heading {
  max-width: 1050px !important;
  margin: auto;
  padding-top: 32px;
  margin-bottom: 80px;
}

.block-two {
  margin-top: -15px !important;
  /* padding: 0px !important; */
}

.feature-single-jkm {
  margin-bottom: 24px !important;
}

.feature-single-jkm-icon {
  width: 51px !important;
  height: 51px !important;
  border-radius: 20px;
  background: #ffefda;
  padding: 0px !important;
}

.feature-single-jkm-icon-mjk {
  margin-top: auto;
  margin-bottom: auto;
  width: 32px;
  height: 32px;
  background: #ffefda;
  border-radius: 20px;
}

.feature-single-jkm-para {
  padding: 0px !important;
  padding-left: 10px !important;
}

.feauture-single-para-block {
  width: unset;
  /* padding-right: 30px; */
}

.feauture-single-para-heading {
  color: #020202;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px !important;
}

.feauture-single-para-desc {
  color: #020202;
  opacity: 0.8;
  font-family: "Inter", sans-serif;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 140% */
  padding-right: 6px;
  margin-bottom: 0px !important;
}

.feature-image-mjk {
  width: 300px;
  height: 531.75px;
  margin-left: auto;
  margin-right: auto;
}

.feature-image-mjk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-single-jkm-icon-mjk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 10px 10px;
}

@media (max-width: 992px) {
  .trusted-section {
    padding: 0px 16px !important;
  }

  .feature-block {
    padding: 0px 16px !important;
  }
}

@media (max-width: 768px) {
  .feature-heading-text {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .feature-heading-para {
    padding: unset;
  }

  /* .feature-heading-para,.feauture-single-para-desc{
        font-size: 16px;
    }

    .feauture-single-para-heading {
        font-size: 20px;
    } */

  /* .feature-single-jkm-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .feature-single-jkm-icon-mjk {
        width: 30px;
        height: 30px;
    } */
}

@media (max-width: 400px) {
  .feature-heading-para {
    padding: unset;
  }

  .feature-image-mjk {
    width: 250.42px;
    height: 400px;
  }
}
/* end of feature-section */

/* about page */
.about-page {
  background: #f08500;
}

.about-page-container {
  max-width: 1200px !important;
  margin: auto;
  padding: 50px 0px;
}

.about-page-block-one {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.about-page-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-field-page {
  margin-top: auto;
  margin-bottom: auto;
  /* padding-left: 40px; */
}

.about-fieldma-heading {
  max-width: 410px;
  width: 100%;
}

.about-fieldma-heading-p {
  max-width: 250px;
  margin: auto;
  position: relative;
}

.about-field-page-para {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  position: relative;
  text-align: center;
  margin-bottom: 8px !important;
}

.about-field-page-para::before,
.about-field-page-para::after {
  content: "";
  width: 49px;
  height: 2px;
  background-color: #c7dae4;
  display: block;
  position: absolute;
  top: 50%;
}

.about-field-page-para::before {
  left: 0;
}

.about-field-page-para::after {
  right: 0;
}

.about-field-page-title {
  color: #ffffff;
  font-family: "Readex Pro", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 31.25px;
  margin-bottom: 15px !important;
}

.about-field-page-desc {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  margin-bottom: 21px !important;
  /* width: 88%; */
}

.about-field-page-desc-list {
  display: flex;
  gap: 44px;
  margin-bottom: 21px;
  padding-right: 20px;
}

.about-field-icon-jkm > i {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Readex Pro", sans-serif;
  font-size: 25px;
  margin-top: auto;
  margin-bottom: auto;
}

.about-field-paraa-jkm {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.about-field-paraa-jkm p {
  margin-bottom: 0px !important;
}

.request-div-jkm {
  margin-top: 46px;
}

.req-button {
  padding: 10px 40px;
  color: #ffffff;
  background: #c00404;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid#C00404;
  justify-content: center;
  text-decoration: none;
}

.req-button:hover {
  color: #c00404;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .about-page {
    padding: 0px 16px;
  }

  .about-page-container {
    padding: 50px 0px;
  }
}
@media (max-width: 992px) {
  .about-field-page-title {
    padding-right: 0px;
  }

  .about-field-page-desc-list {
    gap: 36px;
  }

  .about-page-block {
    flex-direction: column-reverse;
  }

  .about-page-images {
    text-align: center;
    margin-top: 35px;
  }

  .req-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .request-div-jkm {
    margin-top: 32px;
    text-align: center;
  }

  .about-fieldma-heading {
    margin: auto;
    max-width: unset;
  }
  .about-field-page-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-fieldma-heading {
    max-width: unset;
    margin: auto;
  }

  .about-field-page-title {
    font-size: 20px;
    text-align: center;
  }

  .about-field-page-desc-list {
    gap: 16px;
  }
}

/* end of about-page */

/* how-it-work page */
.how-it-work {
  max-width: 1150px !important;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 136px;
  padding: 0px 16px !important;
}

.container-heading-how-it-work {
  max-width: 300px;
  width: 100%;
}

.work-before-heading {
  position: relative;
  max-width: 250px;
  margin: auto;
}

.work-before-heading-text {
  color: #2a2053;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 0px !important;
}

.work-before-heading-text::before,
.work-before-heading-text::after {
  content: "";
  width: 49px;
  height: 2px;
  background-color: #0000002a;
  display: block;
  position: absolute;
  top: 50%;
}

.work-before-heading-text::before {
  left: 0;
}

.work-before-heading-text::after {
  right: 0;
}

.work-heading-text {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 25px;
  font-weight: 600;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.work-heading-para {
  color: rgba(2, 2, 2, 0.7);
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  padding-right: 4rem;
  margin-bottom: 0px !important;
  text-align: left;
}

.sub-working-para-block {
  padding-top: 32px !important;
}

/* .work-jkm-icon-mjk{
    width: 51px !important;
    height: 51px !important;
    border-radius: 20px;
    background: #FFEFDA;
    padding: 0px !important;
}

.work-single-jkm-icon-mjk{
    margin-top: auto;
    margin-bottom: auto;
    width: 27px;
    height: 27px;
    background: #FFEFDA;
    border-radius: 20px;
}

.work-single-jkm-icon-mjk img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 10px 10px;
} */

.work-single-para-block {
  padding-top: 12px;
}

.app-work-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .app-work-images {
    padding-top: 20px;
  }

  .container-heading-how-it-work {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .work-heading-para {
    padding-right: unset;
    /* font-size: 16px; */
  }

  .work-before-heading-text {
    /* font-size: 16px; */
    text-align: center;
    padding: unset;
  }

  .work-heading-text {
    /* font-size: 28px; */
    text-align: center;
  }
  .work-jkm-icon-mjk {
    width: 50px !important;
    height: 50px !important;
  }

  .work-single-jkm-icon-mjk {
    width: 30px;
    height: 30px;
  }
}

/*end of  how-it-work page */

/* after how it work page */

.after-how-it-work {
  background-color: #f08500;
}

.mjk-number-plus {
  max-width: 1150px !important;
  margin: auto;
  padding: 23px 0px 16.98px;
}

.mjk-line {
  position: relative;
}

/*.mjk-line::before,*/

.mjk-line::after {
  content: "";
  width: 2px;
  height: 50px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 15%;
}

/*.mjk-line::before {*/
/*    left: 0;*/
/*  }*/

.mjk-line::after {
  right: 0;
}

.one-mjk-number-plus > p {
  /* margin-bottom: 0px !important; */
  font-family: "Readex Pro", sans-serif;
  color: #fff;
}

.mjk-line > p {
  font-family: "Readex Pro", sans-serif;
  color: #fff;
}

.num-mjk-head-num {
  font-size: 25px;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  line-height: 22.5px;
  text-align: center;
  margin-bottom: 13px !important;
}

.num-mjk-head-txt {
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 28%;
  margin-bottom: 0px !important;
}
@media (max-width: 992px) {
  .how-it-work {
    padding: 0px 16px !important;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .one-mjk-number-plus {
    margin-bottom: 40px !important;
  }

  /*.mjk-line::before,*/

  .mjk-line::after {
    display: none;
  }
  .num-mjk-head-num {
    font-size: 28px;
  }

  .num-mjk-head-txt {
    font-size: 16px;
    padding: 0px 20%;
  }
}

@media (max-width: 578px) {
  .num-mjk-head-txt {
    font-size: 14px;
    padding: 0px 10%;
  }
}

/* end of after how it work page  */

/* Testimonials page */
.testimonials-block {
  background: #f2f4f4;
  padding: 80px 0px;
}

.what-clients-say {
  max-width: 1200px !important;
  margin: auto;
}
.testimonila-heading {
  padding-bottom: 32px;
}

.each-clients-say {
  background-color: #ffffff;
  padding: 20px 20px 24px;
  min-height: 200px !important;
  margin: 10px 12px;
}

.client-name,
.client-post,
.client-location {
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  color: #000000;
  margin-bottom: 0px !important;
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.client-post {
  line-height: 1.2;
  padding: 4px 0px;
  font-size: 12px;
  font-weight: 400;
}

.client-location {
  line-height: 1.2;
  font-weight: 400;
  font-size: 13px;
}

.before-say {
  display: flex;
  justify-content: center;
  /*width: 42px; */
  /*height: 42px;*/
}

.before-say img {
  /*width: 100%; */
  height: 100%;
  object-fit: contain;
}

.client-text {
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  /* padding: 0px 16px; */
  padding-top: 11px;
  padding-bottom: 28px;
  position: relative;
  text-align: center;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 0px !important;
}

.profil-client-pic {
  width: 48px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}

.profil-client-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .testimonials-block {
    padding: 32px 16px 40px 16px;
  }
}

@media (max-width: 768px) {
  .testimonila-heading {
    padding-bottom: 0px;
  }

  .work-heading-para {
    padding-right: unset;
  }

  .each-clients-say {
    margin-top: 20px;
  }

  .feature-heading-text {
    font-size: 25px;
  }

  .client-text {
    font-size: 16px;
  }
  .client-name {
    font-size: 12px;
  }
}

/* End of Testimonials page */

/* contactus container */
.contactus-container {
  padding-top: 5% !important;
  max-width: 1300px !important;
  margin: auto;
}

.contact-before-heading {
  position: relative;
}

.contact-before-heading-text {
  color: #2a2053;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  margin-bottom: 0px !important;
  text-align: center;
}

.contact-heading-para {
  padding: 0px 20%;
}

.contact-form-jkm-div {
  padding: 0px 15%;
}

.contact-form-jkm {
  padding-top: 32px;
  margin-right: 10px !important;
}

.contact-form-jkm-div > p > label {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.contact-form-jkm-div > p,
.jkm-text-box > p,
.jkm-textarea-box > p {
  margin-bottom: 0px !important;
}

.jkm-text-box > input {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
  background: #fff;
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  margin-top: 10px;
  padding: 10px 10px;
}

.jkm-text-box {
  margin-bottom: 20px;
}

.jkm-textarea-box > textarea {
  border-radius: 4px;
  width: 100%;
  height: 115px;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
  background: #fff;
  color: #020202;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 10px;
  font-family: "Readex Pro", sans-serif;
  margin-top: 10px;
}

.button-box {
  padding-top: 40px;
}

.send-btn {
  border-radius: 4px;
  background: #c00404;
  border: 1px solid #c00404;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  padding: 10px 40px;
  color: #ffffff;
}

.demo-btn:hover,
.send-btn:hover {
  background: #ffffff;
  color: #c00404;
}

.contact-us-image-block {
  position: relative;
  width: 569px;
  height: 567px;
  float: right;
}

.orange-block-contact {
  position: absolute;
  top: 21px;
  left: 0;
  background: url(../image/orange-div.png);
  max-width: 569px;
  width: 100%;
  height: 488px;
}

.red-block-contact {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #c00404;
  max-width: 379px;
  width: 100%;
  height: 567px;
}

.information-block {
  padding: 71px 0px 0px 61px;
}

.info-icon-block {
  display: flex;
  gap: 31px;
  padding-bottom: 20px;
}

.info-icon {
  height: 25px;
  width: 25px;
}

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

.info-title {
  color: #fff;
  font-family: "Readex Pro", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px !important;
  line-height: 37.5px;
}

.info-text p {
  margin-bottom: 0px !important;
  color: #ffffff;
  /*text-align: center;*/
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.contact-form-container-block {
  padding: 0px !important;
}

.socialmedia-block {
  display: flex;
  gap: 60px;
}

.sm-pc {
  position: absolute;
  bottom: 18px;
  transform: translate(20px, 0px);
  left: 70px;
}

@media (max-width: 992px) {
  .contact-us-image-block {
    margin-top: 32px;
  }

  .button-box {
    padding-top: 12px;
  }
}

@media (max-width: 768px) {
  .contactus-container {
    padding: 0px 20px;
    padding-top: 6% !important;
    padding-bottom: 30px;
  }

  .contact-form-container-mjk {
    padding-top: 40px;
  }

  .contact-heading-para {
    padding: unset;
  }

  .contact-form-jkm-div {
    padding: unset;
  }

  .contact-block {
    padding-left: unset !important;
    text-align: center;
  }

  .work-heading-para {
    text-align: center;
  }

  .contact-block-text-jkm > p {
    padding: 0px 40px;
  }

  .jkm-text-box > input {
    width: 100%;
    height: 45px;
    margin-top: 10px;
  }

  .jkm-textarea-box > textarea {
    height: 120px;
  }

  /* .information-block{
        padding: 40px;
        top: 18%;
    } */

  .info-icon-block {
    padding-top: 20px;
  }

  .contact-form-jkm {
    padding-top: 0px;
  }
}

@media (max-width: 586px) {
  .info-icon-block {
    padding-top: 10px;
  }

  .contact-us-image-block {
    /* height: 415px; */
    width: 100%;
    /* width: 578px; */
    /* position: relative; */
    float: unset;
  }
}

@media (max-width: 411px) {
  .information-block {
    padding: 71px 0px 0px 30px;
  }

  .sm-pc {
    left: 50px;
  }
}

@media (max-width: 370px) {
  .socialmedia-block {
    gap: 40px;
  }
}

/* end os contactus container  */

/* FAQ section */
.faq-container {
  max-width: 1150px !important;
  margin: auto;
  margin-top: 46px !important;
  padding: 0px 16px 34px 16px !important;
  /* padding: 50px 0px; */
}

.faq-before-heading {
  position: relative;
  max-width: 150px;
  margin: auto;
}

.faq-before-heading-text {
  color: #2a2053;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  margin-bottom: 0px !important;
  text-align: center;
}

.faq-before-heading-text::before,
.faq-before-heading-text::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #0000002a;
  display: block;
  position: absolute;
  top: 50%;
}

.faq-before-heading-text::before {
  left: 0;
}

.faq-before-heading-text::after {
  right: 0;
}

.before-faq-para {
  padding-top: 29px !important;
}

.faq-heading-text {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 31.25px;
  margin: 8px 0px !important;
  text-align: left;
}

.faq-heading-para {
  color: rgba(2, 2, 2, 0.7);
  text-align: center;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0% 40px;
  margin-bottom: 0px !important;
}

/* .faq-heading{
    padding-bottom: 32px;
} */

.faq-question-list {
  padding-top: 32px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.qus-faq > p {
  margin-bottom: 0px !important;
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 20px;
}

/* .qus-icon-outer{
    width: 28px;
    height: 27px;
    border-radius: 8px;
    background: #FFEFDA;
}

.qus-icon{
    width: 24px;
    height: 24px;
    margin-left: auto;
    margin-right: auto;
}
.qus-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.faq-image-block {
  width: 172px;
  height: 211px;
  margin: auto;
}

.faq-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.got-any-qus {
  padding-top: 34px;
}

.after-image-faq {
  padding-left: 30%;
}

.qus-section {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 8px !important;
}

.qus-para {
  color: rgba(2, 2, 2, 0.7);
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  margin-bottom: 0px !important;
}

.qus-form {
  padding-top: 24px;
}

.after-any-qus {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 9px !important;
}

.for-query > textarea {
  color: #020202;
  font-family: "Readex Pro", sans-serif;
  border-radius: 4px;
  width: 100%;
  height: 96px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  font-size: 12px;
  font-weight: 400;
  background: #fff;
  line-height: 15px;
  padding: 16px;
}

@media (max-width: 1200px) {
  .after-image-faq {
    padding-left: unset;
  }
}

@media (max-width: 992px) {
  .faq-heading-text {
    text-align: center;
  }
  .faq-container {
    padding: 0px 16px !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 768px) {
  .faq-before-heading-text {
    font-size: 16px;
  }
}
@media (max-width: 568px) {
  .faq-heading-text {
    font-size: 18px;
    text-align: center;
    line-height: 20px;
  }
  .after-any-qus {
    font-size: 18px;
  }

  .faq-heading-para {
    padding: unset;
  }
}
/* end of faq section */

/* Footer */
.footer-section {
  background-color: #c00404;
  padding: 4px 0px;
  margin-top: 49px;
  position: relative;
  padding: 0px !important;
}

.after-footer-section {
  max-width: 1200px !important;
  margin: auto;
  padding: 62px 150px 70px 0px;
}

.foot-logo-div {
  width: 116px;
  height: 41px;
  float: right;
}

.foot-logo-div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.after-logo {
  padding-top: 60px;
}

.after-logo > p {
  color: #ffffff;
  opacity: 0.8;
  text-align: right;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.foot-menu-div {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  padding-top: 25px;
  padding-left: 22px;
}

.foot-menu-div ul {
  display: flex;
  gap: 16px;
  padding-left: 0px !important;
  list-style: none;
}

.foot-menu-div ul li a {
  font-family: "Readex Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #ffffff;
  gap: 10px !important;
}

.after-foot-menu > p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-left: 22px;
}

.llast-div {
  max-width: 320px;
  padding-top: 25px;
}

.llast-div > p {
  color: #ffffff;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer-line-custom {
  max-width: 420px;
  position: relative;
}

.footer-line-custom::before {
  content: "";
  width: 1px;
  height: 115px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 10%;
}

.footer-line-custom::before {
  left: 0;
}

@media (max-width: 992px) {
  .foot-logo-div {
    float: unset;
    margin-left: auto;
    margin-right: auto;
  }

  .after-logo {
    padding: unset;
  }
  .after-logo > p {
    text-align: center;
    padding-top: 10px;
  }
  .after-foot-menu > p {
    text-align: center;
  }

  .foot-menu-div {
    padding-top: unset;
  }

  .foot-menu-div ul {
    text-align: center;
    display: inline;
    margin-left: auto;
    margin-right: auto;
  }
  .ssb {
    justify-content: center;
  }
  .llast-div {
    margin: auto;
    text-align: center;
    padding: 20px 0px 0px 0px;
  }

  .footer-line-custom {
    margin: auto;
  }

  .footer-line-custom::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .llast-div {
    padding-top: 10px;
  }

  .foot-menu-div ul li a {
    font-size: 14px;
  }
}

/* End of footer */

/* added css */

.extra-details-tab-faq-sub-container {
  padding: 12px 0px;
  display: none;
  overflow: hidden;
  width: 95%;
}

.extra-details-tab-faq-sub-container-text {
  color: rgba(2, 2, 2, 0.7);
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px !important;
}

.active > .extra-details-tab-faq-sub-container {
  /* display: block; */
}

.information-block > a {
  color: inherit;
  text-decoration: none;
}

.info-text {
  margin-top: auto;
  margin-bottom: auto;
}

.button-box > p {
  margin-bottom: 0px !important;
}
