@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: Source Sans Pro;
  font-weight: 400;
  font-style: normal;
  color: #333;
  background: #fffdfa;
  line-height: 28px;
  overflow-x: hidden;
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: minion-pro;
  font-weight: 700;
  font-style: normal;
  line-height: 95%;
  color: #333;
}

.desktop-nav {
  height: 15vh;
  font-size: 1.4em;
  margin-top: 1em;
}

nav {
  background-color: transparent;
  border-bottom: transparent;
  height: 8vh;
  width: 100%;
  z-index: 5;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  min-width: 70%;
}

nav .logo-wrapper {
  width: auto;
  height: 100%;
  margin-left: -7.8%;
}

nav .logo-wrapper img {
  height: 100%;
  width: auto;
  cursor: pointer;

}

nav .instagram {
  text-align: center;
}

nav .nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 40%;
}

nav .nav-list li {
  height: 100%;
}

nav .nav-list .nav-wrapper {
  height: 8vh;
  margin: auto;
  position: absolute;
  top: inherit;
  left: calc(50% - 4.5em);
}

nav .nav-list .first {
  margin-left: auto;
}

nav .nav-list .nav-links {
  display: flex;
  height: 100%;
  color: #333;
  text-decoration: none;
  padding: 0vh 5vh;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.25s ease-in-out;
  min-width: 200px;
}

nav .nav-list .nav-links::after {
  content: "";
  opacity: 1;
  transform: scaleX(0);
  transform-origin: center;
  position: absolute;
  width: 100%;
  height: 0.15em;
  bottom: 0;
  left: 0;
  background-color: rgba(100, 82, 71, .8);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

nav .nav-list .cta {
  background-color: transparent;
  height: 8vh;
  transition: 0.25s ease-in-out;
  padding-right: inherit;
  padding-left: inherit;
  color: #333;
}

nav .nav-list .cta::after {
  content: "»";
  position: absolute;
  font-size: 1.8em;
  top: 38.5%;
  right: 2em;
  opacity: 0;
  color: #333;
  transition: 0.5s;
}

nav .nav-list .cta .fa-brands {
  margin-right: 8px;
  color: #fff;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 2%, #fd5949 45%, #d62976 60%, #962fbf 90%, #4f5bd5 110%);
  border-radius: 0.2em;
  text-align: center;
  padding: 2px;
  width: 25px;
  height: 25px;
}

nav .nav-list .cta a::before {
  content: "";
  opacity: 1;
  transform: scaleX(0);
  transform-origin: center;
  position: absolute;
  width: 100%;
  height: 0.15em;
  bottom: 0;
  left: 0;
  background-color: rgba(100, 82, 71, .8);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

nav .nav-list .cta:hover a {
  padding-right: calc(5vh + 8px);
  padding-left: calc(5vh - 8px);
  color: inherit;
  background-color: #e5e5e5;
}

nav .nav-list .cta:hover a::before {
  transform: scaleX(1);
  transform-origin: center;
}

nav .nav-list .cta:hover::after {
  right: 16.5%;
  opacity: 1;
}

nav .nav-list .active {
  color: rgba(100, 82, 71, 1);
}

nav .nav-list .active::after {
  transform: scaleX(1);
  transform-origin: center;
}

nav .nav-list .nav-wrapper:hover .nav-links,
nav .nav-list .nav-wrapper:active .nav-links {
  color: inherit;
  background-color: #e5e5e5;
}

nav .nav-list .nav-wrapper:hover .nav-links::after,
nav .nav-list .nav-wrapper:active .nav-links::after {
  transform: scaleX(1);
  transform-origin: center;
}

.mobile-nav {
  height: 0;
  visibility: hidden;
  max-width: 80%;
}

.mobile-nav .mobile-menu-wrapper .mobile-logo {
  position: absolute;
  top: 0;
  height: 200%;
  margin: 0.5em;
  margin-left: .8em;
}

.mobile-nav .mobile-menu-wrapper .mobile-cta {
  position: absolute;
  right: 4.2rem;
  top: 1.1em;
  width: 50px;
  height: 50px;
  font-size: 2em;
  color: #fff;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 2%, #fd5949 45%, #d62976 60%, #962fbf 90%, #4f5bd5 110%);
  text-decoration: none;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2em;
}

.mobile-nav .mobile-menu-wrapper .mobile-cta .fa-brands {
  font-size: 1.3em;
}

.mobile-nav .mobile-menu-wrapper .nav-toggle {
  display: inline-block;
  position: absolute;
  z-index: 10;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  right: 15px;
  top: 15%;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.15s linear;
}

.mobile-nav .mobile-menu-wrapper .nav-toggle:hover,
.mobile-nav .mobile-menu-wrapper .nav-toggle:active,
.mobile-nav .mobile-menu-wrapper .nav-toggle:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-nav .mobile-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  position: relative;
  top: 400%;
  z-index: 5;
  visibility: hidden;
  list-style: none;
}

.mobile-nav .mobile-nav-list .mobile-logo-wrapper {
  height: 20%;
  margin-top: 0;

}

.mobile-nav .mobile-nav-list .mobile-logo-wrapper img {
  display: block;
  height: 100%;
  margin: auto;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0, 0.995, 0.999, 1) 0.4s;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links {
  font-size: 2em;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  list-style: none;
  margin: 2em 0;
  padding: 2%;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links::after {
  content: "";
  opacity: 1;
  transform: scaleX(0);
  transform-origin: center;
  position: absolute;
  width: 100%;
  height: 0.15em;
  bottom: 25%;
  left: 0;
  background-color: #c2ab92;
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:hover,
.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:active,
.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:focus {
  outline: 0;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:hover::after,
.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:active::after,
.mobile-nav .mobile-nav-list .mobile-nav-wrapper .mobile-nav-links:focus::after {
  transform: scaleX(1);
  transform-origin: center;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .active {
  color: #c2ab92;
}

.mobile-nav .mobile-nav-list .mobile-nav-wrapper .active::after {
  transform: scaleX(1);
  transform-origin: center;
}

.mobile-nav .hamburger-menu {
  position: absolute;
  cursor: pointer;
  right: 0.1rem;
  top: 1.7em;
  color: #333;
  transform: rotate(0deg);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav .hamburger-menu .hamburger-menu-bar,
.mobile-nav .hamburger-menu .hamburger-menu-circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.mobile-nav .hamburger-menu .hamburger-menu-bar {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-in-out;
}

.mobile-nav .hamburger-menu .hamburger-menu-circle {
  transition: stroke-dashoffset 0.3s linear 0.1s;
  stroke-dashoffset: 144.513262038;
  stroke-dasharray: 144.513262038;
}

.mobile-nav .menu-cover {
  position: absolute;
  right: 0.1rem;
  top: 4em;
  width: 40px;
  height: 40px;
}

.mobile-nav .menu-cover::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: #333;
  width: 284vmax;
  height: 284vmax;
  top: -142vmax;
  left: -142vmax;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
  will-change: transform;
  overflow: hidden;
}

.mobile-nav-wrapper:nth-child(1) {
  transform: translateY(-80%);
}

.mobile-nav-wrapper:nth-child(2) {
  transform: translateY(-160%);
}

.mobile-nav-wrapper:nth-child(3) {
  transform: translateY(-240%);
}

.mobile-nav:target>.menu-cover::after,
.mobile-nav-open>.menu-cover::after {
  transform: scale(1);
}

.mobile-nav:target .hamburger-menu,
.mobile-nav-open .hamburger-menu {
  color: #c2ab92;
  transform: rotate(180deg);
}

.mobile-nav:target .hamburger-menu .hamburger-menu-circle,
.mobile-nav-open .hamburger-menu .hamburger-menu-circle {
  stroke-dashoffset: 0;
}

.mobile-nav:target .hamburger-menu .hamburger-menu-bar:nth-child(1),
.mobile-nav:target .hamburger-menu .hamburger-menu-bar:nth-child(4),
.mobile-nav-open .hamburger-menu .hamburger-menu-bar:nth-child(1),
.mobile-nav-open .hamburger-menu .hamburger-menu-bar:nth-child(4) {
  opacity: 0;
}

.mobile-nav:target .hamburger-menu .hamburger-menu-bar:nth-child(2),
.mobile-nav-open .hamburger-menu .hamburger-menu-bar:nth-child(2) {
  transform: rotate(45deg);
}

.mobile-nav:target .hamburger-menu .hamburger-menu-bar:nth-child(3),
.mobile-nav-open .hamburger-menu .hamburger-menu-bar:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav:target .mobile-nav-list,
.mobile-nav-open .mobile-nav-list {
  visibility: visible;
}

.mobile-nav:target .mobile-nav-list .mobile-nav-wrapper,
.mobile-nav-open .mobile-nav-list .mobile-nav-wrapper {
  opacity: 1;
  transform: translateY(0);
}

section {
  width: 100%;
  margin: auto;
}

section .image-wrapper {
  display: grid;
  width: 80%;
  grid-auto-flow: dense;
  grid-auto-rows: 26.6666666667vw;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
  margin: 2em auto;
}

section .image-wrapper .width-1 {
  grid-column-end: span 1;
}

section .image-wrapper .width-2 {
  grid-column-end: span 2;
}

section .image-wrapper .width-3 {
  grid-column-end: span 3;
}

section .image-wrapper .height-1 {
  grid-row-end: span 1;
}

section .image-wrapper .height-2 {
  grid-row-end: span 2;
}

section .image-wrapper .height-3 {
  grid-row-end: span 3;
}

section .image-wrapper .bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  opacity: 0;
  text-align: center;
  transform: translateY(40px);
  transition: all 0.25s ease-out;
  display: table;
}

section .image-wrapper .bg:hover {
  cursor: pointer;
}

section .image-wrapper .bg:hover::before,
section .image-wrapper .bg:active::before,
section .image-wrapper .bg:hover::after,
section .image-wrapper .bg:active::after {
  opacity: 1;
  transform: scaleY(1);
}

section .image-wrapper .bg::before {
  box-sizing: border-box;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  vertical-align: middle;
  display: table-cell;
  content: attr(content);
  color: white;
  font-size: 1.4em;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 82, 71, 0.8);
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scaleY(1);
  transition: all 0.2s ease-in-out;
  transform-origin: bottom;
  z-index: 1;
}

section .image-wrapper .bg::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  position: absolute;
  display: block;
  top: 50%;
  width: 100%;
  left: 0;
  content: attr(after);
  color: white;
  opacity: 0;
  transform: scaleY(1);
  transition: all 0.2s ease-in-out;
  transform-origin: bottom;
  z-index: 1;
  margin: 0 auto;
  font-size: 1em;
}

section .image-wrapper .bg.active {
  transform: translateY(0);
  opacity: 1;
}

section .image-wrapper .active-overlay.bg::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Hero Section 
.hero-section{

    margin: auto;
    display: flex;
    display:none;
    height: 90vh;
    align-items: center;
    width: 80%;
    .hero-text{
        align-self: flex-start;
        width: 50%;
        padding:2em;
        margin-top: 8em;
    }
    .hero-header{
        font-size: 100px;
    }    
    .hero-sub-header{
        margin-top: 16px;
        margin-bottom: 62px;
        font-size: 44px;
    }
    .hero-sub-text{
        font-size: 16px;
    }
    .hero-image-background{
        background-color: $white;
        top:25%;
        left:55%;
        z-index:1;
        height: 40rem;
        width:40rem;
        position: absolute;
    }
}
.hero-image{
    width: 40rem;
    height: 40rem;
    display: block;
    margin-left: auto;
    z-index: 2;
    -webkit-box-shadow: 0px 10px 13px -7px #000000, -50px -50px 0px -30px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #000000, -50px -50px 0px -30px rgba(0,0,0,0);
}
*/
.underline {
  position: relative;
}

.underline::before {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background-color: #c2ab92;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out 0.25s;
}

.active .underline::before {
  transform: scaleX(1);
}

.about {
  width: 80%;
  text-align: center;
  margin-top: 0;
}

.about .mobile-about-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about .mobile-about-wrapper .about-image-wrapper {
  margin: 0 2%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.25s ease-out;
  transition-delay: 0.8s;
}

.about .mobile-about-wrapper .about-image-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

.about .mobile-about-wrapper .about-image-wrapper img {
  width: 100%;
  aspect-ratio: 331.84251969/303.87401575;
}

.about .mobile-about-wrapper .left-text {
  text-align: right;
  transform: translateX(-70px);
  opacity: 0;
  transition: all 0.25s ease-out;
}

.about .mobile-about-wrapper .left-text.active {
  opacity: 1;
  transform: translateX(0);
}

.about .mobile-about-wrapper .information-text {
  width: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 5%;
}

.about .mobile-about-wrapper .information-text h1 {
  margin: 1em 0;
  line-height: 1.1;
  display: block;
  width: 100%;
}

.about .mobile-about-wrapper .information-text p {
  margin-bottom: 10%;
}

.about .mobile-about-wrapper .information-text a {
  color: #52595D;
}

.about .mobile-about-wrapper .right-text {
  text-align: left;
  transform: translateX(70px);
  opacity: 0;
  transition: all 0.25s ease-out;
}

.about .mobile-about-wrapper .right-text.active {
  opacity: 1;
  transform: translateX(0);
}

.about .mobile-about-wrapper .right-text h1 {
  float: left;
}

.about .mobile-about-wrapper .right-text h1 {
  float: left;
}

.about .header-text-wrapper {
  width: auto;
}

.about .header-text-wrapper .header-text {
  font-size: 3rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.about .header-text-wrapper .header-text.active {
  opacity: 1;
}

.about .header-text-wrapper .header-sub-text {
  margin: 2%;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.25s ease-out 0.4s;
}

.about .header-text-wrapper .header-sub-text.active {
  opacity: 1;
}

.about .info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  max-height: 350px;
}

.about .info-wrapper .about-image-wrapper {
  margin: 0 2%;
  height: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.25s ease-out 0.8s;
}

.about .info-wrapper .about-image-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

.about .info-wrapper .about-image-wrapper img {
  height: 350px;

}

.about .info-wrapper .left-text {
  text-align: right;
  transform: translateX(-70px);
  opacity: 0;
  transition: all 0.25s ease-out 0.8s;
}

.about .info-wrapper .left-text h1 {
  align-self: flex-end;
}

.about .info-wrapper .right-text h1 {
  align-self: flex-start;
}

.about .info-wrapper .left-text.active {
  opacity: 1;
  transform: translateX(0);
}

.about .info-wrapper .information-text {
  max-height: 350px;
  width: 30%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.about .info-wrapper .information-text h1 {
  margin: 5% 0;
  line-height: 1.1;
}

.about .info-wrapper .information-text p {
  margin-bottom: 10%;
}

.about .info-wrapper .information-text a {
  color: #52595D;
}

.about .info-wrapper .right-text {
  text-align: left;
  transform: translateX(70px);
  opacity: 0;
  transition: all 0.25s ease-out 0.8s;
}

.about .info-wrapper .right-text.active {
  opacity: 1;
  transform: translateX(0);
}

.about .info-wrapper .right-text h1 {
  float: left;
}

.about .about-logo-wrapper {
  margin-top: 2%;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease-out 0.8s;
}

.about .about-logo-wrapper img {
  width: 10%;
}

.about .about-logo-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

footer {
  width: 100%;
  height: 30vh;
  position: relative;
  margin-top: 4%;
}

footer .footer {
  display: flex;
  justify-content: center;
  width: 70%;
  margin: auto;
  height: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.25s ease-out;
}

footer .footer .logo-wrapper {
  width: 100%;
  height: 100%;
  float: right;
}

footer .footer .logo-wrapper img {
  height: 15vh;
  width: auto;
}

footer .footer .contact-information-wrapper,
footer .footer .footer-links-wrapper {
  margin-left: auto;
  float: right;
  text-align: right;
  width: 50%;
  margin-top: 2em;
}

footer .footer .contact-information-wrapper .footer-contact-list,
footer .footer .contact-information-wrapper .footer-link-list,
footer .footer .footer-links-wrapper .footer-contact-list,
footer .footer .footer-links-wrapper .footer-link-list {
  list-style: none;
}

footer .footer .contact-information-wrapper .footer-contact-list li,
footer .footer .contact-information-wrapper .footer-link-list li,
footer .footer .footer-links-wrapper .footer-contact-list li,
footer .footer .footer-links-wrapper .footer-link-list li {
  margin: 2em;
}

footer .footer .contact-information-wrapper .footer-contact-list a,
footer .footer .contact-information-wrapper .footer-link-list a,
footer .footer .footer-links-wrapper .footer-contact-list a,
footer .footer .footer-links-wrapper .footer-link-list a {
  color: #333;
  text-decoration: none;
}

footer .footer .contact-information-wrapper .footer-contact-list,
footer .footer .footer-links-wrapper .footer-contact-list {
  border-right: 1px #333 solid;
}

footer .footer.active {
  opacity: 1;
  transform: translateY(0);
}

.copyright {
  text-align: center;
  padding: 1em;
  color: #333;
  font-size: 14px;
  margin-top: 1.5em;
}

@media screen and (min-width: 1101px) {
  .mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 1500px) {

  nav .nav-list .cta:hover::after {
    right: 17%;
  }

  .about .info-wrapper {
    margin-top: 5%;
  }

  .about .header-text-wrapper .header-text {
    font-size: 2em;
  }

  .about .header-text-wrapper .header-sub-text {
    font-size: .9em;
  }

  .about .info-wrapper .about-image-wrapper img {
    max-height: 250px;
  }

  .about .info-wrapper .information-text {
    max-height: 200px;
  }

  .about .info-wrapper .information-text {
    width: 30%;
    font-size: .8em;
  }

  .about .info-wrapper .information-text p {
    margin-bottom: 5%;
  }

  .about .info-wrapper .information-text h1 {
    margin: 2% 0;
  }

  .about .about-logo-wrapper {
    margin-top: 4%;
  }

  .about .info-wrapper {
    max-height: 200px;
  }
}

@media screen and (max-width: 1100px) {
  section .image-wrapper .bg::before {
    font-size: 0.8em;
    padding: 0 0.5em;
    line-height: .9em;
  }

  section .image-wrapper .bg::after {
    font-size: 0.5em;
    padding: 0 0.5em;
    line-height: normal;
  }

  .desktop-nav {
    height: 0;
    visibility: hidden;
  }

  .mobile-nav {
    height: 8vh;
    visibility: visible;
    margin-bottom: 100px;
  }

  section {
    margin-top: 4em;
  }

  .about .info-wrapper {
    display: none;
  }

  .about .mobile-about-wrapper {
    display: flex;
  }

  .mobile-nav {
    max-width: 100%;
  }

  .mobile-nav .mobile-logo {
    left: 0;

  }

  .about {
    font-size: 1.5em;
  }

  .about .header-text-wrapper .header-sub-text {
    font-size: 1em;
  }

  .about .about-logo-wrapper img {
    width: 60%;
  }

  .about .about-logo-wrapper {
    transition: all 0.25s ease-out;
  }

  footer .footer {
    font-size: 1.2em;
  }

  footer .footer .logo-wrapper img {
    width: 100%;
    height: auto;
    max-width: 150px;
    min-width: 100px;
  }

  footer .footer .contact-information-wrapper {
    width: 70em;
  }
}

@media screen and (max-width: 500px) {
  section .image-wrapper .bg::before {
    font-size: 0.5em;
    padding: 0 0.5em;
    line-height: .9em;
  }

  section .image-wrapper .bg::after {
    font-size: 0.3em;
    padding: 0 0.5em;
    line-height: normal;

  }

  section .image-wrapper {
    width: 90%;
  }

  .underline::before {
    height: 0.3rem;
    bottom: 0.4rem;
  }

  .mobile-nav {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .mobile-nav .mobile-logo {
    left: 0;
  }

  .mobile-nav .nav-toggle {
    top: 0px;
  }

  .about {
    font-size: 1em;
  }

  .about .header-text-wrapper {
    margin: 3em 0 2em 0;
  }

  .about .header-text-wrapper .header-text {
    font-size: 2.5em;
    text-align: left;
    margin-bottom: .7em;
  }

  .about .header-text-wrapper .header-sub-text {
    text-align: left;
    font-size: initial;
  }

  .about .about-logo-wrapper {
    margin-top: 10%;
  }

  .about .about-logo-wrapper img {
    width: 80%;
  }

  .about .mobile-about-wrapper .left-text {
    text-align: left;
  }

  footer {
    margin: 2em 0 0 0;
    height: auto;
  }

  footer .footer {
    flex-direction: column;
    width: 80%;
  }

  footer .footer .logo-wrapper {
    min-width: 250px;
  }

  footer .footer .logo-wrapper img {
    display: block;
    margin: auto;
    width: 40%;
    height: auto;
  }

  footer .footer .contact-information-wrapper {
    border-bottom: 1px #333 solid;
  }

  footer .footer .contact-information-wrapper,
  footer .footer .footer-links-wrapper {
    text-align: center;
    width: auto;
    margin-top: 2em;
    margin: auto;
  }

  footer .footer .contact-information-wrapper .footer-contact-list,
  footer .footer .footer-links-wrapper .footer-contact-list {
    border-right: none;
  }

  footer .footer .contact-information-wrapper .footer-link-list,
  footer .footer .contact-information-wrapper .footer-contact-list,
  footer .footer .footer-links-wrapper .footer-link-list,
  footer .footer .footer-links-wrapper .footer-contact-list {
    min-width: 250px;
  }

  .copyright {
    margin: 0;
  }
}

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