wa-page::part(header) {
  background-color: transparent ;
}

wa-page::part(drawer) {
  --size: 300px;
}

header {
  background-color: transparent;
}

main {
  padding: 60px 0 0;
}

:root,
.wa-light,
.wa-dark .wa-invert {
  --wa-font-family-body: 'Figtree', sans-serif;
  --wa-font-weight-bold: 800;
}

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

/* --- SHARED --- */

section {
  max-width: 105ch;
  margin: 100px auto 0;
}

section:first-child {
  margin: 0 auto;
}

section.wide {
  max-width: inherit;
}

.heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
}

.heading-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 20px;
  border: 2px solid;
  border-color: var(--accent-bright-blue);
  font-weight: 700;
  color: var(--accent-bright-blue);
  font-size: 20px;
  line-height: 22px;
  margin: 0 20px;
  text-align: center;
}

.heading-text {
  font-weight: var(--h1-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--h1-font-size);
  text-align: center;
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  font-style: var(--h1-font-style);
  width: 900px;
}

.heading-highlight {
  color: var(--accent-bright-blue);
}

@media screen and (width < 786px) {

  .heading-text,
  .responsive-text {
    max-width: calc(100vw - 40px);
  }

  .heading-text {
    font-size: 28px !important;
  }

  .responsive-text {
    font-size: 32px !important;
  }

  .heading-text br,
  .responsive-text br {
    display: none;
  }

}

.heading-empahsis {
  color: var(--accent-bright-blue);
}

.cta-outer {
  height: 62px;
  padding: 15px 40px;
  background-color: var(--primary-coral-salmon);
  border-radius: 20px;
}

.cta-inner {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.cta-text {
  font-weight: var(--btn-font-weight);
  color: var(--white);
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  white-space: nowrap;
  font-style: var(--btn-font-style);
  margin: 0;
}

.cta-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

/* --- DESIGN TOKENS FROM ANIMA --- */

:root {
  --primary-coral-salmon: rgba(255, 90, 110, 1);
  --secondary-dark-charcoal: rgba(62, 64, 70, 1);
  --accent-bright-blue: rgba(41, 121, 230, 1);
  --white: rgba(255, 255, 255, 1);
  --btn-font-family: var(--wa-font-family-body);
  --btn-font-weight: 800;
  --btn-font-size: 20px;
  --btn-letter-spacing: 0.2px;
  --btn-line-height: 30px;
  --btn-font-style: normal;
  --menu-font-family: var(--wa-font-family-body);
  --menu-font-weight: 600;
  --menu-font-size: 20px;
  --menu-letter-spacing: 0px;
  --menu-line-height: 30px;
  --menu-font-style: normal;
  --h1-font-family: var(--wa-font-family-body);
  --h1-font-weight: 700;
  --h1-font-size: 48px;
  --h1-letter-spacing: 0px;
  --h1-line-height: 1.3;
  --h1-font-style: normal;
  --para-font-family: var(--wa-font-family-body);
  --para-font-weight: 500;
  --para-font-size: 24px;
  --para-letter-spacing: 0px;
  --para-line-height: 32px;
  --para-font-style: normal;
  --h4-font-family: var(--wa-font-family-body);
  --h4-font-weight: 600;
  --h4-font-size: 28px;
  --h4-letter-spacing: 0px;
  --h4-line-height: 34px;
  --h4-font-style: normal;
  --body-font-family: var(--wa-font-family-body);
  --body-font-weight: 500;
  --body-font-size: 18px;
  --body-letter-spacing: 0px;
  --body-line-height: 26px;
  --body-font-style: normal;
  --h2-font-family: var(--wa-font-family-body);
  --h2-font-weight: 600;
  --h2-font-size: 36px;
  --h2-letter-spacing: 0px;
  --h2-line-height: 34px;
  --h2-font-style: normal;
  --s: 0px 24px 32px 0px rgba(50, 50, 71, 0.08), 0px 16px 16px 0px
  rgba(50, 50, 71, 0.08);
  --m: 0px 32px 40px 0px rgba(50, 50, 71, 0.1), 0px 20px 20px 0px
  rgba(50, 50, 71, 0.1);
  --h: 0px 40px 48px 0px rgba(50, 50, 71, 0.25), 0px 24px 24px 0px
  rgba(50, 50, 71, 0.1);
  --too-h: 0px 48px 56px 0px rgba(50, 50, 71, 0.25), 0px 28px 28px 0px
  rgba(50, 50, 71, 0.15);
}

/* --- NAV BAR --- */

.nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 132px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  position: relative;
}

.nav .nav-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  border-radius: 20px;
}

.nav-outer {
  box-shadow: var(--m);
}

.nav .nav-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -3.50px;
  margin-bottom: -3.50px;
}

.nav .affable-logo {
  position: relative;
  width: 275px;
  min-width: 200px;
  height: 107px;
  aspect-ratio: 2.56;
  object-fit: contain;
  padding-right: 40px;
}

.nav .nav-main {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  position: relative;
  flex: 0 0 auto;
}

.nav .navbar {
  display: inline-flex;
  gap: 30px;
  flex: 0 0 auto;
  align-items: center;
  position: relative;
}

.nav .nav-heading-text {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: var(--menu-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--menu-font-size);
  letter-spacing: var(--menu-letter-spacing);
  line-height: var(--menu-line-height);
  white-space: nowrap;
  align-items: center;
  position: relative;
  font-style: var(--menu-font-style);
}

.nav .div {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 600;
  color: var(--secondary-dark-charcoal);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px;
  white-space: nowrap;
  align-items: center;
  position: relative;
}

.nav .nav-buttons {
  display: flex;
  flex-direction: column;
  width: 253px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 43px;
  position: relative;
  background-color: var(--primary-coral-salmon);
  border-radius: 20px;
}

.nav .frame {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.nav .let-s-talk {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: var(--btn-font-weight);
  color: #ffffff;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  white-space: nowrap;
  font-style: var(--btn-font-style);
}

.nav .icon {
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}


@media screen and (width < 768px) {

  .nav .nav-main {
    display: none;
  }

}

@media screen and (width >= 768px) {

  #nav-mobile {
    display: none;
  }

}



/* --- HERO --- */

.hero {
}

.hero .hero-outer {
}

.hero .hero-background {
  position: absolute;
  top: 380px;
  left: 0;
  width: 100%;
  height: 800px;
  background-image: url(../img/hero-background.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .hero-background-wrapper::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 380px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(white, transparent);
}

.hero .hero-background-wrapper::after {
  content: "";
  position: absolute;
  top: 1080px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(transparent, white);
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}

.hero .frame {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  position: relative;
}

.hero .we-make-your {
  font-weight: 800;
  font-size: 70px;
  text-align: center;
  line-height: 71px;
}

.hero .hero-heading-text {
  color: #3e4046;
}

.hero .hero-span {
  color: #2979e6;
}

.hero .affable-co-is-a {
  font-weight: 400;
  color: var(--secondary-dark-charcoal);
  font-size: 28px;
  text-align: center;
  line-height: 37px;
}

.hero .text-wrapper-2 {
  font-weight: 800;
}

.hero .text-wrapper-3 {
}

.hero .text-wrapper-4 {
}

.hero .div {
  font-weight: 800;
  color: var(--secondary-dark-charcoal);
  font-size: 28px;
  text-align: center;
  line-height: 37px;
}

.hero .clients-card-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 17px;
  position: relative;
  flex: 0 0 auto;
}

.hero .frame-wrapper {
  display: inline-flex;
  flex-direction: column;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 43px;
  position: relative;
  background-color: var(--primary-coral-salmon);
  border-radius: 20px;
}

.hero .frame-3 {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.hero .text-wrapper-5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: var(--btn-font-weight);
  color: var(--white);
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  white-space: nowrap;
  font-style: var(--btn-font-style);
}

.hero .icon {
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.hero .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 306px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 43px;
  position: relative;
  border-radius: 20px;
}

.hero .text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: var(--btn-font-weight);
  color: var(--accent-bright-blue);
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  white-space: nowrap;
  font-style: var(--btn-font-style);
}

/* --- CHALLENGES --- */

.challenges {
  margin-top: 360px;
}

.challenges-cards {
  max-width: 1200px;
}

.challenges-card {
  width: 383px;
  padding: 30px;
  border-radius: 40px;
}

.challenges-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.challenges-icon {
  width: 72px;
  height: 72px;
}

.challenges-card-heading {
  font-weight: var(--h4-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--h4-font-size);
  text-align: center;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
}

.challenges-card-text {
  font-weight: var(--body-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--para-font-size);
  text-align: center;
  letter-spacing: var(--para-letter-spacing);
  line-height: var(--para-line-height);
  font-style: var(--para-font-style);
}

@media screen and (width < 768px) {

  .challenges {
    margin-top: 60px;
  }

  .challenges-card {
    padding: 20px;
    width: calc(100vw - 40px);
  }

  .challenges-card-inner {
    padding: 0 0 10px;
  }

}

.challenges-card:nth-child(1) {
  border: 2px solid var(--primary-coral-salmon);
}

.challenges-card:nth-child(2) {
  border: 2px solid var(--accent-bright-blue);
}

.challenges-card:nth-child(3) {
  border: 2px solid var(--secondary-dark-charcoal);
}

.challenges-card:nth-child(4) {
  border: 2px solid var(--primary-coral-salmon);
}

.challenges-card:nth-child(5) {
  border: 2px solid var(--accent-bright-blue);
}

/* --- APPROACH --- */

#approach-mobile { /* TODO: rename? */
  position: relative;
}

.approach-cycle {
  padding: 20px;
}

.approach-card {
  position: relative;
  padding: 20px;
  max-width: 400px;
}

.approach-card img {
  position: absolute;
  width: 60px;
  opacity: 0.25;
  top: 5px;
}

@media screen and (width >= 768px) {

  .approach-cycle {
    width: 400px;
    padding-top: 320px;
    padding-bottom: 100px;
  }

  .approach-card {
    position: absolute;
    width: 400px;
  }

  #create-space {
    left: -140px;
    top: 800px;
    align-items: flex-start;
  }

  #seek-clarity {
    left: 250px;
    top: 320px;
    text-align: center;
  }

  #take-action {
    left: 640px;
    top: 800px;
    align-items: end;
    text-align: right;
  }

  .approach-card img {
    display: none;
  }

}

/* --- SERVICES --- */

.services {
  background-color: var(--accent-bright-blue);
  padding: 60px 0;
  background-image: url("../img/services-swoosh.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.services-swoosh {
  position: absolute;
  top: 578px;
  left: calc(50.00% - 864px);
  width: 1728px;
  height: 728px;
  mix-blend-mode: soft-light;
}

.services .heading-pill {
  border-color: var(--white);
  color: var(--white);
}

.services .heading-text {
  color: var(--white);
}

.services-heading-pill {
  padding: 10px 20px;
  flex: 0 0 auto;
  border-radius: 40px;
  border: 2px solid;
  border-color: var(--white);
  background-color: var(--white);
  color: var(--accent-bright-blue);
  font-weight: var(--h1-font-weight);
  font-size: var(--h1-font-size);
  line-height: 1.2;
  font-style: var(--h1-font-style);
  margin-top: 20px;
  text-align: center;
}

.services-cards {
  max-width: 1200px;
}

.services-card {
  width: 383px;
  padding: 30px;
  background-color: var(--secondary-dark-charcoal);
  border-radius: 40px;
}

.services-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-icon {
  width: 72px;
  height: 72px;
}

.services-card-heading {
  font-weight: var(--h4-font-weight);
  color: var(--white);
  font-size: var(--h4-font-size);
  text-align: center;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
}

.services-card-text {
  font-weight: var(--body-font-weight);
  color: var(--white);
  font-size: var(--body-font-size);
  text-align: center;
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
}

@media screen and (width < 768px) {

  .services-card {
    padding: 20px;
    width: calc(100vw - 40px);
  }

  .services-card-inner {
    padding: 0 0 10px;
  }

}

/* --- CLIENTS --- */

.clients {
}

.clients-cards {
  max-width: 1200px;
}

.clients-card {
  width: 383px;
  padding: 30px;
  background-color: var(--secondary-dark-charcoal);
  border-radius: 40px;
}

.clients-card-inner {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.clients-icon {
  width: 72px;
  height: 72px;
}

.clients-card-heading {
  font-weight: var(--h4-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--h4-font-size);
  text-align: left;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
  margin-top: 12px;
  margin-bottom: 0;
}

.clients-card-text {
  font-weight: var(--body-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--body-font-size);
  text-align: left;
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
  margin-top: 12px;
}


.clients-card-1 {
  background-color: rgba(255, 90, 110, 0.15);
}

.clients-card-1 .clients-heading {
  color: rgba(255, 90, 110, 1);
}

.clients-card-2 {
  background-color: rgba(41, 121, 230, 0.15);
}

.clients-card-2 .clients-heading {
  color: rgba(41, 121, 230, 1);
}

.clients-card-3 {
  background-color: rgba(62, 64, 70, 0.15);
}

.clients-card-3 .clients-heading {
  color: rgba(62, 64, 70, 1);
}

@media screen and (width < 768px) {

  .clients-card {
    padding: 20px;
    width: calc(100vw - 40px);
  }

  .clients-card-inner {
    padding: 0 0 10px;
  }

}

/* --- TEAM --- */

.team {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
}

.team .team-inner {
}

.team .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (width < 800px) {

  .team .team-grid {
    grid-template-columns: 1fr;
  }

  .team .team-card {
    width: 380px !important;
    height: auto !important;
  }

  .team .card-2 {
    grid-row: 3;
  }

  .team .card-3 {
    grid-row: 2;
  }

}


.team .team-card {
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 400px;
  align-items: flex-start;
  gap: 10px;
  padding: 39px 49px;
  position: relative;
  background-color: var(--white);
  border-radius: 40px;
}

.team .team-card-icon {
  width: 60px;
  height: 60px;
}

.team .team-card-heading {
  font-weight: var(--h4-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--h4-font-size);
  text-align: left;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  font-style: var(--h4-font-style);
  margin-top: 12px;
  margin-bottom: 0;
}

.team .team-card-text {
  font-weight: var(--body-font-weight);
  color: var(--secondary-dark-charcoal);
  font-size: var(--body-font-size);
  text-align: left;
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
  margin-top: 12px;
}

.team .team-card-inner {
  display: flex;
  flex-direction: column;
}

.team .card-1 {
  background-color: var(--secondary-dark-charcoal);
  background-image: url("../img/tamas.png");
  background-size: 440px;
  background-repeat: no-repeat;
  background-position: center 10px;
  min-height: 400px;
}

.team .card-2 {
  border: 2px solid var(--primary-coral-salmon);
}

.team .card-2 .team-card-text {
  color: var(--primary-coral-salmon);
}

.team .card-3 {
  padding: 10px;
}

.team .card-4 {
  border: 2px solid var(--accent-bright-blue);
}

.team .card-4 .team-card-icon {
  align-self: flex-end;
}

.team .card-4 .team-card-text {
  color: var(--accent-bright-blue);
}

/* --- PHILOSOPHY --- */

.philosophy {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
  position: relative;
  background-color: var(--secondary-dark-charcoal);
  border-radius: 40px;
  width: 100%;
  padding: 40px;
  background-image: url("../img/line-goes-up.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}

@media screen and (width < 900px) {

  .philosophy {
    border-radius: 0;
  }

}

.philosophy .philosophy-inner {
}

.philosophy .philosophy-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 20px;
    border: 2px solid;
    border-color: var(--white);
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    line-height: 22px;
    white-space: nowrap;
}

.philosophy .philosophy-heading {
  font-weight: 900;
  color: var(--white);
  font-size: var(--h1-font-size);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  font-style: var(--h1-font-style);
  text-align: left;
  margin-top: 20px;
}

.philosophy .philosophy-emphasis {
  color: var(--primary-coral-salmon);
}

.philosophy .philosophy-text {
  font-weight: var(--body-font-weight);
  color: var(--white);
  font-size: var(--body-font-size);
  text-align: left;
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  font-style: var(--body-font-style);
  max-width: 700px;
  margin-top: 20px;
  padding-bottom: 200px;
}

/* --- CONTACT --- */

.contact {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  margin-top: 100px;
}

.contact-background {
  background-color: rgba(249, 216, 220, 1);
  padding: 0 0 40px;
}

.contact wa-button::part(base),
.new-call-to-action wa-button::part(base) {
  height: 62px;
  padding: 15px 40px;
  background-color: var(--primary-coral-salmon);
  border-radius: 20px;
}

/* TODO: rename new-call-to-action once old version is gone */

.contact wa-button::part(label),
.new-call-to-action wa-button::part(label) {
  font-weight: var(--btn-font-weight);
  color: var(--white);
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  white-space: nowrap;
  font-style: var(--btn-font-style);
  margin: 0;
}

.contact wa-icon,
.new-call-to-action wa-icon {
  font-size: 24px;
  margin-left: 0.5em;
}

wa-page[view="desktop"] .new-call-to-action {
  max-width: 900px;
}

wa-page[view="mobile"] .new-call-to-action {
  max-width: 400px;
  padding: 0 20px;
}

.new-call-to-action p {
  font-weight: 300;
  text-align: center;
}

wa-page[view="desktop"] .new-call-to-action p {
  font-size: 32px;
}

wa-page[view="mobile"] .new-call-to-action p {
  font-size: 24px;
}

wa-page[view="mobile"] .hide-mobile {
  display: none;
}

wa-page[view="desktop"] .hide-desktop {
  display: none;
}


@media screen and (width >= 640px) {
  .contact .plorp {
    min-width: 600px;
  }
}

/* --- FOOTER --- */

.footer .footer-main {
  border-bottom: 1px dashed var(--secondary-dark-charcoal);
}

.footer .footer-left {
  width: 400px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-right: 1px dashed var(--secondary-dark-charcoal);
}

.footer wa-icon {
  font-size: 24px;
}

.footer wa-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--secondary-dark-charcoal);
}

.footer .footer-signoff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 20px;
  border: 2px solid;
  border-color: var(--accent-bright-blue);
  font-weight: 700;
  color: var(--accent-bright-blue);
  font-size: 20px;
  line-height: 22px;
  text-align: center;
}

.footer .footer-logo {
  width: 256px;
  height: 100px;
}

@media screen and (width < 900px) {

  .footer .footer-main {
    border-bottom: none;
  }

  .footer .footer-left {
    border-right: none;
    width: inherit;
  }

}
