* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", serif;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 17px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #222222;
}

.merriweather-light {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
}

.merriweather-regular {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
}

.merriweather-bold {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
}

.merriweather-black {
  font-family: "Merriweather", serif;
  font-weight: 900;
  font-style: normal;
}

.border-left {
  border-left: 1px solid #d0d5d8;
}

.border-right {
  border-right: 1px solid #d0d5d8;
}

.border-bottom {
  border-bottom: 1px solid #d0d5d8;
}

.bg-white {
  background-color: #ffffff;
}

a {
  color: #1e73be;
}

img {
  height: auto;
  max-width: 100%;
}

.grid-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

p {
  margin-bottom: 1.5em;
}

h1 {
  font-size: 42px;
  line-height: 1.2em;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Lustria", serif;
}

h2 {
  font-size: 35px;
  line-height: 1.2em;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 20px;
}

h3 {
  font-size: 29px;
  line-height: 1.2em;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 20px;
}

input[type="search"] {
  color: #222222;
  background-color: #f7f8f9;
  border-color: #f0f0f0 !important;
  border: 1px solid;
  padding: 10px 15px;
}
input[type="search"]:focus {
  outline: none;
  border-color: #be9656 !important;
}

button {
  background: #be9656;
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 10px 20px;
}

.wrapper {
  display: flex;
}

.site-content {
  width: 80%;
  margin: 20px 0;
  /* margin-left: 0; */
}

/* .site-content .inside-article {
  background-color: #ffffff;
  padding: 40px;
} */

.site-content article:nth-child(even) .inside-article-section {
  flex-direction: row-reverse;
}

.right-sidebar {
  width: 30%;
  padding: 0 10px;
}

.widget {
  padding: 30px 20px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1); */
}

.widget h2 {
  font-size: 25px;
  font-family: "Lustria", serif;
}

.widget form label {
  font-family: "Lustria", serif;
}

.widget ul {
  list-style: none;
}

.widget ul li {
  margin-bottom: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dedede;
  font-size: 14px;
  color: #888;
}

.widget ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget ol li a,
.widget ul li a {
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  color: #222222;
  text-decoration: none;
}

.widget ul li a:hover {
  text-decoration: underline;
  color: #be9656;
}
/* .login-search-area {
    position: absolute;
    z-index: 1;
    right: 0;
  } */

.login-search-area .subscribe-image img {
  width: 65px;
}

.subscribe-image img {
  -ms-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  position: relative;
  left: 16px;
  top: 21px;
  z-index: 9999999;
  transform: rotate(-20deg);
}

@media (max-width: 540px) {
  .header a {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .site-content {
    width: 100%;
    margin: 20px 0 0;
  }

  /* .site-content .inside-article {
      padding: 0 30px;
    } */

  .right-sidebar {
    width: 100%;
    padding: 0 20px;
  }

  .widget {
    padding: 30px;
  }

  .footer {
    flex-direction: column;
    gap: 15px;
  }
}

@media (min-width: 1500px) {
  .grid-container {
    max-width: 1350px;
  }
}

.footer-area {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #d82a2c;
  padding: 40px 0px;
  padding-left: 30px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.inside-article-section {
  display: flex;
  min-height: 300px;
  height: 100%;
}

.inside-article-section .article-img {
  width: 50%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.inside-article-section .article-img img {
  height: 100%;
}

.inside-article-section .article-content {
  width: 50%;
  padding: 20px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
}

.btn {
  height: 38px;
}

.btn a {
  background: rgba(0, 0, 0, 0);
  color: #343434;
  padding: 10px 20px;
  border: 1px solid #dcdcdc;
  text-transform: uppercase;
  font-family: "ralewaysemibold";
  border-radius: 24px;
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 992px) {
  .inside-article-section {
    flex-direction: column;
    gap: 0;
  }

  .inside-article-section .article-img {
    width: 100%;
  }

  .inside-article-section .article-content {
    width: 100%;
  }

  .site-content article:nth-child(even) .inside-article-section {
    flex-direction: column;
  }

  .inside-article-section .article-img img {
    margin-bottom: -8px;
  }
}

header {
  background-color: #ffffff;
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  /* position: sticky;
  top: 0; */
}

/*  ---- footer  --- */

.footer {
  background-color: #1d1d1d;
  padding: 20px 40px;
  color: #ccc;
}

.footer-container {
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-top .footer-logo img {
  width: 250px;
}

.footer-top .footer-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-top .footer-link a {
  color: #ccc;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    padding-bottom: 12px;
  }
}

/* .footer-logo .footer-title {
  font-size: 25px;
  color: #be9656;
  font-family: "Lustria", serif;
  letter-spacing: 0.2px;
  line-height: 25px;
  font-weight: 500;
}

.footer-logo .desc {
  font-size: 15px;
  margin-top: 15px;
  color: #ccc;
  padding-right: 40px;
} */

/* .footer-section {
  flex: 1 1 200px;
  margin: 20px;
} */

/* .footer-section h4 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #be9656;
  margin-bottom: 12px;
  font-family: "Lustria", serif;
  font-weight: 500;
}

.footer-section input {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: none;
  font-style: italic;
  margin-bottom: 10px;
}

.footer-section button {
  width: 100%;
  padding: 10px;
  background: #666;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-section span {
  color: #999;
  font-size: 12px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
} */

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  font-size: 13px;
  flex-wrap: wrap;
  border-top: 1px solid #333;
}

/* @media (max-width: 768px) {
  .footer {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
} */

.footer-bottom nav {
  display: block;
}
.footer-bottom nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 12px;
  font-size: 14px;
}

.footer-bottom nav a:hover {
  color: #fff;
}

/*  */

.container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.article-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.card {
  flex: 1 1 45%;
  border: 1px solid #eaeaea;
  padding: 1rem;
  /* text-align: center; */
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.title {
  font-family: "Lustria", serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 1rem 0 0.7rem;
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 25px;
  font-weight: 500;
}

.date {
  font-size: 0.9rem;
  color: #be9656;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
}

.date::before,
.date::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #be9656;
  margin: 0 10px;
}

.desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: capitalize;
  color: #be9656;
  /* text-decoration: none; */
  letter-spacing: 1px;
}

/* .read-more:hover {
  text-decoration: underline;
} */

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }

  .card img {
    height: auto;
  }
}

.header-wrapper .logo {
  /* font-weight: 700;
  color: #222;
  text-decoration: none;
  font-size: 28px;
  font-family: "Lustria", serif; */
  height: 60px;
}

.logo img {
  width: 280px;
  margin-top: 3px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 16px;
}

nav a:hover {
  color: #be9656;
}

.footer-link a {
  text-decoration: none;
}

nav a.active {
  color: #be9656;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s ease;
}

.mobile-nav {
  position: absolute;
  top: 78px;
  left: -100%;
  width: 100%;
  background: white;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
  height: calc(100vh - 78px);
  text-align: center;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav a.active {
  color: #be9656;
}

.mobile-nav a {
  padding: 15px 40px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}

/* scroll to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  /* padding: 10px 15px; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #be9656;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}

#scrollToTopBtn:hover {
  background-color: #a37e3e;
}

/* ----loading ---  */

/* From Uiverse.io by Nawsome */
.loadingspinner {
  --square: 26px;
  --offset: 30px;
  --duration: 2.4s;
  --delay: 0.2s;
  --timing-function: ease-in-out;
  --in-duration: 0.4s;
  --in-delay: 0.1s;
  --in-timing-function: ease-out;
  width: calc(3 * var(--offset) + var(--square));
  height: calc(2 * var(--offset) + var(--square));
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 30px;
  position: relative;
}

.loadingspinner div {
  display: inline-block;
  background: #be9656;
  /*background: var(--text-color);*/
  /*box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);*/
  border: none;
  border-radius: 2px;
  width: var(--square);
  height: var(--square);
  position: absolute;
  padding: 0px;
  margin: 0px;
  font-size: 6pt;
  color: black;
}

.loadingspinner #square1 {
  left: calc(0 * var(--offset));
  top: calc(0 * var(--offset));
  animation: square1 var(--duration) var(--delay) var(--timing-function)
      infinite,
    squarefadein var(--in-duration) calc(1 * var(--in-delay))
      var(--in-timing-function) both;
}

.loadingspinner #square2 {
  left: calc(0 * var(--offset));
  top: calc(1 * var(--offset));
  animation: square2 var(--duration) var(--delay) var(--timing-function)
      infinite,
    squarefadein var(--in-duration) calc(1 * var(--in-delay))
      var(--in-timing-function) both;
}

.loadingspinner #square3 {
  left: calc(1 * var(--offset));
  top: calc(1 * var(--offset));
  animation: square3 var(--duration) var(--delay) var(--timing-function)
      infinite,
    squarefadein var(--in-duration) calc(2 * var(--in-delay))
      var(--in-timing-function) both;
}

.loadingspinner #square4 {
  left: calc(2 * var(--offset));
  top: calc(1 * var(--offset));
  animation: square4 var(--duration) var(--delay) var(--timing-function)
      infinite,
    squarefadein var(--in-duration) calc(3 * var(--in-delay))
      var(--in-timing-function) both;
}

.loadingspinner #square5 {
  left: calc(3 * var(--offset));
  top: calc(1 * var(--offset));
  animation: square5 var(--duration) var(--delay) var(--timing-function)
      infinite,
    squarefadein var(--in-duration) calc(4 * var(--in-delay))
      var(--in-timing-function) both;
}

@keyframes square1 {
  0% {
    left: calc(0 * var(--offset));
    top: calc(0 * var(--offset));
  }

  8.333% {
    left: calc(0 * var(--offset));
    top: calc(1 * var(--offset));
  }

  100% {
    left: calc(0 * var(--offset));
    top: calc(1 * var(--offset));
  }
}

@keyframes square2 {
  0% {
    left: calc(0 * var(--offset));
    top: calc(1 * var(--offset));
  }

  8.333% {
    left: calc(0 * var(--offset));
    top: calc(2 * var(--offset));
  }

  16.67% {
    left: calc(1 * var(--offset));
    top: calc(2 * var(--offset));
  }

  25.00% {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
  }

  83.33% {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
  }

  91.67% {
    left: calc(1 * var(--offset));
    top: calc(0 * var(--offset));
  }

  100% {
    left: calc(0 * var(--offset));
    top: calc(0 * var(--offset));
  }
}

@keyframes square3 {
  0%,
  100% {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
  }

  16.67% {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
  }

  25.00% {
    left: calc(1 * var(--offset));
    top: calc(0 * var(--offset));
  }

  33.33% {
    left: calc(2 * var(--offset));
    top: calc(0 * var(--offset));
  }

  41.67% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }

  66.67% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }

  75.00% {
    left: calc(2 * var(--offset));
    top: calc(2 * var(--offset));
  }

  83.33% {
    left: calc(1 * var(--offset));
    top: calc(2 * var(--offset));
  }

  91.67% {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
  }
}

@keyframes square4 {
  0% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }

  33.33% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }

  41.67% {
    left: calc(2 * var(--offset));
    top: calc(2 * var(--offset));
  }

  50.00% {
    left: calc(3 * var(--offset));
    top: calc(2 * var(--offset));
  }

  58.33% {
    left: calc(3 * var(--offset));
    top: calc(1 * var(--offset));
  }

  100% {
    left: calc(3 * var(--offset));
    top: calc(1 * var(--offset));
  }
}

@keyframes square5 {
  0% {
    left: calc(3 * var(--offset));
    top: calc(1 * var(--offset));
  }

  50.00% {
    left: calc(3 * var(--offset));
    top: calc(1 * var(--offset));
  }

  58.33% {
    left: calc(3 * var(--offset));
    top: calc(0 * var(--offset));
  }

  66.67% {
    left: calc(2 * var(--offset));
    top: calc(0 * var(--offset));
  }

  75.00% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }

  100% {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
  }
}

@keyframes squarefadein {
  0% {
    transform: scale(0.75);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
