@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&family=Fraunces:wght@700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

body {
  background: #f2f2f2;
  overflow-y: overlay !important;
}

.screen-reader-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#page-html.active {
  overflow: hidden !important;
}

nav {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #3ebfff;
  z-index: 40000;
  padding: 32px 24px;
}
nav .nav-links {
  position: fixed;
  top: 106px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50000;
  background: #f2f2f2;
  height: 305px;
  width: 90%;
  padding: 30px 0;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
  display: none;
}
nav .nav-links.active {
  display: block;
}
nav .nav-links ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
nav .nav-links ul li {
  list-style-type: none;
}
nav .nav-links ul li a {
  color: #808397;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.14px;
  text-decoration: none;
}
nav .nav-links ul li a.cta {
  background: #fbd600;
  height: 56px;
  width: 140px;
  border-radius: 28px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.11px;
  color: #24303e;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-links::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid #f2f2f2;
  position: absolute;
  right: 0;
  top: calc(30px * -1) !important;
}

@media screen and (min-width: 767px) {
  nav .nav-links {
    display: flex;
    box-shadow: unset;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    z-index: 1;
    background: transparent;
    height: unset;
    width: unset;
    padding: unset;
    box-shadow: none;
  }
  nav .nav-links::before {
    display: none;
  }
  nav .nav-links ul {
    flex-direction: row;
  }
  nav .nav-links ul li {
    list-style-type: none;
  }
  nav .nav-links ul li:not(:last-child) {
    margin-right: 47px;
  }
  nav .nav-links ul li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: "Barlow", Arial, sans-serif;
  }
  nav .nav-links ul li a.cta {
    color: #24303e;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 56px;
    border-radius: 28px;
    text-align: center;
    font-family: "Fraunces", Georgia, serif;
    transition: all ease-in-out 200ms;
  }
  nav .nav-links ul li a.cta:hover {
    color: white;
    background: rgba(255, 255, 255, 0.25);
  }
  nav #hamburger {
    display: none;
  }
}
.hero {
  display: block;
  height: 100vh;
  width: 100vw;
  background-image: url("../images/mobile/image-header.jpg");
  background-size: cover;
  background-position: bottom;
  position: relative;
}
.hero h1 {
  color: white;
  font-size: 40px;
  width: 327px;
  font-weight: 900;
  line-height: 49.32px;
  letter-spacing: 6.25px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Fraunces", Georgia, serif;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
}
.hero img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 321px) {
  .hero h1 {
    letter-spacing: 4.5px;
  }
}
@media screen and (min-width: 767px) {
  .hero {
    background: url("../images/desktop/image-header.jpg");
    background-position: center;
    background-size: cover;
  }
  .hero h1 {
    font-size: 56px;
    line-height: 69.05px;
    letter-spacing: 8.75px;
    width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .hero h1 {
    width: max-content;
  }
}
.content-squares {
  width: 100vw !important;
  display: flex;
  flex-direction: column;
}
.content-squares img {
  width: 100%;
  margin: 0;
  padding: 0;
}
.content-squares img.desktopImg {
  display: none;
}
.content-squares img.mobileImg {
  display: block;
}
.content-squares .content-text {
  display: inline-block;
  padding: 64px 24px;
  text-align: center;
  width: 100%;
  margin: 0;
}
.content-squares .content-text h2 {
  font-size: 32px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: bold;
  line-height: 39.46px;
  letter-spacing: -0.23px;
  color: #24303e;
  margin-bottom: 24px;
}
.content-squares .content-text p {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.13px;
  color: #808397;
  margin-bottom: 32px;
}
.content-squares .content-text a {
  text-transform: uppercase;
  font-family: "Fraunces", Georgia, serif;
  color: #24303e;
  font-weight: 900;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
}
.content-squares .content-text a::after {
  content: "";
  width: 137px;
  height: 10px;
  position: absolute;
  top: 12px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 28px;
  opacity: 25%;
  z-index: -10000;
  transition: opacity ease-in-out 200ms;
}
.content-squares .content-text a.transform::after {
  background: #fad400;
}
.content-squares .content-text a.stand-out::after {
  background: #fe7766;
}
.content-squares .content-text a:hover:after {
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .content-squares {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .content-squares img {
    width: 50% !important;
  }
  .content-squares img.desktopImg {
    display: inline-block;
  }
  .content-squares img.mobileImg {
    display: none;
  }
  .content-squares .content-text {
    width: 50vw !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .content-squares .content-text h2 {
    font-size: 40px;
    line-height: 49.32px;
    letter-spacing: -0.29px;
    margin-bottom: 36px;
  }
  .content-squares .content-text p {
    margin-bottom: 40px;
  }
  .content-squares .order1 {
    order: 1;
  }
  .content-squares .order2 {
    order: 2;
  }
  .content-squares .order3 {
    order: 3;
  }
  .content-squares .order4 {
    order: 4;
  }
}
@media screen and (min-width: 1439px) {
  .content-text {
    padding: 165px 158px 110px 157px !important;
  }
  .content-text a::after {
    right: 60%;
  }
}
.content-overlays .overlay {
  height: 600px;
  width: 100%;
  background-position: center;
  background-size: cover;
  text-align: center;
  position: relative;
}
.content-overlays .overlay.design {
  background-image: url("../images/mobile/image-graphic-design.jpg");
}
.content-overlays .overlay.photography {
  background-image: url("../images/mobile/image-photography.jpg");
}
.content-overlays .overlay .text {
  position: absolute;
  bottom: 59px;
  left: 50%;
  transform: translateX(-50%);
}
.content-overlays .overlay .text h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 34.52px;
  letter-spacing: -0.2px;
  color: #24554a;
  margin-bottom: 27px;
}
.content-overlays .overlay .text p {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.11px;
  color: #24554a;
  width: 327px;
}

@media screen and (min-width: 767px) {
  .content-overlays {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content-overlays .overlay {
    width: 50%;
  }
  .content-overlays .overlay.design {
    background-image: url("../images/desktop/image-graphic-design.jpg");
  }
  .content-overlays .overlay.photography {
    background-image: url("../images/desktop/image-photography.jpg");
  }
  .content-overlays .text p {
    width: 339px;
  }
}
@media screen and (max-width: 321px) {
  .content-overlays .overlay .text p {
    width: 300px;
  }
}
.testimonials {
  padding: 64px 24px;
}
.testimonials h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 19.73px;
  letter-spacing: 4px;
  color: #a7aaad;
  text-transform: uppercase;
  margin-bottom: 64px;
  text-align: center;
}
.testimonials .testimonies {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonials .testimonies .testimony-group {
  text-align: center;
}
.testimonials .testimonies .testimony-group:not(:last-of-type) {
  margin-bottom: 64px;
}
.testimonials .testimonies .testimony-group img {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  margin-bottom: 32px;
}
.testimonials .testimonies .testimony-group .testimony {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.13px;
  text-align: center;
  color: #5b636d;
  margin-bottom: 32px;
}
.testimonials .testimonies .testimony-group .testimony-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 22.19px;
  letter-spacing: -0.13px;
  text-align: center;
  color: #24303e;
  margin-bottom: 9px;
  text-align: center;
}
.testimonials .testimonies .testimony-group .testimony-tag {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600px;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.1px;
  text-align: center;
  color: #a7aaad;
}

@media screen and (max-width: 321px) {
  .testimonials h2 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .testimonials {
    padding: 165px 90px;
  }
  .testimonials .testimonies {
    flex-direction: row;
  }
  .testimonials .testimonies .testimony-group {
    margin-bottom: 0 !important;
    padding: 0;
  }
  .testimonials .testimonies .testimony-group:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1439px) {
  .testimonials {
    padding: 165px 160px;
  }
}
.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.gallery .desktop {
  display: none;
  width: 25%;
}
.gallery .mobile {
  width: 50%;
}

@media screen and (min-width: 767px) {
  .desktop {
    display: inline-block !important;
  }

  .mobile {
    display: none;
  }
}
footer {
  background: #90d4c6;
  text-align: center;
  padding: 64px 39px;
}
footer .footer-links {
  margin: 40px 0 88px 0;
}
footer .footer-links a {
  color: #458d7e;
  text-decoration: none;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.13px;
  transition: all ease-in-out 200ms;
}
footer .footer-links a:not(:last-of-type) {
  margin-right: 57px;
}
footer .social-links a {
  transition: all ease-in-out 200ms;
}
footer .social-links a:not(:last-of-type) {
  margin-right: 28px;
}

@media screen and (max-width: 375px) {
  footer .footer-links a:not(:last-of-type) {
    margin-right: 20px !important;
  }
}
@media screen and (min-width: 767px) {
  footer .footer-links a:hover {
    color: white;
  }

  footer .social-links a:hover {
    filter: brightness(0) invert(1);
  }
}

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