/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* common css */
:root {
  --primary-color: #904bff;
  --secondary-color: #222222;
  --light-dark: #070c24;
  --premium-dark: #2c2c2c;
  --light-primary: #ded4ff;
  --lighter-primary: #eee8ff;
  --playfair: "Playfair Display", serif;
  --outfit: "Outfit", sans-serif;
  --white-color: #ffffff;
}
body {
  padding-top: 86px;
  font-family: var(--playfair);
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  margin: 0px;
}
ul {
  list-style: none;
  padding: 0px;
  font-family: var(--outfit);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--playfair);
  color: var(--secondary-color);
}
h1 {
  font-size: 64px;
  line-height: 96px;
  font-weight: 500;
}
h1.medium-heading {
  font-size: 60px;
  line-height: 72px;
}
h2 {
  font-size: 44px;
  line-height: 60px;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 36px;
  line-height: 48px;
}
h4 {
  font-size: 32px;
  line-height: 48px;
}
h5 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: var(--black-opacity);
}
h6 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.6px;
  font-family: var(--outfit);
  font-weight: 600;
  text-transform: uppercase;
}
p {
  font-size: 16px;
  line-height: 28px;
  font-family: var(--outfit);
}
.section-title {
  font-size: 36px;
  line-height: 50px;
}
.small-text {
  font-size: 14px;
  line-height: 20px;
}
.medium-text {
  font-size: 18px;
  line-height: 32px;
  color: var(--secondary-color);
}
.big-text {
  font-size: 20px;
  line-height: 32px;
  color: var(--secondary-color);
}
.sub-title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}
.sub-title.big-title {
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 28px;
  line-height: 68px;
  text-transform: unset;
}
.common-btn {
  padding: 16px 24px;
  background-color: var(--primary-color);
  font-family: var(--outfit);
  border: 1px solid var(--primary-color);
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: var(--white-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition-duration: 0.3s;
  text-transform: capitalize;
  text-align: center;
}
.common-btn img {
  filter: brightness(6);
  transition-duration: 0.3s;
}
.common-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.common-btn:hover img {
  filter: brightness(1);
}
.common-btn.white-btn {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary-color);
}
.common-btn.white-btn:hover {
  border-color: var(--white-color);
  color: var(--white-color);
  background-color: transparent;
}
.common-btn:disabled {
  background-color: #f0f3f9;
  border-color: #f0f3f9;
  color: #afbaca;
}
.common-btn.border-btn {
  border-color: var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}
.common-btn.border-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.contact-us-btn {
  width: 150px;
}
.white-title {
  color: var(--white-color);
}
img {
  max-width: 100%;
}
.common-padding {
  padding-block: 120px;
}
.title-section h6,
.title-section em {
  color: var(--primary-color);
}
.title-section h6 {
  margin-bottom: 24px;
}
.title-section h2 {
  font-size: 44px;
  line-height: 60px;
}
.fw-300 {
  font-weight: 200;
}
.play-text {
  font-family: var(--playfair);
}
address {
  margin: 0px;
  font-family: var(--outfit);
}

/* header css */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}
header .navbar {
  padding: 18px 0px;
}
header .navbar-brand {
  margin: 0px;
  padding: 0px;
}
.navbar-expand-md .navbar-nav .nav-link {
  padding: 0px;
}
header .navbar-nav .nav-item {
  margin: 0px 16px;
}
header .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}
header .navbar-nav .nav-link {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--outfit);
  text-transform: capitalize;
  color: var(--secondary-color);
  font-weight: 500;
  transition-duration: 0.3s;
  text-align: center;
}
header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
  color: var(--primary-color);
}
header .navbar-nav .nav-link.active {
  font-weight: 700;
}
header .navbar-nav .nav-item:last-child .nav-link {
  padding: 14px 20px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
header .navbar-nav .nav-item:last-child .nav-link img {
  filter: brightness(6);
  transition-duration: 0.3s;
}
header .navbar-nav .nav-item:last-child .nav-link:hover {
  background-color: transparent;
  color: var(--primary-color);
}
header .navbar-nav .nav-item:last-child .nav-link:hover img {
  filter: brightness(1);
}
header .navbar-brand img {
  max-height: 36px;
}
/* header css */

/* home page css */
/* banner */
.banner-section {
  background: url(../images/home-banner.jpg) no-repeat center center / cover;
  min-height: calc(80svh - 86px);
  position: relative;
}
.banner-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
}
.banner-section h6,
.banner-section h1 {
  color: var(--white-color);
}
.banner-section h1 {
  margin-top: 20px;
}
/* banner */
/* counter */
.counter-section {
  padding-block: 40px;
  background-color: var(--primary-color);
}
.counter-section .d-flex {
  gap: 16px;
}
.counter-digit {
  color: var(--white-color);
  font-family: var(--playfair);
}
.conter-desc {
  margin-top: 10px;
  color: var(--white-color);
  font-family: var(--outfit);
  letter-spacing: 0.8px;
}
/* counter */
/* who we section */
.who-we-section {
  padding-block: 200px;
}
.who-we-section h2 {
  margin-bottom: 24px;
}
.who-we-section .fw-300 {
  margin-bottom: 30px;
}
.who-we-list ul,
.who-we-list li {
  list-style: disc inside;
}
.who-we-img-sec {
  gap: 16px;
}

.who-img {
  transition: 0.5s ease;
  padding-top: 82%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  width: 50%;
  position: relative;
}

.who-img-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.who-img-2:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.who-img-2:hover::after {
  content: "\f08c";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 90%;
  left: 20%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  color: #0077b5;
  font-size: 36px;
  z-index: 1;
}

.who-we-img-sec > div:first-child {
  transform: translateY(-72px);
}
.who-we-img-sec > div:nth-child(2) {
  transform: translateY(72px);
}
/* who we section */
/* why choose section */
.service-card-list {
  margin-top: 80px;
}
.why-choose {
  background-color: #fdfaff;
}
.choose-card {
  padding: 40px;
  border: 1px solid var(--primary-color);
  height: 100%;
  border-radius: 1.25rem;
}
.choose-card h3 {
  margin: 80px 0px 16px;
}
/* why choose section */
/* partner section start */
.partner-card {
  gap: 24px;
}
.partner-img {
  padding-top: 76%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.partner-img img,
.empoer-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-desc {
  gap: 16px;
  padding-bottom: 40px;
}
.middle-partner-card {
  padding-block: 96px;
}
.partner-list {
  max-width: 480px;
  margin: 0px auto;
}
.partner-list {
  gap: 80px;
}
/* partner section start */
/* empowring section */
.empowring-section,
.work-banner {
  background-color: var(--primary-color);
  position: relative;
}
.empowring-section {
  padding-bottom: 215px;
}
.empowring-section::before,
.work-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
}
.empowring-section .title-section p {
  margin-top: 24px;
}
.empoer-img {
  max-width: 546px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.ml-auto {
  margin-left: auto;
}
.empower-card-list {
  position: relative;
  margin-top: -120px;
}
.empower-card {
  padding: 40px;
  gap: 40px;
  height: 100%;
  background-color: var(--white-color);
  border: 1px solid #dacce6;
  border-radius: 20px;
}
/* empowring section */
/* investor css */
.investor-section {
  padding: 98px 0px 108px;
}
.investor-logo {
  padding-top: 85px;
}
/* investor css */
/* home page css */

/* meet team page css */
.who-we-section.founder-section {
  padding-block: 126px;
}
.journy-card {
  max-width: 320px;
}
.journy-card h5 {
  margin: 40px 0px 8px;
  font-size: 24px;
  line-height: 28px;
  font-family: var(--playfair);
  color: var(--primary-color);
  font-weight: 600;
}
.journy-card p {
  color: var(--light-dark);
  line-height: 28px;
  opacity: 0.7;
}
.our-journy .row > div {
  margin-top: 80px;
}
.join-desc {
  margin: 20px 0px 40px;
  max-width: 468px;
  gap: 30px;
}
.join-section p {
  color: var(--secondary-color);
}
.join-section p a {
  font-weight: 700;
  color: var(--primary-color);
}
.join-section .join-right-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
/* meet team page css */

/* our work page css */
.work-banner,
.work-section {
  padding-block: 100px;
}
.work-section .partner-card {
  gap: 20px;
  text-decoration: unset;
}
.work-section .partner-card .partner-img {
  padding-top: 74%;
}
.work-section .partner-card h4 {
  font-size: 24px;
  line-height: 40px;
  color: var(--premium-dark);
}
.work-list {
  margin-top: -80px;
}
.work-list > div {
  margin-top: 80px;
}
.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
}
.fancybox-show-thumbs .fancybox-inner {
  right: 0px !important;
}
.brand-locations {
  display: flex;
  align-items: center;
}
/* our work page css */

/* footer css start */
footer {
  padding-block: 80px;
  background-color: var(--secondary-color);
}
.contact-text {
  margin-block: 40px;
}
.contact-email {
  gap: 40px;
}
.contact-email .email-label {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.contact-email .big-text {
  font-family: var(--playfair);
}
.office-section {
  gap: 8px;
  max-width: 280px;
  width: 100%;
  margin-left: auto;
}
.office-list {
  gap: 40px;
}
.office-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.copyright-section {
  padding-top: 80px;
  margin-top: 80px;
  border-top: 1px solid #d8d6d9;
}
.copyright-section p {
  color: rgba(255, 255, 255, 0.7);
}
.footer-social p {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  display: inline-block;
}
.footer-social p::before {
  content: "";
  width: 64px;
  height: 1px;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 16px);
}
.socia-list {
  padding-left: 104px;
  gap: 24px;
}
.socia-list a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
  text-decoration: none;
}
.socia-list a img,
.socia-list a i {
  filter: brightness(1);
  transition-duration: 0.3s;
  color: var(--primary-color);
}
.socia-list a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.socia-list a:hover img,
.socia-list a:hover i {
  filter: brightness(6);
}
/* footer css end */

/* media qury */
@media (min-width: 1400px) {
  .container {
    max-width: 1216px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  /* product page css */
  .banner-section.product-banner img {
    max-width: 40%;
    right: -30px;
  }
  .link-sec a {
    word-break: break-all;
  }
  /* product page css */

  /* partner page css */
  .control-img {
    max-width: 48%;
  }
  .join-section .join-right-img {
    max-width: 60%;
  }
  /* partner page css */
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* common css */
  body {
    padding-top: 74px;
  }
  h1 {
    font-size: 54px;
    line-height: 64px;
  }
  .title-section h2 {
    font-size: 40px;
    line-height: 50px;
  }
  h1.medium-heading {
    font-size: 48px;
    line-height: 56px;
  }
  h2 {
    font-size: 44px;
    line-height: 54px;
  }
  h3 {
    font-size: 32px;
    line-height: 42px;
  }
  h4 {
    font-size: 20px;
    line-height: 32px;
  }
  h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .sub-title.big-title {
    font-size: 18px;
    line-height: 28px;
  }
  .common-btn {
    padding: 12px 14px;
  }
  .section-title {
    font-size: 34px;
    line-height: 44px;
  }
  .common-padding {
    padding-block: 60px;
  }
  .common-padding-square {
    padding: 60px;
  }
  /* common css */

  /* header css */
  header .navbar {
    padding: 12px 0px;
  }
  header .navbar-nav .nav-link {
    min-width: 80px;
  }
  .grow-content .medium-text.main-para br {
    display: none;
  }
  .iphone-img {
    max-width: 46%;
  }
  /* header css */

  /* home css */
  /* banner css */
  .banner-section {
    min-height: calc(70svh - 74px);
  }
  .who-we-section {
    padding-block: 170px;
    padding-bottom: 100px;
  }
  .service-card-list {
    margin-top: 60px;
  }
  .choose-card {
    padding: 30px;
  }
  .choose-card h3 {
    margin: 50px 0px 14px;
  }
  .empowring-section {
    padding-bottom: 160px;
  }
  .empower-card {
    padding: 30px;
    gap: 30px;
    height: 100%;
  }
  footer {
    padding-block: 60px;
  }
  .copyright-section {
    padding-top: 60px;
    margin-top: 60px;
  }
  .join-section .join-right-img {
    max-width: 50%;
  }
  /* banner css */
  /* home css */
}
@media (min-width: 768px) and (max-width: 991px) {
  /* common css */
  body {
    padding-top: 64px;
  }
  h1 {
    font-size: 38px;
    line-height: 48px;
  }
  h1.medium-heading {
    font-size: 32px;
    line-height: 42px;
  }
  h2 {
    font-size: 32px;
    line-height: 42px;
  }
  h3 {
    font-size: 24px;
    line-height: 34px;
  }
  h4 {
    font-size: 16px;
    line-height: 26px;
  }
  h5 {
    font-size: 16px;
    line-height: 26px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-title {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .sub-title.big-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
  }
  .common-btn {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 22px;
  }
  .section-title {
    font-size: 26px;
    line-height: 36px;
  }
  .common-padding {
    padding-block: 60px;
  }
  .common-padding-square {
    padding: 60px;
  }
  .big-text {
    font-size: 18px;
    line-height: 30px;
  }
  .medium-text {
    font-size: 16px;
    line-height: 24px;
  }
  .title-section h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .title-section h6 {
    margin-bottom: 14px;
  }
  /* common css */

  /* header css */
  header .navbar {
    padding: 15px 0px;
  }
  header .navbar-nav .nav-link {
    min-width: 50px;
  }
  header .navbar-nav .nav-item:last-child .nav-link {
    padding: 6px 10px;
    min-width: auto;
    font-size: 12px;
    line-height: 16px;
  }
  .navbar-brand img {
    max-width: 70%;
  }
  header .navbar-nav .nav-link {
    font-size: 14px;
    line-height: 22px;
  }
  /* header css */

  /* home css */
  /* banner css */
  .banner-section {
    min-height: calc(100svh - 64px);
  }
  .banner-section h1 {
    margin-top: 16px;
  }
  .conter-desc br {
    display: none;
  }
  .who-we-section {
    padding-block: 150px;
  }
  .who-we-section h2 {
    margin-bottom: 18px;
  }
  .who-we-section .fw-300 {
    margin-bottom: 20px;
  }
  .service-card-list {
    margin-top: 40px;
  }
  .choose-card {
    padding: 20px;
  }
  .choose-card h3 {
    margin: 50px 0px 14px;
  }
  .middle-partner-card {
    padding-block: 38px;
  }
  .partner-list {
    gap: 50px;
  }
  .empowring-section {
    padding-bottom: 150px;
  }
  .empower-card {
    height: 100%;
    padding: 20px;
    gap: 28px;
  }
  .investor-section {
    padding: 68px 0px 68px;
  }
  .investor-logo {
    padding-top: 55px;
  }
  /* banner css */
  /* home css */

  /* meet the team css */
  .who-we-section.founder-section {
    padding-bottom: 60px;
  }
  .our-journy .row > div {
    margin-top: 40px;
  }
  .our-journy .row > div img {
    max-width: 80px;
  }
  .join-section .join-right-img {
    max-width: 50%;
  }
  /* meet the team css */

  /* our work page css */
  .work-banner,
  .work-section {
    padding-block: 80px;
  }
  .work-list {
    margin-top: -40px;
  }
  .work-list > div {
    margin-top: 40px;
  }
  .work-section .partner-card h4 {
    font-size: 22px;
    line-height: 32px;
  }
  /* our work page css */

  /* footer css */
  footer {
    padding-block: 60px;
  }
  .socia-list {
    padding-left: 64px;
    gap: 14px;
  }
  .footer-social p::before {
    width: 40px;
    left: calc(100% + 5px);
  }
  .copyright-section {
    padding-top: 50px;
    margin-top: 50px;
  }
  /* footer css */
}
@media (max-width: 767px) {
  /* common css */
  body {
    padding-top: 50px;
  }
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h2 {
    font-size: 24px;
    line-height: 36px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  h4 {
    font-size: 18px;
    line-height: 30px;
  }
  h5 {
    font-size: 20px;
    line-height: 28px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-title {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 18px;
  }
  .sub-title.big-title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .common-btn {
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .section-title {
    font-size: 24px;
    line-height: 34px;
  }
  .common-padding {
    padding-block: 40px;
  }
  .common-padding-square {
    padding: 40px;
  }
  .big-text {
    font-size: 16px;
    line-height: 28px;
  }
  .medium-text {
    font-size: 14px;
    line-height: 26px;
  }
  h1.medium-heading {
    font-size: 30px;
    line-height: 42px;
  }
  .title-section h6 {
    margin-bottom: 12px;
  }
  .title-section h2 {
    font-size: 26px;
    line-height: 38px;
  }
  /* common css */

  /* header css */
  header .navbar {
    padding: 10px 0px;
  }
  .navbar-toggler {
    padding: 0px;
    border: transparent;
  }
  .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 22px;
  }
  .navbar-brand img {
    max-width: 80%;
  }
  .navbar-nav {
    padding-top: 20px;
    margin-top: 15px;
    height: 100vh;
    background: var(--blue-bg);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  header .navbar-nav .nav-item {
    margin: 8px 0px;
  }
  header .navbar-nav .nav-link {
    min-width: auto;
  }
  /* header css */

  /* home css */
  /* banner css */
  .banner-section {
    min-height: calc(50svh - 50px);
  }
  .banner-section h1 {
    margin-top: 12px;
  }
  /* banner css */
  /* counter css */
  .counter-section {
    padding-block: 20px;
  }
  .counter-section .d-flex {
    justify-content: center;
  }
  /* counter css */
  /* who we css */
  .who-we-section .row > div:first-child {
    margin-top: 100px;
    order: 2;
  }
  .who-we-section {
    padding-top: 130px;
    padding-bottom: 40px;
  }
  .who-we-section h2 {
    margin-bottom: 16px;
  }
  .who-we-section .fw-300 {
    margin-bottom: 20px;
  }
  .choose-card {
    padding: 30px;
  }
  .choose-card h3 {
    margin: 40px 0px 14px;
  }
  .service-card-list {
    margin-top: 0px;
  }
  .service-card-list > div {
    margin-top: 30px;
  }
  .middle-partner-card {
    padding-block: 48px;
    padding-bottom: 30px;
  }
  .partner-card {
    gap: 20px;
  }
  .partner-list {
    padding-top: 50px;
    gap: 50px;
  }
  .empowring-section {
    padding-bottom: 150px;
  }
  .empower-card {
    padding: 30px;
    gap: 30px;
  }
  .empower-card-list .row > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .investor-section {
    padding: 60px 0px;
  }
  .investor-logo {
    padding-top: 40px;
    gap: 20px;
  }
  /* who we css */
  /* home css */

  /* meet the team css */
  .who-we-section.founder-section {
    padding-bottom: 100px;
    padding-bottom: 40px;
  }
  .our-journy .title-section {
    margin-bottom: 30px;
  }
  .our-journy .row > div {
    margin-top: 30px;
  }
  .our-journy .row > div img {
    max-width: 80px;
  }
  .journy-card {
    max-width: 100%;
  }
  .journy-card h5 {
    margin-top: 30px;
  }
  .join-section .join-right-img {
    margin-top: 20px;
    position: static;
    transform: unset;
    top: auto;
    right: auto;
  }
  /* meet the team css */

  /* our work page css */
  .work-banner,
  .work-section {
    padding-block: 60px;
  }
  .work-banner h2 br {
    display: none;
  }
  .work-list {
    margin-top: -30px;
  }
  .work-list > div {
    margin-top: 30px;
  }
  .work-section .partner-card h4 {
    font-size: 20px;
    line-height: 30px;
  }
  /* our work page css */

  /* footer css */
  footer {
    padding-block: 40px;
  }
  .socia-list {
    padding-left: 70px;
    gap: 12px;
  }
  .footer-social p::before {
    width: 44px;
    left: calc(100% + 10px);
  }
  .contact-text {
    margin-block: 26px;
  }
  .contact-email,
  .office-list {
    gap: 20px;
  }
  .office-section {
    margin-top: 30px;
    max-width: 100%;
  }
  .copyright-section {
    margin-top: 40px;
    padding-top: 40px;
  }
  .copyright-section .row {
    flex-direction: column-reverse;
    gap: 20px;
  }
  /* footer css */
}

/* become a genie page css start */
.become-a-genie-page {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-container {
  width: 500px;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.step {
  display: none;
}
.step.active {
  display: block;
  margin-top: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.file-input-button-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

textarea {
  width: 100%;
  border: 1px solid;
  padding: 10px;
}

input::file-selector-button {
  padding: 10px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: white;
  cursor: pointer;
}

input:not([type="file"]),
select {
  width: 100%;
  min-height: 2em;
  max-height: 4em;
  height: 3em;
  border: 1px solid;
  padding: 10px;
}

.btns-flex {
  margin-top: 30px;
  display: flex;
  justify-content: end;
  gap: 10px;
  font-family: var(--outfit);
}

.next-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
}
.prev-btn {
  padding: 10px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  cursor: pointer;
}

.page-and-h6 {
  display: flex;
  justify-content: space-between;
}
.page-h6 {
  color: var(--primary-color);
}

.checkboxes {
  margin: 20px 0px;
}

.checkbox-row {
  display: flex;
  gap: 20px;
  font-family: var(--outfit);
}
.checkbox {
  width: 200px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* contact us css */
.contact-us-img {
  padding-top: 82%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  width: 50%;
  position: relative;
}
.contact-us-email-icon i {
  color: var(--primary-color);
  border-radius: 100%;
  background-color: var(--light-primary);
  padding: 8px;
}
.contact-us-email-icon i:hover {
  background-color: var(--lighter-primary);
}
.contact-us-email-icon-border {
  border-radius: 100%;
  padding: 2px;
}
.contact-us-email-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 15px 0 15px 0;
}
.contact-us-email-section p {
  font-weight: 200;
  font-family: var(--outfit);
}
.contact-us-email-section h6 {
  text-transform: capitalize;
  font-size: 16px;
}
.contact-us-email-text p {
  color: var(--primary-color);
  font-weight: 400;
}
.send-us-a-message-img {
  transition: 0.5s ease;
  padding-top: 82%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
}
.send-us-a-message-section {
  width: 75%;
}
.form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  font-family: var(--outfit);
}
.form-field input,
textarea,
select {
  border-color: gray;
  border-radius: 10px;
}
.form-field input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: black;
  border-width: 1.5px;
}
.form-field button {
  border: none;
  border-radius: 8px;
  color: white;
  background-color: var(--primary-color);
  padding: 5px;
}
.visit-our-offices-section {
  padding-block: 75px;
}
#map {
  height: 400px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 50px 0;
}
.office-locations-section {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.office-location {
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}
.office-location i {
  color: var(--primary-color);
  font-size: large;
}
.office-location small {
  font-family: var(--outfit);
  color: gray;
}
.office-address {
  color: var(--primary-color);
  font-size: 12px;
  line-height: 18px;
}
.active-address {
  background-color: var(--lighter-primary);
}
.contractor-network p {
  margin-top: 20px;
  font-weight: 250;
  font-size: 20px;
}
.work-with-us {
  width: 80%;
}
.hiring-for-flex {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hiring-for-item {
  height: 250px;
  width: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fbfafe;
  border: 1px solid var(--light-primary);
  border-radius: 1.25rem;
}
.hiring-for-item img {
  height: 90px;
  width: 90px;
}
.hiring-for-item p {
  margin-top: 0;
}
.work-with-mygenie {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.work-with-mygenie-item {
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.work-with-mygenie-item img {
  height: 160px;
  width: 160px;
}
.work-with-mygenie-item h5 {
  color: var(--primary-color);
}
.work-with-mygenie-item p {
  margin-top: 0;
}
.testimonials-flex {
  margin-top: 60px;
  display: flex;
  justify-content: space-evenly;
}
.testimonials-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.testimonials-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonials-item p {
  font-size: 20px;
}
.testimonials-item small {
  font-family: var(--outfit);
}
.how-it-works-section {
  background-color: #fdfaff;
}
.get-started-steps-flex {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.get-started-steps-item {
  width: 350px;
  height: 350px;
  padding: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.get-started-step-number {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background-color: var(--primary-color);
}
.get-started-step-number p {
  padding: 9px 19px 9px 19px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}
select {
  appearance: none;
  background-color: transparent;
  margin: 0;
  width: 100%;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  padding-right: 1.5rem; /* Add space for the arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23949ba3' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.7em;

  &::-ms-expand {
    display: none;
  }

  outline: none;
}
.apply-to-join-img {
  transition: 0.5s ease;
  padding-top: 82%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
}
.join-whatsapp {
  margin-top: 20px;
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 15px;
  gap: 15px;
  color: white;
  background-color: #31c54c;
  border-radius: 10px;
  cursor: pointer;
}
.join-whatsapp p {
  font-size: 1.5em;
  margin-top: 0;
}
