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

body {
  font-family: "Barlow", sans-serif;
  font-family: "Fraunces", serif;
  font-size: 18px;
}

header {
  background-image: url("mobile/image-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  height: 500px;
  position: relative;
}
header .nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  position: relative;
}
header .nav-bar .brand-logo {
  width: 124px;
  height: 24px;
}
header .nav-bar .menu {
  width: 1.5rem;
  height: 1.125rem;
  align-self: stretch;
  cursor: pointer;
}
header .nav-bar .menu.active svg path {
  fill: rgba(255, 255, 255, 0.5);
}
header .nav-bar .nav-links {
  display: none;
}
header .nav-bar .nav-links--mobile {
  display: flex;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 84px;
  list-style: none;
  padding: 2rem 2rem;
  min-height: 265px;
  width: 100%;
  margin: 0;
  background-color: hsl(0, 0%, 100%);
  gap: 1.5rem;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadein 0.3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
    width: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
    height: 181px;
  }
}
header .nav-bar .nav-links--mobile a {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  color: hsl(232, 10%, 55%);
  cursor: pointer;
}
header .nav-bar .nav-links--mobile a:hover {
  color: hsl(212, 27%, 19%);
}
header .nav-bar .nav-links--mobile .big {
  background-color: hsl(51, 100%, 49%);
  padding: 1rem 1rem;
  border: none;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: hsl(212, 27%, 19%);
  border-radius: 30px;
}
header .nav-bar .nav-links--mobile .big:focus, header .nav-bar .nav-links--mobile .big:hover {
  outline: none;
  background-color: rgba(61, 191, 255, 0.3);
}
header .nav-bar .nav-links--mobile:after {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  margin-left: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: hsl(0, 0%, 100%);
  border-left-color: transparent;
  border-top-color: transparent;
}
header .nav-bar .nav-links--mobile--fadeout {
  animation: fadeout 300ms forwards;
}
@keyframes fadeout {
  0% {
    opacity: 1;
    width: 100%;
    height: 181px;
  }
  100% {
    opacity: 0;
    width: 0;
    height: 0;
  }
}
header .header-text {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}
header .header-text h1 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: hsl(0, 0%, 100%);
  letter-spacing: 0.3rem;
  margin: 0;
  line-height: 3rem;
  text-overflow: ellipsis;
}
header .arrow {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main .bg-image-one {
  background-image: url("mobile/image-transform.jpg");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  min-height: 300px;
}
main .bg-image-two {
  background-image: url("mobile/image-stand-out.jpg");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  min-height: 300px;
}
main .text-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background-color: hsl(0, 0%, 100%);
}
main .text-content .text-heading {
  text-align: center;
  padding: 0 1.5rem;
}
main .text-content .text-heading h3 {
  line-height: 2.5rem;
  margin: 0;
  font-size: 2rem;
  font-family: "Fraunces", serif;
  font-weight: 900;
  color: hsl(212, 27%, 19%);
}
main .text-content .text-para {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8rem;
  color: hsl(232, 10%, 55%);
}
main .text-content .bottom-text {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 900;
  z-index: 1;
}
main .text-content .bottom-text.yellow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  border: none;
  z-index: -1;
  background-color: rgba(250, 212, 0, 0.3);
}
main .text-content .bottom-text.yellow:hover:before {
  background-color: #fad400;
}
main .text-content .bottom-text.pink:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  border: none;
  z-index: -1;
  background-color: rgba(253, 120, 103, 0.3);
}
main .text-content .bottom-text.pink:hover:before {
  background-color: rgb(253, 120, 103);
}
main .bg-image-three {
  background-image: url("mobile/image-graphic-design.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  height: 600px;
  position: relative;
}
main .bg-image-three .content {
  position: absolute;
  bottom: 3rem;
  color: hsl(167, 40%, 24%);
  width: 100%;
  padding: 0 1rem;
  left: 50%;
  transform: translateX(-50%);
}
main .bg-image-three .content .text-heading {
  text-align: center;
  padding-bottom: 1.5rem;
}
main .bg-image-three .content .text-heading h3 {
  line-height: 2.5rem;
  margin: 0;
  font-size: 2rem;
  font-family: "Fraunces", serif;
  font-weight: 900;
}
main .bg-image-three .content .text-para {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8rem;
}
main .bg-image-four {
  background-image: url("mobile/image-photography.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  height: 600px;
  position: relative;
}
main .bg-image-four .content {
  position: absolute;
  bottom: 3rem;
  color: hsl(198, 62%, 26%);
  padding: 0 1rem;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
main .bg-image-four .content .text-heading {
  text-align: center;
  padding-bottom: 1.5rem;
}
main .bg-image-four .content .text-heading h3 {
  line-height: 2.5rem;
  margin: 0;
  font-size: 2rem;
  font-family: "Fraunces", serif;
  font-weight: 900;
}
main .bg-image-four .content .text-para {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8rem;
}
main .client-header {
  text-align: center;
  margin: 2rem 0;
  margin-top: 3rem;
}
main .client-header h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  letter-spacing: 0.25rem;
  line-height: 1.5rem;
  color: hsl(210, 4%, 67%);
  margin: 0 auto;
  display: inline-block;
}
main .client-container {
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 0 0.5rem;
  padding-bottom: 2rem;
}
main .client-container .item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
main .client-container .item .image {
  width: 60px;
  height: 60px;
  border: none;
}
main .client-container .item .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}
main .client-container .item .quote {
  text-align: center;
  line-height: 1.8rem;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(232, 10%, 55%);
}
main .client-container .item .person {
  text-align: center;
}
main .client-container .item .person .name {
  color: hsl(212, 27%, 19%);
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 900;
  margin-bottom: 0.3rem;
}
main .client-container .item .person span {
  color: hsl(210, 4%, 67%);
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
main .sm-bg {
  height: 200px;
}
main .sm-bg.one {
  background-image: url("mobile/image-gallery-milkbottles.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
main .sm-bg.two {
  background-image: url("mobile/image-gallery-orange.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
}
main .sm-bg.three {
  background-image: url("mobile/image-gallery-cone.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 40%;
}
main .sm-bg.four {
  background-image: url("mobile/image-gallery-sugar-cubes.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
}

footer {
  background-color: hsl(165, 46%, 74%);
}
footer .post {
  position: relative;
  height: 350px;
}
footer .footer-logo {
  overflow: hidden;
  position: absolute;
  top: 10%;
  width: 124px;
  height: 25px;
  left: 50%;
  transform: translateX(-50%);
}
footer .footer-logo svg path {
  fill: #2C7566;
}
footer .footer-links {
  overflow: hidden;
  position: absolute;
  top: 30%;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  align-items: center;
  flex-flow: row;
  justify-content: space-evenly;
}
footer .footer-links .link a {
  text-decoration: none;
  color: #2C7566;
  cursor: pointer;
  transition: all 0.15s;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
footer .footer-links .link a:hover, footer .footer-links .link a:focus {
  color: #fff;
}
footer .social-links {
  position: absolute;
  top: 60%;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  align-items: center;
  flex-flow: row;
  gap: 2rem;
  justify-content: center;
}
footer .social-links .social {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.15s;
}
footer .social-links .social:hover svg path, footer .social-links .socialfocus svg path {
  fill: #fff;
}
footer .attribution {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  overflow: hidden;
  left: 50%;
  color: #2C7566;
  transform: translateX(-50%);
}
footer .attribution a {
  color: hsl(0, 0%, 100%);
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1440px;
  }
  header {
    background-image: url("desktop/image-header.jpg");
    height: 800px;
  }
  header .arrow {
    top: 50%;
  }
  header .menu {
    display: none;
  }
  header .nav-bar .brand-logo {
    padding-left: 1rem;
    width: 155px;
  }
  header .nav-bar .nav-links {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    align-items: center;
    padding-right: 2rem;
    gap: 4rem;
    margin: 0;
  }
  header .nav-bar .nav-links a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    cursor: pointer;
    transition: all 0.15s;
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    padding-top: 1rem;
    line-height: 1.5rem;
  }
  header .nav-bar .nav-links a:hover {
    color: hsl(212, 27%, 19%);
  }
  header .nav-bar .nav-links .big {
    background-color: hsl(0, 0%, 100%);
    padding: 1rem 1rem;
    border: none;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: hsl(212, 27%, 19%);
    border-radius: 30px;
    transition: all 0.15s;
  }
  header .nav-bar .nav-links .big:focus, header .nav-bar .nav-links .big:hover {
    color: hsl(0, 0%, 100%);
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
  }
  header .header-text {
    width: 100%;
  }
  header .header-text h1 {
    font-size: 4rem;
    letter-spacing: 0.6rem;
  }
  main .text-content {
    padding: 5rem 5rem;
    justify-content: start;
    align-items: start;
  }
  main .text-content .text-heading {
    text-align: initial;
    padding: 0;
    padding-right: 5rem;
  }
  main .text-content .text-heading h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  main .text-content .text-para {
    text-align: initial;
  }
  main .bg-image-one {
    background-image: url("desktop/image-transform.jpg");
    background-position: 50% 50%;
    height: 450px;
  }
  main .bg-image-two {
    background-image: url("desktop/image-stand-out.jpg");
    background-position: 50% 50%;
    height: 450px;
  }
  main .bg-image-three {
    background-image: url("desktop/image-graphic-design.jpg");
    height: 550px;
  }
  main .bg-image-three .content {
    padding: 0 10rem;
  }
  main .bg-image-four {
    background-image: url("desktop/image-photography.jpg");
    height: 550px;
  }
  main .bg-image-four .content {
    padding: 0 10rem;
  }
  main .client-container {
    flex-direction: row;
    height: 400px;
  }
  main .client-container .item {
    gap: 2.5rem;
  }
  main .sm-bg {
    height: 300px;
  }
  main .sm-bg.one {
    background-image: url("desktop/image-gallery-milkbottles.jpg");
  }
  main .sm-bg.two {
    background-image: url("desktop/image-gallery-orange.jpg");
  }
  main .sm-bg.three {
    background-image: url("desktop/image-gallery-cone.jpg");
  }
  main .sm-bg.four {
    background-image: url("desktop/image-gallery-sugarcubes.jpg");
  }
  footer .footer-links {
    justify-content: center;
    gap: 4rem;
  }
}/*# sourceMappingURL=style7.css.map */