body {
    font-family: "Century Gothic", Lato, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  .et-hero-tabs,
  .et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    background: #;
    background-image: url(../uploads/shore.jpg);
    width: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 0 2em;
  }
  
  @media only screen and (max-width: 767px) {
    .et-hero-tabs,
    .et-slide {
      background-size: cover;
    }
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
  }
  
  .logo img {
    max-width: 100%;
    height: auto;
    width: 400px;
    margin-bottom: 300px;
  }
  
  :root {
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: "Rubik", sans-serif;
    --font-serif: "Cardo", serif;
  }
  
  html,
  body {
    height: 100%;
    background-color: #d9bba1;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  body {
    display: grid;
    place-items: center;
  }
  
  .page-content {
    display: grid;
    grid-gap: 1rem;
    padding: 5rem;
    max-width: 1024px;
    margin: 0 auto;
    font-family: var(--font-sans);
    flex-flow: row wrap;
  }
  
  @media (min-width: 600px) {
    .page-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 800px) {
    .page-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    text-align: center;
    color: #f5f5f5;
    background-color: #f5f5f5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
      0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
      0 16px 16px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 600px) {
    .card {
      height: 350px;
    }
  }
  
  .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
  }
  
  .card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.009) 11.7%,
      rgba(0, 0, 0, 0.034) 22.1%,
      rgba(0, 0, 0, 0.072) 31.2%,
      rgba(0, 0, 0, 0.123) 39.4%,
      rgba(0, 0, 0, 0.182) 46.6%,
      rgba(0, 0, 0, 0.249) 53.1%,
      rgba(0, 0, 0, 0.32) 58.9%,
      rgba(0, 0, 0, 0.394) 64.3%,
      rgba(0, 0, 0, 0.468) 69.3%,
      rgba(0, 0, 0, 0.54) 74.1%,
      rgba(0, 0, 0, 0.607) 78.8%,
      rgba(0, 0, 0, 0.668) 83.6%,
      rgba(0, 0, 0, 0.721) 88.7%,
      rgba(0, 0, 0, 0.762) 94.1%,
      rgba(0, 0, 0, 0.79) 100%
    );
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
  }
  
  .card:nth-child(1):before {
    background-image: url(../uploads/Sunsetflowers36.jpg);
  }
  
  .card:nth-child(2):before {
    background-image: url(../uploads/flower57.jpg);
  }
  
  .card:nth-child(3):before {
    background-image: url(../uploads/shore.jpg);
  }
  
  .card:nth-child(4):before {
    background-image: url(../uploads/coolframe.jpg);
  }
  
  .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
  }
  
  .content > * + * {
    margin-top: 1rem;
  }
  
  .title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .copy {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.35;
  }
  
  .btn {
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
    border: none;
  }
  
  .btn:hover {
    background-color: #0d0d0d;
  }
  
  .btn:focus {
    outline: 1px dashed #ff0;
    outline-offset: 3px;
  }
  
  @media (hover: hover) and (min-width: 600px) {
    .card:after {
      transform: translateY(0);
    }
  
    .content {
      transform: translateY(calc(100% - 4.5rem));
    }
  
    .content > *:not(.title) {
      opacity: 0;
      transform: translateY(1rem);
      transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }
  
    .card:focus-within,
    .card:hover {
      align-items: center;
    }
  
    .card:focus-within:before,
    .card:hover:before {
      transform: translateY(-4%);
    }
  
    .card:focus-within:after,
    .card:hover:after {
      transform: translateY(-50%);
    }
  
    .card:focus-within .content,
    .card:hover .content {
      transform: translateY(0);
    }
  
    .card:focus-within .content > *:not(.title),
    .card:hover .content > *:not(.title) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(var(--d) / 8);
    }
  
    .card:focus-within .content,
    .card:focus-within .content > *:not(.title),
    .card:focus-within:after,
    .card:focus-within:before {
      transition-duration: 0s;
    }
  }
  
  .et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
  }
  
  .et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
  }
  
  .et-hero-tab:hover {
    color: white;
    background: rgba(148, 121, 96, 0.8);
    transition: all 0.5s ease;
  }
  
  .et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66b1f1;
    transition: left 0.3s ease;
  }
  
  @media (min-width: 800px) {
    .et-hero-tabs h1,
    .et-slide h1 {
      font-size: 3rem;
    }
  
    .et-hero-tabs h3,
    .et-slide h3 {
      font-size: 1rem;
    }
  
    .et-hero-tab {
      font-size: 1rem;
    }
  }
  
  .Footer-wrapper {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    background: #e8e8e8;
  }
  
  .Footer {
    position: relative;
    width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 900px) {
    .Footer {
      width: 250px;
    }
  }
  
  @media (max-width: 400px) {
    .Footer {
      width: 65%;
    }
  }
  
  [class*="Footer-content"] {
    position: relative;
    padding: 1.5em 0 1.5em 0;
    opacity: 1;
    text-align: center;
  }
  
  [class*="Footer-content"] h2 {
    margin-top: 0;
    margin-bottom: 5px;
    font-family: "Montserrat";
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
  }
  
  [class*="Footer-content"] a {
    color: #000;
    text-decoration: none;
  }
  
  [class*="Footer-content"] h3 {
    position: relative;
    margin: 0;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 50px;
    overflow: hidden;
    display: inline-block;
  }
  
  .break-word {
    display: block;
  }
  
  [class*="Footer-content"] [class*="underline"] h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out 0s;
  }
  
  [class*="Footer-content"] .underline-middle h3:after {
    transform: scaleX(0);
  }
  
  [class*="Footer-content"] .underline-middle h3:hover:after {
    visibility: visible;
    transform: scaleX(1);
  }
  
  [class*="Footer-content"] .underline-left h3:after {
    transform: translate(-100%, 0);
  }
  
  [class*="Footer-content"] .underline-left h3:hover:after {
    visibility: visible;
    transform: translate(0, 0);
  }
  
  @media (min-width: 800px) {
    [class*="Footer-mobile"] {
      visibility: hidden;
    }
    [class*="Footer-content"] {
      padding: 0 2em 0 2em;
    }
    .Footer-content-2 {
      transition-delay: 0.5s;
    }
    .Footer-content-3 {
      transition-delay: 1s;
    }
  }
  
  .intro {
    background-color: #e2dcde;
    padding: 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    flex: 1 5 400px;
    margin: 20px;
    border-left-width: 5px;
    border-left-color: #ffc7e1c2;
    border-left-style: solid;
  }
  
  .intro-parent {
    display: flex;
    flex-flow: row wrap;
    border-left-width: 5px;
    border-left-color: #ffc7e1c2;
    border-left-style: solid;
    border-right-width: 5px;
    border-right-color: #ffc7e1c2;
    border-right-style: solid;
  }
  
  .wid-calc {
    width: calc(90% - -100px);
  }
  
  
  .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .logo-text {
    font-size: 6rem;
    font-weight: bold;
    color: #402f0c;
    text-align: center;
    margin-top: -380px;
    font-family: 'Dancing Script', cursive;
  }
  
  .logo-subtext {
    font-size: 4rem;
    color: #766d4e;
    text-align: center;
    margin-top: -20px;
    font-family: 'Dancing Script', cursive;
  }
  
  @media (max-width: 767px) {
    .logo-text {
      font-size: 3rem;
      margin-top: -200px;
    }
    
    .logo-subtext {
      font-size: 2rem;
      margin-top: -10px;
    }
  }
  