/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* RESET */
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;
}

/* General Styles */

*,
*::before,
*::after {
  box-sizing: border-box;
}

b,
strong {
  font-weight: 700;
}

html,
body {
  font-family: 'Lato', sans-serif;
  color: #000000;
  width: 100%;
}

body {
  margin: 0;
  font-weight: 400;
  color: #181818;
  text-align: left;
  background-color: #fff;
}

button {
  cursor: pointer;
}

/* Mobile */

html {
  font-size: 16px;
}


section {
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.header-section {
  width: 90%;
  margin: auto;
  line-height: 1.2;
}
.header-section .header {
  font-size: clamp(0.75rem, 1.4rem, 1.45rem);  
  margin: 1rem 0;
}
.header-section .sub-header {
  font-size: clamp(0.75rem, 1.15rem, 1.2rem);
  margin-bottom: 1rem;
}
.header-section .header-list {
  font-size: clamp(0.75rem, 1.15rem, 1.2rem);
  list-style: none;
  line-height: 1.4;
}
@media screen and (min-width: 500px) {
  html {
    font-size: 20px;
  }
}

@media screen and (min-width: 640px) {
  html {
    font-size: 24px;
  }
}

@media screen and (min-width: 700px) {
  html {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  html {
    font-size: 8px;
  }

  .section-margin {
    width: 80%;
    max-width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .header-section .header {
    font-size: clamp(1rem, 2.125rem, 2.4rem);  
    margin: 1rem 0;
  }
  .header-section .sub-header {
    font-size: clamp(1rem, 1.75rem, 1.8rem);
  }
  .header-section .header-list {
    font-size: clamp(1rem, 1.45rem, 1.5rem);
  }
@media screen and (min-width: 1000px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 12px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1800px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 20px;
  }

  .wrapper {
    width: 1920px;
    margin: auto;
  }
}
}