/****************** FONTS ******************/
/* font-family: 'Saira Condensed', sans-serif;
font-family: 'Rubik', sans-serif;

extra-bold: 800
bold: 700
regular: 400 */

/*******************************************/
/************** GLOBAL STYLES **************/
/*******************************************/

html,
body {
  height: 100%;
  width: 100%;
  background-color: #fff;
}

html,
body,
p,
div,
h1,
h2,
h3,
h4 {
  font: 400 1rem 'Rubik', 'Source Sans Pro', sans-serif;
  color: #1c1c1c;
  padding: 0;
  margin: 0;
}

body ::after,
body ::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font: 800 2rem 'Saira Condensed', 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  line-height: 100%;
}

h2 {
  font: 800 1.63rem 'Saira Condensed', 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  line-height: 100%;
}

h3 {
  font: 700 1.5rem 'Rubik', 'Source Sans Pro', sans-serif;
  padding: 0.5rem 0;
  line-height: 100%;
}

h4 {
  font: 800 1.5rem 'Saira Condensed', 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  line-height: 100%;
}

button {
  cursor: pointer;
}

.btnPrimary {
  background: #ff6900;
  color: #fff;
  font: 700 1.87rem 'Saira Condensed', 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  line-height: 20px;
  border: 0;
  border-radius: 35px;
  padding: 20px 50px;
  cursor: pointer;
  box-shadow: 0 1px 1px 0 #000;
}

.btnPrimary:hover {
  background: #ff5400;
}

.bgGrey {
  background: #f7f7f7;
}

.bgDarkGrey {
  background: #323232;
}

.copyOrange {
  color: #f16a00;
}

.copyGrey {
  color: #505050;
}

.copyLightGrey {
  color: #6c6c6c;
}

.copyWhite {
  color: #fff;
}

.opaque {
  opacity: 86%;
}

ul {
  padding: 2rem 0 0;
  padding-inline-start: 0.5rem;
  margin: 0;
}

li {
  color: #000;
  font: 700 0.88rem 'Rubik', 'Source Sans Pro', sans-serif;
  padding-bottom: 1rem;
  text-align: left;
}

li:last-child {
  padding-bottom: 0;
}

/***********************************************/
/************** STRUCTURAL STYLES **************/
/***********************************************/

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

header,
section,
footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  text-align: left;
}

header,
footer {
  background-color: #323232;
  width: 100%;
  padding: 1rem 2rem;
}

.logo {
  height: 46px;
}

section {
  width: 100%;
}

.container {
  padding: 2rem;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content {
  padding: 1rem 0 2rem 0;
}

.banner {
  width: 100%;
}

.desktopImg {
  display: none;
}

footer {
  width: 100%;
}

/********************************************/
/************** CONTENT STYLES **************/
/********************************************/

.point {
  padding: 1rem 4rem;
}

.smlPoints > li {
  color: #fff;
  font: 400 0.75rem 'Rubik', 'Source Sans Pro', sans-serif;
}

.table {
  width: 100%;
  max-width: fit-content;
}

.sharkFree {
  background-image: url(../imgs/mobile/section_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 292px;
}

/**********************************************/
/************** ACCORDION STYLES **************/
/**********************************************/

.accordion {
  padding: 2rem 0 2rem 2rem;
  cursor: pointer;
}

.accordions > div:first-of-type {
  border-bottom: 2px solid #707070;
}

.accordionCard {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  background: #fff;
}

.accordionCard:after {
  content: '\002B';
  color: #6c6c6c;
  font-weight: bold;
  font-size: 1.5rem;
  flex: 1;
}

.activeAccordionCard:after {
  content: '\2212';
}

.accordionCardHeader {
  flex: 6;
}

.accordionContents {
  height: 0;
  display: none;
  overflow: hidden;
  padding: 1.5rem 2rem 0 0;
}

.accordionContents > p {
  text-align: left;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.accordionContents > p:last-of-type {
  padding-bottom: 0;
}

.noICO:before,
.icoHook:before,
.icoGlasses:before,
.icoDice:before {
  content: ' ';
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0 2rem 0;
}

.icoHook:before {
  width: 43px;
  height: 47px;
  background-image: url(../imgs/mobile/hook_icon.png);
}

.icoGlasses:before {
  width: 54px;
  height: 17px;
  background-image: url(../imgs/mobile/anonymous_icon.png);
}

.icoDice:before {
  width: 32px;
  height: 48px;
  background-image: url(../imgs/mobile/group_11.png);
}

@media (min-width: 576px) {
  .mobileImg {
    display: none;
  }

  .desktopImg {
    display: block;
    margin: 0 auto;
  }

  .anonymousTables {
    background-image: url(../imgs/desktop/section_background.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: auto;
    max-width: 1920px;
    background-position: bottom;
  }
  .smlPoints {
    max-width: 800px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  h1,
  h2,
  h4 {
    font-size: 3.125rem;
  }

  div {
    font-size: 1.5rem;
  }

  .container {
    padding: 4rem 2rem;
  }

  .content {
    width: 80%;
    margin: 0 auto;
  }

  .btnPrimary {
    font-size: 2.5rem;
  }

  .points {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 2rem 0;
  }

  .point {
    padding: 0 3rem 2rem;
  }

  .point > div {
    font-size: 1.25rem;
  }

  ul {
    margin: 0 auto;
    width: max-content;
  }

  li {
    text-align: left;
    font-size: 1rem;
  }

  .anonymousTables {
    height: 1145px;
  }

  .smlPoints > li {
    font-size: 1.25rem;
  }

  .accordionCard:after {
    font-size: 3rem;
  }

  .accordionContents > p {
    font-size: 1.5rem;
    width: 60%;
    margin: 0 auto;
    padding: 1rem 0;
  }

  .noICO:before,
  .icoHook:before,
  .icoGlasses:before,
  .icoDice:before {
    padding: 0 4rem 0;
  }

  .icoHook:before {
    width: 80px;
    height: 87px;
    background-image: url(../imgs/mobile/hook_icon.png);
  }

  .icoGlasses:before {
    width: 103px;
    height: 32px;
    background-image: url(../imgs/mobile/anonymous_icon.png);
  }

  .icoDice:before {
    width: 63px;
    height: 97px;
    background-image: url(../imgs/mobile/group_11.png);
  }
}

@media (min-width: 992px) {
  .accordionCardHeader {
    flex: 15;
  }
}

@media (min-width: 1200px) {
  .accordionCard:after {
    text-align: left;
  }
}
