
/* Add font files for Cal Sans */
@font-face {
  font-family: 'Cal Sans';
  src: url('fonts/cal-sans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-family-cal-sans: 'Cal Sans', sans-serif;
  --font-family-inter: 'Inter', sans-serif;
  --GS Black Metal: rgba(16, 19, 25, 1);
  --GS White: rgba(255, 255, 255, 1);
  --text-rgb-16-19-25: rgba(16, 19, 25, 0.6);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.image {
  background-color: #F5F5F5;
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  margin-top: 40px;
  border-radius: 10px;
}
img {
  max-width: 100%;
  height: auto;
}
.nav {
  height: 76px;
  width: 100%;
  padding: 20px 30px;
}
.bar {
  background-color: #F5F5F5;
  min-height: 60px;
  width: 100%;
  position: sticky;
  top: 0;
}
.holder {
  margin: 100px auto;
  max-width: 740px;
  padding: 0 30px;
}
.bar .holder {
  margin: 0 auto;
  max-width: 740px;
  padding: 20px 30px;
}
h1 {
  font-family: var(--font-family-cal-sans);
  font-weight: 700;
  font-size: 38px;
  line-height: 42px;
  text-decoration: none;
  text-transform: none;
  color: var(--GS Black Metal);
  margin-bottom: 6px;
}
h2 {
  font-family: var(--font-family-cal-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  text-decoration: none;
  text-transform: none;
  color: var(--GS Black Metal);
  margin-top: 40px;
}
h3 {
  font-family: var(--font-family-cal-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  text-transform: none;
  color: var(--GS Black Metal);
  float: left;
}
p, ul, li, .time {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  text-transform: none;
  color: var(--text-rgb-16-19-25);
}
p, ul {
  margin-top: 20px;
}
ul {
  margin-left: 20px;
}
.container li, .container p {
  line-height: 26px;
}
span {
  font-weight: 900;
  color: black;
}
.container {
  background-color: #F5F5F5;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 40px;
  border-radius: 10px;
}
.container h2 {
  margin-top: 0px;
}
.button {
  background-color: rgba(16, 19, 25, 1);
  color: White;
  font-family: var(--font-family-cal-sans);
  width:fit-content;
  height: 36px;
  padding: 0 16px;
  line-height: 36px;
  border-radius: 18px;
  margin-top: 20px;
  transition: background-color .5s;
}
.bar .holder .button {
  float: right;
  margin-top: -8px;
}

.button:hover {
  background-color: #394352;
  cursor: pointer;
}
.extra {
  margin-top: 40px;
  height: 100px;
}
.art {
  margin-top: 20px;
  width: 46%;
  float: left;
}
.art h3 {
  margin-top: 0px;
  float: none;
}
.art.time {
  clear: left;
}
.one {
  border-right: 1px solid #E5E5E5;
  margin-right: 8%;
}


@media (max-width: 1279px) {
  
}
@media (max-width: 799px) {
  .extra {
    height: 200px;
  }
  .art {
    width: 100%;
    float: none;
  }
  .one {
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
  }
}
@media (max-width: 399px) {
  .bar {
    height: 110px;
  }
  h3 {
    width: 100%;
  }
  .bar .holder .button {
    float: left;
    clear: left;
    margin-top: 14px;
  }
}