@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");
}
.rural-development {
  padding-bottom: 60px;
}
.rural-development h3 {
  margin-bottom: 10px;
  --font-size: 24px;
  --font-size-rem: 1.5rem;
  --line-height: 36px;
  --line-height-rem: 2.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.rural-development p {
  --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);
}
.rural-development li {
  margin: 0 0 16px 0;
}
.rural-development__gray-bg {
  display: flex;
  width: 100%;
  background-color: #ebebeb;
  margin: 30px 0;
}
.rural-development__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 30px 0;
}
.rural-development__content.-col {
  flex-direction: column;
}
.rural-development__content.-align-start {
  align-items: flex-start;
}
.rural-development__content.-gap-2x {
  gap: 40px;
}
.rural-development__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}
.rural-development__image.-full {
  width: auto;
  max-height: none;
  margin: 0 auto;
}
.rural-development__image.-book{
  width:560px;
  max-height: none;
}
.rural-development__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.rural-development__text.-full {
  width: 100%;
}
.rural-development__text .image {
  margin: 0 auto 30px auto;
}
.rural-development__button {
  display: flex;
  align-items: center;
  padding: 0.625em 1.25em;
  background-color: #002E6D;
  color: #ffffff;
  border: none;
  font-family: "Poppins-Bold";
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.rural-development__button:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/svg/pdf-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.rural-development__button:hover {
  background-color: #0044a0;
}
.rural-development__sub-title {
  text-align: center;
}
.rural-development__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding-top: 30px;
  gap: 30px;
}
.rural-development__box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .rural-development {
    padding-bottom: 100px;
  }
  .rural-development__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .rural-development__content {
    flex-direction: row;
  }
  .rural-development__image {
    width: 50%;
  }
  .rural-development__text {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .rural-development__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}