/* Reset */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Common class */
html{
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  scroll-behavior: smooth;
}

body{
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  margin: 16px 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p{
  margin-top: 16px;
  margin-bottom: 16px;
}

ul {
  list-style: none !important;
}

.weight-light{
  font-weight: lighter;
}

.weight-bold{
  font-weight: bold;
}

.block{
  display: block;
}

.upper{
  text-transform: uppercase;
}

.capitalize{
  text-transform: capitalize;
}

.text-white{
  color: #fff !important;
}

.text-black{
  color: #000 !important;
}

.text-blue{
  color: #004bc7 !important;
}

.bg-green{
  background-color: #b6d8c1;
}

.text-center{
  text-align: center !important;
}

.p-8{
  padding: 8px !important;
}

.pt-64{
  padding-top: 64px !important;
}

.pb-8{
  padding-bottom: 8px !important;
}

.p-64-16{
  padding: 64px 16px !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.float-left {
  float: left !important;
}

.float-right{
  float: right !important;
}

.btn {
  color: #fff;
  background-color: #000;
  text-decoration: none;
  padding: 10px 16px;
  border: none;
  display: inline-block;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
}

.btn:hover {
  color: #000;
  background-color: #ccc;
  cursor: pointer;
}



.row::after{
  content: "";
  display: block;
  clear: both;
}

.col{
  padding-left: 8px;
  padding-right: 8px;
}

.col-1{
  width: 100%;
}

.col-2{
  width: 50%;
}

.col-3{
  width: calc(100%/3);
}