/* ==========================================================================
Blackjack Case Study

This is the style file created for the Blackjack case study.

Author: Mateus Bettio Moreira
========================================================================== */
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.justify {
  text-align: justify;
}
.hidden-sm {
  display: none;
}
.hidden-md {
  display: none;
}
.position-relative {
  position: relative;
}
.container-fluid {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
}
.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 33.75em) {
  .container {
    width: 80%;
  }
}
@media only screen and (min-width: 70rem) {
  .container {
    width: 75%;
    max-width: 60rem;
  }
}
.row {
  position: relative;
  width: 100%;
}
.row [class^="col"] {
  float: left;
  margin: 0.5rem 2% 2rem;
  min-height: 0.125rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}
.col-1-sm {
  width: 4.33333333%;
}
.col-2-sm {
  width: 12.66666667%;
}
.col-3-sm {
  width: 21%;
}
.col-4-sm {
  width: 29.33333333%;
}
.col-5-sm {
  width: 37.66666667%;
}
.col-6-sm {
  width: 46%;
}
.col-7-sm {
  width: 54.33333333%;
}
.col-8-sm {
  width: 62.66666667%;
}
.col-9-sm {
  width: 71%;
}
.col-10-sm {
  width: 79.33333333%;
}
.col-11-sm {
  width: 87.66666667%;
}
.col-12-sm {
  width: 96%;
}
@media only screen and (min-width: 45rem) {
  .hidden-sm {
    display: block;
  }
}
@media only screen and (min-width: 1400px) {
  .hidden-md {
    display: block;
  }
}
@media only screen and (min-width: 70rem) {
  .col-1 {
    width: 4.33333333%;
  }
  .col-2 {
    width: 12.66666667%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.33333333%;
  }
  .col-5 {
    width: 37.66666667%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.33333333%;
  }
  .col-8 {
    width: 62.66666667%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.33333333%;
  }
  .col-11 {
    width: 87.66666667%;
  }
  .col-12 {
    width: 96%;
  }
}
.btn {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 7px;
  transition: 0.15s ease all;
  outline: 2px solid transparent;
  cursor: pointer;
  min-height: 44px;
  border: none;
  box-sizing: border-box;
  line-height: 120%;
}
.btn.icon {
  background-color: transparent;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.icon.secondary.inverted {
  outline: none;
}
.btn.primary {
  padding: 13px 30px;
  color: #2b78c8;
  border: 2px solid #2b78c8;
  background-color: transparent;
}
.btn.primary:hover,
.btn.primary:focus-visible {
  background-color: #2b78c8;
  color: white;
}
.btn.primary:active {
  background-color: #03254E;
  transition: none;
}
.btn.secondary {
  color: #151515;
}
.btn.secondary:hover {
  outline-color: transparent;
}
.btn.secondary:focus-visible {
  outline-color: #2b78c8;
  transition: none;
}
.btn.secondary:active {
  outline-color: #2b78c8;
  transition: none;
}
.btn.secondary.inverted {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.btn.secondary.inverted:hover,
.btn.secondary.inverted:focus-visible {
  border-color: #2b78c8;
  background-color: #2b78c8;
  color: white;
}
.btn.secondary.inverted:hover {
  outline: none;
}
.btn.secondary.inverted:active {
  background-color: #03254E;
  transition: none;
}
header {
  box-sizing: border-box;
  font-weight: 400;
}
header .logo-dark {
  display: none;
}
header .logo-standard {
  display: block;
}
header.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1px 30px;
}
header .top {
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}
header .menu ul {
  display: flex;
  padding: 0;
  margin: 0;
}
header .menu li {
  list-style: none;
  margin: 0 15px;
}
header .menu li a {
  transition: 0.1s ease top;
  position: relative;
  top: 0;
  padding: 25px 30px;
}
header .menu li a::after {
  content: "";
  color: transparent;
  font-size: 30px;
  line-height: 0;
  transition: 0.2s ease color, 0.1s ease top 0.1s;
  display: block;
  text-align: center;
  bottom: -12px;
  position: relative;
}
header .menu li a:active {
  outline: none;
  color: #2b78c8;
}
header .menu li a:hover {
  top: -5px;
}
header .menu li a:hover::after {
  color: #2b78c8;
  bottom: -5px;
}
header.internal {
  font-family: "Inter", sans-serif;
}
header.internal .top {
  margin: 10px auto;
}
header.internal .logo img {
  max-width: 50px;
}
header.internal .logo a {
  display: flex;
  align-items: center;
}
header.internal .logo a:hover {
  text-decoration: underline;
}
header.internal .logo a > p {
  padding: 10px 20px;
  margin: 0;
  font-size: 1.2rem;
  color: #151515;
}
header.internal li a::after {
  content: "↑";
  bottom: -20px;
}
header.internal li a:hover {
  top: -5px;
}
header.internal li a:hover::after {
  bottom: -15px;
}
header.dark a,
header.dark p {
  color: white !important;
}
header.dark .logo > a,
header.dark .logo p {
  color: white !important;
}
header.dark .logo-dark {
  display: block;
}
header.dark .logo-standard {
  display: none;
}
header.dark.sticky {
  background: rgba(26, 26, 26, 0.95);
}
body {
  font-family: 'Roboto', sans-serif;
  background: white;
  scroll-behavior: smooth;
  border: 0px;
  padding: 0;
  margin: 0;
}
body .container {
  width: 970px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
body .container-fluid {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
body .row {
  margin-right: -15px;
  margin-left: -15px;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-weight: 500;
}
body h4,
body h5,
body h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
body p {
  margin: 0 0 10px;
}
body a {
  text-decoration: none;
}
body .clear {
  clear: both;
}
body .overflow-fix {
  overflow: hidden;
}
body .come-in {
  transform: translateY(50px);
  animation: come-in 0.8s ease forwards;
}
body .come-in:nth-child(even) {
  animation-duration: 0.5s;
}
body hr {
  width: 60px;
  height: 3px;
  float: left;
  border-width: 3px;
  border-color: #e6e6e6;
}
body header {
  display: block;
  width: 100%;
  padding: 15px 0 0;
}
body header .back {
  float: left;
  display: flex;
}
body header .back a {
  background: #212121;
  padding: 10px 20px;
  display: block;
  align-self: center;
  margin: 7px 20px 0 0;
  color: #575757;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s all ease-in-out;
}
body header .back a:hover {
  opacity: 1;
}
body header .right {
  float: right;
}
body header .right .info {
  float: left;
  margin-left: 50px;
}
body header .right h3 {
  font-weight: bold;
  font-size: 11px;
  color: #575757;
  text-transform: uppercase;
  margin: 12px 0 4px;
}
body header .right strong {
  font-weight: 500;
  color: white;
  font-size: 16px;
}
@keyframes come-in {
  from {
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes appearTop {
  0% {
    margin-top: -25px;
    opacity: 0;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}
@keyframes appearPhone {
  0% {
    top: 90px;
    opacity: 0;
  }
  100% {
    top: 115px;
    opacity: 1;
  }
}
@keyframes appearPhoneTwo {
  0% {
    opacity: 1;
    transform: rotateY(-40deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes ballAppear {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
body .black-bg {
  background: linear-gradient(45deg, #1a1a1a, #0f0f0f 80%);
  overflow: hidden;
}
body section {
  margin: 70px 0;
  clear: both;
  width: 100%;
  position: relative;
  min-height: 600px;
  display: block;
  overflow: hidden;
}
body section.intro {
  z-index: 0;
  padding-bottom: 100px;
}
body section.intro h1 {
  font-size: 126px;
  color: #353535;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: "Lexend Exa", sans-serif;
  margin: 0px -16px;
  background: linear-gradient(45deg, #353535, #202020 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: appearTop 0.4s ease-out forwards;
}
body section.intro .title img {
  max-width: 270px;
}
body section.intro img.blackjack {
  margin: 0 auto 0 80px;
  display: block;
  filter: drop-shadow(40px, 0, black);
  position: absolute;
  z-index: 3;
  animation: appearPhone 0.4s ease-out forwards;
  animation-delay: 0.3s;
  top: 90px;
  opacity: 0;
}
body section.intro .block {
  max-width: 450px;
  margin-top: 400px;
}
body section.intro .block h3 {
  color: #2e2e2e;
  font-size: 80px;
  font-family: "Lexend Deca", Impact, sans-serif;
  letter-spacing: -5px;
  margin-left: -6px;
  margin-bottom: 0px;
}
body section.intro .block p {
  margin-top: 20px;
  font-size: 19px;
  color: #838383;
  font-weight: 300;
}
body section.challenge {
  background-color: #eaf1fb;
  padding: 175px 0 100px;
  background: #eeeeee url(/images/card.a8a024b4.png) no-repeat bottom;
  background-position: 10% bottom;
  clear: none;
  min-height: 600px;
  margin: 0;
}
body section.challenge .container {
  margin-right: 15%;
}
body section.challenge h2 {
  font-size: 32px;
  color: #151515;
  font-family: "Lexend Deca", Impact, sans-serif;
  letter-spacing: -4px;
  margin-bottom: 60px;
}
body section.challenge h2 strong {
  font-size: 80px;
  display: block;
}
body section.challenge .container > .module {
  width: 90%;
  float: right;
  box-sizing: border-box;
}
body section.challenge .challenge-box {
  width: 30%;
  float: left;
  margin-right: 2.5%;
}
body section.challenge .challenge-box .wrp {
  position: relative;
  overflow: hidden;
}
body section.challenge .challenge-box .wrp:before {
  content: "01";
  position: absolute;
  top: -115px;
  left: 15px;
  font-size: 100px;
  color: #eaf1fb;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 190px;
  opacity: 0.5;
  z-index: 1;
}
body section.challenge .challenge-box.two .wrp:before {
  content: "02";
}
body section.challenge .challenge-box.three .wrp:before {
  content: "03";
}
body section.challenge .challenge-box .info {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  padding-top: 95px;
  box-shadow: 0 10px 30px rgba(0, 16, 136, 0.05);
}
body section.challenge .challenge-box p {
  font-size: 15px;
  color: #969696;
}
body section.challenge .challenge-box .solution {
  margin-top: 25px;
  padding-top: 20px;
}
body section.challenge .challenge-box .solution h4 {
  color: #1ee3a9;
  font-size: 23px;
  letter-spacing: -1px;
  background: url(/967b6204c8f3b222a195.svg) no-repeat center left;
  padding-left: 25px;
}
body section.challenge h3 {
  color: #494c54;
  font-size: 23px;
}
body section.challenge h3 span {
  color: #df1f1f;
}
body section.challenge p {
  font-size: 16px;
  color: #575757;
}
body section.design-process {
  padding-top: 70px;
  background: url(/images/path.2132d006.png) no-repeat center;
  background-position-y: 1110px;
}
body section.design-process h2 {
  font-size: 32px;
  font-family: "Lexend Deca", Impact, sans-serif;
  letter-spacing: -3px;
  margin-bottom: 60px;
  text-align: center;
  color: #575757;
}
body section.design-process h2 strong {
  font-size: 80px;
  display: block;
  color: #151515;
}
body section.design-process img.blackjack {
  margin: 0 auto 130px;
  max-width: 100%;
  height: auto;
  display: block;
}
body section.design-process img.blackjack.come-in {
  animation: appearPhoneTwo 2s ease-out forwards;
}
body section.design-process .steps .box {
  min-height: 335px;
}
body section.design-process .steps .box.left {
  text-align: left;
  float: left;
}
body section.design-process .steps .box.left > div {
  max-width: 320px;
}
body section.design-process .steps .box.right {
  text-align: right;
  float: right;
}
body section.design-process .steps .box.right > div {
  max-width: 320px;
  margin: auto;
}
body section.design-process .steps .box.clear {
  clear: both;
}
body section.design-process .steps .box.wireframes {
  width: 40%;
  background: url(data:image/png;base64,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) no-repeat center;
}
body section.design-process .steps .box.wireframes .button {
  color: white;
  background-color: #1ee3a9;
  padding: 17px 25px;
  text-align: center;
  margin: 190px auto 0;
  display: table;
  border-radius: 10px;
  text-decoration: none;
}
body section.design-process .steps .box.wireframes .button:hover {
  text-decoration: none;
  background-color: #2df4b9;
}
body section.design-process .steps .personas {
  float: left;
  clear: left;
}
body section.design-process .steps .personas div {
  max-width: 170px;
  height: 280px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 16, 136, 0.05);
  padding: 18px;
  box-sizing: border-box;
  text-align: center;
  float: left;
  margin: 25px 20px 25px 0;
  border-radius: 10px;
}
body section.design-process .steps .personas div:last-child {
  margin-right: 0;
}
body section.design-process .steps .personas img {
  border-radius: 50%;
  background: #dadbdb;
  margin: 0 auto 10px;
  width: 90px;
  height: 90px;
  display: block;
  border: none;
}
body section.design-process .steps .personas h4 {
  color: #333333;
  font-size: 17px;
  margin-bottom: 1px;
}
body section.design-process .steps .personas span {
  color: #9fa3a8;
  font-size: 13px;
  padding-bottom: 10px;
  display: block;
  border-bottom: 1px solid #d8d8d8;
}
body section.design-process .steps .personas p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 125%;
}
body section.design-process .steps h3 {
  font-size: 50px;
  color: #151515;
  font-family: "Lexend Deca", Impact, sans-serif;
  letter-spacing: -3px;
  margin-bottom: 15px;
  margin-top: 50px;
}
body section.design-process .steps p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #9fa3a8;
}
body section .color-blocks {
  margin-top: 60px;
  min-width: 500px;
}
body section .color-blocks .row {
  margin-bottom: 70px;
}
body section .color-blocks .row > div {
  width: 130px;
  height: 130px;
  display: table;
  border-radius: 50%;
  position: relative;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  float: left;
  margin-right: 25px;
}
body section .color-blocks .row > div:hover {
  transform: scale(1.08);
}
body section .color-blocks .row > div:active {
  opacity: 0.85;
}
body section .color-blocks .row > div.come-in {
  animation: ballAppear 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  transform: translateY(0);
}
body section .color-blocks .row > div.come-in:nth-child(1) {
  animation-delay: 0.1s;
}
body section .color-blocks .row > div.come-in:nth-child(2) {
  animation-delay: 0.15s;
}
body section .color-blocks .row > div.come-in:nth-child(3) {
  animation-delay: 0.2s;
}
body section.outcomes {
  background-color: #151515;
  min-height: auto;
  padding: 70px 0;
  margin-bottom: 0;
}
body section.outcomes .container div {
  width: 30%;
  margin-right: 3%;
  float: left;
}
body section.outcomes .container div h3 {
  font-family: "Lexend Deca", Impact, sans-serif;
  color: white;
  font-size: 25px;
  color: #1ee3a9;
  background: url(/967b6204c8f3b222a195.svg) no-repeat center left;
  padding-left: 25px;
}
body section.outcomes .container div p {
  color: white;
}
body section.improvements {
  background-color: #f7f7f7;
  min-height: auto;
  padding: 60px 0;
  margin: 0px;
}
body section.thanks {
  width: 100%;
  clear: both;
  overflow: hidden;
  min-height: auto;
}
body section.thanks h3 {
  text-align: center;
  font-family: "Lexend Exa", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  color: #151515;
  margin: 100px auto;
}
body section.thanks a {
  display: block;
  text-align: center;
  font-size: 15px;
  color: #1ee3a9;
  font-weight: 600;
  text-transform: uppercase;
}
body .bj-button {
  margin-top: 25px;
  clear: both;
  display: block;
  width: 100%;
  overflow: hidden;
}
body .bj-button .button {
  color: white;
  background-color: #1ee3a9;
  padding: 17px 25px;
  text-align: center;
  margin: 20px auto 0;
  display: table;
  border-radius: 10px;
  text-decoration: none;
}
body .bj-button .button:hover {
  text-decoration: none;
  background-color: #2df4b9;
}
@media (prefers-reduced-motion: reduce) {
  body *,
  body *::before,
  body *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  body .container {
    width: 100%;
  }
  body header .right {
    display: flex;
    width: 100%;
    clear: both;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
  }
  body header .right .info {
    margin: 0;
  }
  body section.intro {
    padding-bottom: 20px;
  }
  body section.intro h1 {
    margin: auto;
    word-break: break-all;
    font-size: 74px;
  }
  body section.intro img.blackjack {
    margin: 80px auto 0 -100px;
    max-width: 800px;
  }
  body section.intro .block {
    margin-top: 400px;
  }
  body section.intro .block h3 {
    font-size: 65px;
  }
  body section.intro .block p {
    font-size: 18px;
    margin-top: 15px;
    line-height: 170%;
  }
  body section.challenge {
    padding: 50px 0;
    background-position: center bottom;
    background-size: contain;
  }
  body section.challenge h2 strong {
    font-size: 65px;
  }
  body section.challenge .container > .module {
    width: 100%;
  }
  body section.challenge .challenge-box {
    width: 100%;
    margin: 0 auto 50px;
  }
  body section.design-process {
    padding-top: 0px;
  }
  body section.design-process h2 strong {
    font-size: 60px;
  }
  body section.design-process img.blackjack {
    margin: 0 auto 40px;
  }
  body section.design-process .steps .box {
    min-height: auto;
    width: 100%;
  }
  body section.design-process .steps .box.wireframes {
    background-size: contain;
    background-position: 0 0px;
  }
  body section.design-process .steps .box.colors {
    overflow: auto;
    margin: 0;
  }
  body section.design-process .steps .box.right {
    float: none;
    text-align: left;
    width: 100%;
    overflow: hidden;
  }
  body section.design-process .steps .box.clear h3 {
    margin: 0;
  }
  body section.design-process .steps h3 {
    font-size: 43px;
  }
  body section.design-process .steps p {
    line-height: 160%;
  }
  body section.design-process .steps .personas {
    float: none;
    clear: both;
  }
  body section.design-process .steps .personas div {
    max-width: none;
    float: none;
    width: 100%;
    height: auto;
  }
  body section .color-blocks {
    min-width: 510px;
    margin: 0 15px;
  }
  body section.outcomes .container div {
    width: 100%;
  }
}

