@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  width: 100%;
  overflow-x: hidden;
}
* {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.statistics-container {
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
  font-weight: 700;
  justify-content: center;
  flex-wrap: wrap;
}

.statistics-container .stat {
  text-align: center;
  padding: 2rem 0;
  width: 20%;
}

.statistics-container .stat h1 {
  font-size: 53px;
  margin: 0;
  font-weight: 700;
}

.statistics-container .stat p {
  margin: 0;
  font-size: 22px;
}

@media (max-width: 992px) {
  .statistics-container {
    flex-direction: column;
    padding: 0;
  }
  .statistics-container .stat {
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    padding: 1rem 0;
    width: 100%;
  }
  .statistics-container .stat h1 {
    font-size: 35px;
  }
  .statistics-container .stat p {
    font-size: 16px;
  }
}

.thought {
  background-color: black;
  color: white;
  padding: 2rem 1rem;
}
.thought sup {
  top: -1em;
}

.thought img {
  height: 30px;
}

.thought p {
  line-height: 64px;
  font-size: 30px;
  text-align: center;
}

.thought .name {
  text-align: center;
  line-height: 40px;
  color: #ec3242;
  font-weight: 600;
}

.thought .desig {
  text-align: center;
  line-height: 30px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .thought p {
    font-size: 15px;
    line-height: 36px;
    text-align: justify;
  }
  .thought img {
    height: 15px;
  }
  .thought .name {
    margin-bottom: 0;
    line-height: 15px;
  }
  .thought .desig {
    font-size: 12px;
    margin-bottom: 0;
  }
}

#nav-icon2 {
  width: 30px;
  height: 100%;
  position: relative;
  height: fit-content;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 40%;
  background: #ffffff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 45%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 5%;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 5px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 15px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 25px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 12px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 1px);
  top: 12px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 21px;
}

.close-nav {
  text-align: end;
  border-bottom: 1px solid white;
  font-weight: 700;
  font-size: 14px;
}

.close-nav span {
  line-height: 17px;
  vertical-align: top;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 1px);
  top: 21px;
}
header {
  display: flex;
  flex-direction: row;
  background-color: #1e1e1e;
  height: 70px;
  justify-content: space-between;
  position: relative;
}

header .left-header {
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  justify-content: start;
}

header .right-header {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
header .logo {
  height: 100%;
  display: flex;
}
header .logo img {
  height: 57px;
  width: 110px;
  margin: auto 2rem;
}
header ul {
  display: flex;
  list-style: none;
}
header ul a {
  color: white;
}
header .nav-links-ul {
  display: flex;
  margin-bottom: -8px;
  /* width: 80%; */
}
header .nav-links-li {
  display: flex;
  position: relative;
  line-height: 20px;
}
header .nav-links-li a {
  margin: auto 1.5rem;
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 8px;
  font-weight: 500;
}

header .intro-ul {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100vw;
}

header .nav-last-ul {
  /* display: none; */
  display: block;
}

.partner-nav .partner-ul .nav-last-li a {
  background-color: #413f3f !important;
  border-bottom: 2px solid white;
}

header .nav-last-ul a {
  border-bottom: none !important;
  width: 100%;
}
header .nav-links-li:hover a {
  color: white;
  padding-bottom: 5px;
  border-bottom: 3px solid #ec3242;
}

header .intro:hover .intro-ul {
  display: block !important;
}

header .custom-ul {
  display: none;
}
header .custom:hover .custom-ul {
  display: flex !important;
}

header .custom-ul {
  width: 780px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

header .custom-ul a {
  width: 380px;
}

header .flagship-ul {
  display: none;
}
header .flagship:hover .flagship-ul {
  display: block !important;
}

header .contact-btn {
  height: fit-content;
  margin: auto 1.5rem;
  padding: 0.75rem 1rem;
  background-color: #ec3242;
  color: white;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 18px;
}

.mobile-header {
  display: none;
  position: relative;
}

#mobile-hidden {
  display: flex;
}

@media (max-width: 1250px) {
  header ul {
    padding-left: 0;
  }

  .contact-btn {
    margin: auto 1rem;
  }

  header .nav-links-li a {
    margin: auto 13px;
  }
}

@media (max-width: 1200px) {
  header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

.mobile-header {
  justify-content: space-between;
  background-color: #1e1e1e;
  position: fixed;
  width: 100%;
  height: 65px;
  z-index: 10;
}
.mobile-header .logo {
  height: 100%;
  display: flex;
  margin-top: 3px;
}
.mobile-header .logo img {
  width: 100px;
  height: 45px;
  margin: 0.45rem 1rem;
  border: 1px solid #fff;
}

.hamburger {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger #nav-icon2 {
  height: 50px;
  width: 30px;
  margin-right: 0.5em;
  margin-top: 15px;
}

.mobile-header .contact-btn {
  display: flex;
  margin-left: auto;
  background: #ec3242;
  border: 1px solid #ec3242;
  font-size: 16px;
  font-weight: 600;
  width: 105px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
}

/* Responsive Navbar Styling */

.sidebar {
  position: absolute;
  height: calc(100vh - 60px);
  background: #2e2e2e;
  width: 100%;
  max-width: 500px;
  top: 100%;
  right: -100%;
  /* left: 0; */
  background-color: #1e1e1e;
  z-index: 3;
  transition: all 0.5s ease-in;
  overflow: scroll;
}

.sidebar-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.sidebar-two,
.sidebar-three,
.sidebar-four {
  z-index: 5;
}

.sidebar-in {
  right: 0 !important;
}

.sidebar li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.sidebar li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.column li img {
  height: 50px;
  width: 50px;
}

.loginBtn {
  height: 48px;
  width: calc(100% - 2em);
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid #ec3242;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ec3242;
  margin: 0 auto;
}

.loginDivWrapper {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(10px);
  z-index: 99;
}

.loginDivActive {
  display: flex;
}

.loginDiv {
  width: 310px;
  height: 316px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  padding: 16px 20px;
  background-color: #1e1e1e;
  border: 1px solid #ffffff33;
  box-shadow: 2px 4px 8px 0 #dddddd1a;
}

.loginDiv h1 {
  color: #ec3242;
  font-size: 20px;
  font-weight: 600;
}

.loginDiv ul {
  width: 100%;
  background-color: #383838;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0.5px solid #626262;
  border-radius: 10px;
  padding: 0;
}

.loginDiv ul li {
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  border-bottom: 0.5px solid #626262;
}

.loginDiv ul li a {
  text-decoration: none;
  color: #fff;
}

#lvl-one {
  /* display: flex; */
  height: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 0;
  width: 100%;
  max-width: 100%;
  gap: 0;
}

#lvl-one li {
  width: 100%;
  padding: 0 2em;
}

#lvl-one li a {
  width: 100%;
  padding: 1em 0;
}

#lvl-two {
  flex-direction: column;
  width: 100%;
  padding: 0 0.8em;
  gap: 14px;
  margin-top: 20px;
  padding-bottom: 1em;
}

#lvl-two li {
  font-weight: 700;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid #4c4c4c;
  padding-bottom: 15px;
  line-height: 17px;
  padding-left: 0.5em;
  margin-bottom: 7px;
  height: 100%;
  position: relative;
}

#lvl-two li a {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}

#openIcon {
  position: absolute;
  top: 0;
  right: 0;
}

#openIcon svg {
  fill: #fff;
}

#lvl-three {
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
  margin-top: 20px;
  gap: 0;
}

#lvl-three li {
  font-weight: 700;
  color: #fff;
  width: 100%;
  border: none;
  height: fit-content;
}

#lvl-three li a {
  width: 100%;
  font-size: 15px;
  line-height: 17px;
}

.sidebar li {
  font-size: 12px;
}

.sidebar label {
  font-size: 18px;
  font-weight: 400;
  color: #d0cfcf;
  padding: 0 4px;
}
.sidebar p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  font-style: italic;
}

.responsive-loginBtn {
  display: flex;
  width: 100%;
  height: 43px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ec3242;
  color: #fff;
}

.italic {
  display: flex;
  font-size: 8px;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  line-height: normal;
  margin-top: 3px;
}

.subhead-li {
  margin: 0 auto;
  max-width: 90%;
  margin-top: 30px;
}

.subhead-li label {
  font-size: 12px;
  font-weight: 500;
  color: #d0cfcf;
}

.services-div,
.about-div,
.learn-div,
.joinus-div {
  display: none;
  height: 0;
  transform: translateY(-100%);
  transition: all ease-in-out 0.3s;
  opacity: 0;
}

.parent {
  display: flex;
  text-decoration: none;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #4c4c4c;
  padding-bottom: 20px;
  width: 100%;
  margin-bottom: 0;
}

.about-div-one,
.about-div-two,
.services-div-one,
.services-div-two {
  display: none;
}

.activated {
  height: 100%;
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* NEW STYLING  */

.toggled {
  background-color: #2a2a2a;
  color: #ec3242 !important;
  font-weight: 700 !important;
  stroke: #ec3242 !important;
}

/*  */

.last-form {
  background-image: url(images/last-form.png);
}

.last-form .text-div {
  display: flex;
}

.last-form .text-div h2 {
  margin: auto;
  color: white;
  font-size: 53px;
  font-weight: 700;
  line-height: 65px;
  width: 90%;
}

.custom-form-container {
  width: 90%;
  background: #333;
  padding: 2rem 4rem;
  border-radius: 8px;
  color: #fff;
  margin: 2rem auto;
  box-shadow: 0px 0px 15px 0px #00000026;
}

.custom-form-group {
  margin-bottom: 15px;
  display: flex;
}

.custom-form-group.split {
  display: flex;
  justify-content: space-between;
}
.custom-form-group.split input {
  width: 49%;
}
.custom-form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: #555;
  color: #fff;
  border: 1.34px solid #a4a4a4;
}
.custom-form-group input::placeholder {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.custom-form-label {
  display: block;
  margin-bottom: 5px;
}

.custom-form-input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.custom-form-select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: #555;
  color: #fff;
  border: 1.34px solid #a4a4a4;
}

.custom-form-textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: #555;
  color: #fff;
  height: 80px;
  border: 1.34px solid #a4a4a4;

  resize: none;
}

.custom-form-button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: red;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.custom-form-button:hover {
  background: darkred;
}

@media (max-width: 768px) {
  .last-form {
    background-color: #1e1e1e !important;
    background-image: none;
  }
  .last-form .text-div h2 {
    font-size: 20px;
    margin-top: 1rem;
    line-height: 32px;
  }
  .custom-form-container {
    padding: 1rem;
    margin: 1rem auto;
  }
}

footer {
  background-color: #1e1e1e;
  color: white;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding: 2rem 2.5rem;
  margin: 0 auto;
}

.footer-top .left {
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.footer-top .left h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.footer-top .left p {
  font-size: 24px;
  font-weight: 100;
  margin: 0;
  font-style: italic;
  margin-bottom: 4px;
}

.footer-top .left h3 {
  font-size: 20px;
  background: white;
  color: #ec3242;
  padding: 11px 26px 15px 23px;
  width: 226px;
  height: 44px;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 13px;
}

.footer-top .left a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6%;
  color: #ec3242;
}

.newsletter-container {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  position: relative;
}

.newsletter {
  display: flex;
  flex-direction: row;
  position: relative;
  background-color: white;
  width: 810px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
}

.bg-sphere {
  background: #ec3241;
  width: 360px;
  height: 208px;
  border-radius: 50%;
  position: absolute;
  top: -20%;
  left: -7.5%;
  z-index: 1;
}

.newsletter-left {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 25px 15px;
}

.newsletter-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.emailDiv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 370px;
  height: 60px;
  border-radius: 5px;
  border: 3px solid #ec3242;
  outline: none;
}

.emailDiv input {
  border: 0;
  outline: none;
  padding: 0 1em;
}

.emailDiv input::placeholder {
  font-size: 20px;
  font-weight: 600;
  color: #ec3242;
}

.emailDiv button {
  width: 110px;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  background: #ec3242;
  color: #fff;
}

.emailDiv button p {
  margin: 0;
}

.emailDiv button svg {
  margin-left: 8px;
}

.newsletter-left h1 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.newsletter-left h2 {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #000;
  margin: 0;
}

.footer-subhead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2.5rem;
}

.footer-subhead h3 {
  font-size: 16px;
  font-weight: 600;
  width: 50%;
  line-height: 23px;
}

.footer-subhead ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6rem;
  width: 100%;
  padding: 0;
  margin-left: auto;
}

.footer-subhead ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
}

.footer-subhead ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* .footer-sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* width: 100%; */
/* margin: 0 0.5rem; */
/* border: 0; */
/* }  */

.sponsors-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-sponsors div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.footer-sponsors .borok-img {
  width: 80px;
  height: 40px;
}

.footer-sponsors .medium-img {
  height: 85px;
  width: 80px;
}

.footer-sponsors .hindustanimetro-img {
  width: 110px;
  height: 40px;
}

.footer-sponsors .ea-img {
  height: 25px;
  width: 60px;
}

.foot-links {
  width: 100%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.foot-links h5 {
  margin-bottom: 1.5rem;
  font-size: 16px;
  font-weight: 900;
}

.foot-links ul {
  list-style: none;
  padding-left: 0;
}

.foot-links li {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.foot-links hr {
  width: 66px;
}

.row {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

.column {
  width: fit-content;
}

.column img {
  height: 54px;
  width: 164px;
  border-radius: 5px;
  border: 0.75px solid white;
}

.column li a img {
  border: none;
}

.foot-links li p {
  font-size: 8px;
}

.outro-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.outro-img img {
  width: 670px;
  height: 110px;
}

#connect {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#connect ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.foot-links li a {
  color: white;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

#subsidiaries img {
  width: 164px;
  height: 54px;
}

#connect img {
  width: 50px;
  height: 50px;
}

#googleImg,
#facebookImg {
  width: 66px !important;
  height: 37px !important;
}

footer section {
  border-bottom: 1px solid #565656;
}

.last-line {
  display: flex;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 0;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.last-line .left {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.last-line .left h1 {
  font-size: 16px;
  font-weight: 500;
  color: #959595;
}

.last-line .left h2 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-left: 4px;
}

.last-line .right {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: start;
  justify-content: end;
  gap: 20px;
}

.last-line .right a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-header .contact-btn {
    width: 125px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
  }

  footer {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    padding: 1em 0.5em;
  }

  .footer-top .left {
    text-align: left;
    width: 100%;
  }

  .footer-top .left h1,
  .footer-top .left p {
    font-size: 18px;
  }

  .footer-top .left h3,
  .footer-top .left a {
    font-size: 18px;
    margin: 10px 0;
  }

  .newsletter {
    width: 100%;
  }

  /*  */
  .bg-sphere {
    left: -40%;
  }

  .newsletter-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    z-index: 2;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 20px 15px;
  }

  .newsletter-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .emailDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 2px solid #ec3242;
    outline: none;
    margin-right: 5px;
    border-radius: 10px;
    padding: 2px;
    position: relative;
  }

  .emailDiv input {
    border: 0;
    outline: none;
    padding: 5px;
    margin: 0;
  }

  .emailDiv input::placeholder {
    font-size: 12px;
    font-weight: 600;
    color: #ec3242;
  }

  .emailDiv button {
    position: absolute;
    top: 0;
    right: -1%;
    width: 35px;
    height: 33px;
    font-size: 12px;
    font-weight: 600;
    background: #ec3242;
    color: #fff;
    margin: 0;
    padding: 0;
    margin-right: auto;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .emailDiv button p {
    display: none;
  }

  .emailDiv button svg {
    margin-left: 0px;
  }

  .newsletter-left h1 {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    width: 100%;
  }

  .newsletter-left h2 {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: #000;
    margin: 0;
  }

  #mobile-hidden {
    display: none;
  }

  .footer-sponsors {
    margin: 0;
    width: 100%;
  }

  .footer-sponsors div {
    gap: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .borok-img {
    width: 70px;
    height: 30px;
  }

  .hindustanimetro-img {
    width: 100px;
    height: 30px;
  }

  .medium-img {
    width: 93px;
    height: 60px;
  }

  .footer-subhead {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5em;
    align-items: start;
  }

  .footer-subhead h3 {
    font-size: 12px;
    font-weight: 600;
    line-height: 23px;
    text-align: left;
    width: 100%;
  }

  .footer-subhead ul {
    gap: 0;
    display: flex;
    justify-content: space-between;
  }

  .footer-subhead ul li {
    gap: 5px;
  }

  .footer-subhead ul li a {
    font-size: 16px;
  }

  .outro-img {
    width: 100%;
    padding: 1em;
    align-items: center;
    justify-content: center;
  }

  .outro-img img {
    width: 100%;
    height: 100%;
  }

  .foot-links {
    padding: 0;
  }

  .column {
    padding: 1rem 0;
    width: 100%;
  }

  #connect {
    text-align: left;
  }

  #connect ul {
    width: 100px;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  #insta img {
    height: 50px;
    width: 50px;
  }

  .last-line {
    display: flex;
    flex-direction: column;
    padding: 1em 0.5em;
  }

  .last-line .left {
    width: 100%;
    flex-direction: column;
    align-items: start;
    font-size: 16px;
  }

  .last-line .right {
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
    align-items: start;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .last-line {
    font-size: 10px;
  }
}

.index-hero {
  background-color: #131313;
  height: 85vh;
  overflow: hidden;
}
.index-hero .heading-row {
  width: 60%;
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 0;
}
.index-hero .section-heads {
  margin-bottom: 0;
}
.index-hero .rotate img {
  width: 100%;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.rotate {
  -webkit-animation: rotating 45s linear infinite;
}

@media (max-width: 992px) {
  .index-hero {
    height: 70vh;
  }
  .index-hero .heading-row {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .index-hero {
    height: 50vh;
  }
  .index-hero .heading-row {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .index-hero .heading-row {
    padding: 4rem 0 0rem 0;
  }
  .index-hero .rotate img {
    width: 125%;
    transform: translateX(-12.5%);
  }
}
.index-stats {
  background: #ec3242;
}

.section-heads {
  font-size: 40px;
  line-height: 52px;
  text-align: center;
  font-weight: 600;
  color: white;
  margin: 2rem 0;
  font-family: "Poppins", sans-serif;
}

.section-heads span {
  color: #ec3242;
}

.heading-row {
  padding-bottom: 3rem;
}

@media (max-width: 992px) {
  .heading-row {
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .section-heads {
    font-size: 22px;
    margin: 1rem 0;
    line-height: 30px;
  }
  .index-hero .section-heads {
    margin: 4rem 0 2rem 0;
    font-size: 16px;
    line-height: 36px;
  }
}
.our-focus {
  margin: 0;
  padding: 0;
  background: rgb(30, 30, 30);
  background: linear-gradient(
    90deg,
    rgb(30, 30, 30) 23%,
    rgb(180, 42, 54) 100%
  );
}
.our-focus .row {
  margin: 0;
  padding: 0;
}
.our-focus .col-md-6,
.our-focus .container-fluid {
  margin: 0;
  padding: 0;
}
.our-focus img {
  width: 100%;
  height: 550px;
}
.our-focus .move-div {
  position: relative;
}
.our-focus .focus-text {
  background-color: #1e1e1e;
  height: fit-content;
  width: 105%;
  color: white;
  padding: 6rem 4rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 43px;
}

@media (max-width: 768px) {
  .our-focus {
    height: unset;
  }
  .our-focus img {
    width: 100%;
    height: unset;
  }
  .our-focus .our-focus-row {
    flex-direction: column-reverse;
  }
  .our-focus .move-div {
    display: flex;
  }
  .our-focus .focus-text {
    position: relative;
    width: 90%;
    left: 0;
    padding: 2rem 1.5rem;
    transform: translateY(-25%);
    margin: auto;
    font-size: 10px;
    line-height: 24px;
  }
}
.focus-sectors {
  background-color: #1e1e1e;
  padding-bottom: 3rem;
}
.focus-sectors .focus-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 2rem;
  row-gap: 1rem;
  overflow: hidden;
}
.focus-sectors .focus-comp {
  background-color: #262626;
  display: flex;
  margin: 0 2rem;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid #474747;
}

.focus-sectors .focus-comp .img-div {
  width: 45%;
}
.focus-sectors .focus-comp .img-div img {
  width: 100%;
  height: 100%;
}
.focus-sectors .text-div {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 55%;
}
.focus-sectors .text-div span {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  width: 100%;
  color: white;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
  .focus-sectors .focus-grid {
    grid-template-columns: repeat(2, auto);
    column-gap: 1rem;
  }
  .focus-sectors .focus-comp {
    margin: 0;
  }
  .focus-sectors .text-div span {
    font-size: 12px;
  }
}
.achieve-sectors {
  background-color: #1e1e1e;
  padding-bottom: 3rem;
}
.achieve-sectors .achieve-cards-row {
  color: white;
  margin: 1rem;
  border: 2px solid #474747;
  border-radius: 5px;
}
.achieve-sectors .achieve-cards {
  padding: 2rem 1.5rem;
  border-right: 2px solid #474747;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.achieve-sectors .achieve-cards.last {
  border-right: none;
}
.achieve-sectors .icon {
  width: fit-content;
  padding: 2rem;
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    #2e2e2e 0%,
    rgba(46, 46, 46, 0) 100%
  );
  background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
    linear-gradient(180deg, #2e2e2e 0%, rgba(46, 46, 46, 0) 100%),
    linear-gradient(
      229.29deg,
      rgba(236, 50, 66, 0.2) -68.25%,
      rgba(236, 50, 66, 0) 32.16%
    );
  border-radius: 10px;
  margin-bottom: 2rem;
}
.achieve-sectors .text {
  margin-bottom: 3rem;
}
.achieve-sectors .text h3 {
  font-size: 30px;
  line-height: 45px;
  letter-spacing: -0.6%;
  margin-bottom: 1.5rem;
}
.achieve-sectors .text span {
  font-size: 18px;
  font-weight: 100;
  line-height: 24px;
  letter-spacing: -0.006em;
  text-align: left;
}
.achieve-sectors .button-div {
  width: 80%;
  margin-top: auto;
}
.achieve-sectors .button-div a {
  display: block;
  width: 100%;
  height: 60px;
  padding: 18px 0px 18px 0px;
  border-radius: 8px;
  gap: 10px;
  background-color: #262626;
  font-family: Barlow;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.006em;
  text-align: left;
  color: white;
  text-decoration: none;
  text-align: center;
}
.achieve-sectors .button-div a:hover {
  background-color: #ec3242;
}

@media (max-width: 992px) {
  .achieve-sectors .achieve-cards-row {
    border: none;
  }
  .achieve-sectors .achieve-cards-row .col-md-6 {
    margin-bottom: 1rem;
  }
  .achieve-sectors .achieve-cards {
    margin: 1rem;
    border: 2px solid #474747;
    /* border-radius: 5px; */
  }
  .achieve-sectors .achieve-cards.last {
    border-right: 2px solid #474747;
  }
}
@media (max-width: 500px) {
  .achieve-sectors .achieve-cards-row {
    margin: 0;
  }
  .achieve-sectors .achieve-cards {
    margin: 1rem 0;
    padding: 1.25rem;
  }
  .achieve-sectors .icon {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .achieve-sectors .text h3 {
    font-size: 25px;
    line-height: 38px;
  }
  .achieve-sectors .text span {
    font-size: 16px;
    line-height: 20px;
  }
  .achieve-sectors .button-div {
    width: 100%;
  }
  .achieve-sectors .button-div a {
    height: fit-content;
    width: 80%;
    font-size: 16px;
    padding: 12px 0 12px 0;
  }
}
.products-section {
  background-color: #1e1e1e;
  padding-bottom: 3rem;
  overflow: hidden;
}
.products-section .boxx {
  border-radius: 10px;
  z-index: 1;
  transition: all ease 0.3s;
  overflow: hidden;
}
.products-section .boximg {
  width: 100%;
}
.products-section .text {
  text-align: left;
  padding: 1rem;
}
.products-section .text h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 24px;
}
.products-section .text button {
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  font-weight: 600;
  border: none;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .products-section .r {
    margin: 0;
    padding: 0;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
  .products-section .l {
    margin: 0;
    padding: 0;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
  .products-section .boxx {
    margin: 0.5rem 0;
  }
  .products-section .text {
    padding: 0.5rem;
  }
  .products-section .text h3 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  .products-section .text button {
    font-size: 8px;
  }
}
.roles-section {
  background-color: #1e1e1e;
  padding-bottom: 3rem;
}
.roles-section .roles-row {
  padding: 0.5rem;
}
.roles-section .roles-card {
  margin: 1rem 0.5rem;
  background-color: #262626;
  color: white;
  border: 2px solid #474747;
  border-radius: 5px;
  padding: 0.5rem;
  display: flex;
}
.roles-section .icon {
  width: fit-content;
  padding: 1.5rem;
  margin: auto 1rem;
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    #2e2e2e 0%,
    rgba(46, 46, 46, 0) 100%
  );
  background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
    linear-gradient(180deg, #2e2e2e 0%, rgba(46, 46, 46, 0) 100%),
    linear-gradient(
      229.29deg,
      rgba(236, 50, 66, 0.2) -68.25%,
      rgba(236, 50, 66, 0) 32.16%
    );
  border-radius: 10px;
}
.roles-section .text {
  margin: 1.5rem 0;
}
.roles-section .text h3 {
  font-size: 1.5rem;
  line-height: 38px;
  margin-bottom: 1rem;
}
.roles-section .text p {
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .roles-section .heading-row {
    padding-top: 1.5rem;
    margin-bottom: 0;
  }
  .roles-section .icon {
    padding: 0.75rem;
  }
  .roles-section .icon img {
    width: 15px;
    height: 15px;
  }
  .roles-section .col-lg-6 {
    margin: 0;
    padding: 0;
  }
  .roles-section .col-lg-12 {
    margin: 0;
    padding: 0;
  }
  .roles-section .roles-card {
    margin: 0.5rem 0;
    padding: 0.5rem;
  }
  .roles-section .text {
    margin: 0.75rem 0;
  }
  .roles-section .text h3 {
    font-size: 16px;
    line-height: 21px;
  }
  .roles-section .text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.inception-hero {
  background-color: #1e1e1e;
  margin: 0;
  padding: 0;
}
.inception-hero .container-fluid {
  margin: 0;
  padding: 0;
}
.inception-hero .row {
  margin: 0;
  padding: 0;
}
.inception-hero .img-div {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
.inception-hero img {
  width: 90%;
}
.inception-hero .text-div {
  color: white;
  margin: auto;
  padding: 3rem;
}
.inception-hero .text-div h3 {
  color: #ec3242;
}
.inception-hero .text-div h1 span {
  color: #ec3242;
}

@media (max-width: 992px) {
  .inception-hero .text-div {
    text-align: center;
    margin-top: 4rem;
  }
  .inception-hero .text-div h3 {
    font-size: 30px;
  }
  .inception-hero .text-div h1 {
    font-size: 22px;
  }
  .inception-hero img {
    width: 100%;
  }
}
.our-company {
  background-color: #1e1e1e;
  padding-top: 2rem;
}
.our-company ul {
  color: white;
  list-style: none;
  margin: 0 5rem;
}
.our-company li {
  padding: 3rem;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.our-company li:before {
  content: "";
  color: red;
  width: 50px;
  height: 50px;
  background-color: #ec3242;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-25px);
  bottom: 0;
  border-radius: 10px;
  z-index: 2;
}
.our-company li:not(:last-child)::after {
  content: "";
  color: white;
  /* border-left: 1px dashed white; */
  position: absolute;
  height: 100%;
  width: 2px;
  top: 50%;
  left: -25px;
  background-image: linear-gradient(white 50%, rgb(0, 0, 0) 0%);
  background-position: right;
  background-size: 1px 29px;
  background-repeat: repeat-y;
}

@media (max-width: 992px) {
  .our-company ul {
    margin: 0 1rem;
  }
  .our-company li {
    padding: 1.5rem 0rem 1.5rem 1rem;
    font-size: 14px;
    font-weight: 400;
  }
}
.vision {
  padding-bottom: 4rem;
}
.vision .section-heads {
  color: black;
}
.vision .vision-card {
  margin: 2rem;
  padding: 2rem;
  border: 4px solid #c0c0c0;
  height: 100%;
  font-size: 22px;
  line-height: 30px;
}
.vision .vision-card p {
  margin-bottom: 0;
}
.vision .image-div img {
  margin-top: 2rem;
  padding: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .vision .col-md-6 {
    margin-bottom: 2rem;
  }
  .vision .vision-card {
    margin: 0.25rem;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    padding: 1rem;
  }
  .vision .image-div {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .vision .image-div img {
    margin: 0;
    width: 190%;
    padding: 0;
  }
}
.our-founders {
  background-color: #1e1e1e;
}
.our-founders .heading-row p {
  color: white;
  width: 70%;
  margin: auto;
  text-align: center;
}
.our-founders .founder {
  padding: 1rem 2rem;
}
.our-founders .founder-card {
  border: 2px solid #474747;
  border-radius: 5px;
  padding: 1rem;
}
.our-founders .founder-card .img-div img {
  width: 100%;
}
.our-founders .text-div {
  color: white;
  display: flex;
  flex-direction: column;
}
.our-founders .text-div p {
  font-size: 18px;
  line-height: 30px;
}
.our-founders .logos {
  display: flex;
  justify-content: end;
  margin-top: auto;
}
.our-founders .logos img {
  margin: 0 1rem 0 0;
}
.our-founders .reverse {
  flex-direction: row-reverse;
}
.our-founders .reverse .logos {
  justify-content: flex-start;
}
.our-founders .text-div h2 span {
  color: #ec3242;
}

@media (max-width: 992px) {
  .our-founders .heading-row .section-heads {
    font-size: 20px;
  }
  .our-founders .heading-row p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
  }
  .our-founders .text-div p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .our-founders .heading-row p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    margin-top: 1rem;
  }
  .our-founders .founder {
    padding: 0.5rem 1rem;
  }
  .our-founders .section-heads {
    margin: 0;
    margin-top: 4.5rem;
  }
  .our-founders .founder-card .img-div {
    display: flex;
    margin-bottom: 0.5rem;
  }
  .our-founders .founder-card .img-div img {
    width: 50%;
    margin: auto;
  }
  .our-founders .founder-card h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .our-founders .founder-card p {
    font-size: 10px;
    line-height: 18px;
    text-align: justify;
  }
  .our-founders .logos,
  .our-founders .reverse .logos {
    justify-content: center;
  }
  .our-founders .logos img {
    margin: 1rem 1rem 0 1rem;
  }
}

.our-industries {
  padding-top: 4rem;
}
.our-industries p {
  text-align: center;
  color: white;
  font-weight: 600;
}

.job-role .roles-card {
  height: 90%;
}

.invest-in p {
  text-align: center;
  color: white;
  font-weight: 600;
}

.invest-in .roles-card {
  height: 90%;
  text-align: center;
}

.channel-hero {
  background-color: #020507;
  background-image: url(images/channel-hero.png);
  height: 100vh;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
}
.channel-hero .container-fluid {
  margin: auto;
}
.channel-hero .text-div {
  color: white;
  margin: auto;
  padding: 3rem;
}
.channel-hero .text-div h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 600;
}
.channel-hero .text-div h1 span {
  color: #ec3242;
}
.channel-hero .text-div p {
  font-size: 18px;
  line-height: 35px;
}

.channel-head {
  background-color: #0e040d;
  padding: 2rem 0;
}

.our-company .heading-row p {
  text-align: center;
  color: white;
  font-weight: 600;
}

.heading-row p {
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 992px) {
  .channel-hero .text-div {
    text-align: center;
    margin-top: 4rem;
  }
  .channel-hero .text-div h3 {
    font-size: 30px;
  }
  .channel-hero .text-div h1 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .channel-hero {
    height: auto;
    background-image: none;
  }
  .channel-hero .row {
    flex-direction: column-reverse;
  }
  .channel-hero .space-div {
    height: 50vh;
    background-image: url(images/channel-hero.png);
    background-size: cover;
  }
  .channel-hero .text-div {
    padding: 2rem 1rem;
    margin: 3rem 0;
  }
  .channel-hero .text-div h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .channel-hero .text-div p {
    margin-top: 1rem;
    font-size: 14px;
    text-align: justify;
    line-height: 24px;
  }
}
.press-hero {
  background-image: url(images/press.png);
  background-size: cover;
}
.press-hero h1 {
  margin: 25vh 0;
  font-size: 70px;
  text-align: center;
  color: white;
  width: 100%;
  font-weight: 600;
}
.press-hero h1 span {
  color: #ec3242;
}

@media (max-width: 768px) {
  .press-hero {
    background-image: url(images/press-phone.png);
    background-size: cover;
  }
  .press-hero h1 {
    font-size: 50px;
  }
}
.press-cards-section {
  background-color: #1e1e1e;
}
.press-cards-section .press-card {
  background-color: #4a4a4a;
  padding: 1.5rem;
  margin: 1rem;
}
.press-cards-section .press-card h5 {
  color: white;
  padding: 0 1.25rem;
  font-size: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.one-p {
  width: 60%;
}
@media (max-width: 768px) {
  .press-cards-section .press-card h5 {
    font-size: 22px;
  }
  .one-p {
    width: 90%;
  }
}
.press-cards-section .press-card img {
  width: 100%;
  padding: 1rem 1.25rem;
}
.press-cards-section p {
  color: #e6e6e6;
  padding: 0 1.25rem;
}
.press-cards-section .button-div {
  width: 100%;
}
.press-cards-section .button-div a {
  display: block;
  width: 100%;
  height: 60px;
  padding: 18px 0px 18px 0px;
  border-radius: 8px;
  gap: 10px;
  background-color: #ec3242;
  font-family: Barlow;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.006em;
  text-align: left;
  color: white;
  text-decoration: none;
  text-align: center;
  margin: auto;
  width: 80%;
}

.website-design {
  background-color: #000000;
}
.website-design .img-div img {
  width: 100%;
}
.website-design .text-div {
  color: white;
  margin: auto;
  padding: 3rem 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.website-design .text-div h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 600;
}
.website-design .text-div h1 span {
  color: #ec3242;
}
.website-design .text-div p {
  font-size: 18px;
  line-height: 35px;
}
.website-design .serv {
  font-size: 30px;
  line-height: 37px;
  color: #ec3242;
}

@media (max-width: 768px) {
  .website-design {
    padding-top: 4rem;
  }
  .website-design .row {
    flex-direction: column-reverse;
  }
  .website-design .text-div {
    text-align: center;
  }
  .website-design .text-div h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 1rem;
  }
  .website-design .text-div p {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
  }
  .website-design .serv {
    display: none;
  }
}
.b2b .roles-card {
  height: 90%;
}
.b2b .roles-card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.b-clients .roles-card {
  padding: 1rem;
  height: 90%;
}
.b-clients .roles-card h3 {
  text-align: center;
}
.high-end .section-heads {
  width: 95%;
  margin: 4rem auto 1rem auto;
}
.high-end .section-heads h1 {
  font-size: 35px;
  line-height: 43px;
  font-weight: 700;
}
.high-end .heading-row p {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: black;
}
.high-end .vision-card {
  padding: 2rem 2rem 0 2rem;
  margin: 2rem 2rem 0 2rem;
}
.high-end .vision-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.high-end .vision-card p {
  font-weight: 700;
}
.high-end .head-extra {
  padding: 3rem 0;
  padding-top: 5rem;
}
.high-end .head-extra p {
  width: 90%;
  margin: auto;
}
.high-end .red-text {
  color: #ec3242;
}

@media (max-width: 768px) {
  .high-end .vision-card {
    margin: 0.25rem;
    padding: 1rem;
  }
  .high-end .section-heads {
    line-height: 35px;
  }
  .high-end .heading-row p {
    font-size: 14px;
    line-height: 24px;
  }
  .high-end .vision-card h3 {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .high-end .vision-card p {
    font-size: 14px;
  }
  .high-end .head-extra {
    padding: 2rem 0;
    padding-top: 1rem;
  }
}
.website-roles .heading-row {
  padding-top: 3rem;
}
.website-roles .roles-card {
  min-height: 240px;
}
.website-roles .roles-row .text {
  margin: auto 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.website-roles .roles-card ul {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  list-style: none;
}
.website-roles .roles-card li {
  margin-bottom: 10px;
  position: relative;
}
.website-roles .roles-card li::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ec3242;
  position: absolute;
  left: -35px;
  top: 1px;
}

@media (max-width: 768px) {
  .website-roles .roles-card h3 {
    font-size: 18px;
  }
  .website-roles .roles-card {
    min-height: 180px;
  }
  .website-roles .roles-card li {
    font-size: 14px;
    line-height: 16px;
  }
  .website-roles .roles-card li::before {
    width: 14px;
    height: 14px;
  }
  .website-roles .roles-row .text {
    margin: auto 1rem;
  }
}
.custom-web-hero {
  background-color: #020507;
  background-image: url(images/custom-web.png);
  height: 100vh;
  background-position: right;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .custom-web-hero {
    background-image: none;
  }
  .custom-web-hero .space-div {
    height: 50vh;
    background-image: url(images/custom-web.png);
    background-size: cover;
  }
}
.custom-web .roles-card li {
  margin: 1rem 0;
}
.custom-web .roles-card {
  min-height: unset;
}

.erp-white .col-md-12:last-child {
  margin-top: 2rem;
}
.erp-white .vision-card p {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

.need-of-clients {
  background-color: #1e1e1e;
}
.need-of-clients .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 20px;
}
.need-of-clients .card {
  background-color: #262626;
  border: 2px solid #474747;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
}
.need-of-clients .card h3 {
  color: white;
  margin: auto;
  padding: 2rem 0;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .need-of-clients .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .need-of-clients .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.erp-soft {
  background-color: #020507;
  background-image: url(images/erp.png);
  height: 100vh;
  background-position: right;
  background-repeat: no-repeat;
}
.erp-soft p {
  text-align: justify;
}

@media (max-width: 768px) {
  .erp-soft {
    background-image: none;
  }
  .erp-soft .space-div {
    height: 50vh;
    background-image: url(images/erp.png);
    background-size: cover;
  }
}
.white-roles {
  background-color: white;
}
.white-roles .heading-row {
  padding-bottom: 0;
}
.white-roles .section-heads {
  color: black;
}
.white-roles .roles-card {
  color: black;
  background-color: white;
  height: 90%;
}
.white-roles .roles-card .icon {
  background: none;
  background-color: #ec3242;
}

.ecom-hero {
  background-color: #020507;
  background-image: url(images/ecommerce.png);
  height: 100vh;
  background-position: right;
  background-repeat: no-repeat;
}
.ecom-hero p {
  text-align: justify;
}

.ecom-roles .roles-card {
  height: 90%;
}

.ecom-cards .roles-row {
  justify-content: center;
}

.ecom-cards .roles-card .text {
  width: 100%;
}

.ecom-flag-last .roles-card {
  height: 90%;
}

@media (max-width: 768px) {
  .ecom-hero {
    background-image: none;
  }
  .ecom-hero .space-div {
    height: 50vh;
    background-image: url(images/ecommerce.png);
    background-position: right;
  }
}
.are-built {
  background-color: #1a1a1a;
}
.are-built .img-div {
  display: flex;
}
.are-built .img-div img {
  width: 80%;
  margin: auto;
}
.are-built .text-div {
  color: white;
  display: flex;
  flex-direction: column;
  padding: 1rem 4rem 1rem 0;
  justify-content: center;
}
.are-built .text-div h2 {
  font-size: 40px;
}
.are-built .text-div p {
  text-align: justify;
  font-size: 18px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .are-built .text-div {
    padding: 1rem;
  }

  .are-built .text-div h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .are-built .text-div p {
    font-size: 14px;
    line-height: 24px;
  }
}

.individual-retailers .roles-card {
  height: 90%;
}

.individual-retailers .roles-card .text {
  width: 100%;
}
.individual-retailers .roles-card h3 {
  color: white;
  margin: auto;
  padding: 2rem 0;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  font-weight: 400;
  width: 100%;
}

.not-limited .roles-card h3 {
  margin-bottom: 0;
  font-weight: 400;
}

.red-section {
  background-color: #ec3242;
  color: white;
  text-align: center;
  padding: 3rem;
}
.red-section h2 {
  margin-bottom: 1.5rem;
  font-size: 38px;
}
.red-section p {
  width: 60%;
  margin: auto;
  font-size: 20px;
}
.red-section button {
  width: 200px;
  border-radius: 2rem;
  margin: 3rem auto 0;
  padding: 0.5rem;
  font-weight: 600;
}
.red-section .col-md-12 {
  display: flex;
  flex-direction: column;
}

.plan-to-drop-by .text {
  padding: 4rem;
}

@media (max-width: 768px) {
  .red-section {
    padding: 1rem;
  }
  .red-section p {
    width: 100%;
    font-size: 14px;
    padding: 0;
  }
  .red-section h2 {
    font-size: 20px;
  }
  .red-section button {
    font-size: 14px;
    margin: 1rem auto 2rem;
  }
  .plan-to-drop-by .text {
    padding: 1rem;
  }
}

.phone-section {
  text-align: center;
  padding: 3rem 0 0 0;
}
.phone-section h2 {
  font-size: 38px;
  font-weight: 700;
}
.phone-section p {
  width: 60%;
  margin: auto;
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
}
.phone-section button {
  width: 200px;
  border-radius: 2rem;
  margin: 1rem auto;
  padding: 0.5rem;
  font-weight: 600;
}
.phone-section .black-circle {
  margin: auto;
  margin-top: 3rem;
  max-width: 900px;
  background: radial-gradient(
    circle at 50% 160%,
    #1e1e1e 28vw,
    transparent 17.1vw
  );
}
.phone-section .black-circle img {
  height: 100%;
}

.phone-section button {
  background-color: #ec3242;
  color: white;
}

@media (max-width: 1200px) {
  .phone-section .black-circle {
    background: radial-gradient(
      circle at 50% 140%,
      #1e1e1e 28vw,
      transparent 17.1vw
    );
  }
}
@media (max-width: 992px) {
  .phone-section .black-circle {
    background: radial-gradient(
      circle at 50% 125%,
      #1e1e1e 32vw,
      transparent 17.1vw
    );
  }
}
@media (max-width: 768px) {
  .phone-section h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .phone-section p {
    font-size: 12px;
    line-height: 20px;
    width: 90%;
  }
  .phone-section .black-circle {
    background: radial-gradient(
      circle at 50% 125%,
      #1e1e1e 44vw,
      transparent 17.1vw
    );
  }
}
@media (max-width: 500px) {
  .phone-section .black-circle {
    background: radial-gradient(
      circle at 50% 125%,
      #1e1e1e 44vw,
      transparent 17.1vw
    );
  }
  .phone-section .black-circle img {
    height: unset;
    width: 60%;
  }
}
.digital-hero .img-div {
  display: flex;
}
.digital-hero .img-div img {
  width: 70%;
  margin: auto;
}

.b-offering .section-heads {
  color: black;
}
.b-offering .heading-row {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
.b-offering .heading-row p {
  color: black;
}
.b-offering .img-div {
  display: flex;
}
.b-offering .img-div img {
  width: 90%;
}
.b-offering .text-div {
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  text-align: justify;
  padding: 0 1.5rem;
}
.b-offering .parts {
  margin-bottom: 3rem;
}

.white-tech {
  color: black;
  background-color: white;
}
.white-tech .text-div {
  color: black;
}
.white-tech h2 {
  font-weight: 700;
}
.white-tech p {
  font-weight: 500;
}

@media (max-width: 768px) {
  .white-tech .text-div {
    padding: 1rem;
    text-align: center;
  }
  .white-tech h2 {
    font-size: 20px;
  }
  .white-tech .text-div p {
    text-align: center;
  }
}

.code-hero {
  background: linear-gradient(180deg, #226088 0%, #073c5d 47.74%, #001c34 100%);
}
.not-limited .roles-card {
  height: 90%;
}

.not-limited .section-heads {
  line-height: 30px;
}
.web-host-hero {
  padding: 3rem 0;
}

.hosting-services {
  background-color: #1e1e1e;
}
.hosting-services .hosting-card-row {
  color: white;
  justify-content: center;
  padding-bottom: 4rem;
}
.hosting-services .hosting-card-wrapper {
  padding: 1rem;
}
.hosting-services .hosting-card {
  border: 2px solid #474747;
  background-color: #262626;
  padding: 0 1rem;
  display: flex;
  text-align: center;
  min-height: 170px;
}
.hosting-services .hosting-card h5 {
  font-size: 18px;
  margin-bottom: 0;
  margin: auto;
}

.hosting-white .section-heads {
  color: black;
}
.hosting-white .hosting-card-wrapper {
  padding: 1rem;
}
.hosting-white .hosting-card {
  border: 2px solid #474747;
  background-color: white;
  border-radius: 5px;
  color: black;
  padding: 0 1rem;
  display: flex;
  text-align: center;
  min-height: 170px;
}
.hosting-white .hosting-card h5 {
  font-size: 25px;
  margin-bottom: 0;
  margin: auto;
}

.code-second > * {
  margin: 0;
  padding: 0;
}

.code-second {
  background-color: #1e1e1e;
  background-image: url(images/binary.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.code-second .row {
  margin: 0;
}
.code-second .col-md-6 {
  padding: 0;
}
.code-second .img-div img {
  width: 100%;
}
.code-second .text-div {
  display: flex;
}
.code-second .text-div p {
  padding: 2rem;
  color: white;
  margin: auto;
  font-size: 20px;
  line-height: 34px;
}

@media (max-width: 768px) {
  .code-second {
    background-image: none;
  }

  .code-second .text-div p {
    font-size: 14px;
    text-align: center;
  }
}

.career-hero {
  background-color: #000f26;
  background-image: url(images/careers.png);
  height: 100vh;
  background-position: right;
  background-repeat: no-repeat;
}
.career-hero .serv {
  font-size: 30px;
  line-height: 37px;
  color: #ec3242;
}

.career-with-us .head {
  display: flex;
}

.career-with-us .head h2 {
  color: white;
  margin: auto;
  font-size: 53px;
  line-height: 64px;
  width: 70%;
}

.unique {
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .career-with-us .head h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .career-hero {
    background-image: none;
  }
  .career-hero .space-div {
    height: 50vh;
    background-image: url(images/careers.png);
    background-position: right;
  }
}

.partnersec1 {
  position: relative;
}

.partnercontent {
  padding-block: 100px;
}
.partnercontent .h {
  font-family: Inter;
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}
.partnercontent .t {
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  width: 70%;
}

.reachoutdiv {
  z-index: 1;
  width: 457px;
}

.reachoutcontent {
  position: relative;
}

.reachoutcontent .h {
  font-family: Inter;
  font-size: 29px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(30, 30, 30, 1);
}

.reachoutcontent .t {
  color: rgba(30, 30, 30, 1);
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.partnerbox {
  z-index: 1;
  width: 436px;
  height: 435px;
  border-radius: 30px;
  box-shadow: 0px 4px 81px 0px rgba(236, 50, 66, 0.28);
  background: rgba(30, 30, 30, 1);
}
.partnerboxcontent {
  position: relative;
}

.partnerboxcontent .btn {
  z-index: 1;
  margin-left: 3rem;
  width: 185px;
  height: 60px;
  border-radius: 60px;
  color: rgba(255, 255, 255, 1);

  background: rgba(236, 50, 66, 1);
  box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.15);

  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.27) inset;
  font-family: Inter;
  font-size: 22px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
}
.yellowstrip {
  position: absolute;
  width: 239px;
  height: 47px;
  left: 9px;
  transform: rotate(-18.49deg);
  background: rgba(255, 197, 1, 0.8);
}

.partneryellowshade {
  position: absolute;
  width: 204.44px;
  height: 200px;
  top: 181.26px;
  left: 977px;
  transform: rotate(20.4deg);
  background: rgba(248, 178, 0, 1);
  filter: blur(119px);
}
.partnerpurpleshade {
  width: 195.37px;
  height: 299.28px;
  top: 168px;
  left: 810.75px;
  transform: rotate(20.4deg);
  background: rgba(155, 73, 220, 1);
  filter: blur(119px);
  position: absolute;
}
.partnerredshade {
  width: 96px;
  height: 289.62px;
  top: 35px;
  left: 1136.75px;
  transform: rotate(20.4deg);
  background: rgba(236, 50, 66, 1);
  filter: blur(119px);
  position: absolute;
}

@media (max-width: 767px) {
  .partnerboxcontent .h {
    z-index: 1;
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }

  .partnerboxcontent .t {
    z-index: 1;
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }

  .partnerboxcontent .no,
  .dot {
    z-index: 1;
    left: 10px;
    top: 0px;
    font-family: Inter;
    font-size: 25px;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    position: absolute;
    color: rgba(255, 255, 255, 1);
  }
}
@media (min-width: 768px) {
  .partnerboxcontent .h {
    z-index: 1;
    margin-inline: 3rem;
    font-family: Inter;
    font-size: 29px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }

  .partnerboxcontent .t {
    z-index: 1;
    margin-inline: 3rem;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }

  .partnerboxcontent .no,
  .dot {
    z-index: 1;
    left: 10px;
    top: 0px;
    position: absolute;
    font-family: Inter;
    font-size: 43px;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
  }
}

/* for mobile ---------- */
.mpartnerhead {
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  padding-block: 100px;
}
.mpartnerhead .t {
  z-index: 1;
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  padding-inline: 1rem;
}
.mpartnerhead .h {
  z-index: 1;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
}
.mpartner {
  position: relative;
}

.mpartnerpurpleshade {
  width: 195.37px;
  height: 299.28px;
  top: 351.98px;
  left: -30px;
  transform: rotate(20.4deg);
  background: rgba(155, 73, 220, 1);
  position: absolute;
  filter: blur(119px);
}

.mpartneryellowshade {
  width: 204.44px;
  height: 200.5px;
  top: 338.26px;
  left: 100px;
  transform: rotate(20.44deg);
  position: absolute;
  filter: blur(111px);
  background: rgba(248, 178, 0, 1);
}

@media (min-width: 768px) {
  .contactsec1content .h {
    font-family: Inter;
    font-size: 62px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }
  .contactsec1content {
    width: 70%;
    padding-block: 100px;
  }
}

@media (max-width: 767px) {
  .contactsec1 {
    background-position: right; /* Adjust the background position to show the right part */
  }

  .contactsec1content {
    width: 90%;
    padding-block: 80px;
  }

  .contactsec1content .h {
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: left;

    color: rgba(255, 255, 255, 1);
  }
}

.contactsec1content .t {
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

/* faq-section */
.faq-section {
  padding: 1em;
  background-color: #0e040d;
}
.accordion-icon-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4em;
  border-radius: 5px;
  margin-right: 1em;
  height: 4em;
  background-color: white;
}
/* Change the arrow icon to a plus sign */

.accordion-button::after {
  display: none;
}
.accorion-opener {
  margin-left: auto;
  width: 1em;
  height: 1em;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  background-color: hsl(0, 0%, 100%, 30%);
  border-radius: 50%;
  color: #d9d9d9;
  background-image: url("./images/Vector\ \(20\).svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1em;
}
/* background-image: none;
    width: 1em;
    height: 1em;
    background-color: hsl(0, 0%, 100%,30%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    content: '+';
    font-size: 3rem; 
    font-weight: bold; 
    color: 
    #D9D9D9; 



  
  /* Change the arrow icon to a minus sign when the accordion is expanded */
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  content: "-"; /* Change the content to a minus sign */
  color: #d9d9d9; /* Customize the color of the minus sign */
}

@media (max-width: 768px) {
  .accordion-item {
    p {
      font-size: 15px;
    }
  }
  .accordion-button {
    padding: 0.4em !important;
  }
  .accordion-icon-div {
    width: 3em;
    height: 3em;
  }
  .accorion-opener {
    width: 0.5em;
    height: 0.5em;
    padding: 0.5em;
    background-size: 0.5em;
  }
}

/* backend database  */
.backend-database-hero {
  background: #020507 !important;
}
.backend-database-hero .img-div {
  position: relative;
}
.backend-database-hero .img-div::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0));
}

.hybrid-hero {
  background-image: url("./images/hybridImg.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.hybrid-hero .space-div::before {
  background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0));
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

/* virtual tour  */

/* .virtual-tour-hero{
    height: 90vh;
    width: 100%;
    background-image: url("./images/virtualTour.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  } */
.virtual-tour-hero {
  width: 100%;
  height: 90vh;
  background: #020507;
}
.virtual-tour-hero .hero-heading-div {
  position: relative;
  z-index: 0;
  width: 40%;
}
.virtual-tour-hero .img-div {
  background-image: url("./images/virtualTour.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  object-fit: contain;
  position: relative;
  width: 60%;
}

.ecom-flag-hero .img-div {
  background-image: url("./images/ecom-flag.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  object-fit: contain;
  position: relative;
  width: 60%;
}

.tour-flag-hero .img-div {
  background-image: url("./images/tour-flag-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  object-fit: contain;
  position: relative;
  width: 60%;
}

.ecom-flag-hero h5 {
  color: #ec3242;
}

.ecom-price .toggle-btn .wrapper {
  display: flex;
  margin: 3rem 0;
}

.ecom-price .toggle-btn .wrapper .btn-group {
  margin: auto;
  background-color: #262626;
  padding: 4px;
  border: 2px solid #474747;
  border-radius: 50px;
}

.ecom-price .toggle-btn .wrapper .btn-group label {
  border: none;
  padding: 1rem 2rem;
  text-align: center;
  width: 300px;
  border-radius: 50px;
  color: white;
}

.btn-check:checked + .btn {
  background-color: #ec3242;
  border: none;
}

.ecom-price {
  background-color: #1e1e1e;
}

.ecom-price-card {
  color: white;
  background-color: #262626;
  border: 2px solid #474747;
  border-radius: 5px;
  margin: 1rem 1.5rem;
}

.ecom-price-card:hover {
  border: 3px solid white;
}

.ecom-price-card .price {
  font-size: 40px;
  line-height: 70px;
  font-weight: 700;
  padding: 0 1rem;
  background-color: #ec3242;
}

.ecom-price-card .price img {
  vertical-align: unset;
}

.ecom-price-card span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: -0.6%;
}

.ecom-price-card ul {
  padding: 0.5rem 1.5rem;
  list-style: none;
}

.ecom-price-card li {
  padding: 1rem 0;
  border-bottom: 2px solid white;
}

.ecom-price-card h3 {
  padding: 0.5rem 1rem;
}

.ecom-card-row .col-md-3 {
  margin: 2rem auto;
}

.ecom-price-card .button-div {
  width: 100%;
  display: flex;
  margin: 2rem 0;
  justify-content: center;
}

.ecom-price-card .button-div button {
  background-color: #ec3242;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 1.5rem;
}

.card-hide label {
  border: 1px solid #474747;
  padding: 1rem 0;
  color: white;
}

@media (max-width: 768px) {
  .ecom-price .toggle-btn .wrapper .btn-group label {
    width: 175px;
    font-size: 14px;
    padding: 0.75rem 0.5rem;
  }

  .ecom-price-card .price {
    font-size: 30px;
  }
  .ecom-price-card .price img {
    vertical-align: middle;
  }

  .ecom-price .hide-div {
    display: none;
  }
}

.error {
  border: 2px solid red !important;
}

.v-tour .text {
  display: flex;
  width: 100%;
}

.v-tour .text h3 {
  margin-bottom: 0;
  margin: auto;
  width: 100%;
}

.virtual-tour-hero .img-div::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #020507, rgba(0, 0, 0, 0));
}

.virtual-tour-hero-section-2 .text-div {
  background-color: #0e040d;
}

.virtual-tour-white-section .heading-row {
  padding: 0;
}

.virtual-white-section-left-image {
  background-image: url("./images/virtualWhiteSectionleftImage.png");
  height: 20em;
  width: 50%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.virtual-white-section-right-image {
  background-image: url("./images/virtualWhiteSectionRightImage.png");
  height: 20em;
  width: 50%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
.virtual-white-section-bottom-image {
  background-image: url("./images/virtualWhiteSectionbottomImage.png");
  height: 20em;
  position: absolute;
  left: 25%;
  width: 50%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media (max-width: 768px) {
  .virtual-tour-hero .img-div {
    background-position: center;
    margin: auto;
    padding: 3rem 1rem;
    background-size: cover;
    width: 100%;
    height: 50vh !important;
  }
  .virtual-tour-hero .hero-heading-div {
    width: 100%;
    height: 40vh;
  }
  .virtual-tour-hero-div {
    height: auto !important;
  }
  .virtual-white-section-left-image {
    height: 10em;
  }
  .virtual-white-section-right-image {
    height: 10em;
  }
  .virtual-white-section-bottom-image {
    height: 10em;
  }
}

/* lets connect section  */

.lets-connect-section {
  height: 40em;
  background-image: url("./images/LetsConnectImage.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lets-connect-divs {
  padding: 0.75rem 3rem;
  min-width: 10em;
  display: flex;
  color: white;
  gap: 1em;
  align-items: center;

  background-color: #ec3242;
  border-radius: 50px;
}
.lets-connect-icons {
  width: 2em;
  height: 2em;
}
#whatsapp {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./images/whatsapp.svg");
}
#email {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./images/mail.svg");
}
#phone {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./images/phone.svg");
}

@media (max-width: 568px) {
  .lets-connect-icons {
    width: 1em;
    height: 1em;
  }
  .lets-connect-divs {
    width: 8em;
    min-width: 5em;
    gap: 0.5em;
    padding: 0.4em;
  }
  .lets-connect-elements-div {
    gap: 0.5em !important;
  }
}
@media (max-width: 414px) {
  .lets-connect-divs {
    p {
      font-size: 0.7em;
    }
  }
}

/* contact us  */

.contact-us-hero {
  background-image: url("./images/contactUsHero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 90vh;
  h1 {
    color: white;
    font-weight: 700;
    font-size: 80px;
  }
  h2 {
    color: white;
    font-weight: 700;
    font-size: 50px;
    span {
      color: #ec3242;
    }
  }
}
@media (max-width: 768px) {
  .we-provide-grid {
    width: 100%;
  }
  .contact-us-hero h1 {
    font-size: 53px;
    line-height: 64px;
  }
  .contact-us-hero h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

/* we-provide-section */

.we-provide-section {
  background-color: #1e1e1e;
  padding: 2em;
  overflow: hidden;
  position: relative;
  h2 {
    color: white;
    font-weight: 700;
    span {
      color: #ec3242;
    }
  }
}
.we-provide-grid {
  display: grid;
  width: 70%;
  gap: 2em;
  grid-template-columns: repeat(2, 1fr);
}
.circle-blur {
  width: 20em;
  height: 20em;
  top: -10em;
  left: -10em;
  background-color: #ec32414e;
  filter: blur(1000px);
  position: absolute;
}
.we-provide {
  padding: 1em;
  height: 20em;
  width: 30em;
  background-color: #262626;
  border: 2px #474747 solid;
}
@media (max-width: 1480px) {
  .we-provide {
    height: 20em;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .we-provide-grid {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .we-provide-grid {
    gap: 1em;
  }
  .we-provide {
    height: 13em;
    p {
      font-size: 0.7em !important;
    }
  }
  .we-provide-logo {
    width: 3em;
    height: 3em;
    svg {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
    img {
      width: 100%;
    }
  }
  .we-provide-section {
    padding: 1em;
  }
}
/* talk-us-back-section */

.talk-us-back-section {
  overflow: hidden;
  position: relative;
  background-color: #1e1e1e;
  padding: 2em;
  h2 {
    color: white;
    font-weight: 600;
    span {
      color: #ec3242;
    }
  }
}
.circle-blur-talk-us {
  width: 20em;
  height: 20em;
  top: -10em;
  left: -10em;
  background-color: #325aec54;
  filter: blur(1000px);
  position: absolute;
}
.talk-us-back-div {
  div {
    border: 2px #474747 solid;
    background-color: #262626;
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    color: white;
    p {
      font-weight: 600;
    }
  }
}
.map {
  background-image: url("./images/map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.plan-to-drop-by {
  height: 50vh;
}
@media (max-width: 768px) {
  .plan-to-drop-by {
    flex-direction: column;
    width: 100%;
    height: auto;
    div {
      width: 100% !important;
      height: 40vh;
    }
  }
  .last-form-inner-div {
    gap: 1em !important;
  }
}
@media (max-width: 630px) {
  .talk-us-back-div > div {
    p {
      font-size: 1em !important;
    }
  }
}

/* flagship-360-hero */
.flagship-360-hero {
  padding: 1rem;
  color: white;
  border-bottom: 1px solid white;
}

.blogs-header {
  background-color: #000000;
}

.blogs-header h1 {
  text-align: center;
  color: white;
  font-size: 62px;
  line-height: 75px;
}

.blog-search-div {
  display: flex;
}

.blog-search {
  width: 300px;
  margin: 2rem auto;
}

.blogs-header .container {
  background-color: #1e1e1e;
  border-radius: 7px;
}

.cat-head {
  border-bottom: 2px solid white;
  color: white;
  text-align: center;
}

.cats-here {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: white;
}

.cats-here a {
  color: white;
  text-decoration: none;
  padding: 1.5rem 2rem;
  font-size: 19px;
}

.blog-card-section {
  background-color: black;
  padding: 3rem 0;
}

.blog-card-section .blog-card {
  color: white;
  margin: 1.25rem 0.5rem;
  padding: 1.25rem;
  background-color: #1e1e1e;
  border: 3px solid #616161;
  border-radius: 5px;
  cursor: pointer;
}

.blog-card-section .blog-card .card-cat {
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.blog-card-section .blog-card .card-head {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blog-card-section .blog-card img {
  width: 100%;
  padding-bottom: 1rem;
}

.blog-card-section .blog-card .card-data {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-page {
  padding-top: 5rem;
}

.category-wrapper {
  background-color: #1e1e1e;
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem;
}

.category-wrapper .cat-head {
  padding: 0.5rem;
  font-size: 19px;
  border-bottom: 1px solid white;
}

.category-wrapper .cats-here {
  flex-direction: column;
  padding-top: 1rem;
}

.category-wrapper .cats-here a {
  padding: 0.5rem 1rem;
  font-size: 16px;
}

.category-wrapper .cats-here li {
  font-size: 12px;
}

.category-wrapper .cats-here li::marker {
  font-size: 22px;
  font-weight: 700;
  vertical-align: baseline;
}

.blog-area h1 {
  font-size: 25px;
  font-weight: 700;
}

.blog-area img {
  width: 100%;
  margin-bottom: 1.5rem;
}

.blog-area p {
  font-weight: 500;
}

@media (max-width: 1200px) {
  .blog-page {
    background-color: #000000;
    color: white;
  }
  .blog-area {
    padding: 1rem;
  }
  .blog-page .row {
    flex-direction: column-reverse;
  }
  .blog-area img {
    margin-bottom: 1rem;
  }
  .blog-area p {
    text-align: justify;
  }
}

.career-form {
  background-image: url(./images/career-form-back.png);
}

.career-form h2 {
  font-size: 40px;
  line-height: 52px;
  text-align: center;
  color: white;
  padding-top: 3rem;
}

.career-form p {
  text-align: center;
  color: white;
}

.career-form .col-md-6 {
  margin: auto;
}

.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  margin: 1rem 0;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  transition: color 0.2s ease-in-out;
}
.drop-container input {
  opacity: 0;
}

/* New Styling */

.services {
  position: relative;
}

.services-ul {
  position: absolute;
  top: 90%;
  background-color: #1e1e1e;
  width: 100vw;
  left: 0%;
}

.services li a:hover .services-ul {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b72121;
}

.cta {
  display: flex;
  margin: auto 2rem;
  gap: 32px;
}

.btn {
  display: inline-block;
  font-size: 16px;
  color: white;
  font-weight: 600;
  width: 100%;
  width: 85px;
}

.btn:hover {
  opacity: 1;
  color: white;
  background: transparent;
}

.login-btn {
  background-color: #ec3242;
  border-radius: 2px;
}

.login-btn:hover {
  background-color: #b62834;
}

.search {
  display: flex;
  margin: auto 1.5rem;
  margin-bottom: 10px;
}

.searchContainer {
  display: flex;
  flex-direction: row;
  height: min-content;
  border: 1px solid #383838;
  background-color: #2d2d2d;
  width: 300px;
  padding: 5px 8px 6px 8px;
  border-radius: 2px;
}

.searchContainer input {
  background: transparent;
  outline: none;
  border: none;
  font-size: 14px;
  line-height: 19px;
  margin-left: 23px;
  color: white;
}

.searchContainer input:-ms-input-placeholder {
  color: #a4a4a4;
}

.services-block-wrapper {
  display: none;
  position: absolute;
  top: 90%;
  background: #131313;
  width: 100vw;
  z-index: 99;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.services-li:hover .services-block-wrapper {
  display: flex;
}

.services-block {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.core-it-services {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.services-block label {
  font-size: 18px;
  color: #d0cfcf;
  font-weight: 500;
}

.grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2vw;
}

.left-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 22px;
  column-gap: 2vw;
  padding: 0;
  margin-top: 1em;
}

.right-grid {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 0;
  margin: 0;
  margin-top: 1em;
}

.service-link {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #4c4c4c;
  padding: 10px 12px;
  border-radius: 3px;
  width: 337px;
  height: 42px;
  color: white;
}

.service-link:hover {
  border: 1px solid #ec3242;
}

.service-link:hover .goto {
  background-color: #ec3242;
}

@media (max-width: 1500px) {
  .service-link {
    font-size: 14px;
    width: 330px;
  }
}

.service-link .goto {
  background: #fff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-link .goto img {
  width: 10px;
  height: 8px;
}

.services-block a {
  text-decoration: none;
}

.ml-ai-list {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-top: 1em;
}

.ml-ai-list li {
  list-style: none;
}

.ml-ai-list a {
  text-decoration: none;
  color: white;
}

.digital-marketing {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: #fff;
  width: 100%;
}

.digital-marketing span {
  display: flex;
  gap: 13px;
}

.about-block-wrapper {
  display: none;
  position: absolute;
  top: 100px;
  background: #131313;
  width: 100vw;
  height: max-content;
  z-index: 99;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.about-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: space-between;
  gap: 6rem;
}

.about-links {
  display: flex;
  flex-direction: column;
  min-width: 24vw;
  max-width: 24vw;
}

.about-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
  font-size: 18px;
  font-weight: 700;
  padding: 22px 4px;
}

.about-link:hover a {
  color: #ec3242;
}

.about-link svg {
  fill: #ec3242;
}

.about-link a {
  text-decoration: none;
}

.cardImg {
  min-width: 178px;
  min-height: 325px;
  max-height: 100%;
  max-width: 100%;
  background-color: greenyellow;
}

.about-one {
  /* display: flex; */
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-two {
  /* display: flex; */
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-one span {
  display: flex;
  flex-direction: column;
}

.about-two span {
  padding-top: 2em;
}

.about-one span h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.about-one span p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 80%;
}

.about-one button,
.about-two button,
.about-three button {
  width: 185px;
  height: 44px;
  border-radius: 3px;
  border: 3px solid #ec3242;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-top: 47px;
}

.about-two span p {
  font-size: 18px;
  color: white;
  width: 70%;
}

.about-three {
  /* display: flex; */
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-three span {
  display: flex;
  flex-direction: column;
}

.about-three span h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.about-three span p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 80%;
}

.about-four {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-four-grid {
  width: 550px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-four-grid .card .goto {
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-four-grid .card .goto svg {
  height: 8px;
  width: 10px;
}

.card {
  background: #383838;
  width: 260px;
  height: 42px;
  height: fit-content;
  border-radius: 3px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.card:hover {
  border: 1px solid #ec3242;
}

.card:hover .goto {
  background-color: #ec3242;
}

.card h1 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.card p {
  font-size: 10px;
  font-weight: 500;
  color: #ffffffb2;
  margin: 0;
  margin-top: 4px;
}

.card .goto {
  position: relative;
  height: 10px;
  width: 12px;
}

#card {
  padding: 0;
  padding: 6px 8px;
}

#card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.4em;
  padding: 0;
}

#card hr {
  border: 1px solid #eee;
  width: 100%;
  margin: 10px auto 4px 0;
}

#card span p {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

#card .goto {
  position: relative;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  align-items: center;
}

#card .goto svg {
  width: 15px;
  height: 15px;
}

#personalBrandingCard {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

#personalBrandingCard:hover {
  border: none;
  color: #fff;
  fill: none;
}

#personalBrandingCard hr {
  width: 100%;
  border: 1px solid #4c4c4c;
  margin: 10px 0;
}

#personalBrandingCard span {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.about-five {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-five-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.subsidiaries-card {
  display: flex;
  flex-direction: column;
  width: 250px;
  margin-bottom: 20px;
}
.subsidiaries-card .imgDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  max-width: 300px;
  width: 100%;
  height: 100px;
}
.subsidiaries-card .imgDiv img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border: 0.75px solid #fff;
  border-radius: 5px;
}

.subsidiaries-card-detail p {
  font-size: 14px;
  font-weight: 500;
  color: #8f8f8f;
  padding: 0;
  margin: 0;
  margin-top: 1em;
}

.subsidiaries-card-detail button {
  background: transparent;
  border: 0;
  outline: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 13px;
  color: #ec3242;
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0;
}

.about-six {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.about-six span {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-six span h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.about-six span p {
  font-size: 14px;
  color: #8f8f8f;
  width: 75%;
  margin-top: 10px;
}

.about-six-image-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 30px;
  padding: 0;
  margin: 0;
  margin-left: -1em;
}

.about-six-image-grid h4 {
  font-size: 16px;
  font-weight: 900;
  color: #ec3242;
}

.about-six span img {
  width: 100px;
  height: 40px;
  object-fit: contain;
}

.about-six span button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.learn-block-wrapper {
  display: none;
  position: absolute;
  top: 100px;
  background: #131313;
  width: 100vw;
  height: max-content;
  z-index: 1;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.learn-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: space-between;
  gap: 6rem;
}

.learn-links {
  display: flex;
  flex-direction: column;
  min-width: 24vw;
  max-width: 24vw;
}

.learn-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
  font-size: 18px;
  font-weight: 700;
  padding: 22px 4px;
}

.learn-link:hover a {
  color: #ec3242;
}

.learn-link svg {
  fill: #ec3242;
}

.learn-link a {
  text-decoration: none;
}

.learn-one {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.learn-one h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.learn-one p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.learn-one button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.learn-two {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.learn-two h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.learn-two p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.learn-two button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.learn-three {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.learn-three h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.learn-three p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.learn-three button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.contact-block-wrapper {
  display: none;
  position: absolute;
  top: 90%;
  background: #131313;
  width: 100vw;
  height: 60vh;
  z-index: 1;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.contact-block {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-block .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 750px;
}

.contact-block .top h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.contact-block .top a {
  font-size: 12px;
  font-weight: 600;
  color: #ec3242;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90px;
  line-height: 14px;
}
.contact-block .top a svg {
  position: relative;
  height: 15px;
  width: 15px;
}

.contact-block .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 34px;
  margin-top: 20px;
}

.contact-block .bottom a {
  border: 3px solid #ec3242;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.joinus-block-wrapper {
  display: none;
  position: absolute;
  top: 100px;
  background: #131313;
  width: 100vw;
  height: max-content;
  z-index: 1;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.joinus-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: space-between;
  gap: 6rem;
}

.joinus-links {
  display: flex;
  flex-direction: column;
  min-width: 24vw;
  max-width: 24vw;
}

.joinus-li {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
}

.joinus-li:hover {
  border-bottom: 2px solid #ec3242;
}

.joinus-links li .goto {
  display: flex;
  position: relative;
}

.joinus-one {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.joinus-one h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.joinus-one p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.joinus-one button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.joinus-two {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.joinus-two h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.joinus-two p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.joinus-two button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.joinus-three {
  display: none;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding-top: 1.5em;
  padding-right: 2em;
}

.joinus-three h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.joinus-three p {
  font-size: 14px;
  color: #8f8f8f;
  margin-top: 14px;
  width: 70%;
}

.joinus-three button {
  background: transparent;
  border: 3px solid #ec3242;
  border-radius: 3px;
  font-size: 20px;
  color: white;
  width: 185px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 33px;
}

.login-block-wrapper {
  display: none;
  position: absolute;
  top: 50%;
  right: 0%;
  background: transparent;
  width: 100vw;
  height: 60vh;
  z-index: 1;
  flex-direction: column;
  padding: 2em;
  border-bottom: 2px solid #1e1e1e;
}

.login-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-left: auto;
}

.login-block ul {
  display: flex;
  flex-direction: column;
  background: #2e2e2e;
  border: 1px solid #383838;
  padding: 0;
  border-radius: 3px;
}

.login-block ul li {
  padding: 10px 20px;
  border-bottom: 0.5px solid #626262;
}

.login-block ul li a {
  text-decoration: none;
}

.active {
  display: flex;
}

/* Join Us Page */

.joinus-wrapper {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
}

.joinus {
  height: 100%;
  padding: 0 2vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  color: #fff;
  position: relative;
}

.joinus .heading-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: -20px;
}

.joinus .heading-bg svg {
  height: 214px;
  width: 211px;
}

.joinus .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  width: 1065px;
  margin-top: 4rem;
  position: relative;
}

.joinus .heading h1 {
  font-size: 53px;
  line-height: 63px;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.underline {
  position: absolute;
  top: 60px;
}

.joinus .heading p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: 940px;
  text-align: center;
  margin-top: 14px;
}

.joinus .heading h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  margin-top: 53px;
  position: relative;
}

.underlinetwo {
  position: absolute;
  width: 140px;
  top: 25px;
}

.joinus .standout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 0 2vw;
  max-width: 1400px;
}

.standout-image {
  background: url("./images/joinus_investors.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 1180px;
  height: 375px;
  margin-top: 2rem;
  margin-bottom: 5em;
}

.statement-div-wrapper {
  width: 100%;
  height: 100%;
  background-color: #00000080;
  position: relative;
  padding: 1em;
}

.statement-div {
  border: 1px solid #fff;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.corner-heading {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #5a4b4b54;
  backdrop-filter: blur(5px);
  padding: 4px;
}
.corner-heading h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}
.corner-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 29px;
  margin: 0;
}

.statement {
  width: fit-content;
  height: fit-content;
  position: relative;
  padding: 1em 0;
}

.statement .top {
  position: absolute;
  top: -20%;
  left: 5%;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.statement .bottom {
  position: absolute;
  bottom: 0%;
  right: 7%;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  transform: rotate(-180deg);
}

.statement h1 {
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  width: 511px;
  text-align: center;
}

.standout .cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: -4rem;
  padding: 1rem 0;
  height: 450px;
}

.standout .card {
  width: 346px;
  height: 419px;
  border-radius: 10px;
  padding: 21px 19px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: relative;
  background: #ffffff36;
  backdrop-filter: blur(15px);
  transition: all ease-in-out 0.1s;
}

.standout .card:hover {
  border: 2px solid #fff;
  width: 357px;
  height: 433px;
  margin-top: -5px;
}

.standout .card h1 {
  font-size: 24px;
  font-weight: 700px;
  border-bottom: 2px solid #989898;
  padding-bottom: 0;
  line-height: 29px;
  height: 100%;
  width: 100%;
  min-height: 75px;
  max-height: 75px;
}

.standout .card span {
  margin-top: 18px;
  position: relative;
}

.standout .card .sphere {
  background: #1e1e1e;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 5px;
}

.standout .card span h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 10px 0;
}

.standout .card p {
  color: #cbcbcb;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  width: 310px;
}

.investment-section {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.investment-section .heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0;
  margin: 0;
}

.investment-section .heading h1 {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  flex-direction: row;
  margin: 0;
}

.investment-section .heading h1 span {
  margin: 0 8px;
  color: #ec3241;
}

.investment-section .heading p {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.investment-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
  padding: 30px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  width: 980px;
  height: 356px;
}

.investment-bg {
  position: absolute;
  top: -14%;
  left: -8%;
}

.investment-card h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.investment-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  width: 777px;
  margin-top: 8px;
}

.three-points {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 200px;
  padding: 1em 0;
}

.point {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 160px;
}

.point .sphere {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background: #1e1e1e;
  transition: all ease-in-out 0.1s;
}

.point .sphere:hover {
  background-color: #fff;
  border: 1px solid #1e1e1e;
  height: 72px;
  width: 72px;
  box-shadow: 1px 2px 4px #000000c9;
}

.point h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 20px;
  width: 200px;
  height: 53px;
  max-width: 0 auto;
  background: #1e1e1e;
  color: #fff;
  border-radius: 5px;
  padding: 8px 9px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investment-form {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  margin: 4rem 0;
}

.investment-form .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100%;
}

.investment-form .heading h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  font-style: normal;
}

.investment-form .heading p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 30px;
}

.investment-form .heading h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.investment-form .heading h3 span {
  color: #ec3242;
}

.investment-form form {
  padding: 50px 30px;
  border: 1px solid white;
  border-radius: 0 15px 0 15px;
  width: 666px;
  height: 454px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 40px;
}

.investment-form form div {
  display: flex;
  gap: 20px;
}

.investment-form form label {
  font-size: 22px;
  font-weight: 500;
  width: 100%;
}

.investment-form form input {
  width: 100%;
  border: none;
  background-color: transparent;
  outline: none;
  border-bottom: 0.5px solid #fff;
}

.investment-form form button {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  border-radius: 0 10px 0 10px;
  color: #fff;
  background-color: #ec3242;
  margin-top: auto;
}

@media (max-width: 768px) {
  * {
    padding: 0;
    margin: 0;
  }

  .joinus {
    width: 100%;
    height: 100%;
    padding: 0;
    padding-top: 12vh;
  }

  .joinus .heading {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1em;
    margin-bottom: 4rem;
    position: relative;
  }

  .joinus .heading-bg {
    height: 117px;
    width: 117px;
    top: -8%;
    left: -10px;
  }

  .joinus .heading-bg svg {
    height: 117px;
    width: 117px;
  }

  .joinus .heading h1 {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
  }

  .underline {
    position: absolute;
    top: 26px;
    width: 100px;
  }

  .joinus .heading p {
    font-size: 18px;
    width: 100%;
    color: #a4a4a4;
    text-align: center;
  }
  .joinus .heading h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 29px;
    position: relative;
  }

  .underlinetwo {
    position: absolute;
    width: 100px;
    top: 15px;
  }

  .joinus .standout {
    width: 100%;
    padding: 0;
  }

  .standout-image {
    height: 160px;
    width: 100%;
    background-position: center;
    background-size: fill;
  }

  .statement-div-wrapper {
    padding: 20px;
  }

  .corner-heading {
    display: none;
  }

  .statement {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .statement-div {
    padding: 10px;
  }

  .statement .top {
    font-size: 24px;
    font-weight: 600;
    top: 0;
    left: 0;
  }

  .statement .bottom {
    font-size: 24px;
    font-weight: 600;
    bottom: 10px;
    right: 10px;
  }

  .statement h1 {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    line-height: normal;
  }

  #card1,
  #card2 {
    display: none;
  }

  .standout .cards {
    margin-top: -3rem;
  }

  .standout .card h1 {
    min-height: fit-content;
    height: 45px;
    padding-bottom: 5px;
    border-bottom: 0.25px solid #fff;
  }

  .standout .card .sphere {
    top: 8px;
  }

  .standout .card span h2 {
    font-size: 22px;
    font-weight: 600;
  }

  .standout .card p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 14px;
    width: 100%;
  }

  .investment-section {
    height: 100%;
    width: 100%;
    padding: 1em;
  }

  .investment-section .heading h1 {
    font-size: 22px;
    display: inline;
    line-height: 24px;
    padding: 0;
    text-align: center;
  }

  .investment-section .heading p {
    font-size: 16px;
    font-weight: 500;
  }

  .investment-card {
    width: calc(100% - 20px);
    padding: 11px 20px;
    height: 100%;
    align-items: start;
  }

  .investment-bg {
    height: 110px;
    width: 110px;
    left: -8%;
    top: -8%;
  }

  .investment-bg svg {
    height: 110px;
    width: 110px;
  }

  .investment-card h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
  }

  .investment-card p {
    font-size: 18px;
    font-weight: 500;
    color: #717171;
    text-align: left;
    width: 100%;
    margin-top: 0;
    line-height: 22px;
  }

  .three-points {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 30px;
  }
  .point {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .point .sphere:hover {
    width: 60px;
    height: 60px;
  }

  .point h4 {
    margin: 0;
    width: 224px;
  }

  .investment-form {
    width: 100%;
  }

  .investment-form form {
    width: 100%;
    height: 100%;
  }

  .investment-form form div {
    flex-direction: column;
  }

  .investment-form .heading {
    width: 100%;
    padding: 0;
    height: 100%;
  }

  .investment-form .heading h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .investment-form .heading p {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 22px;
  }

  .investment-form .heading h3 {
    font-size: 18px;
    font-weight: 600;
  }
}

/* Services Page */

.services-page {
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
}

.services-head {
  min-height: 60vh;
  height: 100%;
  padding: 70px 4em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.services-head .left {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.services-head .left p {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
}

.services-head .left h1 {
  font-size: 40px;
  font-weight: 600;
  width: 610px;
}

.services-head .stats {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  margin-top: 40px;
  padding-bottom: 30px;
}

.services-head .stats h1 {
  font-size: 18px;
  font-weight: 600;
  color: #ec3242;
}

.services-head .stats span {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.services-head .stats span p {
  border: none;
  font-size: 16px;
  height: 26px;
  font-weight: 500;
  width: fit-content;
  border-right: 1px solid #8e8e8e;
  padding-right: 10px;
}

.services-head .stats span p:nth-child(3) {
  border: none;
}

.services-head .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110%;
}

.services-head .right form {
  width: 500px;
  height: 460px;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 30px;
  color: #000;
}

.services-head .right form h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1e1e1e;
}

.services-head .right form div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.services-head .right form label {
  font-size: 14px;
  font-weight: 500;
}

.services-head .right form input {
  height: 38px;
  border: 1px solid #b3b3b3;
  padding: 20px;
  border-radius: 6px;
  outline: none;
  padding: 20px;
}

.services-head .right form input::placeholder {
  color: #b3b3b3;
}

.services-head .right form button {
  width: 103px;
  height: 40px;
  border-radius: 5px;
  background-color: #ec3242;
  color: #fff;
  border: none;
  margin: 1.5em 340px;
}

.essential-roles {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 2em 4em;
}

.essential-roles .heading {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: start;
  align-items: center;
}

.essential-roles .heading h1 {
  font-size: 30px !important;
  width: 100%;
  font-weight: 700;
}

.essential-roles .heading hr {
  border: 1px solid #fff;
  width: 140%;
  display: flex;
  height: 1px;
}

.essential-roles table {
  border-radius: 10px;
  margin-top: 2em;
  width: 100%;
  height: 100%;
}

.essential-roles table tr {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}

.essential-roles table th {
  padding: 25px 100px;
  height: 72px;
  background-color: #ec3242;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #fff;
  text-align: center;
}

.essential-roles table td {
  background-color: #2d2d2d;
  border: 1px solid #ffffff;
  text-align: left;
  padding: 25px 100px;
  font-size: 18px;
  font-weight: 500;
}

.essential-roles table td:nth-child(2) {
  text-align: center;
}

.service-statement {
  position: relative;
  border: 1px solid #ec3242;
  border-radius: 2px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  margin: 4em;
}

.service-statement span {
  position: absolute;
  top: -15px;
  right: -5px;
  width: 240px;
  text-align: right;
  background-color: #1e1e1e;
  padding: 4px;
  font-size: 24px;
  font-weight: 800;
}

.service-statement p {
  font-size: 16px;
  font-weight: 400;
  color: #cbcbcb;
  text-align: center;
  width: 70%;
}

.service-features {
  position: relative;
  height: 100%;
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 140px;
}

.service-features .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #1e1e1e;
  padding: 0 2em;
}

.service-features .heading h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
}

.service-features .heading p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.service-features hr {
  position: absolute;
  top: 15px;
  width: calc(100% - 8em);
  height: 2px;
}

.features-grid {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.features-grid .features-grid-item {
  width: 350px;
  height: 58px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #000;
}

.features-grid-item {
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

.features-grid-item-heading {
  transition: color 0.3s ease; /* Smooth color transition */
}

.features-grid-item-custom-para {
  opacity: 0;
  transform: translateY(10px); /* Start slightly shifted down */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for visibility */
}

.features-grid-item-custom .features-grid-item-custom-para {
  opacity: 1;
  transform: translateY(0); /* Moves back to original position */
}

.features-grid-item-custom {
  border: 1px solid #ec3242;
  height: 160px !important;
  padding: 10px 0;
}

.features-grid-item-custom-para {
  font-size: 14px;
  margin-top: 10px;
}

.features-grid .middle {
  transform: translateX(110%);
}

.service-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  margin-top: 4em;
}

.service-price .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  color: #1e1e1e;
  width: 100%;
  padding: 50px;
}

.service-price .heading h1 {
  font-size: 30px;
  font-weight: 700;
}

.service-price .heading p {
  font-size: 18px;
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;

  gap: 0;
}

.points {
  width: 100%;
  /* width: fit-content; */
  height: 360px;
  border: 1px solid #d4d4d4;
  transition: all ease-in-out 0.3s;
}

.points:hover {
  transform: scaleX(1.05);
}

.points .top {
  display: flex;
  /* height: 266px;
  width: 266px; */
  width: 100%;
  height: 266px;
  background-image: url("./images/cardBrand.jpeg");
  background-size: contain;
}

.points span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #000;
  padding: 16px 8px;
}

.points span h1 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.points span p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  line-height: normal;
}

.service-price button {
  width: 730px;
  height: 70px;
  background-color: #ec3242;
  border: 3px solid #ec3242;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0;
  border-radius: 10px;
  color: #fff;
}

.clients {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
}

.clients .heading {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
}

.clients .heading h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  width: fit-content;
  background-color: #1e1e1e;
  z-index: 4;
  padding: 0 1em;
}

.clients .heading hr {
  width: 100%;
  height: 2px;
  position: absolute;
}

.clients marquee {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding-top: 10px;
}

.clientCard {
  width: 186px;
  height: 104px;
  background-image: url("./images/clientCardBg.png");
  background-size: contain;
  border-radius: 10px;
}

.service-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 4em;
}

.videoContainer {
  min-height: 510px;
  min-width: 100%;
  height: 510px;
  width: 100%;
  background-color: #d9d9d9;
  border-radius: 10px;
}

.whatsapp-card {
  width: calc(100% - 8em);
  background-color: #ec3242;
  position: relative;
  margin: 0 auto;
  height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.whatsapp-card .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 272px;
  height: 150px;
  z-index: 9;
}

.whatsapp-card .top img {
  height: 100%;
  width: 100%;
}
.whatsapp-card .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 272px;
  height: 150px;
  z-index: 9;
}

.whatsapp-card .bottom img {
  height: 100%;
  width: 100%;
}

.whatsapp-card h1 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

.whatsapp-card h3 {
  width: 455px;
  height: 80px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ec3242;
  margin-top: 1em;
  font-size: 30px;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 8em);
  margin: 0 auto;
  height: 100%;
  margin-top: 8em;
  padding-bottom: 120px;
}

.faq .heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.faq .heading h1 {
  font-size: 30px;
  font-weight: 600;
  color: #ec3242;
}

.faq .heading p {
  font-size: 18px;
  font-weight: 500;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.faq-card {
  height: 100%;
  width: 100%;
  padding: 15px 30px;
  background-color: #383838;
  border: 1px solid #6d6d6d;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.faq-card h1 {
  font-size: 18px;
  font-weight: 600;
}

.faq-card-p {
  display: none;
  margin-top: 4px;
  width: 80%;
}

.faq-card button {
  position: absolute;
  background-color: #ec3242;
  height: 30px;
  width: 30px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 28px;
  top: 28px;
  right: 20px;
  transform: translateY(-50%);
}

.services-head .right .stats {
  display: none;
}

/*  */

@media (max-width: 1000px) {
  .services-head {
    height: 100%;
    padding: 0;
    width: 100%;
    padding: 1em;
    padding-top: 8em;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .services-head .left {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0;
  }

  .services-head .left p {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
  }

  .services-head .left h1 {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
  }

  .services-head .left .stats {
    display: flex;
    flex-direction: column;
    margin-top: 75px;
  }

  .services-head .stats {
    border-bottom: 1px solid #4c4c4c;
  }

  .services-head .stats h1 {
    font-size: 18px;
    font-weight: 600;
    color: #ec3242;
  }

  .services-head .stats span {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .services-head .stats span p {
    border: none;
    font-size: 16px;
    height: 26px;
    font-weight: 500;
    width: fit-content;
    border-right: 1px solid #8e8e8e;
    padding-right: 10px;
  }

  .services-head .stats span p:nth-child(3) {
    border: none;
  }

  .services-head .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1em;
  }

  .services-head .left .stats {
    display: none;
  }

  .services-head .right .stats {
    display: flex;
  }

  .services-head .right .stats ul {
    width: 100%;
    margin: 0;
  }

  .services-head .right form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 460px;
    border-radius: 10px;
    background-color: #fff;
    padding: 16px 20px;
    color: #000;
  }

  .services-head .right form h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
  }

  .services-head .right form div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
  }

  .services-head .right form label {
    font-size: 14px;
    font-weight: 500;
  }

  .services-head .right form input {
    height: 38px;
    border: 1px solid #b3b3b3;
    border-radius: 6px;
    outline: none;
    padding: 20px;
  }

  .services-head .right form input::placeholder {
    color: #b3b3b3;
  }

  .services-head .right form button {
    width: 103px;
    height: 40px;
    border-radius: 5px;
    background-color: #ec3242;
    color: #fff;
    border: none;
    margin: 0;
    margin-top: 1em;
    margin-left: auto;
  }

  .essential-roles {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 1em;
  }

  .essential-roles .heading {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: start;
    align-items: center;
  }

  .essential-roles .heading h1 {
    font-size: 20px !important;
    width: 100%;
    font-weight: 700;
  }

  .essential-roles .heading hr {
    border: 1px solid #fff;
    width: 140%;
    display: none;
    height: 1px;
  }

  .essential-roles table {
    border-radius: 10px;
    margin-top: 2em;
    width: 100%;
    height: 100%;
  }

  .essential-roles table tr {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 0 1em;
  }

  .essential-roles table th {
    padding: 0 1em;
    width: 100px;
    height: 54px;
    background-color: #ec3242;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
  }

  .essential-roles table td {
    background-color: #2d2d2d;
    border: 1px solid #ffffff;
    text-align: left;
    padding: 1em;
    font-size: 14px;
    font-weight: 500;
    height: 54px;
    text-align: left;
  }

  .service-statement {
    position: relative;
    width: calc(100% - 2em);
    border: 1px solid #ec3242;
    border-radius: 2px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 2em;
    padding: 4em 0 1em 0;
  }

  .service-statement span {
    position: absolute;
    top: -20px;
    right: -2%;
    width: 60%;
    background-color: #1e1e1e;
    padding: 4px;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
  }

  .service-statement p {
    font-size: 16px;
    font-weight: 400;
    color: #cbcbcb;
    text-align: center;
    width: 90%;
  }

  .service-features {
    position: relative;
    height: 100%;
    margin-top: 4em;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service-features .heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #1e1e1e;
    padding: 0 2em;
  }

  .service-features .heading h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
    text-align: center !important;
  }

  .service-features .heading p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .service-features hr {
    position: absolute;
    top: 15px;
    width: calc(100% - 8em);
    height: 2px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-bottom: 4.2em;
    margin-top: 20px;
  }

  .features-grid .features-grid-item {
    width: calc(100vw / 2.2);
    height: 47px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
  }

  .features-grid .middle {
    transform: translateX(0);
    width: 262px;
    column-span: all;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .service-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin-top: 4em;
  }

  .service-price .heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    color: #1e1e1e;
    width: 100%;
  }

  .service-price .heading h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .service-price .heading p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  .price-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0;
    overflow: scroll;
  }

  .points {
    width: 266px;
    height: 360px;
    border: 1px solid #d4d4d4;
  }

  .points .top {
    display: flex;
    height: 266px;
    width: 266px;
    background-image: url("./images/cardBrand.jpeg");
    background-size: contain;
  }

  .points span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #000;
    padding: 16px 8px;
  }

  .points span h1 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }

  .points span p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    line-height: normal;
  }

  .service-price button {
    width: 330px;
    height: 53px;
    background-color: #ec3242;
    border: 3px solid #ec3242;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin: 40px 0;
    border-radius: 10px;
    color: #fff;
  }

  .clients {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
  }

  .clients .heading {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
  }

  .clients .heading h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
    width: fit-content;
    background-color: #1e1e1e;
    z-index: 4;
    padding: 0 1em;
  }

  .clients .heading hr {
    width: 100%;
    height: 2px;
    position: absolute;
    display: none;
  }

  .clients-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow: scroll;
    width: 100%;
    margin-top: 40px;
  }

  .clientCard {
    min-width: 120px;
    min-height: 67px;
    width: 120px;
    height: 67px;
    background-image: url("./images/clientCardBg.png");
    background-size: contain;
    border-radius: 10px;
    margin: 0;
  }

  .service-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin: 3em 0;
  }

  .videoContainer {
    min-height: 226px;
    min-width: 100%;
    height: 226px;
    width: 100%;
    background-color: #d9d9d9;
    border-radius: 10px;
  }

  .whatsapp-card {
    width: 90%;
    background-color: #ec3242;
    position: relative;
    margin: 0 auto;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .whatsapp-card .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 272px;
    height: 150px;
    z-index: 9;
  }

  .whatsapp-card .top img {
    height: 100%;
    width: 100%;
  }
  .whatsapp-card .bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 272px;
    height: 150px;
    z-index: 9;
  }

  .whatsapp-card .bottom img {
    height: 100%;
    width: 100%;
  }

  .whatsapp-card h1 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center !important;
  }

  .whatsapp-card h3 {
    width: 90%;
    height: 53px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ec3242;
    margin-top: 1em;
    font-size: 18px;
    font-weight: 700;
  }

  .faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    margin-top: 8em;
  }

  .faq .heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .faq .heading h1 {
    font-size: 20px;
    font-weight: 600;
    color: #ec3242;
    text-align: center;
  }

  .faq .heading p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    height: 100%;
  }

  .faq-card {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
    background-color: #383838;
    border: 1px solid #6d6d6d;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  .faq-card h1 {
    font-size: 16px;
    font-weight: 600;
    width: 80%;
  }

  .faq-card-p {
    display: none;
  }

  .faq-card button {
    position: absolute;
    background-color: #ec3242;
    height: 30px;
    width: 30px;
    border: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 28px;
    top: 23px;
    right: 10px;
  }
}

.cardTextOpen {
  display: flex;
}

.cardOpen {
  border: 1px solid #ec3242;
  background-color: #fff;
  color: #000;
}

/* About > Company Overview */

.about-companyOverview {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
}

.about-companyOverview .redesign {
  min-height: 500px;
  background: linear-gradient(
    180deg,
    hsla(355, 83%, 56%, 1) 12%,
    hsla(0, 0%, 18%, 1) 97%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  /* overflow: hidden; */
}

.about-companyOverview .redesign .heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-companyOverview .redesign h1 {
  font-size: 3rem;
  font-weight: bold;
}

.about-companyOverview .redesign .text-right {
  margin-left: 10px;
}

.about-companyOverview .redesign .text-right,
.about-companyOverview .redesign .text-heading-down {
  color: white;
}

.about-companyOverview .whoWeAre {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 120px auto;
  gap: 150px;
}

.whoWeAre .thought {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.whoWeAre .thought img {
  height: 50px;
  width: 50px;
}

.whoWeAre .thought p {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  width: 90%;
  padding: 0 1em;
}

.whoWeAre #left {
  height: 50px;
  width: 50px;
  margin-bottom: auto;
}

.whoWeAre #right {
  height: 50px;
  width: 50px;
  margin-top: auto;
}

.whoWeAre .summary {
  display: flex;
  width: calc(100% - 8em);
  margin: 0 auto;
  border: 2px solid #ec3242;
  height: 200px;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
}

.whoWeAre .summary span {
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 30px;
  font-weight: 500;
  background-color: #1e1e1e;
  padding: 10px;
}

.whoWeAre .summary p {
  width: 65%;
  text-align: center;
  color: #cbcbcb;
  font-size: 18px;
  font-weight: 400;
}

.about-companyOverview .coreFocus {
  background-color: #fff;
  padding: 70px 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.coreFocus .left {
  width: 100%;
}

.coreFocus .left p {
  font-size: 24px;
  font-weight: 600;
  color: #757575;
  margin: 0;
}

.coreFocus .left h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ec3242;
  margin: 30px 0;
}

.coreFocus .right {
  width: 700px;
  display: flex;
  flex-direction: column;
}

.coreFocus .right p {
  font-size: 18px;
  font-weight: 600;
}

.coreFocus .right span {
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.coreFocus .right img {
  height: 30px;
  width: 30px;
}

.cofounders {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4em;
  color: #fff;
}

.cofounders .heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 120px;
}

.cofounders .heading h1 {
  font-size: 30px;
  font-weight: 700;
  width: 500px;
}

.cofounders .heading hr {
  border: 1px solid #fff !important;
  height: 2px;
  width: 100%;
}

.cofounder {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 50px;
}

#mihir {
  flex-direction: row;
}

#mihir .photo {
  min-height: 263px;
  min-width: 263px;
  background: url("./images/cofounder.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 9px;
}

.cofounder .details .name {
  display: flex;
  flex-direction: row;
}

.cofounder .details .name h1 {
  font-size: 24px;
  font-weight: 700;
}

.cofounder .details .name img {
  height: 30px;
  width: 30px;
  margin-left: 15px;
}

.cofounder .details h3 {
  font-size: 16px;
  font-weight: 700;
}

.cofounder .details p {
  font-size: 18px;
  font-weight: 500;
  color: #dddddd;
  margin-top: 15px;
  margin-bottom: 5px;
}

#abhishek {
  flex-direction: row-reverse;
  margin-top: 60px;
}

#abhishek .photo {
  min-height: 263px;
  min-width: 263px;
  background: url("./images/cofounder.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 9px;
}

.sponsored {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4em;
  color: #fff;
}

.sponsored p {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.sponsored .heading {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.sponsored .heading h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  background-color: #1e1e1e;
  z-index: 2;
  padding: 10px;
}

.sponsored .heading hr {
  position: absolute;
  width: 100%;
  z-index: 0;
  border: 1px solid #fff;
}

.sponsored-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 3em;
}

.sp1 {
  height: 265px;
  width: 286px;
  background: url("./images/sponsored1.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.sp2 {
  height: 265px;
  width: 356px;
  background: url("./images/sponsored2.png");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.sp3 {
  height: 265px;
  width: 286px;
  background: url("./images/sponsored3.png");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.sp4 {
  height: 265px;
  width: 356px;
  background: url("./images/sponsored4.png");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

@media (max-width: 1000px) {
  .about-companyOverview {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
  }

  .about-companyOverview .redesign {
    min-height: 400px;
    width: 100%;
    background: linear-gradient(
      180deg,
      hsla(355, 83%, 56%, 1) 12%,
      hsla(0, 0%, 18%, 1) 97%
    );
  }

  .about-companyOverview .whoWeAre {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
    padding: 1em;
    padding-bottom: 4em;
  }

  .whoWeAre .thought {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 1em 0;
  }

  .whoWeAre .thought img {
    height: 20px;
    width: 20px;
  }

  .whoWeAre .thought p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    width: 100%;
    padding: 0 1em;
  }

  .whoWeAre #left {
    height: 20px;
    width: 20px;
    margin-bottom: auto;
  }

  .whoWeAre #right {
    height: 20px;
    width: 20px;
    margin-top: auto;
  }

  .whoWeAre .summary {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 2px solid #ec3242;
    height: 230px;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 84px 24px;
  }

  .whoWeAre .summary span {
    position: absolute;
    top: -25px;
    right: -5px;
    font-size: 20px;
    font-weight: 500;
    background-color: #1e1e1e;
    padding: 10px;
  }

  .whoWeAre .summary p {
    width: 100%;
    text-align: center;
    color: #cbcbcb;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
  }

  .about-companyOverview .coreFocus {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .coreFocus .left {
    width: 100%;
  }

  .coreFocus .left p {
    font-size: 24px;
    font-weight: 600;
    color: #757575;
    margin: 0;
    width: 100%;
    display: none;
  }

  .coreFocus .left h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
    margin: 0;
  }

  .coreFocus .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }

  .coreFocus .right p {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    line-height: 20px;
  }

  .coreFocus .right span {
    display: flex;
    flex-direction: row;
    justify-content: end;
  }

  .coreFocus .right img {
    height: 30px;
    width: 30px;
  }

  .cofounders {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1em;
    color: #fff;
  }

  .cofounders .heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 50px;
  }

  .cofounders .heading h1 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
  }

  .cofounders .heading hr {
    border: 1px solid #fff !important;
    height: 2px;
    width: 100%;
    display: none;
  }

  .cofounder {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 10px;
  }

  #mihir {
    flex-direction: column;
  }

  #mihir .photo {
    min-height: 390px;
    min-width: 263px;
    background: url("./images/cofounder.jpeg");
    background-position: center;
    background-size: cover;
    border-radius: 9px;
  }

  .cofounder .details .name {
    display: flex;
    flex-direction: row;
  }

  .cofounder .details .name h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .cofounder .details .name img {
    height: 19px;
    width: 19px;
    margin-left: 15px;
  }

  .cofounder .details h3 {
    font-size: 14px;
    font-weight: 700;
  }

  .cofounder .details p {
    font-size: 16px;
    font-weight: 500;
    color: #dddddd;
    margin-top: 15px;
  }

  #abhishek {
    flex-direction: column;
    margin-top: 20px;
  }

  #abhishek .photo {
    min-height: 390px;
    min-width: 263px;
    background: url("./images/cofounder.jpeg");
    background-position: center;
    background-size: cover;
    border-radius: 9px;
  }

  .sponsored {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em;
    color: #fff;
  }

  .sponsored p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }

  .sponsored .heading {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .sponsored .heading h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
    background-color: #1e1e1e;
    z-index: 2;
    padding: 10px;
  }

  .sponsored .heading hr {
    position: absolute;
    width: 100%;
    z-index: 0;
    border: 1px solid #fff;
    display: none;
  }

  .sponsored-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 3em;
    gap: 20px;
    overflow: scroll;
  }

  .sponsored-grid div {
    min-height: 265px;
    min-width: 265px;
  }

  .sp1 {
    height: 265px;
    width: 286px;
    background: url("./images/sponsored1.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }

  .sp2 {
    height: 265px;
    width: 356px;
    background: url("./images/sponsored2.png");
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }

  .sp3 {
    height: 265px;
    width: 286px;
    background: url("./images/sponsored3.png");
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }

  .sp4 {
    height: 265px;
    width: 356px;
    background: url("./images/sponsored4.png");
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }
}

.about-technologyExpertise {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: #1e1e1e;
  padding: 4em;
}

.about-technologyExpertise .heading {
  display: flex;
  flex-direction: column;
  color: #fff;
  padding-bottom: 1em;
}

.about-technologyExpertise .heading h1 {
  font-size: 40px;
  font-weight: 700;
}

.about-technologyExpertise .heading p {
  font-size: 18px;
  font-weight: 500;
}

.about-technologyExpertise table {
  width: 100%;
  border-collapse: collapse;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.about-technologyExpertise th,
td {
  text-align: left;
  padding: 24px;
  color: #fff;
}

.about-technologyExpertise th {
  background-color: #ec3242;
}

.about-technologyExpertise td {
  background-color: #2d2d2d;
  border: 1px solid #4c4c4c;
  position: relative;
}

.about-technologyExpertise th:nth-child(1) {
  border-top-left-radius: 10px;
}

.about-technologyExpertise th:nth-child(3) {
  border-top-right-radius: 10px;
}

.about-technologyExpertise td:nth-child(1) {
  width: 40%;
}

.about-technologyExpertise td:nth-child(2) {
  width: 30%;
}

.about-technologyExpertise td:nth-child(3) {
  width: 30%;
}

.about-technologyExpertise td:nth-child(1)::before {
  content: ".";
  color: #d9d9d9;
  display: inline-flex;
  flex-direction: row;
  position: relative;
  min-height: 26px;
  min-width: 26px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin-right: 1em;
}

@media (max-width: 800px) {
  .about-technologyExpertise {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: #1e1e1e;
    padding: 1em;
    padding-bottom: 2em;
  }

  .about-technologyExpertise .heading {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding-bottom: 1em;
    padding-top: 5em;
  }

  .about-technologyExpertise .heading h1 {
    font-size: 24px;
    font-weight: 700;
  }

  .about-technologyExpertise .heading p {
    font-size: 14px;
    font-weight: 400;
  }

  .about-technologyExpertise table {
    width: 100%;
    border-collapse: collapse;
  }
  .about-technologyExpertise th,
  td {
    text-align: left;
    padding: 10px;
    color: #fff;
  }

  .about-technologyExpertise th {
    background-color: #ec3242;
  }

  .about-technologyExpertise td {
    background-color: #2d2d2d;
    border: 1px solid #4c4c4c;
  }

  .about-technologyExpertise td:nth-child(1) {
    width: 35%;
  }

  .about-technologyExpertise td:nth-child(2) {
    width: 30%;
  }

  .about-technologyExpertise td:nth-child(3) {
    width: 35%;
    padding-right: 20px;
  }

  .about-technologyExpertise td:nth-child(1)::before {
    display: none;
  }
}

/* Joinus > Wholesale Operations */

.joinus-wholesaleOperations {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
}

.joinus-wholesaleOperations .bannerCover {
  width: 100%;
  height: 500px;
  background: url("./images/joinus-wholesaleOperations.jpeg");
  background-size: cover;
  background-position: center;
}

.joinus-wholesaleOperations .banner {
  background-color: #00000033;
  padding: 4em;
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.joinus-wholesaleOperations .banner h1 {
  font-size: 40px;
  font-weight: 600;
}

.joinus-wholesaleOperations .banner h1 i {
  font-style: normal;
  font-weight: 48px;
  font-weight: 600;
  color: #ec3242;
}

.joinus-wholesaleOperations .banner p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  width: 90%;
  margin-top: 30px;
}

.joinus-wholesaleOperations .points {
  border: none;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  margin-top: 110px;
  position: relative;
  padding-bottom: 50px;
}

.joinus-wholesaleOperations .notch {
  color: #fff;
  width: 360px;
  background-color: #1e1e1e;
  position: absolute;
  top: -40px;
}

.joinus-wholesaleOperations .points span h1 {
  font-size: 30px;
  font-weight: 700;
}

.joinus-wholesaleOperations .points-grid {
  display: grid;
  width: 100%;
  height: 100%;
  margin-top: 6em;
  margin-left: 2em;
  grid-template-columns: repeat(3, 1fr);
}

.joinus-wholesaleOperations .point {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 350px;
}

.joinus-wholesaleOperations .point span {
  min-height: 48px;
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #dddddd;
}

.joinus-wholesaleOperations .point .details {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  color: #fff;
}

.joinus-wholesaleOperations .point .details h2 {
  font-size: 20px;
  font-weight: 700;
}

.joinus-wholesaleOperations .point .details p {
  font-size: 16;
  font-weight: 400;
}

.joinus-wholesaleOperations .card {
  width: 90%;
  margin: 6em auto;
  height: 300px;
  background: linear-gradient(to bottom, #ff2336, #ff8e97);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.joinus-wholesaleOperations .card h1 {
  font-size: 48px;
  font-weight: 700;
}

.joinus-wholesaleOperations .card p {
  font-size: 18px;
  font-weight: 500;
  width: 70%;
  text-align: center;
  margin-top: 10px;
}

.joinus-wholesaleOperations .saas {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 4em;
  color: #fff;
}

.saas .heading {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.saas .heading h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  width: 100%;
}

.saas .heading hr {
  display: flex;
  width: 1100px;
  border: 1px solid #fff;
}

.saas-one {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2em;
}

.saas-one .head {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.saas-one .head h3 {
  font-size: 18px;
  font-weight: 700;
  min-height: 32px;
  min-width: 32px;
  height: 32px;
  width: 32px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.saas-one .head h2 {
  font-size: 24px;
  font-weight: 700;
}

.saas-one .head p {
  font-size: 18px;
  font-weight: 500;
  color: #eeeeee;
}

.saas-one .head p a {
  color: #fff;
  font-weight: 700;
}

.saas-one .video {
  width: 500px;
  height: 286px;
  border-radius: 10px;
  background-color: #a5a5a533;
  margin-left: 3em;
}

.saas-two {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2em;
}

.saas-two .head {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.saas-two .head h3 {
  font-size: 18px;
  font-weight: 700;
  min-height: 32px;
  min-width: 32px;
  height: 32px;
  width: 32px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.saas-two .head h2 {
  font-size: 24px;
  font-weight: 700;
}

.joinus-wholesaleOperations .wholesale-solutions {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 4em;
  background-color: #fff;
  margin-bottom: 2em;
}

.wholesale-solutions h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
}

.wholesale-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}

.wholesale-span {
  display: flex;
  flex-direction: column;
  width: 364px;
}

.wholesale-span .circle {
  width: 32px;
  height: 32px;
  border-image: linear-gradient(
      to bottom,
      #ec3242 0%,
      #1e1e1e 50%,
      #eeeeee 100%
    )
    1;
  border-width: 2px;
  border-style: solid;
  padding: 5px;
}

.wholesale-span h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  padding-bottom: 10px;
  border-bottom: 1px solid red;
  width: 80%;
  margin-top: 1em;
}

.wholesale-span p {
  font-size: 16px;
  font-weight: 500;
  color: #383838;
  font-style: italic;
}

@media (max-width: 1300px) {
  .joinus-wholesaleOperations {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    padding-top: 70px;
  }

  .joinus-wholesaleOperations .bannerCover {
    width: 100%;
    height: 350px;
    background: url("./images/joinus-wholesaleOperations.jpeg");
    background-size: cover;
    background-position: center;
  }

  .joinus-wholesaleOperations .banner {
    background-color: #00000033;
    padding: 90px 20px;
    color: #fff;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .joinus-wholesaleOperations .banner h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .joinus-wholesaleOperations .banner h1 i {
    font-style: normal;
    font-weight: 20px;
    font-weight: 700;
    color: #ec3242;
  }

  .joinus-wholesaleOperations .banner p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  .joinus-wholesaleOperations .points {
    border: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    margin-top: 110px;
    position: relative;
    padding-bottom: 50px;
  }

  .joinus-wholesaleOperations .notch {
    color: #fff;
    width: 60%;
    background-color: #1e1e1e;
    position: absolute;
    top: -40px;
  }

  .joinus-wholesaleOperations .points span h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .joinus-wholesaleOperations .points-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 4em;
    margin-left: 10px;
    grid-template-columns: repeat(3, 1fr);
  }

  .joinus-wholesaleOperations .point {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 350px;
  }

  .joinus-wholesaleOperations .point span {
    min-height: 36px;
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #dddddd;
  }

  .joinus-wholesaleOperations .point .details {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    color: #fff;
  }

  .joinus-wholesaleOperations .point .details h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .joinus-wholesaleOperations .point .details p {
    font-size: 16;
    font-weight: 400;
    width: 95%;
  }

  .joinus-wholesaleOperations .card {
    width: 90%;
    margin: 6em auto;
    height: 200px;
    background: linear-gradient(to bottom, #ff2336, #ff8e97);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .joinus-wholesaleOperations .card h1 {
    font-size: 24px;
    font-weight: 700;
  }

  .joinus-wholesaleOperations .card p {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    line-height: normal;
  }

  .joinus-wholesaleOperations .saas {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 1em;
    color: #fff;
  }

  .saas .heading {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
  }

  .saas .heading h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
    width: 100%;
  }

  .saas .heading hr {
    display: none;
  }

  .saas-one {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2em;
  }

  .saas-one .head {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .saas-one .head h3 {
    font-size: 18px;
    font-weight: 700;
    min-height: 32px;
    min-width: 32px;
    height: 32px;
    width: 32px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .saas-one .head h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .saas-one .head p {
    font-size: 18px;
    font-weight: 400;
    color: #eeeeee;
  }

  .saas-one .head p a {
    color: #fff;
    font-weight: 700;
  }

  .saas-one .video {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-color: #a5a5a533;
    margin-left: 0;
  }

  .saas-two {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2em;
  }

  .saas-two .head {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .saas-two .head h3 {
    font-size: 18px;
    font-weight: 700;
    min-height: 32px;
    min-width: 32px;
    height: 32px;
    width: 32px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .saas-two .head h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .saas-two .head p {
    font-size: 18px;
    font-weight: 400;
    color: #eeeeee;
  }

  .joinus-wholesaleOperations .wholesale-solutions {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1em;
    background-color: #fff;
    margin-bottom: 2em;
  }

  .wholesale-solutions h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ec3242;
  }

  .wholesale-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }

  .wholesale-span {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .wholesale-span .circle {
    width: 32px;
    height: 32px;
    border-image: linear-gradient(
        to bottom,
        #ec3242 0%,
        #1e1e1e 50%,
        #eeeeee 100%
      )
      1;
    border-width: 2px;
    border-style: solid;
    padding: 5px;
  }

  .wholesale-span h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
    padding-bottom: 10px;
    border-bottom: 1px solid red;
    width: 80%;
    margin-top: 1em;
  }

  .wholesale-span p {
    font-size: 16px;
    font-weight: 500;
    color: #383838;
    font-style: italic;
  }
}

/* About - Press & Media */

.about-pressMedia {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
  padding: 2em 0;
}

.about-pressMedia .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-pressMedia .heading h1 {
  font-size: 40px;
  font-weight: 600;
}

.about-pressMedia .heading #marquee {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  background-color: #ffffff05;
  margin-top: 26px;
}

.about-pressMedia img {
  height: 50px;
  width: 100px;
  margin: 0 2em;
}

.about-pressMedia main {
  padding: 2em;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about-pressMedia .leftGrid {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-pressMedia .leftGrid .card {
  width: 274px;
  height: 369px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 8px;
  box-shadow: 2px 4px 8px 0 #7575751a;
}

.about-pressMedia .leftGrid .card .top {
  min-height: 252px;
  height: 252px;
  width: 100%;
  background: url("./images/pressMediaCard.jpeg");
  background-position: center;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.about-pressMedia .leftGrid .card .bottom {
  padding: 10px 10px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 8px;
}

.about-pressMedia .leftGrid .card .bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #d4d4d4;
}

.about-pressMedia .leftGrid .card .bottom h1 {
  font-size: 16px;
  font-weight: 500;
}

.about-pressMedia .leftGrid .card .bottom a {
  font-size: 14px;
  font-weight: 500;
  color: #ec3242;
}

.about-pressMedia .rightForm {
  height: 100%;
  width: min-content;
  display: flex;
  justify-content: start;
  align-items: start;
}

.about-pressMedia .rightForm form {
  width: 290px;
  height: 100%;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  border: 1px solid #ffffff4d;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
}

.about-pressMedia .rightForm form h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-pressMedia .rightForm form span {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
}

.about-pressMedia .rightForm form span label {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
}

.about-pressMedia .rightForm form span input {
  border-radius: 8px;
  border: none;
  background-color: #eee;
  height: 36px;
}

.about-pressMedia .rightForm form span select {
  border-radius: 8px;
  border: none;
  background-color: #eee;
  height: 36px;
  padding: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #6d6d6d;
}

.about-pressMedia .rightForm form span textarea {
  border-radius: 8px;
  border: none;
  background-color: #eee;
  height: 72px;
}

.about-pressMedia .rightForm button {
  width: 100px;
  height: 40px;
  background-color: #ec3242;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  margin-left: auto;
  margin-top: 2em;
}

@media (max-width: 1200px) {
  .about-pressMedia .leftGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-pressMedia .heading {
    margin-top: 4em;
    text-align: center;
  }

  .about-pressMedia .heading h1 {
    font-size: 24px;
    font: 700;
  }

  .about-pressMedia img {
    height: 50px;
    width: 90px;
    margin: 0 2em;
  }

  .about-pressMedia main {
    flex-direction: column;
    padding: 1em;
    margin-top: 1em;
  }

  .about-pressMedia .leftGrid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .about-pressMedia .leftGrid .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 8px;
    box-shadow: 2px 4px 8px 0 #7575751a;
  }

  .about-pressMedia .leftGrid .card .top {
    min-height: 170px;
    height: min-content;
    width: 100%;
    background: url("./images/pressMediaCard.jpeg");
    background-position: center;
    background-size: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .about-pressMedia .leftGrid .card .bottom {
    padding: 10px 10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
  }

  .about-pressMedia .leftGrid .card .bottom p {
    font-size: 12px;
    font-weight: 400;
    color: #d4d4d4;
  }

  .about-pressMedia .leftGrid .card .bottom h1 {
    font-size: 15px;
    font-weight: 500;
  }

  .about-pressMedia .leftGrid .card .bottom a {
    font-size: 15px;
    font-weight: 500;
    color: #ec3242;
  }

  .about-pressMedia .rightForm {
    width: 100%;
    margin-top: 2em;
  }

  .about-pressMedia .rightForm form {
    width: 100%;
  }

  .about-pressMedia .rightForm form h1 {
    display: none;
  }

  .about-pressMedia .rightForm form span input {
    border-radius: 8px;
    border: none;
    background-color: #eee;
    height: 38px;
  }

  .about-pressMedia .rightForm button {
    width: 135px;
    height: 40px;
    background-color: #ec3242;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    margin-left: auto;
    margin-top: 2em;
  }
}

/* Learn Current Updates */

.learn-currentUpdates {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
  padding: 2em 0;
}

.learn-currentUpdates .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.learn-currentUpdates .heading h1 {
  font-size: 40px;
  font-weight: 600;
}

.learn-currentUpdates .heading .inputDiv {
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  background-color: #2d2d2d;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #383838;
  padding: 10px 10px;
}

.learn-currentUpdates .heading .inputDiv .searchIcon {
  position: relative;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-currentUpdates .heading .inputDiv input {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  top: 0;
  border: none;
  left: 45px;
  outline: none;
}

.learn-currentUpdates #mobileInput {
  display: none;
}

.learn-currentUpdates main {
  padding: 2em 4em;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}

.learn-currentUpdates .leftGrid {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-currentUpdates .leftGrid .card {
  width: 274px;
  height: 369px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 8px;
  box-shadow: 2px 4px 8px 0 #7575751a;
}

.learn-currentUpdates .leftGrid .card .top {
  min-height: 252px;
  height: 252px;
  width: 100%;
  background: url("./images/pressMediaCard.jpeg");
  background-position: center;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.learn-currentUpdates .leftGrid .card .bottom {
  padding: 10px 10px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 8px;
}

.learn-currentUpdates .leftGrid .card .bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #d4d4d4;
}

.learn-currentUpdates .leftGrid .card .bottom h1 {
  font-size: 16px;
  font-weight: 500;
}

.learn-currentUpdates .leftGrid .card .bottom a {
  font-size: 14px;
  font-weight: 500;
  color: #ec3242;
}

.learn-currentUpdates .rightDiv {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.learn-currentUpdates .rightDiv .inputDiv {
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  background-color: #2d2d2d;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #383838;
  padding: 10px 10px;
}

.learn-currentUpdates .rightDiv .inputDiv .searchIcon {
  position: relative;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-currentUpdates .rightDiv .inputDiv input {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  top: 0;
  border: none;
  left: 45px;
  outline: none;
  color: #fff;
}

.learn-currentUpdates .rightDiv .questionRecommendations {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-width: 300px !important;
  width: 300px;
  height: 100%;
  margin-top: 1em;
}

.learn-currentUpdates .rightDiv .questionRecommendations h1 {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  margin: 0;
}

.learn-currentUpdates .rightDiv .questionRecommendations a {
  font-size: 18px;
  font-weight: 600;
  color: #ec3242;
}

.learn-currentUpdates .rightDiv .questionRecommendations hr {
  width: 100%;
  border: 1px solid #4c4c4c;
}

@media (max-width: 1200px) {
  .learn-currentUpdates .heading {
    margin-top: 4em;
    text-align: center;
  }

  .learn-currentUpdates .leftGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .learn-currentUpdates .heading {
    padding: 0 1em;
  }

  .learn-currentUpdates #mobileInput {
    display: flex;
    width: 100%;
    margin-top: 1em;
  }

  .learn-currentUpdates .heading {
    margin-top: 4em;
    text-align: center;
  }

  .learn-currentUpdates .heading h1 {
    font-size: 24px;
    font: 700;
  }

  .learn-currentUpdates img {
    height: 50px;
    width: 90px;
    margin: 0 2em;
  }

  .learn-currentUpdates main {
    flex-direction: column;
    padding: 1em;
    margin-top: 1em;
  }

  .learn-currentUpdates .leftGrid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .learn-currentUpdates .leftGrid .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 8px;
    box-shadow: 2px 4px 8px 0 #7575751a;
  }

  .learn-currentUpdates .leftGrid .card .top {
    min-height: 170px;
    height: min-content;
    width: 100%;
    background: url("./images/pressMediaCard.jpeg");
    background-position: center;
    background-size: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .learn-currentUpdates .leftGrid .card .bottom {
    padding: 10px 10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
  }

  .learn-currentUpdates .leftGrid .card .bottom p {
    font-size: 12px;
    font-weight: 400;
    color: #d4d4d4;
  }

  .learn-currentUpdates .leftGrid .card .bottom h1 {
    font-size: 15px;
    font-weight: 500;
  }

  .learn-currentUpdates .leftGrid .card .bottom a {
    font-size: 15px;
    font-weight: 500;
    color: #ec3242;
  }

  .learn-currentUpdates .rightDiv {
    width: 100%;
  }

  .learn-currentUpdates .rightDiv .questionRecommendations {
    width: 100%;
    border-top: 1px solid #4c4c4c;
    padding-top: 1em;
  }

  .learn-currentUpdates .rightDiv .inputDiv {
    display: none;
  }
}

/* Learn Blog */

.learn-blog-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
  padding: 2em;
}

.learn-blog {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 2em;
  gap: 1em;
}

.learn-blog .blog-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#mobile-head {
  display: none;
}

.blog-left .heading {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.heading .desktop-head {
  display: flex;
  flex-direction: column;
}

.desktop-head p {
  font-size: 14px;
  font-weight: 600;
}

.desktop-head p a {
  color: #ec3242;
}

.desktop-head h1 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 20px;
}

.desktop-head .mini-details {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  font-size: 12px;
  font-weight: 600;
  color: #b3b3b3;
  gap: 10px;
}

#desktop-only {
  display: flex;
}

.learn-blog .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  border-left: 3px solid #fff;
  position: relative;
  padding: 0;
  padding-left: 17px;
  margin: 1em 0;
}

.learn-blog .left p {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

.left #left {
  font-size: 24px;
  font-weight: 400;
  font-family: "Javanese Text";
  font-style: normal;
  height: 24px;
  width: 24px;
}

.left #right {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  font-family: "Javanese Text";
  font-style: normal;
  height: 24px;
  width: 24px;
}

.blog-left main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-left main p {
  font-size: 16px;
  font-weight: 400;
  color: #b3b3b3;
}

.blog-left main span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 1em;
}

.blog-left main span h1 {
  font-size: 16px;
  font-weight: 600;
}

.blog-left main span ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}

.blog-left main span ul li {
  font-size: 16px;
  font-weight: 400;
  color: #b3b3b3;
}

.learn-blog .blog-right {
  display: flex;
  flex-direction: column;
  width: 320px;
}

.blog-right .image {
  background: url("./images/pressMediaCard.jpeg");
  width: 290px;
  height: 290px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  margin-bottom: 1em;
}

.blog-right .tags {
  width: 290px;
  background-color: #383838;
  height: fit-content;
  border-radius: 10px;
  padding-bottom: 10px;
  margin-bottom: 1em;
}

.blog-right .tags h1 {
  font-size: 20px;
  font-weight: 500;
  padding: 10px 14px;
  border-bottom: 1px solid #4c4c4c;
}

.tags .tag-grid {
  padding: 10px 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tags .tag-grid span {
  background-color: #2d2d2d;
  font-size: 14px;
  font-weight: 400;
  color: #e7e7e7;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid #4c4c4c80;
}

.blog-right h2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0.5em;
}

.blog-right h2 a {
  color: #ec3242;
}

.extras-wrapper {
  width: 100%;
  padding: 1em 2em;
  border-top: 0.25px solid #ffffff;
}

.extras-wrapper h1 {
  font-size: 26px;
  font-weight: 600;
}

.extras-wrapper .extras {
  display: flex;
  flex-direction: row;
  gap: 25px;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 2em 0;
}

.learn-blog-wrapper .extras .card {
  min-width: 274px;
  min-height: 369px;
  height: 369px;
  width: 274px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 8px;
  box-shadow: 2px 4px 8px 0 #7575751a;
}

.learn-blog-wrapper .extras .card .top {
  min-height: 252px;
  height: 252px;
  width: 100%;
  background: url("./images/pressMediaCard.jpeg");
  background-position: center;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.learn-blog-wrapper .extras .card .bottom {
  padding: 10px 10px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 8px;
}

.learn-blog-wrapper .extras .card .bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #d4d4d4;
}

.learn-blog-wrapper .extras .card .bottom h1 {
  font-size: 16px;
  font-weight: 500;
}

.learn-blog-wrapper .extras .card .bottom a {
  font-size: 14px;
  font-weight: 500;
  color: #ec3242;
}

.learn-currentUpdates .rightDiv {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

@media (max-width: 850px) {
  .learn-blog-wrapper {
    padding: 1em;
    padding-top: 6em;
    width: 100%;
  }

  .learn-blog {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }

  #desktop-only {
    display: none;
  }

  #mobile-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }

  #mobile-head .left {
    width: 100%;
    height: 100%;
  }

  .left p {
    font-size: 12px;
    font-weight: 600;
  }

  #mobile-head .right {
    min-height: 155px;
    min-width: 155px;
    width: 155px;
    height: 155px;
    background: url("./images/pressMediaCard.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
  }

  .desktop-head h1 {
    font-size: 20px;
    font-weight: 600;
  }

  .blog-left main {
    margin-top: 2em;
  }

  .learn-blog .blog-right {
    width: 100%;
  }

  .blog-right .tags {
    width: 100%;
    margin-bottom: 1em;
  }

  .extras-wrapper {
    margin-top: 2em;
    padding: 1em;
  }
}

.contact-page {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  color: #fff;
  justify-content: start;
  align-items: start;
}

.contact-page .contact-form {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.contact-form .leftForm {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 39px 30px;
  color: #000;
}

.contact-form .rightContact {
  width: 100%;
  display: flex;
  height: 500px;
  background-color: #ec3242;
  flex-direction: column;
  position: relative;
  padding: 37px 32px;
}

.leftForm form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.leftForm form h1 {
  font-size: 30px;
  font-weight: 700;
}

.leftForm form input,
select {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  padding: 0;
  padding-bottom: 8px;
  font-size: 16px;
}

.leftForm form input::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.leftForm form .column {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.leftForm form button {
  width: 123px;
  height: 48px;
  border: none;
  border-radius: 5px;
  background-color: #ec3242;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.rightContact .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.rightContact .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.rightContact h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  z-index: 2;
}

.rightContact span {
  width: fit-content;
  height: 75px;
  background-color: #fff;
  color: #000;
  display: flex;
  margin-bottom: 30px;
  z-index: 2;
  padding: 20px;
  border-radius: 5px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.rightContact span h2 {
  margin: 0px;
  color: #ec3242;
}

.contact-page .contact-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 45px;
}

.contact-nav h1 {
  font-size: 30px;
  font-weight: 700;
}

.contact-nav .contact-nav-grid {
  display: flex;
  flex-direction: row;
  gap: 90px;
  margin-top: 30px;
}

.contact-nav-grid div {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.contact-nav-grid div p {
  font-size: 16px;
  font-weight: 500;
}

.contact-nav-grid div span {
  width: 20px;
  height: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .contact-page {
    padding-top: 5em;
  }

  .rightContact h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    z-index: 2;
  }

  .rightContact span {
    width: fit-content;
    height: 65px;
    background-color: #fff;
    color: #000;
    display: flex;
    margin-bottom: 30px;
    z-index: 2;
    padding: 20px;
    border-radius: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
  }

  .rightContact span h2 {
    margin: 0px;
    color: #ec3242;
    font-size: 22px;
  }
}

@media (max-width: 800px) {
  .contact-page .contact-form {
    flex-direction: column;
  }

  .contact-form .leftForm {
    height: 100%;
  }

  .leftForm form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .leftForm form h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .leftForm form input,
  select {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    padding: 0;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  .leftForm form input::placeholder {
    color: #000;
    font-size: 14px;
    font-weight: 500;
  }

  .rightContact h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    z-index: 2;
  }

  .rightContact span {
    width: fit-content;
    height: 48px;
    background-color: #fff;
    color: #000;
    display: flex;
    margin-bottom: 30px;
    z-index: 2;
    padding: 20px;
    border-radius: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
  }

  .rightContact span svg {
    height: 24px;
    width: 24px;
  }

  .rightContact span h2 {
    margin: 0px;
    color: #ec3242;
    font-size: 18px;
    font-weight: 500;
  }

  .contact-page .contact-nav {
    display: none;
  }
}

.joinus-investor {
  min-height: 500px;
  height: 100%;
  width: 100%;
  background-color: #1e1e1e;
}

.joinus-investor .banner {
  width: 100%;
  height: 100%;
  background: url("./images/join-us-banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 105px 88px;
}

.joinus-investor .banner .bannerBg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #00000099;
  z-index: 1;
}

.joinus-investor .banner .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.joinus-investor .banner .text h3 {
  font-size: 24px;
  font-weight: 600;
}

.joinus-investor .banner .text h1 {
  font-size: 48px;
  font-weight: 600;
}

.joinus-investor .banner .text p {
  font-size: 18px;
  font-weight: 600;
  width: 90%;
  text-align: center;
  margin-top: 30px;
}

.joinus-investor .banner .text button {
  width: 148px;
  height: 48px;
  background-color: #ec3242;
  border-radius: 5px;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.joinus-investor .standout {
  width: calc(100% - 8em);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-top: 1px solid #fff;
  margin: 60px auto;
  position: relative;
  padding: 2em;
}

.joinus-investor .standout h1 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  background-color: #1e1e1e;
  padding: 0 20px;
}

.standout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 50px;
  gap: 30px;
}

.standout-cards .standout-card {
  padding: 30px 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  box-shadow: 2px 4px 8px 0 #dddddd4d;
}

.standout-cards .standout-card h1 {
  font-size: 20px;
  font-weight: 700;
  position: relative !important;
  margin: 0 !important;
  transform: none !important;
  top: 0 !important;
  left: 0 !important;
  color: #fff;
}

.standout-cards .standout-card ul {
  margin-top: 20px;
}

.standout-cards .standout-card ul li h3 {
  font-size: 18px;
  font-weight: 500;
}

.standout-cards .standout-card ul li p {
  font-size: 18px;
  font-weight: 400;
  color: #d4d4d4;
}

.joinus-investor .standout h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 80px;
}

.joinus-investor .standout h2 span {
  color: #ec3242;
  font-weight: 700;
}

#desktop-hidden {
  display: none;
}

.joinus-investor .standout p {
  font-size: 16px;
  font-weight: 600;
}

.joinus-investor .investment-opportunities {
  background-color: #fff;
  height: 100%;
  width: 100%;
  padding: 78px 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.investment-opportunities .left {
  width: 100%;
  height: 100%;
}

.investment-opportunities .left h1 {
  font-size: 48px;
  font-weight: 700;
  width: 50%;
  color: #1e1e1e;
}

.investment-opportunities .left p {
  color: #383838;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  width: 600px;
  margin-top: 40px;
}

.investment-opportunities .right {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.investment-opportunities .right div {
  width: 500px;
  height: 84px;
  background-color: #383838;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  border-radius: 40px;
  padding: 12px;
  gap: 20px;
}

.investment-opportunities .right div span {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #ffcfd3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.investment-opportunities .right div h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.joinus-investor .form {
  height: 100%;
  width: 100%;
  padding: 4em;
}

.joinus-investor .form .heading {
  display: flex;
  color: #fff;
  width: 100%;
  height: 100%;
}

.joinus-investor .form .heading .left {
  width: 100%;
  height: 100%;
}

.joinus-investor .form .heading .left h1 {
  font-size: 30px;
  font-weight: 700;
  width: 70%;
}

.joinus-investor .form .heading .left h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ec3242;
  margin-top: 20px;
}

.joinus-investor .form .heading .right {
  width: 100%;
}

.joinus-investor .form .heading .right p {
  font-size: 18px;
  font-weight: 500;
  color: #dddddd;
}

/*  */

.joinus-contact-form {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  margin-top: 35px;
}

.joinus-contact-form .leftForm {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 39px 30px;
  color: #000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.joinus-contact-form .rightContact {
  width: 100%;
  display: flex;
  height: 500px;
  background-color: #ec3242;
  flex-direction: column;
  position: relative;
  padding: 37px 32px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.joinus-contact-form .leftForm form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.joinus-contact-form .leftForm form h1 {
  font-size: 30px;
  font-weight: 700;
}

.joinus-contact-form .leftForm form input,
select {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  padding: 0;
  padding-bottom: 8px;
  font-size: 16px;
}

.joinus-contact-form .leftForm form input::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.joinus-contact-form .leftForm form .column {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.joinus-contact-form .leftForm form button {
  width: 123px;
  height: 48px;
  border: none;
  border-radius: 5px;
  background-color: #ec3242;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.joinus-contact-form .rightContact .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.joinus-contact-form .rightContact .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.joinus-contact-form .rightContact h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  z-index: 2;
  color: #fff;
}

.joinus-contact-form .rightContact span {
  width: fit-content;
  height: 75px;
  background-color: #fff;
  color: #000;
  display: flex;
  margin-bottom: 30px;
  z-index: 2;
  padding: 20px;
  border-radius: 5px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.joinus-contact-form .rightContact span h2 {
  margin: 0px;
  color: #ec3242;
}

@media (max-width: 700px) {
  .joinus-investor {
    padding-top: 60px;
  }

  .joinus-investor .banner {
    padding: 50px 1em;
    background-size: contain;
  }

  .joinus-investor .banner .text h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .joinus-investor .banner .text h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .joinus-investor .banner .text p {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .joinus-investor .banner .text button {
    width: 135px;
    height: 40px;
  }

  .joinus-investor .standout {
    border: none;
    width: 100%;
    padding: 1em;
  }

  .joinus-investor .standout h1 {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
  }

  .joinus-investor .standout p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
  }

  .standout-cards {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    gap: 30px;
  }
  .standout-cards::-webkit-scrollbar {
    display: none;
  }

  .standout-cards .standout-card {
    padding: 20px 16px;
    min-width: 330px;
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .standout-card p,
  h1 {
    text-align: left !important;
  }

  .standout-card h1 {
    font-size: 16px;
    font-weight: 700;
  }

  .joinus-investor .standout h2 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
  }

  .joinus-investor .standout p {
    font-size: 14px;
    font-weight: 400;
  }

  .joinus-investor .investment-opportunities {
    flex-direction: column;
    padding: 30px 1em;
  }

  .investment-opportunities .left h1 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    color: #1e1e1e;
    background-color: transparent;
    text-align: center !important;
  }

  .investment-opportunities .left p {
    color: #383838;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    width: 100%;
    margin-top: 40px;
  }

  .investment-opportunities .right {
    gap: 16px;
    margin-top: 30px;
  }

  .investment-opportunities .right div {
    width: 100%;
    height: 56px;
  }

  .investment-opportunities .right div span {
    height: 40px;
    width: 40px;
  }

  .investment-opportunities .right div span svg {
    height: 24px;
    width: 24px;
  }

  .investment-opportunities .right div h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  .joinus-investor .form {
    padding: 60px 1em;
  }

  .joinus-investor .form .heading {
    flex-direction: column;
  }

  .joinus-investor .form .heading .left h1 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: center !important;
  }

  .joinus-investor .form .heading .left h4 {
    display: none;
  }

  .joinus-investor .form .heading .right p {
    font-size: 16px;
    font-weight: 500;
  }

  .joinus-contact-form {
    flex-direction: column;
  }

  .joinus-contact-form .leftForm {
    padding: 16px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }

  .joinus-contact-form .rightContact {
    padding: 16px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
  }

  .joinus-contact-form .leftForm form {
    gap: 30px;
  }

  .joinus-contact-form .leftForm form h1 {
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
  }

  .joinus-contact-form .leftForm form input,
  select {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 6px;
  }

  .joinus-contact-form .leftForm form .column {
    flex-direction: column;
  }

  .joinus-contact-form .rightContact h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .joinus-contact-form .rightContact span {
    height: 48px;
    gap: 10px;
    padding: 12px;
  }

  .joinus-contact-form .rightContact span img {
    height: 25px;
    width: 25px;
  }

  .joinus-contact-form .rightContact span h2 {
    font-size: 16px;
    font-weight: 500;
  }
}

/* Privacy Policy */

.policy {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 4em;
  background-color: #1e1e1e;
  color: #fff;
}

.policy .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.policy .heading p {
  width: 90%;
}

.policy main {
  padding: 30px 23px;
  border-radius: 10px;
  background-color: #383838;
  margin-top: 50px;
}

.policy main h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.policy main h5 {
  font-size: 16px;
  font-weight: 600;
  color: #eeeeee;
  margin-top: 20px;
}

.policy main p {
  font-size: 16px;
  font-weight: 400;
  color: #eeeeee;
  line-height: 26px;
}

.policy main a {
  font-size: 16px;
  font-weight: 400;
  color: #eeeeee;
  line-height: 26px;
}

.policy main hr {
  border: 1px solid #6d6d6d;
  width: 100%;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .policy {
    padding: 1em;
    padding-top: 100px;
  }

  .policy main {
    padding: 15px;
  }
}

/* Join us > Project Based Partner */

.joinus-project-based-partner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  color: #fff;
}

.joinus-project-based-partner main {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  height: 310px;
  padding: 120px 4em;
  gap: 100px;
  margin-bottom: 250px;
}

.joinus-project-based-partner main .left {
  width: 100%;
}

.joinus-project-based-partner main .left h1 {
  font-size: 48px;
  font-weight: 600;
}

.joinus-project-based-partner main .left h1 span {
  color: #ec3242;
}

.joinus-project-based-partner main .left p {
  color: #dddddd;
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
  font-style: none;
  margin-top: 40px;
}

.joinus-project-based-partner main .rightWrapper {
  width: 70%;
  min-height: 320px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.joinus-project-based-partner main .right {
  position: relative;
  width: 390px;
  height: calc(100% - 1em);
}

.joinus-project-based-partner main .right .top {
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: 0;
  height: 170px;
  width: 210px;
  background-color: #ec3242;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 24px;
}

.joinus-project-based-partner main .right h2 {
  font-size: 48px;
  font-weight: 800;
}

.joinus-project-based-partner main .right p {
  font-size: 18px;
  font-weight: 500;
}

.joinus-project-based-partner main .right .bottom {
  position: absolute;
  border-radius: 20px;
  bottom: 0;
  right: 0;
  height: 170px;
  width: 210px;
  background-color: #ec3242;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 24px;
}

.joinus-project-based-partner .cards {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 4em;
}

.joinus-project-based-partner .cards .heading {
  width: 100%;
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-bottom: 30px;
}

.joinus-project-based-partner .cards .heading h1 {
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  min-width: 740px;
  color: #ec3242;
}

.joinus-project-based-partner .cards .heading hr {
  display: flex;
  width: 100%;
}

.joinus-project-based-partner .cards .cards-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
}

.joinus-project-based-partner .partnershipCard {
  width: 380px;
  height: 400px;
  background-color: #383838;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.joinus-project-based-partner .partnershipCard .top {
  min-height: 213px;
  height: 213px;
  background-color: #d9d9d9;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.joinus-project-based-partner .partnershipCard .bottom {
  padding: 0 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.joinus-project-based-partner .partnershipCard .bottom h3 {
  font-size: 20px;
  font-weight: 700;
}

.joinus-project-based-partner .partnershipCard .bottom p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.joinus-project-based-partner .partnershipCard .bottom a {
  font-size: 18px;
  font-weight: 600;
  color: #ec3242;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.joinus-project-based-partner .bannerWrapper {
  background: url("./images/joinus-projectBasedPartnerBg.jpeg");
  width: calc(100% - 8em);
  margin: 0 auto;
  height: 510px;
}

.joinus-project-based-partner .bannerWrapper .banner {
  background-color: #00000066;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.joinus-project-based-partner .bannerWrapper .banner h1 {
  font-size: 78px;
  font-weight: 500;
  font-family: "Mohave";
  text-align: center;
  width: 80%;
}

.white-label-parntnership {
  width: calc(100% - 8em);
  border-image: linear-gradient(to right top, #ec3242 0%, #1e1e1e 100%) 1;
  border-radius: 5px; /* this doesn't work */
  border-width: 1px;
  border-style: solid;
  padding: 5px;
  margin: 120px auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.white-label-parntnership h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
}

.white-label-parntnership p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
  width: 95%;
  color: #eeeeee;
}

.white-label-parntnership p span {
  font-weight: 800;
  color: #fff;
}

.why-partner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  padding: 60px 4em;
}

.why-partner .heading {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: 10px;
}

.why-partner .heading hr {
  width: 100%;
  border: 1px solid #4c4c4c;
  height: 1px;
}

.why-partner .heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  min-width: 600px;
}

.why-partner .cards-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
}

.why-partner .cards-grid .card {
  width: 350px;
  height: 190px;
  background-color: transparent;
  border: 1px solid #999999;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 30px;
}

.why-partner .cards-grid .card .logo {
  height: 60px;
  width: 60px;
  background-color: #ffcfd3;
  border-radius: 10px;
}

.why-partner .cards-grid .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

/*  */

.joinus-project-based-partner .form {
  height: 100%;
  width: 100%;
  padding: 4em;
}

.joinus-project-based-partner .form .heading {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  color: #fff;
  width: 100%;
  height: 100%;
}

.joinus-project-based-partner .form .heading h1 {
  font-size: 30px;
  font-weight: 700;
  width: 100%;
}

.joinus-project-based-partner .form .heading p {
  font-size: 18px;
  font-weight: 500;
  color: #dddddd;
  margin-top: 20px;
  width: 65%;
}

.joinus-project-based-partner .form .heading a {
  color: #ec3242;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.joinus-project-based-partner .form .heading .right {
  width: 100%;
}

.joinus-project-based-partner .form .heading .right p {
  font-size: 18px;
  font-weight: 500;
  color: #dddddd;
}

.joinus-contact-form {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  margin-top: 35px;
  margin-top: 3em;
}

.joinus-contact-form .leftForm {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 39px 30px;
  color: #000;
}

.joinus-contact-form .rightContact {
  width: 100%;
  display: flex;
  height: 500px;
  background-color: #ec3242;
  flex-direction: column;
  position: relative;
  padding: 37px 32px;
}

.joinus-contact-form .leftForm form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.joinus-contact-form .leftForm form h1 {
  font-size: 30px;
  font-weight: 700;
}

.joinus-contact-form .leftForm form input,
select {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  padding: 0;
  padding-bottom: 8px;
  font-size: 16px;
}

.joinus-contact-form .leftForm form input::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.joinus-contact-form .leftForm form .column {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.joinus-contact-form .leftForm form button {
  width: 123px;
  height: 48px;
  border: none;
  border-radius: 5px;
  background-color: #ec3242;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.joinus-contact-form .rightContact .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.joinus-contact-form .rightContact .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.joinus-contact-form .rightContact h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  z-index: 2;
  color: #fff;
}

.joinus-contact-form .rightContact span {
  width: fit-content;
  height: 75px;
  background-color: #fff;
  color: #000;
  display: flex;
  margin-bottom: 30px;
  z-index: 2;
  padding: 20px;
  border-radius: 5px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.joinus-contact-form .rightContact span h2 {
  margin: 0px;
  color: #ec3242;
  width: 100%;
  padding: 1em;
}

@media (max-width: 800px) {
  .joinus-project-based-partner {
    padding-top: 100px;
  }

  .joinus-project-based-partner main {
    flex-direction: column;
    height: 100%;
    padding: 0;
    padding: 1em;
    gap: 0;
    margin: 0;
    margin-bottom: 1em;
  }

  .joinus-project-based-partner main .left h1 {
    font-size: 24px;
    font-weight: 700;
  }

  .joinus-project-based-partner main .left p {
    font-size: 18px;
    font-weight: 400;
  }

  .joinus-project-based-partner main .rightWrapper {
    width: 100%;
    height: fit-content;
    min-height: 0;
  }

  .joinus-project-based-partner main .rightWrapper .right {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: fit-content;
  }

  .joinus-project-based-partner main .rightWrapper .right .top {
    position: relative;
    width: 100%;
    height: 138px;
    padding: 15px;
  }

  .joinus-project-based-partner main .rightWrapper .right .bottom {
    position: relative;
    width: 100%;
    height: 138px;
    padding: 15px;
  }

  .joinus-project-based-partner main .rightWrapper .right h2 {
    font-size: 32px;
    font-weight: 800;
  }

  .joinus-project-based-partner main .rightWrapper .right p {
    font-size: 18px;
    font-weight: 500;
  }

  .joinus-project-based-partner .cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1em;
    margin: 2em 0;
  }

  .joinus-project-based-partner .cards .heading h1 {
    font-size: 20px;
    font-weight: 700;
    min-width: 100%;
  }

  .joinus-project-based-partner .cards .heading hr {
    display: none;
  }

  .joinus-project-based-partner .cards .cards-grid {
    flex-direction: row;
    overflow-x: scroll;
  }

  .joinus-project-based-partner .cards .cards-grid::-webkit-scrollbar {
    display: none;
  }

  .joinus-project-based-partner .partnershipCard {
    min-width: 360px;
    min-height: 400px;
    width: 360px;
    height: 400px;
  }

  .joinus-project-based-partner .partnershipCard .bottom h3 {
    font-size: 18px;
    font-weight: 700;
  }

  .joinus-project-based-partner .partnershipCard .bottom p {
    font-size: 16px;
    font-weight: 600;
  }

  .joinus-project-based-partner .bannerWrapper {
    width: calc(100% - 2em);
    height: 170px;
    background-position: center;
    background-size: cover;
  }

  .joinus-project-based-partner .bannerWrapper .banner h1 {
    font-size: 28px;
    font-weight: 500;
    text-align: center !important;
  }

  .joinus-project-based-partner .white-label-parntnership {
    width: calc(100% - 2em);
    padding: 17px;
    margin: 4em auto;
  }

  .joinus-project-based-partner .white-label-parntnership h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center !important;
    width: 100%;
  }

  .joinus-project-based-partner .white-label-parntnership p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #eeeeee;
  }

  .joinus-project-based-partner .why-partner {
    padding: 1em;
  }

  .joinus-project-based-partner .why-partner .heading {
    gap: 0;
  }

  .joinus-project-based-partner .why-partner .heading hr {
    display: none;
  }

  .joinus-project-based-partner .why-partner .heading h2 {
    font-size: 20px;
    font-weight: 700;
    min-width: 0;
  }

  .joinus-project-based-partner .why-partner .cards-grid {
    flex-direction: column;
    gap: 16px;
  }

  .why-partner .cards-grid .card {
    width: 100%;
    height: 100%;
    padding: 16px 20px;
  }

  .why-partner .cards-grid .card .logo {
    min-height: 40px;
    min-width: 40px;
    margin: 0;
  }

  .why-partner .cards-grid .card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
  }

  .joinus-project-based-partner .form {
    padding: 60px 1em;
  }

  .joinus-project-based-partner .form .heading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    width: 100%;
  }

  .joinus-project-based-partner .form .heading h1 {
    display: flex;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: start !important;
  }

  .joinus-project-based-partner .form .heading a {
    font-size: 16px;
    font-weight: 500;
    text-align: start;
  }

  .joinus-project-based-partner .form .heading p {
    font-size: 16px;
    font-weight: 600;
    text-align: start;
    width: 100%;
  }

  .joinus-contact-form {
    flex-direction: column;
  }

  .joinus-contact-form .leftForm {
    padding: 16px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }

  .joinus-contact-form .rightContact {
    padding: 16px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
  }

  .joinus-contact-form .leftForm form {
    gap: 30px;
  }

  .joinus-contact-form .leftForm form h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .joinus-contact-form .leftForm form input,
  select {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 6px;
  }

  .joinus-contact-form .leftForm form .column {
    flex-direction: column;
  }

  .joinus-contact-form .rightContact h1 {
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
  }

  .joinus-contact-form .rightContact span {
    height: 48px;
    width: fit-content !important;
    gap: 10px !important;
    padding: 12px;
  }

  .joinus-contact-form .rightContact span img {
    height: 25px;
    width: 25px;
  }

  .joinus-contact-form .rightContact span h2 {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
  }
}

.termsAndConditions {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 4em;
  background-color: #1e1e1e;
  color: #fff;
}

.termsAndConditions .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.termsAndConditions .heading h1 {
  font-size: 40px;
  font-weight: 600;
}

.termsAndConditions .heading p {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #eeeeee;
}

.termsAndConditions main {
  padding: 30px 23px;
  border-radius: 10px;
  background-color: #383838;
  margin-top: 50px;
}

.termsAndConditions main span {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.termsAndConditions main h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.termsAndConditions main h5 {
  font-size: 16px;
  font-weight: 600;
  color: #eeeeee;
  margin-top: 20px;
  margin-bottom: 5px;
}

.termsAndConditions main p {
  font-size: 16px;
  font-weight: 400;
  color: #eeeeee;
  line-height: 26px;
  margin: 0;
}

.termsAndConditions ul {
  margin: 0;
}

@media (max-width: 768px) {
  .termsAndConditions {
    padding: 1em;
    padding-top: 100px;
  }

  .termsAndConditions .heading h1 {
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  .termsAndConditions main {
    padding: 15px;
  }
}

/* Homepage */

.homepage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  color: #fff;
}

.homepage .empty {
  height: 70vh;
  width: 100%;
}

.homepage .who-we-are {
  display: flex;
  width: calc(100% - 8em);
  height: 100%;
  border: 1px solid #ec3242;
  border-left: none;
  padding: 45px 10px;
  position: relative;
  margin: 0 auto;
}

.homepage .who-we-are h1 {
  position: absolute;
  top: -30px;
  left: 0;
  padding-right: 10px;
  background-color: #1e1e1e;
}

.homepage .who-we-are p {
  font-size: 18px;
  font-weight: 500;
  color: #dddddd;
}

.homepage .expertise {
  margin: 120px auto;
  width: calc(100% - 8em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage .expertise h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.homepage .expertise-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.homepage .expertise-div {
  background-color: #383838;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
}

#viewAllServices {
  background-color: #ec3242;
}

.homepage .thoughtsWrapper {
  width: 100%;
  height: 370px;
  background-color: #ec3242;
  position: relative;
  margin-bottom: 120px;
}

.homepage .thoughts {
  width: 100%;
  height: 100%;
  background-image: url("images/thoughtBg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 115px 0;
}

.homepage .text {
  height: 100%;
  width: 100%;
  background-color: #000000cc;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage .text h1 {
  font-size: 60px;
  font-weight: 700;
  width: 80%;
  color: #fff;
  padding: 115px 0;
  text-align: center;
}

.homepage .text h1 span {
  color: #ec3242;
}

.homepage .valued-clients {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.homepage .valued-clients .heading {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  width: calc(100% - 8em);
}

.homepage .valued-clients .heading hr {
  width: 70%;
  margin-right: 1em;
  border: 1px solid #fff;
}

.homepage .valued-clients .heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  min-width: 300px;
  width: 300px;
}

.homepage .valued-clients .valued-clients-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 300px;
  width: 100%;
  overflow: scroll;
  gap: 10px;
}

.homepage .clients-div {
  min-height: 104px;
  min-width: 186px;
  height: 104px;
  width: 186px;
  border-radius: 10px;
  background-color: #eee;
}
.homepage .exploreIndustries {
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: row;
}

.homepage .exploreIndustries .left {
  width: 100%;
  padding: 60px 50px 60px 4em;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.homepage .exploreIndustries .left h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ec3242;
  margin: 0;
}

.homepage .exploreIndustries .left h1 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 24px;
  line-height: 36px;
}

.homepage .exploreIndustries .left p {
  font-size: 18px;
  font-weight: 500;
  color: #383838;
  line-height: 21px;
  margin-bottom: 40px;
}

.homepage .exploreIndustries .left button {
  width: 200px;
  height: 50px;
  border: 2px solid #ec3242;
  background-color: #fff;
  color: #ec3242;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}

.homepage .exploreIndustries .right {
  width: 100%;
  min-height: 100%;
  background-color: #d9d9d9;
}

.homepage .streamlined-operations {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 8em);
  margin: 120px auto;
}

.homepage .streamlined-operations .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage .streamlined-operations .heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.homepage .streamlined-operations .heading p {
  font-size: 18px;
  font-weight: 500;
  color: #eeeeee;
  margin-top: 14px;
  margin-bottom: 30px;
}

.homepage .streamlined-operations .heading button {
  width: 190px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #ec3242;
  border-radius: 30px;
  border: none;
}

.homepage .streamlined-operations .videos {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
}

.homepage .streamlined-operations .videos .video1 {
  min-height: 320px;
  min-width: 570px;
  height: 320px;
  width: 570px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6d6d6d;
}

.homepage .streamlined-operations .videos .video2 {
  min-height: 320px;
  min-width: 570px;
  height: 320px;
  width: 570px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6d6d6d;
}

.homepage .join-our-team-wrapper {
  background-image: url("images/joinus-investor.jpeg");
  height: 500px;
  background-position: center;
  background-size: cover;
}

.homepage .join-our-team {
  height: 100%;
  width: 100%;
  background-color: #00000099;
  padding: 100px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage .join-our-team h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.homepage .join-our-team h1 {
  font-size: 48px;
  text-align: center;
  font-weight: 600;
}

.homepage .join-our-team p {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 50px;
}

.homepage .join-our-team .ctas {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.homepage .join-our-team .ctas button {
  height: 48px;
  width: 162px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ec3242;
  color: #ec3242;
  background-color: #fff;
}

.homepage .join-our-team .ctas #careerBtn {
  background-color: #ec3242 !important;
  color: #fff;
}

.homepage .giving-back {
  width: calc(100% - 8em);
  height: 100%;
  margin: 120px auto;
  border-top: 1px solid #fff;
  position: relative;
  padding: 30px 0;
}

.homepage .giving-back h1 {
  position: absolute;
  top: -20px;
  background-color: #1e1e1e;
  padding-right: 10px;
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
}

.homepage .giving-back-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin-top: 50px;
  gap: 16px;
  overflow-x: scroll;
}

.homepage .one {
  height: 265px;
  width: 100%;
  min-width: 250px;
  background: url("images/sponsored1.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.homepage .two {
  height: 265px;
  min-width: 350px;
  width: 350px;
  background: url("images/sponsored2.png");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.homepage .three {
  height: 265px;
  min-width: 250px;
  width: 100%;
  background: url("images/sponsored3.png");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.homepage .four {
  height: 265px;
  width: 100%;
  min-width: 250px;
  background: url("images/sponsored4.png");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

@media (max-width: 1000px) {
  .about-companyOverview .redesign h1 {
    font-size: 2rem;
  }
  .homepage .who-we-are {
    width: calc(100% - 4em);
  }

  .homepage .expertise {
    width: calc(100% - 4em);
  }

  .homepage .expertise .expertise-grid {
    gap: 10px;
  }

  .homepage .valued-clients .heading {
    width: calc(100% - 4em);
    margin: auto;
  }

  .homepage .streamlined-operations {
    width: calc(100% - 4em);
  }

  .homepage .streamlined-operations .videos {
    gap: 20px;
  }

  .homepage .streamlined-operations .videos .video1 {
    min-width: 0;
    width: 100%;
  }

  .homepage .streamlined-operations .videos .video2 {
    min-width: 0;
    width: 100%;
  }

  #desktop-hidden {
    display: flex;
    color: #ec3242;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .homepage .who-we-are {
    width: calc(100% - 2em);
    padding: 26px 10px;
  }

  .homepage .who-we-are h1 {
    font-size: 20px;
    font-weight: 700;
    top: -12px;
  }

  .homepage .who-we-are p {
    font-size: 16px;
    font-weight: 500;
  }

  .homepage .expertise {
    margin: 60px auto;
    width: calc(100% - 2em);
  }

  .homepage .expertise h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .homepage .expertise .expertise-grid {
    gap: 10px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .homepage .expertise .expertise-div {
    width: 170px;
    height: 170px;
    font-size: 18px;
    font-weight: 600;
    padding: 25px;
  }

  #viewAllServices {
    transform: translateX(50%);
  }

  .homepage .thoughtsWrapper {
    height: 200px;
  }
  .homepage .thoughts {
    padding: 0;
    background-size: cover;
  }

  .homepage .text h1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center !important;
  }

  .homepage .valued-clients .heading {
    width: calc(100% - 2em);
  }

  .homepage .valued-clients .heading h2 {
    font-size: 20px;
    font-weight: 700;
    min-width: 0;
    width: 280px;
  }

  .homepage .valued-clients .valued-clients-grid {
    height: 100%;
    margin: 30px 0 60px 0;
  }

  .homepage .exploreIndustries {
    flex-direction: column-reverse;
    height: 100%;
  }

  .homepage .exploreIndustries .left {
    padding: 30px 1em;
  }

  .homepage .exploreIndustries .left h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }

  .homepage .exploreIndustries .left h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
    line-height: normal;
    margin-top: 5px;
  }

  .homepage .exploreIndustries .left p {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    margin-bottom: 30px;
  }

  .homepage .exploreIndustries .right {
    height: 280px;
  }

  .homepage .streamlined-operations {
    width: calc(100% - 2em);
    margin: 60px auto;
  }

  .homepage .streamlined-operations .heading h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .homepage .streamlined-operations .heading p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  .homepage .streamlined-operations .heading button {
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    width: 170px;
  }

  .homepage .streamlined-operations .videos {
    flex-direction: column;
  }

  .homepage .streamlined-operations .videos .video1 {
    min-height: 0;
    height: 220px;
  }

  .homepage .streamlined-operations .videos .video2 {
    min-height: 0;
    height: 220px;
  }

  .homepage .join-our-team-wrapper {
    height: 350px;
  }

  .homepage .join-our-team {
    padding: 1em;
  }

  .homepage .join-our-team h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .homepage .join-our-team h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center !important;
    margin: 0;
  }

  .homepage .join-our-team p {
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0 40px 0;
  }

  .homepage .giving-back {
    width: calc(100% - 2em);
    margin: 60px auto;
    border: none;
  }

  .homepage .giving-back h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .homepage .giving-back p {
    font-size: 16px;
    font-weight: 500;
  }
}

/* Join Us > Career */

.joinus-career {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  color: #fff;
}

.joinus-career .headlineWrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 4em;
}

.joinus-career .headline {
  border-left: 3px solid #ec3242;
  padding-left: 20px;
}

.joinus-career .headline h3 {
  font-size: 24px;
  font-weight: 600;
}

.joinus-career .headline h1 {
  font-size: 40px;
  font-weight: 600;
}

.joinus-career .headline p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 40px;
}

.joinus-career .currentOpenings {
  background-color: #fff;
  color: #000;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 40px 4em;
}

.joinus-career .currentOpenings .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.joinus-career .currentOpenings .heading h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.joinus-career .currentOpenings .heading p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}

.joinus-career .currentOpenings .opening-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.joinus-career .opening-card {
  width: 280px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-radius: 10px;
  background-color: #383838;
  padding: 20px;
  color: #fff;
}

.opening-card .card-tag {
  background-color: #ffc2c7;
  width: 112px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #ec3242;
}

.opening-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 13px;
}

.opening-card h3 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #eeeeee;
  gap: 10px;
}

.opening-card hr {
  width: 100%;
  margin: 18px 0;
}

.opening-card .details {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: start;
  align-items: start;
  gap: 13px;
}

.opening-card .details div {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #eeeeee;
}

.opening-card a {
  font-size: 18px;
  font-weight: 600;
  color: #ec3242;
  width: fit-content;
  margin-top: auto;
  text-decoration: none;
}

.joinus-career .why-join-us {
  width: calc(100% - 8em);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 120px auto;
}

.why-join-us .heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #fff;
  position: relative;
  padding-top: 30px;
}

.why-join-us .heading h1 {
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  top: -20px;
  background-color: #1e1e1e;
  padding: 0 20px;
  color: #ec3242;
}

.why-join-us .heading p {
  font-size: 18px;
  font-weight: 500;
  width: 60%;
  text-align: center;
}

.joinus-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.joinus-card {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 20px;
  width: 360px;
}

.joinus-card span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  min-width: 48px;
  height: 48px;
  width: 48px;
  background-color: #ffcfd3;
  border-radius: 50%;
}

.joinus-card h1 {
  font-size: 20px;
  font-weight: 700;
}

.joinus-card p {
  font-size: 16px;
  font-weight: 400;
}

.joinus-career .formDiv {
  display: flex;
  flex-direction: row;
  width: calc(100% - 8em);
  margin: 0 auto;
  height: 100%;
}

.formDiv .leftTextWrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.formDiv .leftText {
  display: flex;
  min-width: 480px;
  width: 480px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.formDiv .leftText h1 {
  font-size: 48px;
  font-weight: 700;
  width: 80%;
}

.formDiv .leftText p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
  color: #dddddd;
}
.formDiv .leftText label {
  font-size: 14px;
  font-weight: 600;
  color: #757575;
  font-style: italic;
  margin-top: 60px;
}

.formDiv .rightForm {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formDiv .rightForm form {
  display: flex;
  width: 590px;
  height: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background-color: #fff;
  color: #000;
  padding: 25px 30px;
  border-radius: 10px;
  gap: 16px;
}

.formDiv .rightForm form span {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.formDiv .rightForm form span label {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
}

.formDiv .rightForm form span input {
  background-color: #eeeeee;
  border-radius: 5px;
  border: none;
  width: 100%;
  height: 38px;
  padding: 5px;
}

#fileInput {
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formDiv .rightForm form span textarea {
  background-color: #eeeeee;
  border-radius: 5px;
  border: none;
  width: 100%;
  height: 110px;
  padding: 5px;
  resize: none;
}

.formDiv .rightForm form button {
  width: 135px;
  height: 40px;
  background-color: #ec3242;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: #fff;
  margin-left: auto;
}

@media (max-width: 768px) {
  .joinus-career {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    color: #fff;
    padding-top: 100px;
  }

  .joinus-career .headlineWrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin-bottom: 60px;
  }

  .joinus-career .headline {
    border-left: 3px solid #ec3242;
    padding-left: 10px;
  }

  .joinus-career .headline h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .joinus-career .headline h1 {
    font-size: 20px;
    font-weight: 700;
  }

  .joinus-career .headline p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
  }

  .joinus-career .currentOpenings {
    background-color: #fff;
    color: #000;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 40px 0;
  }

  .joinus-career .currentOpenings .heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .joinus-career .currentOpenings .heading h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }

  .joinus-career .currentOpenings .heading p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    line-height: 20px;
    text-align: center;
  }

  .joinus-career .currentOpenings .opening-grid {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: start;
    overflow-x: scroll;
    width: 100%;
    padding-left: 1em;
  }

  .joinus-career .opening-card {
    min-width: 280px;
    min-height: 360px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    border-radius: 10px;
    background-color: #383838;
    padding: 20px;
    color: #fff;
  }

  .joinus-career .why-join-us {
    width: calc(100% - 2em);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 120px auto 30px auto;
  }

  .why-join-us .heading {
    border: none;
    padding: 0px;
    width: 100%;
  }

  .why-join-us .heading h1 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    background-color: #1e1e1e;
    padding: 0;
    color: #ec3242;
    margin: 0;
  }

  .why-join-us .heading p {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .joinus-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    margin-top: 50px;
    gap: 25px;
  }

  .joinus-card {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 20px;
    width: 100%;
  }

  .joinus-card h1 {
    font-size: 18px;
    font-weight: 700;
  }

  .joinus-card p {
    font-size: 16px;
    font-weight: 400;
  }

  .joinus-career .formDiv {
    display: flex;
    flex-direction: column;
    width: calc(100% - 2em);
    height: 100%;
    border-top: 1px solid #fff;
    padding-top: 60px;
    gap: 20px;
  }

  .formDiv .leftText {
    width: 100%;
    min-width: 0;
  }

  .formDiv .leftText h1 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
  }

  .formDiv .leftText p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
    color: #dddddd;
  }
  .formDiv .leftText label {
    font-size: 14px;
    font-weight: 600;
    color: #757575;
    font-style: italic;
    margin-top: 60px;
    text-align: center;
  }

  .formDiv .rightForm {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .formDiv .rightForm form {
    display: flex;
    width: 590px;
    height: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color: #fff;
    color: #000;
    padding: 16px;
    border-radius: 10px;
    gap: 16px;
  }

  .formDiv .rightForm form span {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .formDiv .rightForm form span label {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
  }

  .formDiv .rightForm form span input {
    background-color: #eeeeee;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: 38px;
    padding: 5px;
  }

  #fileInput {
    height: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .formDiv .rightForm form span textarea {
    background-color: #eeeeee;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: 110px;
    padding: 5px;
    resize: none;
  }

  .formDiv .rightForm form button {
    width: 135px;
    height: 40px;
    background-color: #ec3242;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #fff;
    margin-left: auto;
  }
}

.linkToggled a,
.linkToggled .goto svg {
  color: #ec3242 !important;
  fill: #ec3242 !important;
}

/* Timeline styling   */

.timeline-container {
  margin-top: 5rem;
  padding: 0 1.5em;
  width: 100%;
  margin: 50px auto;
}

.timeline-container .timeline-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.timeline-container .timeline-heading h1 {
  margin-right: 20px;
}

.timeline-container .timeline-heading hr {
  flex-grow: 1;
  border: none;
  height: 2px;
  background-color: #fff;
}

.process {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 40px;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 78px;
  width: 2px;
  height: 80%;
  background-color: white !important;
  z-index: 0;
}

.step {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
  position: relative;
  transition: opacity 0.5s, max-height 0.5s ease-in-out;
}

.step-number-uni {
  background-color: #ec3242 !important;
  color: #fff !important;
  box-shadow: 0 0 10px 1px #ec3242;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #ec3242;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 3em;
  padding: 1em;
  border: 2px solid #ec3242;
  position: relative;
  z-index: 1;
}

.step-content {
  margin-left: 20px;
}

.step-content h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
  width: 90%;
}

.view-more-btn,
.view-less-btn {
  display: block;
  margin: 20px auto;
  background-color: #ec3242;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover,
.view-less-btn:hover {
  background-color: #ff6666;
}

.transparent-box {
  background-color: transparent;
  overflow: hidden;
}

.transparent-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%; /* Adjust this to cover more or less of the bottom */
  /* background: rgba(0, 0, 0, 0.3); Semi-transparent dark overlay */
  background-color: rgba(30, 30, 30, 0.5);
  filter: blur(20px); /* Adjust the blur intensity */
  border-radius: 0 0 8px 8px; /* Match the border radius */
}

/* why-choose-webyapar */

.why-choose-webyapar {
  margin-top: 70px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 3em;
}

.why-choose-webyapar h1 {
  color: #ec3241;
}

.why-choose-webyapar h6 {
  margin-top: 20px;
  color: #000;
}

.why-choose-webyapar-cards {
  margin-top: 40px;
  padding: 2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.why-choose-webyapar-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  width: 70%;
  height: 280px;
  flex-shrink: 0;
  flex-basis: 600px;
}

.why-choose-webyapar-card hr {
  width: 65%;
  border: 1.5px solid #ec3242;
}

.why-choose-webyapar-card .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(#000, #ec3241, #fff, #ec3242);
  -webkit-mask: radial-gradient(closest-side, transparent 85%, white 100%);
  mask: radial-gradient(closest-side, transparent 85%, white 100%);
}

.services-head .left h6 {
  margin-top: 2em;
  font-size: 1.4rem;
}

/* what-we-serve */

.what-we-serve {
  /* background-color: #000; */
  color: #fff;
  display: flex;
  padding: 4em;
  margin: 3rem 0;
}

.what-we-serve .left {
  margin-top: 2rem;
}

.what-we-serve .left h1 {
  font-size: 3.5rem;
  width: 50%;
}
.what-we-serve .left p {
  width: 85%;
  margin-top: 1em;
}

.what-we-serve .right {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.what-we-serve .right .servings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: #383838;
  border-radius: 70px;
  padding: 15px 20px;
  width: 75%;
}

.what-we-serve .right .servings .servings-logo {
  width: 50px;
  height: 50px;
  background-color: #ffc2c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ec3241;
}

/*  Key Offerings */

.key-offerings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.key-offerings .heading {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
}

.key-offerings .heading h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ec3242;
  width: fit-content;
  background-color: #1e1e1e;
  z-index: 4;
  padding: 0 1em;
}

.key-offerings .heading hr {
  width: 100%;
  height: 2px;
  position: absolute;
}

.key-offerings-cards {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2em 0;
}

.key-offerings-card {
  max-width: 400px;
  height: 200px;
  padding: 1.5em;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.key-offerings-card p {
  margin-top: 1em;
}

.key-offerings-custom-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-offerings-custom-heading hr {
  height: 1px;
  background-color: #757575;
  width: 40%;
  border: none;
  margin-left: 20px;
}

.key-offerings .desc {
  width: 100%;
  padding: 0px 3em;
}
/* Webyapar Info  */

.webyapar-info {
  margin: 5em 2em;
  padding: 0 3rem;
}

.webyapar-info h4 {
  text-align: center;
}

.webyapar-info .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

/* why-choose-webyapar-wrapper */

.why-choose-webyapar-wrapper {
  margin: 1em 4em;
}

/* Explore Pricing  */

.explore-pricing {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.explore-pricing .heading {
  text-align: center;
  margin: 2em 0;
}

.pricing-desc {
  border: 2px solid #cbcbcb;
  padding: 0.3em 0.5em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}

.pricing-desc-box-one {
  padding: 0.5em 1em;
  background-color: #cbcbcb;
  color: #000;
  border-radius: 6px;
  width: 200px;
}

.pricing-desc-box-two {
  background-color: #000;
  padding: 0.5em 1em;
  border-radius: 6px;
}

.pricing-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 5rem;
}

.pricing-card {
  width: 400px !important;
  border: 2px solid #c0c0c0;
  border-top: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.pricing-cards .pricing-card .card-heading {
  background-color: #ec3242;
  color: #fff;
}

.pricing-cards .pricing-card .card-heading h4 {
  padding: 5px 25px;
  margin-top: 10px;
}

.card-pricing {
  padding: 5px 20px;
}

.card-pricing .price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.card-pricing .price h1 {
  font-size: 3.5rem;
  font-weight: bolder;
  color: #ec3241;
}

.card-pricing .price h6 {
  margin-bottom: 20px;
  color: #626262;
}

.pricing-card .card-features {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 15px;
  margin-bottom: 1rem;
}
.pricing-card .card-data {
  padding: 0px 20px;
}

.data-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.data-points .data-point {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.data-points .data-point-hybrid {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.data-points .data-point-hybrid .price-tip {
  background-color: #ec324157;
  padding: 5px 12px;
  border-radius: 15px;
}

.data-points .price-gst {
  color: #00c208;
  margin: 10px 0;
  text-align: right;
  font-size: 0.9rem;
  margin-bottom: 12rem;
}

.data-points .data-point i {
  margin-right: 5px;
  color: #ec3241;
}

.get-started-btn {
  padding: 10px 20px;
  align-self: center;
  margin: 1em 0;
  width: 300px;
  border: none;
  border-radius: 10px;
  background-color: #ec3242;
  color: #fff;
  font-weight: bolder;
  padding: 15px 0;
}

/* Card Desc  */

.card-desc {
  padding: 3em;
}

.card-desc h3 {
  width: 50%;
}

.card-desc h5 {
  margin-top: 1em;
  color: #ec3242;
}

/* Support System  */

.support-system {
  padding: 1em 2em;
  background-color: #fff;
  margin: 5rem 0;
}

.support-system .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec3241;
}

.support-system .heading hr {
  height: 1.5px;
  background-color: #1d1d1d;
  width: 60%;
  border: none;
  margin-right: 20px;
}

.support-system .support-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 3rem 0;
}

.support-system .support-cards .support-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #616161;
  color: #000;
  padding: 1em;
  width: 40%;
  border-radius: 15px;
  height: 280px;
}

.support-system .support-cards .support-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background-color: #ffc2c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec3241;
  font-size: 2rem;
}

/* Security Com (Security Compliance) */

.security-com .heading {
  padding: 0 2em;
}

.security-com .heading h2 {
  text-align: center;
  background-color: inherit;
  position: relative;
}

.security-com .heading h2::before {
  content: "";
  width: 35%;
  background-color: #616161;
  height: 2px;
  z-index: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

.security-com .heading h2::after {
  content: "";
  width: 35%;
  background-color: #616161;
  height: 2px;
  z-index: 0;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}

.security-com {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1 em;
}
.security-com .security-com-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 2rem;
}
.security-com-boxes .security-com-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.security-com-box .logo {
  width: 60px;
  height: 60px;
  background-color: #ffc2c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ec3241;
}

.security-com-box .data {
  width: 80%;
}

.security-com-box .data p {
  width: 70%;
}

.lead-generation {
  position: relative;
  border: 1px solid #fff;
  margin: 5em 3em;
  border-left: none;
}

.lead-generation h2 {
  color: white;
  position: absolute;
  top: -20px;
  background-color: #1e1e1e;
  padding: 0 1rem;
}

.lead-generation-data-cards {
  padding: 8rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lead-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 35%;
}

.lead-card .lead-data p {
  width: 75%;
}

.white-data-section {
  margin-top: 2rem;
  width: 100%;
  padding: 5em 3em;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.white-data-section h2 {
  font-weight: bold;
}

.case-study {
  padding: 3em;
}

.study-data-one {
  text-align: center;
  margin-top: 10rem;
}

.study-data-two {
  margin-top: 10rem;
}

.study-data-two p {
  text-align: center;
  margin-top: 1rem;
}

.case-study .study-data-two .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study .study-data-two .heading hr {
  height: 2px;
  background-color: #616161;
  width: 70%;
  border: none;
  margin-right: 20px;
}

.study-data-three {
  border: 1px solid #ec3242;
  padding: 3em;
  text-align: center;
  margin-top: 10rem;
  position: relative;
  box-shadow: 0 0 10px #ec3242;
}

.study-data-three::before {
  content: "";
  display: block;
  border: 24px solid #1e1e1e;
  position: absolute;
  width: 90%;
  top: -13px;
  right: -9px;
  height: 64px;
  border-left: none;
  border-bottom: none;
  z-index: 10;
  opacity: 0.8;
}

.study-data-three::after {
  content: "";
  display: block;
  border: 10px solid #1e1e1e;
  position: absolute;
  width: 90%;
  bottom: -1px;
  height: 60px;
  left: 0px;
  border-top: none;
  border-right: none;
}

.study-data-three p {
  margin-top: 1rem;
}

/* Manage Plans  */
.manage-plans .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manage-plans .heading hr {
  height: 1.5px;
  background-color: #d4d4d4;
  width: 50%;
  border: none;
  margin-left: 20px;
}

.manage-plans-wrapper {
  display: flex;
}

.manage-plans-wrapper .col-md-6 .table {
  --bs-table-bg: #ec3242 !important;
  --bs-table-color: white !important;
  overflow: hidden;
}

.manage-plans-wrapper .col-md-6 table td {
  padding: 1rem;
}

.manage-plans-wrapper .col-md .table {
  --bs-table-bg: #000 !important;
  --bs-table-color: white !important;
  overflow: hidden;
  --bs-table-border-color: #2d2d2d;
}

.manage-plans-wrapper .col-md table td {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manage-plans-wrapper .col-md table thead {
  --bs-table-bg: #2d2d2d !important;
}

/* New Homepage Styling  */

.landing-section {
  position: relative;
}

.landing-section .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.landing-section .heading .heading-com {
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px red;
  text-align: center;
}

.landing-section .heading h1 {
  text-align: center !important;
  width: 50%;
}

.model {
  padding: 1rem 0 4rem 0;
  display: flex;
  justify-content: flex-end;
  overflow-x: hidden;
  margin-top: 6rem;
  z-index: 1;
}

.model:before {
  content: "";
  position: absolute;
  border: 10px solid #383838;
  width: 100%;
  bottom: 50px;
}

.train {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 50px;
  animation: moveTrain 15s infinite linear;
}

/* Train engine */

.engine {
  position: relative;
  z-index: 10;
}

.engine .train-engine {
  width: 420px;
}

.engine .wheel {
  position: absolute;
  display: flex;
  gap: 10px;
  bottom: 4px;
  left: 140px;
  z-index: -1;
}

.engine .wheel img {
  width: 65px;
  height: 65px;
  animation: moveWheels 3s infinite linear;
}

.carriage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carriage .content {
  position: absolute;
  display: flex;
  font-size: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  top: 38%;
  left: 20%;
  color: white;
}

.train .carriage img {
  width: 270px;
}

.carriage .wheel {
  position: absolute;
  z-index: -1;
  bottom: -15px;
  left: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

.carriage .wheel img {
  width: 72px;
  height: 72px;
  animation: moveWheels 3s infinite linear;
  border-radius: 50%;
}

@keyframes moveWheels {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes moveTrain {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-150%);
  }
}

.expertise-section {
  margin: 1rem;
  padding: 0 3rem;
}

.expertise-head {
}

.expertise-heading {
  color: white;
  margin-top: 1rem;
}

.expertise-tip {
  padding: 5px 20px;
  background-color: #ff8e97;
  width: 150px;
  text-align: center;
  color: #ec3241;
  border-radius: 5px;
}

.expertise-section .expertise-cards .expertise-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  background-color: #383838;
  padding: 20px;
  border-radius: 10px;
  height: 400px;
  width: 30% !important;
}

.expertise-cards .expertise-card hr {
  width: 100%;
  background-color: #8f8f8f;
  height: 2px;
  margin: 0 !important;
}

.expertise-cards .expertise-card a {
  color: #ec3241;
  text-decoration: none;
}

.priority {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Who we are  */

.who-we-are-new {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
}

.who-we-are-new .content {
  background: linear-gradient(
    0deg,
    hsla(355, 100%, 78%, 1) 35%,
    hsla(355, 100%, 57%, 1) 89%
  );
  text-align: center;
  color: white;
  padding: 3rem;
  border-radius: 12px;
}

.who-we-are-new .content h2 {
  margin-bottom: 2rem;
}

/* Priority Section */
.priority {
  background-color: white;
  color: #000;
  justify-content: space-around;
  padding: 0 4rem;
  overflow: hidden;
}
.priority .priority-content {
  width: 50%;
}

.priority-imgs .image-grid {
  display: flex;
  gap: 20px;
}

.priority-imgs .image-grid .grid-strips {
  display: flex;
  flex-direction: column;
  height: 300px;
  /* overflow: hidden; */
  justify-content: center;
}

.priority-imgs .image-grid .grid-strips img {
  width: 100px;
  border-radius: 5px;
}

.grid-strips:nth-child(1) {
  gap: 20px;
}

.grid-strips:nth-child(2) {
  gap: 30px;
  padding: 10px;
}

.grid-strips:nth-child(3) {
  gap: 20px;
}
.update-insight {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 5rem 0;
}

.update-insight .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.update-insight .content .content-data {
  width: 50%;
}

.content-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 30%;
}

.content-btns .content-btn {
  background-color: #383838;
  padding: 12px;
  width: 215px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-btn .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff8e97;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.content-btns .content-btn:hover {
  border: 1.3px solid #ec3241;
}

.content-btns .content-btn:hover .icon {
  background-color: #ec3241;
}
.content-btns .content-btn:hover .icon i {
  transform: rotate(-50deg);
  color: white;
}

.update-card {
  border: 1px solid #959595;
  border-radius: 15px;
  overflow: hidden;
  width: 300px !important;
}

.update-cards-wrapper {
  justify-content: center !important;
}

/* Join-our-team-home  */

.join-our-team-home {
  text-align: center;
  background-color: white;
  color: black;
  padding: 3rem;
}

.join-our-team-home-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 2rem 0;
}
.join-our-team-home-btn:nth-child(1) {
  background-color: #ec3241;
  color: white;
}
.join-our-team-home-btn:nth-child(2) {
  border: 1px solid #ec3241;
  color: #ec3241;
}
.join-our-team-home-btn {
  padding: 10px 20px;
  border-radius: 5px;
  width: 200px;
}

/* Commitment Section  */

.commitment {
  padding: 3rem;
}

.commitment .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec3241;
}

.commitment .heading hr {
  height: 2px;
  background-color: #c0c0c0;
  width: 60%;
  border: none;
  margin-left: 20px;
}

.commitment-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.commitment-imgs img {
  max-width: 300px;
  height: 275px;
}

.smoke-container {
  position: absolute;
  top: -20px;
  left: 25%;
  transform: translateX(-50%);
}

.smoke {
  width: 20px;
  height: 20px;
  /* background : url(./images/logos/B-letter-logo.png); */
  background-color: rgba(128, 128, 128, 0.7);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  animation: smoke-animation 3s linear infinite;
}

@keyframes smoke-animation {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(50px) translateY(-50px) scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translateX(80px) translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

/* Media Queries  */

@media screen and (max-width: 768px) {
  .why-choose-webyapar-wrapper {
    margin: 0;
  }

  .why-choose-webyapar {
    margin-top: 50px;
    padding: 1em;
  }

  .why-choose-webyapar-cards {
    padding: 0.5em 0;
    flex-direction: column;
    margin-top: 20px;
  }

  .why-choose-webyapar-card {
    width: 100%;
    flex-basis: 300px;
  }

  .what-we-serve {
    flex-direction: column;
    padding: 1.5em;
  }

  .what-we-serve .left h1 {
    font-size: 2.5rem;
    width: 100%;
  }
  .what-we-serve .left p {
    width: 100%;
    margin-top: 1em;
  }

  .what-we-serve .right {
    width: 100%;
  }

  .what-we-serve .right .servings {
    width: 100%;
    margin-top: 30px;
  }

  .key-offerings-cards {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .timeline-container {
    padding: 0 0.5em;
  }

  .process {
    margin-left: 0;
  }

  .process::before {
    left: 38px;
    height: 82%;
  }

  .step-number {
    margin: 0 1em;
  }

  /*  */
  .webyapar-info .img img {
    width: 500px;
    border-radius: 10px;
  }

  .card-desc {
    padding: 1em;
  }

  .card-desc h3 {
    width: auto;
  }

  .support-system .support-cards {
    flex-direction: column;
  }

  .support-system .support-cards .support-card {
    width: auto;
    height: auto;
  }

  .security-com .security-com-boxes {
    margin: 2rem 1rem;
    flex-direction: column;
    gap: 20px;
  }

  .security-com-box .data p {
    width: 90%;
  }

  .security-com .heading h2::after,
  .security-com .heading h2::before {
    display: none;
  }

  .lead-generation-data-cards {
    flex-direction: column;
    gap: 20px;
    padding: 5rem 1rem;
  }

  .lead-card {
    width: auto;
  }

  .white-data-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 5em 1em;
  }

  .white-data-section .right {
    width: auto !important;
  }

  .case-study .study-data-two .heading {
    flex-direction: column;
  }

  .case-study .study-data-two .heading hr {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  /* Pricing Card  */
  .pricing-cards {
    justify-content: flex-start;
    padding: 2em;
    gap: 0px;
  }

  .pricing-card {
    width: 500px;
  }

  .landing-section .heading .heading-com {
    font-size: 24px;
  }

  .update-insight .content .content-data {
    width: 100%;
  }

  .update-insight .content {
    flex-direction: column;
  }

  .content-btns {
    flex-direction: column;
    width: auto;
  }

  .join-our-team-home {
    padding: 1rem;
  }

  .join-our-team-home-btn {
    padding: 10px 0;
  }

  .commitment-imgs {
    justify-content: flex-start;
    overflow-x: scroll;
  }

  .priority {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .priority-content {
    width: 90% !important;
  }

  .image-grid {
    flex-direction: column;
  }

  .priority-imgs .image-grid .grid-strips {
    flex-direction: row;
    height: auto;
  }

  .grid-strips:nth-child(3) {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
  }

  .update-cards-wrapper {
    justify-content: flex-start !important;
  }

  .landing-section .heading h1 {
    width: auto;
    margin-top: 3rem;
  }

  .expertise-head {
    padding: 0px;
  }

  .expertise-section {
    padding: 0 0.5rem;
  }

  .expertise-section .expertise-cards .expertise-card {
    width: 90% !important;
  }

  .features-grid-item-custom {
    height: 250px !important;
  }
}

@media screen and (max-width: 500px) {
  .webyapar-info {
    margin: 4em 1em;
  }

  .webyapar-info .img img {
    width: 300px;
  }
  .support-system .heading hr {
    display: none;
  }
  .support-system .heading h1 {
    text-align: left;
  }

  .lead-generation {
    margin: 4em 1em;
  }

  .lead-generation h2 {
    padding: 0 0rem;
    width: 85%;
  }

  .pricing-card {
    width: 390px !important;
  }

  .about-companyOverview .redesign h1 {
    font-size: 1.2rem;
  }
  .about-companyOverview .redesign img {
    width: 24px;
  }
  .about-companyOverview .redesign h4 {
    font-size: 1rem;
  }
}

/* Utility Classes for preventing class colision */

.basis-440 {
  flex-basis: 440px !important;
}

.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .basis-440 {
    flex-basis: 240px !important;
  }

  .w-40 {
    position: static !important;
    width: auto !important;
    transform: translateX(0) !important;
  }
}
