* {
  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.7;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #706A70;
}

p {
  margin: 0;
  color: #706A70;
}

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

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

a {
  color: #6B2773;
}

a:hover {
  color: #6B2773;
}

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

.page {
  overflow-x: hidden;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background-color: #FAF8FA;
  color: #706A70;
  overflow-x: hidden;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  font-size: 12px;
}

.form-control {
  height: 48px;
  background-color: #fff;
  border: 1px solid #F1F1F1;
  border-radius: 16px;
  padding: 10px 15px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #6B2773 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

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

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

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

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

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

.border-primary {
  border-color: #6B2773 !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: 20px;
}

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

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

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

::-moz-placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

::placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

.btn {
  padding: 9px 13px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: #F28B00;
  border-color: #F28B00;
  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: #6B2773;
  border-color: #6B2773;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  background: #F28B00;
  border-color: #6B2773 !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #F28B00;
  background: transparent;
  border-color: #F28B00;
  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: #6B2773;
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #6B2773;
  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;
}

.btn-primary-2 {
  color: #fff;
  background: #6B2773;
  border-color: #6B2773;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-2::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: #F28B00;
  border-color: #F28B00;
}
.btn-primary-2:hover, .btn-primary-2:focus {
  color: #fff !important;
  background: #6B2773;
  border-color: #F28B00 !important;
  box-shadow: none !important;
}
.btn-primary-2:hover::before, .btn-primary-2:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

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

.btn-outline-primary-2::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: #F28B00;
}

.btn-outline-primary-2:hover, .btn-outline-primary-2:focus {
  color: #000 !important;
  border-color: #F28B00;
  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: #6B2773 !important;
  border-color: #6B2773;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #6B2773 !important;
  border-color: #6B2773;
}
@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;
  padding-inline-start: 30px;
}

/* 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: 4px;
  border: 2px solid #BEC2C5;
  background-color: #FFF;
  top: 50%;
  inset-inline-start: 0;
  display: block;
  transform: translateY(-50%);
}

/* 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: #6B2773;
}

.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: #6B2773;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  font-weight: bold;
  content: "";
  font-size: 12px;
  background-color: #6B2773;
}
@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;
  padding-inline-start: 30px;
}

.radio .checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  inset-inline-start: 0;
  top: 50%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  border: 2px solid #6B2773;
}
@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: #667F5A;
}

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

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

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.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 .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 .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 8px 14px;
  font-weight: 400;
  font-size: 16px;
  color: #491741;
  color: #405776;
  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: #F28B00;
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse .nav-item .submenu {
    display: none;
    padding: 1px 14px;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu li a {
    display: block;
    padding: 5px;
    color: #000;
    font-size: 12px;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu li:not(:last-of-type) a {
    border-bottom: 1px solid #EEE;
  }
}
@media (min-width: 992px) {
  .main-header .navbar .navbar-collapse .nav-item {
    position: relative;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu {
    position: absolute;
    top: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: 180px;
    padding: 16px 16px 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-backdrop-filter: blur(10px) saturate(120%);
            backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid #FFF;
    width: -moz-max-content;
    width: max-content;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu li a {
    display: block;
    padding: 20px 15px;
    font-size: 16px;
    color: #6B2773;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu li a:hover {
    color: #F28B00;
  }
  .main-header .navbar .navbar-collapse .nav-item .submenu li:not(:last-of-type) a {
    border-bottom: 1px dashed #6B2773;
  }
}
.main-header .navbar .navbar-collapse .nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #6B2773;
}
@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 (max-width: 1250px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 8px 9px;
    font-size: 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.7rem;
  }
  .btn-ligth {
    padding: 2px 7px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
.dropdown-user .btn-ligth {
  padding-top: 8px;
  padding-bottom: 8px;
}
.dropdown-user .btn-ligth:hover .arrow i {
  color: #000;
}
.dropdown-user .dropdown-user-name {
  font-size: 14px;
}
.dropdown-user .dropdown-user-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-user .arrow {
  width: 24px;
  height: 24px;
  background-color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.dropdown-user .dropdown-menu {
  padding: 15px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(17, 17, 17, 0.0588235294);
  min-width: 270px;
}
.dropdown-user .dropdown-menu .profile-image img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-user .dropdown-menu-user .menu-user li:not(:last-of-type) {
  margin-bottom: 10px;
}
.dropdown-user .dropdown-menu-user .menu-user .icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F8F9F9;
}
.dropdown-user .dropdown-menu-user .menu-user .title {
  color: #262626;
  transition: color 0.2s ease-in-out;
}
.dropdown-user .dropdown-menu-user .menu-user .title:hover {
  color: #6B2773;
}

@media (min-width: 992px) {
  .main-header.link-white .navbar .navbar-collapse .nav-link {
    cursor: pointer;
    display: inline-block;
    padding: 8px 9px;
    font-size: 16px;
    color: #ffffff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1330px;
    max-width: 100%;
  }
}
.section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.top-header .contact-link .contact-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 1000px;
}
.top-header .nav-links li {
  position: relative;
}
.top-header .nav-links li:not(:last-of-type) {
  padding-inline-end: 12px;
  margin-inline-end: 12px;
}
.top-header .nav-links li:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fff;
  inset-inline-end: 0;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.bg1,
.bg2 {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.bg1::before {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  inset-inline-start: 25%;
  top: -160px;
  background: #dbb9d5;
  filter: blur(150px);
  border-radius: 1000px;
  transform: rotate(38.89deg);
}

.bg1::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  inset-inline-start: 10%;
  top: -160px;
  background: #dbb9d5;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(38.89deg);
}

.bg2::before {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  top: -127.26px;
  inset-inline-end: 25%;
  background: #dbb9d5;
  filter: blur(150px);
  border-radius: 1000px;
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}

.bg2::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  inset-inline-end: 10%;
  top: -160px;
  background: #dbb9d5;
  filter: blur(200px);
  border-radius: 1000px;
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}

.widget_item-education-level {
  position: relative;
  padding: 16px 12px 0px;
  background: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 16px;
  overflow: hidden;
}
.widget_item-education-level::before {
  position: absolute;
  width: 126px;
  height: 126px;
  background: #fce8cc;
  filter: blur(100px);
  content: "";
  top: -20px;
  inset-inline-start: -20px;
}
.widget_item-education-level .widget_item-text {
  line-height: 1.8;
  min-height: 76px;
}
@media (max-width: 991px) {
  .widget_item-education-level img {
    height: 200px;
  }
}

.section-materials .nav {
  gap: 24px;
}
.section-materials .nav .nav-item {
  flex: 1;
}
.section-materials .nav .nav-item .nav-link {
  width: 100%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
}
.section-materials .nav .nav-item .nav-link.active {
  background-color: #fce8cc;
  color: #6B2773;
}
.section-materials hr {
  border-bottom: 1px dashed #fefefe;
  opacity: 1;
  margin: 50px 0;
}
.section-materials .section-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  border-radius: 15px;
}
.section-materials .section-content::before {
  border-radius: 15px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/bg.png), #6b2773;
  background-blend-mode: multiply, normal;
}
@media (max-width: 991px) {
  .section-materials .section-content {
    padding: 30px;
  }
}

.widget_item-material {
  padding: 0px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: block;
}
.widget_item-material .widget_item-head {
  background-color: #f8c580;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 12px 12px 0 0;
  padding: 12px;
}
.widget_item-material .widget_item-content {
  padding: 22px 10px;
  min-height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_item-material .widget_item-footer {
  background-color: #fefefe;
  border-radius: 0 0 12px 12px;
  padding: 10px;
}

.section-about {
  padding-bottom: 130px;
}

.section-bg {
  position: relative;
  z-index: 1;
}
.section-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/bg.png), #6b2773;
  background-blend-mode: multiply, normal;
}

.section-about-2 {
  margin-top: -90px;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .section-about-2 {
    margin-top: 0;
  }
  .section-about-2 .text-white {
    color: #000 !important;
  }
}

.effect-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(7px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background-clip: padding-box;
  overflow: hidden;
}

.widget_item-about {
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.widget_item-about:hover {
  box-shadow: 0 10px 10px rgba(107, 39, 115, 0.5882352941);
  background-color: #6B2773;
}
.widget_item-about:hover * {
  color: #FFF;
}

.section-title {
  font-size: 1.5rem;
  color: #323232;
}

.b3 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.b3::before {
  content: "";
  position: absolute;
  width: 947px;
  height: 100%;
  left: -227px;
  bottom: 0px;
  background: #e9d5e6;
  filter: blur(100px);
  z-index: -1;
}
.b3::after {
  content: "";
  position: absolute;
  width: 846px;
  height: 100%;
  right: -222px;
  bottom: 0px;
  background: #fce8cc;
  filter: blur(100px);
  z-index: -1;
}

.half-border {
  width: 830px;
  height: 430px;
  border: 7px solid #F28B00;
  border-bottom: none;
  border-radius: 700px 700px 0 0;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
}

.half-circle {
  width: 770px;
  height: 400px;
  background: #6B2773;
  border-radius: 700px 700px 0 0;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
}

.rounded-10 {
  border-radius: 10px;
}

.widget_item-accreditation {
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  background: linear-gradient(180deg, rgba(251, 216, 170, 0.16) 0%, rgba(219, 185, 213, 0.16) 100%);
  border-radius: 12px;
  padding: 16px 20px;
}
.widget_item-accreditation .widget_item-icon {
  height: 100px;
}
.widget_item-accreditation .widget_item-icon img {
  max-height: 100px;
}
.widget_item-accreditation .widget_item-desc {
  min-height: 55px;
}
.widget_item-accreditation:hover {
  box-shadow: 0 6px 10px rgba(242, 139, 0, 0.3803921569);
  transform: translateY(-7px);
}

.widget_item-flag {
  display: inline-block;
  padding: 40px;
  background: rgba(201, 150, 193, 0.1);
  border-radius: 1000px;
}

.bg3,
.bg4 {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.bg3::before {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 100%;
  inset-inline-end: 5%;
  bottom: 0px;
  background: #dbb9d5;
  filter: blur(150px);
  border-radius: 1000px;
  transform: rotate(-141.11deg);
}

.bg3::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 100%;
  inset-inline-end: 25%;
  bottom: 0px;
  background: #dbb9d5;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-141.11deg);
}

.bg4::before {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 100%;
  inset-inline-start: 25%;
  bottom: 0px;
  background: #dbb9d5;
  filter: blur(150px);
  border-radius: 1000px;
  transform: matrix(0.78, -0.63, -0.63, -0.78, 0, 0);
}

.bg4::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 100%;
  inset-inline-start: 5%;
  bottom: 0px;
  background: #dbb9d5;
  filter: blur(200px);
  border-radius: 1000px;
  transform: matrix(0.78, -0.63, -0.63, -0.78, 0, 0);
}

.widget_item-team .widget_item-avatar img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.widget_item-brand {
  transition: background-color 0.2s ease-in-out;
  padding: 24px;
  background: linear-gradient(225deg, rgba(182, 115, 172, 0.2) 0%, rgba(225, 212, 227, 0.2) 100%);
  border-radius: 16px;
}
.widget_item-brand:hover {
  background-color: #e1d4e3;
}

#map {
  width: 100%;
  height: 500px;
}

.leaflet-container {
  background-color: transparent;
}

.leaflet-container {
  font-family: "Noto Kufi Arabic", sans-serif;
}

.marker-card {
  background: white;
  padding: 15px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 1.2;
  min-width: 160px;
  height: 70px;
  position: relative;
  box-shadow: 6px 6px 32px 4px rgba(255, 255, 255, 0.42);
  filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.2));
  flex: 0 0 auto;
}
.marker-card .marker-card-flag {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #f6b255;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.marker-card .marker-card-title {
  color: #475467;
}

.marker-card::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid white;
}

.marker-card-marker {
  position: absolute;
  bottom: -60px;
  right: 50%;
  transform: translateX(50%);
}

.opacity-1 {
  opacity: 1;
}

.border-dashed {
  border-style: dashed !important;
}

.entry-title {
  background: rgba(249, 197, 128, 0.2);
}

.border-glass {
  border: 1px solid rgba(255, 255, 255, 0.3098039216) !important;
}

.widget_item-admission {
  position: relative;
}
.widget_item-admission .widget_item-icon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.widget_item-admission .widget_item-icon2 {
  height: 75px;
}
.widget_item-admission .widget_item-icon2 img {
  max-height: 75px;
}
.widget_item-admission .widget_item-icon3 img {
  max-height: 20px;
}

.rounded-20 {
  border-radius: 20px;
}

.bg5::before {
  position: absolute;
  content: "";
  background: url(../images/image-sun.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 250px;
  height: 270px;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}

.bg6::after {
  position: absolute;
  content: "";
  background: url(../images/image-circle.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: 0;
  inset-inline-start: 0;
  width: 290px;
  height: 145px;
  z-index: -1;
}

.input_group {
  position: relative;
}
.input_group .icon {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 50px;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  justify-content: center;
  border-radius: 0 10px 10px 0;
}
.input_group .form-control {
  padding-inline-start: 65px;
}

.widget_item-faq {
  background: rgba(0, 0, 0, 0.001);
  border-radius: 12px;
  box-shadow: inset 0 10px 31px 0 rgba(217, 217, 217, 0.36), 0 6px 20px 0 rgba(217, 217, 217, 0.16);
  padding: 8px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6823529412);
}
.widget_item-faq .widget_item-head {
  padding: 10px;
  cursor: pointer;
}
.widget_item-faq .widget_item-content {
  display: none;
  padding: 0 20px 20px;
  padding-top: 14px;
  border-top: 1px dashed #e2e1e2;
}

.bg7 {
  background: url(../images/bg2.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
}

.pagination .page-item .page-link {
  border: 1px solid #a09ca0;
}

.section-blog {
  background-color: #faf8fa;
  position: relative;
  z-index: 1;
}
.section-blog .bg3::before, .section-blog .bg3::after,
.section-blog .bg4::before,
.section-blog .bg4::after {
  bottom: unset;
  top: -100px;
}

.widget_item-blog {
  padding: 16px;
  background: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 16px;
}
.widget_item-blog .widget_item-category {
  position: absolute;
  top: 7px;
  inset-inline-start: 7px;
  z-index: 1;
  border-radius: 8px;
  padding: 4px 8px;
}
.widget_item-blog .widget_item-date {
  position: absolute;
  z-index: 1;
  background: rgba(107, 39, 115, 0.14);
  border-radius: 8px;
  padding: 4px 8px;
  top: 7px;
  inset-inline-end: 7px;
  color: #fff;
  -webkit-backdrop-filter: blur(7px) saturate(80%);
          backdrop-filter: blur(7px) saturate(80%);
}
.widget_item-blog .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 52%;
}
.widget_item-blog .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.widget_item-blog .widget_item-title a {
  color: #000;
}

.widget_blog {
  height: 700px;
  display: flex;
  align-items: flex-end;
}
.widget_blog .widget_blog-content {
  padding: 32px 52px 48px;
}
.widget_blog .widget_blog-date {
  background: rgba(255, 255, 255, 0.14);
}
.widget_blog .widget_blog-text {
  height: 55px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .widget_blog {
    height: auto;
    padding: 100px 0 0px;
  }
  .widget_blog .widget_blog-content {
    padding: 20px;
  }
  .widget_blog .widget_blog-content .widget_blog-text {
    height: 48px;
  }
}

.nav-ihsan {
  gap: 15px;
}
.nav-ihsan .nav-item .nav-link {
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
}
.nav-ihsan .nav-item .nav-link.active {
  background-color: #6B2773;
  color: #fff;
}

.widget_item-blog2 {
  background: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
}
.widget_item-blog2 .widget_item-image {
  width: 120px;
}
.widget_item-blog2 .widget_item-image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.widget_item-blog2 .widget_item-desc {
  height: 41px;
  overflow: hidden;
}

.font-12 {
  font-size: 12px;
}

.widget_item-blog3 {
  position: relative;
  display: block;
}
.widget_item-blog3 .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 65%;
}
.widget_item-blog3 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.widget_item-blog3 .widget_item-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  z-index: 1;
}

.widget_item-blog4 {
  position: relative;
  display: block;
}
.widget_item-blog4 .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 120%;
}
.widget_item-blog4 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px;
  top: 0;
  left: 0;
}

.widget_item-video {
  position: relative;
  display: block;
  background: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 10px;
  padding: 16px;
}
.widget_item-video .widget_item-date {
  position: absolute;
  z-index: 1;
  background: rgba(107, 39, 115, 0.14);
  border-radius: 8px;
  padding: 4px 8px;
  top: 5px;
  color: #fff;
  inset-inline-end: 5px;
  -webkit-backdrop-filter: blur(7px) saturate(80%);
          backdrop-filter: blur(7px) saturate(80%);
}
.widget_item-video .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 40%;
}
.widget_item-video .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  top: 0;
  left: 0;
}

.section-media {
  position: relative;
  overflow: hidden;
  background: url(../images/bg.png), #6b2773;
  background-blend-mode: multiply, normal;
}
.section-media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 120px;
  border-top-left-radius: 50% 60px;
  border-top-right-radius: 50% 50px;
  z-index: 2;
  pointer-events: none;
  background: url(../images/bg.png), #6b2773;
  background-blend-mode: multiply, normal;
}

.swiper-action {
  position: absolute;
  top: 50%;
  width: 110%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-action .swiper-prev,
.swiper-action .swiper-next {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fce8cc;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .swiper-action {
    width: 90%;
    z-index: 1;
  }
}
.widget_blog-activity {
  height: 500px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .widget_blog-activity {
    height: 300px;
  }
}

.section-home {
  position: relative;
}

.bg9,
.bg8 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.bg9::before,
.bg9::after,
.bg8::before,
.bg8::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  background: #fbd8aa;
  border-radius: 1000px;
}

.bg9::before {
  inset-inline-end: 262.74px;
  top: -340px;
  filter: blur(150px);
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}
.bg9::after {
  inset-inline-end: 40px;
  top: -270px;
  filter: blur(200px);
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}

.bg8::before {
  inset-inline-start: 262.74px;
  top: -340px;
  filter: blur(150px);
  transform: rotate(38.89deg);
}
.bg8::after {
  inset-inline-start: 40px;
  top: -270px;
  filter: blur(200px);
  transform: rotate(38.89deg);
}

@media (max-width: 991px) {
  .widgets_items-home {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 5px;
  }
}
.widget_item-home {
  padding: 28px 5px;
  min-width: 160px;
  background: #faf8fa;
  box-shadow: 0px 8px 40px rgba(242, 139, 0, 0.04);
  border-radius: 28px;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-home .widget_item-icon img {
  transition: filter 0.2s ease-in-out;
}
.widget_item-home .widget_item-title {
  transition: color 0.2s ease-in-out;
}
.widget_item-home::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  inset-inline-start: -19px;
  top: -14px;
  background: #fce8cc;
  filter: blur(50px);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .widget_item-home {
    position: absolute;
  }
  .widget_item-home:nth-of-type(1) {
    top: 9%;
    inset-inline-start: 22%;
  }
  .widget_item-home:nth-of-type(2) {
    top: 53%;
    inset-inline-start: 15%;
  }
  .widget_item-home:nth-of-type(3) {
    top: 13%;
    inset-inline-end: 19%;
  }
  .widget_item-home:nth-of-type(4) {
    top: 55%;
    inset-inline-end: 13%;
  }
}
.widget_item-home:hover {
  background-color: #6B2773;
}
.widget_item-home:hover .widget_item-icon img {
  filter: brightness(0) invert(1);
}
.widget_item-home:hover .widget_item-title {
  color: #FFF;
}

.section-brand {
  background-color: #fefefe;
}

.widget_item-brand-2 .widget_item-image img {
  filter: grayscale(100%);
  height: 65px;
}

.widget_item-about-2 {
  background: rgba(254, 254, 254, 0.48);
  border-radius: 20px;
  padding: 24px;
  min-height: 274px;
  transition: background-color 1s ease-in-out;
}
.widget_item-about-2 .widget_item-number {
  color: #f8c580;
  font-size: 2.5rem;
}
.widget_item-about-2:hover {
  background-color: #6B2773;
}

.bg10 {
  background: url(../images/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.widget_item-about-2-image {
  border-radius: 20px;
  width: 100%;
}

.min-height-auto {
  min-height: auto !important;
}

.widget_item-stage {
  padding: 24px 0 0;
  background: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-stage::before {
  position: absolute;
  content: "";
  width: 126px;
  height: 126px;
  background: #fce8cc;
  filter: blur(100px);
  top: -30px;
  inset-inline-start: -20px;
  z-index: -1;
}
.widget_item-stage .widget_item-desc {
  height: 96px;
  overflow: hidden;
}
.widget_item-stage .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 100%;
}
.widget_item-stage .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-stage:hover {
  background-color: #6B2773;
}
.widget_item-stage:hover * {
  color: #FFF !important;
}

.swiper-action-2 .swiper-next,
.swiper-action-2 .swiper-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fefefe;
  cursor: pointer;
  border-radius: 1000px;
  transition: background-color 0.2s ease-in-out;
}
.swiper-action-2 .swiper-next img,
.swiper-action-2 .swiper-prev img {
  transition: filter 0.2s ease-in-out;
}
.swiper-action-2 .swiper-next:hover,
.swiper-action-2 .swiper-prev:hover {
  background-color: #6B2773;
}
.swiper-action-2 .swiper-next:hover img,
.swiper-action-2 .swiper-prev:hover img {
  filter: brightness(0) invert(1);
}

.widget_item-program {
  padding: 32px;
  background-color: #fefefe;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 28px;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-program .widget_item-icon {
  width: 120px;
  height: 120px;
  border-radius: 1000px;
}
.widget_item-program .widget_item-content {
  padding: 24px;
  border-radius: 16px;
}
.widget_item-program.widget_1 .widget_item-icon {
  background: #922d82;
}
.widget_item-program.widget_1 .widget_item-content {
  background: linear-gradient(180deg, #922d82 0%, #c996c1 100%);
}
.widget_item-program.widget_2 .widget_item-icon {
  background: #f28b00;
}
.widget_item-program.widget_2 .widget_item-content {
  background: linear-gradient(180deg, #f28b00 0%, #f9c580 100%);
}
.widget_item-program.widget_3 .widget_item-icon {
  background: #a09ca0;
}
.widget_item-program.widget_3 .widget_item-content {
  background: linear-gradient(180deg, #a09ca0 0%, #cfcdcf 100%);
}
.widget_item-program:hover {
  background-color: #6B2773;
}

.swiper-text {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.swiper-images {
  height: 370px;
}

.swiper-images .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.swiper-images img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

.swiper-images .zoom-in img {
  transform: scale(1);
}

.swiper-images .zoom-out img {
  transform: scale(0.85);
}

.swiper-images .active-slide img {
  opacity: 1;
}

.swiper-text .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

.swiper-text .active-text {
  opacity: 1;
}

.bgCircle {
  width: 770px;
  height: 400px;
  background: rgba(255, 255, 255, 0.3882352941);
  border-radius: 700px 700px 0 0;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: 0;
}

.section-animation.section-bg-1 .bg11,
.section-animation.section-bg-1 .bg12 {
  display: none;
}

.section-animation.section-bg-2 .bg8,
.section-animation.section-bg-2 .bg9 {
  display: none;
}

.bg11,
.bg12 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.bg11::before,
.bg11::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  background: #6b2773;
  border-radius: 1000px;
}

.bg12::before,
.bg12::after {
  content: "";
  position: absolute;
  width: 136.73px;
  height: 776.16px;
  background: #6b2773;
  border-radius: 1000px;
}

.bg11::before {
  inset-inline-end: 262.74px;
  top: -340px;
  filter: blur(150px);
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}
.bg11::after {
  inset-inline-end: 40px;
  top: -270px;
  filter: blur(200px);
  transform: matrix(-0.78, 0.63, 0.63, 0.78, 0, 0);
}

.bg12::before {
  inset-inline-start: 262.74px;
  top: -340px;
  filter: blur(150px);
  transform: rotate(38.89deg);
}
.bg12::after {
  inset-inline-start: 40px;
  top: -270px;
  filter: blur(200px);
  transform: rotate(38.89deg);
}

.widget_item-testimonial {
  transition: box-shadow 0.2s ease-in-out;
}
.widget_item-testimonial .widget_item-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-testimonial:hover {
  box-shadow: 0 10px 10px rgba(107, 39, 115, 0.3921568627);
}

.text-gradient {
  background: linear-gradient(180deg, #b593b9 0%, #6b2773 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}

.reviews-stars-wrap {
  color: #cfcfcf;
}
.reviews-stars-wrap i:not(:last-of-type) {
  margin-inline-end: 4px;
}

.widget_item-testimonial {
  border-radius: 20px;
  padding: 24px;
  background: rgba(254, 254, 254, 0.4);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  position: relative;
}

.widget_item-testimonial::before {
  content: "";
  position: absolute;
  top: 5px;
  inset-inline-start: 5px;
  width: 50px;
  height: 50px;
  border-top: 2px dashed #6B2773;
  border-right: 2px dashed #6B2773;
  border-top-right-radius: 12px;
}

.widget_item-testimonial::after {
  content: "";
  position: absolute;
  bottom: 5px;
  inset-inline-end: 5px;
  width: 50px;
  height: 50px;
  border-bottom: 2px dashed #6B2773;
  border-left: 2px dashed #6B2773;
  border-bottom-left-radius: 12px;
}

.widget_item-partnership {
  background: rgba(254, 254, 254, 0.5);
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
  border-top: 12px solid #f49e2b;
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 900px;
  }
}
.modal-content {
  background: rgba(0, 0, 0, 0.001);
  border-radius: 28px;
  backdrop-filter: blur(17px) saturate(120%);
  -webkit-backdrop-filter: blur(17px) saturate(120%);
  background-clip: padding-box;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5960784314);
}
.modal-content .btn-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  background-color: #fff;
  z-index: 2;
  opacity: 1;
}

.contact-form {
  background-color: #fefefe;
}

#wizard .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}
#wizard .nav li {
  flex: 1;
}
#wizard .nav li:last-child .nav-link::after {
  display: none;
}
#wizard .nav .nav-link {
  position: relative;
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#wizard .nav .nav-link .num {
  width: 32px;
  height: 32px;
  display: inline-flex;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  border: 1px solid #faf8fa;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}
#wizard .nav .nav-link.active .num, #wizard .nav .nav-link.done .num {
  background: #fff;
  color: #000;
}
#wizard .nav .nav-link::after {
  content: "";
  position: absolute;
  top: 24px;
  inset-inline-start: 78%;
  width: 45%;
  height: 2px;
  border-top: 2px dashed #faf8fa;
  z-index: 1;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
.widget_card.error {
  border-color: #d9534f !important;
  animation: shake 0.3s;
}

.sw-toolbar-elm {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}
.sw-toolbar-elm .btn {
  flex: 1 1 0;
  display: block;
  width: 100%;
  border-radius: 30px;
  color: #fefefe;
  padding: 13px 2px;
}
.sw-toolbar-elm .sw-btn-next {
  background-color: #f28b00;
}
.sw-toolbar-elm .sw-btn-prev {
  background-color: transparent;
  border: 1px solid #fefefe;
}

.widget_card {
  background: rgba(0, 0, 0, 0.001);
  border-radius: 12px;
  cursor: pointer;
}
.widget_card .widget_card-image {
  position: relative;
  height: 0;
  padding-top: 100%;
}
.widget_card .widget_card-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.widget_card.selected {
  background: rgba(242, 139, 0, 0.18);
}

.bg-light {
  background-color: #fefefe !important;
}

.file-upload-wrapper {
  width: 100%;
  color: #a09ca0;
}

.file-upload-label {
  justify-content: space-between;
  display: flex;
  align-items: center;
  border: 1px dashed #e2e1e2;
  border-radius: 8px;
  padding: 12px 12px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
}

.file-upload-label input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: -1;
}

.file-placeholder {
  color: #a09ca0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flatpickr-calendar {
  width: 100%;
  box-shadow: none;
}
.flatpickr-calendar .flatpickr-weekdays {
  display: none;
}
.flatpickr-calendar .flatpickr-rContainer {
  display: block;
  width: 100%;
}
.flatpickr-calendar .flatpickr-rContainer .flatpickr-days {
  width: 100%;
}
.flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  width: 100%;
  min-width: auto;
  max-width: unset;
}
.flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day {
  max-width: unset;
  font-size: 12px;
  width: 100% !important;
  padding: 3px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 50px;
  line-height: 18px;
  border: 1px solid #faf8fa;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
}
.flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.selected, .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day:hover, .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.selected:hover {
  background-color: #f8c580;
  border-color: #f8c580;
}

#calendar {
  width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-current-month {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1em;
  width: 100%;
  left: 0;
  padding-top: 0;
}
.flatpickr-current-month span.cur-month {
  display: none;
}

.flatpickr-months {
  justify-content: center;
  align-items: center;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  flex: none;
  margin: 0 15px;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  line-height: 10px;
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #A09CA0;
  border-radius: 50%;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 10px;
  height: 10px;
}

html[dir=rtl] .flatpickr-months .flatpickr-month {
  order: 1;
}
html[dir=rtl] .flatpickr-months .flatpickr-prev-month {
  order: 2;
}
html[dir=rtl] .flatpickr-months .flatpickr-next-month {
  order: 0;
}
html[dir=rtl] .flatpickr-months .flatpickr-prev-month,
html[dir=rtl] .flatpickr-months .flatpickr-next-month {
  transform: rotate(180deg);
}

.card-dates-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 297px;
  overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #6B2773;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.card-dates {
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  color: #706A70;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FEFEFE;
  border: 1px solid #FAF8FA;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
  gap: 5px;
  padding: 23px 1px;
}
.card-dates.selected {
  background-color: #F8C580;
  color: #FFF;
}

.card-dates:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 4px rgba(12, 12, 13, 0.05);
}

@media (max-width: 768px) {
  .card-dates-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .card-dates-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.is-invalid {
  border-color: red;
}

.image-check img {
  height: 300px;
}

.video-fancybox {
  position: relative;
}
.video-fancybox .btn-fancybox {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fancybox__container {
  z-index: 1060;
}

.fancybox__thumbs {
  display: none !important;
}

.main-footer .footer-top {
  padding: 50px 0 30px;
}
.main-footer .footer-bottom {
  padding: 30px 0 60px;
}
.main-footer .link-footer a {
  position: relative;
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
  padding-inline-start: 12px;
}
.main-footer .link-footer a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/border.svg);
  background-repeat: no-repeat;
  background-size: cover;
  inset-inline-start: -2px;
  top: 50%;
  transform: translateY(-50%);
}
.main-footer .footer-bottom {
  border-top: 1px dashed #FAF8FA;
}
.main-footer .footer-bottom .link-footer a::before {
  content: unset;
}

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

.social-media li:not(:last-of-type) {
  margin-inline-end: 10px;
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
  main {
    overflow: hidden;
  }
}
html[dir=ltr] .section-home::after, html[dir=ltr] .btn-light-primary .icon img {
  transform: scaleX(-1);
}/*# sourceMappingURL=main.css.map */