* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #172A30;
}

p {
  margin: 0;
  color: #172A30;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #047985;
}

a:hover {
  color: #047985;
}

h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "pingAR+LT-Light";
  src: url(../fonts/pingAR+LT-Light.otf);
}
@font-face {
  font-family: "pingAR+LT-Regular";
  src: url(../fonts/pingAR+LT-Regular.otf);
}
@font-face {
  font-family: "pingAR+LT-Medium";
  src: url(../fonts/pingAR+LT-Medium.otf);
}
@font-face {
  font-family: "pingAR+LT-Bold";
  src: url(../fonts/pingAR+LT-Bold.otf);
}
@font-face {
  font-family: "pingAR+LT-Heavy";
  src: url(../fonts/pingAR+LT-Heavy.otf);
}
@font-face {
  font-family: "pingAR-LT-black";
  src: url(../fonts/pingAR-LT-Black.otf);
}
body {
  font-weight: 400;
  line-height: 1.7;
  background-color: #F9F9F9;
  color: #172A30;
  overflow-x: hidden;
}

.font-light {
  font-family: "pingAR+LT-Light";
}

.font-medium {
  font-family: "pingAR+LT-Medium";
}

.font-bold {
  font-family: "pingAR+LT-Bold";
}

.font-extra-bold {
  font-family: "pingAR+LT-Heavy";
}

.font-black {
  font-family: "pingAR-LT-black";
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  height: 48px;
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  border-radius: 0px;
  border-radius: 30px;
  padding: 10px 15px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #047985 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.bg-primary {
  background-color: #047985 !important;
}

.text-primary {
  color: #047985 !important;
}

.text-primary-2 {
  color: #047985;
}

.bg-primary-2 {
  background-color: #047985;
}

.border-primary {
  border-color: #047985 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.input-icon.icon-right .icon {
  inset-inline-start: 10px;
}

.input-icon.icon-right .form-control {
  padding-inline-start: 35px;
}

.input-icon.icon-left .icon {
  inset-inline-end: 10px;
}

.input-icon.icon-left .form-control {
  padding-inline-end: 35px;
}

::-moz-placeholder {
  color: #75797C !important;
}

::placeholder {
  color: #75797C !important;
}

.btn {
  padding: 15px 38px;
  font-size: 1rem;
  border-radius: 30px;
  font-family: "pingAR+LT-Bold";
}

.btn-primary {
  color: #FFF;
  background: #172A30;
  border-color: #172A30;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #047985 !important;
  border-color: #047985;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #172A30;
  background-color: #172A30 !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-primary-green {
  color: #FFF;
  background: #5FB446;
  border-color: #5FB446;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-green::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #047985 !important;
  border-color: #047985;
}
.btn-primary-green:hover, .btn-primary-green:focus {
  color: #fff !important;
  border-color: #5FB446;
  background-color: #5FB446 !important;
  box-shadow: none !important;
}
.btn-primary-green:hover::before, .btn-primary-green:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-white {
  color: #000;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #047985;
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: #047985;
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #047985;
  background: transparent;
  border-color: #047985;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #047985;
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #047985;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.pagination .page-item {
  margin: 0px 7px;
}
.pagination .page-item .page-link {
  color: #172A30;
  background-color: transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  height: 36px;
  border: 0;
  min-width: 36px;
  border-radius: 8px;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #047985 !important;
  border-color: #047985;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #047985 !important;
  border-color: #047985;
}
@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }
  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.checkbox {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}
@media (max-width: 991px) {
  .checkbox {
    font-size: 12px;
    margin-bottom: 7px;
  }
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 2px solid #666666;
  background-color: #FFF;
  left: 0px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .checkbox .checkmark {
    width: 16px;
    height: 16px;
  }
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark {
  border-color: #047985;
}

.checkbox input:checked ~ .checkmark:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #047985;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  font-weight: bold;
  content: "";
  font-size: 12px;
  background-color: #047985;
}
@media (max-width: 991px) {
  .checkbox .checkmark:after {
    width: 8px;
    height: 8px;
  }
}

.radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}
@media (max-width: 991px) {
  .radio {
    font-size: 12px;
    margin-bottom: 7px;
  }
}

.radio .checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  left: 0px;
  top: 50%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  border: 2px solid #047985;
}
@media (max-width: 991px) {
  .radio .checkmark {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
}

.radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.radio input:checked ~ .checkmark {
  border-color: #047985;
}

.radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.radio .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 12px;
  content: "";
  width: 8px;
  height: 8px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #047985;
}

html[dir=rtl] .checkbox {
  padding-right: 25px;
}
html[dir=rtl] .checkbox .checkmark {
  right: 0px;
}
html[dir=rtl] .radio {
  padding-right: 25px;
}
html[dir=rtl] .radio .checkmark {
  right: 0px;
}

html[dir=ltr] .checkbox {
  padding-left: 25px;
}
html[dir=ltr] .checkbox .checkmark {
  left: 0px;
}
html[dir=ltr] .radio {
  padding-left: 25px;
}
html[dir=ltr] .radio .checkmark {
  left: 0px;
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 5px 0;
  background: radial-gradient(126.67% 126.67% at 50% -3.06%, rgba(23, 42, 48, 0) 0%, rgba(4, 120, 130, 0.1) 100%), radial-gradient(182.11% 182.11% at 48.85% -21.33%, rgba(4, 120, 130, 0.16) 0%, rgba(4, 120, 130, 0) 100%), #F9F9F9;
}
.main-header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.main-header .overlay:not(.collapsed) {
  visibility: visible;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse .navbar-toggler {
    position: absolute;
    inset-inline-end: 32%;
    top: 3%;
    z-index: 22;
  }
  .main-header .navbar .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: -30%;
  }
  .main-header .navbar .navbar-collapse.show .ss {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
  }
}
.main-header .navbar .navbar-collapse .btn.btn-outline-primary {
  border: 2px solid #047985;
  font-size: 18px;
  padding: 11px 30px 9px;
}
.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 9px 14px;
  font-size: 14px;
  font-family: "pingAR+LT-Bold";
  color: #494E5B;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active {
  color: #047985;
  background: url(../images/line2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-position-y: 95%;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #047985;
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
}
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}
.section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.z-index-1 {
  z-index: 1;
}

.bg-gradient {
  background: radial-gradient(126.67% 126.67% at 50% -3.06%, rgba(23, 42, 48, 0) 0%, rgba(4, 120, 130, 0.1) 100%), radial-gradient(182.11% 182.11% at 48.85% -21.33%, rgba(4, 120, 130, 0.16) 0%, rgba(4, 120, 130, 0) 100%), #F9F9F9 !important;
}

.bg-gradient-2::before {
  position: absolute;
  content: "";
  background: radial-gradient(126.67% 126.67% at 50% -3.06%, rgba(23, 42, 48, 0) 0%, rgba(4, 120, 130, 0.1) 100%), radial-gradient(182.11% 182.11% at 48.85% -21.33%, rgba(4, 120, 130, 0.16) 0%, rgba(4, 120, 130, 0) 100%), #F9F9F9 !important;
  width: 100%;
  height: 180%;
  left: 0;
  top: 0;
  z-index: -1;
}

.section-home {
  position: relative;
  z-index: 1;
}
.section-home .home-title {
  color: #172A30;
}
.section-home .home-title span {
  background: url(../images/line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-position-y: 95%;
}
.section-home .home-text {
  color: #75797C;
}
@media (min-width: 992px) {
  .section-home {
    padding: 60px 0;
  }
  .section-home .home-title {
    font-size: 56px;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .section-home .home-title {
    font-size: 2.4rem;
  }
}

.section-title {
  font-size: 3rem;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
}
.section-title span {
  color: #047985;
}

.section-entry-title {
  background: #5FB446;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 20px 4px;
  display: inline-block;
  color: #FFF;
  padding: 5px 17px;
}

.widget_item-course {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.widget_item-course .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 124%;
}
@media (max-width: 991px) {
  .widget_item-course .widget_item-image {
    padding-top: 80%;
  }
}
.widget_item-course .widget_item-image a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(23, 42, 48, 0.2), rgba(23, 42, 48, 0.2)), linear-gradient(0deg, #5FB446 -42.38%, rgba(23, 42, 48, 0) 80.09%);
  top: 0;
  left: 0;
  z-index: 1;
}
.widget_item-course .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.widget_item-course .widget_item-content {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 15px;
  z-index: 1;
}
.widget_item-course .widget_item-title {
  font-size: 24px;
  transition: color 0.2s ease-in-out;
}
.widget_item-course .widget_item-title:hover {
  color: #172A30 !important;
}
.widget_item-course .widget_item-title a {
  color: #FFF;
  transition: color 0.2s ease-in-out;
}
.widget_item-course .widget_item-title a:hover {
  color: #172A30;
}
.widget_item-course .widget_item-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 1;
  transform: rotate(10deg);
}
.widget_item-course.widget-2 {
  background: linear-gradient(142.75deg, #047882 6.3%, #5FB446 93.63%);
}
.widget_item-course.widget-2::before {
  content: unset;
}
.widget_item-course.widget-2 .widget_item-arrow {
  top: auto;
  inset-inline-end: 0px;
}
.widget_item-course.widget-2 .widget_item-title {
  font-size: 2rem;
}
@media (max-width: 991px) {
  .widget_item-course.widget-2 .widget_item-title {
    font-size: 1.5rem;
  }
}
.widget_item-course:hover .widget_item-image img {
  transform: scale(1.1);
}

.search-form {
  background-color: #172A30;
  border-radius: 20px;
  padding: 20px;
}
.search-form .form-control {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  color: #FFF;
}
.search-form ::-moz-placeholder {
  color: #FFF !important;
}
.search-form ::placeholder {
  color: #FFF !important;
}
.search-form .btn-submit {
  background-color: #5FB446;
}

.widget_item-brand .widget_item-image {
  text-align: center;
}
.widget_item-brand .widget_item-image img {
  height: 70px;
  filter: grayscale(100%);
  transition: filter 0.2s ease-in-out;
}
.widget_item-brand .widget_item-image img:hover {
  filter: grayscale(0%);
}

.widget_item-card {
  background-color: #FFF;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
}
.widget_item-card .widget_item-category {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  background-color: #047985;
  color: #FFF;
  border-radius: 20px 4px;
  padding: 5px 14px;
  z-index: 1;
}
.widget_item-card .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 73%;
  overflow: hidden;
  border-radius: 24px 4px;
}
.widget_item-card .widget_item-image a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, #5FB446 -42.38%, rgba(23, 42, 48, 0) 110.09%), linear-gradient(0deg, rgba(23, 42, 48, 0.2), rgba(23, 42, 48, 0.2));
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.widget_item-card .widget_item-image a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 4px;
  transition: all 0.5s ease-in-out;
}
.widget_item-card .widget_item-title {
  height: 30px;
  overflow: hidden;
}
.widget_item-card .widget_item-title a {
  color: #494E5B;
}
.widget_item-card .widget_item-title a:hover {
  color: #047985;
}
.widget_item-card .widget_item-desc {
  height: 48px;
  overflow: hidden;
}
.widget_item-card .widget_item-info {
  border-top: 1px solid rgba(4, 120, 130, 0.2588235294);
}
.widget_item-card .widget_item-price {
  background-color: #F9F9F9;
  border-radius: 16px 2px;
  padding: 5px 10px;
}
.widget_item-card .widget_item-price h3 {
  height: 22px;
}
.widget_item-card:hover .widget_item-image a::before {
  opacity: 0.7;
}
.widget_item-card:hover .widget_item-image img {
  transform: scale(1.1);
}

.text-gray {
  color: #75797C;
}

.widget_item-testemonial {
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  padding: 20px 30px;
}
@media (max-width: 991px) {
  .widget_item-testemonial {
    padding: 15px;
  }
}
.widget_item-testemonial .widget_item-profile .widget_item-image {
  flex: 0 0 auto;
}
.widget_item-testemonial .widget_item-profile .widget_item-image img {
  border-radius: 20px;
  width: 52px;
  height: 52px;
}

.container-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 40%;
  width: 100%;
  border-radius: 20px;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section-about {
  position: relative;
}
@media (max-width: 991px) {
  .section-about .row:not(:nth-of-type(1)) {
    margin-top: 40px;
  }
}
.section-about .row:nth-child(even) .col-lg-6:nth-of-type(2) {
  order: 1;
}

.circle {
  position: absolute;
  width: 896px;
  height: 896px;
  inset-inline-start: -200px;
  top: 50%;
  background: rgba(4, 120, 130, 0.16);
  filter: blur(200px);
  transform: translateY(-50%);
}

.data-rating span {
  color: #e9e9e9;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991px) {
  .data-rating span {
    font-size: 12px;
  }
}

.data-rating span i:not(:last-of-type) {
  margin-inline-end: 5px;
}

.data-rating span[data-rating="1"] i:nth-child(-n+1)::before,
.data-rating span[data-rating="2"] i:nth-child(-n+2)::before,
.data-rating span[data-rating="3"] i:nth-child(-n+3)::before,
.data-rating span[data-rating="4"] i:nth-child(-n+4)::before,
.data-rating span[data-rating="5"] i:nth-child(-n+5)::before {
  content: "\f005";
  color: #FFD748;
  transform: translateY(1px);
  font-weight: 900;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  opacity: 1;
  background-color: #FFF;
  border-radius: 40px;
}
.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #172A30;
  width: 51px;
}

.circle2 {
  position: absolute;
  width: 662px;
  height: 662px;
  left: calc(50% - 331px - 40px);
  top: calc(50% - 331px + 213px);
  background: rgba(4, 121, 133, 0.1);
  filter: blur(200px);
}

.circle3 {
  position: absolute;
  width: 662px;
  height: 662px;
  left: calc(50% - 331px - 40px);
  top: 0;
  background: rgba(228, 231, 100, 0.1019607843);
  filter: blur(200px);
  z-index: -1;
}

.info-content-about {
  padding: 24px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  z-index: 1;
}
@media (max-width: 991px) {
  .info-content-about {
    padding: 14px;
  }
}
.info-content-about.info-1 {
  top: 100px;
  inset-inline-end: -40px;
}
@media (max-width: 991px) {
  .info-content-about.info-1 {
    inset-inline-end: 0;
  }
}
.info-content-about.info-2 {
  bottom: 10px;
  inset-inline-start: -40px;
}
@media (max-width: 991px) {
  .info-content-about.info-2 {
    inset-inline-start: 0;
  }
}
.info-content-about.info-3 {
  bottom: 100px;
  inset-inline-end: -40px;
  width: 224px;
}
.info-content-about.info-3 .text {
  font-size: 12px;
}
@media (max-width: 991px) {
  .info-content-about.info-3 {
    inset-inline-end: 0;
  }
}
.info-content-about.info-4 {
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: -40px;
}
@media (max-width: 991px) {
  .info-content-about.info-4 {
    inset-inline-end: 0;
  }
}
.info-content-about.info-5 {
  top: 50px;
  inset-inline-start: -40px;
}
@media (max-width: 991px) {
  .info-content-about.info-5 {
    inset-inline-start: 0;
  }
}
.info-content-about.info-6 {
  top: 26%;
  inset-inline-end: 7%;
  min-width: 222px;
}
@media (max-width: 991px) {
  .info-content-about.info-6 {
    min-width: auto;
    inset-inline-end: -10px;
  }
  .image-chart{
    width: 90px;
  }
}
.info-content-about .number {
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(142.75deg, #047985 6.3%, #5FB446 93.63%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-family: Rubik;
  font-weight: 800;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .info-content-about .number {
    font-size: 2rem;
  }
}
.info-content-about .text {
  font-size: 1rem;
}
@media (max-width: 991px) {
  .info-content-about .text {
    font-size: 0.7rem;
  }
}

.form-box {
  background-color: #FFF;
  border-radius: 30px;
  padding: 24px;
}
.form-box .btn {
  padding: 14px 38px;
}

.bg-gray {
  background-color: #F9F9F9;
}

.bootstrap-select .dropdown-toggle .filter-option {
  text-align: start;
}

.dropdown-toggle::after {
  border: 0 !important;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  color: #162c31;
  font-size: 10px;
}

.bootstrap-select {
  border-radius: 16px;
}

.bootstrap-select > .dropdown-toggle {
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  padding: 15px 15px;
  border-radius: 16px;
  font-family: "pingAR+LT-Regular";
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle.show {
  outline: none !important;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0 !important;
  background-color: #FFF !important;
  border-color: #FFF !important;
}

.dropdown-item.active, .dropdown-item:active {
  color: #FFF;
  text-decoration: none;
  background-color: #047985;
}

.dropdown-menu {
  border: 0;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  float: none;
  padding-inline-end: 15px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-inline-start: 15px;
}

.breadcrumb-item a {
  color: #75797C;
}
.breadcrumb-item.active {
  font-family: "pingAR+LT-Medium";
  color: #172A30;
  transform: translateY(3px);
}

.university-single-image img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.social-media-black.social-media li a {
  background-color: #F9F9F9;
}
.social-media-black.social-media li a img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(14%) saturate(541%) hue-rotate(146deg) brightness(95%) contrast(94%);
}
.social-media-black.social-media li a:hover img {
  filter: grayscale(0) invert(0);
}
.social-media-black.social-media li:not(:last-of-type) {
  margin-inline-end: 19px;
}

.university-single-avatar {
  flex: 0 0 auto;
  width: 100px;
}

.widget_card {
  background-color: #FFF;
  border-radius: 24px;
}

.university-menu li a {
  display: block;
  padding: 14px 8px;
  font-size: 16px;
  font-family: "pingAR+LT-Medium";
  color: #172A30;
  border-right: 7px solid transparent;
  transition: all 0.2s ease-in-out;
}
.university-menu li a:hover, .university-menu li a.active {
  background: radial-gradient(126.67% 126.67% at 50% -3.06%, rgba(23, 42, 48, 0) 0%, rgba(4, 120, 130, 0.1) 100%), radial-gradient(182.11% 182.11% at 48.85% -21.33%, rgba(4, 120, 130, 0.16) 0%, rgba(4, 120, 130, 0) 100%), #F9F9F9;
  border-color: #047985;
}
.university-menu li:not(:last-of-type) a {
  border-bottom: 1px solid #EBEBEC;
}

.university-features li {
  position: relative;
  padding-inline-start: 20px;
  color: #75797C;
  font-size: 16px;
}
.university-features li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #75797C;
  border-radius: 50%;
  inset-inline-start: 0;
  top: 13px;
}

.university-colleges {
  border-radius: 8px;
  color: #172A30;
  font-size: 16px;
}
.university-colleges li {
  border: 1px solid #D7E5E6;
  border-radius: 30px;
  padding: 8px 9px;
  display: inline-block;
  margin-inline-end: 12px;
  margin-bottom: 15px;
}

.table-financial-details {
  border-color: #F9F9F9;
}
.table-financial-details thead tr td {
  font-family: "pingAR+LT-Bold";
}
.table-financial-details tbody tr td:nth-of-type(1) {
  color: #75797C;
}

.swiper-pagination-dots.swiper-pagination-clickable .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #ECECEC;
}

@media (min-width: 992px) {
  .widget_card_fixed {
    position: sticky;
    top: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}
.select-phone.bootstrap-select > .dropdown-toggle {
  background-color: #F9F9F9;
  padding: 11.2px 15px;
  box-shadow: none;
  border-radius: 30px;
}

.widget_item-contact {
  border-radius: 24px;
  border: 1px solid #D7E5E7;
  padding: 32px;
}
.widget_item-contact .widget_item-icon {
  background-color: #F9F9F9;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 2px;
}
.widget_item-contact .widget_item-link a {
  color: #172A30;
}

.icon {
  width: 24px;
  height: 24px;
  background-color: #F9F9F9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.icon img {
  max-height: 14px;
}

.border-bottom {
  border-bottom: 1px solid #F9F9F9 !important;
}

.bage-success {
  background-color: rgba(9, 255, 63, 0.2);
  color: #047985;
  font-family: "Rubik";
  font-size: 9px;
  border-radius: 30px;
  padding: 2px 10px;
}

.modal-content {
  border: 0;
  border-radius: 24px;
}
@media (min-width: 992px) {
  .modal-content .modal-header {
    padding: 48px;
  }
  .modal-content .modal-body {
    padding: 0 48px 48px;
  }
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: rtl;
}

.select-gray.bootstrap-select > .dropdown-toggle {
  background: #f9f9f9 !important;
  box-shadow: none;
  border-radius: 30px;
}

.form-login-content .form-control {
  background-color: #FFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 16px;
}
.form-login-content label {
  color: #494E5B;
}

.info-login-content {
  background: linear-gradient(180deg, #EBFAF1 21.05%, #E5FFF0 32.55%, #FDFDFD 100%);
  border-radius: 24px;
}

.toggle-password {
  cursor: pointer;
}

@media (max-width: 991px) {
  .logo-large img {
    max-height: 100px;
  }
}
.form-login-content .form-verify {
  display: flex;
  justify-content: center;
  direction: ltr;
}

.form-login-content .form-verify input {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #75797C;
  width: 64px;
  height: 64px;
  text-align: center;
  margin: 0px 12px;
  font-size: 20px;
  font-weight: 500;
}
.form-login-content .form-verify input.filled {
  border-color: #047985;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.nav-pills .nav-item {
  margin: 0px 8px;
}
.nav-pills .nav-item .nav-link {
  padding: 10px 24px 12px;
  background: #FFFFFF;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
  border-radius: 20px;
  color: #75797C;
}
.nav-pills .nav-item .nav-link.active {
  background-color: #172A30;
  color: #FFF;
}

.border-top {
  border-color: #F9F9F9 !important;
}

.modal-backdrop.fade {
  background-color: rgba(23, 42, 48, 0.8);
  opacity: 1;
}

.text-underline {
  text-decoration: underline !important;
}

.select-phone .form-control {
  height: 35px;
}
.select-phone .dropdown-toggle .flag-icon {
  margin-inline-end: 10px;
}

.flag-icon {
  width: 28px;
  border-radius: 8px;
  height: 24px;
  margin-inline-start: 5px;
}

/* @media (min-width: 991px) {
  .swiper-wrapper-wrapper {
    margin-right: calc((100vw - 1200px) / 2);
  }
} */
.icon-re-sync {
  width: 46px;
  height: 46px;
  background: linear-gradient(142.75deg, #047985 6.3%, #5FB446 93.63%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.select-ligth-primary .dropdown-toggle {
  padding: 9px 15px;
  background: radial-gradient(126.67% 126.67% at 50% -3.06%, rgba(23, 42, 48, 0) 0%, rgba(4, 120, 130, 0.1) 100%), radial-gradient(182.11% 182.11% at 48.85% -21.33%, rgba(4, 120, 130, 0.16) 0%, rgba(4, 120, 130, 0) 100%), #F9F9F9;
}

.main-footer {
  background-color: #172A30;
}
.main-footer .footer-top {
  padding: 60px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .main-footer .footer-top {
    padding: 30px 0 25px;
  }
}
.main-footer .footer-bottom {
  padding: 30px 0;
}
.main-footer .link-footer a {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  font-family: "pingAR+LT-Bold";
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #047985 !important;
}

.checkout li {
  background-color: #fff;
  height: 27px;
  width: 55px;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout li:not(:last-of-type) {
  margin-inline-end: 12px;
}
.checkout li img {
  max-height: 22px;
}

.social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 30px;
}
.social-media li a {
  border-radius: 16px 2px;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.04);
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: #047985;
}

.form .icon {
  inset-inline-start: 20px !important;
}
.form .form-control {
  background-color: #fff;
  border-radius: 24px 4px;
  padding-inline-start: 50px !important;
}
.form .btn-submit {
  background-color: #5FB446;
  color: #FFF;
  padding: 5px 55px 5px 25px;
  margin-inline-start: -18px;
  border-radius: 24px 0 0px 4px;
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
  main {
    overflow: hidden;
  }
}
html[dir=ltr] .form .btn-submit {
  padding: 5px 25px 5px 55px;
  border-radius: 0px 24px 4px 0px;
}
html[dir=ltr] .section-home .image-about img {
  transform: scaleX(-1);
}
@media(min-width:1200px){

  html[dir="ltr"] .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 8px;
    font-size: 12px;
  }
}
@media(max-width:1200px){
  .widget_item-card .widget_item-actions .btn{
    padding-left: 0;
    padding-right: 0;
  }
  .widget_item-card .widget_item-actions .btn:nth-of-type(1){
    margin-inline-end: 5px;
  }
}
@media(max-width:1400px) and (min-width:1200px){
 html[dir="ltr"] .main-header .navbar .navbar-collapse .nav-link {
        padding: 9px 7px;
        font-size: 10px;
  }
  html[dir="rtl"] .main-header .navbar .navbar-collapse .nav-link {
        padding: 9px 7px;
        font-size: 12px;
  }
  .main-header .navbar .navbar-collapse .btn.btn-outline-primary {
    font-size: 12px;
    padding: 11px 20px 9px;
  }
}
@media(max-width:1200px) and (min-width:991px){
 .main-header .navbar .navbar-collapse .nav-link {
        padding: 9px 3px !important;
        font-size: 8px !important;
  }
  .main-header .navbar .navbar-collapse .btn.btn-outline-primary {
    font-size: 12px;
    padding: 11px 20px 9px;
  }
}
@media(max-width:991px){
  .widget_item-card .widget_item-actions .btn{
    width: 100%;
  }
}
.loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    background-color: #FFF;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5FB446;
  position: absolute;
  animation: animloader 2s linear infinite;
  opacity:0
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
    
.select2-container--default .select2-selection--single {
    background: #FFFFFF;
    box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
    padding: 15px;
    border-radius: 16px;
    font-family: "pingAR+LT-Regular", sans-serif;
    border: none; 
    height: auto; 
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: "pingAR+LT-Regular", sans-serif;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: 
}

.select2-container--default .select2-results > .select2-results__options {
    background: #FFFFFF;
    box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
    border-radius: 0px;
    font-family: "pingAR+LT-Regular", sans-serif;
}

.select2-container--default .select2-results__option {
    padding: 10px 15px;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: rgba(17, 17, 17, 0.06);
    color: #111;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: 0 !important;
    position: relative;
    width: auto;
    height: auto;
    padding-left: 5px; 
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "\f078"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    color: #162c31;
    font-size: 10px;
    position: absolute;
    top: 50%;
    right: 0;
     transform: translateY(-60%);
    pointer-events: none;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5fb446;
    color: white;
}
@media(max-width:991px){
    .form-login-content .form-verify input {
        width: 54px;
        height: 54px;
        margin: 0px 1px;
        padding: 10px;
    }
}
/*# sourceMappingURL=main.css.map */