@charset "UTF-8";
/* CSS Document */

/* =========================================
   BASIC RESET
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY RESET
   ========================================= */

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

/* =========================================
   LISTS
   ========================================= */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================
   LINKS
   ========================================= */

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* =========================================
   IMAGES / MEDIA
   ========================================= */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================
   FORMS
   ========================================= */

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  border-radius: 0;
  outline: none;
}

/* =========================================
   TABLES
   ========================================= */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================
   REMOVE DEFAULT MARGINS ON FIRST/LAST
   ========================================= */

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

/* =========================================
   UTILITIES
   ========================================= */

img {
  vertical-align: middle;
}

::selection {
  background-color: rgba(242, 107, 94, 0.25);
  color: #000;
}

/* =========================================
   GLOBAL LAYOUT
   ========================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* =========================================
   SCROLLBAR
   ========================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  background: rgba(31, 108, 139, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 108, 139, 0.7);
}

/* =========================================
   RESPONSIVE LAYOUT
   ========================================= */

@media screen and (max-width: 1200px) {
  .container {
    padding-left: var(--page-gutter-tablet);
    padding-right: var(--page-gutter-tablet);
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
}