@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.scholarships {
  padding-top: 50px;
}
.scholarships__bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50dvh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 55.33% 36.25%;
}
.scholarships__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px;
}
.scholarships__content.-right {
  justify-content: flex-end;
}
.scholarships__text {
  z-index: 1;
  width: 100%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.89);
}
.scholarships__text p {
  color: #5c5c5c;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.scholarships-list {
  padding: 0 0 60px 0;
}
.scholarships-list__items {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  gap: 30px;
}
.scholarships-list__box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.scholarships-list__image {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.scholarships-list__image:hover {
  animation: bounce 1s ease-out 1;
}
.scholarships-list__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  gap: 10px;
}
.scholarships-list__title {
  margin-bottom: 20px;
  color: #5c5c5c;
  font-family: "Poppins-Bold";
  --font-size: 22px;
  --font-size-rem: 1.375rem;
  --line-height: 26px;
  --line-height-rem: 1.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.scholarships-list__description p {
  color: #5c5c5c;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.scholarships-list__button {
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  background-color: #002E6D;
  text-transform: uppercase;
  text-align: center;
  font-family: "Poppins-Bold";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22.4px;
  --line-height-rem: 1.4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.scholarships-list__button:hover {
  background-color: #0044a0;
}
@keyframes bounce {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0%);
  }
  75% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .scholarships-list__items {
    flex-direction: row;
  }
  .scholarships-list__content {
    padding: 0;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .scholarships__content {
    padding: 50px;
  }
  .scholarships__text {
    width: 50%;
    padding: 50px;
  }
  .scholarships-list {
    padding: 0 0 100px 0;
  }
  .scholarships-list__items {
    gap: 60px;
  }
}