﻿/*
    COLORS
*/
/*
    BREAKPOINTS
*/
body, div, input, textarea, button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  background-color: #ffffff;
  font-size: 18px;
}

h1, h2, h3, h4 {
  color: #000;
  font-weight: 700;
  line-height: 120%;
}
h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type {
  margin-top: 0;
}

h1 {
  margin: 20px 0;
  text-align: left;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: 28px;
  }
}
@media screen and (min-width: 412px) {
  h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  margin: 30px 0;
  text-align: left;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: 25px;
  }
}
@media screen and (min-width: 412px) {
  h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

p {
  margin: 20px 0;
}
p:first-of-type {
  margin-top: 0;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 800;
}

header, section, footer {
  overflow: hidden;
}

@media screen and (min-width: 320px) {
  section {
    padding: 30px 10px;
  }
}
@media screen and (min-width: 768px) {
  section {
    padding: 30px 15px;
  }
}
@media screen and (min-width: 992px) {
  section {
    padding: 50px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 70px 0;
  }
}
@media screen and (min-width: 1850px) {
  section {
    padding: 100px 0;
  }
}

a.btn, button {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #000;
  color: #ffef8d;
  text-decoration: none;
  text-transform: uppercase;
}
a.btn:hover, button:hover {
  cursor: pointer;
  background-color: #ffef8d;
  color: #000;
}

img {
  max-width: 100%;
}

ol.letter {
  list-style: lower-alpha;
}

.text-danger {
  color: #f71735;
  font-size: 16px;
}
