@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Jost", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  font-size: 62.5%;
}

:root {
  --peach: #e7816b;
  --black: #1d1c1e;
  --white: #ffffff;
  --light-peach: #ffad9b;
  --light-peach-19: rgba(255, 172, 153, 0.19);
  --dark-grey: #333136;
  --light-grey: #f1f3f5;
}

body {
  font-family: "Jost", sans-serif;
  min-width: 37.5rem;
  display: grid;
  grid-template-columns: 1fr minmax(32.7rem, 111.1rem) 1fr;
}

main {
  background: #ffffff;
  margin: 0 auto;
  max-width: 144rem;
  grid-column: 2/3;
}

.nav-bar-header {
  margin: 3.5rem 2.4rem;
  background: var(--white);
  max-width: 111.1rem;
  height: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  grid-column: 2/3;
}
@media screen and (min-width: 768px) {
  .nav-bar-header {
    position: static;
    padding: 0 clamp(0.1rem, 0.2143rem + -0.1488vw, 0rem);
  }
}
.nav-bar-header .logo-container {
  width: 20.2rem;
  height: 2.7rem;
}
.nav-bar-header .logo-container img {
  width: 100%;
}
.nav-bar-header .hamburger-lines-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 2.4rem;
}
.nav-bar-header .hamburger-lines-container .hamburger-line {
  width: 2.4rem;
  height: 0.4rem;
  margin: 2px;
  background: var(--black);
  transform-origin: center;
  transition: 250ms ease-in-out;
}
@media screen and (min-width: 768px) {
  .nav-bar-header .hamburger-lines-container {
    display: none;
  }
}
.nav-bar-header .hamburger-lines-container .hamburger-line-rotate-left.active {
  transform: rotate(45deg) translate(0.6rem, 0.6rem);
}
.nav-bar-header .hamburger-lines-container .hamburger-line-center.active {
  opacity: 0;
  transform: scale(0, 0);
}
.nav-bar-header .hamburger-lines-container .hamburger-line-rotate-right.active {
  transform: rotate(-45deg) translate(0.5rem, -0.6rem);
}
.nav-bar-header .page-navigation {
  position: absolute;
  top: 245%;
  width: 100%;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  background: var(--black);
  padding: 4.8rem 2.4rem;
  transform: scale(0, 0);
  transform-origin: top;
  transition: 250ms ease-in-out;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .nav-bar-header .page-navigation {
    transform: scale(1, 1);
    background: none;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    width: 37rem;
    height: 2.7rem;
    padding: 0;
    position: static;
  }
}
.nav-bar-header .page-navigation a {
  color: var(--white);
  text-decoration: none;
  font-size: 2.4rem;
  cursor: pointer;
}
.nav-bar-header .page-navigation a:nth-child(1), .nav-bar-header .page-navigation a:nth-child(2) {
  margin-bottom: 3.2rem;
}
.nav-bar-header .page-navigation a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .nav-bar-header .page-navigation a {
    color: var(--black);
    font-size: 1.4rem;
  }
  .nav-bar-header .page-navigation a:nth-child(1), .nav-bar-header .page-navigation a:nth-child(2) {
    margin-bottom: 0rem;
  }
}
.nav-bar-header .overlay {
  transform: scale(0, 0);
  transform-origin: top;
  transition: 250ms ease-in-out;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 9.5rem;
  left: 0;
  z-index: 1;
  background: var(--dark-grey);
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .nav-bar-header .overlay {
    display: none;
  }
}
.nav-bar-header .show {
  transform: scale(1, 1);
}

a.button {
  text-transform: uppercase;
  border-radius: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
a.button.primery {
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}
a.button.secoundery {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
a.button.contact {
  padding-left: 1.85rem;
  padding-right: 1.85rem;
}
a.button.light {
  background: var(--peach);
  color: var(--white);
}
a.button.dark {
  background: var(--white);
  color: var(--black);
}
a.button:hover {
  background: var(--light-peach);
  color: var(--white);
}

button.submit-form {
  text-transform: uppercase;
  border: none;
  border-radius: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 1.75rem 4.75rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  background: var(--white);
  color: var(--black);
}
button.submit-form:hover {
  background: var(--light-peach);
  color: var(--white);
}

.project-type-cards {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 2.4rem;
}
.project-type-cards:not(.home) {
  justify-content: space-between;
  margin-bottom: 9.6rem;
}
@media screen and (min-width: 768px) {
  .project-type-cards:not(.home) {
    margin-bottom: 12rem;
  }
}
@media screen and (min-width: 1111px) {
  .project-type-cards {
    padding: 0rem 0;
    grid-template-columns: 54.1rem 54.1rem;
  }
  .project-type-cards:not(.home) {
    margin-bottom: 16rem;
  }
}
.project-type-cards .project-card {
  text-decoration: none;
  width: 32.7rem;
  height: 25rem;
  border-radius: 1.4rem;
  position: relative;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.project-type-cards .project-card h2 {
  font-size: 2.8rem;
  line-height: 3.6rem;
  letter-spacing: 0.14rem;
  z-index: 1;
  margin-bottom: 3.9rem;
}
@media screen and (min-width: 768px) {
  .project-type-cards .project-card h2 {
    font-size: 4rem;
    line-height: 4.8rem;
    letter-spacing: 0.2rem;
  }
}
.project-type-cards .project-card p {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .project-type-cards .project-card {
    width: 68.9rem;
    height: 20rem;
  }
}
@media screen and (min-width: 1111px) {
  .project-type-cards .project-card {
    width: 54.1rem;
    height: 30.8rem;
  }
}

.project-type-cards .project-card.home:nth-child(1) {
  background: url("/assets/home/mobile/image-web-design.jpg");
}
.project-type-cards .project-card.home:nth-child(2) {
  background: url("/assets/home/mobile/image-app-design.jpg");
}
.project-type-cards .project-card.home:nth-child(3) {
  background: url("/assets/home/mobile/image-graphic-design.jpg");
}
@media screen and (min-width: 768px) {
  .project-type-cards .project-card.home:nth-child(1) {
    background: url("/assets/home/tablet/image-web-design.jpg");
  }
  .project-type-cards .project-card.home:nth-child(2) {
    background: url("/assets/home/tablet/image-app-design.jpg");
  }
  .project-type-cards .project-card.home:nth-child(3) {
    background: url("/assets/home/tablet/image-graphic-design.jpg");
  }
}
@media screen and (min-width: 1111px) {
  .project-type-cards .project-card.home:nth-child(1) {
    height: 64rem;
    grid-row: 1/3;
    grid-column: 1/2;
    background: url("/assets/home/desktop/image-web-design-large.jpg");
  }
  .project-type-cards .project-card.home:nth-child(2) {
    background: url("/assets/home/desktop/image-app-design.jpg");
    grid-column: 2/3;
  }
  .project-type-cards .project-card.home:nth-child(3) {
    grid-column: 2/3;
    background: url("/assets/home/desktop/image-graphic-design.jpg");
  }
}
.project-type-cards .project-card.web-design:nth-child(1) {
  background: url("/assets/home/mobile/image-app-design.jpg");
}
.project-type-cards .project-card.web-design:nth-child(2) {
  background: url("/assets/home/mobile/image-graphic-design.jpg");
}
.project-type-cards .project-card.app-design:nth-child(1) {
  background: url("/assets/home/mobile/image-web-design.jpg");
}
.project-type-cards .project-card.app-design:nth-child(2) {
  background: url("/assets/home/mobile/image-graphic-design.jpg");
}
.project-type-cards .project-card.graphic-design:nth-child(1) {
  background: url("/assets/home/mobile/image-web-design.jpg");
}
.project-type-cards .project-card.graphic-design:nth-child(2) {
  background: url("/assets/home/mobile/image-app-design.jpg");
}

.project-card::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.4rem;
}

.project-card:hover::before {
  background: var(--peach);
  opacity: 0.8;
  border-radius: 1.4rem;
}

main.about section.location-cards-hero-container {
  grid-column: 2/3;
}

section.location-cards-hero-container {
  height: 118.8rem;
  margin-bottom: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
section.location-cards-hero-container .location-card-container {
  width: 35rem;
  height: 36.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
section.location-cards-hero-container .location-card-container h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: 0.5rem;
}
@media screen and (min-width: 768px) {
  section.location-cards-hero-container {
    height: 123rem;
  }
}
@media screen and (min-width: 1111px) {
  section.location-cards-hero-container {
    height: 36.4rem;
    width: 111.1rem;
    flex-direction: row;
    margin-bottom: 16rem;
  }
}

.location-card-container:nth-child(2) img {
  background: url(/assets/home/desktop/bg-pattern-hero-home-passion.svg);
  background-size: cover;
}

.location-card-container:nth-child(3) img {
  background: url(/assets/home/desktop/bg-pattern-hero-home-RESOURCEFUL.svg);
  background-size: cover;
}

.location-card-container:nth-child(1) img {
  background: url(/assets/home/desktop/bg-pattern-hero-home.svg);
  background-size: cover;
}

footer {
  grid-column: 1/4;
}
footer section.footer-banner {
  display: grid;
  grid-template-columns: minmax(2.4rem, 1fr) minmax(32.7rem, 111.1rem) minmax(2.4rem, 1fr);
  grid-template-rows: 19rem 18.9rem;
}
footer section.footer-banner .footer-banner-content {
  grid-column: 2/3;
  grid-row: 1/3;
  background: var(--peach);
  color: var(--white);
  border-radius: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6.4rem 2.8rem;
  background-image: url(/assets/shared/desktop/bg-pattern-call-to-action.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  footer section.footer-banner .footer-banner-content {
    padding: 5.7rem 5.85rem;
    grid-template-columns: minmax(4rem, 1fr) minmax(32.7rem, 111.1rem) minmax(4rem, 1fr);
  }
}
@media screen and (min-width: 1111px) {
  footer section.footer-banner .footer-banner-content {
    padding: 7.4rem 9.6rem;
    flex-direction: row;
  }
}
footer section.footer-banner .footer-banner-content .footer-banner-info-container {
  text-align: center;
  max-width: 45.9rem;
}
footer section.footer-banner .footer-banner-content .footer-banner-info-container h2 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1111px) {
  footer section.footer-banner .footer-banner-content .footer-banner-info-container h2 {
    text-align: start;
  }
}
footer section.footer-banner .footer-banner-content .footer-banner-info-container p {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 1111px) {
  footer section.footer-banner .footer-banner-content .footer-banner-info-container p {
    text-align: start;
  }
}
footer section.footer-banner .footer-banner-overlay {
  grid-column: 1/4;
  grid-row: 2/3;
  background: var(--black);
  z-index: -1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr minmax(32.7rem, 111.1rem) 1fr;
  background: var(--black);
}
.footer-content .footer-content-container {
  grid-column: 2/3;
  padding: 6.4rem 2.4rem;
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container {
    padding: 8rem 3.9rem;
  }
}
@media screen and (min-width: 1111px) {
  .footer-content .footer-content-container {
    padding: 7.1rem 7.2rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container .footer-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4.8rem;
    border-bottom: rgba(255, 255, 255, 0.1) 0.1rem solid;
  }
}
.footer-content .footer-content-container .footer-navigation-container .footer-logo-container {
  border-bottom: rgba(255, 255, 255, 0.1) 0.1rem solid;
  padding-bottom: 3.2rem;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container .footer-navigation-container .footer-logo-container {
    padding-bottom: 0;
    border-bottom: none;
    display: block;
  }
}
.footer-content .footer-content-container .footer-navigation-container .footer-logo-container img {
  width: 20.2rem;
  height: 2.7rem;
}
.footer-content .footer-content-container .footer-navigation-container .navgation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-content .footer-content-container .footer-navigation-container .navgation a {
  text-decoration: none;
  margin-top: 3.4rem;
  font-size: 1.4rem;
  line-height: 14px;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-content .footer-content-container .footer-navigation-container .navgation a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container .footer-navigation-container .navgation a {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container .footer-navigation-container .navgation {
    flex-direction: row;
    width: 37rem;
    justify-content: space-between;
  }
}
.footer-content .footer-content-container .contact-us-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin-top: 4.7rem;
  height: 25.3rem;
}
@media screen and (min-width: 768px) {
  .footer-content .footer-content-container .contact-us-footer {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 3.8rem;
    height: 10.7rem;
  }
}
.footer-content .footer-content-container .contact-us-footer .contact-info {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--white);
  opacity: 0.5;
}
.footer-content .footer-content-container .contact-us-footer .contact-info h3 {
  font-weight: bold;
}
.footer-content .footer-content-container .contact-us-footer .social-media-connect {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 18.4rem;
}
.footer-content .footer-content-container .contact-us-footer .social-media-connect a {
  text-decoration: none;
}
.footer-content .footer-content-container .contact-us-footer .social-media-connect a svg {
  fill: var(--peach);
}
.footer-content .footer-content-container .contact-us-footer .social-media-connect a svg :hover {
  fill: var(--light-peach);
}

section.project-card-banner {
  max-width: 100%;
  height: 32rem;
  background: var(--peach);
  border-radius: 1.4rem;
  margin-bottom: 9.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
}
section.project-card-banner .project-card-banner-info {
  text-align: center;
  color: var(--white);
  padding: 0 2.5rem;
}
section.project-card-banner .project-card-banner-info h1 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 3.6rem;
}
section.project-card-banner .project-card-banner-info p {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  section.project-card-banner {
    height: 25.2rem;
    margin-bottom: 12rem;
  }
  section.project-card-banner .project-card-banner-info {
    width: 100%;
  }
  section.project-card-banner .project-card-banner-info h1 {
    font-size: 4.8rem;
    line-height: 4.8rem;
  }
  section.project-card-banner .project-card-banner-info p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  section.project-card-banner {
    max-width: 111.1rem;
    height: 25.2rem;
    margin-bottom: 16rem;
  }
  section.project-card-banner .project-card-banner-info p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

section.project-card-banner.graphic {
  background-image: url(/assets/graphic-design/desktop/bg-pattern-intro-graphic.svg);
  background-position: center;
  background-repeat: no-repeat;
}

section.project-card-banner.app {
  background-image: url(/assets/app-design/desktop/bg-pattern-intro-app.svg);
  background-position: center;
  background-repeat: no-repeat;
}

section.project-card-banner.web {
  background-image: url(/assets/web-design/desktop/bg-pattern-intro-web.svg);
  background-repeat: no-repeat;
  background-position: center;
}

section.portfolio-project-cards {
  display: grid;
  grid-template-columns: 1fr 32.7rem 1fr;
  grid-template-rows: repeat(auto-fill, 1fr);
  row-gap: 4rem;
  margin-bottom: 9.6rem;
}
section.portfolio-project-cards .portfolio-card {
  grid-column: 2/3;
  height: 47.8rem;
}
section.portfolio-project-cards .portfolio-card img {
  width: 32.7rem;
  height: 32rem;
  border-radius: 1.4rem 1.4rem 0 0;
}
section.portfolio-project-cards .portfolio-info {
  text-align: center;
  background: var(--light-peach-19);
  height: 15.8rem;
  border-radius: 0 0 1.4rem 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: background 250ms;
}
section.portfolio-project-cards .portfolio-info h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: 0.5rem;
  color: var(--peach);
  transition: color 250ms;
}
section.portfolio-project-cards .portfolio-info p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--dark-grey);
}
section.portfolio-project-cards .portfolio-info:hover {
  background: var(--peach);
  cursor: pointer;
}
section.portfolio-project-cards .portfolio-info:hover h2 {
  color: var(--white);
}
section.portfolio-project-cards .portfolio-info:hover p {
  color: var(--white);
}
@media screen and (min-width: 768px) {
  section.portfolio-project-cards {
    grid-template-columns: 1fr 68.9rem 1fr;
    row-gap: 3.2rem;
    margin-bottom: 12rem;
  }
  section.portfolio-project-cards .portfolio-card {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 34.45rem 34.45rem;
    height: 31rem;
  }
  section.portfolio-project-cards .portfolio-card img {
    width: 34.45rem;
    height: 31rem;
    grid-column: 1/2;
    border-radius: 1.4rem 0 0 1.4rem;
  }
  section.portfolio-project-cards .portfolio-card .portfolio-info {
    grid-column: 2/3;
    width: 34.45rem;
    height: 31rem;
    border-radius: 0 1.4rem 1.4rem 0;
  }
}
@media screen and (min-width: 1111px) {
  section.portfolio-project-cards {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 3.2rem;
    column-gap: 3rem;
  }
  section.portfolio-project-cards .portfolio-card {
    grid-column: unset;
    grid-template-columns: 1fr;
    height: 47.8rem;
  }
  section.portfolio-project-cards .portfolio-card img {
    grid-column: unset;
    width: 35rem;
    height: 32rem;
    border-radius: 1.4rem 1.4rem 0 0;
  }
  section.portfolio-project-cards .portfolio-card .portfolio-info {
    grid-column: unset;
    width: 35rem;
    height: 15.9rem;
    border-radius: 0 0 1.4rem 1.4rem;
  }
}

.home-hero-card {
  width: clamp(37.5rem, 7.5382rem + 79.8982vw, 68.9rem);
  height: 84.3rem;
  background-color: var(--peach);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: clamp(12rem, 9.962rem + 5.4348vw, 16rem);
  overflow: hidden;
  border-radius: 1.4rem;
  background-image: url(/assets/home/desktop/bg-pattern-hero-home.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 1111px) {
  .home-hero-card {
    flex-direction: row;
    width: 111.1rem;
    height: 64rem;
    position: relative;
  }
}
@media screen and (min-width: 1111px) {
  .home-hero-card-img {
    position: absolute;
    left: 550px;
    top: -30px;
  }
}
.home-hero-card-info {
  width: clamp(32.7rem, 20.166rem + 33.4239vw, 57.3rem);
  height: clamp(31.2rem, 30.4867rem + 1.9022vw, 32.6rem);
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: clamp(8rem, 9.019rem + -2.7174vw, 6rem);
}
@media screen and (min-width: 1111px) {
  .home-hero-card-info {
    margin-top: 0;
    width: 54rem;
    align-items: flex-start;
    padding-left: 9.6rem;
  }
}
.home-hero-card-info h1 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1111px) {
  .home-hero-card-info h1 {
    text-align: left;
  }
}
.home-hero-card-info p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1111px) {
  .home-hero-card-info p {
    text-align: left;
  }
}

.virtue-cards {
  padding: 12rem 2.4rem;
  display: grid;
  place-items: center;
  max-width: 111rem;
}
@media screen and (min-width: 1111px) {
  .virtue-cards {
    padding: 16rem 0;
    display: flex;
    justify-content: space-between;
  }
}
.virtue-cards__container {
  display: grid;
  place-items: center;
  max-width: 32.7rem;
}
@media screen and (min-width: 768px) {
  .virtue-cards__container {
    display: flex;
    max-width: 68.9rem;
  }
}
@media screen and (min-width: 1111px) {
  .virtue-cards__container {
    flex-direction: column;
    max-width: 35rem;
  }
}
.virtue-cards__container:nth-child(1), .virtue-cards__container:nth-child(2) {
  margin-bottom: 8.7rem;
}
@media screen and (min-width: 768px) {
  .virtue-cards__container:nth-child(1), .virtue-cards__container:nth-child(2) {
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 1111px) {
  .virtue-cards__container:nth-child(1), .virtue-cards__container:nth-child(2) {
    margin-bottom: 0rem;
  }
}
.virtue-cards__container__img {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 768px) {
  .virtue-cards__container__img {
    margin-bottom: 0;
    margin-right: 3rem;
  }
}
@media screen and (min-width: 1111px) {
  .virtue-cards__container__img {
    margin-bottom: 4.8rem;
    margin-right: 0rem;
  }
}
.virtue-cards__container__info {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .virtue-cards__container__info {
    text-align: left;
  }
}
@media screen and (min-width: 1111px) {
  .virtue-cards__container__info {
    text-align: center;
  }
}
.virtue-cards__container__info h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: 0.5rem;
  margin-bottom: 4.4rem;
}
@media screen and (min-width: 768px) {
  .virtue-cards__container__info h2 {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1111px) {
  .virtue-cards__container__info h2 {
    margin-bottom: 3.2rem;
  }
}
.virtue-cards__container__info p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.virtue-cards__container:nth-child(1) .virtue-cards__container__img img {
  background: url(/assets/home/desktop/bg-pattern-hero-home-passion.svg);
  background-size: cover;
}

.virtue-cards__container:nth-child(2) .virtue-cards__container__img img {
  background: url(/assets/home/desktop/bg-pattern-hero-home-RESOURCEFUL.svg);
  background-size: cover;
}

.virtue-cards__container:nth-child(3) .virtue-cards__container__img img {
  background: url(/assets/home/desktop/bg-pattern-hero-home.svg);
  background-size: cover;
}

main.about {
  display: grid;
  grid-template-columns: 1fr minmax(37.5rem, 111.1rem) 1fr;
  place-items: center;
}

section.about-hero-card {
  grid-column: 2/3;
  max-width: 37.5rem;
  background: var(--peach);
  overflow: hidden;
  border-radius: 1.4rem;
  background-image: url(/assets/about/desktop/bg-pattern-hero-about-desktop.svg);
  background-repeat: no-repeat;
}
section.about-hero-card .hero-card-info {
  padding: 8.5rem 3.7rem;
  text-align: center;
  color: var(--white);
}
section.about-hero-card .hero-card-info h1 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 3.8rem;
}
section.about-hero-card .hero-card-info p {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  section.about-hero-card {
    max-width: 68.9rem;
  }
  section.about-hero-card .hero-card-info {
    padding: 6.7rem;
    margin-bottom: 12rem;
  }
  section.about-hero-card .hero-card-info h1 {
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 4.8rem;
  }
  section.about-hero-card .hero-card-info p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media screen and (min-width: 1111px) {
  section.about-hero-card {
    margin-bottom: 16rem;
    max-width: 111.1rem;
    display: flex;
    flex-direction: row-reverse;
    max-height: 48rem;
  }
  section.about-hero-card .hero-card-info {
    text-align: left;
    padding: 14.2rem 8.2rem 14.2rem 9.5rem;
  }
}

section.talent-hero-card {
  grid-column: 2/3;
  max-width: 37.5rem;
  background: var(--light-peach-19);
  border-radius: 1.4rem;
  overflow: hidden;
  margin-bottom: 12rem;
  background-image: url(/assets/shared/mobile/bg-pattern-design-pages-intro-mobile.svg);
  background-repeat: no-repeat;
}
section.talent-hero-card .talent-hero-card-info {
  text-align: center;
  padding: 8rem 2.4rem;
}
section.talent-hero-card .talent-hero-card-info h2 {
  color: var(--peach);
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 3.8rem;
}
section.talent-hero-card .talent-hero-card-info p {
  color: var(--dark-grey);
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 3.4rem;
}
@media screen and (min-width: 768px) {
  section.talent-hero-card {
    max-width: 68.9rem;
  }
  section.talent-hero-card .talent-hero-card-info {
    padding: 6.7rem 5.75rem;
  }
  section.talent-hero-card .talent-hero-card-info h2 {
    font-size: 4rem;
    line-height: 4.8rem;
    margin-bottom: 4rem;
  }
  section.talent-hero-card .talent-hero-card-info p {
    font: 1.6rem;
    line-height: 2.6rem;
    margin-bottom: 3.8rem;
  }
}
@media screen and (min-width: 1111px) {
  section.talent-hero-card {
    max-width: 111.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 64rem;
    margin-bottom: 16rem;
  }
  section.talent-hero-card:nth-child(4) {
    flex-direction: row-reverse;
  }
  section.talent-hero-card .talent-hero-card-info {
    text-align: left;
    padding: 15.3rem 9.5rem;
  }
}

section.map-location-container {
  margin-bottom: 4rem;
}
section.map-location-container iframe {
  width: 37.5rem;
  height: 32rem;
}
section.map-location-container .location-map-info {
  background: var(--light-peach-19);
  text-align: center;
  padding: 8.4rem;
  width: 37.5rem;
  background-image: url(/assets/shared/desktop/bg-pattern-two-circles.svg);
  background-repeat: no-repeat;
}
section.map-location-container .location-map-info h2 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  color: var(--peach);
  margin-bottom: 3.7rem;
}
section.map-location-container .location-map-info .adress-contact-container {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
section.map-location-container .location-map-info .adress-contact-container h3 {
  font-weight: bold;
}
section.map-location-container .location-map-info .adress-contact-container .adress-info {
  margin-bottom: 3.5rem;
}
section.map-location-container:nth-child(3) {
  margin-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  section.map-location-container {
    max-width: 68.9rem;
    margin-bottom: 12rem;
  }
  section.map-location-container iframe {
    width: 73rem;
    height: 32.6rem;
    border-radius: 1.4rem;
    margin-bottom: 3.1rem;
  }
  section.map-location-container .location-map-info {
    text-align: left;
    padding: 9.4rem 16.5rem 9.1rem 7.6rem;
    height: 32.6rem;
    border-radius: 1.4rem;
    width: 73rem;
  }
  section.map-location-container .location-map-info h2 {
    font-size: 4rem;
    line-height: 4.8rem;
    margin-bottom: 4rem;
  }
  section.map-location-container .location-map-info .adress-contact-container {
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  section.map-location-container .location-map-info .adress-contact-container .adress-info {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1111px) {
  section.map-location-container {
    max-width: 111.1rem;
    max-height: 32.6rem;
    display: flex;
    gap: 4rem;
    flex-direction: row-reverse;
    margin-bottom: 3.2rem;
  }
  section.map-location-container iframe {
    width: 35rem;
    height: 32.6rem;
    margin-bottom: 0;
  }
  section.map-location-container .location-map-info {
    text-align: left;
    padding: 9.4rem 18.6rem 9.1rem 9.5rem;
    width: 73rem;
  }
  section.map-location-container .location-map-info h2 {
    font-size: 4rem;
    line-height: 4.8rem;
    margin-bottom: 4rem;
  }
}
section.map-location-container:nth-child(2) {
  flex-direction: row;
}
section.map-location-container:nth-child(3) {
  margin-bottom: 16rem;
}

section.contact-us-hero-card {
  background: var(--peach);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 5.8rem;
  margin-bottom: 12rem;
  padding: 7.8rem 2.4rem 7.2rem 2.4rem;
  background-image: url(/assets/contact/mobile/bg-pattern-hero-contact-mobile.svg);
}
section.contact-us-hero-card .contact-us-info-container {
  text-align: center;
}
section.contact-us-hero-card .contact-us-info-container h1 {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin-bottom: 3.5rem;
}
section.contact-us-hero-card .contact-us-info-container p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: var(--light-grey);
}
section.contact-us-hero-card form {
  width: 32.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
section.contact-us-hero-card form input {
  display: block;
  border: none;
  border-bottom: 1px solid var(--white);
  background: transparent;
  padding-left: 1.6rem;
  padding-bottom: 1.9rem;
  font-size: 1.5rem;
  line-height: 2.6rem;
  width: 100%;
  margin-bottom: 3.1rem;
  outline: none;
  color: var(--white);
}
section.contact-us-hero-card form input:hover {
  border-bottom: 3px solid var(--white);
}
section.contact-us-hero-card form .message {
  padding-bottom: 7.9rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  section.contact-us-hero-card {
    max-width: 68.9rem;
    padding: 7.8rem 5.8rem 7.2rem 5.8rem;
    background-image: url(/assets/contact/desktop/bg-pattern-hero-desktop.svg);
    background-repeat: no-repeat;
  }
  section.contact-us-hero-card .contact-us-info-container {
    text-align: left;
  }
  section.contact-us-hero-card .contact-us-info-container h1 {
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 4.55rem;
  }
  section.contact-us-hero-card .contact-us-info-container p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  section.contact-us-hero-card form {
    width: 57.3rem;
  }
  section.contact-us-hero-card form .message {
    margin-bottom: 2.3rem;
  }
  section.contact-us-hero-card form button {
    margin-left: auto;
  }
}
@media screen and (min-width: 1111px) {
  section.contact-us-hero-card {
    flex-direction: row;
    max-width: 111.1rem;
    margin-bottom: 16rem;
    padding: 5.4rem 9.5rem;
    gap: 9.8rem;
  }
  section.contact-us-hero-card .contact-us-info-container {
    max-width: 44.2rem;
  }
  section.contact-us-hero-card form {
    width: 38rem;
  }
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--light-grey);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--light-grey);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--light-grey);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--light-grey);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--peach) inset;
}

.alert {
  position: absolute;
  top: 0.5rem;
  right: 0;
  color: var(--white);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 2.6rem;
  display: none;
}
.alert:nth-of-type(2) {
  top: 8rem;
}
.alert:nth-of-type(3) {
  top: 16rem;
}
.alert:nth-of-type(4) {
  top: 24.5rem;
}

.alert-on {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

/*# sourceMappingURL=master.css.map */
