:root {
  --blue-bearbrand-dark: #1a458a;
  --blue-bearbrand-light: #1C90BF;
  --gray-light: #F5F5F5;
  --linkedin: #0097D3;
  --text-primary: #1a458a;
  --text-secondary: #1C90BF;
  --text-warning: #FED16F;
  --text-light: #fff;
  --text-default: #12121D;
  --bgc-default: #ffffff; }

:root {
  --font-size: 1rem;
  --font-family: "Open Sans";
  --font-weight-default: 400;
  --font-weight-lg: 700;
  --font-weight-xlg: 800; }

.text-primary {
  color: var(--text-primary); }

.text-secondary {
  color: var(--text-secondary); }

.text-center {
  text-align: center; }

.cursor-pointer {
  cursor: pointer; }

.border-right-gray {
  border-right: 2px solid var(--blue-bearbrand-light) !important; }

.my-1 {
  margin: 100px auto !important; }

.mtc-1 {
  margin: 100px auto 0 auto !important; }

.mb-1 {
  margin-bottom: 50px !important; }

.mt-1 {
  margin-top: 50px  !important; }

.lh-large {
  line-height: 136px; }

.text-md {
  font-size: 20px;
  line-height: 150%; }

.py-1 {
  padding: 100px 0; }

.bg-dark {
  background-color: #08090F; }
  .bg-dark * {
    color: white !important; }

.btn {
  background-color: white;
  color: var(--text-primary);
  width: 182px;
  height: 49px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center; }

.bg-primary {
  background-color: var(--blue-bearbrand-dark);
  color: white !important; }
  .bg-primary * {
    color: white !important; }

.bg-secondary {
  background-color: var(--blue-bearbrand-light);
  color: white !important; }
  .bg-secondary * {
    color: white !important; }

.text-nm {
  font-weight: 400 !important; }

.m-l-1 {
  margin-left: 80px !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.center {
  margin: 0 auto; }

.link-secondary {
  color: var(--blue-bearbrand-light);
  text-decoration: underline; }

.m-b-0 {
  margin-bottom: 0 !important; }

h1, h2, h3, h4, a, button, p, li, input {
  font-family: 'Open Sans', sans-serif; }

h1 {
  font-weight: 800;
  font-size: 5em; }

h2 {
  font-weight: 800;
  font-size: 40px; }

ul li a, ul li a:visited, ul li a:active {
  color: var(--text-primary);
  text-decoration: none;
  font-size: inherit;
  font-weight: 700;
  line-height: 21.79px;
  letter-spacing: 0.02em; }

button {
  font-size: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: var(--text-primary);
  color: white; }

input {
  font-size: inherit;
  color: var(--text-primary); }
  input::placeholder {
    color: var(--text-primary); }

.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 100; }
  .modal .container {
    background-color: white;
    min-width: 30rem;
    max-width: 80vw;
    max-height: 95vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    border-radius: 4px; }
    .modal .container .header {
      max-width: 30rem; }
      .modal .container .header h2 {
        text-align: center;
        font-size: 1.8rem; }
        .modal .container .header h2:last-of-type {
          margin-bottom: 3rem; }
    .modal .container .body {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .modal .container .body img, .modal .container .body p {
        margin-bottom: 2rem; }
      .modal .container .body img {
        width: 10rem; }
      .modal .container .body p {
        text-align: center;
        font-size: .9rem; }
      .modal .container .body span {
        font-weight: 600; }
    .modal .container .footer button {
      background-color: var(--blue-bearbrand-light);
      padding: .8rem 3rem;
      border-radius: 12px; }
  .modal.show {
    visibility: visible;
    opacity: 1; }

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: transparent;
  height: 7rem; }
  nav ul {
    width: 100%;
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center; }
    nav ul li {
      height: 100%;
      display: flex;
      align-items: center;
      color: var(--text-primary);
      text-transform: uppercase; }
      nav ul li:not(:last-of-type) {
        margin-right: 2em; }

.sticky {
  position: fixed;
  width: 100vw;
  bottom: -5rem;
  z-index: 100;
  opacity: 0;
  transition: all .5s;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1)); }
  .sticky .go-top {
    cursor: pointer;
    position: absolute;
    right: 2rem;
    bottom: 8rem; }
    .sticky .go-top img {
      width: 5rem; }
  .sticky .form-container {
    background-color: white;
    height: 7rem;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .sticky .form-container button {
      background-color: var(--blue-bearbrand-dark); }
  .sticky.show {
    bottom: 0rem;
    opacity: 1; }

@media (max-width: 760px) {
  .sticky .form-container {
    justify-content: center; }
    .sticky .form-container p.explore {
      display: none; } }

.showcase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }
  .showcase-img {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .showcase-img img {
      width: 100%;
      height: auto; }
  .showcase-article {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em; }
    .showcase-article-header {
      flex: 0 1 40%; }
    .showcase-article-description {
      flex: 0 1 40%;
      line-height: 150%; }
    .showcase-article-time {
      flex: 0 1 20%;
      font-weight: 600;
      line-height: 1.8em; }
  .showcase-footer-desc {
    margin-top: 2rem;
    max-width: 45rem;
    text-align: center; }
  .showcase-wave {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; }
    .showcase-wave-top {
      max-width: 375px;
      height: auto; }
    .showcase-wave-bottom {
      position: absolute;
      bottom: 0;
      width: 100%; }

.about {
  margin: 16rem auto 0 auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em; }
  .about-img {
    width: 100%;
    max-width: 416px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .about-img img {
      width: 100%;
      height: auto; }
  .about-img, .about-article {
    flex: 0 1 50%; }
  .about-article {
    padding: 0 20px; }
    .about-article p {
      margin-top: 2em;
      line-height: 170%; }
  @media (max-width: 760px) {
    .about {
      flex-direction: column; }
      .about-img {
        margin-bottom: 2rem !important; }
        .about-img img {
          width: 70%; } }

.about_attend {
  -webkit-transform: skewY(-4deg);
  -moz-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  -o-transform: skewY(-4deg);
  transform: skewY(-4deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16rem 2rem;
  background-color: var(--blue-bearbrand-dark); }
  .about_attend-header, .about_attend-body {
    flex: 0 1 50%;
    -webkit-transform: skewY(4deg);
    -moz-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    -o-transform: skewY(4deg);
    transform: skewY(4deg);
    color: white;
    max-width: 70rem; }
  .about_attend-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em; }
    .about_attend-header h2 {
      flex-grow: 1;
      margin-bottom: 2em; }
    .about_attend-header img {
      width: 100%;
      height: auto; }
  .about_attend-body {
    text-align: center;
    line-height: 27.2px; }

.donation {
  position: relative;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 16rem 2rem; }
  .donation::after {
    width: 100%;
    content: " ";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 4%);
    -moz-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 4%);
    -ms-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 4%);
    -o-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 4%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 4%);
    background-color: var(--blue-bearbrand-dark);
    z-index: 2; }
  .donation-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 70rem;
    max-height: 500px;
    color: white;
    padding: 2em;
    background-color: transparent; }
    @media (max-width: 660px) {
      .donation-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        max-height: auto; }
        .donation-container-header, .donation-container-body {
          width: 100%; } }
  @media (max-width: 660px) {
    .donation {
      height: auto !important; }
      .donation-header {
        margin-bottom: 20px !important;
        margin-right: 0 !important;
        align-items: center !important; }
        .donation-header-img {
          width: 100%;
          max-width: auto;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          .donation-header-img img:not(:last-child) {
            margin-bottom: 10px; }
      .donation-header, .donation-body {
        width: 100% !important; } }
  .donation-header {
    width: 443px;
    height: 350px;
    display: flex;
    margin-right: 20px;
    flex-direction: column;
    justify-content: space-between; }
    .donation-header-img {
      max-width: 210px; }
      .donation-header-img img:last-child {
        transform: rotateX(180deg);
        width: 100%;
        height: auto; }
    .donation-header h2 {
      color: white; }
    .donation-header a,
    .donation-header a:visited,
    .donation-header a:active {
      background-color: white;
      color: var(--text-primary);
      width: 182px;
      height: 49px;
      padding: 8px;
      border-radius: 8px;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center; }
  .donation-body {
    width: 443px;
    flex-grow: 1;
    background-color: transparent;
    border-radius: 0.5rem; }
    .donation-body img {
      width: 100%;
      height: auto; }

.performance {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 10rem; }
  .performance-header, .performance-body {
    flex: 0 1 50%; }
  .performance-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem; }
    .performance-header-title, .performance-header-desc {
      flex: 0 1 50%; }
    .performance-header-title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .performance-header-title h2 {
        flex-grow: 1; }
      .performance-header-title img {
        width: 100%;
        height: auto; }
    .performance-header-desc {
      padding: 2rem; }
  .performance-body {
    width: 100%;
    display: grid;
    grid-gap: 2rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(10.1rem, 1fr));
    justify-content: center;
    align-items: center; }
    .performance-body--item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .performance-body--item img {
        width: 150px;
        height: 150px;
        border-radius: 50%; }
      .performance-body--item p {
        margin-top: 8px;
        text-transform: capitalize; }

.rundown {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin: 16rem auto !important;
  padding: 2em; }
  .rundown-header {
    width: 297px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    margin-right: 1rem; }
    .rundown-header h2 {
      flex-grow: 1;
      text-transform: capitalize; }
    .rundown-header img {
      width: 100%;
      height: auto; }
  .rundown-body {
    flex: 0 1 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .rundown-table {
    border-collapse: collapse;
    width: 80%; }
    .rundown-table td {
      border-top: 1px solid var(--blue-bearbrand-dark);
      border-bottom: 1px solid var(--blue-bearbrand-dark);
      padding: 1.5rem;
      line-height: 25px; }
      .rundown-table td:last-child {
        text-align: right; }
  @media (max-width: 660px) {
    .rundown {
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .rundown-header, .rundown-body {
        width: 100%; } }

.podcast {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem !important;
  position: relative; }
  .podcast .goto {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all .5s;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1)); }
    .podcast .goto img {
      width: 80%;
      height: auto; }
    .podcast .goto-right {
      top: 70%;
      right: 0; }
    .podcast .goto-left {
      top: 70%;
      left: 0;
      transform: rotate(180deg); }
    .podcast .goto.hidden {
      opacity: 0; }
  .podcast-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem; }
    .podcast-header-title {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      .podcast-header-title img {
        width: 80%;
        max-width: 300px;
        height: auto; }
    .podcast-header-description {
      margin: 1rem 0; }
    .podcast-header-img {
      width: 100%; }
      .podcast-header-img img {
        width: 100%;
        height: auto; }
  .podcast-body {
    width: 100%;
    height: 250px;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 10px;
    align-items: center;
    padding: 10px;
    overflow: auto; }
    .podcast-body--item {
      cursor: pointer;
      width: 210px;
      height: 210px;
      background-color: white;
      filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
      border-radius: 8px; }

.partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .partner-header {
    text-align: center;
    color: white;
    margin-bottom: 4rem; }
  .partner-body {
    width: 100%;
    display: grid;
    flex-direction: row;
    grid-gap: 2rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    justify-items: center;
    margin-bottom: 3rem;
    max-width: 70rem; }
    .partner-body--items {
      width: 140px;
      height: 60px;
      background-color: var(--gray-light);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 0.5rem; }

.colaboration {
  margin-bottom: 10rem !important; }
  .colaboration-header {
    text-align: center;
    margin-bottom: 3rem; }
  .colaboration-body {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 360px) {
      .colaboration-body {
        flex-direction: column; }
        .colaboration-body-item {
          margin-bottom: 2rem; } }
    .colaboration-body-item {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
      .colaboration-body-item--img {
        width: 50%;
        max-width: 200px;
        height: auto; }

.copyright {
  margin-bottom: 10rem; }
  .copyright .powered {
    display: flex;
    justify-content: center; }
    .copyright .powered-item:not(:last-child) {
      border-right: 2px solid white; }
      .copyright .powered-item:not(:last-child) img {
        width: 60px;
        height: 60px; }
    .copyright .powered-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 20px;
      color: white; }

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem; }
  .social-media--item:not(:last-child) {
    margin-right: 1rem; }
  .social-media--item {
    cursor: pointer; }

.reward {
  display: flex;
  padding: 10rem 20px; }
  .reward-header, .reward-body {
    flex: 0 1 50%; }
  .reward-header {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    padding: 20px; }
    .reward-header--img {
      max-width: 210px; }
      .reward-header--img img {
        transform: rotateX(180deg);
        width: 100%;
        height: auto;
        margin-bottom: 2rem; }
  .reward-body {
    align-self: center; }
    .reward-body-list {
      list-style-type: none; }
      .reward-body-list-item {
        line-height: 28px; }
      .reward-body-list-content {
        display: flex;
        padding: 1.5rem 5px;
        line-height: 28px; }
      .reward-body-list-type {
        width: 42px;
        height: 42px;
        position: relative;
        margin-right: 20px; }
        .reward-body-list-type p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
  @media (max-width: 660px) {
    .reward {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: auto;
      max-height: auto; }
      .reward-header {
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
        margin-right: 0; }
        .reward-header--img {
          max-width: auto;
          width: 100%; }
      .reward-header, .reward-body {
        padding: 20px;
        width: 100%; } }

.video {
  padding: 16rem 0;
  background: url("https://cdn.inspigo.id/public/bearbrand/042021/background/background-video.png") no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  .video .video-container {
    overflow: hidden;
    position: relative;
    width: 100%; }
    .video .video-container::after {
      padding-top: 56.25%;
      display: block;
      content: ''; }
    .video .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.webinar {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: skewY(-4deg);
  -moz-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  -o-transform: skewY(-4deg);
  transform: skewY(-4deg);
  background-color: var(--blue-bearbrand-dark);
  padding: 16rem 2rem;
  color: white; }
  .webinar-container {
    max-width: 70rem;
    -webkit-transform: skewY(4deg);
    -moz-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    -o-transform: skewY(4deg);
    transform: skewY(4deg);
    display: flex; }
  .webinar-header {
    flex: 0 1 30%; }
  .webinar-body {
    flex: 0 1 70%; }
  .webinar-header-img {
    width: 100%;
    max-width: 271px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .webinar-header-img img {
      width: 100%;
      height: auto; }
  .webinar-body {
    display: flex;
    flex-direction: column; }
  @media (max-width: 760px) {
    .webinar-container {
      flex-direction: column; }
    .webinar-header {
      margin-bottom: 2em;
      display: flex;
      justify-content: center;
      align-items: center; } }

.term-navigation {
  display: flex;
  padding: 2rem 1rem; }
  @media (max-width: 380px) {
    .term-navigation {
      flex-direction: column; } }
  .term-navigation .powered {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media (max-width: 380px) {
      .term-navigation .powered {
        margin-top: 10px;
        justify-content: center; } }
    .term-navigation .powered-item:not(:last-child) {
      border-right: 2px solid var(--gray-light); }
      .term-navigation .powered-item:not(:last-child) img {
        width: 60px;
        height: 60px; }
    .term-navigation .powered-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 20px; }

.content-podcast {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .content-podcast.primary {
    background: var(--blue-bearbrand-dark) url("https://cdn.inspigo.id/public/bearbrand/042021/background/background-email.png") no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  .content-podcast-header {
    display: flex;
    flex-direction: column;
    max-width: 70rem;
    align-items: center; }
    .content-podcast-header > div {
      margin-bottom: 2rem; }
    .content-podcast-header-img {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      .content-podcast-header-img img {
        width: 80%;
        height: auto; }
  .content-podcast-item {
    padding: 5rem 1rem;
    max-width: 70rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .content-podcast-item-img img {
      width: 80%;
      height: auto; }
    .content-podcast-item-img, .content-podcast-item-desc {
      flex: 0 1 50%; }
    .content-podcast-item-desc h2 {
      margin-bottom: 10px; }
    .content-podcast-item-desc.primary {
      color: white; }
      .content-podcast-item-desc.primary h2 {
        color: currentColor; }
      .content-podcast-item-desc.primary p {
        color: currentColor; }
      .content-podcast-item-desc.primary a {
        background-color: white;
        color: var(--blue-bearbrand-dark); }
    .content-podcast-item-desc a {
      padding: 1rem .5rem;
      background-color: var(--blue-bearbrand-dark);
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      width: 126px;
      height: 49px;
      border-radius: 8px;
      margin-top: 3rem;
      color: white; }

@media (max-width: 1666px) {
  html {
    font-size: 20px; } }

@media (max-width: 1600px) {
  html {
    font-size: 18px; } }

@media (max-width: 1566px) {
  html {
    font-size: 18px; } }

@media (max-width: 1466px) {
  html {
    font-size: 16px; } }

@media (max-width: 1366px) {
  html {
    font-size: 14px; } }

@media (max-width: 1200px) {
  html {
    font-size: 13px; } }

@media (max-width: 1024px) {
  html {
    font-size: 11px; } }

@media (max-width: 900px) {
  html {
    font-size: 10px; } }

@media (max-width: 800px) {
  html {
    font-size: 9px; } }

@media (max-width: 760px) {
  html {
    font-size: 16px; }
  h1 {
    font-size: 3em; }
  h2 {
    font-size: 30px; } }

@media (max-width: 660px) {
  html {
    font-size: 15px; }
  h1 {
    font-size: 2.7em; }
  h2 {
    font-size: 25px; } }

@media (max-width: 560px) {
  html {
    font-size: 14px; }
  h1 {
    font-size: 2.5em; }
  h2 {
    font-size: 24px; } }

@media (max-width: 460px) {
  html {
    font-size: 12px; }
  h1 {
    font-size: 2.3em; }
  h2 {
    font-size: 20px; } }

@media (max-width: 380px) {
  html {
    font-size: 11px; }
  h1 {
    font-size: 2em; }
  h2 {
    font-size: 18px; } }

@media (max-width: 280px) {
  html {
    font-size: 8px; }
  h1 {
    font-size: 2em; }
  h2 {
    font-size: 18px; } }

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

body {
  background-color: var(--bgc-default);
  color: var(--text-primary);
  -webkit-font-smoothing: subpixel-antialiased; }

header {
  position: relative; }
  header .bg-header {
    width: 100%;
    position: absolute;
    top: -50%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1; }
    header .bg-header img {
      width: 100%;
      height: auto;
      max-width: 760px; }

main {
  position: relative;
  width: 100%;
  height: auto; }
  main .container {
    margin: 0 auto;
    max-width: 70rem; }
  main .form-group {
    position: relative;
    width: 30rem;
    display: flex;
    justify-content: space-between;
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: .2rem;
    height: 3.6rem; }
    main .form-group input {
      flex: 0 1 55%;
      background-color: transparent;
      outline: none;
      border: none;
      margin: 0 1rem; }
    main .form-group button {
      flex: 0 1 45%;
      border-radius: 8px; }
    main .form-group .error-state {
      position: absolute;
      top: 4rem;
      left: -.1rem;
      opacity: 0;
      visibility: hidden;
      transition: all .2s; }
      main .form-group .error-state.show {
        visibility: visible;
        opacity: 1; }
      main .form-group .error-state .conversation {
        position: relative; }
        main .form-group .error-state .conversation__box {
          width: 100%; }
        main .form-group .error-state .conversation__warning {
          position: absolute;
          width: 1.5rem;
          height: 1.5rem;
          top: 1.3rem;
          left: 1.5rem; }
        main .form-group .error-state .conversation__text {
          position: absolute;
          width: auto;
          top: 1.2rem;
          left: 4rem; }
    main .form-group .error-state.at-top {
      top: -4rem; }
      main .form-group .error-state.at-top .conversation__warning {
        top: .8rem; }
      main .form-group .error-state.at-top .conversation__text {
        top: .6rem; }
  main .wave {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    position: relative; }
    main .wave-top {
      width: 50%;
      max-width: 375px;
      height: auto;
      z-index: -1; }
    main .wave-bottom {
      position: absolute;
      bottom: 0;
      width: 100%; }

.hidden-iframe {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0; }

footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1; }
  footer::after {
    width: 100%;
    content: " ";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--blue-bearbrand-dark);
    z-index: 2; }
  footer .footer-body {
    padding: 2rem;
    width: 100%;
    text-align: center; }
  footer .footer-body, footer .social-media, footer .copyright {
    position: relative;
    z-index: 3; }

.gotoback {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue-bearbrand-light);
  border: 1px solid transparent;
  width: 169px;
  height: 50px;
  padding: 1rem 1rem;
  background: rgba(28, 144, 191, 0.1);
  border-radius: 4px;
  color: var(--blue-bearbrand-dark); }
  .gotoback img {
    width: 15%; }
