/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
  --color-green-100: #A9DD19;
  --color-green-200: #A7C72B;
  --color-orange: #E95811;
  --color-blue: #2EADDA;
  --color-purple: #A092C5;
}

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
}

* {
  box-sizing: border-box;
}

.px-15,
.footer {
  padding-left: 15px;
  padding-right: 15px;
}

.text-center {
  text-align: center;
}

.verde {
  color: var(--color-green-100);
}

.b {
  font-weight: 700;
}

h1 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 8px;
}

h2 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 23px;
  line-height: 1.1;
}

h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 13px;
  margin-bottom: 21px;
}

h4 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 13px;
  margin-bottom: 21px;
}

ul {
  padding-left: 20px;
}

ul li {
  list-style-type:none;
  position: relative;
}

ul li:before {
  position: absolute;  
  content: "";
  width: 3px;
  height: 3px;
  border: 4px solid;
  border-radius: 50%;
  top: 0;
  left: -20px;
  color: #565656;
  top: 50%;
  transform: translateY(-50%);
}

.banner-hero-container { 
  margin-bottom: 38px;
  max-height: 322px;
}

.banner-hero-img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  object-position: bottom center;
}

.mw-280 {
 max-width: 290px;
 margin-left: auto;
 margin-right: auto;
}

.mb-50 {
  margin-bottom: 50px;
}

.arrow-down {
 display: flex;
 justify-content: center;
 margin-bottom: 25px;
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  gap: 12px;
  padding-left: 15px;
  padding-right: 15px;
}

.card {
  min-width: 222px;
  box-shadow: 0px 4px 19px -1px rgba(0, 0, 0, 0.14);
  border-radius: 9px;
  padding: 15px 13px;
  margin-top: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.card li {
  font-size: 16px;
  line-height: 21px;
}

.card li {
  margin-bottom: 8px;
  position: relative;
}

.card li:after {
  background: #393A3A10;
  content: "";
  width: 300px;
  height: 1px;
  display: block;
  position: absolute;
  left: -20%;
  top: calc(100% + 2px);
}

.card .note {
  font-size: 12px;
  line-height: 21px;
}

.card.green li:before {
  color: var(--color-green-200);
}

.card.orange li:before {
  color: var(--color-orange);
}

.card.blue li:before {
  color: var(--color-blue);
}

.card.purple li:before {
  color: var(--color-purple);
}

.numbered-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  gap: 12px;
  padding-block: 16px;
  padding-left: 15px;
  padding-right: 15px;
}

.numbered-card {
  min-width: 180px;
  max-width: 200px;
  min-height: 163px;
  box-shadow: 0px 4px 19px -1px rgba(0, 0, 0, 0.14);
  border-radius: 9px;
  display: flex;
  padding: 16px 8px;
}

.numbered-card-index {
  font-size: 46px;
  font-weight: 500;
  color: var(--color-green-200);
}

.numbered-card-text {
  padding-top: 8px;
  padding-left: 4px;
  line-height: 1.1;
}

.rules-container {
  padding-left: 15px;
}

.rules {
  padding: 0 15px 30px 20px;
}

.rule-item {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.2;
}

.rule-item:before {
  color: var(--color-orange);
}

.footer {
  font-size: 14px;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding-block: 18px;
}

.footer .copy {
  margin-bottom: 16px;
}

.footer .logo {
  vertical-align: middle;
  max-width: 40px;
}

@media (min-width: 375px) {
  .banner-hero-img {
    height: 233px;
  }
}

@media (min-width: 495px) {
  .banner-hero-img {
    height: 323px;
  }
}

@media (min-width: 768px) {
  .site-width {
    max-width: 1180px;
    margin: 0 auto;
  }

  .header {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: 141px 1fr;
    column-gap: 16px;
    min-height: 413px;
    background-image: url(assets/hero-bg.webp);
    background-size: cover;
    background-position: bottom center;
  }

  .hero-texts {
    grid-column-start: 8;
    grid-column-end:17;
    grid-row-start: 2;
  }

  .md-none {
    display: none;
  }
 
  h1 {
    font-size: 36px;
    line-height: 42.66px
  }
  
  .sub {
    font-size: 18px;
    line-height: 21px;
  }
  
  h3 {
    font-size: 32px;
    line-height: 38px;
  }

  h4 {
    font-size: 22px;
    line-height: 26px;
  }

  .mw-md-490 {
    max-width: 490px;
    margin: initial;
    margin-bottom: 27px;
  }
  
  .mw-md-445 {
    max-width: 445px;
    margin: initial;
  }
  
  .text-md-left {
    text-align: left;
  }
  
  .px-md-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mb-md-60 {
    margin-bottom: 60px;
  }

  .cards {
    overflow-x: initial;
    flex-wrap: wrap;
    gap: 14.81px;
  }

  .card {
    width: 273.8px;
  }

  .card li {
    margin-bottom: 16px;
  }
  
  .card li:after {
    top: 28px;
  }

  .card h4 {
    margin-top: 0;
    font-size: 18px;
  }

  .numbered-cards {
    overflow-x: initial;
    flex-wrap: wrap;
    gap: 17.3px;
  }

  .numbered-card {
    min-width: 214.76px;
    height: 180.13px;
  }

  .numbered-card-text {
    line-height: 19px;
  }

  .footer-texts {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  .footer .copy {
    margin-bottom: 0;
  }
}

