html {
  box-sizing: border-box;
  font-size: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  color: hsl(232deg, 10%, 55%);
  line-height: 1.2;
  background-color: hsl(200deg, 100%, 62%);
}

a, a:visited, a:active {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

h2 {
  font-size: 3rem;
  font-family: "Fraunces", serif;
  color: hsl(212deg, 27%, 19%);
  font-weight: 900;
  margin: 0;
  padding: 0;
}
@media (min-width: 26.5625rem) {
  h2 {
    font-size: 3.5rem;
  }
}

h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  padding: 0;
}
@media (min-width: 26.5625rem) {
  h3 {
    font-size: 2rem;
  }
}

p {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: hsl(232deg, 10%, 55%);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@media (min-width: 26.5625rem) {
  p {
    font-size: 1rem;
  }
}

.flex {
  display: flex;
}

.f-jc-c {
  justify-content: center;
}

.f-jc-sb {
  justify-content: space-between;
}

.f-ai-c {
  align-items: center;
}

.flex-shrink {
  flex-shrink: 1;
}

.grid {
  display: grid;
}

@media (min-width: 48.75em) {
  .hide-for-desktop {
    display: none;
  }
}

.c-header {
  width: 100%;
  height: 5rem;
  padding: 1.5625rem;
  background-color: hsl(200deg, 100%, 62%);
  position: fixed;
  top: 0;
  z-index: 4;
}
@media (min-width: 48.75em) {
  .c-header {
    height: 6.25em;
    padding: 1rem 3.125rem 1rem 2.5rem;
  }
}
.c-header__navigation {
  width: 100%;
}
.c-header__hamburger {
  cursor: pointer;
}
.c-header__navigation-container {
  width: calc(100vw - 3.125rem);
  margin-inline: auto;
  height: 19.0625rem;
  position: absolute;
  top: 5rem;
  background-color: hsl(0deg, 0%, 100%);
  flex-direction: column;
  justify-content: space-around;
  display: none;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 8.5%, calc(100% - 1.625rem) 1.625rem);
}
@media (min-width: 48.74em) {
  .c-header__navigation-container {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: space-between;
    margin-inline-end: 0;
    background: none;
    clip-path: none;
  }
}
.c-header__navigation-container ul {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 4.375rem 0 0 0;
  height: 40%;
}
@media (min-width: 48.75em) {
  .c-header__navigation-container ul {
    flex-direction: row;
    margin: 0;
  }
}
.c-header__navigation-container--is-visible {
  display: flex;
}
.c-header__links a {
  margin-right: 3.125rem;
  font-size: 1.125rem;
  color: hsl(232deg, 10%, 55%);
  font-family: "Barlow", sans-serif;
  transition: opacity ease-in-out 200ms;
}
@media (min-width: 48.75em) {
  .c-header__links a {
    color: hsl(0deg, 0%, 100%);
  }
}
.c-header__links a:hover {
  opacity: 0.8;
}
.c-header__cta-button {
  width: 9.0625rem;
  height: 3.75rem;
  border: none;
  border-radius: 50rem;
  margin-bottom: 2.5rem;
  margin-top: 1.875rem;
  font-size: 1rem;
  color: hsl(212deg, 27%, 19%);
  background-color: hsl(51deg, 99%, 49%);
  font-family: "Fraunces", serif;
  box-shadow: 0px 0px 10px 0px rgba(25, 83, 107, 0.3);
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
@media (min-width: 48.75em) {
  .c-header__cta-button {
    margin: 0;
    background-color: hsl(0deg, 0%, 100%);
  }
}
.c-header__cta-button:hover {
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(196deg, 93%, 70%);
}

.c-main {
  margin-top: 5rem;
}
.c-main__hero {
  height: 28.4375rem;
  background-image: url(../../images/mobile/image-header.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 37.5rem) {
  .c-main__hero {
    background-image: url(../../images/desktop/image-header.jpg);
  }
}
@media (min-width: 48.75rem) {
  .c-main__hero {
    height: 42.8125rem;
  }
}
.c-main__hero h1 {
  font-size: 2.5rem;
  font-family: "Fraunces", serif;
  font-weight: 900;
  color: hsl(0deg, 0%, 100%);
  letter-spacing: 0.3125rem;
  width: 100%;
  margin: 4.375rem 0 0 0;
  margin-inline: auto;
}
@media (min-width: 31.25em) {
  .c-main__hero h1 {
    margin-top: 2.25rem;
  }
}
@media (min-width: 37.5rem) {
  .c-main__hero h1 {
    margin-top: 6rem;
  }
}
@media (min-width: 48.75rem) {
  .c-main__hero h1 {
    font-size: 3.5rem;
    letter-spacing: 0.7rem;
  }
}
.c-main__hero img {
  margin-top: 3.75rem;
}
@media (min-width: 48.75rem) {
  .c-main__hero img {
    margin-top: 9rem;
  }
}
.c-main__benefits-services {
  grid-template-columns: 1fr;
  grid-template-rows: 20.625rem 27.5rem 20.625rem 27.5rem 37.5rem 37.5rem;
}
@media (min-width: 48.75rem) {
  .c-main__benefits-services {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 37.5rem);
    grid-template-areas: "square-1 square-2" "square-3 square-4" "square-5 square-6";
  }
  .c-main__benefits-services .item-1 {
    grid-area: square-2;
  }
  .c-main__benefits-services .item-2 {
    grid-area: square-1;
  }
}
.c-main__benefits-services .item-1 {
  background-image: url(/images/mobile/image-transform.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.c-main__benefits-services .item-2, .c-main__benefits-services .item-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: hsl(26deg, 100%, 99%);
  padding: 1.875rem;
  z-index: 1;
}
@media (min-width: 48.75rem) {
  .c-main__benefits-services .item-2, .c-main__benefits-services .item-4 {
    text-align: left;
    padding: 11%;
  }
}
.c-main__benefits-services .item-2 h2, .c-main__benefits-services .item-4 h2 {
  margin-bottom: 3.125rem;
}
.c-main__benefits-services .item-2 p, .c-main__benefits-services .item-4 p {
  margin-bottom: 3.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.c-main__benefits-services .item-2 a, .c-main__benefits-services .item-4 a {
  color: hsl(212deg, 27%, 19%);
  font-family: "Fraunces", serif;
  font-weight: 900;
  position: relative;
}
.c-main__benefits-services .item-2 a::after, .c-main__benefits-services .item-4 a::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 0.5rem;
  border-radius: 100px;
  opacity: 0.5;
  z-index: -1;
  transition: opacity 250ms ease-out;
}
.c-main__benefits-services .item-2 a:hover::after, .c-main__benefits-services .item-4 a:hover::after {
  opacity: 1;
}
.c-main__benefits-services .item-2 .yellow-link::after, .c-main__benefits-services .item-4 .yellow-link::after {
  background-color: hsl(51deg, 99%, 49%);
}
.c-main__benefits-services .item-2 .red-link::after, .c-main__benefits-services .item-4 .red-link::after {
  background-color: hsl(8deg, 95%, 68%);
}
.c-main__benefits-services .item-3 {
  background-image: url(/images/mobile/image-stand-out.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.c-main__benefits-services .item-5, .c-main__benefits-services .item-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 3.75rem 0.5rem 3.75rem 0.5rem;
}
.c-main__benefits-services .item-5 h3, .c-main__benefits-services .item-6 h3 {
  margin-bottom: 2rem;
}
.c-main__benefits-services .item-5 {
  background-image: url(/images/mobile/image-graphic-design.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 48.75rem) {
  .c-main__benefits-services .item-5 {
    background-image: url(/images/desktop/image-graphic-design.jpg);
    padding: 3.75rem 10%;
  }
}
.c-main__benefits-services .item-5 h3, .c-main__benefits-services .item-5 p {
  color: hsl(167deg, 40%, 24%);
}
.c-main__benefits-services .item-6 {
  background-image: url(/images/mobile/image-photography.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 48.75rem) {
  .c-main__benefits-services .item-6 {
    background-image: url(/images/desktop/image-photography.jpg);
    padding: 3.75rem 15%;
  }
}
.c-main__benefits-services .item-6 h3, .c-main__benefits-services .item-6 p {
  color: hsl(198deg, 62%, 26%);
}
.c-main__testimonials {
  width: 100%;
  background-color: hsl(0deg, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 7.8125rem 2rem;
  text-align: center;
}
.c-main__testimonials h4 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  letter-spacing: 0.4rem;
  color: hsl(232deg, 10%, 55%);
  margin-bottom: 2.1875rem;
  margin-top: 7.8125rem;
}
.c-main__cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 1;
}
@media (min-width: 48.75rem) {
  .c-main__cards-container {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.c-main__testimonial-card {
  width: min(100vw, 23.75rem);
  height: 26.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 1.5rem;
  flex-shrink: 1;
}
.c-main__testimonial-card img {
  border-radius: 100px;
  width: 4.6875rem;
  aspect-ratio: 1/1;
  flex-shrink: 1;
}
.c-main__testimonial-card h4 {
  color: hsl(212deg, 27%, 19%);
  font-size: 1rem;
  letter-spacing: normal;
  font-weight: 900;
  margin: 0 0 0.8rem 0;
  flex-shrink: 1;
}
.c-main__testimonial-card span {
  color: hsl(232deg, 10%, 55%);
  font-size: 0.8rem;
  font-family: "Barlow", sans-serif;
  flex-shrink: 1;
}
.c-main__gallery {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 50vw 50vw;
  overflow: hidden;
}
.c-main__gallery img {
  width: 100%;
}
@media (min-width: 48.75rem) {
  .c-main__gallery img {
    aspect-ratio: 1/1.25;
  }
}
@media (min-width: 48.75rem) {
  .c-main__gallery {
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
  }
}

.c-footer {
  width: 100%;
  height: 21.5625rem;
  background-color: hsl(168deg, 34%, 41%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c-footer__logo {
  cursor: pointer;
}
.c-footer__logo img {
  width: 10.625rem;
  height: 2.1875rem;
}
.c-footer__links {
  width: min(100vw, 19rem);
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin: 2.8125rem 0 5.625rem 0;
}
.c-footer__links a {
  font-size: 1.125rem;
  color: hsl(167deg, 40%, 24%);
  font-family: "Barlow", sans-serif;
  transition: opacity ease-in 200ms, color ease-in 200ms;
}
.c-footer__links a:hover {
  opacity: 0.8;
  color: hsl(0deg, 0%, 100%);
}
.c-footer__social-icons-container {
  display: flex;
  height: auto;
  width: 10.3125rem;
  justify-content: space-between;
}
.c-footer__social-icon img {
  width: 1.375rem;
  height: 1.375rem;
}

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