/* Scaleing Product */

/* Styles for screens with a width of 2560px and higher */
@media screen and (min-width: 2560px) {
  /* Your CSS styles for screens with a width of 2560px and higher */
  html {
    font-size: 23px;
  }
}

/* Styles for screens with a width between 1999px and 2559px */
@media screen and (min-width: 1999px) and (max-width: 2559px) {
  /* Your CSS styles for screens with a width between 1999px and 2559px */
  html {
    font-size: 21px;
  }
}

/* Styles for screens with a width between 1440px and 1998px */
@media screen and (min-width: 1440px) and (max-width: 1998px) {
  /* Your CSS styles for screens with a width between 1440px and 1998px */
  html {
    font-size: 16px;
  }
}

/* Styles for screens with a width between 1210px and 1439px */
@media screen and (min-width: 1210px) and (max-width: 1439px) {
  /* Your CSS styles for screens with a width between 1210px and 1439px */
  html {
    font-size: 14px;
  }
}

/* Styles for screens with a width between 539px and 1209px */
@media screen and (min-width: 539px) and (max-width: 1209px) {
  /* Your CSS styles for screens with a width between 539px and 1209px */
  html {
    font-size: 13px;
  }
}

/* Styles for screens with a width between 425px and 538 */
@media screen and (min-width: 425px) and (max-width: 538) {
  /* Your CSS styles for screens with a width between 425px and 538 */
  html {
    font-size: 12px;
  }
}

/* Scroll-Bar Design */

/* Hide the scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

/* Optional: You can also style the scrollbar track and thumb */
::-webkit-scrollbar-track {
  background: transparent;
  height: 40%;
  margin-top: auto;
  margin-bottom: auto;
  /* or any other background color */
}

::-webkit-scrollbar-thumb {
  background: var(--tertiary_bg);
  /* or any other thumb color */
  border-radius: 10px;
  /* Rounded thumb corners */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  width: 100vw;
}

a {
  text-decoration: none; /* Remove underline */
  color: inherit;
}

a button {
  background: none; /* Remove background */
  border: none; /* Remove border */
  padding: 0; /* Remove padding */
  cursor: pointer; /* Add pointer cursor */
  color: white; /* Inherit color from parent element */
  font-family: "Inter", sans-serif;
}

a button:hover {
  background: none; /* Ensure background remains none on hover */
}

main {
  width: 100%;
  background-color: white;
}

/* Hide the scrollbar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Optional: You can also style the scrollbar track and thumb */
::-webkit-scrollbar-track {
  background: transparent;
  /* or any other background color */
}

::-webkit-scrollbar-thumb {
  background: transparent;
  /* or any other thumb color */
  border-radius: 0;
  /* Rounded thumb corners */
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast; /* For better clarity in webkit browsers */
  image-rendering: crisp-edges; /* For other browsers */
}

.image-fill {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .p-scale {
  scale: 1.1;
} */

.mobile-image {
  width: 15.5rem;
  height: 100%;
  object-fit: cover;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  background-color: black;
  padding-left: 3rem;
  padding-right: 3rem;
}

.headerName {
  height: 40px;
  width: 98px;
}

.mobile-navLink {
  display: none;
}

.mobile-navbar-list {
  display: none;
}

.navLinks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navLinks > button {
  background-color: transparent;
  color: white;
  outline: none;
  border: none;
  font-family: "Inter", sans-serif;
}

.mainBody {
  height: max-content;
}

.heroSection {
  height: calc(100vh - 4rem);
  background-color: black;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.25rem;
}

.heroBg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroImage {
  width: 33.75rem;
  height: 33.75rem;
}

.heroName {
  color: white;
  font-size: 7.875rem;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 3.625rem;
  z-index: 1;
  margin-left: 3.5rem;
  text-align: center;
}

.heroSubName {
  color: white;
  font-size: 1.75rem;
  font-weight: 500;
  z-index: 1;
  letter-spacing: 0.1375rem;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

.heroScrollDown {
  margin-bottom: 1.5rem;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 0.75rem;
}

.aboutUs {
  padding-top: 7.375rem;
  padding-left: 4.25rem;
  padding-right: 4.25rem;
  max-width: 108.75rem;
  margin-left: auto;
  margin-right: auto;
}

.aboutCompany {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.aboutUsLeft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 40%;
}

.addIcon {
  width: 3rem;
  height: 3rem;
}

.aboutUsTitle {
  font-size: 4.75rem;
  font-family: "Koulen", sans-serif;
  margin-top: -1.375rem;
}

.aboutTitle {
  font-size: 2.75rem;
  font-weight: 700;
}

.aboutSubTitle {
  font-size: 1.25rem;
  letter-spacing: -0.03125rem;
  margin-top: 1.75rem;
}

.aboutUsRight {
  width: 40%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.main-client {
  margin-top: 8.25rem;
  width: 100%;
}

.clients {
  margin-top: 2.25rem;
  width: 100%;
  height: 6.625rem;
  background-color: #fafafa;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.clients > div {
  width: 12.375rem;
  height: 100%;
}

.ourPeople {
  margin-top: 4.25rem;
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 3.25rem;
  /* max-width: 91.5rem; */
  margin-left: auto;
  margin-right: auto;
}

.peopleTop-client {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 5rem;
  width: 100%;
}

.peopleTop {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 5rem;
  width: 100%;
}

.peopleTopLeft > .addIcon {
  width: 1.625rem;
  height: 1.625rem;
  margin-bottom: -0.75rem;
}

.peopleTopLeft > .mainTitle {
  font-size: 2.25rem;
  font-family: "Koulen", sans-serif;
  letter-spacing: -0.0375rem;
  height: 2.9375rem;
}

.peopleTop .subTitle {
  font-size: 1rem;
  letter-spacing: -0.0625rem;
  text-align: end;
}

.peopleBottom {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.teamCard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 16.75rem;
}

.teamPhoto {
  height: 10.625rem;
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}

.teamPhoto > img {
  scale: 1.6;
}

.teamDetails {
  display: flex;
  flex-direction: column;
  gap: 0.09375rem;
  justify-content: center;
  align-items: center;
}

.teamTitle {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}

.teamName {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  color: #8b8b8b;
}

.ourService {
  padding-top: 7.375rem;
  max-width: 116.5rem;
  margin-left: auto;
  margin-right: auto;
}

.serviceHead {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.serviceHead-addIcon {
  width: 2.0625rem;
  height: 2.0625rem;
}

.serviceTitle {
  font-size: 3.25rem;
  margin-top: -0.5rem;
  font-family: "Koulen", sans-serif;
}

/* --------------------Tailwind----------------- */

.container {
  width: 100%;
}

.section-one {
  display: flex;
  justify-content: space-between;
  padding: 0 4.25rem;
  margin-top: 2.625rem;
  gap: 1rem;
}

.section-two {
  display: flex;
  justify-content: space-between;
  padding: 0 4.25rem;
  margin-top: 3.875rem;
  gap: 0.25rem;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  max-width: 15.5rem;
  height: 18.625rem;
  border-radius: 0.2rem;
  overflow: hidden;
}

.text {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

.title {
  font-size: 1rem;
}

.flex {
  display: flex;
}

.gap-4 {
  gap: 1rem;
}

.gap-1 {
  gap: 0.25rem;
}

.mt-20 {
  margin-top: 5rem;
}

.items-start {
  align-items: flex-start;
}

.domain-container {
  padding: 0.5rem;
  max-width: 15.5rem;
}

.domain-title {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
}

.domain-text {
  font-size: 1rem;
  color: #8b8b8b;
  text-align: center;
  margin-top: 1rem;
}

.divider {
  width: 0.03125rem;
  height: 15rem;
  background-color: black;
}

.consultants-container {
  width: 100%;
  padding: 0 1rem;
  margin-top: 5rem;
}

.consultants-box {
  width: 100%;
  padding: 6.125rem 0.75rem;
  background-color: black;
  border-radius: 0.5rem;
}

.logo {
  height: 2.75rem;
  width: 2.75rem;
  margin: 0 auto -0.75rem auto;
}

.consultants-title {
  font-size: 3.25rem;
  color: white;
  text-align: center;
  font-family: "Koulen", sans-serif;
}

.management {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  flex-wrap: wrap;
}

.consultants-content {
  width: min-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.375rem;
  margin-top: 10rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.consultant-item {
  position: relative;
}

.consultant-info {
  padding: 0.25rem;
  border-bottom: 1px solid #8b8b8b;
  position: absolute;
  top: -5.25rem;
  right: 0;
}

.consultant-role {
  color: #8b8b8b;
  font-size: 1rem;
  font-family: "Koulen", sans-serif;
  margin-bottom: -0.625rem;
}

.consultant-name {
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0.00625rem;
  font-family: "Koulen", sans-serif;
}

.consultant-image-container {
  width: 18.625rem;
  height: 24.875rem;
  margin-top: 0.5rem;
  position: relative;
}

.highlight {
  height: 3.375rem;
  width: 3.375rem;
  border-radius: 50%;
  /* background-color: #ff6847; */
  position: absolute;
  top: -2.125rem;
  left: -2.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-add {
  height: 1.5rem;
  width: 1.5rem;
  object-fit: fill;
}

.consultant-description {
  font-size: 1rem;
  width: 100%;
  text-align: left;
  line-height: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.highlight-bar {
  width: 4rem;
  height: 1.5rem;
  margin-left: auto;
}

.reach-us-container {
  width: 100%;
  margin-top: 7.375rem;
  max-width: 91.5rem;
  margin-left: auto;
  margin-right: auto;
}

.reach-us-title-container {
  margin: 0 auto;
  width: max-content;
}

.square {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: -1rem;
}

.reach-us-title {
  font-size: 3.25rem;
  text-align: center;
  font-family: "Koulen", sans-serif;
}

.reach-us-content {
  display: flex;
  justify-content: space-between;
  padding: 8rem;
  padding-top: 4.25rem;
}

.reach-us-left {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 2.625rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.2rem;
  font-family: "Koulen", sans-serif;
}

.contact-details {
  font-size: 1.375rem;
  margin-top: 0.5rem;
  line-height: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-field {
  height: 3.875rem;
  padding-top: 2rem;
  padding-left: 0.5rem;
  width: 30.375rem;
  font-size: 1.375rem;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  font-family: "Inter", sans-serif;
}

.submit-button {
  height: 3.875rem;
  width: 30.375rem;
  font-size: 1.625rem;
  background-color: black;
  outline: none;
  border: none;
  color: white;
  margin-top: 2rem;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  background-color: black;
  overflow: hidden;
}

/* Styles for screens with a width between 539px and 890px */
@media screen and (min-width: 539px) and (max-width: 890px) {
  /* Your CSS styles for screens with a width between 539px and 890px */

  .header {
    height: 8rem;
  }

  .headerName {
    height: 28px;
    width: 74px;
  }

  .heroSection {
    gap: 1.25rem;
  }

  .heroName {
    font-size: 3.875rem;
    letter-spacing: 2.625rem;
  }

  .heroSubName {
    font-size: 1.2rem;
  }

  .aboutUsRight {
    display: none;
  }

  .aboutUsLeft {
    width: 100%;
  }

  .navLinks {
    display: none;
  }

  .mobile-navbar-list {
    display: block;
  }

  .section-one {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .section-two {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .divider {
    width: 100%;
    height: 0.03125rem;
    background-color: black;
  }

  .management {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .mobile-navLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 8rem;
  }

  .mobile-navbar-list {
    width: 100vw;
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 8rem;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: "Roboto Condensed", sans-serif;
    padding: 12px;
    transform: translateY(-42rem);
    transition: transform 0.5s ease-in-out;
  }

  .mobile-navbar-list.active {
    transform: translateY(0);
  }

  .mobile-navbar-list > a {
    /* border-bottom: 0.063rem solid white; */
    padding-top: 4px;
    padding-bottom: 8px;
    padding-left: 18px;
    padding-right: 18px;
    letter-spacing: 0.2rem;
    color: white;
  }

  .burger {
    width: 30%;
    height: 30%;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: all 0.5s ease;
  }
  .burger:hover {
    background: transparent;
  }
  .burger-strip {
    transition: all 0.5s ease;
  }
  .strip div {
    height: 2px;
    border-radius: 2px;
    background: white;
    margin: 5px;
    transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 30px;
  }

  .burger-strip-3 div {
    margin: 6px auto;
  }
  .burger.active .burger-strip-3 div:first-child {
    transform: translateY(9px);
    width: 25px;
  }
  .burger.active .burger-strip-3 div:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-strip-3 div:last-child {
    transform: translateY(-9px);
    width: 25px;
  }

  .reach-us-content {
    justify-content: center;
    flex-wrap: wrap-reverse;
    gap: 32px;
  }
}

/* Styles for screens with a width between 539px */
@media screen and (max-width: 539px) {
  /* Your CSS styles for screens with a width between 539px */

  .navLinks {
    display: none;
  }

  .mobile-navbar-list {
    display: flex;
  }

  .mobile-navLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 8rem;
  }

  .mobile-navbar-list {
    width: 100vw;
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 8rem;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Roboto Condensed", sans-serif;
    padding: 12px;
    transform: translateY(-42rem);
    transition: transform 0.5s ease-in-out;
  }

  .mobile-navbar-list.active {
    transform: translateY(0);
  }

  .mobile-navbar-list > a {
    /* border-bottom: 0.063rem solid white; */
    padding-top: 4px;
    padding-bottom: 8px;
    padding-left: 18px;
    padding-right: 18px;
    letter-spacing: 0.2rem;
    color: white;
  }

  .burger {
    width: 30%;
    height: 30%;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: all 0.5s ease;
  }
  .burger:hover {
    background: transparent;
  }
  .burger-strip {
    transition: all 0.5s ease;
  }
  .strip div {
    height: 2px;
    border-radius: 2px;
    background: white;
    margin: 5px;
    transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 24px;
  }

  .burger-strip-3 div {
    margin: 3px auto;
  }
  .burger.active .burger-strip-3 div:first-child {
    transform: translateY(9px);
    width: 25px;
  }
  .burger.active .burger-strip-3 div:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-strip-3 div:last-child {
    transform: translateY(-9px);
    width: 25px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: black;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 4rem;
  }

  .headerName {
    height: 24px;
    width: 64px;
  }

  .mobile-navLink {
    width: 2rem;
  }

  .heroSection {
    height: 28rem;
    gap: 0.25rem;
  }

  .heroName {
    font-size: 2.875rem;
    letter-spacing: 0.625rem;
    margin-left: -0.5rem;
  }

  .heroSubName {
    font-size: 0.6rem;
    letter-spacing: 0.05rem;
  }

  .heroImage {
    width: 18.75rem;
    height: 18.75rem;
  }

  .heroScrollDown {
    display: none;
  }

  .aboutUs {
    margin-top: -3.375rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .aboutUsTitle {
    font-size: 1.75rem;
    font-family: "Koulen", sans-serif;
    margin-top: -0.375rem;
  }

  .addIcon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .aboutTitle {
    font-size: 1rem;
    font-weight: 700;
  }

  .aboutCompany {
    display: flex;
    flex-direction: column;
  }

  .aboutUsLeft {
    width: 100%;
  }

  .aboutSubTitle {
    font-size: 0.75rem;
    letter-spacing: -0.03125rem;
    margin-top: 0.75rem;
  }

  .aboutUsRight {
    display: none;
  }

  .main-client {
    margin-top: 2.25rem;
    width: 100%;
  }

  .clients {
    width: 15rem;
    margin-top: 1.25rem;
    height: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .clients > div {
    width: 8.375rem;
    height: 3rem;
  }

  .peopleTop-client {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 5rem;
    width: 100%;
  }

  .peopleTop-client > .peopleTopLeft > .addIcon {
    width: 1.625rem;
    height: 1.625rem;
    margin-bottom: 0.25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .peopleTopLeft > .addIcon {
    width: 1.625rem;
    height: 1.625rem;
    margin-bottom: 0.25rem;
  }

  .peopleTopLeft > .mainTitle {
    font-size: 1.25rem;
    font-family: "Koulen", sans-serif;
    letter-spacing: -0.0375rem;
    height: 100%;
    line-height: 20px;
  }

  .peopleTop .subTitle {
    font-size: 0.65rem;
    letter-spacing: -0.0425rem;
    text-align: end;
  }

  .ourPeople {
    margin-top: 1.25rem;
  }

  .peopleBottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2.75rem;
    width: 100%;
    align-items: center;
  }

  .teamCard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 18.75rem;
  }

  .teamPhoto {
    height: 12.625rem;
  }

  .teamTitle {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .teamName {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8b8b8b;
  }

  .consultant-description {
    text-align: center;
  }

  .ourService {
    margin-top: -1.375rem;
  }

  .serviceTitle {
    font-size: 2.25rem;
    margin-top: -0.5rem;
    font-family: "Koulen", sans-serif;
  }

  .section-one {
    display: flex;
    flex-direction: column;
    padding: 0 0.25rem;
    margin-top: 2.625rem;
    align-items: center;
    gap: 3rem;
  }

  .section-two {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 0 0.25rem;
    margin-top: 3.875rem;
    gap: 1.25rem;
  }

  .divider {
    width: 100%;
    height: 0.03125rem;
    background-color: black;
  }

  .consultants-title {
    font-size: 2.25rem;
  }

  .logo {
    height: 1.75rem;
    width: 1.75rem;
    margin: 0 auto -0.75rem auto;
  }

  .management {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .consultants-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.375rem;
    margin-top: 8rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }

  .consultant-image-container {
    width: 100%;
    height: 24.875rem;
  }

  .highlight {
    height: 3.375rem;
    width: 3.375rem;
    border-radius: 50%;
    position: absolute;
    top: -1.6rem;
    left: -1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .highlight-add {
    height: 2rem;
    width: 2rem;
    object-fit: fill;
  }

  .consultant-info {
    padding: 0.25rem;
    border-bottom: 1px solid #8b8b8b;
    position: absolute;
    top: -4.25rem;
    right: 0;
  }

  .consultant-name {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 0.00625rem;
    font-family: "Koulen", sans-serif;
  }

  .consultant-description-1,
  .consultant-description-2,
  .consultant-description-3 {
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
  }

  .highlight-bar {
    width: 3rem;
    height: 1rem;
    margin-left: auto;
    margin-top: 2rem;
  }

  .consultants-box {
    width: 100%;
    padding: 2.125rem 0.75rem;
    background-color: black;
    border-radius: 0.5rem;
  }

  .reach-us-container {
    width: 100%;
    margin-top: 4.375rem;
  }

  .reach-us-title {
    font-size: 2.25rem;
  }

  .square {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: -0.75rem;
  }

  .reach-us-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    padding: 2rem;
    padding-top: 1.25rem;
  }

  .input-field {
    height: 2.875rem;
    padding-top: 1rem;
    padding-left: 0.3rem;
    width: 100%;
    font-size: 1rem;
  }

  .submit-button {
    height: 2.5rem;
    width: 100%;
    font-size: 1rem;
    background-color: black;
    outline: none;
    border: none;
    color: white;
    margin-top: 1rem;
  }

  .reach-us-left {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1.625rem;
    margin-top: 3rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-details {
    font-size: 1rem;
    margin-top: 0;
  }
}
