:root {
    --color-dark-bg: #011d28;
    --color-light-green: #dff5e4;
    --color-light-cyan: #ccfbfe;
    --color-hot-pink: #a70e60;
    --color-light-pink: #fdc9f5;
    --color-white: #ffffff;
    --color-text-dark: #011d28;
    --color-text-light: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Figtree', sans-serif;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--color-white);
}

.sections {
    position: relative;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 94px;
    padding-right: 94px;
}

.page-template-new-landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 72px;
    border: none;
    transition: all 0.3s ease;
}

.page-template-new-landing .btn span {
    line-height: 1;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.38px;
}

.page-template-new-landing .btn-primary {
    background-color: var(--color-hot-pink);
    color: var(--color-text-light);
}

.page-template-new-landing .btn-primary:hover {
    opacity: 0.9;
}

.page-template-new-landing .btn-secondary {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.page-template-new-landing .btn-secondary:hover {
    background-color: #1a3a47;
}

.page-template-new-landing .btn-light {
    background-color: var(--color-light-cyan);
    color: var(--color-text-dark);
}

.page-template-new-landing .btn-light:hover {
    background-color: #a6f8fc;
}

.page-template-new-landing .btn-pink {
    background-color: var(--color-light-pink);
    color: var(--color-text-dark);
}

.page-template-new-landing .btn-pink:hover {
    background-color: #fcc0f2;
}

.page-template-new-landing .btn .arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.page-template-new-landing .btn-primary .arrow-icon,
.page-template-new-landing .btn-pink .arrow-icon {
    background-color: var(--color-hot-pink);
}

.page-template-new-landing .btn-secondary .arrow-icon {
    background-color: var(--color-light-pink);
}

.page-template-new-landing .btn-light .arrow-icon {
    background-color: var(--color-light-pink);
}

.marquee-landing {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 11px;
    animation: marquee-landing 20s linear infinite;
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -5.2px;
}
.marquee-content span {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -5.2px;
}

@keyframes marquee-landing {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .page-template-new-landing .btn {
        padding: 12px 16px;
    }
    .page-template-new-landing .btn span {
        font-size: 16px;
    }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 29, 40, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-nav a {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--color-hot-pink, #a70e60);
}

/* Color variables for smooth background transitions */
:root {
  --color-light-green: #dff5e4;
  --color-dark-bg: #011d28;
  --color-light-cyan: #ccfbfe;
}

body {
  /* background-color: var(--color-light-green); */
  transition: background-color 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-template-new-landing .btn {
  text-transform: uppercase;
  max-width: 310px;
}

.marquee-landing {
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee-landing.scroll-activated {
  opacity: 0.5!important;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 60px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  position: relative;
  width: 349px;
  height: auto;
}
.logo-image img {
  width: 300px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-icon-wrapper {
  position: relative;
  width: 49px;
  height: 49px;
}

.menu-icon-wrapper .menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-icon-wrapper .menu-bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .header-container {
    padding-top: 20px;
  }
  .logo-image {
    width: 250px;
    transform: scale(0.7);
    transform-origin: left;
  }
  footer .logo-image {
    transform-origin: center;
  }
  .main-nav .btn {
    display: none;
  }
}
/* CSS for section section:hero */
#hero {
  background-color: var(--color-dark-bg);
  background-image: url('../images/pink-gradient-min.webp');
  background-size: 100%;
  background-position: 150% bottom;
  padding-top: 4.5rem;
  padding-bottom: 9rem;
  min-height: 985px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-elements .gradient-overlay {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 780px;
  height: 1134px;
  background: linear-gradient(270deg, #a70e60 0%, #47e3ed 99.65%);
  filter: blur(150px);
  transform: rotate(30deg);
  opacity: 0.5;
}

.hero-bg-elements .grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 7em;
}

.hero-title {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -6.5px;
  color: var(--color-text-light);
}

.hero-title .highlight {
  font-size: 130px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -6.5px;
  color: var(--color-light-pink);
}

.hero-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-light);
  max-width: 658px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .hero-title,
  .hero-title .highlight {
    font-size: 90px;
    letter-spacing: -4px;
  }
}
@media (max-width: 768px) {
  #hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: auto;
  }
  .hero-title,
  .hero-title .highlight {
    font-size: 60px;
    letter-spacing: -2px;
  }
  .hero-subtitle {
    font-size: 18px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* CSS for section section:web-dev */
#web-dev {
  padding-top: 90px;
  padding-bottom: 50px;
}
#web-dev .marquee-landing {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  color: #c4dbc9;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -5.2px;
}

.web-dev-container {
  padding-top: 181px;
}

.web-dev-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -4.5px;
  color: var(--color-text-dark);
  margin-bottom: 44px;
}

.web-dev-content-wrapper {
  position: relative;
}

.pinkrobot-face {
  position: absolute;
  top: -5%;
  bottom: 0;
  right: -90px;
  z-index: 2;
  margin-bottom: 30px;
}
.pinkrobot-face-1 {
  margin-right: 0;
  margin-bottom: 280px;
}
.pinkrobot-face-2 {
  margin-right: -90px;
  margin-bottom: 280px;
}
.pinkrobot-face-3 {
  margin-left: 90px;
  margin-bottom: 10px;
}

.web-dev-card {
  position: relative;
  background: linear-gradient(90deg, #011d28 0%, #00151e 100%);
  border-radius: 20px;
  padding: 36px 40px;
  min-height: 540px;
  z-index: 1;
}

.card-header {
  margin-bottom: 28px;
}

.card-description {
  font-family: 'Figtree', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -0.7px;
  color: var(--color-text-light);
  max-width: 730px;
}

.tags-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.tags-container .text {
  position: absolute;
  width: 30%;
  height: 100%;
  right: 35%;
}

@media (max-width: 1200px) {
  .tags-container {
    height: 320px;
  }
}
@media screen and (max-width: 1400px) {
  .pinkrobot-face {
    transform: scale(.65);
    transform-origin: right center;
  }
}
@media screen and (max-width: 1200px) {
  .pinkrobot-face {
    transform: scale(.45);
  }
}
@media (max-width: 1024) {
  .pinkrobot-face {
    display: none;
  }
}
@media (max-width: 768px) {
  .pinkrobot-face {
    display: none;
  }
  .web-dev-card {
    padding: 30px;
  }
}
.tag {
  position: absolute;
  padding: 26px 20px;
  border-radius: 72px;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
}

.text .word:nth-child(2n) {
  background-color: #ccfbfe;
}
.text .word:nth-child(3n) {
  background-color: #FDC9F5;
}
.text .word:nth-child(5n) {
  background-color: #A70E60;
  color: #FDC9F5;
}

.word {
  position: absolute;
  cursor: grab;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 15px 40px;
}

.word.highlighted {
  color: #001A25;
}

@media (max-width: 768px) {
  #web-dev .marquee-landing {
    font-size: 80px;
    top: 0;
  }
  .web-dev-container {
    padding-top: 120px;
  }
  .web-dev-title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }
  .card-description {
    font-size: 24px;
  }
  .decorative-brace, .decorative-vector {
    display: none;
  }
}
/* CSS for section section:branding */
#branding {
  /* background-color: var(--color-dark-bg); */
  background: url('../images/GreenHighlight-min.webp') no-repeat left bottom;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

#branding .marquee-landing {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  color: #093344;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -5.2px;
}

.branding-container {
  padding-top: 181px;
  position: relative;
  z-index: 1;
}

.branding-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -4.5px;
  color: var(--color-light-cyan);
  margin-bottom: 44px;
}

.branding-card {
  background: linear-gradient(90deg, #011d28 0%, #00151e 100%);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.branding-card-content {
  position: relative;
  text-align: center;
}

.branding-card-title {
  font-size: 7.3rem;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -6.7px;
  color: var(--color-text-light);
  margin: 150px 0;
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.floating-tags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.impactful-tag {
  position: absolute;
  bottom: 5rem;
  left: 4rem;
  background-color: #a70e60;
  color: #fdc9f5;
  padding: 25px 38px;
  border-radius: 109px 16px 16px 16px;
  font-size: 32px;
  font-weight: 700;
}

.nonprofit-tag {
  position: absolute;
  top: 2em;
  right: 13rem;
  background-color: #ccfbfe;
  color: #011d28;
  padding: 18px 29px;
  border-radius: 16px;
  font-size: 32px;
  font-weight: 700;
}

.charity-icon-1, .charity-icon-2 {
  position: absolute;
}

.charity-icon-1 {
  top: 127px;
  left: 220px;
}

.charity-icon-2 {
  top: 300px;
  left: 1142px;
}

.charity-icon-1 img, .charity-icon-2 img {
  position: absolute;
  top: -2em;
    left: -2em;
}

.charity-icon-1 img:last-child, .charity-icon-2 img:last-child {
  transform: translate(22px, 20px);
}

.decorative-vector-branding {
  position: absolute;
  bottom: 4rem;
  right: 15rem;
}

.logo-scroller {
  display: flex;
  overflow: hidden;
  margin: 3rem 0 4rem;
}

.logo-scroller-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee-landing 30s linear infinite;
}

.logo-scroller-track img {
  height: 150px;
  max-width: 45%;
  object-fit: contain;
  filter: invert(100);
}

@media (max-width: 1400px) {
  .charity-icon-1 img, .charity-icon-2 img {
    top: 0;
    left: -13em;
  }
  .impactful-tag {
    bottom: 0;
  }
  .decorative-vector-branding {
    bottom: 1rem;
    right: 7rem;
  }
}

@media (max-width: 1200px) {
  .branding-card-title,
  .dm-card-title {
    font-size: 100px;
    letter-spacing: -4px;
  }
  .branding-card-content img,
  .floating-tags {
    display: none;
  }
}
@media (max-width: 768px) {
  #branding .marquee-landing {
    font-size: 80px;
    top: 0;
  }
  .branding-container {
    padding-top: 120px;
  }
  .branding-title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }
  .branding-card-title,
  .dm-card-title {
    font-size: 60px;
    margin: 80px 0;
  }
  .logo-scroller-track {
    gap: 40px;
  }
  .branding-card {
    padding: 30px;
  }
  .branding-card-title {
    margin: 3rem 0;
  }
  .logo-scroller {
    margin: 0;
  }
  .logo-scroller-track img {
    max-width: 25%;
  }
}
/* CSS for section section:digital-marketing */
#digital-marketing {
  /* no background-color for smooth body transition */
  padding-top: 130px;
  padding-bottom: 130px;
}

#digital-marketing .marquee-landing {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  color: #bbe5e7;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -5.2px;
}

.dm-container {
  padding-top: 181px;
}
.dm-container .card-header {
  margin-bottom: -30px;
}

dm-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -4.5px;
  color: var(--color-text-dark);
  margin-bottom: 44px;
}

.dm-card {
  position: relative;
  background: linear-gradient(90deg, #011d28 0%, #00151e 100%);
  border-radius: 20px;
  padding: 36px 40px;
  min-height: 799px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dm-card .card-header {
  align-self: flex-start;
}

.dm-card-title {
  font-size: 7.3rem;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -6.7px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
}

.dm-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dm-images > div {
  position: absolute;
  background-color: #c4c4c4;
  border: 1.5px solid #000000;
  border-radius: 8px;
}

.dm-img-1 {
  width: 265px;
  height: 334px;
  top: -167px;
  right: 129px;
  background-color: #e7e7e7;
}

.dm-img-2 {
  width: 156px;
  height: 196px;
  top: -53px;
  right: 433px;
}

.dm-img-3 {
  width: 265px;
  height: 334px;
  bottom: -261px;
  right: 41px;
}

.dm-img-4 {
  width: 204px;
  height: 257px;
  bottom: -264px;
  left: 59px;
}

@media (max-width: 1400px) {
  .dm-images {
    display: none;
  }
}
@media (max-width: 768px) {
  #digital-marketing .marquee-landing {
    font-size: 80px;
    top: 0;
  }
  .dm-container {
    padding-top: 120px;
  }
  .dm-title {
    font-size: 50px;
  }
  .dm-card-title {
    font-size: 60px;
    letter-spacing: -4px;
    line-height: 1;
  }
  .dm-card {
    min-height: 500px;
    justify-content: center;
  }
}

@media screen and (max-width: 540px) {
  .dm-card-title {
    font-size: 56px;
    letter-spacing: -2px;
  }
}
/* CSS for section section:works */
#works {
  background-color: var(--color-white);
  padding: 100px 0;
}

#works .marquee-landing {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  color: #f3f3f3;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -5.2px;
}

.works-container {
  padding-top: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}

.works-gallery {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
  max-width: 1384px;
}

.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.work-image {
  width: 930px;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.work-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.work-caption {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 916px;
  gap: 46px;
}

.work-caption h3 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: var(--color-text-dark);
}

.work-caption p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-dark);
  max-width: 436px;
}

@media (max-width: 992px) {
  .work-image {
    height: auto;
  }
  .work-caption {
    flex-direction: column;
    gap: 16px;
  }
  .work-caption p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #works .marquee-landing {
    font-size: 80px;
    top: 0;
  }
  .works-container {
    padding-top: 120px;
  }
}
/* CSS for section section:testimonials */
#testimonials {
  background-color: var(--color-light-pink);
  /* padding: 50px 0 120px; */
  padding: 0;
}

.testimonials-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.testimonials-parallax {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 400px;
}

.parallax__heading {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  /* overflow: hidden */
}

.parallax__text {
  display: block; 
  font-size: 7rem;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -5.2px;
  color: var(--color-text-dark);
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.1s ease-out;
  will-change: transform;
  transform: translateX(0);
  transform-style: flat;
  margin-left: 10rem;
}

.parallax__text:first-child{
  margin-left: -8rem;
}

.parallax__text:last-child {
  margin-left: -10rem;
}

.testimonials-grid {
  position: relative;
  flex: 1;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  flex: 1 1 614px; */
  z-index: 3;
}

.testimonial-card__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.testimonial-cards {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 15px;
  max-height: 76.5em;
  overflow: hidden;
}

.testimonial-cards__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-card {
  background-color: var(--color-light-pink);
  border: 2px solid #000000;
  border-radius: 7px;
  padding: 29px 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.43;
  color: #07090f;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.43;
  color: #07090f;
}

.author-info strong {
  font-weight: 700;
  display: block;
}

.testimonials-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 4em 0;
}

.testimonials-title {
  font-size: 130px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -5.2px;
  color: var(--color-text-dark);
}

.logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 30px;
  align-items: center;
}

.logos-grid img {
  width: auto;
  height: 130px;
  filter: invert(0);
}

@media (max-width: 1200px) {
  .testimonials-container {
    flex-direction: column;
    align-items: unset;
  }
  .testimonials-title {
    font-size: 90px;
    text-align: center;
  }
  .logos-grid {
    justify-items: center;
  }
  .parallax__text:first-child {
    margin-left: -5rem;
  }
  .parallax__text:nth-child(2) {
    margin-left: 17rem;
  }
  .parallax__text:last-child {
    margin-left: -15rem;
  }
}

@media (max-width: 991px) {
  .testimonials-main-content {
    display: block;
    margin: 2em 0 4em;
  }
  .testimonials-main-content .testimonials-parallax,
  .testimonials-main-content .testimonials-parallax .parallax__heading {
    position: unset;
    min-height: unset;
  }
  .logos-grid {
    margin-top: 40px;
  }
  .logos-grid img {
    height: 115px;
  }
  .parallax__heading {
    transform: none;
  }
  .testimonial-cards {
    flex-wrap: wrap;
    max-height: 50em;
  }
  .testimonials-main-content {
    gap: 1em;
  }
  .testimonials-parallax {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  .parallax__text {
    font-size: 5rem;
    margin-left: 0!important;
  }
  .parallax__text:nth-child(2) {
    margin-left: 10rem!important;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-title {
    font-size: 60px;
  }
}
@media (max-width: 540px) {
  .logos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .parallax__heading {
    width: 100%;
  }
  .parallax__text {
    font-size: 3rem;
    letter-spacing: -2px;
    margin-left: -4rem!important;
  }
  .parallax__text:nth-child(2) {
    margin-left: 6rem!important;
  }
}
/* CSS for section section:about */
#about {
  background-color: var(--color-hot-pink);
}

.about-photo {
  position: absolute;
  width: auto;
  height: 100%;
  bottom: 0;
  left: 55%;
  transform: translate(-50%, 0);
}

.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#about {
  background: url(../images/aboutGrainBG.png) bottom right no-repeat;
  background-size: cover;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.about-text-content {
  flex-basis: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  padding: 4em 0;
}

.about-quote {
  font-size: 47px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.88px;
  color: var(--color-text-light);
  font-family: Figtree, sans-serif;
}

.about-image-wrapper {
  position: relative;
  flex-basis: 55%;
  width: 44%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-circle {
  width: auto;
  right: 0;
  top: 12rem;
  position: relative;
}

.about-nameplate {
  position: absolute;
  bottom: 18%;
  right: 15%;
  text-align: left;
}

.about-nameplate h4 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -1.16px;
  color: var(--color-text-dark);
}

.about-nameplate p {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.54px;
  color: var(--color-hot-pink);
}
@media screen and (max-width: 1024px) {
  .about-text-content {
    flex-basis: 41%;
  }
}
@media (max-width: 992px) {
  #about {
    background: url(../images/aboutGrainBG.png) bottom center no-repeat;
    background-size: cover;
  }
  .about-container {
    display: block;
  }
  .about-text-content {
    align-items: center;
    padding-bottom: 0;
  }
  .about-image-wrapper {
    width: 100%;
  }
  .about-nameplate p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about-quote {
    font-size: 32px;
  }
  .about-photo {
    height: 80%;
  }
  .about-nameplate {
    bottom: 15%;
    right: 0;
  }
}
/* CSS for section section:footer */
.site-footer {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  padding: 8.5em 0 7em;
}
.site-footer h2 {
  margin-bottom: 30px;
}

.footer-cta {
  position: relative;
  display: flex;
  justify-content: center;
  /* align-items: center;
  padding: 90px 0; */
  min-height: 665px;
}

.cta-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  max-height: 500px;
}

.cta-content h2 {
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.83;
  letter-spacing: -4px;
  color: #dff5e4;
}

.brace {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  height: 760px;
}

.brace-left {
  left: 94px;
}

.brace-right {
  right: 94px;
  transform: translateY(-50%) rotate(0deg);
}

.eclipse {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.eclipse-left {
  left: 0;
}

.eclipse-right {
  right: 0;
}

.footer-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  /* padding-top: 110px; */
  margin-top: -160px;
  padding-bottom: 70px;
  flex-wrap: wrap;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 68px;
  flex-wrap: wrap;
}

.link-column h4 {
  font-family: "Figtree", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 16px;
  color: white;
}

.link-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-column a {
  font-family: "DM Mono", monospace;
  font-size: 22px;
}

.footer-subscribe h4 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.05px;
  color: #ccfbfe;
  margin-bottom: 16px;
}

.subscribe-form {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  max-width: 427px;
}

.subscribe-form input {
  border: none;
  background: transparent;
  padding: 5px 22px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #212020;
  flex-grow: 1;
}

.subscribe-form input::placeholder {
  color: #212020;
}

.subscribe-form input:focus {
  outline: none;
}

.subscribe-form button {
  background-color: var(--color-hot-pink);
  color: var(--color-white);
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.subscribe-form button:hover {
  background-color: #c4106e;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: auto;
}

.footer-logo .logo-image {
  position: relative;
}
.footer-logo .logo-image img {
  width: 200px;
  height: auto;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 37px;
}

.copyright {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  color: #f3f3f3;
}

@media (max-width: 1200px) {
  .brace,
  .cta-content .eclipse {
    display: none;
  }
  .footer-main {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 60px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
  .footer-subscribe {
    text-align: center;
  }
  .subscribe-form {
    margin: 0 auto;
  }
  .site-footer {
    padding: 6em 0;
  }
  .footer-cta {
    min-height: auto;
  }
  .cta-content {
    display: block;
  }
  .footer-main {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 540px) {
  .cta-content h2 {
    font-size: 56px;
    letter-spacing: -2px;
  }
  footer .subscribe-form {
      max-width: 100%;
      flex-wrap: wrap;
      justify-content: center;
      background: transparent;
      gap: 10px;
  }
  .subscribe-form input {
    background: white;
    border-radius: 40px;
    padding: 14px 22px;
  }
  .subscribe-form button {
    width: 100%;
  }
}
/*# sourceMappingURL=sections.css.map */