/* -------------------------- */
/* common */
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
  /* font-family: "Inter", sans-serif; */
  /* font-family: honda; */
  font-size: 16px;
  font-weight: 400;
  /* text-transform: none; */
  line-height: 1.2;
}

@font-face {
  font-family: honda;
  src: url(./loading/Honda\ Regular.ttf), format("truetype");
  font-display: swap;
}

.honda-font {
  font-family: honda;
  font-size: inherit;
  font-weight: inherit;
}

/* common max-width & overflow */
.mx100 {
  max-width: 100%;
  overflow: hidden;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
}

/* dummy-height */
.dummy-height {
  height: 200vh;
}

/* root */
:root {
  --color1: #2b66fd;
  --color2: #eef9fe;
  --color3: #f5f5f5;
  --color4: #070707;
  --color5: #000000;

  --grad1: linear-gradient(90deg, #00d2ff 0%, #3f4fff 100%);
  --grad2: linear-gradient(130deg, cyan 0%, rgb(209, 211, 255) 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

/* -------------------------- */
/* menu-common-height */

.menu-common-height {
  height: 1rem;
  /* display: none; */
}

@media screen and (max-width: 1250px) {
  .menu-common-height {
    display: block;
    height: 6rem;
  }
}

/* -------------------------- */
/* menu-common */
.menu-common {
  max-width: 90%;
  height: 70px;
  background: var(--color3);
  margin: 1rem auto 0;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  position: relative;
  border: 2px solid var(--color4);
}

.menu-common-clickable {
  display: none;
}

.menu-common-logo {
  text-transform: uppercase;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-common-logo img {
  max-width: 3rem;
}

.menu-common * {
  color: var(--color4);
}

.responsive-lap-mobile {
  display: flex;
  width: max-content;
  gap: 5rem;
  justify-content: space-between;
}

.menu-common-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.menu-common-ctas a {
  border: 2px solid var(--color4);
  color: var(--color4);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
}

.menu-common-ctas a:hover {
  background: var(--color4);
  color: var(--color3);
}

.menu-common .menu-common-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.menu-common .menu-common-menu a {
  position: relative;
}

.menu-common .menu-common-menu a::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--color4);
  position: absolute;
  bottom: 150dvh;
  left: 0;
  transition: bottom 1s ease;
}

.menu-common .menu-common-menu a:hover:after {
  bottom: -5px;
  transition: bottom 0.5s ease;
}

/* .menu-common .menu-common-menu a:hover {
  background: var(--grad1);
  background-clip: text;
  color: transparent;
} */

.menu-common .menu-common-menu a:hover {
  font-weight: 500;
}

@media screen and (max-width: 1700px) {
  .menu-common .menu-common-menu {
    gap: 1rem;
  }
}

@media screen and (max-width: 1250px) {
  .responsive-lap-mobile {
    position: fixed;
    /* top: 90px; */
    top: -200vh;
    transition: top 1s ease;
    flex-direction: column;
    width: 90%;
    left: 5%;
    border-radius: 2rem;
    z-index: 1000 !important;
    height: calc(100vh - 150px);
    background: var(--color3);
    padding: 4rem 2rem;
    justify-content: center;
    gap: 3rem;
    overflow-y: scroll;
    border: 2px solid var(--color4);
  }

  .menu-common-logo img {
    max-width: 2.25rem;
  }

  /* testing */
  /* .menu-common:hover .responsive-lap-mobile {
    top: 90px;
    transition: top 1s ease;
  } */

  .responsive-lap-mobile.active {
    top: 90px;
    transition: top 1s ease;
    z-index: 10000 !important;
  }

  .menu-common-ctas,
  .menu-common-menu {
    flex-direction: column;
  }

  .menu-common-menu a {
    font-size: 1.5rem;
  }

  .menu-common-ctas a {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
  }

  .menu-common-clickable {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 20px;
    width: 20px;
    transition: transform 2s ease;
  }

  .menu-common-clickable * {
    position: absolute;
    height: 100%;
    width: 100%;
    transition:
      opacity 0.5s ease,
      transform 0.6s ease;
  }

  /* Default State */
  .menu-common-clickable .hamIcon {
    opacity: 1;
    transform: rotate(0deg);
  }

  .menu-common-clickable .closeIcon {
    opacity: 0;
    transform: rotate(-1080deg);
  }

  /* Active State */
  .menu-common-clickable.active .hamIcon {
    opacity: 0;
    transform: rotate(1080deg);
  }

  .menu-common-clickable.active .closeIcon {
    opacity: 1;
    transform: rotate(0deg);
  }

  .menu-common {
    padding: 0 1rem;
    position: fixed;
    top: 1.25rem;
    width: 90%;
    left: 5%;
    height: 60px;
    margin-top: 0;
    z-index: 100;
    /* background: var(--color5); */
    /* border-radius: 0; */
    /* border-block: 1px solid var(--color3); */
    box-shadow: -2px -2px 40px var(--color3);
  }
}

/* -------------------------- */
/* index-sec-01 */
.index-sec-01 {
  min-height: calc(100vh - 110px);
  padding-block: 5%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  border-radius: 2rem;
  /* border: 2px solid var(--color4); */
  background-color: var(--color4);
  position: relative;
}

.index-sec-01 * {
  color: var(--color3);
}

.index-sec-01 h2,
.index-sec-01 h2 * {
  font-size: 2.75rem;
  text-align: center;
  line-height: 1.2;
}

.index-sec-01 h2 {
  margin-inline: 15%;
  padding-inline: 0%;
  text-transform: none;
}

.divide-by-4 {
  display: flex;
  margin: 2.5rem auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* background: red; */
}

.divide-by-4 .db4-h2 {
  font-size: 1.5rem;
  max-width: 17%;
  min-width: 17%;
  text-align: center;
  overflow: hidden;
  overflow-wrap: break-word;
  /* Standard property */
  word-wrap: break-word;
  background: var(--grad2);
  background-clip: text;
  color: transparent;
  /* font-weight: 900; */
  /* opacity: .5 !important; */
  /* transition: opacity .5s ease !important; */
  /* Legacy name for browser compatibility */
}

/* .divide-by-4 .db4-h2:hover {
  opacity: 1 !important;
  transition: opacity .5s ease !important;
} */

.divide-by-4 img {
  max-height: 10rem;
}

.sec1-bg {
  position: absolute;
  opacity: 0.1;
  scale: 1.5;
}

.sec1-top {
  max-height: 7rem;
  margin-bottom: 3rem;
}

.index-sec-01 .index-sec-01-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.index-sec-01 .index-sec-01-ctas a {
  background-color: var(--color3);
  color: var(--color4);
  border: 2px solid var(--color3);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0px 0px var(--color3);
}

.index-sec-01 .index-sec-01-ctas a * {
  color: var(--color4);
}

.index-sec-01 .index-sec-01-ctas a:hover {
  background-color: var(--color4);
  color: var(--color3);
  box-shadow: 0px 4px var(--color3);
}

.index-sec-01 .index-sec-01-ctas a:hover * {
  color: var(--color3);
}

@media screen and (max-width: 1700px) {
  .index-sec-01 {
    padding-block: 2.5%;
  }

  .divide-by-4 {
    margin-block: 1.5rem;
  }

  .index-sec-01 h2,
  .index-sec-01 h2 * {
    font-size: 2rem;
  }

  .divide-by-4 img {
    max-height: 7rem;
  }

  .index-sec-01 h2 br {
    display: none;
  }

  .sec1-top {
    max-height: 6.5rem;
  }

  .index-sec-01 h2 {
    margin-inline: 10%;
  }
}

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

  .index-sec-01 h2,
  .index-sec-01 h2 * {
    font-size: 1.5rem;
  }

  .divide-by-4 {
    flex-direction: column;
    margin-block: 3rem;
  }

  .divide-by-4 .db4-h2 {
    width: 100%;
    max-width: 100%;
    font-size: 1.25rem;
    /* opacity: 1 !important; */
  }

  .divide-by-4 div br {
    display: none;
  }

  .divide-by-4 img {
    max-width: 100%;
    rotate: 90deg;
    margin: -3.5rem 0;
  }

  .index-sec-01 h2 {
    margin-inline: 5%;
  }

  .index-sec-01 {
    padding-block: 2.5rem;
  }

  .index-sec-01 .index-sec-01-ctas {
    flex-direction: column;
    width: 80%;
  }

  .index-sec-01 .index-sec-01-ctas a {
    width: 100%;
  }

  .sec1-top {
    max-height: 6rem;
    margin-bottom: 2rem;
  }
}

/* -------------------------- */
/* footer-main */

.footer-main {
  max-width: 90%;
  margin: 0 auto 3.5rem;
  background: var(--color4);
  border-radius: 2rem;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main * {
  color: var(--color3);
}

.footer-main :is(.fm-top, .fm-bottom) {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.footer-main .fm-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.217);
  padding-top: 2rem;
}

.footer-main .fmb-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.fmt-left {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fmt-left .fmt-left-logo {
  font-size: 2rem;
  font-weight: 600;
}

.fmt-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: auto;
  gap: 3rem;
}

.fmt-right .fmt-right-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fmt-right .fmt-right-div h2 {
  background: var(--grad1);
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
}

.fmt-right .fmt-right-div a {
  padding-left: 0.25rem;
  font-size: 1.1rem;
}

.fmt-left p {
  line-height: 1.5;
  font-size: 1.1rem;
}

.fmt-left-socials {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.fmt-left-socials a {
  display: flex;
  gap: 0.75rem;
  border: 1px solid var(--color3);
  padding: 0.5rem;
  padding-top: 0.75rem;
  align-items: center;
  justify-content: center;
}

.fmt-left-socials a svg {
  max-width: 1rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 1200px) {
  .fmt-left {
    max-width: 30%;
  }

  .fmt-right {
    width: 65%;
  }
}

@media screen and (max-width: 800px) {
  .footer-main .fm-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .fm-bottom * {
    text-align: center;
  }

  .footer-main .fmb-right {
    gap: 0.25rem 0.5rem;
  }

  .fmt-left,
  .fmt-right {
    width: 100%;
    max-width: 100%;
  }

  .fmt-left {
    gap: 1rem;
  }

  .fm-top {
    gap: 4rem;
  }

  .fmt-right {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .fmt-right-div {
    width: 100%;
  }

  .footer-main .fm-top {
    flex-direction: column;
  }

  .fmt-left-socials {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .footer-main {
    padding: 3rem 5%;
    margin: 0rem auto 1.5rem;
  }

  .fmt-right .fmt-right-div a {
    padding-left: 0.5rem;
  }
}

/* ---------------------------- */
/* venkat-bottom */

/* .venkat-bottom {
  font-size: 13vw;
  margin: 0 2.5%;
  max-width: 90%;
  font-weight: 900;
  line-height: 1;
  padding-bottom: 50vh;
  text-align: center;
  -webkit-box-reflect: below -160px
    linear-gradient(0deg, #00000091, transparent);
} */

.venkat-bottom {
  max-width: 90%;
  margin: 0 auto;
}

.venkat-bottom img {
  width: 100%;
  margin-bottom: -2rem;
}

@media screen and (max-width: 800px) {
  .venkat-bottom img {
    width: 100%;
    margin-bottom: -0.75rem;
  }
}

/* ---------------------- */
/* height inbetween section */

.height-inbetween-section {
  height: 5rem;
}

@media screen and (max-width: 800px) {
  .height-inbetween-section {
    height: 3rem;
  }
}

/* ---------------------- */
/* heading-for-flex */
.heading-for-flex {
  max-width: 90%;
  margin: 0 auto;
}

.heading-for-flex h2 {
  font-size: 3rem;
  text-align: center;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
}

@media screen and (max-width: 1700px) {
  .heading-for-flex h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .heading-for-flex h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 800px) {
  .heading-for-flex h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

/* ---------------------- */
/* index-sec-02 */

.index-sec-02 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  gap: 1rem;
  margin-top: 1rem;
  /* background-color: red; */
}

.card-sec-02-div {
  min-height: 30rem;
  width: 33%;
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("https://media.istockphoto.com/id/1442307072/photo/experienced-operator-works-on-a-uv-printer-in-printing-house.jpg?s=612x612&w=0&k=20&c=K4gexMqvzMI2IwT_dEABVKkaZZkCXY9M5nElPBQ4Amo=") no-repeat 50% 50%;
  background-size: cover;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.payments {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./online/01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.jobs {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./online/02.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.exams {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./online/03.webp") no-repeat 50% 50%;
  background-size: cover;
}

.legal {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./offline/01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.academic {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./offline/02.webp") no-repeat 50% 50%;
  background-size: cover;
}

.printing {
  background:
    linear-gradient(0deg, var(--color4), transparent),
    url("./offline/03.jpeg") no-repeat 50% 50%;
  background-size: cover;
}

.card-sec-02-div .card-sec-02-div-top {
  position: absolute;
  top: 2rem;
  display: flex;
  gap: .5rem;
  width: 90%;
  max-width: 90%;
  left: 5%;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.card-sec-02-div .card-sec-02-div-top a {
  background: var(--color3);
  color: var(--color4);
  padding: .75rem .8rem;
  border-radius: .5rem;
  text-align: center;
  height: max-content;
}

.card-sec-02-div h4 {
  font-size: 2rem;
  color: var(--color3);
}

@media screen and (max-width: 1700px) {
  .index-sec-02 {
    justify-content: space-between;
    max-width: 90%;
  }

  .card-sec-02-div {
    width: calc(33% - 1rem);
  }
}

@media screen and (max-width: 1200px) {
  .index-sec-02 {
    justify-content: space-between;
  }

  .card-sec-02-div {
    width: calc(33% - 1rem);
  }
}

@media screen and (max-width: 1000px) {
  .index-sec-02 {
    flex-direction: column;
  }

  .card-sec-02-div .card-sec-02-div-top {
    gap: 0.5rem;
  }

  .card-sec-02-div {
    width: 100%;
  }
}

/* -------------------- */
/* is03-div */

.index-sec-03 {
  max-width: 80%;
  margin: 0 auto;
}

.is03-div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 4rem;
  border-radius: 4rem;
  background: #faf9f6;
  border: 1px solid gainsboro;
  position: sticky;
  top: 50px;
}

/* .is03-div:nth-child(1) {
  top: 80px;
}

.is03-div:nth-child(2) {
  top: 100px;
}

.is03-div:nth-child(3) {
  top: 120px;
}

.is03-div:nth-child(4) {
  top: 140px;
} */

.is03-div-r {
  max-width: 40%;
  min-height: 100%;
  max-height: 30rem;
  display: flex;
  align-self: stretch;
  overflow: hidden;
  border-radius: 1rem;
}

.is03-div-r img {
  width: 100%;
  height: 100%;
  object-position: 0% 0%;
  object-fit: cover;
}

.is03-div-l {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 40%;
  justify-content: space-between;
  min-height: 100%;
  align-self: stretch;
  /* background: red; */
}

.is03-div-l .number {
  background: var(--color4);
  color: var(--color3);
  padding: 1rem;
  max-width: max-content;
  border-radius: 0.5rem;
}

.is03-div-l .head {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.05;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
}

.is03-div-l p {
  font-weight: 200;
  font-size: 1.25rem;
  opacity: .5;
}

.is03-div-l a {
  border: 1px solid var(--color4);
  color: var(--color4);
  padding: 1.25rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.is03-div-l a:hover {
  background-color: var(--color4);
  color: var(--color3);
}

.is03-div-l a:hover * {
  color: var(--color3);
}

@media screen and (max-width: 1000px) {
  .is03-div {
    flex-direction: column;
    padding: 4rem 2rem;
    height: max-content;
    gap: 2rem;
    position: relative;
    top: auto;
  }

  .is03-div-l,
  .is03-div-r {
    width: 100%;
    max-width: 100%;
    align-self: normal;
    /* min-height: max-content; */
  }

  .is03-div-l {
    gap: 1.5rem;
  }

  .is03-div-l .number {
    padding: 0.75rem;
  }

  .is03-div-l .head {
    font-size: 1.5rem;
  }

  .is03-div-l p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1700px) {
  .index-sec-03 {
    max-width: 90%;
  }
}

/* --------------------- */
/* pricing-page-heading */
.pricing-page-heading {
  font-size: 3.5rem;
  padding: 2.5rem 20% 4rem;
  text-align: center;
  line-height: 1;
  text-transform: none;
}

@media screen and (max-width: 1700px) {
  .pricing-page-heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 800px) {
  .pricing-page-heading {
    font-size: 2rem;
    padding: 1.5rem 5% 3rem;
  }
}

/* --------------------- */
/* pdf-iframe */

.price-div {
  width: 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-div img {
  max-width: 100%;
  min-width: 100%;
  object-fit: contain;
  margin-top: 1rem;
}

@media screen and (max-width: 800px) {
  .price-div {
    width: 90%;
  }
}

/* ------------------------- */
/* saus-top */

.section-about-us {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  gap: 7rem;
}

.saus-top {
  display: flex;
  /* border-bottom: 1px solid var(--color4); */
}

.saus-top h2 {
  font-size: 2rem;
  min-width: 35%;
  border-left: 2px solid var(--color4);
  padding-left: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  height: max-content;
  position: sticky;
  top: 100px;
}

.saus-top div h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: justify;
  border-left: 1px solid var(--color4);
  padding-left: 2rem;
  margin-bottom: 3rem;
  opacity: 0.5 !important;
}

.saus-top div a {
  background: var(--color4);
  color: var(--color3);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: block;
  max-width: max-content;
}

.saus-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}

.saus-div {
  max-width: 25%;
  width: 25%;
}

.saus-div h2 {
  font-size: 3rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color4);
  margin-bottom: 1rem;
  line-height: 1;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
}

.saus-div div h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.saus-div div p {
  font-size: 1.25rem;
  opacity: 0.5 !important;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  .saus-bottom {
    flex-direction: column;
    gap: 3rem;
  }

  .saus-div h2 {
    font-size: 2.5rem;
  }

  .saus-div {
    max-width: 100%;
    width: 100%;
  }

  .section-about-us {
    gap: 3rem;
    max-width: 90%;
  }

  .saus-top {
    flex-direction: column;
  }

  .saus-top h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    padding-left: 0;
    border: none;
    position: relative;
    top: 0;
  }

  .saus-top div h3 {
    padding-left: 0;
    border: none;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .saus-div div p {
    font-size: 1rem;
  }
}

/* ---------------------- */
/* contact-page */

.contact-page {
  display: flex;
  max-width: 80%;
  margin: 0 auto;
  grid-area: 5%;
  justify-content: space-between;
}

.contact-page .cp-left {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  justify-content: space-between;
  border: 1px solid gainsboro;
  border-left: none;
  border-right: none;
  padding: 2.5rem 0;
}

.contact-page .cp-left h2 {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
}

.contact-page .cp-left h2:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page .cp-left span {
  /* font-weight: 600; */
  min-width: 30%;
  opacity: 0.7;
  /* background: red; */
  /* font-size: 1.5rem; */
}

.contact-page .cp-left * {
  font-size: 1.25rem;
}

.contact-page .cp-right {
  width: 47.5%;
}

.iframemap {
  width: 100%;
  height: 50vh;
  border-radius: 2rem;
}

@media screen and (max-width: 1700px) {
  .iframemap {
    height: 60vh;
  }
}

@media screen and (max-width: 800px) {
  .contact-page {
    flex-direction: column;
    gap: 3rem;
    max-width: 90%;
  }

  .contact-page .cp-left span {
    min-width: 20%;
  }

  .contact-page .cp-left svg {
    max-width: 1.25rem;
  }

  .contact-page .cp-left h2,
  .contact-page .cp-left h2 * {
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .contact-page .cp-left {
    gap: 2rem;
  }

  .contact-page .cp-left h2 {
    padding-bottom: 2rem;
  }

  .contact-page :is(.cp-left, .cp-right) {
    width: 100%;
  }
}

/* ---------------------- */
/* inner-page-common */

.inner-page-common {
  display: flex;
  min-height: 15rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid gainsboro;
  max-width: 90%;
  margin: 0 auto;
  background: var(--color4);
  border-radius: 2rem;
}

.inner-page-common h2 {
  font-size: 3rem;
  color: var(--color3);
}

@media screen and (max-width: 800px) {
  .inner-page-common h2 {
    font-size: 2rem;
  }

  .inner-page-common {
    min-height: 12rem;
    /* margin-top: -1.5rem */
  }

  .inner-page-common-2 {
    margin-bottom: -0.5rem;
    border-radius: 1rem;
  }
}

/* --------------------- */
/* ------------------------------- */
/* top bottom button */
#top-bottom {
  position: fixed;
  left: 5%;
  bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  z-index: 1000 !important;
}

/* #top-bottom *{
  line-height: 1;
} */

#top-bottom div {
  padding: 0.5rem;
  background-color: var(--color3);
  cursor: pointer;
  border: 1px solid var(--color4);
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-bottom #top {
  transform: rotate(180deg);
}

@media screen and (max-width: 700px) {
  #top-bottom {
    left: 5%;
    bottom: 2vh;
  }
}

/* ------------------------------- */
/* whatsapp-icon */
#whatsapp-icon,
#call-icon {
  position: fixed;
  right: 5%;
  bottom: 5vh;
  padding: 0.5rem;
  background-color: var(--color3);
  cursor: pointer;
  z-index: 1000;
  border: 1px solid var(--color4);
  height: 2.5rem;
  width: 2.5rem;
}

#whatsapp-icon * {
  font-size: 1.25rem;
  line-height: 1;
}

#call-icon {
  bottom: 6rem;
}

@media screen and (max-width: 700px) {
  #whatsapp-icon {
    right: 5%;
    bottom: 2vh;
  }

  #call-icon {
    bottom: 3.75rem;
    right: 5%;
  }
}

/* ------------------------ */
/* testimonial */

.swiper-testimonials {
  background: var(--color4);
  height: max-content;
  padding-block: 4rem;
  /* margin-top: 1rem; */
}

.swiper-testimonials * {
  color: var(--color3);
  text-align: center;
}

.swiper-testimonials .swiper-wrapper {
  width: max-content;
  min-width: 100%;
}

.swiper-testimonials .swiper-slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 5rem;
  width: 100%;
  text-align: center;
  gap: 1rem;
  padding: 0rem 20rem;
}

.swiper-testimonials .swiper-slide .heading-for-flex {
  margin-bottom: 1rem;
}

.swiper-testimonials .swiper-slide .name {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.swiper-testimonials .swiper-slide .area {
  font-size: 1.5rem;
}

.swiper-testimonials .swiper-slide .comments {
  opacity: 0.5;
  font-size: 1.5rem;
}

@media screen and (max-width: 800px) {
  .swiper-testimonials .swiper-slide {
    padding: 4rem 2rem;
  }

  .swiper-testimonials .swiper-slide .name {
    font-size: 2rem;
  }

  .swiper-testimonials {
    height: min-content;
    padding-block: 0;
  }

  .swiper-testimonials .swiper-slide .heading-for-flex h2 {
    font-size: 1.5rem !important;
  }

  .swiper-testimonials .swiper-slide .area,
  .swiper-testimonials .swiper-slide .comments {
    font-size: 1.25rem;
  }

  /* .swiper-testimonials .swiper-slide .comments {
    text-align: center;
  } */
}

/* ------------------------ */
/* ceo-section */

.ceo-section {
  display: flex;
  max-width: 70%;
  margin: 0 auto;
  gap: 5rem;
  position: relative;
  margin-top: 3rem;
}

.ceo-left h6 {
  font-size: 20rem;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: 0%;
  z-index: -100;
  /* writing-mode: sideways-lr; */
  /* border: 1px solid red; */
}

.ceo-left h2 {
  font-size: 4rem;
}

.ceo-right {
  max-width: 40%;
  min-width: 40%;
}

.ceo-right img {
  max-width: 100%;
  width: 100%;
  border-radius: .5rem;
  border: 1px solid gainsboro;
}

.ceo-left h3 {
  font-size: 2rem;
  margin: 0.25rem 0 2rem;
}

.ceo-left p {
  line-height: 1.5;
  font-size: 1.25rem;
}

@media screen and (max-width: 1700px) {
  .ceo-section {
    max-width: 90%;
    gap: 5%;
  }

  .ceo-left h2 {
    font-size: 3.25rem;
    font-weight: 600;
  }

  .ceo-right {
    max-width: 45%;
    min-width: 45%;
  }
}

@media screen and (max-width: 800px) {
  .ceo-section {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .ceo-left h3 {
    font-size: 1.25rem;
  }

  .ceo-left h2 {
    font-size: 2rem;
  }

  .ceo-section * {
    text-align: center;
  }

  .ceo-right {
    max-width: 100%;
    min-width: 100%;
  }
}

/* --------------------------- */
/* our-team-ceo */
.our-team-ceo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem 2%;
  flex-wrap: wrap;
  padding: 0 15%;
  margin-top: 2rem;
}

.our-team-ceo div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: column;
  max-width: 32%;
  width: 32%;
  overflow: hidden;
}

.our-team-ceo img {
  /* background: gainsboro; */
  border-radius: 1rem;
  max-height: 25rem;
  min-height: 25rem;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  border: 2px solid gainsboro;
}

.our-team-ceo div * {
  max-width: 100%;
  text-align: center;
}

.our-team-ceo div h2 {
  font-size: 2rem;
  font-weight: 600;
}

.our-team-ceo p {
  opacity: 0.5;
  margin-top: -0.5rem;
  font-size: 1.25rem;
}

@media screen and (max-width: 1700px) {
  .our-team-ceo {
    padding: 0 5%;
  }
}

@media screen and (max-width: 1200px) {
  .our-team-ceo div {
    max-width: 32%;
  }
}

@media screen and (max-width: 800px) {
  .our-team-ceo div {
    max-width: 45%;
    width: 45%;
  }

  .our-team-ceo {
    gap: 1rem 2.5%;
  }
}

@media screen and (max-width: 800px) {
  /* .our-team-ceo div {
    max-width: 100%;
  } */

  .our-team-ceo div {
    max-width: 100%;
    width: 100%;
  }

  .our-team-ceo div h2 {
    font-size: 1.5rem;
  }

  .our-team-ceo {
    gap: 1.5rem 5%;
    margin-top: 1.25rem;
  }
}

/* ---------------------- */
/* timeline */

.timeline {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  margin: 0 auto;
  gap: 10vh;
  position: relative;
  margin-top: 2rem;
}

.timeline-div {
  display: flex;
  position: sticky;
  top: 0px;
  width: 100%;
  /* border: 1px solid blue; */
  gap: 10%;
  background: white;
  justify-content: space-between;
  border: 1px solid gainsboro;
  padding: 4rem 2rem;
  border-radius: 0.5rem;
}

.timeline-div:nth-child(2n) {
  flex-direction: row-reverse;
}

.timeline-div img {
  max-width: 25%;
  /* min-width: 25%; */
  max-height: 15rem;
  object-fit: cover;
  object-position: 50% 50%;
}

.timeline-div-right h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
  /* max-width: max-content; */
  text-transform: uppercase;
  letter-spacing: -2px;
}

.timeline-div-right h2::after {
  content: "";
  position: absolute;
  right: -12.75%;
  top: 25%;
  height: 20px;
  width: 20px;
  background: greenyellow;
}

.timeline-div:nth-child(odd) .timeline-div-right h2::after {
  left: -12.75%;
}

.timeline-div-right p {
  line-height: 1.5;
  font-size: 1.5rem;
  text-align: center;
}

.timeline-div-right {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 45%;
  max-width: 45%;
}

.timeline-div:nth-child(odd) .timeline-div-right * {
  text-align: left !important;
  width: 100%;
}

.timeline-div:nth-child(2n) .timeline-div-right * {
  text-align: right !important;
  width: 100%;
}

.timeline-line {
  position: absolute;
  height: 100%;
  width: 2px;
  left: calc(50% - 1px);
  z-index: 100 !important;
  background-color: greenyellow;
}

@media screen and (max-width: 1700px) {
  .timeline {
    max-width: 90%;
  }
}


@media screen and (max-width: 1000px) {
  .timeline-div {
    flex-direction: column !important;
    border-radius: 0;
    top: 0px;
    position: relative;
    gap: 2rem;
    padding: 2rem 5%;
  }

  .timeline {
    gap: 1rem;
  }

  .timeline-div * {
    min-width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .timeline-div img {
    max-width: 50% !important;
    min-width: 50% !important;
    margin: auto;
  }

  .timeline .timeline-div .timeline-div-right h2 {
    text-align: center !important;
    font-size: 1.75rem;
    margin: 1rem 0;
  }

  .timeline {
    margin-top: 1.25rem;
  }

  .timeline-div-right h2::after {
    display: none !important;
  }

  .timeline .timeline-div .timeline-div-right h2::after {
    left: -2.65rem !important;
  }

  .timeline .timeline-div .timeline-div-right h2 {
    font-size: 2rem;
  }

  .timeline .timeline-div .timeline-div-right p {
    text-align: center !important;
    font-size: 1.25rem;
    /* font-size: .75rem; */
  }

  .timeline-line {
    left: 0;
    display: none;
  }

}

/* ---------------- */
/* internal-page */

.internal-page {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto;
  gap: 4rem;
  padding-top: 2rem;
}

.internal-page .line1 {
  font-size: 1.5rem;
  font-weight: 900;
  opacity: .25;
}

.line2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15%;
}

.line2 h2 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 500;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
  max-width: 60%;
  letter-spacing: -3px;
}

.line2 p {
  max-width: 30%;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 200;
  text-align: end;
  opacity: .5;
}

.line3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.line3 :is(.line3-l, .line3-r) {
  max-width: 45%;
  min-width: 45%;
  /* overflow: hidden; */
}


.line3-l {
  position: sticky;
  top: 100px;
}

.line3 .line3-l img {
  max-height: 37rem;
  object-fit: cover;
  max-width: 100%;
  min-width: 100%;
  border-radius: .5rem;
}

.line3-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem 0;
}

.line3-r .line3-r-div {
  max-width: 45%;
  padding-left: 2rem;
  border-left: 1px solid gainsboro;
  transition: all .5s ease;
}

.line3-r .line3-r-div * {
  text-align: left;
}

.line3-r:hover .line3-r-div:not(:hover) {
  opacity: .5;
}

.line3-r:hover .line3-r-div:hover {
  border-color: black;
  cursor: pointer;
  transition: all .5s ease;
  opacity: 1;
}

.line3-r .line3-r-div h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.line3-r .line3-r-div p {
  line-height: 1.5;
  font-size: 1.1rem;
  opacity: .5;
}

@media screen and (max-width: 1700px) {
  .line2 h2 {
    font-size: 4rem;
  }

  .internal-page {
    gap: 3rem;
  }
}

@media screen and (max-width: 800px) {
  .line2 {
    flex-direction: column;
    gap: 2rem;
  }

  .internal-page {
    gap: 2rem;
  }

  .line2 :is(h2, p) {
    max-width: 100%;
    text-align: left;
  }

  .line3 {
    flex-direction: column;
    gap: 2rem;
  }

  .line3 .line3-l,
  .line3 .line3-r {
    max-width: 100% !important;
    width: 100%;
    position: relative;
    top: 0;
  }

  .line2 h2 {
    font-size: 2.5rem;
  }

  .line3-r {
    gap: 2rem;
  }

  .line3-r .line3-r-div h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .line3-r .line3-r-div {
    max-width: 100%;
  }
}

/* -------------------------- */
/* internal-ctas */

.internal-ctas {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

.content {
  padding: 0 20%;
  position: absolute;
  top: 25%;
}

.content h2 {
  font-size: 3rem;
  font-weight: 600;
  background: var(--grad1);
  background-clip: text;
  color: transparent;
  text-align: center;
  line-height: 1;
  margin: 0 auto 1rem;
  max-width: 70%;
}

.content p {
  font-size: 1.25rem;
  text-align: center;
  opacity: .5 !important;
  line-height: 1.5;
}

@media screen and (max-width: 1700px) {
  .internal-ctas {
    max-width: 90%;
  }

  .content h2 {
    font-size: 2.5rem;
  }

}

@media screen and (max-width: 800px) {
  .internal-ctas {
    max-width: 100%;
    padding-top: 8rem;
  }

  .content {
    top: 5rem;
    padding: 0 10%;
  }

  .content h2 {
    font-size: 1.5rem;
    max-width: 100%;
  }

  .content p {
    font-size: 1rem;
  }

  .internal-ctas img {
    width: 120%;
    margin-left: -10%;
  }

}