*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-style: normal;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}
body {
	line-height: 1;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
img {
	display: block;
	border: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
a[href] {
	cursor: pointer;
}
i, em {
	font-style: italic;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
sup {
    font-size: 60%;
    line-height: 0;
    vertical-align: super;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
::-webkit-contacts-auto-fill-button {
	visibility: hidden;
	display: none !important;
	position: absolute;
	right: 0;
}

html, body {
  overflow-x: hidden;
  min-height: 100vh;

	font-family: Verdana, Geneva, Tahoma, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;

	-webkit-overflow-scrolling: touch;
  background-color: #7f1dff;
}

@font-face {
  font-family: 'yahoo-sans-cond';
  src: url('../fonts/Yahoo-Sans-Cond-Black.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'yahoo-sans-regular';
  src: url('../fonts/Yahoo-Sans-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

.content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.media {
  grid-area: 1 / 1 / 2 / 4;
  position: relative;
}

.left {
  grid-area: 2 / 1 / 3 / 2;
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 50vh;
}

.copy {
  grid-area: 2 / 2 / 3 / 3;
}

.right {
  grid-area: 2 / 3 / 3 / 4;
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 50vh;
}

.basketball-left-top {
  max-width: 91px;
  width: 68%;
  height: auto;
  margin-bottom: 162px;
  transform: translateX(-100%) scale(0);
  transition: all 0.5s ease-in-out;
}

.basketball-left-bottom {
  max-width: 112px;
  width: 86%;
  height: auto;
  transform: translateX(-100%) scale(0);
  transition: all 0.5s ease-in-out;
}

.slide-in-from-left-animation {
  transform: translateX(0) scale(1);
}

.basketball-right-top {
  max-width: 84px;
  width: 68%;
  height: auto;
  margin-left: auto;
  margin-bottom: 162px;
  transform: translateX(100%) scale(0);
  transition: all 0.5s ease-in-out;
}

.basketball-right-bottom {
  max-width: 110px;
  width: 82%;
  height: auto;
  margin-left: auto;
  transform: translateX(100%) scale(0);
  transition: all 0.5s ease-in-out;
}

.slide-in-from-right-animation {
  transform: translateX(0) scale(1);
}

.media-background {
  width: 90%;
  height: 166%;
  position: absolute;
  top: -30%;
  left: 0%;
  right: 0%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  clip-path: circle(60%);
  opacity: 0;
}

.media-background-animation {
  opacity: 1;
  transition: all 2.5s ease-in-out;
}

.board-1, .board-2, .board-3, .board-4 {
  width: 50%;
  height: 50%;
  overflow: hidden;
  position: relative;
}

.board-1-img-1, .board-1-img-2, .board-2-img-1, .board-2-img-2, .board-3-img-1, .board-3-img-2, .board-4-img-1, .board-4-img-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.board-1-img-1 {
  background-image: url('../img/board-1-a.png');
  background-position: bottom center;
  animation: 8s kaleidoscope 5s infinite linear reverse;
}

.board-1-img-2 {
  background-image: url('../img/board-1-b.png');
  background-position: bottom center;
  animation: 16s kaleidoscope 5s infinite linear;
}

.board-2-img-1 {
  background-image: url('../img/board-2-a.png');
  background-position: bottom center;
  animation: 8s kaleidoscope 5s infinite linear;
}

.board-2-img-2 {
  background-image: url('../img/board-2-b.png');
  background-position: bottom center;
  animation: 16s kaleidoscope 5s infinite linear reverse;
}

.board-3-img-1 {
  background-image: url('../img/board-3-a.png');
  animation: 8s kaleidoscope 5s infinite linear;
}

.board-3-img-2 {
  background-image: url('../img/board-3-b.png');
  animation: 16s kaleidoscope 5s infinite linear reverse;
}

.board-4-img-1 {
  background-image: url('../img/board-4-a.png');
  animation: 8s kaleidoscope 5s infinite linear reverse;
}

.board-4-img-2 {
  background-image: url('../img/board-4-b.png');
  animation: 16s kaleidoscope 5s infinite linear;
}

@keyframes kaleidoscope {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

.media-top {
  display: none;
}

.media-content {
  position: relative;
}

.bracket {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 11px;
  position: relative;
}

.bracket-1 {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.bracket-2 {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.bracket-animation {
  opacity: 1;
  transform: scaleX(1);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bracket-1 img {
  max-width: 309px;
  width: 100%;
  height: auto;
  transform: scale(1.26) translate(11%, 57%);
}

.bracket-2 img {
  max-width: 327px;
  width: 100%;
  height: auto;
  transform: scale(1.26) translate(-9%, 54%);
}

.bracket-logo {
  position: relative;
  z-index: 1;
}

.basketball-center {
  width: 107%;
  height: auto;
  opacity: 0;
  transform: rotate(360deg) scale(0);
}

.basketball-center-animation {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-yahoo {
  position: absolute;
  width: 71%;
  height: auto;
  top: 20%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
}

.logo-yahoo-animation {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bracket-madness {
  position: absolute;
  width: 118%;
  height: auto;
  top: 33%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
}

.bracket-madness-animation {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.media-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15%;
  zoom: 0.82;
}

.basketball-bottom-left {
  display: none;
}

.countdown {
  background-color: #fff;
  border: 2px solid #8a45e6;
  border-radius: 10px;
  height: 65px;
  transform: translateY(-4px) rotateX(90deg);
  display: flex;
  padding: 5px;
  transform-origin: top;
  z-index: 3;
}

.countdown-animation {
  transform: translateY(-4px) rotate(0deg);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.days-number, .hours-number, .minutes-number{
  background-color: #8a45e6;
  border: 1px solid #39007d;
  height: 38px;
  width: 47px;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.days-text, .hours-text, .minutes-text {
  font-family: 'yahoo-sans-cond', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 0.8;
  color: #8a45e6;
  text-align: center;
}

.basketball-bottom-right {
  display: none;
}

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

.separator .dot {
  background-color: #8a45e6;
  margin: 0px 5px 5px;
}

.dot, .spacer {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  font-size: 0px;
  color: #fff;
  transform: scale(0.8);
}

.purple {
  background-color: #7624d9;
}

.orange {
  background-color: #ff8a2e;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

.number {
  display: flex;
  flex-wrap: wrap;
  width: 45%;
}

.number div {
  flex: 0 1 25%;
}

.copy {
  position: relative;
  margin-top: 10%;
  padding: 0 20px;
  z-index: 3;
}

h6 {
  font-family: 'yahoo-sans-cond', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 0.8;
  color: #242a31;
  text-align: center;
  margin-bottom: 30px;
  /*transform: translateY(-55%);*/
}

h1 {
  font-family: 'yahoo-sans-cond', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin-bottom: 7px;
}

h2 {
  font-family: 'yahoo-sans-regular', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.split {
  display: flex;
  width: 59%;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: column;
}

h3 {
  font-family: 'yahoo-sans-cond', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 0.8;
  color: #fff;
  text-align: center;
  margin-bottom: 9px;
}

h4 {
  font-family: 'yahoo-sans-cond', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 0.8;
  color: #f09146;
  text-align: center;
  margin-bottom: 15px;
}

button {
  cursor: pointer;
  font-family: 'yahoo-sans-regular', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2b98;
  text-align: center;
  background-color: #f09146;
  display: block;
  margin: 0 auto 12px;
  padding: 12px 32px;
  border-radius: 35px;
}

h5 {
  cursor: pointer;
  font-family: 'yahoo-sans-regular', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: #242a31;
  text-align: center;
  margin-bottom: 25px;
}

p {
  cursor: pointer;
  font-family: 'yahoo-sans-regular', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  max-width: 165px;
  margin: 0 auto;
}

a {
  color: #f09146;
  text-transform: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
}

.fade-in-animation {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 768px) {
  .content {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
    
  .left {
    grid-area: 1 / 1 / 3 / 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-height: none;
  }
  
  .media {
    grid-area: 1 / 2 / 2 / 3;
  }
  
  .copy {
    grid-area: 2 / 2 / 3 / 3;
  }
  
  .right {
    grid-area: 1 / 3 / 3 / 4;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-height: none;
  }

  .media-bottom {
    justify-content: space-between;
    position: relative;
    zoom: 1;
  }

  .basketball-bottom-left {
    display: block;
    max-width: 89px;
    width: 10%;
    height: auto;
    margin-left: 12%;
    transform: translateY(-200%) rotate(360deg) scale(0);
    opacity: 0;
    transform-origin: left;
  }

  .basketball-bottom-right {
    display: block;
    max-width: 89px;
    width: 10%;
    height: auto;
    margin-right: 11.5%;
    transform: translateY(-200%) rotate(-360deg) scale(0);
    opacity: 0;
    transform-origin: right;
  }

  .basketball-bottom-animation {
    opacity: 1;
    transform: translateY(-10%) rotate(0deg) scale(1);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .copy {
    margin-top: 0;
    padding: 0%;
  }

  .split {
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
  }

  p {
    max-width: none;
  }

}

@media (min-width: 992px) {
  .left {
    justify-content: flex-start;
    min-width: 84px;
  }

  .right {
    justify-content: flex-start;
    min-width: 84px;
  }

  .content {
    grid-template-columns: 1fr auto 1fr;
  }

  .media-background {
    width: 63%;
    height: 145%;
    top: -30%;
    max-width: 578px;
    max-height: 545px;
  }

  .media-top {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -20px;
  }
  
  .basketball-top-left {
    max-width: 86px;
    width: 9.5%;
    height: auto;
    margin-left: 12%;
    transform: translateY(-100%) scale(0);
    transition: all 0.5s ease-in-out;
  }
  
  .basketball-top-right {
    max-width: 86px;
    width: 9.5%;
    height: auto;
    margin-right: 11.7%;
    transform: translateY(-100%) scale(0);
    transition: all 0.5s ease-in-out;
  }
  
  .slide-in-from-top-animation {
    transform: translateY(0) scale(1);
  }

  .bracket {
    margin-top: 20px;
  }

  .bracket-1 img {
    max-width: 327px;
    transform: scale(1.1) translate(4%, 8%);
  }

  .bracket-2 img {
    max-width: 327px;
    transform: scale(1.1) translate(-4%, 8%);
  }

  .basketball-center {
    max-width: 282px;
  }

  .logo-yahoo {
    max-width: 178px;
    width: 66%;
  }

  .bracket-madness {
    position: absolute;
    max-width: 305px;
  }

  h6 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.04rem;
    margin-bottom: 30px;
  }

  .split {
    width: 59%;
  }

  .split div {
    width: 50%;
  }

  button {
    padding: 18px 32px;
    margin: 0 auto 15px;
  }

  h5 {
    font-size: 0.6rem;
    margin-bottom: 32px;
  }

}