/* Variables */
:root {
  /* Font Weights */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  /* Font Sizes */
  --body-xs: 0.625rem; /* = 10px */
  --body-sm: 0.75rem; /* = 12px */
  --body-md: 0.875rem; /* = 14px */
  --body-lg: 1rem; /* = 16px */
  --heading-sm: 1.125rem; /* = 18px */
  --heading-md: 1.25rem; /* = 20px */
  --heading-lg: 1.5rem; /* = 24px */
  --display-sm: 2rem; /* = 32px */
  --display-md: 2.5rem; /* = 40px */
  --display-lg: 3rem; /* = 48px */
  /* Drop Shadows */
  --shadow-100: 0 2px 4px 0 rgba(0,0,0,0.30);
  --shadow-200: 0 4px 8px 0 rgba(0,0,0,0.25);
  --shadow-300: 0 8px 16px 0 rgba(0,0,0,0.20);
  --shadow-400: 0 16px 24px 0 rgba(0,0,0,0.15);
  --shadow-500: 0 24px 32px 0 rgba(0,0,0,0.10);
  /* Grayscale Scheme */
  --gray-100: #F7F7F7;
  --gray-200: #E9E9E9;
  --gray-300: #D9D9D9;
  --gray-400: #BFBFBF;
  --gray-500: #A6A6A6;
  --gray-600: #808080;
  --gray-700: #595959;
  --gray-800: #333333;
  --gray-900: #222222;
  /* Color Scheme */
  --radical-red-100: #FFE5EC;
  --radical-red-200: #FF99B3;
  --radical-red-300: #FF3366;
  --radical-red-400: #CC0033;
  --radical-red-500: #800020;
  --orange-100: #FFF2E5;
  --orange-200: #FFCC99;
  --orange-300: #FF9933;
  --orange-400: #CC6600;
  --orange-500: #804000;
  --blue-jeans-100: #E5F2FF;
  --blue-jeans-200: #99CCFF;
  --blue-jeans-300: #3399FF;
  --blue-jeans-400: #0066CC;
  --blue-jeans-500: #004080;
  --purple-100: #F4E5FF;
  --purple-200: #D499FF;
  --purple-300: #AA33FF;
  --purple-400: #7700CC;
  --purple-500: #4A0080;
  /* Color Context */
  --color-primary: var(--orange-300);
  --color-primary-light: var(--orange-200);
  --color-primary-dark: var(--orange-400);
  --color-secondary: var(--radical-red-300);
  --color-secondary-light: var(--radical-red-200);
  --color-secondary-dark: var(--radical-red-400);
  --color-fans: var(--blue-jeans-300);
  --color-fans-light: var(--blue-jeans-200);
  --color-fans-dark: var(--blue-jeans-400); 
  --color-marketing: var(--purple-300);
  --color-marketing-light: var(--purple-200);
  --color-marketing-dark: var(--purple-400);
  /* Color Gradients */
  --gradient-brands: linear-gradient(65deg, var(--color-marketing) 0%, var(--color-fans) 100%);
  --gradient-influencers:linear-gradient(65deg, #C82F85 0%, #090129 100%);
  --gradient-influencers-light:linear-gradient(65deg, #C42E83 35%, #2C093A 135%);
  /* Empty Spacers */
  --spacer-xxs: 4px;
  --spacer-xs:  8px;
  --spacer-sm:  16px;
  --spacer-md:  24px;
  --spacer-lg:  48px;
  --spacer-xl:  64px;
  --spacer-xxl: 80px;
}

/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  outline: none;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-display: swap;
}

body {
  /* font-family: 'Open Sans'; */
  font-weight: var(--regular);
  color: var(--gray-900);
  background: white;
  overflow-x: hidden;
}

/* Text Styles */
h1, h2, h3 {
  font-weight: var(--semibold);
  margin-bottom: 0;
}
h1 {
  font-size: var(--heading-md);
}
h2 {
  font-size: var(--heading-sm);
}
h3 {
  font-size: var(--body-lg);
}
p {
  font-weight: var(--font-regular);
  font-size: var(--body-md);
  font-weight: var(--medium);
  margin-bottom: 0;
}
@media (min-width: 768px){
  h1 {
    font-size: var(--heading-lg);
  }
  h2 {
    font-size: var(--heading-md);
  }
  h3 {
    font-size: var(--heading-sm);
  }
  p {
    font-size: var(--body-lg);
  }
}
.text-light {
  font-weight: var(--light);
}
.text-regular {
  font-weight: var(--regular);
}
.text-medium {
  font-weight: var(--medium);
}
.text-bold {
  font-weight: var(--bold);
}
.text-extrabold {
  font-weight: var(--extrabold);
}
/* Lists */
ul {
  list-style: none;
  padding: 0;
}

/* Forms */
label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
input[type=text],
input[type=email],
input[type=password],
select,
textarea {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  color: var(--gray-600);
  background-color: white;
  border: 1px solid var(--gray-400);
  border-radius: .5rem;
  font-size: 14px;
  resize: none;
  transition: 0.2s ease;
}
input[type=text],
input[type=email],
input[type=password],
select {
  height: 48px;
}
select {
  background-image: url('/v2/brands/select.svg');
  background-position: calc(100% - 4px) 50%;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 30px;
}
input:hover,
select:hover,
textarea:hover {
  border: 1px solid var(--gray-600);
}
input:focus,
select:focus,
textarea:focus {
  background-color: var(--gray-100);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

/* Reset Form Styles (Chrome) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--gray-400);
  -webkit-text-fill-color: var(--gray-600);
  box-shadow: 0 0 0px 1000px var(--gray-100) inset;
  -webkit-box-shadow: 0 0 0px 1000px var(--gray-100) inset;
}

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  padding: 14px 24px;
  background-color: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: var(--semibold);
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:disabled {
  cursor: default;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn img {
  margin: -7px 8px -7px 0;
}
.btn-primary {
  border: 1px solid var(--orange-300);
  color: white;
  background-color: var(--orange-300);
}
.btn-primary:hover {
  background-color: var(--orange-500);
  border-color: var(--orange-500);
}
.btn-secondary {
  color: white;
  background-color: var(--radical-red-300);
}
.btn-secondary:hover {
  background-color: var(--radical-red-500);
}
.btn-outline-primary {
  border: 1px solid var(--orange-300);
  color: var(--orange-300);
}
.btn-outline-primary:hover {
  background-color: var(--orange-300);
  color: white;
}
.btn-fans {
  background-color: var(--color-fans);
  color: white;
}
.btn-fans:hover {
  background: var(--color-fans-dark);
  color: white;
}
.btn-white {
  border: 1px solid white;
  background-color: white;
  color: var(--orange-300);
}
.btn-white:hover {
  background: transparent;
  color: white;
}
.btn-white-25 {
  background-color: rgba(255,255,255,0.25);
  color: white;
  text-transform: none;
}
.btn-white-25:hover {
  background-color: rgba(255,255,255,0.40);
  color: white;
}
.btn-outline-white {
  border: 1px solid white;
  color: white;
  text-transform: none;
}
.btn-outline-white:hover {
  background-color: white;
  color: #9F30EF;
}
.btn-gray {
  border: 1px solid var(--gray-600);
  color: var(--gray-600);
  text-transform: none;
}
.btn-gray:hover {
  color: white;
  border-color: white;
}
.btn-gray img {
  opacity: 0.75;
  transition: opacity 0.2s;
}
.btn-gray:hover img {
  opacity: 1;
}
.btn-link {
  text-transform: none;
  color: var(--gray-600);
}
.btn-link:hover {
  color: purple;
}
.btn-blue-gradient {
  display: inline-flex;
  align-items: center;
  height: 48px;
  background: var(--gradient-brands);
  text-transform: none;
  color: white;
}
.btn-blue-gradient:hover {
  filter: brightness(115%);
  color: white;
}
.btn-blue-gradient:disabled {
  display: none;
}
.btn-gradient-influencers {
  background: var(--gradient-influencers);
  text-transform: none;
  color: white;
  padding: 14px 48px;
}
.btn-gradient-influencers:hover {
  color: white;
  opacity: .75;
}

/* Backgrounds */

.bg-gray-light {
  background-color: var(--gray-100);
}
.bg-gray-medium {
  background-color: var(--gray-500);
}
.bg-gray-dark {
  background-color: var(--gray-900);
}
.bg-gradient {
  background-image: linear-gradient(45deg, #9F30EF 0%, #33A4FF 100%);
}
.bg-gradient-influencers {
  color: white;
  background-image: var(--gradient-influencers);
}
.bg-gradient-brands {
  color: white;
  background-image: var(--gradient-brands);
}

/* Spacers */

.vertical-spacer-xs {
  padding: calc(var(--spacer-xs)/2) 0;
}
.vertical-spacer-sm {
  padding: calc(var(--spacer-sm)/2) 0;
}
.vertical-spacer-md {
  padding: calc(var(--spacer-md)/2) 0;
}
.vertical-spacer-lg {
  padding: calc(var(--spacer-lg)/2) 0;
}
.vertical-spacer-xl {
  padding: calc(var(--spacer-xl)/2) 0;
}
.vertical-spacer-xxl {
  padding: calc(var(--spacer-xxl)/2) 0;
}

/* Header */

header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 64px;
  background: white;
  z-index: 10;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
}
.header-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 15px;
  max-width: 1172px;
}
@media (min-width: 768px) {
  header {
    height: 80px;
  }
}

/* Logo */

#logo {
  width: 120px;
  align-self: flex-start;
  transform: translateY(-4px);
}
#white-logo {
  width: 120px;
}
@media (min-width: 768px) {
  #logo {
    width: 148px;
    align-self: flex-start;
    transform: translateY(-4px);
  }
  #white-logo {
    width: 120px;
  }
}

/* Menu */

#menu {
  display: block;
  position: relative;
  height: 42px;
}
#menu-content {
  display: block;
  position: fixed;
  top: -100%;
  bottom: 100%;
  left: 0;
  right: 0;
  z-index: 8;
  opacity: 0.01;
  background-color: white;
  transition: all 0.2s;
}
.menu-open #menu-content {
  top: 64px;
  bottom: 0;
  opacity: 1;
}
#menu-content li {
  padding: 24px;
  border-bottom: 1px solid var(--gray-100);
}
#menu-content li:last-child {
  border-bottom: none;
}
#menu-content li a:hover {
  color: var(--gray-900);
}
#menu-content .btn-link {
  padding: 0;
}
@media (min-width: 768px) {
  #menu,
  #menu-content {
  display: none;
  }
}

/* Toggler */

.toggler {
  padding: 0;
  width: 42px;
  height: 42px;
  background: url('/v2/brands/menu.svg') right no-repeat;
}
.menu-open .toggler {
  background-image: url('/v2/brands/close.svg');
}

/* Hero */

.hero {
  position: relative;
  padding-top: 64px;
}
.hero .wrapper {
  position: relative;
  height: 376px;
  color: var(--gray-100);
}
.hero .circles {
  position: absolute;
  left: -45%;
  right: -45%;
  top: 0;
  bottom: 0;
  border-radius: 0 0 75% 75%;
  overflow: hidden;
}
.hero .content-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero .content {
  text-align: center;
  max-width: 640px;
  margin: auto;
}
.hero p {
  max-width: 480px;
  margin: 0 auto;
}
.hero img {
  max-width: calc(100% - 40px);
  max-height: 560px;
  position: absolute;
  top: 40px;
  right: 0;
  -webkit-filter: drop-shadow(16px 16px 32px #111);
  filter: drop-shadow(16px 16px 32px #111);
  transform: scale(0.95);
  transition: 0.2s ease;
}
.hero img:hover {
  transform: translateY(-8px) rotate(2.5deg) scale(1);
  -webkit-filter: drop-shadow(24px 24px 48px #111);
  filter: drop-shadow(24px 24px 48px #111);
}
.hero .scroll-down {
  position: absolute;
  bottom: -24px;
  left: calc(50% - 24px);
}
@media (min-width: 768px){
  .hero {
    padding-top: 80px;
  }
  .hero .circles {
    border-radius: 0 0 50% 50%;
  }
  .hero .wrapper {
    height: 560px;
  }
  .hero .content{
    text-align: left;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    margin: 0;
  }
}

/* Scroll Down */

.scroll-down {
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white url('/v2/brands/arrow_downward.svg') no-repeat 50% 50%;
  box-shadow: var(--shadow-200);
}
.scroll-down:focus {
  outline: none;
  box-shadow: var(--shadow-200);
}
.scroll-down:hover {
  outline: none;
  box-shadow: var(--shadow-300);
}
.scroll-down-container {
    padding-top: 0;
    margin-top: -20px;
    position: relative;
}
@media (min-width: 768px) {
  .scroll-down-container {
    padding-top: 24px;
    text-align: center;
  }
}

/* Accordion */

.accordion {
  display: flex;
  flex-direction: column;
}
.accordion-item {
  margin-top: 1.25em;
  border-radius: .5em;
  background: #fff;
}
.accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-size: var(--body-md);
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 1em 1.5em;
  align-items: center;
  text-align: left;
}
.accordion-item-desc {
  display: none;
  font-size: var(--body-md);
  padding: 1.5em;
  background-color: var(--gray-100);
  text-align: left;
}
.accordion-item-desc a {
  color: var(--gray-900);
  font-weight: var(--semibold);
}
.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
  display: block;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
  font-size: var(--heading-lg);
  content: "+";
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-title .icon:after {
  font-size: var(--heading-lg);
  content: "-";
}
.accordion-item:first-child {
  margin-top: 0;
}
.icon {
  width: 1em;
  height: 1em;
  display: flex;
  margin-left: 1em;
  font-weight: var(--regular);
  align-items: center;
  justify-content: center;;
}
@media (min-width: 768px) {
  .accordion-item-title {
    font-size: var(--body-lg);
    padding: 1.5em 2em;
  }
  .accordion-item-desc {
    padding: 2em;
  }
}

/* Sections */

section.section {
  padding: 64px 0;
  scroll-margin-top: 16px;
}
.section-title {
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
  padding: 40px 0;
}
.section-title img {
  margin-bottom: 24px;
}
.section-title h2 {
  margin-bottom: 8px;
}

/* Text Blocks */

.text-blocks {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.text-block {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin-bottom: 48px;
  scroll-snap-align: center;
} 
.text-block img {
  margin-bottom: 20px;
}
.text-block h3 {
  margin-bottom: 8px;
}
.text-block p {
  color: var(--gray-600);
  font-size: 14px;
}
.text-block-wrapper {
  max-width: auto;
  margin: 0 auto;
}
.text-block-wrapper-2cols {
  max-width: 400px;
  margin: 0 auto;
}
.text-block-wrapper-3cols {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .text-blocks {
    flex-wrap: wrap;
  }
  .text-block {
    scroll-snap-align: unset;
  }
}

/* Carrusel */

.carrusel {
  /* width: max-content;
  margin: auto; */
  padding: 0 32px;
}
.carrusel .row > * {
  min-width: calc(100vw - 32px);
  width: calc(100vw - 32px);
}
@media (min-width: 576px) {
  .carrusel .row > * {
    min-width: auto;
    width:auto;
  }
}

.carrusel-wrapper {
  overflow: auto;
  margin-left: -15px;
  margin-right: -15px;
  -x-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-snap-type-x: mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carrusel-wrapper::-webkit-scrollbar {
  width: 0px;
}
.carrusel-content {
  width: max-content;
  margin: auto;
}
.carrusel-content .row > * {
  min-width: calc(100vw - 30px);
  width: calc(100vw - 30px);
}
@media (min-width: 576px) {
  .carrusel-wrapper {
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }
  .carrusel-content {
      width: auto;
      margin: auto;
  }
  .carrusel-content .row > * {
      min-width: auto;
      width: auto;
  }
}
/* Carrusel Cards */
.carrusel-cards {
  width: max-content;
  padding: 24px;
}
.carrusel-card .wrapper {
  border-radius: 24px;
  margin-bottom: 24px;
  scroll-snap-align: center;
  transition: 0.4s box-shadow ease;
}
.carrusel-card.active .wrapper {
  box-shadow: 0 12px 56px -24px #99CCFF;
}
@media (min-width: 576px) {
  .carrusel-cards {
      width: auto;
      padding: 0;
      margin-bottom: 24px;
  }
  .carrusel-card .wrapper {
      scroll-snap-align: unset;
  }
  .carrusel-card.active .wrapper {
      box-shadow: none;
  }
  .carrusel-card .wrapper:hover {
      box-shadow: 0 20px 60px -30px #99CCFF;
  }
}
@media (min-width: 992px) {
  .carrusel-cards {
      height: auto;
  }
  .carrusel-cards.row {
      margin-left: 0;
      margin-right: 0;
  }
}

/* Bullets */

.bullets {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.bullets > div {
  width: 10px;
  height: 10px;
  margin: 0 9px;
  border-radius: 50%;
  background: var(--gray-400);
}
.bullets > div.active {
  background: var(--gray-600);
}
@media (min-width: 576px) {
  .carrusel-bullets {
    display: none;
  }
}

/* Subscriptions */

.subscriptions .prices .title-wrapper {
  position: relative;
  display: inline;
}
.subscriptions .prices .title-wrapper img {
  position: absolute;
  left: -24px;
}
.subscriptions .prices h3 {
  display: inline;
}
.subscriptions .prices {
  color: var(--gray-900);
  background-color: white;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-300);
}
.subscriptions .price {
  font-size: 24px;
  font-weight: var(--bold);
  color: #C82F85;
}
.subscriptions .monthly {
  font-size: 16px;
  line-height: .75;
  color: #C82F85;
}
.subscriptions .vertical-divider {
  content: "";
  height: 80px;
  width: 1px;
  background-color: var(--gray-200);
}
.subscriptions .content-wrapper {
    padding: 0 40px;
  }
.subscriptions .content {
  text-align: center;
  padding-bottom: 24px;
  margin: 0 auto;
}
@media (min-width: 576px){
  .subscriptions .price {
    font-size: 40px;
  }
  .subscriptions .content {
    max-width: 640px;
  }
}
@media (min-width: 992px){
  .subscriptions .content-wrapper {
    padding: 0;
  }
  .subscriptions .content {
    text-align: left;
    padding-bottom: 0;
  }
}

/* Forms */

.form-container{
  margin: 0 auto;
}
.form-container p {
  font-size: 14px;
}
.form-container a {
  color: #B62B7D;
  text-decoration: underline;
}
.form-group{
  margin-bottom: 32px;
}
@media (min-width: 768px){
  .form-container{
    max-width: 440px;
    margin: 0 auto;
  }
}

/* Half Page */

.half-page-layout {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .half-page-layout {
    min-height: 70vh;
    flex-wrap: nowrap;
    align-items: stretch;
    flex-direction: row;
  }
  .half-page-layout > * {
    width: 50%;
    display: flex;
    align-items: flex-start;
    padding-top: 13vh;
    padding-bottom: 13vh;
  }
}

/* Welcome */

.welcome {
  margin-top: 48px;
  position: relative;
}
.welcome .influencers-image {
  background: url("../assets/influencers/image-influencers.jpg") no-repeat center center;
  background-size: cover;
  display: block;
  width: 580px;
  height: 440px;
  border-radius: 16px;
  margin-left: 64px;
}
.welcome .content {
  position: relative;
  text-align: center;
  color: white;
  border-radius: 16px;
  padding: 96px 48px;
  width: 100%;
}
.welcome .scroll-down {
  position: absolute;
  bottom: 4px;
  left: calc(50% - 24px);
}
@media (min-width: 768px) {
  .welcome {
    margin-top: 64px;
  }
  .welcome .content {
    top: 48px;
    text-align: left;
    padding: 48px 40px;
    left: -160px;
    width: 130%;
    margin-right: auto;
    }
    .welcome .scroll-down-container {
      padding-top: 64px;
      text-align: center;
    }
}

  /* Originals */

  .originals {
    color: white;
  }
  .originals .section-title {
    text-align: center;
    margin: 0 auto;
    max-width: 480px;
    padding: 24px 0 48px;
  }
  .originals .wrapper {
    position: relative;
  }
  .originals .covers {
    position: relative;
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
  }
  .originals .originals-button {
    position: relative;
    z-index: 1;
  }
  .originals .covers-background {
    content: '';
    position: absolute;
    height: 10vh;
    width: 50vw;
    top: calc(50% - 5vh);
    left: calc(50% - 25vw);
    background: var(--purple-300);
    filter: blur(8em);
    opacity: .95;
    z-index: 0;
  }
  .originals a {
    margin: 12px;
  }
  .originals .covers img {
    width: 112px;
    height: 112px;
    border-radius: 16px;
    box-shadow: var(--shadow-200);
    transition: 0.2s ease;
  }
  .originals .covers img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-300);
  }

  .originals .text-highlight {
    color: #C82F85;
    font-weight: var(--bold);
  }

/* Tips */

.tip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tips a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 24px;
  border-radius: 16px;
  color: var(--gray-900);
  transition: 0.2s ease;
}
.tips a:hover {
  box-shadow: var(--shadow-200);
}
.tips p {
  font-weight: var(--bold);
}
.tip .text-highlight {
  color: #C82F85;
}
.tip img {
  padding-right: 8px;
}

/* Footer */

footer {
  color: #BFBFBF;
  background-color: #222;
}
footer .row {
  display: block;
}
footer .logo img {
  width: 140px;
}
footer .container {
  width: 100%;
  max-width: 1400px;
}
footer .wrapper {
  padding: 56px 16px;
}
footer .content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
}
footer .content .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
footer .content .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
footer .block {
  padding: 24px 0;
}
footer ul {
  font-size: 16px;
  color: #BFBFBF;
  display: block;
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  margin-top: 24px;
}
footer ul li {
  padding-bottom: 24px;
}
footer ul li:last-child {
  padding-bottom: 0;
}
footer .title {
  font-size: 18px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  font-weight: bold;
}
footer a {
  color: #BFBFBF;
  text-decoration: none;
}
footer a:hover,
footer a:focus {
  color: white;
  text-decoration: none;
}
footer a.social {
  opacity: 0.5;
  margin-right: 16px;
  align-self: flex-end;
}
footer a.social:hover {
  opacity: 1;
}
footer .btn {
  border: 1px solid #808080;
  color: #808080;
  text-transform: none;
  background: rgba(255, 255, 255, 0);
}
footer .btn:hover,
footer .btn:focus {
  color: white;
  border-color: white;
  text-decoration: none;
  background: rgba(255,255,255, .10);
}
footer .btn img {
opacity: 0.5;
}
footer .btn:hover img,
footer .btn:focus img {
opacity: 1;
}
footer .download-buttons {
  display: flex;
  padding: 8px 0 24px;
}
footer .download-buttons div:first-child {
  margin-right: 16px;
}
footer .social-buttons {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  padding-top: 24px;
}
@media (min-width: 576px) {
  footer .content {
      flex-direction: row;
  }
  footer .content .left {
      width: 50%;
  }
  footer .content .right {
      width: 50%;
  }
}
@media (min-width: 992px) {
  footer .content .left {
      flex-direction: row;
      justify-content: space-between;
      flex-basis: 37.5%;
  }
  footer .content .right {
      flex-direction: row;
      justify-content: space-between;
      flex-basis: 50%;
  }
}

/* Bottom */

footer .bottom {
  background-color: black;
  color: #808080;
  padding: 24px 0 48px;
}
footer .bottom a {
  color: #808080;
  text-decoration: none;
}
footer .bottom .content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
footer .bottom .content > div {
  width: 100%;
}
footer .bottom .content > div:nth-child(3) {
  padding-top: 16px;
}
@media (min-width: 768px) {
  footer .bottom .content {
      flex-direction: row;
  }
  footer .bottom .content > div {
      width: 33.333%;
  }
  footer .bottom .content > div:nth-child(2) {
      text-align: right;
      order: 3;
  }
  footer .bottom .content > div:nth-child(3) {
      text-align: center;
      order: 2;
      padding-top: 0;
  }
}

/* Legal */

.legal {
  background: black;
  color: var(--gray-600);
}
.legal .wrapper {
  max-width: 1172px;
  padding: 32px 16px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.legal a {
  color: var(--gray-600);
  text-decoration: none;
}
.message-error{
  color: red;
  border: 1px;
}

.share-list.circle-icons a:before {
  content: "";
  background: transparent url(https://static-1.ivoox.com/img/icons/social/social-icons@2x.png) no-repeat 0 0;
  float: left;
  margin-right: 10px;
}
.share-list.circle-icons a.share-fb:before{
  width: 60px;
  height: 60px;
  background-position: 0px -60px;
}
.share-list.circle-icons a.share-twitter:before{
  width: 60px;
  height: 60px;
  background-position: -60px -60px;
}
.share-list.circle-icons a.share-linkedin:before{
  width: 60px;
  height: 60px;
  background-position: -540px -60px;
}
