.resource-hub {
  background-color: #132C55;
  color: #fff;
  padding-top: 91px;
}
.resource-hub .texts-wrapper {
  position: relative;
  padding: 20px 0;
}
.resource-hub .texts-wrapper:before, .resource-hub .texts-wrapper:after {
  content: url("../svg/resources-hub-leftsvg.svg");
  position: absolute;
}
.resource-hub .texts-wrapper:after {
  content: url("../svg/resources-hub-right.svg");
  right: 0;
  top: 26px;
}
.resource-hub .texts-wrapper:before {
  left: 0;
  top: 37px;
}
.resource-hub .subtitle-wrapper {
  text-align: center;
}
.resource-hub .subtitle-wrapper .subtitle-item {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
  color: #A4C5FC;
}
.resource-hub .title-wrapper {
  padding-top: unset;
  max-width: 852px;
  margin: 22px auto 38px;
  text-align: center;
}
.resource-hub .title-wrapper .title-item,
.resource-hub .title-wrapper .title-item * {
  font-family: "IBM Plex Serif", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 57.6px;
}
.resource-hub .text-wrapper {
  max-width: 586px;
  margin: 0 auto;
  text-align: center;
}
.resource-hub .text-wrapper .text-item {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30.8px;
  text-align: center;
  color: #fff;
}
.resource-hub .resources-links {
  margin: 51px auto 0;
  padding-bottom: 32px;
  padding: 0 10px;
}
.resource-hub .resources-links h2 {
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 40px;
}
.resource-hub .resources-links .links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
  column-gap: 16px;
}
.resource-hub .resources-links .links-wrapper .link-item {
  height: 340px;
  background-color: #EEF5FF;
  border-radius: 10px;
  border-top: 8px solid #498BF9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s all;
}
.resource-hub .resources-links .links-wrapper .link-item .link-desc {
  padding: 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 165px;
}
.resource-hub .resources-links .links-wrapper .link-item .cta-text {
  color: #333333;
  font-family: "IBM Plex Serif", Serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  transition: 0.3s all;
}
.resource-hub .resources-links .links-wrapper .link-item .cta-icon {
  display: flex;
  overflow: hidden;
  justify-content: center;
}
.resource-hub .resources-links .links-wrapper .link-item img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
}
.resource-hub .resources-links .links-wrapper .link-item .btn_hub {
  color: #498BF9;
  border: 2px solid #498BF9;
  margin: 24px 0;
  width: 120px;
}
.resource-hub .resources-links .links-wrapper .link-item .btn_hub:hover {
  background-color: #498BF9;
  color: #fff;
}
.resource-hub .resources-links .links-wrapper .link-item:hover {
  border-top-color: #41C46E;
}
.resource-hub .resources-links .links-wrapper .link-item:hover .cta-text {
  color: #41C46E;
}
.resource-hub .resources-links .links-wrapper .link-item:hover a {
  background-color: #498BF9;
  color: #fff;
}
.resource-hub .explore_banner {
  background-color: #498BF9;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 37px;
  margin-top: 70px;
}
.resource-hub .explore_banner h2 {
  color: #fff;
  font-size: 32px;
  line-height: 42px;
}
.resource-hub .explore_banner .title_wrapper {
  display: flex;
  max-width: 720px;
  width: 100%;
}
.resource-hub .explore_banner .btn_hub {
  color: #fff;
  border: 2px solid #fff;
  width: 220px;
}
.resource-hub .explore_banner .btn_hub:hover {
  background-color: #629DFF;
}
.resource-hub .explore_banner img {
  padding-right: 20px;
}
.resource-hub .btn_hub {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .resource-hub .texts-wrapper {
    padding: 0 24px;
  }
  .resource-hub .texts-wrapper:before {
    content: unset;
  }
  .resource-hub .texts-wrapper:after {
    content: "";
    position: static;
    text-align: center;
    width: 100%;
    height: 43px;
    display: block;
    background: url("../svg/resources-hub-bottom.svg") no-repeat center;
    margin-top: 30px;
  }
  .resource-hub .title-wrapper {
    margin: 16px auto;
    max-width: 427px;
  }
  .resource-hub .title-wrapper .title-item,
  .resource-hub .title-wrapper .title-item * {
    line-height: 41.6px;
    font-size: 32px;
  }
  .resource-hub .text-wrapper {
    max-width: 327px;
    margin: 0 auto;
  }
  .resource-hub .text-wrapper .text-item {
    font-size: 18px;
    line-height: 25.2px;
  }
  .resource-hub .resources-links .links-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  .resource-hub .resources-links .links-wrapper .link-item {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
  .resource-hub .explore_banner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .resource-hub .title_wrapper {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .resource-hub .explore_banner h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .resource-hub .explore_banner .title_wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .resource-hub .resources-links h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .resource-hub .resources-links .links-wrapper .link-item .cta-text br {
    display: none;
  }
}