*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Poppins", system-ui;
  overflow-x: hidden; /* hides horizontal scrollbar */
  scroll-behavior: smooth;
  width: 100%;
  /* background-image: url(../img/bg-halftone.svg);
  background-repeat: no-repeat;
  background-size: 100%; */
}
/* Preloader
-------------------------------------------------------*/

.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: #00c9d0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.lead {
  font-size: 13px;
}
.loader div {
  background-color: #d9b06a;
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

::selection {
  background: #e18800;
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background-color: #6e6e6e;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #575757;
}

.overflow-y-auto-alt {
  overflow-y: none !important;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 87%;
  overflow: hidden;
  z-index: -99999999999999999999999999999999999999999999999999999;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: #2716698a;
  /* background: #000; */
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.logo {
  max-width: 110px;
  width: 100%;
  transition: transform 0.5s ease;
}

.navbar {
  background-color: none;
  transition: background-color 0.5s ease;
}

/* .navbar.scrolled {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.navbar.scrolled .logo {
  transform: scale(0.8);
}

.navbar:not(.scrolled) .logo {
  transform: scale(1);
} */

.nav-link:hover {
  color: #271669 !important;
}
.navbar .nav-link {
  color: #000 !important;
  transition: 0.5s ease;
}
.navbar .active {
  color: #271669 !important;
}
.navbar .nav-link:hover {
  color: #271669 !important;
}

.nav-link {
  font-weight: 600;
  text-transform: capitalize;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown > .dropdown-menu {
  background: #fff;
  display: block;
  border-radius: 0;
  border: none;
  /* visibility: visible;
  opacity: 1; */
  /* transition: 0.5s ease; */
}
.dropdown-item {
  border-bottom: 1px solid rgb(224, 224, 224);
  text-transform: capitalize;
  font-weight: 500;
}

.fa-bars {
  font-size: 1.2rem;
  color: #fff;
}

.navbar .fa-bars {
  color: #fff;
  background-color: #e18800;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  /* position: fixed;
  margin-right: 90px; */
  /* Make icon black when bg is white */
}
.fa-circle-xmark {
  font-size: 2rem;
}
.button-area button,
.button-area a {
  text-transform: uppercase;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  letter-spacing: 4px;
  font-weight: bold;
  /* color: #fff; */
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 8pt;
  transition: 0.3s ease;
}
.button-area button:hover,
.button-area a:hover {
  transform: scale(1.2);
}
.button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

.chaplain-text h1 {
  font-size: 45px;
  text-transform: uppercase;
  line-height: 65px;
  font-weight: bolder;
}
.chaplain-text-1 h1 {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bolder;
}

.chaplain-text-1 p {
  font-size: 15px;
  color: #7a7a7a;
  line-height: 26px;
  font-weight: 500;
}

.chaplain-text-img-1 img {
  max-width: 92%;
  height: auto;
}

.chaplain-text p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 25px;
}

.chaplain-text-img img {
  /* border-top-left-radius: 200px; */
  max-width: 100%;
  height: auto;
}

.dancing {
  font-family: "Dancing Script", cursive;
  font-size: 25px;
}

/* mission */
.mission h4 {
  font-size: 20px;
  /* font-family: "Libre Baskerville", serif; */
  line-height: 35px;
  color: #7a7a7a;
}

.links-alt {
  display: none !important;
}

@media screen and (max-width: 536px) {
  .chaplain-text h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .chaplain-text-1 h1 {
    font-size: 18px;
  }
  .mission h4 {
    font-size: 15px;
    line-height: 25px;
  }
  .post h2 {
    font-size: 25px;
  }
  .button-area button,
  .button-area a {
    /* color: #fff; */
    font-size: 6pt;
    transition: 0.3s ease;
    padding: 14px 21px;
  }
}

@media (max-width: 600px) {
  .button-area span {
    margin: 20px 0 0;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .overflow-y-auto-alt {
    overflow-y: auto !important;
  }
}
@media (min-width: 992px) {
  .navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .navbar.scrolled {
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1607843137) !important;
    background: #fff;
  }
  .logo {
    max-width: 100px;
  }
  .navbar.scrolled .logo {
    transform: scale(0.8);
  }

  .navbar:not(.scrolled) .logo {
    transform: scale(1);
  }
  .nav-link {
    color: #fff;
  }
  .dropdown > .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    display: block;
    transition: 0.5s ease;
  }

  .dropdown:hover > .dropdown-menu {
    padding: 20px 0;
    display: block;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .dropdown-item:hover {
    color: #fff;
    background-color: #271669;
  }

  .links {
    display: none !important;
  }
  .links-alt {
    display: block !important;
  }
}

span.test {
  position: relative;
  font-weight: bolder;
  font-family: "Libre Baskerville", serif;
  color: #e18800;
}

span.test:before {
  position: absolute;
  background: #6c757d;
  width: 55%;
  height: 1.5px;
  margin-bottom: 90px;
  content: " ";
  top: -80%;
}
.count-down ul li {
  color: #6d6d6d;
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: normal;
  list-style: none;
  text-align: center;
  width: 21%;
  padding: 1rem;
  background: #fff;
  border-bottom: 3px solid #e18800;
  border-radius: 3px;
}
.count-down ul li:nth-child(0) {
  margin-right: 0px;
}

.count-down ul li span {
  display: block;
  font-size: 3rem;
  color: #e18800;
  font-weight: bolder;
}

.events {
  background: url(../img/test-img.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-attachment: fixed;
}

.events .coverr {
  background-color: #0a0818ee;
}
.events .cover-alt {
  background-color: #06040e;
}
.news-card {
  width: 100%;

  /* border: 1px solid #ddd; */
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  /* padding: 20px; */
}

.image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  /* adjust font size */
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-container:hover .overlay {
  opacity: 1;
}

.content-container {
  padding-top: 20px;
}

.content-container h2 {
  font-weight: bold;
  font-size: 14px;
  font-weight: bolder;
  transition: 0.3s ease-in-out;

  line-height: 23px;
  margin-bottom: 10px;
  color: #000;
}

.content-container h2:hover {
  color: #e18800;
}

.meta-info {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  /* width: 100%; */
  display: flex;
  justify-content: space-between;
}

.date {
  /* margin-right: 20px; */
  font-size: 10px;
  color: #000;
}

.date i {
  color: #e18800;
}

@media only screen and (max-width: 767px) {
  .count-down li {
    font-size: 14px;
  }

  .count-down li span {
    font-size: 2rem;
  }

  @media only screen and (max-width: 646px) {
    .hide {
      display: none !important;
    }
  }
}
/* footer */

.footer {
  background-color: #06040e;
  padding: 4rem 0 2rem 0;
}
.footer .title-sm {
  color: #fafafa;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: "Libre Baskerville", serif;
  margin-bottom: 0.9rem;
}

.footer .text {
  color: #aaa;
  font-size: 16px;
}

.footer-links a {
  color: #888;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.4rem;
  text-transform: capitalize;
  transition: 0.3s;
}

.bottom-footer {
  margin-top: 5.5rem;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright .text {
  color: #7b7b7b;
  font-size: 1.2rem;
  display: inline-block;
  text-align: center;
}

.copyright .text span {
  color: var(--main-color);
  cursor: pointer;
}

.followme-wrap {
  display: flex;
}

.followme {
  display: flex;
  align-items: center;
}

.followme h3 {
  color: #7b7b7b;
  font-weight: 500;
  font-size: 1.3rem;
}

.followme .footer-line {
  width: 60px;
  height: 2px;
  background-color: #7b7b7b;
  margin: 0 1.2rem;
  display: inline-block;
}

.social-media a {
  color: #7b7b7b;
  font-size: 1.3rem;
  margin-right: 0.4rem;
  transition: 0.3s;
}

.social-media a:hover {
  color: #e18800;
}

.back-btn-wrap {
  position: relative;
  margin-left: 2.5rem;
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: #e18800;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.back-btn:hover {
  color: #fff;
}
.back-btn-wrap:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #fff;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 50%;
  opacity: 0.08;
  animation: scale 1.2s ease-out infinite 1s;
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* End Footer */
@media (max-width: 1280px) {
  .footer {
    padding: 4rem 0;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer .title-sm {
    margin-bottom: 0.5rem;
  }

  .footer-input-wrap {
    height: 36px;
    margin-top: 0.8rem;
  }

  .footer-input {
    font-size: 0.9rem;
    padding: 0 1.2rem;
  }

  .input-arrow {
    font-size: 1.2rem;
  }

  .copyright .text {
    font-size: 0.95rem;
  }

  .followme h3 {
    font-size: 1.05rem;
  }

  .followme .footer-line {
    margin: 0 0.8rem;
  }

  .social-media a {
    font-size: 1.05rem;
  }

  .back-btn-wrap {
    margin-left: 1.3rem;
  }

  .back-btn {
    width: 43px;
    height: 43px;
    font-size: 0.9rem;
  }

  .back-btn-wrap:before {
    width: 45px;
    height: 45px;
  }
}

.events .cut {
  height: 350px;
}

@media (max-width: 850px) {
  .footer .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-input-wrap {
    max-width: 300px;
    margin: 0.95rem auto 0 auto;
    grid-template-columns: auto 45px;
  }

  .bottom-footer {
    flex-direction: column;
    justify-items: center;
    align-items: center;
    padding: 1.5rem 0 0 0;
    margin-top: 2.5rem;
    position: relative;
  }

  .bottom-footer:before {
    content: "";
    position: absolute;
    width: 90%;
    max-width: 500px;
    height: 1px;
    background-color: #7b7b7b;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .followme-wrap {
    margin-top: 0.8rem;
  }
}
.volunteer_con {
  text-align: center;
}

.volunteer_con h2 {
  color: #000;
  letter-spacing: 2.5px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
}
.volunteer_con p {
  color: rgb(163, 161, 161);
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .volunteer_con {
    padding: 6px;
  }
  .volunteer_con h2 {
    line-height: 23px;
    font-size: 15px;
  }
  .events .cut {
    height: 400px;
  }
}
.linkk {
  margin-left: 80px;
  margin-top: -20px;
}

@media (max-width: 1026px) {
  .linkk {
    margin-left: 40px;
  }
}

/*-------------------------- About Us Style ------------------------------*/
.text-brand {
  color: #e18800;
}

.accordion-header {
  padding: 30px 0;
  background: transparent;
}

.accordion-body {
  padding-bottom: 35px;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
}
.accordion-item {
  border-bottom: 1px solid #cecece;
}

.about-sec {
  /* background: green; */

  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  z-index: 0;
}
.about-sec-text h1 {
  font-weight: bolder;
  text-transform: uppercase;
  /* font-family: "Libre Baskerville", serif; */
  /* color: #fff; */
  font-size: 45px;
}

.about-sec-text h1 span {
  color: #000;
  background-color: #e18800;
}

.about-sec-text p {
  color: rgba(34, 34, 34, 0.514);
  font-weight: 500;
  line-height: 30px;
}

.about-sec-breadcrumbs span:nth-child(2) {
  color: #e18800;
}

@media (max-width: 489px) {
  .about-sec-text h1 {
    font-size: 25px;
  }
  .about-sec-text p {
    line-height: 23px;
    font-size: 14px;
  }
}
.excos-card {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.excos-card .content {
  position: absolute;
  padding: 8px;
  bottom: 0;
  width: 100%;
  height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  flex-direction: column;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.781), rgba(0, 0, 0, 0));
  box-shadow: 0 -10 10px rgba(0, 0, 0, 0.1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  transition: bottom 0.5s;
  transition-delay: 0.8s;
}

.excos-card:hover .content {
  bottom: 0px;
  transition-delay: 0s;
}

.excos-card .imgbox img {
  transform: scale(1);
  transition: 0.5s;
  max-width: 100%;
  max-height: 100%;
}
.excos-card:hover .imgbox img {
  transform: scale(1.15);
}

.excos-card .content .contentBox h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bolder;
  font-size: 18px;
  /* z-index: 15; */
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  opacity: 1;
  /* transform: translate(20px, 30px);
  transition-delay: 0.6s; */
}

.excos-card:hover .content .contentBox h3 {
  opacity: 0;
  transform: translateY(0px);
}

.excos-card:hover .content .contentBox h3 span {
  opacity: 0;
}
.excos-card .content .contentBox h3 span {
  font-size: 12px;
  font-weight: bolder;
  text-transform: initial;
  color: rgba(255, 255, 255, 0.5);
}

.social {
  display: flex;
  position: absolute;
  top: 50%;
  left: 43%;
  transform: translate(-50%, -50%);
}

.social li {
  list-style: none;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
}

.excos-card:hover .content .social li {
  transform: translateY(0px);
  opacity: 1;
}
.social li a {
  width: 55px;
  height: 55px;
  background-color: #ffffff46;
  text-align: center;
  line-height: 55px;
  font-size: 18px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social li a .icon {
  position: relative;
  color: #fff;
  transition: 0.5s;
  z-index: 3;
}

.social li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e18800;
  transition: 0.5s;
  z-index: 2;
}

.social li a:hover:before {
  top: 0;
  background: #e18800;
}

.arch-image-link {
  position: relative;
  /* filter: brightness(0.5); */
  display: block;
}

.image-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s, transform 0.5s, box-shadow 0.5s;
  font-family: "Libre Baskerville", serif;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); */
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}

/* .arch-image-link:hover .image-description {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
} */

/* Show description on small screens */
/* @media (max-width: 768px) {
  .image-description {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }
} */

.arch-bg-img {
  transition: transform 0.5s, filter 0.5s, box-shadow 0.5s;
  filter: brightness(0.6);
  height: 250px;
  /* Added fixed height */
  object-fit: cover;
  /* Make image responsive */
  width: 100%;
  /* Make image full width */
}

.arch-image-link:hover .arch-bg-img {
  filter: brightness(0.4);
  background-color: #e18800;
  transform: scale(1.1);
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.8); */
}

/* blog style  */
/* .blog-card {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.news__center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 30px 0;
}


.news__center .news__display {
  background: #f5f5f5;
  padding: 9px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: #5F6567
}


.news__center .news__title {
  font-size: 50px;
  font-weight: 600;
  color: #000;
  margin: 25px 0;
}

.news__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
}

.news__tags {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.news__tags span {
  background: #f5f5f5;
  padding: 5px 10px;
  color: #5F6567;
  font-size: 11px;
  font-weight: 600;
  border-radius: 7px;
  text-transform: capitalize;
  margin: 10px 0;
}
.news__card-title h3{
  font-size: 25px;
  font-weight: bold;
  margin-top: -10px;
}
.news__card-title h3:hover {
 text-decoration: underline;
}

.news__card-desc p {
  font-size: 12px;
  color: #5F6567;
  line-height: 20px;
}