/* montserrat-200 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("./fonts/montserrat/montserrat-v25-latin-200.eot"); /* IE9 Compat Modes */
  src: url("./fonts/montserrat/montserrat-v25-latin-200.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("./fonts/montserrat/montserrat-v25-latin-200.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("./fonts/montserrat/montserrat-v25-latin-200.woff") format("woff"),
    /* Modern Browsers */ url("./fonts/montserrat/montserrat-v25-latin-200.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("./fonts/montserrat/montserrat-v25-latin-200.svg#Montserrat")
      format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/montserrat/montserrat-v25-latin-600.eot"); /* IE9 Compat Modes */
  src: url("./fonts/montserrat/montserrat-v25-latin-600.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("./fonts/montserrat/montserrat-v25-latin-600.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("./fonts/montserrat/montserrat-v25-latin-600.woff") format("woff"),
    /* Modern Browsers */ url("./fonts/montserrat/montserrat-v25-latin-600.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("./fonts/montserrat/montserrat-v25-latin-600.svg#Montserrat")
      format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/montserrat/montserrat-v25-latin-500.eot"); /* IE9 Compat Modes */
  src: url("./fonts/montserrat/montserrat-v25-latin-500.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("./fonts/montserrat/montserrat-v25-latin-500.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("./fonts/montserrat/montserrat-v25-latin-500.woff") format("woff"),
    /* Modern Browsers */ url("./fonts/montserrat/montserrat-v25-latin-500.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("./fonts/montserrat/montserrat-v25-latin-500.svg#Montserrat")
      format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/montserrat/montserrat-v25-latin-300.eot"); /* IE9 Compat Modes */
  src: url("./fonts/montserrat/montserrat-v25-latin-300.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("./fonts/montserrat/montserrat-v25-latin-300.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("./fonts/montserrat/montserrat-v25-latin-300.woff") format("woff"),
    /* Modern Browsers */ url("./fonts/montserrat/montserrat-v25-latin-300.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("./fonts/montserrat/montserrat-v25-latin-300.svg#Montserrat")
      format("svg"); /* Legacy iOS */
}
/* montserrat-100 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./fonts/montserrat-v25-latin-100.eot"); /* IE9 Compat Modes */
  src: url("./fonts/montserrat-v25-latin-100.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("./fonts/montserrat-v25-latin-100.woff2") format("woff2"),
    /* Super Modern Browsers */ url("./fonts/montserrat-v25-latin-100.woff")
      format("woff"),
    /* Modern Browsers */ url("./fonts/montserrat-v25-latin-100.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("./fonts/montserrat-v25-latin-100.svg#Montserrat") format("svg"); /* Legacy iOS */
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--mainFont);
}
:root {
  --unset: unset;
  /* font */
  --mainFont: "Montserrat";
  --lightWeight: 300;
  --regularWeight: 400;
  --mediumWeight: 500;
  --semimediumWeight: 600;
  --boldWeight: 700;
  --extraBoldWeight: 800;
  /* color */
  --primaryColor: #c5a25a;
  --primaryColorfade: #c5a25a0f;
  --secondaryColor: #464543;
  --lightTextColor: #767676;
  --lightGrey: #64607d;
  --blackColor: #000;
  --whiteColor: #fff;
}

*::-moz-selection,
*::selection {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

html,
body {
  line-height: 1.2;
  font-size: 16px;
  background: var(--whiteColor);
  font-family: var(--mainFont);
  scroll-behavior: smooth;
}

body {
  background: var(--whiteColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  padding: 0;
  line-height: 1.5em;
}

h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 73.14px;
  text-align: left;
}

p,li {
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  color: #5f6368;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primaryColor) !important;
  display: block;
  cursor: pointer;
}

img {
  width: fit-content;
  max-width: 100%;
}

/* svg {
  width: 100%;
} */

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

:is(:focus, :focus-visible, :focus-within, :active:focus) {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn {
  padding: 16px 38px;
  background: var(--secondaryColor) !important;
  color: var(--whiteColor) !important;
  font-family: var(--mainFont);
  font-weight: var(--semimediumWeight);
  border: 1px solid var(--primaryColor) !important;
  border-radius: 34px;
  width: fit-content;
}

.btn-full_btn {
  color: var(--whiteColor) !important;
  background: var(--primaryColor) !important;
  display: inline-block;
}

.btn:hover {
  color: var(--whiteColor) !important;
  background: var(--primaryColor) !important;
  display: inline-block;
}

.btn-full_btn:hover {
  background: transparent !important;
  border-color: var(--primaryColor);
  color: var(--whiteColor) !important;
  display: inline-block;
}

section {
  margin-bottom: 120px !important;
}

.container {
  margin: 0 auto;
  max-width: unset !important;
  padding: 0px 190px !important;
  z-index: 1;
  position: relative;
}

.color-scheme {
  stroke: var(--primaryColor) !important;
}

/* navbar css */
nav {
  padding: 40px 0px 60px !important;
}
.navbar-brand {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  color: var(--secondaryColor) !important;
}
.navbar-nav {
  gap: 92px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: -0.01em;
  color: var(--secondaryColor) !important;
}
/* banner section css */

.banner-section {
  gap: 10rem !important;
}

.banner-section .outside-banner-image-wrapper {
  position: absolute;
  height: 600px;
  width: 100%;
  background: var(--primaryColor);
}

.banner-section .outside-banner-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: 0px -150px;
  opacity: 30%;
}

.banner-section .banner-contents h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 82px;
  text-align: left;
  text-shadow: 0px 2px 6px #00000040;
  color: #000 !important;
  width: 90%;
}

.banner-section .banner-contents p {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: justified;
  text-shadow: 0px 2px 6px #00000040;
  color: #000 !important;
}

.banner-section .display-5 {
  font-size: 64px;
  font-weight: 500 !important;
  line-height: 76.8px;
}

.banner-section span {
  font-size: 64px;
  font-weight: 700 !important;
  line-height: 76.8px;
}

.banner-section .lead {
  font-size: 22px;
  font-weight: 500;
}

.banner-content {
  width: 60%;
}

.banner-content svg {
  width: fit-content;
}

.banner-image {
  width: 40%;
}

.banner-section .img {
  width: 560px !important;
  height: 560px;
  object-fit: cover;
  margin-top: 140px;
  border: 2px solid var(--secondaryColor);
}

/* ranking-section */
.rank {
  font-size: 64px;
  font-weight: 600;
  color: var(--primaryColor);
}

.ranking-section .card {
  border: none;
}

.ranking-section h5 {
  font-size: 40px;
  font-weight: 400;
  color: var(--whiteColor);
}

.ranking-section .company-location {
  font-size: 20px;
  font-weight: 400;
  color: var(--primaryColor);
}

.ranking-section .company-info {
  background: var(--secondaryColor);
  width: 100%;
  border-radius: 25px;
  gap: 68px !important;
}

.ranking-section .small-hero-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  color: #00000099;
  padding: 0px 110px;
  max-width: none;
}

.ranking-section h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 73.14px;
  text-align: center;
  text-transform: lowercase;
  padding: 0px 180px;
}

.ranking-section h2::first-letter {
  text-transform: uppercase !important;
}

.ranking-section p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.8;
  max-width: 809px;
  color: #ffffff99;
  /* display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 3; 
  overflow: hidden; 
  text-overflow: ellipsis; */
}

.ranking-section img {
  width: 100%;
  height: 515px;
  border-radius: 16px 16px 0px 0px;
  object-fit: cover;
}

.ranking-section .card-fwd,
.ranking-section .card-rev {
  padding: 80px 80px 0px 80px;
}

/* .ranking-section .card-rev {
  padding: 66px 140px 58px 190px;
} */

/* .ranking-section .card-fwd img {
  margin-left: 185px;
}

.ranking-section .card-rev img {
  margin-right: 185px;
} */

.card-body {
  padding: 1rem 0rem;
}

/* faq-section */
.faq-section {
  background: var(--primaryColorfade);
  padding-top: 60px !important;
  padding-bottom: 120px !important;
  margin-bottom: 0px !important;
}

.faq-section h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 73.14px;
  text-align: left;
}

.faq-section.container {
  max-width: unset !important;
}

.faq-section .accordion-button {
  font-size: 20px;
  font-weight: 500;
  line-height: 19.5px;
  text-align: left;
  background: transparent;
  line-height: normal;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  max-height: 70px;
  gap: 10rem;
  padding: 20px;
}

.faq-section .accordion-body {
  color: #5f6368;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.8;
  width: 90%;
}
.faq-section .accordion-item {
  background: transparent;
  border: 1px solid #0000001a;
  border-radius: 16px;
}

.faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000;
}
.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a25a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a25a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* footer-section */
footer {
  background: var(--secondaryColor);
  padding: 86px 0px 0px 0px;
}

footer a {
  font-size: 16px;
  font-weight: 300;
  line-height: 19.5px;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--whiteColor) !important;
  letter-spacing: 0.01em;
}

footer a:hover {
  color: var(--lightTextColor) !important;
}

footer .editor-board P {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: var(--whiteColor);
  opacity: 1;
}

footer p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.5;
}

footer h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
  text-align: left;
}

footer hr {
  color: #ffffff70;
}

footer .rights-deck {
  background: var(--secondaryColor);
  padding: 30px 0px;
  font-size: 14px;
  font-weight: 300;
  color: var(--whiteColor);
}

.ghostAuthorsDes,
.ghostAuthor {
  cursor: pointer;
  display: inline-flex;
  color: inherit;
  text-decoration: underline !important;
  font-size: 14px;
  font-weight: 300;
  padding: 0rem 5px;
}

.ghostAuthorsDes:hover,
.ghostAuthor:hover {
  cursor: pointer;
  display: inline-flex;
  color: var(--lightTextColor) !important;
}

.ghostAuthorContainer {
  z-index: 1;
  position: fixed;
  top: initial;
  left: initial;
  bottom: 60px;
  right: initial;
  display: flex;
  justify-content: initial;
  width: 350px;
  background: var(--whiteColor);
  color: var(--blackColor);
}

.ghostAuthorContainer svg {
  width: auto;
}

.ghostAuthorDiv {
  display: flex;
  height: auto;
  transition: opacity 0.3s ease 0.1s;
  /* border: 1px solid #dcdbdb; */
  /* background: white; */
  box-shadow: 0 5px 16px 0 rgba(92, 92, 92, 0.5);
  flex-direction: column;
  border-radius: 8px;
}

.ghostAuthorHeader {
  border-radius: 8px 8px 0px 0px;
  /* background: #eff0fe; */
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.25);
  /* color: #4b46b5; */
}

path.stroke-color {
  stroke: var(--primaryColor);
}

.ghostAuthorHeader h1 {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  padding: 23px;
}

.ghostAuthorDescription {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 32px;
}

.ghostAuthorTeamSection {
  gap: 32px;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.ghostAuthorTeamSection h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ghostAuthorSection {
  display: flex;
  align-items: center;
  gap: 16px;
}

.textSection {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ghostAuthorWork {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.ghostAuthorName {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ghostAuthorContainer1 {
  z-index: 1;
  position: fixed;
  top: initial;
  left: 40%;
  bottom: 60px;
  right: initial;
  display: flex;
  justify-content: initial;
  width: 350px;
  background: var(--whiteColor);
  color: var(--blackColor);
}

.ghostAuthorContainer1 > .ghostAuthorDiv {
  padding: 32px;
  gap: 24px;
}

.ghostAuthorContainer1 svg {
  transform: scale(1.5);
}

.ghostAuthorContainer1 .ghostAuthorWork {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.ghostAuthorContainer1 .ghostAuthorName {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ghostAuthorBio {
  color: var(--lightTextColor);
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 150%;
  text-align: left;
}

.hidden {
  display: none;
}

.stroke-color {
  stroke: var(--primaryColor);
}

.ghostAuthorComma::after {
  content: ",";
}

/* ABOUT-US */

/* overview-section */
.overview-section h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  text-align: left;
  width: 30%;
}

.overview-section p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-align: justify;
  opacity: 0.8;
  width: 70%;
}
.rank-methodology p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-align: justify;
  opacity: 0.8;
}

.aboutus-img {
  object-fit: cover;
  height: 536px;
  background-size: cover;
  background-position: 0;
  width: 100%;
  border-radius: 12px;
  background-image: linear-gradient(
    101.01deg,
    #c5a25a80 8.49%,
    #c5a25a26 48.02%,
    #c5a25a20 90.43%
  );
}

.content p {
  text-align: center;
}

/* eligibility-section */
.eligibility-section {
  background: var(--primaryColorfade);
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  margin-bottom: 0px !important;
}

.eligibility-section h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 54px;
  color: var(--blackColor) !important;
}

.eligibility-section .eligibility-content .content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blackColor);
}

.eligibility-section .eligibility-content .content p {
  font-size: 18px;
  font-weight: 200;
  line-height: 32px;
  color: var(--blackColor);
  text-align: left;
}

.eligibility-content {
  width: 100%;
}

.eligibility-content .eligibility-card {
  background-color: var(--whiteColor);
  padding: 28px 30px;
  border-radius: 20px;
}

.eligibility-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background: #4645431a;
  border-radius: 10px;
}

/* key-question-section */
.key-questions-card {
  background: #f0f6f5;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.key-questions-card .question {
  font-size: 22px;
  font-weight: 500;
}

.key-questions-card .answer {
  font-size: 18px;
  font-weight: 400;
  line-height: 30.6px;
  text-align: justify;
  opacity: 0.8;
}

/* .key-questions-card */

/* TOC */

/* banner-image */
.image-wrapper {
  width: 100%;
  height: 100%;
}

.image-wrapper div {
  width: 100%;
  position: absolute;
  background: var(--primaryColor);
}

.image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0.4;
  background-position: center;
  background-size: cover;
  /* border-radius: 0px 80px 80px 0px; */
}

/* .image-wrapper div::after{
  content: '';
  background: url(../../images/60286-[Converted]\ 1.png);
  width: 500px;
  height: 500px;
  background-color: #eeeeee;
  border-radius:25px ;
  position: absolute;
  right: 0;
  z-index: 0;
} */

.toc-banner-section {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  position: relative;
}

.toc-banner-section h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  color: var(--blackColor);
  text-shadow: 0px 2px 6px #00000040;
}

.toc-banner-section p {
  font-size: 28px;
  font-weight: 400;
  line-height: 34.13px;
  text-align: left;
  color: var(--blackColor);
  text-shadow: 0px 2px 6px #00000040;
}

.card svg,
.related-posts svg {
  width: auto;
}

/* recent-blog-section */
.cards-wrapper {
  padding: 0px 113px;
  gap: 100px;
}

.card-row {
  width: 70%;
}

.cards-wrapper .card {
  border: none;
}

.blog-date {
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  width: fit-content;
}

.blog-header {
  font-size: 34px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
  color: #000 !important;
}

.read-more-btn {
  font-size: 20px;
  font-weight: 600;
}

.cards-wrapper p {
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  text-align: justify;
  opacity: 0.6;
}

/* related-blog */
.related-posts {
  margin-bottom: 0px !important;
  width: 30%;
}
.related-posts h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 34.13px;
  text-align: left;
}

.related-posts .blog-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: justify;
  color: var(--primaryColor);
}

.related-posts .blog-header {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  opacity: 0.6;
}

.view-more-btn {
  padding: 18px 36px;
  background: var(--primaryColor);
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  border-radius: 40px;
  width: fit-content;
}

.view-more-btn:hover {
  background: transparent;
  border: 1px solid var(--primaryColor);
}

/* POST */
.post-main h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.76px;
  text-align: left;
}

.post-content {
  /* width: 100%; */
}

.tags-png {
  width: 22px;
  height: 22px;
}

.tags-wrapper {
  gap: 19px;
  width: 80%;
}

.tag-grid {
  grid-template-columns: auto auto;
}

.tag {
  font-size: 22px;
  font-weight: 500;
  padding: 8px 18px;
  color: var(--primaryColor);
  background: var(--secondaryColor);
  border-radius: 40px;
  margin: 0px 0px 18px 0px;
  display: flex;
  justify-content: center;
}

.post-date {
  font-size: 20px;
  font-weight: 300;
  line-height: 24.38px;
}

.read-time {
  font-size: 20px;
  font-weight: 300;
  line-height: 24.38px;
}

.post-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
  text-align: justify;
  padding: 50px 0px;
}

.emphesized-line {
  background: var(--primaryColorfade);
  border-radius: 50px;
  padding: 94px 80px;
}

.emphesized-line .svg-wrapper {
  position: absolute;
  opacity: 0.28;
  margin-top: -36px;
}

.emphesized-line p {
  font-size: 24px;
  font-weight: 500;
  line-height: 46px;
  text-align: center;
  color: #000;
}

.related-posts-wrapper {
  padding: 0px 80px;
  /* position: relative;
  top: -270px; */
}

.post-image-wrapper {
  margin-bottom: 60px;
}

.post-image-wrapper img{
  width: 100%;
  height: 800px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.blog-relatedpost {
  margin-top: 180px !important;
}

.blog-date-wrapper {
  margin-top: 24px;
}

.relatedpost-card .blog-date {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: justify;
  color: var(--primaryColor);
  opacity: 1;
}

.relatedpost-card .blog-header {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  opacity: 0.6;
  margin-top: 10px;
}

.relatedpost-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: justify;
  color: #000;
  opacity: 0.6;
  margin-top: 6px;
}

.relatedpost-card img{
  width: 100%;
  height: 420px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 30px !important;
}

.blog-relatedpost .post-header {
  font-size: 60px;
  font-weight: 600;
  line-height: 73.14px;
  text-align: left;
  color: #000;
}

.blog-relatedpost .sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: #000;
  padding: 0px 400px;
}

.absolute {
  height: 460px;
  margin: 0px 190px;
  background: var(--primaryColorfade);
  border-radius: 50px;
  position: absolute;
  width: -webkit-fill-available;
}

.post-main svg path,.recent-blog svg path,.blog-relatedpost svg path{
  fill: var(--primaryColor) !important;
}

/* CONTACT-US */

.contact-us-img {
  width: 80%;
  height: 783px;
  border-radius: 12px;
  object-fit: cover;
  object-position: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.contact-us-section input::placeholder,
.contact-us-section textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #5f6368;
}

.contact-us-section input,
.contact-us-section textarea {
  padding: 18px 24px;
  margin-bottom: 50px;
  border: none !important;
  border-bottom: 1px solid #5f63681a !important;
  resize: none;
  width: 90%;
}

.contact-us-section .checkbox {
  padding: 0px !important;
  margin-bottom: 0 !important;
  width: fit-content !important;
}

.contact-us-section span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5f636880;
}

.contact-us-section .submit-btn {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: white;
  padding: 14px 34px 14px 34px;
  background-color: var(--primaryColor);
  width: 222px;
  border-radius: 24px;
  margin-left: 25%;
}

.color-block-wrapper {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.color-block {
  width: 40%;
  height: 1065px;
  background: var(--primaryColorfade);
  position: absolute;
  z-index: 0;
}

/* PP & TOF */
.pp-toc {
  border: 1px solid #00000047;
  height: fit-content;
  padding: 60px 40px;
  border-radius: 18px;
  width: 30%;
}

.pp-text {
  width: 70%;
}

.pp-toc ol {
  list-style: disc;
  color: var(--lightTextColor);
}

.pp-toc a {
  color: var(--lightTextColor) !important;
}

.pp-toc a:hover {
  color: var(--primaryColor) !important;
}

.pp-toc h5 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
}

.pp-image-wrapper h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  text-align: left;
}

.privacy-policy h6 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
  color: #000;
}

.privacy-policy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.message-box {
  width: 70%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  transition: opacity 0.3s, transform 0.3s;
  position: fixed;
  display: flex;
  height: 10%;
  justify-content: center;
  z-index: 0;
  border-radius: 0 0 8px 8px;
  margin-left: 15%;
  align-items: center;
  color: #ffffff;
}

.success {
  background-color: #7ec344;
}

.failure {
  background-color: #f44336;
}

/* tree structure rank methodology */

.tree-wrapper .box-wrapper {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  border: 1px solid #0000001f;
  border-radius: 28px;
  color: #000;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 230px;
  width: -webkit-fill-available;
}

.tree-wrapper .box-wrapper span {
  font-size: 60px;
  font-weight: 700;
  line-height: 73.14px;
  text-align: left;
  opacity: 0.1;
}

.tree-wrapper .box-wrapper p {
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  color: #000;
}

.tree-wrapper .box-wrapper:nth-child(even) {
  margin-top: 60px;
}

.banner-overlay {
  background: linear-gradient(
    101.56deg,
    rgba(239, 239, 239, 0.74) 8.78%,
    rgba(239, 239, 239, 0.111) 105.58%
  );
  height: 104px;
  top: 12%;
  width: 250px;
  left: 60%;
  gap: 0px;
  border-radius: 12px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  box-shadow: 0px 20px 36px 0px #00000024;
  border: 1px solid;
  border-image-source: linear-gradient(
    103.17deg,
    #d9d9d9 0%,
    rgba(217, 217, 217, 0) 102.55%
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  gap: 18px;
  position: absolute;
}

.banner-overlay p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: var(--whiteColor);
}

.banner-overlay p::first-letter {
  text-transform: capitalize;
}

.banner-overlay:not(:nth-child(1)) {
  background: linear-gradient(
    249.15deg,
    rgba(0, 113, 81, 0.47) 27.83%,
    rgba(0, 113, 81, 0.1316) 94.62%
  );
  border: 1px solid;
  border-image-source: linear-gradient(
    102.74deg,
    rgba(205, 199, 199, 0.28) 0%,
    rgba(205, 199, 199, 0) 101.77%
  );
  box-shadow: 0px 20px 36px 0px #00000024;
  top: 30%;
  left: 78%;
}

.color-square {
  padding: 32px;
  border-radius: 12px;
  background: var(--primaryColor);
  background-image: url("../../images/hand-svgrepo-com\ 1.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.color-square-5 {
  background-image: url("../../images/Vector-2.svg");
}

.color-square-3 {
  background-image: url("../../images/Vector.svg");
}

.color-square-2 {
  background-image: url("../../images/Group\ 1000001778.svg");
}

.color-square-4 {
  background-image: url("../../images/tax-svgrepo-com.svg");
}

.color-square-6 {
  background-image: url("../../images/Vector-1.svg");
}

.ghostAuthorSection svg {
  width: auto;
}

.faq-section p{
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 8px;
}

.faq-section ul {
  padding-bottom: 8px;
}

.faq-section ul li {
  font-size: 18px;
}

.rank-btn {
  background: var(--secondaryColor);
  color: var(--whiteColor) !important;
  padding: 16px 0px;
  border-radius: 25px;
  padding-right: 45px !important;
  padding-left: 45px !important;
}

.rank-index{
  line-height: normal;
  font-size: 40px !important;
  font-weight: 500 !important ;
}

#companyContacted{
  font-size: 32px !important;
}