@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

.arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.left-arrow {
  width: 50px;
  height: 50px;
  background-color: #0050ff;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  clip-path: polygon(0% 28%, 48% 28%, 48% 0%, 100% 0%, 100% 99%, 0% 100%);
}
.deaktif {
  background-color: #707070 !important;
  cursor: default !important;
}
.right-arrow {
  width: 50px;
  height: 50px;
  background-color: #0050ff;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  clip-path: polygon(100% 29%, 53% 29%, 53% 0, 0 0, 0% 100%, 100% 100%);
}

.header {
  padding: 20px 50px;
  height: 50px;
}
.nav {
  display: flex;
  justify-content: space-between;
}
.nav__link {
  display: flex;
  gap: 2rem;
  font-weight: 300;
}
.nav__logo a,
.nav__item a {
  color: #0d0d0d;
}
.articles-head__container {
  display: flex;
  padding: 50px 70px;
  align-items: center;
  background-color: #0050ff;
  margin-top: 50px;
}
.border-articles {
  width: 15px;
  height: 25px;
  background-color: #ffda55;
  margin-right: 5px;
}
.article-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 70px;
  width: 100%;
  text-align: justify;
}
.main-article {
  max-width: 750px;
  margin-right: 50px;
}
.article-title {
  font-size: 2rem;
  color: white;
  text-transform: uppercase;
}
.articles-title {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.publish-time {
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.publish-time i {
  font-size: 0.8rem;
}
.article-head {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.article {
  font-size: 0.7rem;
  text-align: justify;
  width: 100%;
}
.other-article__head {
  margin-left: 20px;
  margin-top: 40px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.article-img {
}
.article-img img {
  max-width: 750px;
  height: 300px;
  object-fit: cover;
}
.other-article__container {
  max-width: 400px;
  height: 100%;
  background-color: #ffda55;
  margin-top: 60px;
  width: 100%;
}
.article-box__container {
  display: flex;
  flex-direction: column;
}
.article-box__container a {
  color: #0d0d0d;

  padding-top: 5px;
  transition: 0.5s;
}
.article-box__container a:hover {
  color: #303030;
  background-color: #fad039;
}
.article-side__image img {
  width: 70px;
  height: 70px;
  object-fit: fill;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
  border-radius: 5px;
}
.article-box {
  max-width: 400px;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-bottom: 20px;
}
.side-article__title {
  max-width: 400px;
  font-size: 0.9rem;
}
.side-article__description {
  font-size: 0.8rem;
}
.article-description__box {
  max-width: 200px;
}
.share {
  display: flex;
  justify-content: flex-start;
  margin-left: 20px;
}
.share-button {
  display: flex;
  font-size: 0.9rem;
  justify-content: center;
  align-items: center;
  background-color: #0050ff;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
  display: none;
}

.gg-share {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 100px;
  box-shadow: 10px -6px 0, 10px 6px 0;
  margin-right: 20px;
}
.gg-share::after,
.gg-share::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 10px;
  height: 2px;
  background: currentColor;
  left: 2px;
}
.gg-share::before {
  top: 0;
  transform: rotate(-35deg);
}
.gg-share::after {
  bottom: 0;
  transform: rotate(35deg);
}

.share-btn {
  width: 200px;
  height: 60px;
  background-color: #ffda55;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  position: relative;
  cursor: pointer;
  transition: 0.3s linear;
  margin-bottom: 50px;
  margin-left: 40px;
}
span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0050ff;
  text-align: center;
  line-height: 80px;
  z-index: 999;
  transition: 0.6s linear;

  border-radius: 40px;
}
.share-btn:hover {
  transform: scale(1.1);
}
.share-btn:hover span {
  transform: translateX(-100%);
  transition-delay: 0.3s;
}
.share-btn a {
  flex: 2;
  font-size: 20x;
  color: rgb(46, 46, 46);
  text-align: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.3s linear;
}
.share-btn:hover a {
  opacity: 1;
  transform: translateX(0);
}
.share-btn:hover a:nth-of-type(1) {
  transition-delay: 1s;
}
.share-btn:hover a:nth-of-type(2) {
  transition-delay: 0.8s;
}
.share-btn:hover a:nth-of-type(3) {
  transition-delay: 0.6s;
}
.share-btn:hover a:nth-of-type(4) {
  transition-delay: 0.4s;
}
