.loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  background-color: #eef3ff;
  display: flex;
  z-index: 999;
}
.loader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 5px solid grey;
  border-top-color: black;
  animation: loading 2s linear infinite;
}
.news-home {
  width: 100%;
  height: 100%;
  display: none;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.n-app-link {
  display: flex;
  flex-direction: row;
  background-color: #4a26ff;
  padding: 16px 24px;
  border-radius: 24px;
  text-decoration: none;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.n-app-link img {
  width: 48px;
  height: 48px;
}
.n-app-link-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.n-app-link-title {
  color: white;
  font-size: 20px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 20px;
}
.n-app-link-desc {
  color: white;
  font-size: 12px;
  font-family: Nato-light;
}

.n-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-circle img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.n-title h1 {
  font-size: 40px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 40px;
  color: #0737f8;
}

.n-content {
  display: flex;
  width: 100%;
  gap: 50px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.n-news-left {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.n-date {
  display: flex;
  gap: 10px;
}
.n-date img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.n-date p {
  font-size: 16px;
  font-family: Nato-medium;
  color: #0737f8;
}

.n-banner {
  width: 100%;
  object-fit: cover;
  height: 463px;
  border-radius: 8px;
  overflow: hidden;
}

.n-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.n-share h4 {
  font-size: 16px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 16px;
  color: #0737f8;
}
.n-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  outline: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.n-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.n-content-title {
  font-size: 24px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 24px;
}
.n-description {
  font-size: 18px;
  font-family: Nato-light;
}
.n-description img {
  max-width: 100%;
  object-fit: cover;
  max-height: 500px;
}
/* right side news  */
.n-news-right {
  display: flex;
  flex-direction: column;
  width: 35%;
  gap: 12px;
}

/* bottom news container  */
.other-news {
  display: none;
  font-size: 24px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 24px;
  color: #0737f8;
  text-align: center;
}
.n-news-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 32px;
  margin-top: 50px;
  box-sizing: border-box;
  justify-content: center;
}

.n-see-all-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.n-see-all {
  padding-block: 29px;
  max-width: 519px;
  width: 100%;
  background-color: #0737f8;
  text-decoration: none;
  color: white;
  border-radius: 24px;
  font-size: 24px;
  -webkit-font-feature-settings: "case" on;
  font-feature-settings: "case" on;
  font-family: Nato-black;
  line-height: 24px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.hide {
  display: none;
}
@media only screen and (max-width: 991px) {
  .n-news-right {
    display: none;
  }
  .n-news-left {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .loader::after {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  .n-title h1 {
    font-size: 20px;
    line-height: 20px;
  }
  .n-content-title {
    font-size: 20px;
    line-height: 20px;
  }
  .n-banner {
    width: 100%;
    height: 188px;
  }
  .n-app-link {
    padding: 8px 12px;
    border-radius: 8px;
    gap: 4px;
  }
  .n-app-link-title {
    font-size: 12px;
  }
  .n-app-link-desc {
    display: none;
  }
  .n-app-link img {
    width: 24px;
    height: 24px;
  }

  .other-news {
    display: block;
    margin-top: 100px;
  }
  .n-news-container {
    margin-top: 20px;
  }
  .hide {
    display: block;
  }
  .show {
    display: none;
  }
  .n-see-all {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    background-color: white;
    border: 1px solid #0737f8;
    color: #0737f8;
    font-size: 16px;
    font-family: Nato-light;
  }
}
@media only screen and (max-width: 340px) {
  .header-logo {
    width: 120px;
  }
}
