* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

}

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;
  margin-right:0.5%;
  margin-left:0%; 
  font-family: sans-serif;
}
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;
}

/* GRID */



.container-fluid {
  width: 100%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;

}

.col-12 {
  width: calc(100% - 20px);
}
.col-11 {
  width: calc(92% - 20px);
}
.col-10 {
  width: calc(84% - 20px);
}
.col-9 {
  width: calc(76% - 20px);
}
.col-8 {
  width: calc(68% - 20px);
}
.col-7 {
  width: calc(60% - 20px);
}
.col-6 {
  width: calc(52% - 20px);
}
.col-5 {
  width: calc(44% - 20px);
}
.col-4 {
  width: calc(36% - 20px);
}
.col-3 {
  width: calc(28% - 20px);
}
.col-2 {
  width: calc(20% - 20px);
}
.col-1 {
  width: calc(12% - 20px);
}

.col-1-of-6 {
  width: calc(100% / 7);
}

.center {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.h-align-top {
  align-items: start;
}
.h-align-btm {
  align-items: end;
}
.h-align-center {
  align-items: center;
}

.v-align-right {
  justify-content: flex-end;
}
.v-align-center {
  justify-content: center;
}
.v-align-left {
  justify-content: flex-start;
}

.hidden {
  display: hidden;
}

.padding-bottom {
  padding-bottom: 1.5rem;
}

.margin-right {
  margin-right: 3rem;
}



/* MEDIA QUERIES */

@media only screen and (max-width: 720px) {
  /* margins */
  .mg-top {
    margin-top: .2rem;
  }
  .mg-bottom {
    margin-bottom: .2rem;
  }
  .mg-left {
    margin-left: .2rem;
  }
  .mg-right {
    margin-right: .2rem;
  }

  /* paddings */
  .pd-top {
    padding-top: .2rem;
  }
  .pd-bottom {
    padding-bottom: .2rem;
  }
  .pd-left {
    padding-left: .2rem;
  }
  .pd-right {
    padding-right: .2rem;
  }

  .none {
    display: none;
  }
}

@media only screen and (min-width: 720px) {

  /* MARGIN CLASSES */

.mg-top {
  margin-top: .5rem;
}
.mg-bottom {
  margin-bottom: .5rem;
}
.mg-left {
  margin-left: .5rem;
}
.mg-right {
  margin-right: .5rem;
}

/* PADDING CLASSES */

.pd-top {
  padding-top: .5rem;
}
.pd-bottom {
  padding-bottom: .5rem;
}
.pd-left {
  padding-left: .5rem;
}
.pd-right {
  padding-right: .5rem;
}

.none {
  display: none;
}
}


@media only screen and (min-width: 1024px) {
  /* margins */
  .mg-top {
    margin-top: 1rem;
  }
  .mg-bottom {
    margin-bottom: 1rem;
  }
  .mg-left {
    margin-left: 1rem;
  }
  .mg-right {
    margin-right: 1rem;
  }

  /* paddings */
  .pd-top {
    padding-top: 1rem;
  }
  .pd-bottom {
    padding-bottom: 1rem;
  }
  .pd-left {
    padding-left: 1rem;
  }
  .pd-right {
    padding-right: 1rem;
  }

  .none {
    display: none;
  }
}

