:root {
  --primary-color: #EF5524;
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body, html {
  width: 100%;
  height: 100%;
}
section {
  position: relative;
  min-height: 100vh;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;  
  overflow: hidden;
}
section.dark {
  background-color: #000;
  color: #fff;
}
.page-padding {
  padding-left: calc(calc(100vw - 1160px) / 2);
  padding-right: calc(calc(100vw - 1160px) / 2);
}
button.trial {
  display: block;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  font-style: italic;
  color: #000;
  padding: .8rem 2.2rem;
  border-radius: 2rem;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  white-space: nowrap;
  transition: color .5s, background-color .5s, border-color .5s;
}
button.trial:hover {
  background-color: var(--primary-color);
  color: #fff;
}
section.dark button.trial {
  color: #fff;
  border: 2px solid var(--primary-color);
  background-color: transparent;
}
section.dark button.trial:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

section h3 {
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: 97%;
}
section h3 strong {
  font-weight: 900;
  font-size: 64px;
}


/********* HOME *********/


section#home {
  background-image: url(../assets/background_01.png);
  background-size: cover;
  background-position: center bottom;
  flex-wrap: wrap;
  align-content: space-between;
  min-height: calc(100vh + 160px);
}
section#home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_02.png) center bottom no-repeat;
  background-size: 75%;
}
section#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_01.png) center top no-repeat;
  background-size: 55%;
  z-index: 0;
}
section#home header {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  z-index: 1;
}
section#home > div {
  position: relative;
  width: 100%;
  z-index: 2;
}
section#home footer {
  min-height: 150px;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 1;
}

section#home figure {
  position: absolute;
  top: 27%;
  right: 48%;
  z-index: 1;
}
section#home figure img {
  position: absolute;
  top: 0;
  left: 0;
}
section#home figure img:last-child {
  top: -43px;
  left: 37px;
}

section#home nav {
  display: block;
  width: 100%;
}
section#home nav ul {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  list-style: none;
}
section#home nav ul li:first-child {
  margin-left: auto;
}
section#home nav ul li a {
  color: #fff;
  text-transform: uppercase;
  margin-left: 2.5rem;
  font-weight: bold;
  font-style: italic;
  font-size: 17px;
  white-space: nowrap;
  transition: color .5s, background-color .5s;
}
section#home nav ul li a:hover {
  color: var(--primary-color);
}
section#home nav ul li:last-child a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
section#home nav ul li:last-child a {
  border: 2px solid var(--primary-color);
  padding: .8rem 2rem;
  border-radius: 2rem;
}
section#home h1 {
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: 97%;
}
section#home h1 strong {
  font-weight: 900;
  font-size: 64px;
  display: block;
}
section#home p {
  font-weight: 100;
  font-size: 22px;
  margin: 2rem 0;
  line-height: 160%;
}
section#home ul.social {
  margin-top: 8rem;
  list-style: none;
  display: inline-flex;
}
section#home ul.social li {
  margin-right: .6rem;
}
section#home ul.social li a {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transition: background-color .5s;
}
section#home ul.social li a.facebook {
  background: url(../assets/icon_facebook.png) center no-repeat;
}
section#home ul.social li a.instagram {
  background: url(../assets/icon_instagram.png) center no-repeat;
}
section#home ul.social li a.youtube {
  background: url(../assets/icon_youtube.png) center no-repeat;
}
section#home ul.social li a:hover {
  background-color: var(--primary-color);
}
section#home button.trial {
  display: block;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  padding: .8rem 2.2rem;
  border-radius: 2rem;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
}
section#home button.trial:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
section#home footer ul {
  display: inline-flex;
  align-items: center;
  width: 100%;
  list-style: none;
}
section#home footer ul li {
  flex: 1;
  text-align: center;
}


/********* ABOUT US *********/


section#about-us {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
section#about-us > * {
  z-index: 1;
}
section#about-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -90%;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_04.png) left bottom no-repeat;
  background-size: 100%;
}
section#about-us::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_04.png) center top no-repeat;
  background-size: 100%;
  z-index: 0;
}
section#about-us h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: 97%;
}
section#about-us h2 strong {
  font-weight: 900;
  font-size: 64px;
}
section#about-us ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 75%;
  margin: 1rem 0;
}
section#about-us ul li {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 50%;
  margin-top: 2rem;
  padding-right: 4rem;
  box-sizing: border-box;
}
section#about-us ul li h3 {
  font-size: 26px;
  font-weight: bolder;
  font-style: italic;
  text-transform: uppercase;
}
section#about-us ul li p {
  font-size: 18px;
  font-weight: 100;
  line-height: 180%;
  margin-top: 1rem;
}
section#about-us figure {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 70%;
}


/********* ABOUT US *********/


section#song-motivation {
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
  background-image: url(../assets/background_01.png);
  background-size: cover;
  background-position: center bottom;
}
section#song-motivation > * {
  z-index: 1;
}
section#song-motivation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#song-motivation h3 strong {
  display: block;
}
section#song-motivation figure {
  position: absolute;
  top: 0;
  height: 100%;
  right: 60%;
}
section#song-motivation figure img {
  height: 100%;
}
section#song-motivation p, ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 60%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 1rem 0;
}
section#song-motivation ul {
  list-style: none;
  margin: 2rem 0 4rem 0;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
}
section#song-motivation ul li {
  line-height: 3rem;
  font-weight: 300;
}
section#song-motivation ul li::after {
  content: "";
  float: right;
  width: 21px;
  height: 3rem;
  margin-left: 1rem;
  background: url(../assets/icon_check.png) center no-repeat;
}


/********* RESOURCES 1 *********/


section#resources-1 {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  text-align: left;
  background-size: cover;
  background-position: center bottom;
}
section#resources-1 > * {
  z-index: 1;
}
section#resources-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -90%;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_04.png) left bottom no-repeat;
  background-size: 100%;
}
section#resources-1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_04.png) center top no-repeat;
  background-size: 100%;
  z-index: 0;
}
section#resources-1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#resources-1 h3 {
  line-height: 120%;
}
section#resources-1 h3 strong {
  display: block;
}
section#resources-1 figure {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 55%;
}
section#resources-1 p {
  width: 50%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 4rem 0 6rem 0;
}
section#resources-1 p strong {
  font-weight: 400;
}


/********* RESROUCES 02 *********/


section#resources-2 {
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
  background-image: url(../assets/background_01.png);
  background-size: cover;
  background-position: center bottom;
}
section#resources-2 > * {
  z-index: 1;
}
section#resources-2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#resources-2 h3 {
  line-height: 120%;
}
section#resources-2 h3 strong {
  display: block;
}
section#resources-2 figure {
  position: absolute;
  top: 0;
  height: 100%;
  right: 50%;
}
section#resources-2 figure img {
  height: 100%;
}
section#resources-2 p {
  width: 60%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 4rem 0 6rem 0;
}
section#resources-2 p strong {
  font-weight: 400;
}


/********* RESROUCES 03 *********/


section#resources-3 {
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
  background-size: cover;
  background-position: center bottom;
}
section#resources-3 > * {
  z-index: 1;
}
section#resources-3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center top no-repeat;
  background-size: 130%;
}
section#resources-3 h3 {
  font-size: 50px;
}
section#resources-3 h3 strong {
  display: block;
}
section#resources-3 figure {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 50%;
}
section#resources-3 p {
  width: 50%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 1rem 0;
}
section#resources-3 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 60%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 1rem 0;
}
section#resources-3 p strong {
  font-weight: 400;
}
section#resources-3 ul {
  list-style: none;
  margin: 2rem 0 4rem 0;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
}
section#resources-3 ul li {
  line-height: 3rem;
  font-weight: 300;
}
section#resources-3 ul li::after {
  content: "";
  float: right;
  width: 21px;
  height: 3rem;
  margin-left: 1rem;
  background: url(../assets/icon_check_black.png) center no-repeat;
}


/********* RESROUCES 02 *********/


section#resources-4 {
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
  background-image: url(../assets/background_01.png);
  background-size: cover;
  background-position: center bottom;
}
section#resources-4 > * {
  z-index: 1;
}
section#resources-4::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#resources-4 h3 {
  line-height: 120%;
}
section#resources-4 h3 strong {
  display: block;
}
section#resources-4 figure {
  position: absolute;
  top: 0;
  height: 100%;
  right: 60%;
}
section#resources-4 figure img {
  height: 100%;
}
section#resources-4 p {
  width: 60%;
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 4rem 0 6rem 0;
}
section#resources-4 p strong {
  font-weight: 400;
}

/********* TRIAL *********/


section#trial {
  flex-direction: column;
  position: relative;
  background-image: url(../assets/background_01.png);
  background-size: cover;
  background-position: center bottom;
  flex-direction: row;
  flex-wrap: wrap;
}
section#trial > * {
  z-index: 1;
}
section#trial div {
  flex: 55%;
  box-sizing: border-box;
  padding-right: 4rem;
}
section#trial form {
  flex: 45%;
  background-color: #000;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 2rem 3rem;
  text-align: center;
}

section#trial::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#trial::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_02.png) center bottom no-repeat;
  background-size: 75%;
}
section#trial h3 {
  line-height: 120%;
}
section#trial h3 strong {
  display: block;
}
section#trial p {
  font-size: 20px;
  font-weight: 100;
  line-height: 160%;
  margin: 2.5rem 0 3rem 0;
}
section#trial p strong {
  font-weight: 400;
}
section#trial button.app {
  display: block;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  padding: .5rem 1.4rem;
  border-radius: 2rem;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  white-space: nowrap;
  transition: color .5s, background-color .5s, border-color .5s;
}
section#trial button.app:hover {
  background-color: var(--primary-color);
  color: #fff;
}
section#trial form a {
  text-decoration: underline;
  font-weight: 400;
}
  section#trial form button {
  display: inline-block;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  padding: .8rem 2.2rem;
  border-radius: 2rem;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  white-space: nowrap;
  transition: color .5s, background-color .5s, border-color .5s;
}
section#trial form button:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
section#trial form h4 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 1rem;
}
section#trial form label {
  display: block;
}
section#trial form select, section#trial form input {
  display: block;
  background-color: #333;
  width: 100%;
  box-sizing: border-box;
	color: #777;
  border: 0;
  border-radius: 3px;
  font-size: 18px;
  padding: .7rem 1.2rem;
  margin-bottom: 1rem;
}
section#trial form select:valid, section#trial form input:valid {
	color: #ddd;
}
section#trial form .city-state {
	display: flex;
}
section#trial form .city-state select {
	width: 90px;
	margin-left: 1rem;
}
section#trial form .terms {
  position: relative;
  text-align: left;
  padding-left: 2rem;
  font-size: .9rem;
  font-weight: 100;
  margin: .5rem 0 1.5rem 0;
}
section#trial form .terms input {
  position: absolute;
  top: 0;
  left: 0;
}
section#trial div.response {
  display: none;
}


/********* CUSTOMERS *********/


section#customers {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-size: cover;
  background-position: center bottom;
}
section#customers > * {
  z-index: 1;
}
section#customers::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/effect_05.png) center bottom no-repeat;
  background-size: 100%;
}
section#customers > div {
  display: inline-flex;
  width: 100%;
}
section#customers h3 {
  font-size: 64px;
  width: 100%;
}
section#customers ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4.5rem;
  width: 100%;
}
section#customers ul li {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 33%;
  box-sizing: border-box;
  margin-top: 2rem;
  box-sizing: border-box;
}
section#customers ul li img {
  box-shadow: 6px 6px 5px #ccc;
  border-radius: 4px;
}
section#customers ul li h5 {
  font-size: 28px;
  font-style: italic;
  margin-top: 2rem;
  text-transform: uppercase;
}
section#customers ul li p {
  font-size: 18px;
  margin: 1rem 0;
}
section#customers ul li span, section#customers ul li address {
  font-size: 20px;
  font-style: normal;
  display: block;
  font-weight: 500;
}

@media screen and (max-width: 1160px) {
  .page-padding {
    padding-left: calc(calc(100vw - 736px) / 2);
    padding-right: calc(calc(100vw - 736px) / 2);
  }
  h1, h1 strong {
    font-size: 45px !important;
  }
  h2, h2 strong {
    font-size: 40px !important;
    text-align: center;
    width: 100%;
  }
  h3, h3 strong {
    font-size: 36px !important;
  }
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  section#home {
    padding-top: 0;
    padding-bottom: 0;
  }
  section#home header {
    flex-direction: column;
    justify-content: center;
  }
  section#home figure {
    transform: scale(.7);
  }

  section#about-us figure {
    display: none;
  }
  section#about-us ul {
    width: 100%;
  }

  section#song-motivation {
    align-items: center;
    text-align: center;
  }
  section#song-motivation figure {
    display: none;
  }
  section#song-motivation p {
    width: 100%;
  }
  section#song-motivation ul {
    width: 100%;
    text-align: center;
    display: block;
  }
  section#song-motivation ul li::after {
    display: none;
  }

  section#resources-1 {
    align-items: center;
    text-align: center;
  }
  section#resources-1 figure {
    display: block;
    position: relative;
    left: initial;
    top: initial;
    margin-bottom: 2rem;
  }
  section#resources-1 figure img {
    max-width: 100%;
  }
  section#resources-1 p {
    width: 100%;
    margin: 2rem 0;
  }

  section#resources-2 {
    align-items: center;
    text-align: center;
  }
  section#resources-2 figure {
    display: none;
  }
  section#resources-2 p {
    width: 100%;
  }
section#customers > div {
    /* display: inline-flex; */
    width: 100%;
}
  section#resources-3 {
    align-items: center;
    text-align: center;
  }
  section#resources-3 figure {
    display: none;
  }
  section#resources-3 p {
    width: 100%;
  }
  section#resources-3 ul {
    width: 100%;
    text-align: center;
    display: block;
  }
  section#resources-3 ul li::after {
    display: none;
  }

  section#resources-4 {
    align-items: center;
    text-align: center;
  }
  section#resources-4 figure {
    display: none;
  }
  section#resources-4 p {
    width: 100%;
  }

  section#customers > div {
    display: block;
    text-align: center;
  }
  section#customers button.trial {
    margin: 2rem auto;
  }
  section#customers ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
  }
  section#customers ul li img {
    width: 100%;
  }

  section#trial {
    align-items: center;
    text-align: center;
  }
  section#trial div {
    flex: 100%;
    padding-right: 0;
  }
  section#trial button.app {
    display: inline-block;
    margin: 0 auto;
  }
  section#trial form {
    margin-top: 2rem;
  }

}

@media screen and (max-width: 736px) {
  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  h1, h1 strong {
    font-size: 32px !important;
  }
  h2, h2 strong {
    font-size: 30px !important;
  }
  h3, h3 strong {
    font-size: 24px !important;
  }
  section {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  section button.trial {
    margin: 0 auto !important;
    font-size: 14px;
  }

  p {
    font-size: 1rem !important;
  }
  section#home {
    text-align: center;
  }
  section#home header {
    height: initial;
  }
  section#home header img.logo {
    transform: scale(.7);
    margin-top: .5rem;
  }
  section#home header nav {
    display: none;
  }
  section#home figure {
    position: relative;
    transform: scale(.55);
    margin: -5.5rem 0 -6.5rem 0;
    top: auto;
    right: auto;
  }
  section#home figure img:first-child {
    position: relative;
    top: auto;
    left: auto;
  }
  section#home::after, section#home::before {
    display: none;
  }
  section#home ul.social {
    margin: 2rem auto;
  }
  section#home footer img {
    transform: scale(.7);
  }

  section#about-us ul li {
    text-align: center;
    padding: 0;
    flex: 100%;
  }
  section#about-us ul li p {
    margin: 0;
    line-height: 150%;
  }

  section#song-motivation ul {
    margin: 1rem 0;
  }
  section#song-motivation ul li {
    line-height: 100%;
    font-size: 16px;
    margin-bottom: 1rem;
  }

  section#resources-1 p {
    margin: 1rem 0;
  }
  section#resources-1 figure {
    transform: none;
    margin-bottom: 1.5rem;
  }
  section#resources-1 figure img {
    width: 100%;
  }
  
  section#resources-3 ul {
    margin: 1rem 0;
  }
  section#resources-3 ul li {
    line-height: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  section#resources-4 p {
    margin: 2rem 0;
  }

  section#customers button.trial {
    margin: 2rem auto 0 auto !important;
  }
  section#customers ul {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
  }
  section#customers ul li h5 {
    font-size: 1.4rem;
    text-align: center;
  }
  section#customers ul li p {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: .5rem;
  }
  section#customers ul li span, section#customers ul li address {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  section#trial form {
    padding: 1rem;
  }
  section#trial form h4 {
    font-size: 1.2rem;
  }
  section#trial form button {
    display: block;
    width: 100%;
    font-size: 1rem;
  }

}