@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css");

:root {
  /* Primary Colors */
  --deep-forest-green-100: #1a2921;
  --deep-forest-green-80: #484f4b;
  --deep-forest-green-60: #777b78;
  --deep-forest-green-40: #a5a8a6;
  --deep-forest-green-20: #d2d4d3;
  
  --warm-neutral-gray-100: #918782;
  --warm-neutral-gray-80: #a79f9b;
  --warm-neutral-gray-60: #bdb7b5;
  --warm-neutral-gray-40: #d3cfce;
  --warm-neutral-gray-20: #e9e7e6;
  
  /* Secondary Colors */
  --teal-accent-100: #26a69c;
  --teal-accent-80: #51b8b0;
  --teal-accent-60: #7dcac4;
  --teal-accent-40: #a8dbd7;
  --teal-accent-20: #d3edeb;
  
  --chartreuse-accent-100: #b5ba12;
  --chartreuse-accent-80: #c4c841;
  --chartreuse-accent-60: #d2d670;
  --chartreuse-accent-40: #e1e59f;
  --chartreuse-accent-20: #f0f2cf;
  
  --earthy-brown-accent-100: #a68f70;
  --earthy-brown-accent-80: #b8a68d;
  --earthy-brown-accent-60: #cbbeaa;
  --earthy-brown-accent-40: #ddd5c8;
  --earthy-brown-accent-20: #eeeae3;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

body {
  color: var(--deep-forest-green-100);
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
}

a {
  color: var(--deep-forest-green-80);
}

a,
button,
a:hover {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
.btn {
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif !important;
  text-decoration: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus,
.btn:active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

a:active {
  outline: 0;
}

:focus {
  outline: 0;
}

button {
  box-shadow: none;
  cursor: pointer;
  background-image: none !important;
}

input {
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
  overflow: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
}
p:last-child {
  margin: 0;
}
.container-wrapper {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 8px;
}
.row-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.no-gap > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.no-gap {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  position: relative;
  padding-left: 8px;
  padding-right: 8px;
}
.col-1 {
  flex: 0 0 8.33%;
  max-width: 8.33%;
}
.col-2 {
  flex: 0 0 16.66%;
  max-width: 16.66%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.col-5 {
  flex: 0 0 41.66%;
  max-width: 41.66%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33%;
  max-width: 58.33%;
}
.col-8 {
  flex: 0 0 66.66%;
  max-width: 66.66%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33%;
  max-width: 83.33%;
}
.col-11 {
  flex: 0 0 91.66%;
  max-width: 91.66%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.offset-3 {
  margin-left: 25%;
}
.align-self-center {
  align-self: center !important;
}
.align-item-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.text-center {
  text-align: center !important;
}
.m-auto {
  margin: 0 auto !important;
}
.m-0 {
  margin: 0 !important;
}
.bg_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1 {
    font-size: 80px;
    line-height: 96px;
}

.h2 {
    font-size: 72px;
    line-height: 80px;
}

.h3 {
    font-size: 64px;
    line-height: 72px;
}

.h4 {
    font-size: 56px;
    line-height: 64px;
}

.h5 {
    font-size: 48px;
    line-height: 56px;
}

.h6 {
    font-size: 40px;
    line-height: 48px;
}

.sub-heading-title {
  font-size: 24px;
  line-height: 32px;
}

.section-main-title {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.font-700, .font-bold {
    font-weight: bold !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-300 {
    font-weight: 300 !important;
}

.field-control {
    width: 100%;
    height: auto;
    color: var(--deep-forest-green-60);
    font-size: 16px;
    font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    padding: 11px 16px;
    background: #fff;
    border: 1px solid var(--warm-neutral-gray-40);
    border-radius: 4px;
}

.field-control:focus {
    border-color: var(--deep-forest-green-80) !important;
}

.field-control:active {
    color: var(--deep-forest-green-100);
}

.field-control::-webkit-input-placeholder {
  color: var(--deep-forest-green-60);
}

.field-control:-moz-placeholder {
  color: var(--deep-forest-green-60);
}

.field-control::-moz-placeholder {
  color: var(--deep-forest-green-60);
}

.field-control::placeholder {
  color: var(--deep-forest-green-60);
}

.field-icon-group {
    position: relative;
}

.field-icon-group .icon-img {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.field-icon-group .icon-img > i {
  font-size: 24px;
  color: var(--deep-forest-green-100);
}

.field-icon-group .field-control {
    padding-left: 56px;
}

.field-icon-group.right-type .icon-img {
    left: auto;
    right: 16px;
}

.field-icon-group.right-type .field-control {
    padding-right: 56px;
    padding-left: 16px;
}

.auth-info .white-btn {
    margin-right: 5px;
}

.primary-btn {
    display: inline-flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--deep-forest-green-80);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.white-btn {
    display: inline-flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #fff;
    color: var(--deep-forest-green-80);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.sm-btn {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}

.xs-btn {
    font-size: 10px;
    line-height: 16px;
    font-weight: 600;
}

/*----*/

.explore-course-section {
  position: relative;
  padding: 64px 0 32px 0;
}

.explore-course-box {
  position: relative;
  margin-bottom: 16px;
}

.explore-course-box .explore-cat-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 8px;
  z-index: 100;
}

.explore-cat-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(180deg, rgba(26, 32, 41, 0.00) 0%, var(--deep-forest-green-100) 100%);
  background: -moz-linear-gradient(180deg, rgba(26, 32, 41, 0.00) 0%, var(--deep-forest-green-100) 100%);
  background: linear-gradient(180deg, rgba(26, 32, 41, 0.00) 0%, var(--deep-forest-green-100) 100%);
  z-index: 1;
}

.explore-cat-link .sub-heading-title {
  color: #fff;
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  text-shadow: 0px 4px 8px rgba(13, 16, 20, 0.16);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sm-box .explore-cat-link .sub-heading-title {
  width: 114px;
}

.courses-listing-section {
  position: relative;
  padding: 16px 0;
}

.course-info-box {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(26, 32, 41, 0.16);
  background: #FFF;
  overflow: hidden;
  margin-bottom: 16px;
}

.course-info-box:hover {
  border-color: var(--teal-accent-60);
  box-shadow: 0px 4px 12px rgba(26, 41, 33, 0.15);
}

.course-info-box .thumb-img {
  height: 160px;
}

.course-info-box .thumb-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-info-box .course-content {
  position: relative;
  padding: 16px;
}

.course-info-box .course-content h6 {
  color: var(--deep-forest-green-100);
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-self: stretch;
}

.course-info-box .course-content h6 > a {
  color: var(--deep-forest-green-100);
}

.course-info-box .course-content p {
  color: var(--deep-forest-green-100);
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.48;
}

.course-info-box .course-more-info {
  margin-top: 8px;
}

.course-info-box .course-more-info ul > li {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

.course-info-box .course-more-info ul > li:last-child {
  margin-right: 0;
}

.course-info-box .course-more-info ul > li > i {
  font-size: 24px;
  color: var(--deep-forest-green-80);
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.view-all-link > a {
  font-family: 'Degular', 'Noto Kufi Arabic', sans-serif;
  color: var(--earthy-brown-accent-100);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
}

.view-all-link > a:hover {
  color: var(--deep-forest-green-80);
}

.view-all-link > a i {
  margin-left: 8px;
}

/* Button Styles */
.btn-primary {
  background-color: var(--teal-accent-100);
  border-color: var(--teal-accent-100);
  color: white;
}

.btn-primary:hover {
  background-color: var(--teal-accent-80);
  border-color: var(--teal-accent-80);
}

.btn-secondary {
  background-color: var(--chartreuse-accent-100);
  border-color: var(--chartreuse-accent-100);
  color: var(--deep-forest-green-100);
}

.btn-secondary:hover {
  background-color: var(--chartreuse-accent-80);
  border-color: var(--chartreuse-accent-80);
}

/*----*/

/*----*/

/*----*/


.explore-cat-link img {
    object-fit: cover;
    height: 340px;
}

a.program-page-flex-container-item:hover {
  text-decoration: none;
}