@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body,
html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

.header {
  width: 100vw;
  max-width: 100vw;
  height: 50vh;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  font-size: 1rem;
}

.header__cover {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  transition: 1000ms ease;
  position: relative;
}

.header__cover::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  content: '';
}

.header__cover:hover,
.header__head:hover + .header__cover {
  transform: scale(1.05);
}

.header__head {
  width: 70vw;
  text-align: center;
  position: absolute;
  z-index: 200;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
}

.big-title {
  font-size: 3em;
  font-weight: 400;
  margin-bottom: 5vh;
  line-height: 1.5em;
  color: #fff;
}

.date {
  text-transform: uppercase;
  color: #d69b2a;
  text-align: center;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.5em;
  position: relative;
  z-index: 200;
}

.container {
  width: 50vw;
  margin: 0 auto;
  padding-top: 10vh;
  font-size: 1rem;
}

.author {
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.5em;
  padding: 1vh 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  margin-bottom: 5vh;
}

.content {
  font-size: 1em;
  line-height: 1.5;
}
.content h1 {
  font-size: 2.3em;
  margin-bottom: 4vh;
}
.content h2 {
  font-size: 1.9em;
  margin-bottom: 3vh;
}
.content > p,
.content > ol,
.content > ul {
  font-size: 1.2em;
  margin-bottom: 2vh;
}
.content ol,
.content ul {
  margin-left: 3vw;
}
.content ul {
  list-style: initial !important;
}
.content a {
  color: #d29723;
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
}
.content img {
  height: auto;
  max-width: 100%;
}
.content > img {
  margin: 0 auto;
  display: block;
  margin-bottom: 3vh;
}
.content .img-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.5vw;
  row-gap: 1.5vh;
  margin-bottom: 3vh;
}
.content .img-group-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.5vw;
  row-gap: 1.5vh;
  margin-bottom: 3vh;
}
.content .img-group-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 0.5vw;
  row-gap: 1.5vh;
  margin-bottom: 3vh;
}
.content > iframe {
  width: 100%;
  height: 60vh;
  margin-bottom: 3vh;
}

.share {
  width: 100%;
  align-items: center;
  display: flex;
  padding-top: 6vh;
}

.share span {
  text-transform: uppercase;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 400;
  color: #111;
  margin-right: 1.5vw;
}

.share__icon {
  width: 2.5vw;
  height: 2.5vw;
  background-color: #d29723;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1vw;
}

.share__icon:hover {
  background-color: #af7f1f;
}

.share__icon img {
  width: 50%;
  height: auto;
}

/************************
*      MORE NEWS
************************/

.more-news {
  padding-top: 6vh;
  padding-bottom: 15vh;
  font-size: 1rem;
  width: 100vw;
  max-width: 100vw;
  position: relative;
}

.more-news__title {
  font-size: 2.33em;
  font-weight: 700;
  margin-bottom: 3vh;
  width: 50vw;
  margin: 0 auto;
  line-height: 1.5em;
}

.more-news__carousel {
  width: 100%;
  height: 100%;
}

.more-news__container {
  position: relative;
  width: 50vw;
  min-width: 50vw;
  height: 30vh;
  padding: 2.5vh 0;
  overflow: hidden;
  margin: 0 auto;
}

.more-news__inner {
  width: 100%;
  height: 100%;
  padding: 0 1vw;
}

.more-news__slide {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2vw;
  padding: 0 0.5vw;
}

.more-news__card {
  width: 100%;
  height: 100%;
  perspective: 70em;
}

.more-news__card:hover .more-news__card__container {
  transform: rotateY(-0.5turn);
}

.more-news__card__container {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1000ms ease;
  transform-style: preserve-3d;
}

.more-news__card__front,
.more-news__card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.more-news__card__back {
  transform: rotateY(0.5turn);
}

.more-news__card__content {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.more-news__card__content::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0)
  );
  z-index: 10;
}

.more-news__card__body {
  width: 100%;
  height: 100%;
  z-index: 20;
  position: relative;
  padding: 2vh 1.5vw;
  display: flex;
}

.more-news__card__front .more-news__card__body {
  flex-direction: column;
  justify-content: flex-end;
}

.more-news__card__back .more-news__card__body {
  align-items: center;
  justify-content: center;
}

.more-news__card__title,
.more-news__card__date,
.more-news__card__paragraph,
.more-news__card__button {
  transform: translateZ(3em);
}

.more-news__card__title,
.more-news__card__date,
.more-news__card__paragraph {
  font-weight: 300;
  width: 70%;
  line-height: 1.5em;
  color: #fff;
}

.more-news__card__title {
  font-size: 1.2em;
  margin-bottom: 0.5vh;
}

.more-news__card__date {
  font-size: 0.53em;
  margin-bottom: 0.5vh;
}

.more-news__card__paragraph {
  font-size: 0.73em;
}

.more-news__card__button {
  background-color: #d29723;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.more-news__card__button--mobile {
  display: none;
}

.more-news__card__button img,
.more-news__card__button--mobile img {
  width: 60%;
  height: auto;
}

.more-news__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2vw;
  height: auto;
  cursor: pointer;
}

.more-news__arrow--left {
  left: 20vw;
}

.more-news__arrow--right {
  right: 20vw;
}

@media only screen and (max-width: 1366px) {
  .header {
    font-size: 0.71rem;
  }
  .container {
    font-size: 0.71rem;
  }
  .more-news {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .header {
    font-size: 0.66rem;
  }
  .container {
    font-size: 0.66rem;
  }
  .more-news {
    font-size: 0.66rem;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    font-size: 0.53rem;
  }
  .container {
    font-size: 0.53rem;
  }
  .more-news {
    font-size: 0.53rem;
  }
  .more-news__card__back {
    display: none;
  }
  .more-news__card:hover .more-news__card__container {
    transform: rotateY(0turn);
  }
  .more-news__card__button--mobile {
    background-color: #d29723;
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  .more-news__card__title,
  .more-news__card__date,
  .more-news__card__paragraph {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    font-size: 1rem;
  }
  .header__head {
    width: 80vw;
  }
  .big-title {
    font-size: 2.5em;
  }
  .container {
    font-size: 1rem;
    width: 80vw;
  }
  .content .img-group-3 {
    grid-template-columns: 1fr 1fr;
  }
  .content > iframe {
    height: 40vh;
  }
  .share__icon {
    width: 5vw;
    height: 5vw;
  }

  .more-news {
    font-size: 1rem;
    width: 80vw;
    margin: 0 auto;
  }
  .more-news__title {
    width: 80vw;
  }
  .more-news__container {
    width: 70vw;
    min-width: 70vw;
  }
  .more-news__card__body {
    padding: 2vh 3vw;
  }
  .more-news__card__title {
    font-size: 1em;
  }
  .more-news__card__date {
    display: none;
  }
  .more-news__card__button--mobile {
    width: 5vw;
    height: 5vw;
  }
  .more-news__arrow {
    width: 4vw;
  }
  .more-news__arrow--left {
    left: -7%;
  }
  .more-news__arrow--right {
    right: -7%;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.53rem;
  }
  .container {
    font-size: 0.53rem;
  }
  .content {
    font-size: 1.3em;
  }
  .content .img-group-2,
  .content .img-group-3 {
    grid-template-columns: 1fr;
  }
  .content img {
    max-width: 80%;
  }
  .content > iframe {
    height: 30vh;
  }
  .share__icon {
    width: 7vw;
    height: 7vw;
  }
  .more-news {
    font-size: 0.53rem;
  }
  .more-news__container {
    height: 25vh;
  }
}
