@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  color: #242A2E;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  background: #fff;
}

a {
  color: #242A2E;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:focus {
  outline: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geologica", sans-serif;
  margin: 0;
}

.link-btn {
  background: #FFC013;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #FFC013;
  display: flex;
  align-items: center;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .link-btn {
    font-size: 14px;
  }
}
.link-btn svg {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .link-btn svg {
    width: 21px;
  }
}
.link-btn:hover {
  background: #fff;
  color: #FFC013;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1 {
  color: #FFC013;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 56px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
}
h1 span {
  color: #FFC013;
}

h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-transform: capitalize;
  color: #242A2E;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  color: #FFC013;
}
h2 font {
  color: #055D62;
}

h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

p {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

.green-border-btn {
  border: 1px solid #055D62;
  background: rgba(255, 255, 255, 0.2);
}
.green-border-btn:hover {
  background: #055D62;
  border: 1px solid #055D62;
  color: #fff;
}
.green-border-btn:hover svg path:last-child {
  stroke: #fff;
}

.grey-border-btn {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #242A2E;
}
.grey-border-btn:hover {
  background: #D9D9D9;
  color: #242A2E;
}

.transparent-btn {
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.transparent-btn svg path:last-child {
  stroke: #fff;
}
.transparent-btn:hover {
  background: #FFC013;
  color: #fff;
  border: 1px solid #FFC013;
}
.transparent-btn:hover svg path:first-child {
  fill: #fff;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  color: #242A2E;
  margin: 0;
  margin-bottom: 10px;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  bottom: 70px;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background-color: #F8F8F8;
  z-index: 9;
  right: auto;
  top: auto;
  bottom: 0;
}
@media (max-width: 991px) {
  .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.slick-arrow:before {
  content: "" !important;
}
.slick-arrow.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-prev {
    margin-left: -25px;
  }
}
.slick-arrow.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-next {
    margin-left: 25px;
  }
}
.slick-arrow:hover, .slick-arrow:focus {
  background-color: #075D61 !important;
}
.slick-arrow:hover.slick-prev, .slick-arrow:focus.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:hover.slick-next, .slick-arrow:focus.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:before {
  content: "";
}

.grid-block .slick-arrow {
  top: auto;
  width: 32px !important;
  height: 32px !important;
  left: 50%;
  right: auto;
  border: 1px solid #075D61;
  bottom: -50px !important;
  background-size: 10px !important;
  background-color: #fff;
}
.grid-block .slick-arrow::before {
  content: "" !important;
  opacity: 1 !important;
}

.center-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.center-heading p {
  font-weight: 300;
}

body.popup-open {
  overflow: hidden;
}

.event-list-header {
  padding: 20px 0 50px;
  overflow: visible;
}
@media (max-width: 991px) {
  .event-list-header {
    padding: 20px 0 30px;
  }
}

.event-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  position: relative;
}
@media (max-width: 479px) {
  .event-list-header-inner {
    display: block;
    overflow: visible;
  }
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right {
    margin-top: 15px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
}
.event-list-header-inner .event-list-header-right {
  /* Frame 1000006104 */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  gap: 15px;
  width: auto;
  max-width: calc(100% - 100px);
  height: 51px;
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
  margin-right: 80px;
  z-index: 10;
}
@media (max-width: 991px) {
  .event-list-header-inner .event-list-header-right {
    margin-right: 60px;
    max-width: calc(100% - 100px);
  }
}
@media (max-width: 767px) {
  .event-list-header-inner .event-list-header-right {
    margin-right: 20px;
    max-width: calc(100% - 40px);
  }
}
.event-list-header-inner .event-list-header-right span {
  /* Sort by: */
  width: 61px;
  height: 20px;
  font-family: "Geologica", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: #242A2E;
  flex: none;
  order: 0;
  flex-grow: 0;
  display: inline-block;
}
.event-list-header-inner .event-list-header-right .custom-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown {
    margin-left: 10px;
  }
}
.event-list-header-inner .event-list-header-right .custom-filter-dropdown {
  position: relative;
  display: inline-block;
  flex: 1;
  max-width: 100%;
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right .custom-filter-dropdown {
    flex: 1;
    max-width: calc(100% - 76px);
    min-width: 0;
  }
}

.event-list-header-inner .event-list-header-right .custom-filter-dropdown select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-button {
  /* Buttons */
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  gap: 5px;
  width: 159px;
  max-width: 159px;
  min-width: 120px;
  height: 51px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #D9D9D9;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  flex: none;
  order: 1;
  flex-grow: 0;
  cursor: pointer;
  overflow: hidden;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-button .dropdown-text {
  /* All Resources */
  width: 99px;
  height: 21px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: #565051;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-button svg {
  /* chevron-down */
  width: 15px;
  height: 15px;
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-button svg path {
  /* Icon */
  stroke: #242A2E;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 159px;
  max-width: 159px;
  min-width: 159px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown-menu {
    left: auto;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

.event-list-header-inner .event-list-header-right .custom-filter-dropdown.active .custom-dropdown-menu {
  display: block;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-option {
  padding: 12px 20px;
  color: #565051;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-option:hover {
  background-color: #F5F5F5;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-option.active {
  background-color: #FFF5E6;
  color: #333333;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-option:first-child {
  border-radius: 12px 12px 0 0;
}

.event-list-header-inner .event-list-header-right .custom-dropdown-option:last-child {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown-button {
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    width: 120px;
    max-width: 120px;
    min-width: 120px;
  }
  .event-list-header-inner .event-list-header-right .custom-dropdown-menu {
    width: 120px;
    max-width: 120px;
    min-width: 120px;
  }
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown-button {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 12px 20px;
    justify-content: space-between;
  }
  .event-list-header-inner .event-list-header-right .custom-dropdown-button .dropdown-text {
    flex: 1;
    width: auto;
    max-width: calc(100% - 25px);
    min-width: 0;
  }
  .event-list-header-inner .event-list-header-right .custom-filter-dropdown {
    position: relative;
    z-index: 1001;
  }
  .event-list-header-inner .event-list-header-right .custom-dropdown-menu {
    z-index: 1002;
  }
}

.view-all-btn {
  margin-top: 50px;
}
.view-all-btn .link-btn {
  margin: 0 auto;
  padding: 9px 46px;
}

.iti.iti--allow-dropdown {
  width: 100% !important;
}

.iti__country-list {
  white-space: normal !important;
  z-index: 9 !important;
}
.iti__country-list .iti__country {
  width: 100%;
  min-width: 250px;
}
@media (max-width: 575px) {
  .iti__country-list .iti__country {
    min-width: 100%;
  }
}

.grey-bg {
  background: #F8F8F8;
}
.grey-bg .event-card {
  background: #fff;
}

.no-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}

html, body {
  touch-action: manipulation;
}

.image-section {
  touch-action: manipulation;
}

.resources-main {
  background: #F8F8F8;
  padding-bottom: 67px;
}
.resources-main .resources-list-inner {
  display: grid;
  grid-template-columns: repeat(2, 644px);
  gap: 30px;
  justify-content: center;
}
@media (max-width: 991px) {
  .resources-main .resources-list-inner {
    grid-template-columns: repeat(1, 644px);
  }
}
@media (max-width: 767px) {
  .resources-main .resources-list-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.resources-main .resources-list-inner .resources-item {
  /* Frame 1000006200 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  width: 644px;
  height: 180px;
  background: #FFFFFF;
  border-radius: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .resources-main .resources-list-inner .resources-item {
    width: 100%;
  }
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-title a {
  color: #242A2E;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-title a:hover {
  color: #075D61;
  text-decoration: underline;
}
.resources-main .resources-list-inner .resources-item .resource-row-wrapper {
  /* Frame 1000005812 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  height: 140px;
  flex: 1 1 auto;
  order: 0;
  align-self: stretch;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .resources-main .resources-list-inner .resources-item .resource-row-wrapper {
    height: auto;
    min-height: 140px;
  }
}
.resources-main .resources-list-inner .resources-item .resource-icon {
  /* Frame 1000006199 */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 140px;
  height: 140px;
  min-width: 140px;
  border-radius: 12px;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
}
.resources-main .resources-list-inner .resources-item .resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.resources-main .resources-list-inner .resources-item .resource-icon svg {
  width: 62.92px;
  height: 50px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
@media (max-width: 1199px) {
  .resources-main .resources-list-inner .resources-item .resource-icon {
    width: 120px;
    height: 120px;
    min-width: 120px;
    padding: 20px;
  }
  .resources-main .resources-list-inner .resources-item .resource-icon svg {
    width: 50px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .resources-main .resources-list-inner .resources-item .resource-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 15px;
  }
  .resources-main .resources-list-inner .resources-item .resource-icon svg {
    width: 45px;
    height: 35px;
  }
}
.resources-main .resources-list-inner .resources-item.video-row .resource-icon {
  background: linear-gradient(0deg, #FFF3F3, #FFF3F3), url(.png);
}
.resources-main .resources-list-inner .resources-item.quiz-row .resource-icon {
  background: linear-gradient(0deg, #FDFBE6 0%, #FDFBE6 100%);
}
.resources-main .resources-list-inner .resources-item .resource-content {
  /* Frame 1000006067 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 100%;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  order: 1;
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-title {
  /* Startup Idea Validation Worksheet */
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  font-family: "Geologica", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #242A2E;
  flex: 0 1 auto;
  order: 0;
  align-self: stretch;
  margin: 0;
  padding: 0;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-word;
  white-space: normal !important;
  min-width: 0 !important;
}
@media (max-width: 1199px) {
  .resources-main .resources-list-inner .resources-item .resource-content .resource-title {
    font-size: 20px;
    line-height: 26px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    word-break: break-word;
    white-space: normal !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 767px) {
  .resources-main .resources-list-inner .resources-item .resource-content .resource-title {
    font-size: 18px;
    line-height: 24px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    word-break: break-word;
    white-space: normal !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-description {
  /* Define your core assumptions and test your business idea. */
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #564F52;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1199px) {
  .resources-main .resources-list-inner .resources-item .resource-content .resource-description {
    font-size: 14px;
    line-height: 18px;
  }
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-label {
  /* Frame 1000005823 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  flex: none;
  order: 2;
  flex-grow: 0;
  margin-top: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-label svg {
  width: 30px;
  height: 30px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-label span {
  /* Startup Strategy & Business Models */
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #564F52;
  flex: 1;
  order: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .resources-main .resources-list-inner .resources-item .resource-content .resource-label {
    gap: 8px;
  }
  .resources-main .resources-list-inner .resources-item .resource-content .resource-label svg {
    width: 24px;
    height: 24px;
  }
  .resources-main .resources-list-inner .resources-item .resource-content .resource-label span {
    font-size: 14px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
  }
}
.resources-main .resources-list-inner .resources-item .resource-content .resource-label .resource-column {
  display: flex;
  align-items: center;
  gap: 10px;
}
.resources-main .load-more {
  margin-top: 50px;
}
.resources-main .load-more .link-btn {
  margin: 0 auto;
}
.resources-main .load-more .link-btn:hover {
  background: #075D61;
  border-color: #075D61;
  color: #fff;
}

/*# sourceMappingURL=resources.css.map */

