@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Satoshi', sans-serif;
  color: #474747;
}

.hero-section {
  position: relative;
  margin-bottom: 4rem;
}

.hero-section .hero-section-image {
  position: relative;
  height: 300px;
}

.hero-section .hero-section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-section .hero-section-image .hero-section-image-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.5%, #f090006b), to(rgba(153, 153, 153, 0)));
}

.hero-section .hero-section-content {
  position: absolute;
  top: 50%;
  left: 7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
}

.hero-section .hero-section-content h1 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #16154D;
}

.hero-section .hero-section-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #16154D;
}

.resources-library-content-page {
  padding: 0 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.resources-library-content-page .resources-library-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.resources-library-content-page .resources-library-top .pages-content {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.resources-library-content-page .resources-library-top .pages-content-text, .resources-library-content-page .resources-library-top .pages-content-count {
  font-size: 1rem;
  color: #474747;
}

.resources-library-content-page .resources-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.resources-library-content-page .resources-content .resources-navigation {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.resources-library-content-page .resources-content .resources-navigation .title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.resources-library-content-page .resources-content .resources-navigation .filter-form {
  position: relative;
}

.resources-library-content-page .resources-content .resources-navigation .filter-form .filter-form-input {
  width: 100%;
  height: 48px;
  padding: 0 3rem 0 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
}

.resources-library-content-page .resources-content .resources-navigation .filter-form .filter-form-input:focus {
  outline: none;
  border-color: #F09000;
}

.resources-library-content-page .resources-content .resources-navigation .filter-form img {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.resources-library-content-page .resources-content .resources-navigation .category-list,
.resources-library-content-page .resources-content .resources-navigation .content-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.resources-library-content-page .resources-content .resources-navigation .category-list li,
.resources-library-content-page .resources-content .resources-navigation .content-type-list li {
  list-style: none;
}

.resources-library-content-page .resources-content .resources-navigation .category-list li a,
.resources-library-content-page .resources-content .resources-navigation .content-type-list li a {
  color: #474747;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.resources-library-content-page .resources-content .resources-navigation .category-list li a:hover, .resources-library-content-page .resources-content .resources-navigation .category-list li a.active,
.resources-library-content-page .resources-content .resources-navigation .content-type-list li a:hover,
.resources-library-content-page .resources-content .resources-navigation .content-type-list li a.active {
  color: #F09000;
}

.resources-library-content-page .resources-content .resources-list {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.resources-library-content-page .resources-content .resources-list .main-resource {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  -webkit-box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.resources-library-content-page .resources-content .resources-list .main-resource:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.resources-library-content-page .resources-content .resources-list .main-resource .main-resource-image {
  width: 12rem;
  height: 8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.resources-library-content-page .resources-content .resources-list .main-resource .main-resource-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}

.resources-library-content-page .resources-content .resources-list .main-resource .resource-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list .sub-resource-item {
  position: relative;
  width: calc(25% - 0.75rem);
  min-height: 220px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #E2E8F0;
  -webkit-box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list .sub-resource-item .resource-item-image {
  width: 100%;
  height: 100%;
  max-height: 8rem;
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list .sub-resource-item .resource-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list .sub-resource-item .resource-item-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
}

.resources-library-content-page .resources-content .resources-list .resources-sub-list .sub-resource-item .resource-item-details h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
/*# sourceMappingURL=resources-library.css.map */