@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;
}
@media (max-width: 991px) {
  .event-list-header {
    padding: 20px 0 30px;
  }
}

.event-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .event-list-header-inner {
    display: block;
  }
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right {
    margin-top: 15px;
  }
}
.event-list-header-inner .event-list-header-right span {
  color: #242A2E;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  font-family: "Geologica", sans-serif;
}
.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 select {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 15px 40px 15px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16" fill="none"><path d="M3.75 6.125L7.5 9.875L11.25 6.125" stroke="%23242A2E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #565051;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-left: 15px;
}
.event-list-header-inner .event-list-header-right select:focus-visible {
  outline: none;
  border: 1px solid #D9D9D9;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right select {
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    background-position: right 15px center;
  }
}

.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;
}

.resource-detail-main {
  background: #F8F8F8;
  padding-bottom: 87px;
  padding-top: 20px;
}
.resource-detail-main .breadcrumb-main {
  margin-bottom: 30px;
  border-top: none;
  background: transparent !important;
  padding: 0;
}
.resource-detail-main .breadcrumb-main ul {
  color: #242A2E;
}
.resource-detail-main .breadcrumb-main ul li {
  color: #242A2E;
}
.resource-detail-main .breadcrumb-main ul li a {
  color: #242A2E;
}
.resource-detail-main .breadcrumb-main.white-bg {
  background: transparent !important;
}
.resource-detail-main .breadcrumb-main .container {
  padding: 0;
}
.resource-detail-main .resource-detail-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .resource-detail-main .resource-detail-inner {
    flex-direction: column;
  }
}
.resource-detail-main .resource-detail-content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}
.resource-detail-main .resource-description p {
  margin: 0;
  margin-bottom: 20px;
  color: #242A2E;
  font-weight: 300;
  line-height: 22px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.resource-detail-main .resource-description p:last-child {
  margin-bottom: 0;
}
.resource-detail-main .resource-detail-card {
  width: 100%;
  min-width: 0;
}
.resource-detail-main .resource-detail-card h2 {
  font-size: 40px;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
  max-width: 100%;
}
.resource-detail-main .download-section {
  border-radius: 10px;
  border: 1px solid #C8E1E3;
  background: #E3F0F1;
  padding: 30px 20px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}
.resource-detail-main .download-section .download-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  min-height: 50px;
}
.resource-detail-main .download-section .download-box.download-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.resource-detail-main .download-section .download-box .download-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.resource-detail-main .download-section .download-box .download-left .download-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-detail-main .download-section .download-box .download-left .download-text {
  color: #075D61;
  font-size: 18px;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .resource-detail-main .download-section .download-box .download-left .download-text {
    font-size: 16px;
  }
}
.resource-detail-main .download-section .download-box .download-right {
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .resource-detail-main .download-section .download-box .download-right {
    font-size: 14px;
  }
}
.resource-detail-main .download-section .download-box.download-disabled .download-link {
  pointer-events: none;
  cursor: not-allowed;
}
.resource-detail-main .download-section .download-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
  gap: 15px;
}
.resource-detail-main .download-section .download-restriction-message {
  margin-top: 15px;
  color: #D63D27;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.resource-detail-main .course-sidebar {
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .resource-detail-main .course-sidebar {
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .resource-detail-main .course-sidebar {
    max-width: 100%;
    width: 100%;
  }
}
.resource-detail-main .course-box {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 20px;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #C8E1E3;
  background: #FFFFFF;
  width: 100%;
  max-width: 420px;
}
.resource-detail-main .course-box h4 {
  width: 100%;
  font-family: "Geologica", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #242A2E;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: none;
  align-self: stretch;
}
.resource-detail-main .course-box figure {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  margin: 0;
  flex: none;
  align-self: stretch;
}
.resource-detail-main .course-box figure img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.resource-detail-main .course-box h5 {
  width: 100%;
  font-family: "Geologica", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: #242A2E;
  margin: 0;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex: none;
  align-self: stretch;
}
.resource-detail-main .course-box p {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #242A2E;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex: none;
  align-self: stretch;
}
.resource-detail-main .course-box .course-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-wrap: wrap;
  margin: 0;
}
.resource-detail-main .course-box .course-time svg {
  width: 26px;
  height: 26px;
  flex: none;
  flex-grow: 0;
}
.resource-detail-main .course-box .course-time span {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #242A2E;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: none;
  flex-grow: 0;
}
.resource-detail-main .course-box .course-enroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 100%;
  flex: none;
  align-self: stretch;
  margin-top: 0;
}
.resource-detail-main .course-box .course-enroll::before {
  content: "";
  width: 100%;
  height: 0px;
  opacity: 0.1;
  border-top: 1px solid #000000;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.resource-detail-main .course-box .course-enroll .link-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  background: #FFC017;
  border: 1px solid #FFC013;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: #000000;
  flex: none;
  order: 1;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .resource-detail-main .course-box .course-enroll .link-btn {
    padding: 9px 24px;
    min-height: auto;
  }
}
.resource-detail-main .error-message {
  width: 100%;
  padding: 20px;
  background: #FFF3F3;
  border: 1px solid #D63D27;
  border-radius: 10px;
  text-align: center;
}
.resource-detail-main .error-message p {
  margin: 0;
  color: #D63D27;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.resource-detail-main .start-quiz-section {
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .resource-detail-main .start-quiz-section {
    margin-top: 30px;
  }
}
.resource-detail-main .start-quiz-section .start-quiz-btn {
  padding: 9px 36px;
}
@media (max-width: 767px) {
  .resource-detail-main .start-quiz-section .start-quiz-btn {
    padding: 9px 24px;
  }
}

/*# sourceMappingURL=resource-detail.css.map */
