@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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

@media (min-width: 1024px) {
  html {
    font-size: clamp(16px, 1vw, 20px);
  }
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", serif;
}

body {
  background-color: rgb(10 3 8);
  color: rgb(218, 197, 167);
}

.header-section {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  top: 0;
}
.header-section .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  background-color: rgba(25, 24, 22, 0.3);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border: 1px solid rgba(218, 197, 167, 0.15);
  padding: 0.75rem;
  text-transform: uppercase;
  opacity: 1;
}
.header-section .navbar .nav-logo {
  text-decoration: none;
  color: rgb(218, 197, 167);
  font-weight: 500;
  font-size: 1.5rem;
}
.header-section .navbar .nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.header-section .navbar .nav-links .nav-link {
  text-decoration: none;
  color: rgb(218, 197, 167);
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  position: relative;
}
.header-section .navbar .nav-links .nav-link::after {
  content: "";
  height: 0.25px;
  background-color: rgb(218, 197, 167);
  width: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.header-section .navbar .nav-links .nav-link:hover::after {
  animation-name: navAnime;
  animation-timing-function: linear;
  animation-duration: 0.5s;
}
@media (min-width: 1024px) {
  .header-section .navbar .nav-links {
    display: flex;
  }
}
.header-section .navbar .nav-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  align-content: center;
}
.header-section .navbar .nav-btn {
  background-color: rgb(218, 197, 167);
  color: rgb(25, 24, 22);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}
.header-section .navbar .nav-menu {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
}
.header-section .navbar .nav-menu .nav-menu-icon {
  fill: rgba(218, 197, 167, 0.8);
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .header-section .navbar .nav-btn {
    font-size: 0.8;
  }
  .header-section .navbar .nav-menu {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header-section .navbar {
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
  }
}

.mob-show {
  display: block;
}

.mob-hide {
  display: none;
}

.menu-icon-hide,
.close-icon-hide {
  display: none;
}

.menu-icon-show,
.close-icon-show {
  display: block;
}

.section-mobile-navbar {
  padding: 1rem;
  width: 100%;
  position: fixed;
  top: 4.25rem;
  z-index: 999;
}
.section-mobile-navbar .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(25, 24, 22, 0.3);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  gap: 0.25rem;
  border: 1px solid rgba(218, 197, 167, 0.15);
}
.section-mobile-navbar .mobile-nav-links .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(218, 197, 167);
  font-weight: 300;
  text-decoration: none;
  padding: 1rem;
  font-size: 1.1rem;
  width: 100%;
  position: relative;
}
.section-mobile-navbar .mobile-nav-links .mobile-nav-link::after {
  content: "";
  width: 0%;
  height: 0.25px;
  background-color: rgba(218, 197, 167, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-mobile-navbar .mobile-nav-links .mobile-nav-link:hover::after {
  animation-name: navAnime;
  animation-timing-function: linear;
  animation-duration: 0.5s;
}

@media (min-width: 1024px) {
  .header-section {
    top: 1rem;
  }
}
@keyframes navAnime {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
.hero-section {
  padding: 1rem;
}
.hero-section .hero-img-div {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 2rem auto 0 auto;
  position: relative;
}
.hero-section .hero-img-div .hero-img {
  width: 75%;
}
@media (min-width: 1024px) {
  .hero-section .hero-img-div .hero-img {
    width: 83%;
  }
}
.hero-section .hero-heading-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-heading-div .hero-heading {
  font-size: 3rem;
  text-align: center;
  font-weight: 300;
  line-height: 4rem;
}
@media (min-width: 1024px) {
  .hero-section .hero-heading-div .hero-heading {
    font-size: 6rem;
    line-height: 7rem;
  }
}
.hero-section .hero-text-div {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 2rem auto 3rem auto;
}
.hero-section .hero-text-div .hero-text {
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(218, 197, 167, 0.8);
}
@media (min-width: 1024px) {
  .hero-section .hero-text-div .hero-text {
    font-size: 1.3rem;
  }
}
.hero-section .hero-scroll-btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-scroll-btn-div .hero-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
}
.hero-section
  .hero-scroll-btn-div
  .hero-scroll-btn:hover
  .hero-scroll-btn-icon {
  box-shadow: 1px 1px 5px rgb(25, 24, 22), -1px -1px 5px rgb(25, 24, 22);
  background-color: rgb(25, 24, 22);
  transform: rotate(0deg);
}
.hero-section .hero-scroll-btn-div .hero-scroll-btn .hero-scroll-btn-icon {
  width: 36px;
  height: 36px;
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(218, 197, 167, 0.15);
  fill: rgb(218, 197, 167);
  background-color: rgba(25, 24, 22, 0.3);
  transform: rotate(-90deg);
  transition: all 0.2s linear;
  z-index: -1;
}
.hero-section .hero-scroll-btn-div .hero-scroll-btn .hero-scroll-btn-text {
  text-transform: uppercase;
  font-weight: 300;
  color: rgb(218, 197, 167);
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

/* Hero Section Animation Starts */
.animation-img {
  width: 40px;
  position: absolute;
  animation-name: imgAnime;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
  z-index: -1;
  opacity: 0.05;
}
.img-1 {
  top: -50px;
  left: 0px;
  animation-name: VsImgAnime;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
.img-2 {
  top: 50px;
  right: 0px;
  animation-name: htmlImgAnime;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
.img-3 {
  bottom: 20px;
  left: 80px;
  animation-name: cssImgAnime;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
.img-4 {
  bottom: -40px;
  right: 0px;
  animation-name: jsImgAnime;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}

@keyframes VsImgAnime {
  from {
    top: 50px;
    transform: rotate(-10deg);
  }
  to {
    top: 80px;
    transform: rotate(20deg);
  }
}
@keyframes htmlImgAnime {
  from {
    right: 0px;
    transform: rotate(20deg);
  }
  to {
    right: 20px;
    transform: rotate(-10deg);
  }
}
@keyframes cssImgAnime {
  from {
    transform: rotate(0deg);
    left: 0px;
  }
  to {
    transform: rotate(30deg);
    left: 20px;
  }
}
@keyframes jsImgAnime {
  from {
    transform: rotate(30deg);
    bottom: -40px;
  }
  to {
    transform: rotate(-20deg);
    bottom: -20px;
  }
}
@media (min-width: 1024px) {
  .animation-img {
    width: 70px;
  }
  .img-1 {
    top: -100px;
    left: -100px;
  }
  .img-2 {
    top: 100px;
    right: -300px;
  }
  .img-3 {
    bottom: 100px;
    left: -100px;
  }
  .img-4 {
    bottom: 500px;
    right: -100px;
  }
  @keyframes VsImgAnime {
    from {
      top: -20px;
      transform: rotate(-10deg);
    }
    to {
      top: 20px;
      transform: rotate(20deg);
    }
  }
  @keyframes htmlImgAnime {
    from {
      right: -50px;
      transform: rotate(20deg);
    }
    to {
      right: -20px;
      transform: rotate(-10deg);
    }
  }
  @keyframes cssImgAnime {
    from {
      transform: rotate(0deg);
      left: -80px;
    }
    to {
      transform: rotate(30deg);
      left: -50px;
    }
  }
  @keyframes jsImgAnime {
    from {
      transform: rotate(30deg);
      bottom: 100px;
    }
    to {
      transform: rotate(-20deg);
      bottom: 120px;
    }
  }
}

/* Hero Section Animation Ends */

.marquee-section {
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  z-index: -1;
}
.marquee-section .marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-section .marquee::after {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, rgb(10 3 8), transparent);
}
.marquee-section .marquee::before {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(to right, transparent, rgb(10 3 8));
  z-index: 1;
}
.marquee-section .marquee .marquee-div {
  display: flex;
  gap: 6rem;
  padding: 0 8rem;
  transform: translateX(0);
  animation-name: marquee;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  padding: 0 2rem;
}
.marquee-section .marquee .marquee-div .marquee-word {
  font-size: 1.5rem;
  font-weight: 200;
  text-align: center;
}
.marquee-section .marquee .marquee-div .marquee-img-engine {
  transform: rotateY(180deg);
}
@media (min-width: 1024px) {
  .marquee-section .marquee {
    width: 80%;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.my-services-section {
  padding: 2rem;
  width: 100%;
}
.my-services-section .services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.my-services-section .services-container .service-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(218, 197, 167, 0.05);
  padding: 3rem 2rem;
  border: 1px solid rgba(218, 197, 167, 0.15);
}
.my-services-section .services-container .service-card .service-card-num {
  color: rgba(218, 197, 167, 0.8);
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.25rem;
}
.my-services-section .services-container .service-card .service-card-heading {
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.my-services-section .services-container .service-card .service-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(218, 197, 167, 0.8);
  font-weight: 300;
  letter-spacing: 0.05rem;
  margin-bottom: 1.5rem;
}
.my-services-section .services-container .service-card .service-card-link-div {
  align-self: flex-start;
}
.my-services-section
  .services-container
  .service-card
  .service-card-link-div
  .service-card-link {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(218, 197, 167);
}
.my-services-section
  .services-container
  .service-card
  .service-card-link-div
  .service-card-link
  .service-card-link-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid rgba(218, 197, 167, 0.15);
  fill: rgb(218, 197, 167);
  background-color: rgba(218, 197, 167, 0.05);
  transition: all 0.2s linear;
}
.my-services-section
  .services-container
  .service-card
  .service-card-link-div
  .service-card-link
  .service-card-link-text {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.my-services-section
  .services-container
  .service-card
  .service-card-link-div
  .service-card-link:hover
  .service-card-link-icon {
  transform: rotate(45deg);
  box-shadow: 1px 1px 2px rgba(218, 197, 167, 0.15),
    -1px -1px 2px rgba(218, 197, 167, 0.15);
}

@media (min-width: 1024px) {
  .my-services-section {
    padding: 2rem 4rem;
  }
}
.selected-work-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.selected-work-section .selected-work-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
.selected-work-section .selected-work-header .selected-work-heading {
  font-size: 2rem;
  font-weight: 200;
  text-align: center;
}
.selected-work-section
  .selected-work-header
  .selected-work-link-div
  .selected-work-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgb(218, 197, 167);
  font-weight: 300;
}
.selected-work-section
  .selected-work-header
  .selected-work-link-div
  .selected-work-link
  .selected-work-link-icon {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgb(25, 24, 22);
  fill: rgb(218, 197, 167);
  border: 1px solid rgba(218, 197, 167, 0.15);
}
.selected-work-section
  .selected-work-header
  .selected-work-link-div
  .selected-work-link
  .selected-work-link-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}
@media (min-width: 1024px) {
  .selected-work-section .selected-work-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .selected-work-section .selected-work-header .selected-work-heading {
    font-size: 2.5rem;
  }
}
.selected-work-section .selected-work-content {
  width: 100%;
}
.selected-work-section .selected-work-content .selected-work-content-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
  width: 100%;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work {
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
  background-image: url(https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  width: 100%;
  aspect-ratio: 1/0.75;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work:hover
  .selected-work-card-svg
  .selected-work-card-icon {
  animation: selectedWorkCard;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-1 {
  background-image: url(images/device-1.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  border: 1px solid rgba(218, 197, 167, 0.15);
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-2 {
  background-image: url(images/device-2.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  border: 1px solid rgba(218, 197, 167, 0.15);
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-3 {
  background-image: url(images/device-3.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  border: 1px solid rgba(218, 197, 167, 0.15);
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-4 {
  background-image: url(images/device-4.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  border: 1px solid rgba(218, 197, 167, 0.15);
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-card-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-card-svg
  .selected-work-card-icon {
  opacity: 0;
  fill: rgba(218, 197, 167, 0.8);
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(218, 197, 167, 0.3);
  border: 1px solid rgba(218, 197, 167, 0.15);
  transform: rotate(45deg);
  box-shadow: 1px 1px 2px rgba(218, 197, 167, 0.15),
    -1px -1px 2px rgba(218, 197, 167, 0.15);
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-card-div {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(218, 197, 167, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 1;
  border: 1px solid rgba(218, 197, 167, 0.15);
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-card-div
  .selected-work-card-heading {
  font-size: 1.1rem;
  font-weight: 300;
}
.selected-work-section
  .selected-work-content
  .selected-work-content-container
  .selected-work-card-div
  .selected-work-card-text {
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}
@media (min-width: 1024px) {
  .selected-work-section
    .selected-work-content
    .selected-work-content-container
    .selected-work-card-div
    .selected-work-card-heading {
    font-size: 1.5rem;
  }
  .selected-work-section
    .selected-work-content
    .selected-work-content-container
    .selected-work-card-div
    .selected-work-card-text {
    font-size: 0.9rem;
  }
}
@media (min-width: 1024px) {
  .selected-work-section
    .selected-work-content
    .selected-work-content-container {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
  .selected-work-section
    .selected-work-content
    .selected-work-content-container
    .selected-work {
    aspect-ratio: 1/0.75;
  }
}

@media (min-width: 1024px) {
  .selected-work-section {
    padding: 4rem;
  }
}
@keyframes selectedWorkCard {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
.process-section {
  padding: 2rem;
}
.process-section .process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.process-section .process-header .process-head-text-top {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(218, 197, 167, 0.8);
  letter-spacing: 0.1rem;
}
.process-section .process-header .process-head-heading {
  text-align: center;
  font-size: 2.75rem;
  line-height: 3.25rem;
  font-weight: 300;
}
.process-section .process-header .process-head-text-bottom {
  text-align: center;
  max-width: 500px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  font-weight: 200;
  color: rgba(218, 197, 167, 0.8);
}
.process-section .process-header .process-arrow-line-div {
  align-self: flex-start;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.process-section
  .process-header
  .process-arrow-line-div
  .process-arrow-svg
  .process-arrow-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(218, 197, 167, 0.15);
  border-radius: 50%;
  fill: rgb(218, 197, 167);
  background-color: rgba(25, 24, 22, 0.3);
}
.process-section .process-header .process-arrow-line-div .process-arrow-line {
  height: 30px;
  width: 0.5px;
  background-color: rgba(218, 197, 167, 0.15);
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .process-section .process-header .process-head-text-top {
    font-size: 0.8rem;
  }
  .process-section .process-header .process-head-heading {
    font-size: 5rem;
    line-height: 6rem;
  }
  .process-section .process-header .process-head-text-bottom {
    font-size: 1.1rem;
  }
  .process-section .process-header .process-arrow-line-div {
    align-self: center;
    gap: 0.5rem;
  }
  .process-section .process-header .process-arrow-line-div .process-arrow-line {
    height: 60px;
  }
}
.process-section .process-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.process-section .process-content .process-container {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 1rem;
  width: 100%;
}
.process-section .process-content .process-container .process-card {
  padding: 2rem 1.5rem;
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  border: 1px solid rgba(218, 197, 167, 0.15);
  background-color: rgba(25, 24, 22, 0.3);
  position: relative;
  box-shadow: 1px 1px 5px rgba(80, 71, 59, 0.1),
    -1px -1px 5px rgba(80, 71, 59, 0.1);
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-top-text {
  color: rgba(218, 197, 167, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-heading {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.75rem;
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-middle-text {
  font-weight: 200;
  font-size: 0.9rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.75rem;
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-list {
  line-height: 1.75rem;
  padding: 15px;
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-list
  .process-card-list-item {
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 0.05rem;
}
@media (min-width: 1024px) {
  .process-section
    .process-content
    .process-container
    .process-card
    .process-card-list {
    line-height: 2.5rem;
  }
}
.process-section
  .process-content
  .process-container
  .process-card
  .process-card-duration {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(218, 197, 167, 0.2);
  border: 1px solid rgba(218, 197, 167, 0.15);
  padding: 0.25rem 0.5rem;
  font-weight: 400;
  border-radius: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.process-section .process-content .process-container .hidden {
  display: none;
}
@media (min-width: 1024px) {
  .process-section .process-content .process-container .hidden {
    display: block;
    visibility: hidden;
  }
  .process-section .process-content .process-container .process-card {
    padding: 3rem 4rem;
  }
}
.process-section .process-content .process-container .num-line {
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: 1fr min-content 1fr;
  align-content: center;
  justify-items: center;
  gap: 1rem;
}
.process-section
  .process-content
  .process-container
  .num-line
  .process-card-line {
  width: 0.5px;
  height: 100%;
  background-color: rgba(218, 197, 167, 0.15);
  opacity: 0.5;
}
.process-section
  .process-content
  .process-container
  .num-line
  .process-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(218, 197, 167, 0.15);
  border-radius: 50%;
  fill: rgb(218, 197, 167);
  background-color: rgba(25, 24, 22, 0.3);
  font-size: 0.85rem;
}
.process-section .process-content .step-1 {
  grid-template-areas: "num1 card1";
}
.process-section .process-content .step-1 .num-line {
  grid-area: num1;
}
.process-section .process-content .step-1 .process-card {
  grid-area: card1;
  margin-bottom: 2rem;
}
.process-section .process-content .step-2 {
  grid-template-areas: "num2 card2";
}
.process-section .process-content .step-2 .num-line {
  grid-area: num2;
}
.process-section .process-content .step-2 .process-card {
  grid-area: card2;
  margin-bottom: 2rem;
}
.process-section .process-content .step-3 {
  grid-template-areas: "num3 card3";
}
.process-section .process-content .step-3 .num-line {
  grid-area: num3;
}
.process-section .process-content .step-3 .process-card {
  grid-area: card3;
  margin-bottom: 2rem;
}
.process-section .process-content .step-4 {
  grid-template-areas: "num4 card4";
}
.process-section .process-content .step-4 .num-line {
  grid-area: num4;
}
.process-section .process-content .step-4 .process-card {
  grid-area: card4;
  margin-bottom: 2rem;
}
.process-section .process-content .step-5 {
  grid-template-areas: "num5 card5";
}
.process-section .process-content .step-5 .num-line {
  grid-area: num5;
}
.process-section .process-content .step-5 .process-card {
  grid-area: card5;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .process-section .process-content .process-container {
    grid-template-columns: 1fr min-content 1fr;
    gap: 5rem;
  }
  .process-section .process-content .process-container .process-card {
    margin-bottom: 0;
  }
  .process-section .process-content .step-1 {
    grid-template-areas: "card1H num1 card1";
  }
  .process-section .process-content .step-1 .hidden {
    grid-area: card1H;
  }
  .process-section .process-content .step-1 .num-line {
    grid-area: num1;
  }
  .process-section .process-content .step-1 .process-card {
    grid-area: card1;
  }
  .process-section .process-content .step-2 {
    grid-template-areas: "card2 num2 card2H";
  }
  .process-section .process-content .step-2 .process-card {
    grid-area: card2;
  }
  .process-section .process-content .step-2 .num-line {
    grid-area: num2;
  }
  .process-section .process-content .step-2 .hidden {
    grid-area: card2H;
  }
  .process-section .process-content .step-3 {
    grid-template-areas: "card3H num3 card3";
  }
  .process-section .process-content .step-3 .hidden {
    grid-area: card3H;
  }
  .process-section .process-content .step-3 .num-line {
    grid-area: num3;
  }
  .process-section .process-content .step-3 .process-card {
    grid-area: card3;
  }
  .process-section .process-content .step-4 {
    grid-template-areas: "card4 num4 card4H";
  }
  .process-section .process-content .step-4 .process-card {
    grid-area: card4;
  }
  .process-section .process-content .step-4 .num-line {
    grid-area: num4;
  }
  .process-section .process-content .step-4 .hidden {
    grid-area: card4H;
  }
  .process-section .process-content .step-5 {
    grid-template-areas: "card5H num5 card5";
  }
  .process-section .process-content .step-5 .hidden {
    grid-area: card5H;
  }
  .process-section .process-content .step-5 .num-line {
    grid-area: num5;
  }
  .process-section .process-content .step-5 .process-card {
    grid-area: card5;
  }
}

@media (min-width: 1024px) {
  .process-section {
    padding: 4rem;
  }
}
.clients-section {
  padding: 2rem;
}
.clients-section .clients-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.clients-section .clients-header .clients-head-heading {
  text-align: center;
  font-size: 2.75rem;
  line-height: 3.25rem;
  font-weight: 300;
}
.clients-section .clients-header .clients-head-text-bottom {
  text-align: center;
  max-width: 500px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  font-weight: 200;
  color: rgba(218, 197, 167, 0.8);
}
@media (min-width: 1024px) {
  .clients-section .clients-header .clients-head-heading {
    font-size: 5rem;
    line-height: 6rem;
  }
  .clients-section .clients-header .clients-head-text-bottom {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .clients-section {
    padding: 4rem;
  }
} /*# sourceMappingURL=style.css.map */

.contact-us-list {
  line-height: 1.75rem;
  padding: 0 0 25px 25px;
}
.contact-us-list-item {
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 0.05rem;
  color: rgb(218, 197, 167);
}
