.researchSection {
  padding-bottom: 20px;
}
.researchTitle {
  background: var(--accent-color);
  height: 110px;
  padding: 20px;
  width: 56%;
  color: #ffffff;
  margin-top: -50px;
  font-size: 48px;
  font-family: Romantic;
  font-weight: 700;
}
.researchTitleText {
  margin-bottom: 0rem !important;
}
.researchItem {
  height: 100%;
}
/* .researchCardImageContainer {
  max-height: 250px;
} */
.cardImgTop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1200px) {
  .researchTitle {
    font-size: 50px;
    width: 70%;
  }
}
@media screen and (max-width: 992px) {
  .researchTitle {
    font-size: 4px;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .researchTitle {
    font-size: 24px;
    width: 80%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .researchTitle {
    padding-left: 40px !important;
  }
  .researchTitleText {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .researchTitle {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .researchTitle {
    font-size: 20px;
  }
}
@media (max-width: 370px) {
  .researchTitle {
    font-size: 20px;
    padding: 40px 0px 1px 0;
  }
}

.researchCountCard {
  text-align: center;
  padding-top: 20px;
  min-height: 100px;
}

.researchCardTitle {
  margin-bottom: 12px;
  font-family: Poppins;
  color: rgba(34, 35, 35, 0.85);
  font-weight: bold;
  font-size: 16px;
  height: 75px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.researchCardText {
  margin-bottom: 0;
  font-family: "Romantic";
  color: rgba(34, 35, 35, 0.8);
  font-weight: normal;
  font-size: 18px;
}

.date-time {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  color: black;
}

.researchItem {
  background: #fff !important;
  /*border: 1px solid gray;*/
  overflow: hidden;
  border-radius: 7px;
  transition: 0.5s ease-in-out;
  box-shadow: rgba(255, 255, 255, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.researchItem:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transform: scale(1.01);
}

.researchIcon {
  width: 20%;
}
@media screen and (max-width: 575px) {
  .researchIcon {
    width: 20%;
  }
}
.research-header {
  font-family: "Poppins";
  font-size: 25px;
  font-weight: bold;
}

.researchMore {
  font-family: "Poppins";
  font-size: 14px;
  color: rgb(50, 165, 236);
  font-weight: 550;
  text-decoration: none;
}
.resCardDesc {
  padding: 15px;
}
@media screen and (max-width: 575px) {
  .resCardDesc5 {
    padding: 25px;
  }
}
@media screen and (max-width: 580px) {
  .phoneCenter {
    margin-right: auto;
    margin-left: auto;
  }
}

.researchFloatingBg {
  position: absolute;
  right: -350px;
  top: 160px;
  width: 30%;
  animation: rotateScale 6s ease-in-out infinite alternate;
  opacity: 0.8;
}
@keyframes rotateScale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.05);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-5deg) scale(0.95);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.floating-bg2 {
  width: 30%;
  position: absolute;
  left: -130px;
  top: 108px;
  animation: floatUpDown 20s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes floatUpDown {
  0% {
    transform: rotate(0deg) translateY(0) scale(1);
  }
  25% {
    transform: rotate(20deg) translateY(-20px) scale(1.05);
  }
  50% {
    transform: rotate(0deg) translateY(0) scale(1);
  }
  75% {
    transform: rotate(-20deg) translateY(20px) scale(0.95);
  }
  100% {
    transform: rotate(0deg) translateY(0) scale(1);
  }
}
.researchCardImageContainer img {
  --gap: 1px; /* the gap */
  --border: 8px; /* border thickness*/
  --color: rgb(84, 192, 228); /* the color */

  padding: calc(var(--gap) + var(--border));
  --_c: #0000 0 25%, var(--color) 0 50%;
  --_g1: repeating-linear-gradient(90deg, var(--_c)) repeat-x;
  --_g2: repeating-linear-gradient(180deg, var(--_c)) repeat-y;
  background: var(--_g1) var(--_p, 25%) 0, var(--_g2) 0 var(--_p, 125%),
    var(--_g1) var(--_p, 125%) 100%, var(--_g2) 100% var(--_p, 25%);
  background-size: 200% var(--border), var(--border) 200%;
  cursor: pointer;
  transition: 0.3s;
}
.researchCardImageContainer img:hover {
  --_p: 75%;
  filter: brightness(110%);
}
