h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #424242;
}
h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #424242;
}
h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #424242;
}
p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  color: #424242;
  font-size: 16px;
  letter-spacing: 0.1px;
  line-height: 1.25em;
}
a {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  color: #424242;
  font-size: 16px;
}
a:hover {
  color: #ff668e;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8f2f9;
}
.hide-lg {
  display: none;
}
.hide-sm {
  display: block;
}
.wrapper {
  max-width: 100%;
  display: flex;
  flex-direction: row;
}
.sidebar {
  width: 20%;
  min-width: 250px;
  padding: 0px;
  background-color: #f8f2f9;
  height: 100vh;
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.logo-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
}
.section-title-row {
  width: 100%;
  padding-left: 10%;
  display: flex;
  justify-content: flex-start;
}
.main {
  width: 80%;
  padding: 1%;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header {
  width: 96%;
  background-color: #fff;
  height: 96px;
  margin-bottom: 1.5%;
  padding: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content {
  width: 96%;
  background-color: #fff;
  height: 100%;
  padding: 2%;
}
.logo {
  margin-bottom: 24px;
}
.flavour-list {
  background-color: #f8f2f9;
  display: block;
  overflow: hidden;
}
.flavour-item {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  color: #424242;
  background-color: #f8f2f9;
  font-size: 16px;
  padding-left: 10%;
  line-height: 2.1em;
  display: block;
  width: 100%;
  transition: background-color 0.5s ease-in, color 0.25s ease-in;
  cursor: pointer;
}
.flavour-item:hover {
  font-weight: 400;
  background-color: #f1e8f2;
  color: #ff668e;
}
.filler-text {
  padding-right: 2%;
  font-size: 18px;
}
.icon {
  width: 16px;
  margin-left: 20px;
}
.social-icon {
  width: 32px;
  margin-left: 20px;
}
.contact-icon {
  width: 26px;
  margin-left: 20px;
  margin-right: 5px;
}

.headline-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  padding-bottom: 20px;
}
.figma-headline {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #424242;
  transition: color 0.25s ease-out;
}
.figma-headline:hover {
  color: #ff668e;
  cursor: pointer;
}
.no-link-styles {
  text-decoration: none;
}
.sidebar-content {
  padding-left: 10%;
}
.no-top-margin {
  margin-top: 0px;
}
.no-margin {
  margin: 0px;
}
.figma-promo {
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------------------------------------
1500 
--------------------------------------------------------------------------- */

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

.contact-icon {
  width: 26px;
  margin-left: 20px;
  margin-right: 5px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding-bottom: 20px;
}
/* ---------------------------------------------------------------------------
 Mobile 
--------------------------------------------------------------------------- */

@media only screen and (max-width: 728px) {
  .wrapper {
    flex-direction: column;
    overflow-x: hidden;
  }
  .hide-sm {
    display: none;
  }
  .hide-lg {
    display: block;
  }
  .section-title-row {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
  }
  .sidebar {
    width: 100%;
    height: 100%;
    min-width: 375px;
  }
  .main {
    width: 100%;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    padding: 0px;
    height: 340px;
    overflow-y: scroll;
  }
  .content {
    width: 90%;
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0px;
  }
  .logo-container {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    margin-top: 24px;
  }
  .logo {
    width: 150px;
    margin-bottom: 16px;
  }
  .header {
    width: 100%;
    background-color: #f8f2f9;
    height: auto;
    margin-bottom: 1.5%;
    padding: 0px;
  }
  h1 {
    font-size: 1.5em;
  }
  .flavourlist {
    display: flex;
    flex-direction: row;
    display: none;
    overflow: hidden;
  }
  .flavours {
    background-color: #f8f2f9;
    width: 40%;
    display: inline-block;
    padding-left: 5%;
  }
  .accordion {
    height: 56px;
  }
  .accordion:after {
    content: "\02795"; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }
  .sidebar-content {
    padding-left: 5%;
  }
  .contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding-bottom: 20px;
  }
}
