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

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

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

.course-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .course-list-header-inner {
    display: block;
  }
}
@media (max-width: 479px) {
  .course-list-header-inner .course-list-header-right {
    margin-top: 15px;
  }
}
.course-list-header-inner .course-list-header-right span {
  color: #242A2E;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  font-family: "Geologica", sans-serif;
}
.course-list-header-inner .course-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;
}
.course-list-header-inner .course-list-header-right select:focus-visible {
  outline: none;
  border: 1px solid #D9D9D9;
}
@media (max-width: 575px) {
  .course-list-header-inner .course-list-header-right select {
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    background-position: right 15px center;
  }
}

.course-list-container {
  padding-bottom: 60px;
}

.course-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1350px) {
  .course-list-grid {
    grid-template-columns: repeat(2, 420px);
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .course-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .course-list-grid {
    display: block;
  }
}

.event-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1350px) {
  .event-list-grid {
    grid-template-columns: repeat(2, 420px);
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .event-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .event-list-grid {
    display: block;
  }
}

.course-item-link {
  display: block;
  transition: transform 0.2s;
}
.course-item-link:hover {
  transform: translateY(-5px);
}

.event-item-link {
  display: block;
  transition: transform 0.2s;
}
.event-item-link:hover {
  transform: translateY(-5px);
}

.course-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 420px;
  height: 441px;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .course-item {
    width: 100%;
    height: auto;
    min-height: 441px;
  }
}
@media (max-width: 575px) {
  .course-item {
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}
.course-item:last-child {
  margin-bottom: 0;
}
.course-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.course-item figure {
  margin: 0;
  width: 100%;
  flex: none;
  height: 245px;
  overflow: hidden;
}
.course-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .course-item img {
    height: 200px;
  }
}

.event-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 420px;
  height: 441px;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .event-item {
    width: 100%;
    height: auto;
    min-height: 441px;
  }
}
@media (max-width: 575px) {
  .event-item {
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}
.event-item:last-child {
  margin-bottom: 0;
}
.event-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.event-item figure {
  margin: 0;
  width: 100%;
  flex: none;
  height: 245px;
  overflow: hidden;
}
.event-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .event-item img {
    height: 200px;
  }
}

.course-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0px 20px 20px 20px;
  gap: 8px;
  width: 100%;
  min-height: 176px;
  justify-content: flex-start;
}
.course-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #242A2E;
  margin: 0;
  width: 100%;
  line-height: 24px;
  height: 48px;
  display: flex;
  align-items: center;
}
.course-content p {
  font-size: 14px;
  color: #564F52;
  margin: 0;
  line-height: 22px;
  font-weight: 300;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.event-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0px 20px 20px 20px;
  gap: 8px;
  width: 100%;
  min-height: 176px;
  justify-content: flex-start;
}
.event-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #242A2E;
  margin: 0;
  width: 100%;
  line-height: 24px;
  height: 48px;
  display: flex;
  align-items: center;
}
.event-content p {
  font-size: 14px;
  color: #564F52;
  margin: 0;
  line-height: 22px;
  font-weight: 300;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.course-content-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}
@media (max-width: 1199px) {
  .course-content-row {
    flex-direction: column;
  }
}

.event-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (max-width: 1199px) {
  .event-content-row {
    display: block;
  }
}

.course-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242A2E;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .course-date {
    margin-top: 5px;
  }
}

.event-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242A2E;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .event-date {
    margin-top: 5px;
  }
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.course-meta span {
  font-size: 14px;
  color: #564F52;
  font-weight: 400;
}

.no-courses {
  text-align: center;
  padding: 60px 20px;
}
.no-courses p {
  font-size: 18px;
  color: #564F52;
}

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

