/*********************************************************
  // global color variables
**********************************************************/
/*********************************************************
  // Font variables
**********************************************************/
/*********************************************************
  // spacing variables
**********************************************************/
/*********************************************************
  // screens
**********************************************************/
/* Main properties that control the layout direction are:
-----------------------------------------------
- Direction (LTR/RTL)
- Float (left/right)
- Margin 
- Padding
- Absolute position (left/right)
- Background position (left/right)
- Border
- Border radious
- Note: "Think about flexbox properties"
*/
/* Clearfix */
/* Direction */
/* Float */
/* Margin */
/* Padding */
/* Left And Right For Absolute Position */
/* Border */
/* d-f-center */
/* d-f-between */
/* Circle */
/* Overlay */
/* Grid */
/* translate */
* {
  border: 0;
  margin: 0;
  outline: 0;
  line-height: initial;
  box-sizing: border-box;
}

@font-face {
  font-family: fontDemi;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Demi.ttf");
}
@font-face {
  font-family: fontReg;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Light.ttf");
}
@font-face {
  font-family: fontMed;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Medium.ttf");
}
@font-face {
  font-family: fontBold;
  src: url("../fonts/ArbFONTS-URW-DIN-Arabic-Bold.ttf");
}
@font-face {
  font-family: fontPrima;
  src: url("../../fonts/prima_serif_roman_bt.ttf");
}
@font-face {
  font-family: 'cairo';
  src: url("https://reckoningg.com/demo//public/website/assets/fonts/Cairo-Regular.ttf");
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #A98467;
}

body {
  font-family: fontMed;
  overflow-x: hidden;
  background-color: #fff;
}
html[lang=en] body {
  direction: ltr;
  text-align: left;
}
html[lang=ar] body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
}

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

input {
  font-size: 15px;
}
html[lang=en] input {
  direction: ltr;
}
html[lang=ar] input {
  direction: rtl;
}
input::placeholder {
  color: #A98467;
  font-size: 13px;
  transition: all 0.3s ease;
}
input:focus::placeholder {
  opacity: 0;
}

select {
  appearance: none;
  font-size: 13px;
  color: #060042;
}

textarea {
  resize: none;
}

i {
  line-height: initial;
}

p {
  color: #202020;
  margin: 0;
  font-size: 1em;
}

input:focus::placeholder {
  color: transparent;
}

*::placeholder {
  color: #adabab;
  font-size: 13px;
  transition: all 0.3s ease;
}

form {
  padding: 0;
}
html[lang=en] form {
  text-align: left;
}
html[lang=ar] form {
  text-align: right;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #A98467;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.owl-carousel {
  touch-action: manipulation;
}

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

button,
input[type=submit] {
  cursor: pointer;
}

button,
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

select:focus,
button:focus,
input:focus {
  outline: 0;
}

/* owl carousel*/
.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
  -ms-touch-action: auto;
  touch-action: auto;
  /*display: flex;*/
  /*align-items: center;*/
}

/* owl carousel*/
@media (min-width: 1720px) {
  .container {
    max-width: 1418px;
  }
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background-color: white;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.loader-container img {
  max-width: 470px;
  max-height: 470px;
  object-fit: cover;
}
@keyframes progress-bar {
  0% {
    left: -6vw;
  }
  100% {
    left: 70%;
  }
}
.loader-container #loader {
  max-width: 140px;
  position: relative;
  margin: 0 auto;
}
.loader-container #loader #logo {
  width: 80px;
  margin: 0 auto;
  padding-bottom: 35px;
}
.loader-container #loader #logo img {
  max-width: 100%;
}
.loader-container #loader #progressbar {
  background-color: #f0f0f0;
  height: 3px;
  border-radius: 30px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  overflow: hidden;
  width: 100px;
}
.loader-container #loader #progressbar::before {
  width: 5vw;
  position: relative;
  left: -7vw;
  background-color: #A98467;
  content: " ";
  display: block;
  height: 3px;
  border-radius: 30px;
  animation: 1.2s progress-bar 0.5s infinite alternate ease-in-out;
}

.main-search {
  width: 100%;
  height: 48px;
  background-color: #fff;
  position: absolute;
  bottom: 250px;
  right: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  z-index: 25;
}
.main-search.active {
  bottom: -46px;
}
@media screen and (max-width: 992px) {
  .main-search {
    bottom: unset;
    top: -250px;
  }
  .main-search.active {
    top: 143px;
  }
}
.main-search .main-search-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-search input {
  height: 100%;
  width: 100%;
  background-color: transparent;
}
.main-search input::placeholder {
  color: #adabab;
  font-size: 13px;
  transition: all 0.3s ease;
}
.main-search input:focus::placeholder {
  opacity: 0;
}
.main-search .search-ic {
  font-size: 15px;
  color: #202020;
  cursor: pointer;
}

.overlay-m {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1030;
}

.bg-transparent {
  background-color: transparent;
}

@media screen and (max-width: 576px) {
  .w-xxs-100 {
    min-width: 170px !important;
  }
}
@media screen and (max-width: 425px) {
  .w-xxs-100 {
    min-width: 145px !important;
  }
}
@media screen and (max-width: 360px) {
  .w-xxs-100 {
    width: 100% !important;
  }
}

html[lang=en] .link-border {
  border-right: 1px solid rgba(32, 32, 32, 0.3) !important;
}
html[lang=ar] .link-border {
  border-left: 1px solid rgba(32, 32, 32, 0.3) !important;
}

.shadow {
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-0 {
  box-shadow: none !important;
}

.main-shadow {
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}

.shadow-sm {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .shadow-lg-0 {
    box-shadow: unset;
  }
}

@media screen and (max-width: 576px) {
  .shadow-sm-0 {
    box-shadow: unset;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 54px 45px;
}
@media screen and (max-width: 768px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px 20px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(354px, 1fr));
  gap: 30px 25px;
}
@media screen and (max-width: 425px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px 20px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(435px, 1fr));
  gap: 48px 40px;
}
@media screen and (max-width: 992px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px 20px;
  }
}
@media screen and (max-width: 576px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 24px 20px;
  }
}
.grid-2.g-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px 20px;
}

.grid-p {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 54px 45px;
}

.grid-s {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px 20px;
}

.d-flex-c {
  display: flex;
  align-items: center;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mt-14 {
  margin-top: 14px;
}

html[lang=en] .pl-25 {
  padding-right: 25px !important;
}
html[lang=ar] .pl-25 {
  padding-left: 25px !important;
}

html[lang=en] .ml-25 {
  margin-right: 25px !important;
}
html[lang=ar] .ml-25 {
  margin-left: 25px !important;
}

.done {
  color: #46AB4D;
  font-size: 24px;
}

@media screen and (max-width: 992px) {
  .responsive-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
    min-height: 400px;
  }
}

.dropdown-m-container {
  position: relative;
}
.dropdown-m-container .dropdown-m {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  opacity: 0;
  padding: 10px;
  top: 80px;
  z-index: -1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
  width: 200px;
  max-height: 300px;
  overflow-y: auto;
}
html[lang=en] .dropdown-m-container .dropdown-m {
  right: 0;
}
html[lang=ar] .dropdown-m-container .dropdown-m {
  left: 0;
}
@media screen and (max-width: 425px) {
  html[lang=en] .dropdown-m-container .dropdown-m {
    right: 50%;
  }
  html[lang=ar] .dropdown-m-container .dropdown-m {
    left: 50%;
  }
  html[lang=en] .dropdown-m-container .dropdown-m {
    transform: translateX(50%);
  }
  html[lang=ar] .dropdown-m-container .dropdown-m {
    transform: translateX(-50%);
  }
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar {
  width: 3px;
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-m-container .dropdown-m::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #A98467;
}
.dropdown-m-container .dropdown-m.active-drop {
  opacity: 1;
  top: 45px;
  z-index: 55;
  pointer-events: auto;
}
.dropdown-m-container .dropdown-m.user-drop {
  width: 150px;
}
.dropdown-m-container .dropdown-m.not-drop {
  width: 240px;
}
.dropdown-m-container .dropdown-m .drop-link {
  display: block;
  padding: 6px 0;
  text-align: center;
  color: #060042;
  font-size: 15px;
  margin: 2px;
  transition: all 0.3s ease;
}
.dropdown-m-container .dropdown-m .drop-link:hover {
  color: #060042;
}
.dropdown-m-container .dropdown-m .drop-text {
  display: block;
  padding: 10px 10px;
  text-align: center;
  color: #060042;
  font-size: 14px;
  line-height: 1.6;
  height: 62.9px;
  border-bottom: 1px solid #f0f0f0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dropdown-m-container .dropdown-m .drop-text:last-of-type {
  border-bottom: none;
}
.dropdown-m-container .dropdown-m .more-anchor {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: #0d6efd;
  text-decoration: underline !important;
}

/********************* Tabs *********************/
.nav {
  gap: 12px;
}
@media screen and (max-width: 576px) {
  .nav {
    gap: 8px;
  }
}
.nav.nav-mb {
  margin-bottom: 0 !important;
}
.nav.border-m {
  border-bottom: 1px solid #D9D9D9;
}
.nav.nav-pills .nav-link {
  min-width: 160px;
  color: #202020;
  border: 1px solid #060042;
  font-size: 14px;
  border-radius: 5px;
  font-family: fontMed;
  padding: 12px 15px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    min-width: auto;
  }
}
@media screen and (max-width: 576px) {
  .nav.nav-pills .nav-link {
    font-size: 13px;
    padding: 10px 10px;
  }
}
.nav.nav-pills .nav-link.sm {
  min-width: 120px;
}
.nav.nav-pills .nav-link.active, .nav.nav-pills .nav-link:hover {
  background-color: #060042;
  color: #fff;
}
.nav.nav-pills .nav-link.color-none {
  min-width: auto;
  background-color: transparent;
  font-size: 16px;
  border-radius: 0;
  padding: 5px;
}
@media screen and (max-width: 425px) {
  .nav.nav-pills .nav-link.color-none {
    font-size: 14px;
  }
}
.nav.nav-pills .nav-link.color-none.active, .nav.nav-pills .nav-link.color-none:hover {
  background-color: transparent;
  color: #A98467;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tabs .tab {
  background-color: transparent;
  font-size: 15px;
  color: #202020;
  padding: 10px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.tabs .tab:hover {
  color: #A98467;
}
.tabs .tab.active {
  background-color: #A98467;
  color: #fff;
}

/********************* steps *********************/
.progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto 40px;
  max-width: 100%;
  width: 400px;
}
@media screen and (max-width: 576px) {
  .progress-container {
    width: 360px;
  }
}
@media screen and (max-width: 425px) {
  .progress-container {
    width: 320px;
  }
}

.progress-container::before {
  content: "";
  border: 1px dashed rgba(158, 160, 164, 0.4);
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translatex(-50%);
  width: calc(100% - 70px);
  z-index: -1;
}

.progress-item {
  position: relative;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.progress-item .circle {
  background-color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #A98467;
  transition: 0.4s ease;
  color: transparent;
  margin-bottom: 10px;
  font-size: 15px;
}
.progress-item .text {
  font-size: 14px;
  color: #202020;
}
.progress-item.active .circle {
  border-color: #A98467;
  color: #A98467;
}
.progress-item.active .text {
  color: #A98467;
}

/********************* breadcrumb *********************/
.breadcrumb-section {
  background-color: #fff;
  padding: 14px 0;
}
.breadcrumb-section .breadcrumb-m {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb-m .breadcrumb-m-link {
  color: #A98467;
}
.breadcrumb-section .breadcrumb-m .breadcrumb-m-link.active {
  color: #202020;
}
.breadcrumb-section .breadcrumb-m i {
  color: #202020;
}
html[lang=en] .breadcrumb-section .breadcrumb-m i {
  transform: rotateY(-180deg);
}

/********************* iti__selected-flag *************/
.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  width: 100px;
  justify-content: center;
  min-height: 48px;
  border-radius: 5px;
  font-size: 14px;
  color: #A98467;
  transition: all 0.3s ease;
  border: 1px solid #D5D5D5;
  background-color: transparent !important;
}
@media screen and (max-width: 425px) {
  .iti .iti__selected-flag {
    min-height: 44px;
  }
}
.iti .iti__selected-flag .iti__selected-dial-code {
  margin: 8px;
}
html[lang=en] .iti .iti__country-list {
  right: 0;
}
html[lang=ar] .iti .iti__country-list {
  left: 0;
}

html[lang=en] .iti--allow-dropdown .iti__flag-container, html[lang=en] .iti--separate-dial-code .iti__flag-container {
  right: 0 !important;
  left: unset;
}
html[lang=ar] .iti--allow-dropdown .iti__flag-container, html[lang=ar] .iti--separate-dial-code .iti__flag-container {
  left: 0;
  right: unset !important;
}

/********************* Titles *********************/
.big-title {
  font-size: 23px;
  color: #060042;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .big-title {
    font-size: 20px;
  }
}
.big-title.sm {
  font-size: 17px;
}

.color-title {
  font-size: 20px;
  color: #060042;
}

.section-title {
  position: relative;
  color: #202020;
  font-size: 17px;
  width: fit-content;
  margin: auto;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 40px;
  background-color: #202020;
}

/********************* Buttons *********************/
.up:hover,
.up:focus {
  -webkit-box-shadow: inset 0 -4.25em 0 0 var(#fff);
  box-shadow: inset 0 -4.25em 0 0 #fff;
  color: #A98467 !important;
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-width: 160px;
  background-color: #A98467;
  border: 1px solid #A98467;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .main-btn {
    height: 45px;
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .main-btn {
    min-width: 132px;
  }
}
.main-btn.yellow-transparent {
  background-color: transparent;
  color: #202020;
  border-color: #EEDA8D;
}
.main-btn.yellow-transparent:hover {
  background-color: #EEDA8D;
  color: #fff;
}
.main-btn.red {
  background-color: #D93F21;
  color: #fff;
  border-color: #D93F21;
}
.main-btn.white {
  background-color: #fff;
  color: #202020;
  border-color: #202020;
}
.main-btn.white:hover {
  background-color: #202020;
  color: #fff;
}
.main-btn.transparent {
  background-color: #fff;
  color: #202020;
  border-color: #A98467;
}
.main-btn.transparent:hover {
  background-color: #A98467;
  color: #fff;
}
.main-btn.sm {
  min-width: 120px;
  font-size: 14px;
  height: 44px;
}
.main-btn.xs {
  width: 80px;
  font-size: 13px;
  height: 32px;
}
.main-btn.md {
  min-width: 190px;
  height: 46px;
  font-size: 16px;
}
.main-btn.lg {
  width: 210px;
  font-size: 16px;
  height: 46px;
}
@media screen and (max-width: 576px) {
  .main-btn.lg {
    font-size: 16px;
    width: 140px;
    height: 48px;
  }
}
@media screen and (max-width: 425px) {
  .main-btn.lg {
    font-size: 15px;
    width: 130px;
    height: 47px;
  }
}
@media screen and (max-width: 375px) {
  .main-btn.lg {
    width: 120px;
    height: 45px;
  }
}
.main-btn.xl {
  width: 250px;
  height: 54px;
  font-size: 18px;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .main-btn.xl {
    width: 200px;
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.main-btn .ic {
  max-width: 15px;
  max-height: 13px;
}

.buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.buttons.lg {
  gap: 10px 23px;
}
@media screen and (max-width: 576px) {
  .buttons .main-btn {
    width: fit-content;
    min-width: 150px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 425px) {
  .buttons .main-btn {
    width: fit-content;
    min-width: 130px;
    height: 44px;
  }
}

.sm-btn {
  background-color: #A98467;
  font-size: 15px;
  border: none;
  outline: none;
  width: 50px;
  height: 45px;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

/********************* Colors *********************/
.c-black {
  color: #202020 !important;
}

.c-dark {
  color: #060042 !important;
}

.c-black2 {
  color: #000;
}

.c-main {
  color: #A98467 !important;
}

.c-red {
  color: #D93F21 !important;
}

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: #F6F6F8;
}

.bb {
  border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}

.bl {
  border-left: 1px solid rgba(32, 32, 32, 0.1);
}

.w-100 {
  width: 100%;
}

.w-space-normal {
  white-space: normal !important;
}

.cu-pointer {
  cursor: pointer;
}

.not-pointer {
  cursor: auto !important;
}

.main-bb {
  border-bottom: 1px solid rgba(32, 32, 32, 0.2) !important;
}

.lh-base {
  line-height: 1.7 !important;
}

.lh-5 {
  line-height: 1.5 !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px !important;
}
@media screen and (max-width: 425px) {
  .fs-16 {
    font-size: 15px !important;
  }
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}
@media screen and (max-width: 425px) {
  .fs-24 {
    font-size: 18px !important;
  }
}

.lh {
  line-height: 1.7;
}

.ff-d {
  font-family: fontDemi !important;
}

.ff-b {
  font-family: fontBold !important;
}

.ff-m {
  font-family: fontMed !important;
}

.side-user-open {
  max-width: 34px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 992px) {
  .side-user-open {
    display: block;
  }
}

.remove-append {
  position: absolute;
  bottom: 14px;
  width: fit-content;
  cursor: pointer;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #D93F21;
  font-size: 12px;
  padding: 0;
}
html[lang=en] .remove-append {
  right: -7px;
}
html[lang=ar] .remove-append {
  left: -7px;
}

.main-border {
  border: 1px solid #A98467;
}

.main-border-b {
  border-bottom: 1px solid #A98467;
}

.main-padding {
  padding: 54px 0;
}
@media screen and (max-width: 425px) {
  .main-padding {
    padding: 38px 0;
  }
}

.main-pt {
  padding-top: 48px;
}
@media screen and (max-width: 425px) {
  .main-pt {
    padding-top: 35px;
  }
}

.main-pb {
  padding-bottom: 48px !important;
}
@media screen and (max-width: 425px) {
  .main-pb {
    padding-bottom: 38px;
  }
}

.sec-padding {
  padding: 30px 0;
}

.sec-pt {
  padding-top: 30px;
}

.sec-pb {
  padding-bottom: 30px;
}

.rounded-3 {
  border-radius: 0.6rem !important;
}

.main-text {
  font-size: 15px;
  line-height: 1.9;
  color: #202020;
  font-family: fontReg;
}

.sec-text {
  font-size: 15px;
  color: #202020;
  display: flex;
  gap: 7px;
}

.main-img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: 3px solid #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: all 0.3s ease;
}
.main-img.lg {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.main-imgs {
  display: flex;
  align-items: center;
}
html[lang=en] .main-imgs .main-img:not(:last-child) {
  margin-right: -8px;
}
html[lang=ar] .main-imgs .main-img:not(:last-child) {
  margin-left: -8px;
}

.desc {
  font-size: 14px;
  color: #202020;
  line-height: 1.9;
}
@media screen and (max-width: 425px) {
  .desc {
    font-size: 13px;
    line-height: 1.6;
  }
}
.desc.sm {
  font-size: 12px;
  line-height: 1.4;
}
.desc.lg {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 425px) {
  .desc.lg {
    font-size: 16px;
  }
}

.filter-tabs {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #060042;
}
@media screen and (max-width: 576px) {
  .filter-tabs {
    order: 3;
  }
}
.filter-tabs .filter-tab {
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  min-width: 95px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.filter-tabs .filter-tab.active {
  background-color: #060042;
  color: #fff;
}

.tabs-m {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 576px) {
  .tabs-m {
    gap: 10px;
  }
}
.tabs-m .tab-m {
  min-width: 190px;
  min-height: 46px;
  cursor: pointer;
  font-size: 15px;
  color: #202020;
  border: 1px solid #202020;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  transition: all 0.3s ease;
}
.tabs-m .tab-m.active {
  color: #fff;
  background-color: #060042;
  border-color: #060042;
}
@media screen and (max-width: 768px) {
  .tabs-m .tab-m {
    min-width: 150px;
    min-height: 44px;
  }
}
@media screen and (max-width: 576px) {
  .tabs-m .tab-m {
    min-width: 130px;
    min-height: 44px;
  }
}
@media screen and (max-width: 425px) {
  .tabs-m .tab-m {
    min-width: fit-content;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 14px;
  }
}

.height-full {
  height: 100%;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars .star {
  font-size: 17px;
  color: #EEDA8D;
}
.stars.lg {
  gap: 5px;
}
.stars.lg .star {
  font-size: 19px;
}

/********************* Inputs *********************/
.input-g {
  margin-bottom: 15px;
  display: block;
}

.main-label {
  margin-bottom: 12px;
  font-size: 15px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-label .label-hint {
  color: #060042;
  font-family: fontReg;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .main-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .main-label {
    font-family: fontMed;
    font-size: 15px;
  }
}

.main-input {
  position: relative;
}
.main-input .input-me {
  width: 100%;
  min-height: 45px;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #060042;
  transition: all 0.3s ease;
  border: 1px solid #A98467;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}
.main-input .base_area {
  width: 100%;
  min-height: 108px;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #060042;
  transition: all 0.3s ease;
  border: 1px solid #A98467;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}
@media screen and (max-width: 425px) {
  .main-input .input-me {
    min-height: 44px;
  }
}
.main-input .input-me.photo-input {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #202020;
  cursor: pointer;
}
.main-input .input-me::placeholder {
  font-size: 14px;
  color: #202020;
  transition: all 0.3s ease;
}
.main-input .input-me:focus {
  border-color: #202020;
}
.main-input .input-me:focus::placeholder {
  opacity: 0;
}
.main-input .input-me.text-area {
  height: 145px;
  padding: 12px;
}
.main-input .input-me.text-area.sm {
  height: 90px;
}
.main-input .input-me.text-area.lg {
  height: 230px;
}
.main-input .main-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 13px;
  cursor: pointer;
  pointer-events: none;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  max-width: 18px;
}
html[lang=en] .main-input .main-icon {
  right: 14px;
}
html[lang=ar] .main-input .main-icon {
  left: 14px;
}
.main-input .main-icon .ic {
  max-width: 18px;
  cursor: pointer;
}
.main-input .main-icon.search-ic {
  pointer-events: auto;
}
.main-input .main-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-210deg);
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background-color: #A98467;
  opacity: 0;
  transition: all 0.3s ease;
}
.main-input .main-icon.show::after {
  opacity: 1;
}
.main-input .sec-icon {
  position: absolute;
  top: 0;
  background-color: #A98467;
  font-size: 15px;
  border: none;
  outline: none;
  width: 50px;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
html[lang=en] .main-input .sec-icon {
  right: 0;
}
html[lang=ar] .main-input .sec-icon {
  left: 0;
}
html[lang=en] .main-input.form .input-me {
  padding-left: 40px;
}
html[lang=ar] .main-input.form .input-me {
  padding-right: 40px;
}
.main-input.form .main-icon {
  top: 22px;
  transform: unset;
  top: 13px;
  transform: unset;
  max-width: 20px;
  max-height: 18px;
}
html[lang=en] .main-input.form .main-icon {
  right: unset;
}
html[lang=ar] .main-input.form .main-icon {
  left: unset;
}
html[lang=en] .main-input.form .main-icon {
  left: 14px;
}
html[lang=ar] .main-input.form .main-icon {
  right: 14px;
}
.main-input.comment .input-me {
  min-height: 56px;
  box-shadow: unset;
}
@media screen and (max-width: 425px) {
  .main-input.comment .input-me {
    min-height: 50px;
  }
}
.main-input.comment .input-me.sm {
  min-height: 47px;
}
.main-input.comment .main-icon {
  top: 50%;
  transform: translateY(-50%);
}
.main-input.comment .sec-icon {
  width: 100px;
  border-radius: 0;
}
@media screen and (max-width: 425px) {
  .main-input.comment .sec-icon {
    width: 80px;
  }
}
html[lang=en] .main-input.comment .sec-icon {
  border-radius: 0 8px 8px 0 !important;
}
html[lang=ar] .main-input.comment .sec-icon {
  border-radius: 8px 0 0 8px !important;
}

/********************* Select Two *********************/
.select ~ .select2, .select-multi ~ .select2, .select-color ~ .select2 {
  width: 100% !important;
}
.select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
  cursor: pointer;
  min-height: 45px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  color: #060042;
  border: 1px solid #A98467;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  padding: 0 12px;
}
@media (max-width: 425px) {
  .select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
    min-height: 44px;
  }
}
.select ~ .select2 .select2-selection--single .select2-selection__rendered, .select ~ .select2 .select2-selection--multiple .select2-selection__rendered, .select-multi ~ .select2 .select2-selection--single .select2-selection__rendered, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__rendered, .select-color ~ .select2 .select2-selection--single .select2-selection__rendered, .select-color ~ .select2 .select2-selection--multiple .select2-selection__rendered {
  color: #202020;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 0;
  max-height: 125px;
  overflow-y: auto;
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow, .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  border: 0;
}
html[lang=en] .select ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=en] .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=en] .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=en] .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  right: 12px;
}
html[lang=ar] .select ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=ar] .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow, html[lang=ar] .select-color ~ .select2 .select2-selection--single .select2-selection__arrow, html[lang=ar] .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow {
  left: 12px;
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select ~ .select2 .select2-selection--multiple .select2-selection__arrow::after, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select-multi ~ .select2 .select2-selection--multiple .select2-selection__arrow::after, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow::after, .select-color ~ .select2 .select2-selection--multiple .select2-selection__arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  display: flex;
  font-size: 13px;
  color: #060042;
  font-weight: 900;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .select ~ .select2 .select2-selection--single, .select ~ .select2 .select2-selection--multiple, .select-multi ~ .select2 .select2-selection--single, .select-multi ~ .select2 .select2-selection--multiple, .select-color ~ .select2 .select2-selection--single, .select-color ~ .select2 .select2-selection--multiple {
    padding: 10px 5px;
  }
}
.select ~ .select2 .select2-selection--single .select2-selection__arrow b, .select-multi ~ .select2 .select2-selection--single .select2-selection__arrow b, .select-color ~ .select2 .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select.lg ~ .select2 .select2-selection--single, .select.lg ~ .select2 .select2-selection--multiple, .select-multi.lg ~ .select2 .select2-selection--single, .select-multi.lg ~ .select2 .select2-selection--multiple, .select-color.lg ~ .select2 .select2-selection--single, .select-color.lg ~ .select2 .select2-selection--multiple {
  min-width: 95px;
}

.select2-container .select2-search--inline .select2-search__field {
  font-family: fontMed;
  padding: 0 8px;
}
.select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #adabab;
  font-size: 13px;
}

.select2-selection__clear {
  display: none;
}

.select2-dropdown {
  z-index: 1100;
  border-radius: 8px !important;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #D9D9D9;
  border: none;
  border-radius: 2px;
  margin: 0 !important;
  padding: 9px 25px !important;
  position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #060042;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-radius: 50% !important;
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #A98467 !important;
  color: #fff !important;
  font-size: 12px;
  border: none !important;
  top: 3px !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
html[lang=en] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  right: 4px !important;
}
html[lang=ar] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  left: 4px !important;
}

.select2-results__option {
  text-align: center;
  padding: 12px;
  color: #202020;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.select2-results__option:last-child {
  border-bottom: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #A98467;
  font-size: 15px;
  transition: all 0.3s ease;
}
.select2-container--default .select2-results__option--selected {
  background-color: transparent;
}
.select2-container--default .select2-results__option--disabled {
  color: #202020;
  font-size: 15px;
  opacity: 0.8;
}

.select2-results__options {
  max-height: 220px !important;
}

.select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #fcbbbb;
}

.dropdown-select-2 {
  max-width: 185px;
  width: 185px;
  overflow-x: hidden !important;
}
@media (max-width: 425px) {
  .dropdown-select-2 {
    max-width: 160px;
    width: 160px;
  }
}
.dropdown-select-2 li {
  word-wrap: break-word;
  font-size: 14px;
}

.flatpickr-day.selected {
  background-color: #A98467;
  border-color: #A98467;
}
.flatpickr-day.selected:hover {
  background-color: #A98467;
  border-color: #A98467;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.check-box:last-child {
  margin-bottom: 0;
}
.check-box.form-check-m {
  gap: 6px;
  margin-bottom: 0px;
}
.check-box input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
}
.check-box .check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #A98467;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.check-box .check:hover {
  background-color: #fff;
}
.check-box.form-check-m .check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.check-box input:checked + .check {
  background-color: #A98467;
  border-color: #A98467;
}
.check-box input:checked + .check::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #fff;
}
.check-box .check-text {
  font-size: 15px;
  cursor: pointer;
}
.check-box.form-check-m input:checked + .check {
  background-color: #060042;
}
.check-box.form-check-m input:checked + .check::after {
  color: #fff;
}
.check-box .check-anchor {
  cursor: pointer;
  color: #202020;
  font-size: 15px;
  line-height: 1.6;
}
.check-box .check-anchor a {
  color: #202020;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-family: fontDemi;
}
.check-box .check-anchor a:hover {
  color: #060042;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-box:last-child {
  margin-bottom: 0;
}
.radio-box .input-radio {
  width: 18px;
  height: 18px;
  accent-color: #7a8c7b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-box .label-radio {
  font-size: 16px;
  color: #202020;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.radio-box .label-radio .radio-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  object-fit: cover;
}
.radio-box.radio-imgs {
  align-items: center;
  gap: 6px;
}
.radio-box.radio-imgs .label-radio {
  font-size: 14px;
}

.user-photo-con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.user-photo-con .user-text {
  font-size: 16px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  .user-photo-con .user-text {
    font-size: 14px;
  }
}

.user-img {
  position: relative;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 425px) {
  .user-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
}
.user-img .profile-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.user-img .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-img .user-camera {
  position: absolute;
  bottom: -5px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #A98467;
}
html[lang=en] .user-img .user-camera {
  right: 9px;
}
html[lang=ar] .user-img .user-camera {
  left: 9px;
}
.user-img .user-camera img {
  max-width: 15px;
  max-height: 16px;
}

.hidden-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.file-con {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #060042;
  padding: 8px 12px;
  font-size: 14px;
  width: fit-content;
  cursor: pointer;
  background-color: #D9D9D9;
  position: relative;
}
.file-con .close {
  color: #202020;
}

.hidden-img {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-top: 8px;
}
.hidden-img img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hidden-img.lg {
  width: 100px;
  height: 100px;
}
.hidden-img.lg img {
  border-radius: 5px;
}
.hidden-img a {
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.remove-img {
  position: absolute;
  top: 5px;
  color: #D93F21;
  /*color: #fff;*/
  background-color: transparent;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
html[lang=en] .remove-img {
  right: 5px;
}
html[lang=ar] .remove-img {
  left: 5px;
}
.remove-img img {
  width: 24px;
  height: 24px;
}

.remove-img-2 {
  position: absolute;
  top: -5px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D93F21;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
html[lang=en] .remove-img-2 {
  right: -5px;
}
html[lang=ar] .remove-img-2 {
  left: -5px;
}

.img-upload-show {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.img-upload-show.active {
  justify-content: flex-start;
}

.edit-pass {
  font-size: 16px;
  color: #A98467;
  position: absolute;
  top: 14px;
  cursor: pointer;
  text-decoration: underline;
}
html[lang=en] .edit-pass {
  right: 14px;
}
html[lang=ar] .edit-pass {
  left: 14px;
}
@media screen and (max-width: 576px) {
  .edit-pass {
    position: unset;
    margin: 15px;
    display: block;
  }
}

/********************* Code Modal *********************/
.code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
}
.code-container .code {
  border-radius: 10px;
  font-size: 15px;
  height: 54px;
  width: 60px;
  border: 1px solid #A98467;
  margin: 2%;
  text-align: center;
  font-weight: 300;
  appearance: textfield;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .code-container .code {
    width: 50px;
    height: 50px;
  }
}
.code-container .code:focus {
  background-color: #A98467;
  border-color: #A98467;
  color: #fff;
}
.counter{
  direction: ltr;
}
/********************* Rating Modal *********************/
.rating-star {
  align-items: flex-start !important;
  margin-bottom: 22px;
}

.js-wc-star-rating .js-wc-rating-value, .js-wc-star-rating .js-wc-label {
  display: none;
}
.js-wc-star-rating i {
  font-size: 26px !important;
  cursor: pointer;
}

/********************* Bootstrap Modal *********************/
.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-track {
  background: #D9D9D9;
}

.modal::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #A98467;
}

.modal-dialog {
  min-width: 560px;
}
.modal-dialog.lg {
  min-width: 640px;
}
.modal-dialog.lg .modal-content {
  border-radius: 12px;
  padding: 40px 90px 45px;
}
.modal-dialog.lg .modal-content .modal-body {
  padding: 0;
}
@media screen and (max-width: 992px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 576px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 375px) {
  .modal-dialog.lg .modal-content {
    padding: 40px 15px;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: auto;
    min-width: calc(100% - 20px) !important;
  }
}
.modal-dialog .close-btn {
  position: absolute;
  top: 15px;
  background-color: transparent;
  padding: 0;
  line-height: 1;
  color: #060042;
  font-size: 24px;
  cursor: pointer;
}
html[lang=en] .modal-dialog .close-btn {
  right: 18px;
}
html[lang=ar] .modal-dialog .close-btn {
  left: 18px;
}
.modal-dialog .print-modal {
  background-color: transparent;
  font-size: 17px;
  color: #202020;
  padding: 0;
  cursor: pointer;
}
.modal-dialog .print-modal .print-icon {
  max-width: 27px;
  max-height: 32px;
}
.modal-dialog .close-modal {
  background-color: transparent;
  font-size: 16px;
  color: #202020;
  padding: 0;
}
.modal-dialog .head-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-dialog .head-btns .close-modal {
  color: #202020;
}
.modal-dialog .modal-content {
  padding: 40px 0px 45px;
  align-items: center;
  border-radius: 8px;
}
.modal-dialog .modal-content.print {
  padding: 30px 0px 30px;
}
@media (max-width: 576px) {
  .modal-dialog .modal-content {
    width: calc(100% - 15px);
    margin: 15px auto;
  }
}
.modal-dialog .modal-content .content-model-me {
  width: 100%;
}
.modal-dialog .modal-content .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: start !important;
  gap: 10px;
  border-bottom: none;
  margin-bottom: 25px;
  position: relative;
  flex: 1 1 auto;
  padding: 0px 20px 0;
  width: 100%;
}
.modal-dialog .modal-content .modal-header .modal-title {
  font-size: 17px;
  font-family: fontDemi;
  color: #202020;
  margin-bottom: 0;
}
.modal-dialog .modal-content .modal-header .modal-img {
  max-width: 90px;
  max-height: 110px;
  margin: auto;
}
.modal-dialog .modal-content .modal-header .modal-img.lg {
  width: 190px;
  height: 85px;
}
@media screen and (max-width: 576px) {
  .modal-dialog .modal-content .modal-header .modal-img {
    max-width: 65px;
    max-height: 95px;
  }
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  padding: 0 80px;
}
.modal-dialog .modal-content .modal-body.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 425px) {
  .modal-dialog .modal-content .modal-body {
    padding: 0 20px;
  }
}
.modal-dialog .modal-content .modal-body .modal-title {
  font-size: 16px;
  color: #000;
  text-align: center;
  font-family: fontDemi;
  margin-bottom: 18px;
}
.modal-dialog .modal-content .modal-body .modal-text {
  font-size: 15px;
  color: #000;
  text-align: center;
  font-family: fontDemi;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.modal-dialog .modal-content .modal-body .items .modal-item {
  background-color: transparent;
  width: 100%;
  border: 1px solid #A98467;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 50px;
  padding: 0px 12px;
}
.modal-dialog .modal-content .modal-body .items .modal-item .img {
  max-width: 18px;
  max-height: 18px;
}
.modal-dialog .modal-content .modal-body .items .modal-item .text {
  font-size: 15px;
  color: #A98467;
}
.modal-dialog .modal-content .modal-body .items .modal-item .input-modal {
  width: 100%;
  height: 100%;
}
.modal-dialog .modal-content .modal-body .items .modal-item .input-modal::placeholder {
  font-family: fontReg;
}
.modal-dialog .modal-content .modal-body .modal-img-body {
  width: 180px;
  height: 160px;
  display: block;
}
.modal-dialog .modal-content .modal-footer {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: center;
  padding: 0;
  border-top: none;
  gap: 15px;
}
.modal-dialog .modal-content .modal-footer * {
  margin: 0;
}
.modal-dialog .modal-content .modal-footer .main-btn {
  margin: 0;
  min-width: 190px;
}
.modal-dialog .modal-content .modal-footer .social-ic .ic {
  max-width: 45px;
  max-height: 45px;
}
.modal-dialog .modal-content .login-btn {
  min-height: 50px;
  border-radius: 10px;
}

.modal-img-p {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/********************* Accordion *********************/
/********************* Start FAQ section *********************/
.faq-collapse {
  margin-bottom: 25px;
}
.faq-collapse .faq-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background-color: #fff;
  color: #202020;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #A98467;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}
.faq-collapse .faq-open i {
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .faq-collapse .faq-open {
    font-size: 15px;
    padding: 12px;
  }
}
.faq-collapse.active .faq-open {
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
}
/*.faq-collapse.active .faq-open i {*/
/*  transform: rotateX(180deg);*/
/*}*/
.faq-collapse .faq-content {
  padding: 20px 10px;
  color: #202020;
  font-size: 15px;
  line-height: 1.7;
  display: none;
}
@media screen and (max-width: 425px) {
  .faq-collapse .faq-content {
    font-size: 14px;
    padding: 12px 5px;
  }
}

/********************* dropdown *********************/
.dropdown-menu {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.3, 0.265, 2.1);
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  padding: 10px 8px;
  border-radius: 4px;
  min-width: 220px;
  transform: translate3d(0px, 0px, 0px);
  border: none;
}
html[lang=en] .dropdown-menu {
  inset: 50px auto auto 0%;
}
html[lang=ar] .dropdown-menu {
  inset: 50px 0% auto auto;
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0px, 0px, 0px) !important;
}
html[lang=en] .dropdown-menu.show {
  inset: 28px auto auto 0% !important;
}
html[lang=ar] .dropdown-menu.show {
  inset: 28px 0% auto auto !important;
}
.dropdown-menu.left {
  min-width: 180px;
}
html[lang=en] .dropdown-menu.left {
  inset: 60px 0% auto auto;
}
html[lang=ar] .dropdown-menu.left {
  inset: 60px auto auto 0%;
}
html[lang=en] .dropdown-menu.left.show {
  inset: 55px 0% auto auto !important;
}
html[lang=ar] .dropdown-menu.left.show {
  inset: 55px auto auto 0% !important;
}
.dropdown-menu.drop-lang {
  min-width: 120px;
}
.dropdown-menu.drop-lang .lang-item {
  display: block;
  padding: 8px;
  font-size: 16px;
  color: #202020;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.dropdown-menu.drop-lang .lang-item:hover {
  color: #060042;
  background-color: #FAFAFA;
}
.dropdown-menu.drop-lang.sm {
  min-width: 140px;
}
.dropdown-menu.drop-lang.sm .lang-item {
  font-size: 14px;
}
html[lang=en] .dropdown-menu.drop-filter.show {
  inset: 45px 0% auto auto !important;
}
html[lang=ar] .dropdown-menu.drop-filter.show {
  inset: 45px auto auto 0% !important;
}
.dropdown-menu .drop-item {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: #202020;
  width: 100%;
  transition: all 0.3s ease;
}
.dropdown-menu .drop-item:hover {
  color: #A98467;
}

.dropdown-toggle {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-toggle.border-drop {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  height: 44px;
}
.dropdown-toggle .drop-text {
  font-size: 15px;
}
.dropdown-toggle .drop-ic {
  max-width: 40px;
  max-height: 20px;
  font-size: 12px;
}

.dropdown-toggle::after {
  display: none !important;
}

.profile-drop .profile-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.profile-drop .profile-name {
  font-size: 15px;
}
@media screen and (max-width: 425px) {
  .profile-drop .profile-name {
    display: none;
  }
}

.accordion-collapse .dropdown-menu {
  display: none;
}

.accordion-collapse.show .dropdown-menu {
  display: block;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item .accordion-button {
  border: 1px solid rgba(32, 32, 32, 0.05);
  border-radius: 5px !important;
  padding: 8px 15px;
}
.accordion-item .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  background-image: none !important;
  font-weight: 600;
}
.accordion-item .accordion-button:not(.collapsed) {
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  background-color: #fff;
  color: #202020;
}
@media screen and (max-width: 992px) {
  .accordion-item .accordion-button {
    align-items: start;
  }
}
.accordion-item .accordion-body {
  padding: 20px 35px 5px;
}
@media screen and (max-width: 992px) {
  .accordion-item .accordion-body {
    padding: 20px 5px 5px;
  }
}
.accordion-item .accordion-body .acc-item {
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 5px 1px rgba(32, 32, 32, 0.1);
}
.accordion-item .accordion-body .acc-item:last-child {
  margin-bottom: 0;
}
.accordion-item:last-child .accordion-button {
  margin-bottom: 0;
}

.acc-item {
  background-color: #fff;
}
.acc-item.row {
  margin: 0;
}
.acc-item .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .acc-item .right {
    align-items: start;
  }
}
@media screen and (max-width: 425px) {
  .acc-item .right {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}
.acc-item .right .first .name {
  font-size: 16px;
  color: #202020;
  margin-bottom: 8px;
  display: block;
  font-family: fontDemi;
}
@media screen and (max-width: 768px) {
  .acc-item .right .first .name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.acc-item .right .first .info {
  font-size: 15px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .acc-item .right .first .info {
    font-size: 14px;
  }
}
.acc-item .right .price {
  font-size: 14px;
  color: #fff;
  min-width: 60px;
  background-color: #A98467;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.acc-item .right .price .ic {
  font-size: 15px;
  color: #fff;
  max-width: 15px;
}
@media screen and (max-width: 768px) {
  .acc-item .right .price {
    min-width: 54px;
  }
}
.acc-item .left .show-anchor {
  background-color: transparent;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.acc-item .left .show-anchor .video-ic {
  max-width: 15px;
}

.pagination {
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  width: fit-content;
  border-radius: 7px;
  overflow: hidden;
  margin: auto;
}
.pagination .page-item .page-link {
  border: none;
  color: #000;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 12px 18px;
  font-size: 17px;
  height: 100%;
}
html[lang=en] .pagination .page-item .page-link {
  border-right: 1px solid rgba(139, 167, 141, 0.7);
}
html[lang=ar] .pagination .page-item .page-link {
  border-left: 1px solid rgba(139, 167, 141, 0.7);
}
@media screen and (max-width: 375px) {
  .pagination .page-item .page-link {
    padding: 8px 14px;
  }
}
.pagination .page-item .page-link .ic {
  border-radius: 7px;
  border: 2px solid rgba(139, 167, 141, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: #A98467;
  transition: all 0.3s ease;
}
@media screen and (max-width: 375px) {
  .pagination .page-item .page-link .ic {
    width: 20px;
    height: 20px;
  }
}
html[lang=en] .pagination .page-item .page-link .ic i {
  transform: rotate(-180deg);
}
.pagination .page-item .page-link.active {
  color: #A98467;
  background-color: #fff;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus, .pagination .page-item.active .page-link {
  background-color: #A98467 !important;
  color: #fff !important;
}
.pagination .page-item .page-link:hover .ic, .pagination .page-item .page-link:focus .ic {
  color: #fff;
  border-color: #fff;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
html[lang=en] .pagination .page-item:last-child .page-link {
  border-right: 0;
}
html[lang=ar] .pagination .page-item:last-child .page-link {
  border-left: 0;
}

.page-header {
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
  position: sticky;
  left: 0;
  width: 100%;
  z-index: 889;
  background-color: #fff;
  transition: all 0.3s ease;
}
.page-header.show-header {
  /*transition: all 0.3s ease;*/
  top: 0;
}


.page-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header .header-content .logo-link .logo {
  max-width: 60px;
  max-height: 100px;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .page-header .header-content .logo-link .logo {
    max-width: 50px;
    max-height: 80px;
  }
}
.page-header .header-content .head-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .page-header .header-content .head-items {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .page-header .header-content .head-items {
    display: none;
  }
}
.page-header .header-content .head-items .item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .page-header .header-content .head-items .item {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #A98467;
  }
}
.page-header .header-content .head-items .item .icon {
  max-width: 25px;
  max-height: 22px;
}
.page-header .header-content .head-items .item .text {
  font-size: 15px;
  color: #A98467;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .page-header .header-content .head-items .item .text {
    display: none;
  }
}
.page-header .header-content .head-items .item:hover .text {
  color: #060042;
}
@media screen and (max-width: 576px) {
  .page-header .header-content .buttons {
    gap: 8px;
    flex: 1;
    justify-content: end;
  }
  html[lang=en] .page-header .header-content .buttons {
    margin-right: 15px;
  }
  html[lang=ar] .page-header .header-content .buttons {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-header .header-content .buttons .main-btn {
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-header .header-content .buttons .main-btn .text {
    display: none;
  }
}
.page-header .header-content .buttons .main-btn .ic {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-header .header-content .buttons .main-btn .ic {
    display: block;
  }
}
.page-header .header-content .profile-con {
  gap: 18px;
}
@media screen and (max-width: 576px) {
  .page-header .header-content .profile-con {
    flex: 1;
    display: flex;
    justify-content: end;
    gap: 7px;
  }
  html[lang=en] .page-header .header-content .profile-con {
    margin-right: 10px;
  }
  html[lang=ar] .page-header .header-content .profile-con {
    margin-left: 10px;
  }
}

.page-navbar {
  padding: 20px 0;
  position: sticky;
  left: 0;
  width: 100%;
  z-index: 888;
  background-color: #fff;
  transition: all 0.3s ease;
  top: 0;
}
.page-navbar.active {
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1) !important;
}
@media screen and (max-width: 992px) {
  .page-navbar {
    position: unset;
    padding: 12px 0;
  }
}
.page-navbar .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-navbar .navbar-content .side-open {
  display: none;
  font-size: 25px;
  cursor: pointer;
  color: #202020;
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .side-open {
    display: block;
  }
}
.page-navbar .navbar-content .links {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
@media screen and (max-width: 1200px) {
  .page-navbar .navbar-content .links {
    gap: 3px;
  }
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0 3px 16px rgba(133, 133, 133, 0.05);
    z-index: 2000;
    padding: 30px 20px;
    gap: 8px;
    overflow-y: auto;
    overflow-x: clip;
  }
  html[lang=en] .page-navbar .navbar-content .links {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links {
    right: 0;
  }
  html[lang=en] .page-navbar .navbar-content .links {
    transform: translateX(-150%);
  }
  html[lang=ar] .page-navbar .navbar-content .links {
    transform: translateX(150%);
  }
  .page-navbar .navbar-content .links.active {
    transform: translateX(0) !important;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar {
    width: 5px;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar-track {
    background: transparent;
  }
  .page-navbar .navbar-content .links::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #A98467;
  }
}
.page-navbar .navbar-content .links .link {
  padding: 10px 12px;
  border-radius: 5px;
  color: #202020;
  font-size: 15px;
}
@media screen and (max-width: 1200px) {
  .page-navbar .navbar-content .links .link {
    padding: 10px 8px;
  }
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links .link {
    padding: 12px;
    border-radius: 5px;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .page-navbar .navbar-content .links .link::before {
    position: absolute;
    content: "";
    top: 0;
    width: 0px;
    height: 100%;
    background-color: #f9f9f9;
    transition: all 0.4s ease;
    z-index: -1;
  }
  html[lang=en] .page-navbar .navbar-content .links .link::before {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link::before {
    right: 0;
  }
  .page-navbar .navbar-content .links .link::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background-color: #A98467;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 1;
  }
  html[lang=en] .page-navbar .navbar-content .links .link::after {
    left: 0;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link::after {
    right: 0;
  }
  .page-navbar .navbar-content .links .link:hover, .page-navbar .navbar-content .links .link.active {
    color: #A98467 !important;
    background-color: transparent !important;
  }
  .page-navbar .navbar-content .links .link:hover::before, .page-navbar .navbar-content .links .link.active::before {
    width: 100%;
  }
  .page-navbar .navbar-content .links .link:hover::after, .page-navbar .navbar-content .links .link.active::after {
    height: 98%;
  }
  html[lang=en] .page-navbar .navbar-content .links .link:hover::after, html[lang=en] .page-navbar .navbar-content .links .link.active::after {
    left: 99%;
  }
  html[lang=ar] .page-navbar .navbar-content .links .link:hover::after, html[lang=ar] .page-navbar .navbar-content .links .link.active::after {
    right: 99%;
  }
}
.page-navbar .navbar-content .links .link.active, .page-navbar .navbar-content .links .link:hover {
  background-color: #A98467;
  color: #fff;
}
.page-navbar .navbar-content .links .logo {
  display: none;
  max-width: 60px;
  max-height: 100px;
}
.page-navbar .navbar-content .links .logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .page-navbar .navbar-content .links .logo {
    display: block;
    margin: 0 auto 25px;
  }
}
.page-navbar .navbar-content .nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .page-navbar .navbar-content .nav-icons {
    gap: 8px;
  }
}
@media screen and (max-width: 425px) {
  .page-navbar .navbar-content .nav-icons {
    gap: 8px;
  }
}
.page-navbar .navbar-content .nav-icons .nav-ic {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EEDA8D;
  cursor: pointer;
}
.page-navbar .navbar-content .nav-icons .nav-ic .ic {
  max-width: 26px;
  max-height: 20px;
}
.page-navbar .navbar-content .nav-icons .nav-search {
  position: relative;
}
.page-navbar .navbar-content .nav-icons .nav-search .nav-search-ic {
  position: relative;
  transition: all 0.3s ease;
  z-index: 8;
}
.page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
  position: absolute;
  top: 50%;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  z-index: 7;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  width: 280px;
}
html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
  transform: translateY(-50%) translateX(-118px);
}
html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
  transform: translateY(-50%) translateX(118px);
}
html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
  left: 0;
}
html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
  right: 0;
}
.page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp .search {
  height: 52px;
  width: 100%;
}
html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp .search {
  padding-left: 56px;
}
html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp .search {
  padding-right: 56px;
}
.page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp .search::placeholder {
  font-size: 14px;
  color: #202020;
}
@media screen and (max-width: 425px) {
  html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
    transform: translateY(-50%) translateX(-132px);
  }
  html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search .nav-search-inp {
    transform: translateY(-50%) translateX(132px);
  }
}
html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search.open .nav-search-ic {
  transform: translateX(-112px);
}
html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search.open .nav-search-ic {
  transform: translateX(112px);
}
@media screen and (max-width: 425px) {
  html[lang=en] .page-navbar .navbar-content .nav-icons .nav-search.open .nav-search-ic {
    transform: translateX(-128px);
  }
  html[lang=ar] .page-navbar .navbar-content .nav-icons .nav-search.open .nav-search-ic {
    transform: translateX(128px);
  }
}
.page-navbar .navbar-content .nav-icons .nav-search.open .nav-search-inp {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  padding: 40px 0;
  background-color: #000;
}
.footer .foot-content .footer-head {
  margin-bottom: 50px;
  font-size: 17px;
  color: #fff;
  position: relative;
  width: fit-content;
}
.footer .foot-content .footer-head::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 100%;
  background-color: #fff;
  height: 3px;
  border-radius: 12px;
}
html[lang=en] .footer .foot-content .footer-head::after {
  left: 0;
}
html[lang=ar] .footer .foot-content .footer-head::after {
  right: 0;
}
.footer .foot-content .footer-head.first::after {
  width: 100px;
}
@media screen and (max-width: 425px) {
  .footer .foot-content .footer-head {
    font-size: 16px;
  }
}
.footer .foot-content .footer-info {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  width: calc(100% - 100px);
}
@media screen and (max-width: 1200px) {
  .footer .foot-content .footer-info {
    width: 100%;
  }
}
.footer .foot-content .footer-links .link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  width: fit-content;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
}
.footer .foot-content .footer-links .link:hover {
  color: #A98467;
}
html[lang=en] .footer .foot-content .footer-links .link:hover {
  transform: translateX(5px);
}
html[lang=ar] .footer .foot-content .footer-links .link:hover {
  transform: translateX(-5px);
}
.footer .foot-content .footer-links .link .img {
  max-width: 25px;
  max-height: 22px;
}
.footer .foot-content .footer-links .link .img.app-link {
  max-width: 220px;
  height: 55px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .footer .foot-content .footer-links .link {
    font-size: 15px;
  }
}
.footer .foot-content .footer-links.soacial-links .link {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .footer .foot-content .footer-links.soacial-links .link {
    margin-bottom: 14px;
  }
}
.footer .foot-content .external-logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.footer .foot-content .external-logo .img {
  max-width: 100px;
  max-height: 120px;
}
.footer .copy-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 200px;
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .footer .copy-right {
    gap: 70px;
  }
}
@media screen and (max-width: 768px) {
  .footer .copy-right {
    gap: 20px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer .copy-right {
    justify-content: center;
  }
}
.footer .copy-right .info {
  font-size: 17px;
  color: #fff;
}
@media screen and (max-width: 425px) {
  .footer .copy-right .info {
    font-size: 16px;
  }
}
.footer .copy-right .social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .copy-right .social-icons .social-ic .ic {
  max-width: 23px;
  max-height: 23px;
}

.home-section {
  padding: 50px 0;
}
@media screen and (max-width: 992px) {
  .home-section {
    padding: 20px 0;
  }
}
.home-section .content {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 576px) {
  .home-section .content {
    padding: 10px 0;
  }
}
.home-section .content .right-sec {
  width: 440px;
}
@media screen and (max-width: 576px) {
  .home-section .content .right-sec {
    width: 100%;
  }
}
.home-section .content .right-sec .small-title {
  font-size: 22px;
  color: #A98467;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .home-section .content .right-sec .small-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home-section .content .right-sec .small-title {
    font-size: 18px;
  }
}
.home-section .content .right-sec .big-title {
  font-size: 30px;
  margin-bottom: 30px;
  color: #060042;
  font-family: fontDemi;
}
@media screen and (max-width: 992px) {
  .home-section .content .right-sec .big-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .home-section .content .right-sec .big-title {
    font-size: 24px;
  }
}
.home-section .content .right-sec .desc {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home-section .content .right-sec .desc {
    font-size: 18px;
  }
}
.home-section .content .right-sec .buttons {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .home-section .content .right-sec .buttons .yellow-transparent {
    background-color: #EEDA8D;
    color: #fff;
  }
}
.home-section .content .right-sec .student {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-section .content .right-sec .student .left .num {
  font-size: 18px;
  color: #A98467;
  margin-bottom: 5px;
}
.home-section .content .right-sec .student .left .text {
  font-size: 18px;
  color: #202020;
}
.home-section .content .home-bg {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 60%;
  height: 430px;
    object-fit: contain;
}
html[lang=en] .home-section .content .home-bg {
  right: 0;
}
html[lang=ar] .home-section .content .home-bg {
  left: 0;
}
@media screen and (max-width: 1200px) {
  .home-section .content .home-bg {
    width: 70%;
    opacity: 0.4;
  }
}
@media screen and (max-width: 992px) {
  .home-section .content .home-bg {
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
}
@media screen and (max-width: 375px) {
  .home-section .content .home-bg {
    object-fit: cover;
  }
}

@media screen and (max-width: 992px) {
  .features-sec {
    position: relative;
  }
}
.features-sec .feature-boxs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 42px 35px;
}
@media screen and (max-width: 576px) {
  .features-sec .feature-boxs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px 20px;
  }
}
@media screen and (max-width: 425px) {
  .features-sec .feature-boxs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 24px 20px;
  }
}
.features-sec .feature-boxs .feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .features-sec .feature-boxs .feature-box {
    flex-direction: column;
  }
}
.features-sec .feature-boxs .feature-box .feature-img {
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EEDA8D;
  border: 3px solid #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .features-sec .feature-boxs .feature-box .feature-img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
}
.features-sec .feature-boxs .feature-box .feature-img .img {
  max-width: 40px;
  max-height: 40px;
}
@media screen and (max-width: 768px) {
  .features-sec .feature-boxs .feature-box .feature-img .img {
    max-width: 30px;
    max-height: 30px;
  }
}
.features-sec .feature-boxs .feature-box .feature-text {
  font-size: 19px;
  color: #060042;
}
@media screen and (max-width: 768px) {
  .features-sec .feature-boxs .feature-box .feature-text {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .features-sec .feature-boxs .feature-box .feature-text {
    text-align: center;
  }
}
.features-sec .feature-bg {
  max-width: 100%;
  max-height: 400px;
}

.filter {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.filter .filter-select {
  width: 230px;
  border: 1px solid #A98467;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 425px) {
  .filter .filter-select {
    width: 100%;
  }
}
.filter .filter-select .select-img {
  position: absolute;
  pointer-events: none;
  max-width: 18px;
  max-height: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
html[lang=en] .filter .filter-select .select-img {
  left: 10px;
}
html[lang=ar] .filter .filter-select .select-img {
  right: 10px;
}
.filter .filter-select .select ~ .select2 .select2-selection--single {
  border: none !important;
}
html[lang=en] .filter .filter-select .select ~ .select2 .select2-selection--single {
  padding-left: 30px;
}
html[lang=ar] .filter .filter-select .select ~ .select2 .select2-selection--single {
  padding-right: 30px;
}
.filter .filter-select .select ~ .select2 .select2-selection--single .select2-selection__rendered {
  color: #202020;
  font-size: 16px;
}
@media screen and (max-width: 425px) {
  .filter .filter-select .select ~ .select2 .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
  }
}
.filter .filter-btn {
  background-color: #A98467;
  color: #fff;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 8px;
  min-height: 42px;
}
@media screen and (max-width: 425px) {
  .filter .filter-btn {
    font-size: 15px;
    order: 2;
  }
}
.filter.sm .filter-select .select ~ .select2 .select2-selection--single {
  min-height: 42px;
}
html[lang=en] .filter.sm .filter-select .select ~ .select2 .select2-selection--single {
  padding-left: 6px;
}
html[lang=ar] .filter.sm .filter-select .select ~ .select2 .select2-selection--single {
  padding-right: 6px;
}

.courses-cards .course-card {
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.courses-cards .course-card .course_not{
  position: absolute;
  top: -68px;
  color: #fff;
  padding: 70px 5px;
  z-index: 2;
  font-size: 13px;
  writing-mode: vertical-rl;
  background-color: #e61a1aa8;
}

.courses-cards .course-card .course_not.complete{
  background-color: #c68bde;
}

html[lang=ar] .courses-cards .course-card .course_not {
  transform: rotate(-45deg);
}
html[lang=ar] .courses-cards .course-card .course_not {
  right: 18px;
}


html[lang=en] .courses-cards .course-card .course_not {
  transform: rotate(-130deg);
}
html[lang=en] .courses-cards .course-card .course_not {
  left: 18px;
}


.courses-cards .course-card .img {
  overflow: hidden;
  height: 220px;
}
.courses-cards .course-card .img .course-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .courses-cards .course-card .img {
    height: 200px;
  }
}
.courses-cards .course-card .course-content {
  position: relative;
  padding: 46px 16px 20px;
}
@media screen and (max-width: 425px) {
  .courses-cards .course-card .course-content {
    padding: 40px 12px 15px;
  }
}
.courses-cards .course-card .course-content .course-name {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #A98467;
  min-height: 46px;
  width: calc(100% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
}
@media screen and (max-width: 425px) {
  .courses-cards .course-card .course-content .course-name {
    font-size: 15px;
    min-height: 42px;
    top: -21px;
  }
}
.courses-cards .course-card .course-content .course-items .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 23px;
}
@media screen and (max-width: 576px) {
  .courses-cards .course-card .course-content .course-items .item {
    gap: 5px;
  }
}
.courses-cards .course-card .course-content .course-items .item .item-img {
  max-width: 22px;
  max-height: 18px;
}
.courses-cards .course-card .course-content .course-items .item .item-text {
  font-size: 15px;
  color: #202020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .courses-cards .course-card .course-content .course-items .item .item-text {
    font-size: 14px;
  }
}
.courses-cards .course-card .course-content .course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.courses-cards .course-card .course-content .course-footer .course-price {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.course-price{
  display: flex;
  align-items: center;
  gap: 8px;
}
.courses-cards .course-card .course-content .course-footer .course-price .price, .course-price .price {
  color: #A98467;
  font-size: 14px;
}
.courses-cards .course-card .course-content .course-footer .course-price .old-price, .course-price .old-price {
  color: #060042;
  font-size: 14px;
  position: relative;
  font-family: fontDemi;
}
.courses-cards .course-card .course-content .course-footer .course-price .old-price::after, .course-price .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-195deg);
  width: 60px;
  height: 2px;
  border-radius: 10px;
  background-color: #EEDA8D;
}
.courses-cards .course-card .course-content .course-footer .course-links {
  display: flex;
  align-items: center;
}
.courses-cards .course-card .course-content .course-footer .course-links .link {
  font-size: 15px;
  color: #A98467;
  padding: 2px 10px;
}
html[lang=en] .courses-cards .course-card .course-content .course-footer .course-links .link {
  border-right: 1px solid rgba(32, 32, 32, 0.3);
}
html[lang=ar] .courses-cards .course-card .course-content .course-footer .course-links .link {
  border-left: 1px solid rgba(32, 32, 32, 0.3);
}
.courses-cards .course-card .course-content .course-footer .course-links .link .ic {
  font-size: 12px;
}
html[lang=en] .courses-cards .course-card .course-content .course-footer .course-links .link:first-child {
  padding: 2px 10px 2px 0px;
}
html[lang=ar] .courses-cards .course-card .course-content .course-footer .course-links .link:first-child {
  padding: 2px 0 2px 10px;
}
html[lang=en] .courses-cards .course-card .course-content .course-footer .course-links .link:last-child {
  border-right: none;
}
html[lang=ar] .courses-cards .course-card .course-content .course-footer .course-links .link:last-child {
  border-left: none;
}
.courses-cards .course-card:hover .course-img {
  transform: scale(1.1);
}
.courses-cards.material-cards .course-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
}
@media screen and (max-width: 991px) {
  .courses-cards.material-cards .course-card {
    display: block;
  }
}
.courses-cards.material-cards .course-card .img {
  width: 135px;
  height: 200px;
  flex-shrink: 0;
  min-width: 160px;
}
@media screen and (max-width: 991px) {
  .courses-cards.material-cards .course-card .img {
    width: 100%;
  }
}
.courses-cards.material-cards .course-card .img.sm {
  height: 180px;
}
.courses-cards.material-cards .course-card .course-content {
  padding: 10px 0;
  flex-grow: 1;
}
.courses-cards.material-cards .course-card .course-content .course-name {
  position: unset;
  transform: unset;
  background-color: unset;
  min-height: fit-content;
  width: fit-content;
  display: block;
  text-align: start;
  color: #202020;
  border-radius: 0;
  font-size: 16px;
  margin-bottom: 15px;
}
.courses-cards.material-cards .course-card .course-content .course-items .item .item-text {
  white-space: break-spaces;
  overflow: unset;
  text-overflow: ellipsis;
}
.courses-cards.material-cards .course-card .course-content .course-footer {
  flex-direction: row-reverse;
  gap: 5px;
}
.courses-cards.material-cards .course-card .course-content .course-footer .course-price {
  flex-shrink: 0;
}
.courses-cards.material-cards .course-card .course-content .course-footer .main-btn {
  flex-shrink: 0;
  min-width: fit-content;
  padding: 0 25px;
}
.courses-cards.material-cards .course-card:hover {
  transform: translateY(-7px);
}
.courses-cards.material-cards .course-card:hover .course-img {
  transform: unset;
}
.courses-cards.material-cards .card-border {
  padding: 25px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}
html[lang=en] .courses-cards.material-cards .card-border {
  border-right: 1px solid rgba(32, 32, 32, 0.1);
  padding-left: 0;
}
html[lang=ar] .courses-cards.material-cards .card-border {
  padding-right: 0;
  border-left: 1px solid rgba(32, 32, 32, 0.1);
}
.courses-cards.material-cards .card-border:nth-child(even) {
  border-left: none;
  border-right: none;
  padding: 25px;
}
html[lang=en] .courses-cards.material-cards .card-border:nth-child(even) {
  border-right: none;
  border-left: none;
  padding-right: 0;
  padding-left: 25px;
}
html[lang=ar] .courses-cards.material-cards .card-border:nth-child(even) {
  border-right: none;
  border-left: none;
  padding-left: 0;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .courses-cards.material-cards .card-border {
    padding: 20px 10px !important;
    border: none !important;
  }
}
.courses-cards.card-with-btn .course-card {
  position: relative;
}
.courses-cards.card-with-btn .course-card .course-content {
  position: unset;
}
.courses-cards.card-with-btn .course-card .course-content .course-footer {
  display: block;
}
.courses-cards.card-with-btn .course-card .course-content .course-footer .course-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 20px;
}
.courses-cards.card-with-btn .main-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  opacity: 0;
}

.partners-carousel {
  background-color: #fff;
  padding: 10px 0;
}

.partners-item {
  max-width: 130px;
  max-height: 120px;
  width: fit-content !important;
  margin: 0 auto;
  /* object-fit: cover; */
}

.numbers-section .number-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 36px 30px;
}
@media screen and (max-width: 576px) {
  .numbers-section .number-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px 20px;
  }
}
.numbers-section .number-items .item {
  text-align: center;
}
.numbers-section .number-items .item .num {
  color: #A98467;
  font-size: 19px;
  margin-bottom: 10px;
}
@media screen and (max-width: 425px) {
  .numbers-section .number-items .item .num {
    font-size: 17px;
  }
}
.numbers-section .number-items .item .name {
  color: #202020;
  font-size: 19px;
}
@media screen and (max-width: 425px) {
  .numbers-section .number-items .item .name {
    font-size: 16px;
  }
}

.news-section {
  position: relative;
}
.news-section .content {
  height: 100%;
  display: flex;
  align-items: center;
}
.news-section .content .right .news-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #060042;
  font-family: fontDemi;
}
@media screen and (max-width: 992px) {
  .news-section .content .right .news-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 576px) {
  .news-section .content .right .news-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 425px) {
  .news-section .content .right .news-title {
    margin-bottom: 15px;
  }
}
.news-section .content .right .news-desc {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  width: calc(100% - 50px);
}
@media screen and (max-width: 992px) {
  .news-section .content .right .news-desc {
    width: 100%;
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .news-section .content .right .news-desc {
    width: 100%;
    font-size: 19px;
  }
}
@media screen and (max-width: 425px) {
  .news-section .content .right .news-desc {
    width: 100%;
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.news-section .content .right .news-form .news-input {
  margin-bottom: 15px;
  box-shadow: none;
  border-radius: 6px;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .news-section .content .right .news-form .news-input {
    background-color: transparent;
  }
}
.news-section .news_bg {
  max-width: 100%;
  width: 440px;
  max-height: 440px;
}
@media screen and (max-width: 992px) {
  .news-section .news_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 290px;
    opacity: 0.1;
    z-index: -1;
  }
}
@media screen and (max-width: 425px) {
  .news-section .news_bg {
    width: 100%;
  }
}

.page-img-section .img {
  /*width: 400px;*/
  max-height: 400px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 576px) {
  .page-img-section .img {
    width: 300px;
  }
}

.university-cards {
  margin-top: 80px;
  gap: 100px 55px;
}
.university-cards .univ-card {
  background-color: #A98467;
  padding: 80px 15px 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
/*overflow-y: scroll;*/
}
.university-cards .univ-card .univ-img {
  position: absolute;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 7px solid transparent;
}
.university-cards .univ-card .univ-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 425px) {
  .university-cards .univ-card .univ-img {
    transform: translateX(-50%) scale(0.8);
    border-color: #fff;
  }
}
.university-cards .card-details{
 height: 128px;
 overflow-y: scroll;
 padding: 10px;
}

.university-cards .univ-card .univ-name {
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.university-cards .univ-card:hover .univ-img {
  transform: translateX(-50%) scale(0.8);
  border-color: #fff;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px 0 rgba(32, 32, 32, 0.2);
}
.blog-card .blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card .content {
  padding: 17px 10px;
}
.blog-card .content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 14px;
}
.blog-card .content .head .name {
  font-size: 17px;
  color: #000;
  font-family: fontDemi;
  text-overflow: ellipsis;
}
.blog-card .content .head .date {
  font-size: 14px;
  color: #9EA0A4;
  font-family: fontReg;
}
.blog-card .content .info {
  font-size: 15px;
  color: #000;
  margin-bottom: 14px;
  height: 75px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .blog-card .content .info {
    height: auto;
    -webkit-line-clamp: initial;
  }
}
.blog-card .content .main-btn {
  width: calc(100% - 40px);
  margin: auto;
}

.contact {
  position: relative;
}
.contact .contact-img {
  max-width: 100%;
}

.new-detailes .content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .new-detailes .content {
    flex-wrap: wrap;
  }
}
.new-detailes .content .img {
  flex-basis: 50%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .new-detailes .content .img {
    flex-basis: 100%;
    width: 100%;
    height: 240px;
  }
}
.new-detailes .content .left .name {
  font-size: 22px;
  color: #202020;
  margin-bottom: 15px;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .new-detailes .content .left .name {
    font-size: 19px;
  }
}
.new-detailes .content .left .date {
  font-size: 17px;
  color: #9EA0A4;
  font-family: fontReg;
}
@media screen and (max-width: 425px) {
  .new-detailes .content .left .date {
    font-size: 16px;
  }
}
.new-detailes .info {
  font-size: 17px;
  line-height: 1.6;
}
@media screen and (max-width: 425px) {
  .new-detailes .info {
    font-size: 15px;
  }
}

.notification-sec {
  position: relative;
}

.notification-sec .not-items .not-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 425px) {
  .notification-sec .not-items .not-item {
    gap: 8px;
  }
}
.notification-sec .not-items .not-item .not-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #A98467;
  flex-shrink: 0;
}
@media screen and (max-width: 425px) {
  .notification-sec .not-items .not-item .not-img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border-width: 1px;
  }
}
.notification-sec .not-items .not-item .not-img .img {
  max-height: 24px;
}
@media screen and (max-width: 425px) {
  .notification-sec .not-items .not-item .not-img .img {
    max-height: 20px;
  }
}
.notification-sec .not-items .not-item .info {
  font-size: 16px;
  color: #202020;
  margin-bottom: 8px;
}
.notification-sec .not-items .not-item .text {
  font-size: 15px;
  color: #9EA0A4;
}
.notification-sec .not-bg {
  max-width: 100%;
}

.cart-box {
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid #A98467;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  margin-bottom: 22px;
}
.cart-box .cart-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #BBBCBE;
}
.cart-box .cart-box-item .text {
  font-size: 15px;
  color: #202020;
}
.cart-box .cart-box-item:last-child {
  border-bottom: none;
}

@media screen and (max-width: 425px) {
  .cart-modal .main-btn {
    min-width: 150px !important;
  }
}

.check-card {
  position: relative;
}
.check-card .check-input-card {
  display: none;
}
.check-card .check-input-card:checked + .check-label-card {
  background-color: #A98467;
}
.check-card .check-input-card:checked + .check-label-card .ic {
  opacity: 1;
}
.check-card .check-label-card {
  position: absolute;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background-color: #D9D9D9;
  z-index: 20;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
html[lang=en] .check-card .check-label-card {
  right: 10px;
}
html[lang=ar] .check-card .check-label-card {
  left: 10px;
}
.check-card .check-label-card .ic {
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-item .item-title {
  font-size: 17px;
  margin-bottom: 18px;
  color: #202020;
  font-family: fontDemi;
}

.profile-container {
  display: flex;
  align-items: start;
  gap: 20px;
}
.profile-container .flex-1 {
  width: 220px;
}
.profile-container .flex-3 {
  width: calc(100% - 220px);
}
@media screen and (max-width: 992px) {
  .profile-container .flex-3 {
    width: 100%;
  }
}

.sidebar {
  position: sticky;
  top: 100px;
  background-color: #fff;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
}
html[lang=en] .sidebar {
  left: 0;
}
html[lang=ar] .sidebar {
  right: 0;
}
@media screen and (max-width: 992px) {
  .sidebar {
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 2000;
    width: 280px !important;
    padding: 20px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  html[lang=en] .sidebar {
    transform: translateX(-150%);
  }
  html[lang=ar] .sidebar {
    transform: translateX(150%);
  }
  .sidebar.active {
    transform: translateX(0) !important;
  }
}
.sidebar .side-links {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}
.sidebar .side-links .side-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
  padding: 14px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .side-links .side-link i {
  transition: all 0.3s ease;
}
html[lang=en] .sidebar .side-links .side-link i {
  transform: rotate(-180deg);
}
.sidebar .side-links .side-link:last-child {
  border: none;
}
.sidebar .side-links .side-link.active {
  color: #fff;
  background-color: #A98467;
}
.sidebar .side-links .side-link.active:hover {
  color: #fff;
}
.sidebar .side-links .side-link:hover {
  color: #A98467;
}
.sidebar .side-links .side-link[aria-expanded=true] {
  background-color: #A98467;
  color: #fff;
}
.sidebar .side-links .side-link[aria-expanded=true] i {
  transform: rotate(-90deg);
}
.sidebar .multi-collapse .side-link {
  border-bottom: 1px solid rgba(32, 32, 32, 0.2) !important;
}
.sidebar .multi-collapse .active {
  background-color: transparent !important;
  color: #A98467 !important;
}

.table-container {
  overflow-x: auto;
  padding-bottom: 12px !important;
}
.table-container::-webkit-scrollbar {
  height: 4px;
}
.table-container::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.table-container::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #A98467;
}

.main-table {
  border: 1px solid rgba(32, 32, 32, 0.2);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.main-table thead th {
  padding: 10px 15px;
  border: 1px solid rgba(32, 32, 32, 0.2);
}
.main-table thead th .head {
  background-color: #A98467;
  border-radius: 7px;
  color: #fff;
  text-align: center;
  display: block;
  width: fit-content;
  padding: 8px 12px;
  min-width: 100px;
  font-size: 15px;
  font-weight: 500;
  margin: auto;
}
.main-table tbody td {
  padding: 14px 15px;
  text-align: center;
  border: 1px solid rgba(32, 32, 32, 0.2);
  font-size: 15px;
  color: #202020;
}
.main-table tbody td.sort_ic {
  cursor: move;
}
.main-table tbody td.td-buttons {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-table tbody td.td-buttons .td-btn {
  background-color: transparent;
  flex: 1;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
  padding: 14px 7px;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
}
html[lang=en] .main-table tbody td.td-buttons .td-btn {
  border-right: 1px solid rgba(32, 32, 32, 0.2);
}
html[lang=ar] .main-table tbody td.td-buttons .td-btn {
  border-left: 1px solid rgba(32, 32, 32, 0.2);
}
.main-table tbody td.td-buttons .td-btn .ic {
  max-width: 24px;
  max-height: 22px;
}
html[lang=en] .main-table tbody td.td-buttons .td-btn:last-child {
  border-right: 0;
}
html[lang=ar] .main-table tbody td.td-buttons .td-btn:last-child {
  border-left: 0;
}
.main-table tbody tr {
  transition: all 0.3s ease;
  background-color: #fff;
}
.main-table tbody tr:last-child td.td-buttons .td-btn {
  border-bottom: 0;
}
.main-table.sec-table thead {
  border: 1px solid rgba(139, 167, 141, 0.7);
}
.main-table.sec-table thead th {
  padding: 10px 15px;
  border: none;
  font-weight: 500;
  text-align: center;
}
.main-table.sec-table tbody td {
  padding: 14px 15px;
  text-align: center;
  border: none;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
  font-size: 15px;
  color: #202020;
}
.main-table.sec-table tbody td .delete-btn {
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #202020;
  cursor:pointer;
}
.main-table.sec-table tbody td .delete-btn .ic {
  max-width: 24px;
  max-height: 22px;
}
.main-table.sec-table tbody td .ic-bar {
  max-width: 32px;
}
.main-table.sec-table tbody td .course-page-img {
  width: 250px;
}
.main-table.three-table thead th {
  text-align: start;
}
.main-table.three-table tbody tr:nth-child(even) {
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}
.main-table.three-table tbody td {
  border-bottom: none !important;
}
.main-table.three-table tbody td:first-child {
  text-align: start;
}
.main-table.no-border {
  border: none;
  border-radius: 0;
}
.main-table.no-border thead {
  border: none;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}
.main-table .is-dragging {
  background-color: #f0f0f0;
  opacity: 0.5;
}

.teacher-section .content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .teacher-section .content {
    flex-direction: column;
  }
}
.teacher-section .content .teacher-img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .teacher-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }
}
.teacher-section .content .information .top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.teacher-section .content .information .top .right .name {
  font-size: 20px;
  color: #202020;
  margin-bottom: 8px;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top .right .name {
    font-size: 18px;
  }
}
.teacher-section .content .information .top .right .department {
  font-size: 17px;
  color: #202020;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top .right .department {
    font-size: 16px;
  }
}
.teacher-section .content .information .top .left {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top .left {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 425px) {
  .teacher-section .content .information .top .left {
    gap: 5px;
  }
}
.teacher-section .content .information .top .left .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top .left .item {
    position: unset;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
  }
}
@media screen and (max-width: 425px) {
  .teacher-section .content .information .top .left .item {
    padding: 6px 10px;
  }
}
.teacher-section .content .information .top .left .item::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 1px;
  background-color: rgba(32, 32, 32, 0.3);
}
html[lang=en] .teacher-section .content .information .top .left .item::after {
  right: 0;
}
html[lang=ar] .teacher-section .content .information .top .left .item::after {
  left: 0;
}
@media screen and (max-width: 576px) {
  .teacher-section .content .information .top .left .item::after {
    display: none;
  }
}
.teacher-section .content .information .top .left .item:last-child {
  border: none;
}
.teacher-section .content .information .top .left .item:last-child::after {
  display: none;
}
.teacher-section .content .information .bottom {
  padding-top: 15px;
}
.teacher-section .content .information .bottom .title {
  font-size: 17px;
  font-family: fontDemi;
  color: #202020;
  margin-bottom: 12px;
}
.teacher-section .content .information .bottom .info {
  font-size: 15px;
  color: #202020;
  line-height: 1.6;
}
.teacher-section.sm .content .teacher-img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.teacher-section.sm .content .information {
  width: 100%;
}

.students-carousel .item {
  padding: 25px 20px 20px;
  display: flex;
  align-items: start;
  gap: 10px;
}
.students-carousel .item .student-img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}
.students-carousel .item .left .name {
  font-size: 17px;
  font-family: fontDemi;
  margin-bottom: 12px;
}
.students-carousel .item .left .info {
  font-size: 14px;
  color: #202020;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  height: 95px;
}
.students-carousel .owl-stage {
  padding: 20px;
}
.students-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.students-carousel .owl-dots .owl-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #D9D9D9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.students-carousel .owl-dots .owl-dot.active {
  background-color: #A98467;
}

.course-page-img {
  height: 260px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.course-page-img.sm {
  height: 180px;
}
.course-page-img.md {
  height: 310px;
}
.course-page-img.lg {
  height: 380px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .course-page-img {
    height: 220px !important;
  }
}
.course-page-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-page-img .video {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A98467;
  z-index: 5;
}
.course-page-img .video .ic {
  max-width: 20px;
}

.course-detailes .content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .course-detailes .content .right {
    gap: 14px;
  }
}
.course-detailes .content .right .name {
  font-size: 18px;
  font-family: fontDemi;
  color: #202020;
}
@media screen and (max-width: 576px) {
  .course-detailes .content .right .name {
    font-size: 16px;
  }
}
.course-detailes .content .right .link {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .course-detailes .content .right .link {
    width: fit-content;
  }
}
.course-detailes .content .right .link .teacher-img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .course-detailes .content .right .link .teacher-img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
}
.course-detailes .content .right .link .teacher-info .teacher-name {
  font-size: 17px;
  margin-bottom: 8px;
  color: #202020;
}
@media screen and (max-width: 576px) {
  .course-detailes .content .right .link .teacher-info .teacher-name {
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .course-detailes .content .right .link .star {
    font-size: 15px;
  }
}
.course-detailes .content .center {
  display: flex;
  align-items: center;
  gap: 20px 15px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(32, 32, 32, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .course-detailes .content .center {
    flex-direction: column;
  }
}
.course-detailes .content .center .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 10px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .course-detailes .content .center .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px 10px;
  }
}
.course-detailes .content .center .items .item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #202020;
  font-size: 14px;
}
.course-detailes .content .center .items .item .item-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.course-detailes .content .center .items .item .item-img .img {
  max-width: 20px;
  max-height: 20px;
}
.course-detailes .content .center .price-item {
  border: 1px solid rgba(139, 167, 141, 0.9);
  padding: 15px;
  flex-shrink: 0;
  border-radius: 5px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .course-detailes .content .center .price-item {
    flex-direction: row;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 768px) {
  .course-detailes .content .center .price-item .num {
    color: #A98467;
    text-decoration: underline;
  }
}
.course-detailes .content .left {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .course-detailes .order-m {
    order: 3 !important;
  }
}

.line-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.line-container .line {
  width: 100%;
  height: 14px;
  border-radius: 25px;
  background-color: #D9D9D9;
}
.line-container .line .color {
  display: block;
  background-color: #EEDA8D;
  height: 100%;
  width: 0;
  border-radius: 25px;
}
.line-container .text {
  color: #202020;
  font-size: 15px;
}

.file-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 425px) {
  .file-item {
    padding: 12px;
  }
}
.file-item:last-child {
  margin-bottom: 0;
}
.file-item .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-item .right .file-name {
  font-size: 15px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 425px) {
  .file-item .right .file-name {
    font-size: 14px;
  }
}
.file-item .right .file-ic {
  max-width: 20px;
  max-height: 20px;
}
.file-item .file-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 90px;
  background-color: #A98467;
  color: #fff;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 5px;
}
.file-item .file-btn .download-ic {
  max-height: 20px;
  max-width: 14px;
}

.student-sec {
  background-color: #fafafc;
}
.student-sec .student {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.student-sec .student .num {
  font-size: 18px;
  color: #A98467;
  margin-top: 10px;
}
.student-sec .student .text {
  font-size: 18px;
  color: #202020;
}

.slider-img {
  width: 100%;
  height: 200px;
  position: relative;
}
.slider-img .box {
  position: absolute;
  cursor: pointer;
  transition: all 0.5s ease;
}
.slider-img .box:nth-child(2) {
  top: -50px;
  left: calc(100% - 150px);
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(2) {
    left: calc(100% - 100px);
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(2) {
    top: -20px;
    left: calc(100% - 74px);
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(2) {
    top: 0px;
  }
}
.slider-img .box:nth-child(3) {
  top: -50px;
  left: 50px;
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(3) {
    left: 15px;
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(3) {
    top: -20px;
    left: 15px;
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(3) {
    top: 0px;
  }
}
.slider-img .box:nth-child(4) {
  top: -20px;
  left: 240px;
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(4) {
    top: 10px;
    left: 120px;
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(4) {
    top: 42px;
    left: 50px;
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(4) {
    top: 80px;
    left: 0;
  }
}
.slider-img .box:nth-child(5) {
  top: -20px;
  left: calc(100% - 330px);
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(5) {
    top: 10px;
    left: calc(100% - 195px);
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(5) {
    top: 42px;
    left: calc(100% - 120px);
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(5) {
    top: 80px;
    left: calc(100% - 60px);
  }
}
.slider-img .box:nth-child(6) {
  top: 100px;
  left: 100px;
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(6) {
    top: 125px;
    left: 60px;
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(6) {
    top: 140px;
    left: 50px;
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(6) {
    top: 160px;
  }
}
.slider-img .box:nth-child(7) {
  top: 100px;
  left: calc(100% - 200px);
}
@media screen and (max-width: 992px) {
  .slider-img .box:nth-child(7) {
    top: 125px;
    left: calc(100% - 110px);
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box:nth-child(7) {
    top: 140px;
    left: calc(100% - 110px);
  }
}
@media screen and (max-width: 375px) {
  .slider-img .box:nth-child(7) {
    top: 160px;
  }
}
.slider-img .box.active {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .slider-img .box.active {
    transform: translate(-50%, -50%) scale(1);
  }
  .slider-img .box.active .main-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 992px) {
  .slider-img .box .main-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 576px) {
  .slider-img .box .main-img {
    border-radius: 50%;
    width: 56px;
    height: 56px;
  }
}

.qoute-carousel {
  /*width: 370px;*/
  margin: 20px auto 0;
}
@media screen and (max-width: 425px) {
  .qoute-carousel {
    width: 100%;
  }
}
.qoute-carousel .qoute {
  padding: 2px;
}
.qoute-carousel .qoute .ic {
  max-width: 18px;
  max-height: 18px;
}
.qoute-carousel .qoute .text {
  padding: 8px 12px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 1.5;
  max-height: 234px;
  overflow-y: auto;
}
@media screen and (max-width: 576px) {
  .qoute-carousel .qoute .text {
    font-size: 16px;
  }
}
.qoute-carousel .qoute .bottom-ic {
  display: block;
}
html[lang=en] .qoute-carousel .qoute .bottom-ic {
  margin-left: auto;
}
html[lang=ar] .qoute-carousel .qoute .bottom-ic {
  margin-right: auto;
}
.qoute-carousel .owl-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 35px;
}
.qoute-carousel .owl-dots .owl-dot {
  background-color: #D9D9D9;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 425px) {
  .qoute-carousel .owl-dots .owl-dot {
    border-radius: 50%;
    width: 10px;
    height: 10px;
  }
}
.qoute-carousel .owl-dots .owl-dot.active {
  background-color: #A98467;
  width: 32px;
  border-radius: 12px;
}

.pac-container {
  z-index: 100000 !important;
}

.filter-table {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 12px;
  flex-wrap: wrap;
}
.filter-table .filter-select {
  width: 155px;
  border: 1px solid #A98467;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 0;
  height: 45px;
}
.filter-table .filter-select.lg {
  width: 190px;
}
.filter-table .filter-select.bg-main {
  border: none;
}
.filter-table .filter-select.bg-main .select ~ .select2 .select2-selection--single {
  background-color: #A98467;
}
.filter-table .filter-select.bg-main .select ~ .select2 .select2-selection--single .select2-selection__rendered {
  color: #fff;
}
.filter-table .filter-select.bg-main .select ~ .select2 .select2-selection--single .select2-selection__arrow::after {
  color: #fff;
}
.filter-table .filter-select .select ~ .select2 .select2-selection--single {
  border: none !important;
}
html[lang=en] .filter-table .filter-select .select ~ .select2 .select2-selection--single {
  padding-left: 4px;
}
html[lang=ar] .filter-table .filter-select .select ~ .select2 .select2-selection--single {
  padding-right: 4px;
}
.filter-table .filter-select .select ~ .select2 .select2-selection--single .select2-selection__rendered {
  color: #202020;
  font-size: 14px;
}
html[lang=en] .filter-table .filter-select .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  right: 7px;
}
html[lang=ar] .filter-table .filter-select .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  left: 7px;
}
.filter-table .filter-search {
  width: 210px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 6px;
  height: 45px;
}
@media screen and (max-width: 425px) {
  .filter-table .filter-search {
    width: 100%;
  }
}
.filter-table .filter-search .input {
  width: 100%;
  height: 100%;
  padding: 8px 0;
}
.filter-table .filter-search .input::placeholder {
  color: #202020;
}
.filter-table .filter-search .icon {
  flex-shrink: 0;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  background-color: #A98467;
  color: #fff;
}
.filter-table .main-btn {
  min-width: fit-content;
  padding: 12px 10px;
  height: 45px;
  border-radius: 8px;
}
.filter-table .main-btn .ic {
  max-width: 28px;
  max-height: fit-content;
}

.rating-items .rate-item {
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.rating-items .rate-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 425px) {
  .rating-items .rate-item {
    align-items: start;
    flex-direction: column;
  }
}
.rating-items .rate-item .rate-img {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  object-fit: cover;
}
.rating-items .rate-item .content {
  width: 100%;
}
.rating-items .rate-item .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.rating-items .rate-item .content .top .name {
  font-size: 16px;
  font-family: fontDemi;
  color: #202020;
}
.rating-items .rate-item .content .top .time {
  font-size: 15px;
}
.rating-items .rate-item .content .info {
  font-size: 14px;
  color: #202020;
  margin-bottom: 10px;
  line-height: 1.6;
}
.rating-items .rate-item .content .pdf-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rating-items .rate-item .content .pdf-con .pdf-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-items .rate-item .content .pdf-con .pdf-icon .pdf-ic {
  max-height: 40px;
}
.rating-items .rate-item .content .pdf-con .pdf-icon .pdf-ic .pdf-text {
  font-size: 15px;
  color: #202020;
}
.rating-items .rate-item .content .pdf-con .pdf-raido {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box {
  position: relative;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .icon {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(139, 167, 141, 0.7);
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .text2 {
  opacity: 0;
  display: none;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .hidden-input:checked + .icon {
  background-color: #A98467;
  border-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .hidden-input:checked + .icon::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .hidden-input:checked ~ .text1 {
  opacity: 0;
  display: none;
}
.rating-items .rate-item .content .pdf-con .pdf-raido .icon-box .hidden-input:checked ~ .text2 {
  opacity: 1;
  display: block;
}

.comment-item {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.comment-item .user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-item .user .user-img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .comment-item .user .user-img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
}
.comment-item .user .user-info .user-name {
  font-size: 16px;
  margin-bottom: 8px;
  color: #202020;
  font-family: fontDemi;
}
@media screen and (max-width: 576px) {
  .comment-item .user .user-info .user-name {
    font-size: 15px;
  }
}
.comment-item .comment-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.comment-item .comment-btns .comment-btn {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.comment-item .comment-btns .comment-btn .ic {
  max-width: 18px;
}
.comment-item .comment-btns .comment-btn .text {
  font-size: 15px;
  color: #202020;
}
.comment-item.sm {
  margin: 20px 25px 0;
  border-top: 1px solid #f3f3f3;
  padding-top: 15px;
}
.comment-item.sm .user {
  gap: 7px;
}
.comment-item.sm .user .user-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 576px) {
  .comment-item.sm .user .user-img {
    border-radius: 50%;
    width: 34px;
    height: 34px;
  }
}
.comment-item.sm .user .user-info .user-name {
  font-size: 15px;
}
@media screen and (max-width: 576px) {
  .comment-item.sm .user .user-info .user-name {
    font-size: 14px;
  }
}
.comment-item.sm .user .user-info .info {
  font-size: 14px;
}
.comment-item.sm .comment-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.comment-item.sm .comment-btns .comment-btn {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.comment-item.sm .comment-btns .comment-btn .ic {
  max-width: 18px;
}
.comment-item.sm .comment-btns .comment-btn .text {
  font-size: 15px;
  color: #202020;
}

.table-m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}
.table-m .table-head {
  padding: 12px;
  flex-shrink: 0;
}

.sweet-title{
  font-size: 16px !important;
  color: #000 !important;
  text-align: center !important;
  font-family: fontDemi !important;
  margin-bottom: 18px !important;
}

.mb-120{
  margin-bottom: 120px !important;
}

.sweet-icon{
  position: absolute !important;
  bottom : 68px !important;
}

.sweet-image{
  width: 90px;
  height: 110px;
}



.sweet-text{
  font-size: 15px;
  color: #202020 !important;
  margin-bottom: 120px !important;
  text-align: center!important;
}

.swal2-actions.your-actions-class{
  display: flex;
  gap: 12px !important;
}

.table-m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}
.table-m .table-head {
  padding: 12px;
  flex-shrink: 0;
}
.no-data {
  text-align: center;
}
.no-data .no-data-img {
  max-width: 240px;
  margin-bottom: 18px;
}
.no-data .no-data-text {
  color: #EC2F2F;
  font-size: 17px;
}
#notResult{
  display: none;
}
.filterList:empty + #notResult{
  display: block;
}


.pagination.university li {
  border: none;
  color: #000;
  margin: 0 !important;
  border-radius: 0 !important;
  font-size: 17px;
  height: 100%;
  transition: all .3s ease
}

.pagination.university li .page {
  display: block;
  padding: 12px 18px;
  transition: all .3s ease;
  cursor: pointer;

}


html[lang=en] .pagination.university li {
  border-right: 1px solid rgba(139, 167, 141, 0.7);
}
html[lang=ar] .pagination.university li{
  border-left: 1px solid rgba(139, 167, 141, 0.7);
}

html[lang=en] .pagination.university li:last-child{
  border-right: none !important;
}

html[lang=ar] .pagination.university li:last-child{
  border-left: none !important;
}
.pagination.university li:hover, .pagination.university li:focus, .pagination.university li.active {
  background-color: #A98467 !important;
  color: #fff !important;
}

.pagination.university li:hover .page{
  color: #fff !important;
}

.circle_btn{
  background-color: #A98467;
  font-size: 15px;
  border: none;
  outline: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle_btn i{
  transition: all 0.3s ease;
}

.circle_btn.open i{
  transform: rotate(180deg);
}

/*# sourceMappingURL=main.css.map */
.main-label{
  margin-bottom: 8px;
}
.swal2-cancel.main-btn-secondary{
  width: 130px;
  border: none;
  padding: 10px 0;
}
.editLibrary{
  background: transparent;
}
.w-space-normal p.text{
  white-space: initial;

}
.search-card .search-ic{
  cursor: none !important;
}
.search-card .main-input .main-icon .ic{
  cursor: none !important;
}
.course-page-img-spe{
  width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.jssocials-shares{
  display: flex;
  flex-wrap:wrap;
  gap: 12px
}

.jssocials-share{
  margin: 0;
  min-width: 170px;
}

.jssocials-share-link{
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.jssocials-share-logo{
  font-size: 1em !important;
}

.plyr.plyr--fullscreen-active video{
  height: 100% !important;
}

.plyr .plyr__controls .plyr__progress{
  direction: ltr;
}

.plyr .plyr__controls .plyr__progress input{
  direction: ltr !important;
}

.plyr audio, .plyr video{
  height: 380px !important;
}

.plyr:fullscreen video{
  height: 100% !important;
}

.students-carousel .owl-stage{
  display: flex !important;
}

.main-loader-main{
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-square {
  display: flex;
  flex-direction: row;
  width: 80px;
  height: 120px;
}
.spinner-square > .square {
  width: 8px;
  height: 50px;
  margin: auto auto;
  border-radius: 4px;
}
.square-1 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s
  infinite;
}
.square-2 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms
  infinite;
}
.square-3 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms
  infinite;
}
@keyframes square-anim {
  0% {
    height: 35px;
    background-color: #A98467;
  }
  20% {
    height: 35px;
  }
  40% {
    height: 55px;
    background-color: #3478a5;
  }
  80% {
    height: 35px;
  }
  100% {
    height: 35px;
    background-color: #A98467;
  }
}
.btn-remove-course{
  position: absolute;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background-color: crimson;
  color: #FFF;
  z-index: 20;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
html[lang=ar] .btn-remove-course {
  right: 10px;
}

/*diaa edits*/

.intro{
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    flex-direction: column;
    align-items: center;
}

.intro img{
    max-width: 60px;
    max-height: 100px;
    object-fit: contain;
    max-width: 100%;
}


.checkbox, .radio {
	 margin-bottom: 12px;
}
 .checkbox.inline, .radio.inline {
	 display: inline-block;
	 vertical-align: top;
	 margin-right: 18px;
}
 .checkbox.inline:last-child, .radio.inline:last-child {
	 margin-right: 0;
}
 .checkbox label, .radio label {
	 display: block;
	 position: relative;
	 cursor: pointer;
}
 .checkbox input[type="checkbox"], .checkbox input[type="radio"], .radio input[type="checkbox"], .radio input[type="radio"] {
	 position: absolute;
	 top: 0;
	 left: 0;
	 visibility: hidden;
}
 .checkbox .custom-checkbox, .checkbox .custom-radio, .radio .custom-checkbox, .radio .custom-radio {
	 display: inline-block;
	 vertical-align: top;
	 margin: 0 6px 0 0;
	 width: 18px;
	 height: 18px;
	 background: #fff;
	 border: 1px solid #ddd;
	 position: relative;
}
 .checkbox .custom-checkbox {
	 border-radius: 2px;
	 background: #A98467;
	 transition: box-shadow 180ms ease;
	 box-shadow: inset 0 0 0 12px #fff;
	 top: 4px;
}
 .checkbox .icon-check {
	 width: 12px;
	 height: 12px;
	 background-size: cover;
	 position: absolute;
	 top: 3px;
	 left: 3px;
	 transform: scale(0);
	 transition: all 180ms ease;
}
 .checkbox input[type="checkbox"]:checked + .custom-checkbox {
	 border-color: #A98467;
	 box-shadow: none;
}
 .checkbox input[type="checkbox"]:checked + .custom-checkbox .icon-check {
	 transform: scale(1);
}

.price_view{
    height: 40px;
    background: #f6f3f0;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

/*.subscribe_for_watch .overlay{*/
/*    position: fixed;*/
/*    with: 100vh;*/
/*    heigh: 100vh;*/
/*    background-color: rgba(9,9,9, 0.77);*/
/*    top: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    z-index: 88888;*/
/*    display:none;*/
    
/*}*/
.subscribe_for_watch {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
    z-index: 9999; /* Ensure it's on top of other elements */
}

.subscribe_for_watch .content_inner {
    color: #000;
    text-align: center;
    padding: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}

.subscribe_for_watch .content_inner img{
    width: 161px;
}

.subscribe_for_watch button {
    background-color: #A98467;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: auto;
    margin-top: 20px;
}

.subscribe_for_watch p {
    color: #000; /* Make the font color white */
    font-size: 18px; /* Optional: Adjust font size if needed */
    text-align: center; /* Optional: Center-align the text */
    margin-top: 20px; /* Optional: Add some margin for spacing */
}

.starter_head{
    animation: rainbow 14s ease-in-out infinite;
    background: linear-gradient(124deg, #A98467, #A98467, #A98467, #af784e, #af784e, #c36a25, #c36a25);
    background-size: 1800% 1800%;
    width: 100%;
    padding: 7px;
    display: flex;
    justify-content: center;
    /*postion: fixed;*/
    /*left: 0;*/
    /*right: 0;*/
    /*top: 0;*/
    /*width: 100%;*/
}

.starter_head p{
    color: #fff;
}

@keyframes rainbow{
        0% {
        background-position: 0 82%;
    }


    50% {
        background-position: 100% 19%;
    }
    100% {
        background-position: 0 82%;
    }
}



.course_card{
    display: flex;
    background-color: #fff;
    box-shadow: 0 3px 9px #e9e3e3;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px;
}

.course_card .course_img{
    flex: 1;
    border-radius: 10px;
    margin-inline-end: 20px;

}

.course_card .course_img img{
    max-width: 100%;
    height: 266px;
    border-radius: 10px;
    width: 100%;
}

.course_card .course_content{
    flex: 4;
}

.course_card .course_content .course-name{
    font-size: 17px;
    margin-bottom: 10px;
}

.course_card .course_content .course_items .course_time{
    font-size: 15px;
    margin-bottom: 10px;
}

.course_card .course_content .course_items .course_sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course_card .course_content .course_items .course_sec .course_sec_side1 .item{
        display: flex;
        align-items: center;
        margin-bottom: 7px;
}


.course_card .course_content .course_items .course_sec .course_sec_side1 .item img{
    width: 20px;
    height: 20px;
    margin-inline-end: 7px
}

.course_card .course_content .course_items .course_sec .course_sec_side1 .item .item-text{
    font-size: 15px;
}
 
 
 .course_card .course_content .course_items .course_sec .course_sec_side2 p{
    font-size: 15px;
    color: #D93F21;
}

 .course_card .course_content .course_items .course_desc{
     /*width: 400px;*/
     margin-bottom: 25px;
 }

 .course_card .course_content .course_items .course_desc p{
    font-size: 14px;
    color: #8b8686;
}

 .course_card .course_content .course_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .course_card .course_content .course_footer .actions{
     display: flex;
 }

 .course_card .course_content .course_footer .actions .form-row{
     border: 1px solid #A98467;
     border-radius: 7px;
     margin-inline-end: 12px
 }
 
  .course_card .course_content .course_footer .actions .form-row .checkbox{
      margin-bottom: 0;
      padding: 4px;
  }
  
    .course_card .course_content .course_footer .actions .form-row .checkbox label{
        color: #A98467;
    }

 .course_card .course_content .prices .price_item{
    margin-bottom: 7px;
}

 .course_card .course_content .prices .price_item{
    display: flex;
    align-items: center;
 }

 .course_card .course_content .prices .price_item h4{
    font-size: 16px;
    margin-inline-end: 10px
}

 .course_card .course_content .prices .price_item .new_price{
    font-size: 15px;
    color: #A98467;
    margin-inline-end: 15px
}

 .course_card .course_content .prices .price_item .old_price{
    font-size: 15px;
    text-decoration: line-through;
}

.content_with{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


