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

@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

.ml-auto {
  margin-left: auto;
}

.mb-24 {
  margin-bottom: 24px;
}

.p-0 {
  padding: 0 !important;
}

.mx-auto {
  margin: 0 auto;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background-color: #000;
}

/* Screen */
.container { 
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  overflow-x: hidden;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url('../image/bg-mobile-2022.jpeg');
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.article-wrapper {
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  background-size: 100% auto;
  background-image: url('../image/bg-mobile.png');
  padding-top: 40px;
  padding-bottom: 135px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .wrapper {
    background-image: url('../image/bg-desktop-2022.jpeg');
    background-size: length;
    /* background-position: center center; */
  }

  .article-wrapper {
    background-image: url('../image/bg-desktop.png');
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 1120px;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 1280px;
    max-width: 100%;
  }
}


/* Flex Box  */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.col-12, .col-lg-2, .col-lg-5, .col-lg-7, .col-lg-8 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* Display */
.d-none {
  display: none;
}

@media (min-width: 1200px) {
  .d-lg-flex {
    display: flex !important;
  }
}

/* Button */
.btn-share {
  appearance: none;
  border: 1px solid #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  line-height: 24px;
  cursor: pointer;
  transition: .5s;
  margin-bottom: 32px;
}

.btn-share:hover {
  background-color: #fff;
  color: #222;
}

.btn-share:hover svg * {
  stroke: #222;
}


/* Content */
.entry-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 32px;
}

.entry-headline p,
.entry-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 24px;
}

.entry-content img {
  margin-bottom: 32px;
}

.entry-content img {
  width: 100%;
  height: auto;
}

.entry-footer {
  position: relative;
  margin-top: 32px;
}

.entry-footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  flex-direction: column;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  padding: 1rem;
}

.entry-footer__bg {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.entry-footer__thumbnail {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.entry-footer__thumbnail img {
  height: 167px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.entry-footer__label {
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 8px;
}

.entry-footer__title {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

.entry-footer__content a {
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 426px) {
  .entry-title {
    font-size: 31px;
  }
  .entry-footer__wrapper {
    flex-direction: row;
    gap: 1rem;
  }
  .entry-footer__thumbnail {
    margin-bottom: 0;
  }

  .entry-footer__thumbnail img {
    height: 120px;
    width: 143px;
  }
}

/* Video Embed */
.video-container {
  width: 320px;
  height: 176px;
  position: relative;
  transform: translateY(-30px);
}
@media screen and (min-width: 768px) {
  .video-container {
    width: 585px;
    height: 328px;
    transform: translate(0px, 10px);
  }
}
@media screen and (min-width: 992px) {
  .video-container {
    width: 768px;
    height: 428px;
  }
}
@media screen and (min-width: 768px) {
  .video-container::before {
    top: 1.5rem;
    left: 1.25rem;
  }
}
.video-iframe {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

/* video poster */
.video-poster {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #000;
  inset: 0;
}
.video-poster img {
  width: 100%;
  height: 100%;
}
.video-play {
  width: 100px;
  position: absolute;
  bottom: -1rem;
  right: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  animation: rotate 10s infinite linear;
}
.video-play:hover {
  animation-play-state: paused;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .video-play {
    width: auto;
    right: 43px;
  }
}

/* Sticky */
.sticky {
  position: fixed;
  top: 80px;
  width: auto;
} 

.sticky-mobile {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1200px) {
  .sticky-mobile {
    display: none;
  }
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__image,
.footer__message,
.footer__sign {
  width: auto;
}
.footer__image img {
  max-width: 150px;
  height: auto;
}
.footer__message .title,
.footer__message .message {
  display: block;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.footer__message .title {
  font-size: 1.25rem;
}
.footer__message .message {
  font-size: 0.875rem;
}
.footer__sign {
  padding: 0 10px;
}
.footer__sign img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer__message .title {
    font-size: 10px;
  }
  .footer__message {
    max-width: 60%;
    margin: 0 auto;
  }
  .footer__message .message {
    font-size: 0.375rem;
  }
  .footer__sign img {
    max-width: 24px;
  }
  .footer__image img {
    max-width: 64px;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  z-index: 99;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-size: 100% auto;
  background-image: url('../image/bg-mobile.png');
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  width: 320px; /* Could be more or less, depending on screen size */
  border-radius: 8px;
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 0;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.share-title,
.share-desc {
  color: #FFF;
  text-align: center;
  margin-bottom: 12px;
}

.share-desc {
  font-size: 12px;
}

#fb-share-button,
#tw-share-button,
#copy-share-button {
  border-radius: 3px;
  font-weight: 600;
  padding: 5px 8px;
  display: inline-block;
  position: static;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  cursor: pointer;
}

#fb-share-button svg,
#tw-share-button svg,
#copy-share-button svg {
  width: 18px;
  fill: white;
  vertical-align: middle;
  border-radius: 2px
}

#fb-share-button span,
#tw-share-button span,
#copy-share-button span  {
  vertical-align: middle;
  color: white;
  font-size: 1rem;
  padding: 0 3px
}

#fb-share-button {
  background: #3b5998;
}

#tw-share-button {
  background: #1da1f2;
}

#copy-share-button {
  background: rgb(23, 46, 87);
}
