/* ==========================================================================
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);
  -webkit-backdrop-filter: blur(10px);
  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(/5a9a169c18595b11965e.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(/c78e198d4d6dd7e10787.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 (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%;
  }
}

