@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@100;300;400;500;600;700;900&display=swap");

:root {
  /* Font */
  --main-font: 'Poppins', sans-serif;
  /* Color */
  --main-color: #fcc729;
  --second-color: #337def;
  --third-color: #232323;
  --fourth-color: #bbb9b9;
}

* {
  font-family: 'Poppins', sans-serif;
}

.one-page {
  min-height: 100dvh;
}

.news-box-wrapper .news-box-wrap:hover .news-box {
  border-color: var(--second-color) !important;
}

img {
  width: 100%;
  height: auto;
}

.news-box-wrapper .news-box-wrap .news-box .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}

.bg-main {
  background-color: var(--main-color);
}

.course .course-wrapper .row:nth-child(1) .head {
  font-size: 17px;
  font-weight: 500;
}

.course .course-wrapper .course-box-wrap .img-wrapper {
  height: 250px;
  overflow: hidden;
}

.course .course-wrapper .course-box-wrap .title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}

.course .course-wrapper .row:nth-child(1) .title {
  font-weight: 700;
}

.course .course-wrapper .row:nth-child(2) .desc {
  font-size: 18px;
}

.course-box-wrap:hover {
  border-color: var(--second-color) !important;
}

.course-box-wrap:hover .title {
  color: var(--second-color) !important;
}

.sub-title-course {
  font-size: 14px;
}