/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  overflow-x: hidden;
  line-height: 1;
  font-family: Helvetica;
}

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;
}

html, body {
  scroll-behavior: smooth;
}

section {
  margin-bottom: 60px;
}

h1 {
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 33px;
}

h2 {
  font-size: 24px;
  color: #1F1F1D;
  line-height: 1.5;
  margin: 20px 0;
}

h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #1F1F1D;
  margin-bottom: 30px;
}

p {
  font-size: 18px;
  color: #1F1F1D;
  line-height: 1.3;
  margin-bottom: 90px;
}

a {
  color: black;
  text-decoration: none;
  font-size: 12px;
}

.link {
  color: black;
  text-decoration: underline;
}

.link:hover {
  color: orangered;
}

.btn {
  background: #303030;
  color: white;
  padding: 15px 90px;
  font-size: 14px;
}

.btn:hover {
  background-color: white;
  color: orangered;
  border: 1px solid black;
}

.btn2 {
  padding: 13px 30px;
  text-transform: uppercase;
  color: white;
  border: 1px solid white;
  font-size: 14px;
}

.btn2:hover {
  background-color: white;
  text-decoration: none;
  color: black;
}

.small-img {
  max-width: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.large-img {
  max-width: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-img {
  height: 27px;
  color: white;
}

.inner-date {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0;
}

.margazine-card {
  border: none;
}

.see-all {
  text-align: center;
}

.header {
  height: 120px;
  background-color: white;
  padding: 0 45px;
  color: black;
  z-index: 3;
  width: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header #chk {
  position: absolute;
  visibility: hidden;
  z-index: -1111;
}

.header #chk:checked ~ .menu {
  right: 75%;
}

.header .suffix {
  margin: 0 auto;
}

.header .suffix img {
  height: 30px;
}

.header .menu {
  position: fixed;
  z-index: 3;
  width: 25%;
  height: 100vh;
  right: 100%;
  background-color: white;
  top: 0;
  padding: 100px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.header .menu > ul > li {
  padding: 30px 0;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header .menu .hide-menu-btn {
  position: absolute;
  top: 50px;
  left: 55px;
}

.header .menu a:hover,
.header .show-menu-btn:hover,
.header .hide-menu-btn:hover {
  color: orangered;
  text-decoration: none;
}

.header .show-menu-btn, .header .hide-menu-btn {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.header .show-menu-btn > img, .header .hide-menu-btn > img {
  height: 19px;
}

.billboard {
  background-color: black;
}

.billboard > div > div {
  margin-top: 105px;
}

.billboard > div > div > div:last-child > div {
  padding-top: 110px;
}

.billboard > div > div > div:last-child > div > a {
  color: white;
}

.billboard > div > div > div:last-child > div .link {
  color: white;
  text-decoration: underline;
}

.billboard > div > div > div:last-child > div .link:hover {
  color: orangered;
}

.billboard > div > div > div:last-child > h1 {
  margin-top: 70px;
}

.billboard > div > div > div:last-child > p {
  color: white;
}

.interviews > div > div > div:last-child {
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer {
  background-color: black;
  height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer > img {
  color: white;
}

.footer > a {
  color: white;
}

@media (max-width: 575px) {
  h1 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  a {
    font-size: 10px;
  }
  .btn {
    padding: 15px 90px;
    font-size: 10px;
  }
  .btn2 {
    padding: 10px 20px;
    font-size: 8px;
    line-height: 9;
  }
  .large-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .small-img {
    max-width: 260px;
    margin: 0 auto;
  }
  .margazine-card-small {
    padding: 3% 7%;
    line-height: 1.5;
  }
  .header {
    height: 65px;
  }
  .header #chk:checked ~ .menu {
    right: 0;
    width: 100%;
  }
  .section {
    background-color: black;
  }
  .section > div > div {
    margin-top: 60px;
  }
  .section > div > div > div:last-child > div {
    padding-top: 15px;
  }
  .section > div > div > div:last-child > h1 {
    margin-top: 20px;
  }
  .interviews > div > div > div:last-child > a {
    line-height: 0;
    margin-bottom: 40px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .small-img {
    max-width: 380px;
    margin: 0 auto;
  }
  .subscribe {
    margin-bottom: 5%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .btn {
    padding: 15px 90px;
    font-size: 10px;
  }
  .btn2 {
    padding: 10px 20px;
    font-size: 8px;
    line-height: 2;
  }
  .large-img {
    max-width: 460px;
    margin: 0 auto;
  }
  .small-img {
    max-width: 280px;
  }
  .section > div > div > div:last-child > h1 {
    margin-top: 30px;
  }
}
/*# sourceMappingURL=style.css.map */