@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --bs-green: #20A38;
  --blue: #4773aa;
  --blue-dark: #20558A;
  --white-gray: #DBDBDB;
}



.font-10px {
  font-size: 10px;
}

.font-11px {
  font-size: 11px;
}

.font-12px {
  font-size: 12px;
}

.font-13px {
  font-size: 13px;
}

.font-14px {
  font-size: 14px;
}

.font-15px {
  font-size: 15px;
}

.mt {
  margin-top: 100px;
}

/* Header */
.top_header_notif p {
  margin: 0;
}

header.has_image {
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 15%;
  background-position: center;
}

header.with_background {
  background-color: var(--blue-dark);
}



.bottom_head_border::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  background: linear-gradient(to right, transparent, #0071bc, transparent);
  height: 1px;
  width: 1024px;
  max-width: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hover-text {
  text-decoration: none;
}

.hover-text:hover {
  text-decoration: underline white;
}

.search_box {
  margin-top: 120px;
}

.icon-action {
  font-size: 1.1rem;
}

/* Atricle Main Page */
.article-title {
  font-family: "Merriweather";
  margin-bottom: 1.3rem;
  font-weight: 700;
}

.article-description {
  font-size: .9rem;
  margin-bottom: 2.4rem;
}

.new-articles {
  list-style: none;
  padding: 0px;
}

.new-articles li:not(:last-child) {
  margin-bottom: .8rem;
}

.new-articles li a:hover {
  text-decoration: underline var(--bs-primary);
}

.new-articles li:where(.atricle-info, .article-item) {
  font-size: .9rem;
}


/* Resource Section */
.resource {
  background-color: var(--white-gray);

}

.resource-item-link a:hover {
  text-decoration: underline var(--bs-primary);
}

.resource p {
  font-size: .9rem;
}

/* Footer */

.fallow-us {
  background-color: #283383;
}

.fallow-us__title h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.fallow-us__media {
  background-color: var(--white-gray);
}

.footer-links {
  background-color: #283383;
}

.footer-links a {
  font-size: .9rem;
  margin-top: .1rem;
}

.footer-links a:hover {
  text-decoration: underline white;
}

/* Advanced Search */

.advance_search_title {
  font-family: "Merriweather";
  font-size: 1.1rem;
  font-weight: bold;
}

/* Login */

.form-control-custom::placeholder {
  color: rgba(0, 0, 0, .5);
}

.form-control-custom {
  background: transparent;
  color: black;
  padding: .3rem 1rem;
  border: 1px solid black;
    border-radius: 8px;
  width: 100%;
  outline: none;
}

/* Search */
.search_bar {
  background-color: var(--white-gray);
}

.btn-white {
  border: 1px solid rgba(0, 0, 0, .5);
  border-radius: 0px;
  padding: 5px 15px;
  font-size: .85rem;
}

.btn-white:hover {
  transition: all .5s ease;
  color: white;
  background-color: var(--blue);
}

@media screen and (min-width:768px) {
  .article div:first-child {
    border-right: 1px solid var(--bs-dark);
  }
}

@media screen and (max-width:767px) {
  .article div:first-child {
    border-bottom: 1px solid var(--bs-dark);
  }

  .article div:last-child {
    margin-top: .8rem;
  }
}


/* Bootstrap Changes */
@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 900px;
  }
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 950px;
  }
}

.btn-primary {
  background-color: var(--blue-dark);
  border: 1px solid var(--blue-dark);
}

