/* SCSS HEX */
@import url(./style-ltr.css);
@import url(dark.css);

:root {
  --mainColor: #fff;
  --mainColor2: #6E34BC;
  --darkColor: #158591;
  --darkerColor: #23245C;
  --lightColor: #f5feff;
  --linkColor: #e6e4ceff;
  --linkHoverColor: #bd9e34;
  --color2: #c09bd8ff;
  --color3: #ebc3dbff;
  --color4: #ede3e9ff;
  --lightBlue: #00B4B1;
}

@font-face {
  font-family: 'NeoSansArabic';
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/neosansarabic/7668f634eb4865a48f04d52ea3fb9b27.eot);
  src: url(../../assets/fonts/neosansarabic/7668f634eb4865a48f04d52ea3fb9b27.eot?#iefix) format('embedded-opentype'), url(../../assets/fonts/neosansarabic/7668f634eb4865a48f04d52ea3fb9b27.woff2) format('woff2'), url(../../assets/fonts/neosansarabic/7668f634eb4865a48f04d52ea3fb9b27.woff) format('woff'), url(../../assets/fonts/neosansarabic/7668f634eb4865a48f04d52ea3fb9b27.ttf) format('truetype');
}

@font-face {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  src: url(../../assets/fonts/RobotoCondensed-VariableFont_wght.ttf) format('truetype');
}

@font-face {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  src: url(../../assets/fonts/NotoKufiArabic-VariableFont_wght.ttf) format('truetype');
}

:lang(ar) :not(.fa):not(.fas):not(.far):not(.fab):not(.fal) {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

:lang(en) :not(.fa):not(.fas):not(.far):not(.fab):not(.fal) {
  font-family: 'Roboto Condensed', sans-serif;
}

body {
  font-family: 'Noto Kufi Arabic' !important;
  background-color: #fff;
}

.d-f * :lang(ar) :not(.fa):not(.fas):not(.far):not(.fab):not(.fal) {
  font-family: 'Noto Kufi Arabic', sans-serif !important;
}

.d-f * :lang(en) :not(.fa):not(.fas):not(.far):not(.fab):not(.fal) {
  font-family: 'Roboto Condensed', sans-serif !important;
}

ul,
ol {
  list-style: none;
  margin: 0 !important;
}

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

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.pointer {
  cursor: pointer;
}

.darkcolor {
  color: var(--darkColor);
}

.lightblue {
  color: var(--lightBlue);
}

.lightcolor {
  color: var(--lightColor);
}

.mainColor {
  color: var(--mainColor);
}

.mainColor2 {
  color: var(--mainColor2);
}

.alert-my {
  border-color: #a3cfbb !important;
  padding: 0 !important;
}

.alert-my .alert-my-heading {
  color: inherit;
  background: #101529;
  padding: 1rem;
}

.alert-my .alert-my-heading .icon {
  color: #f0d8b4;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  animation: animatalerticons 1.5s ease-out infinite;
}

.alert-my .alert-my-heading .text {
  color: #fff;
  margin-right: 1rem;
}

.alert-my .text-bold {
  font-weight: bold;
}

@keyframes animatalerticons {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button:disabled {
  pointer-events: auto !important;
}

.tooltip-class {
  font-size: 12pt;
  font-weight: bold;
}

.loading_container {
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-my {
  color: #fff;
  background-color: var(--darkColor);
  border-color: var(--mainColor);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.btn.btn-my:hover {
  color: var(--linkHoverColor);
  background: #fff;
  border: 1px solid var(--linkHoverColor);
}

.modal {
  z-index: 9999 !important;
}

.dropdown-item {
  text-align: right;
}

.dropdown-item a {
  color: var(--linkColor);
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  color: #402829;
  text-decoration: none;
  background-color: #c2e6db;
}

.dropdown-item.active a,
.dropdown-item:active a,
.dropdown-item:hover a {
  color: #402829;
}

.accordion-faq .accordion-button {
  flex: 1;
}

.accordion-faq .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #fff;
  border-top: 2px solid var(--darkColor);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-faq .accordion-button:after {
  margin-right: auto;
  margin-left: 0;
}

.form-floating>label {
  width: auto !important;
  right: 0;
  left: unset !important;
}

.form-floating .form-control {
  border: 0;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--darkColor);
  transition: border-color 500ms ease-in-out, box-shadow 500ms ease-in-out !important;
}

.form-floating .form-control:focus {
  box-shadow: none !important;
  border-bottom-color: var(--lightBlue);
  border-bottom-style: solid;
  border-width: 0 0 2px 0;
}

.form-floating .form-control:focus~label {
  color: var(--lightBlue) !important;
}

.course_register .card {
  border-top: 4px solid var(--darkColor);
}

.course_register .card .card-header {
  background: #fff;
  font-size: 20px;
  padding: 1.6rem 1rem;
  color: #5c6b80;
}

.course_register .contactus .title {
  padding: 5px 0;
}

.course_register .contactus .info {
  padding-right: 1rem;
}

.course_register .contactus .info .icon {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.course_register .contactus .info .icon:hover {
  transform: rotate(180deg);
}

.course_register .contactus .info a {
  color: var(--lightBlue);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.course_register .contactus .info a:hover {
  padding-right: 0.5rem;
}

section {
  padding: 8rem 0;
}

section .row h2 {
  text-align: center;
  position: relative;
  display: inline-block;
  width: max-content;
  margin: 0 auto 3rem;
}

section .row h2:before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 6px;
  background-color: var(--darkColor);
  border-radius: 10px;
}

section .row h2:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: -1;
}

.contact_img {
  width: 100%;
  overflow: hidden;
  height: min-content;
}

.contact_img img {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-control-plaintext~label,
.form-floating>.form-select~label {
  transform: scale(0.85) translateY(-1.3rem) translateX(0.15rem) !important;
}

[dir=rtl] .slick-slide {
  float: none !important;
}

.wrapper {
  overflow: hidden;
}

.header {
  background: transparent;
  padding: 0 !important;
}

.header .top {
  border-bottom: 1px solid var(--bs-gray-600);
  padding: 5px;
  font-size: 14px;
  background: var(--darkerColor);
}

.header .top ul {
  display: flex;
  gap: 1rem;
}

.header .top ul li a {
  color: var(--linkColor);
  display: block;
  padding: 3px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header .top ul li a:hover {
  transform: rotate(360deg);
}

.header .top ul li a:hover.twitter {
  color: #1da1f2;
}

.header .top ul li a:hover.facebook {
  color: #1877f2;
}

.header .top ul li a:hover.linkedin {
  color: #0a66c2;
}

.header .top ul li a:hover.youtube {
  color: #ff0000;
}

.header .top ul li a:hover.instagram {
  color: #c32aa3;
}

.header .top ul li a:hover.whatsapp {
  color: #25d366;
}

.header .top .contact {
  display: flex;
  justify-content: space-around;
  color: var(--linkColor);
}

.header .top .contact a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--linkColor);
}

.header .header_center {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.header .header_center .row {
  justify-content: space-between;
}

.header .header_center .row .logo a {
  display: block;
  width: 150px;
}

.header .header_center .row .logo a img {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.header .header_center .row .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .header_center .row .menu ul {
  display: flex;
  gap: 1rem;
}

.header .header_center .row .menu ul li {
  border-left: 1px solid rgb(103 103 1.71666667%);
}

.header .header_center .row .menu ul li a {
  padding: 1rem;
  color: var(--linkColor);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header .header_center .row .menu ul li a:hover {
  color: var(--linkHoverColor);
}

.header .nav_menu {
  background: var(--mainColor);
  border-bottom: 2px solid var(--darkColor);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header .nav_menu.is-sticky {
  -webkit-position: fixed;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 0px 9px 1px #000;
  padding: 0;
  z-index: 9999;
}

.header .nav_menu .logo {
  width: 150px;
  display: flex;
  align-items: center;
}

.header .nav_menu .logo img {
  width: 100%;
  background-size: cover;
}

.header .nav_menu ul {
  display: flex;
  align-items: center;
}

.header .nav_menu ul li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: max-content;
  color: #000;
  padding: 1rem;
  display: block;
}

.header .nav_menu ul li a:hover {
  color: #fff;
  background: var(--darkColor);
}

.header .nav_menu ul li.languages a {
  display: flex;
  gap: 3px;
}

.header .nav_menu ul li.languages a img {
  width: 30px;
}

.header .nav_menu .nav-menu-btn,
.header .nav_menu .mobile-menu {
  display: none;
}

.header .nav_menu .nav-menu-btn {
  font-size: 2rem;
}

.header .nav_menu .mobile-menu li {
  display: flex;
  justify-content: center;
}

.hero {
  padding: 0 !important;
  width: 100%;
}

.hero .slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.hero .slider .inner-item {
  position: relative;
  width: 100%;
  height: calc(100svh - 90px);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .slider .inner-item .slider-caption-h3 {
  background: rgba(0, 0, 0, 0.281);
  color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.hero .slider .inner-item .slider-item {
  height: 80vh;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero .slider .inner-item .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero .slider .inner-item .image-container img {
  background-size: cover;
}

.hero .slider .inner-item .slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
  width: max-content;
}

.hero .slider .inner-item .slider-content .btn {
  background: var(--lightBlue);
  color: var(--lightColor);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 1rem;
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero_text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 4rem;
}

.hero .hero_text h1,
.hero .hero_text h2 {
  color: #ede3e9ff !important;
  text-align: center;
}

.hero .hero_text h2 {
  font-size: 1.6rem;
}

.hero .search_container {
  border: 1px solid var(--color4);
  border-radius: 5px;
  padding: 2.5rem;
  background: #fff;
  position: relative;
  top: -80px;
  z-index: 1;
  background-image: url('../images/bbg.webp');
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  box-shadow: 0 0 30px 0 rgba(0, 42, 106, 0.1);
}

.hero .search_container h3 {
  color: #ede3e9ff !important;
  text-align: center;
}

.hero .search_container .btn-search {
  background: var(--lightBlue);
  color: var(--lightColor);
  font-size: 1.5rem;
}

.hero .search_container .form-control,
.hero .search_container .form-select {
  border-width: 0;
  border-bottom-width: 1px;
  border-bottom-color: #e6e4ceff;
  border-radius: 0;
  color: var(--darkColor);
  padding: 0.375rem 0.75rem;
  background: var(--lightColor);
  height: 55px !important;
  border-color: rgba(0, 0, 0, 0.1);
}

.hero .search_container .form-select option {
  padding: 1rem;
}

.breads {
  height: 280px;
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 1;
}

.breads:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.9;
  z-index: -1;
}

.breads .breadcrumb {
  position: relative;
}

.breads .breadcrumb:before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #dedede;
  margin-left: 5px;
}

.breads .breadcrumb .breadcrumb-item a {
  color: #dedede;
}

.breads .breadcrumb .breadcrumb-item.active {
  color: var(--linkHoverColor);
}

.breads .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  float: right;
  color: #dedede;
  margin-left: 5px;
}

.breads h1 {
  color: #eee;
  font-size: 26px;
  margin-top: 1rem;
}

.breads .breads_btns .col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breads .breads_btns .col .btn {
  border: 1px solid #e6e4ceff;
  color: #e6e4ceff;
  background: transparent !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.breads .breads_btns .col .btn:hover {
  background: #e6e4ceff !important;
  border-color: #158591;
  color: #158591;
  transform: translateY(-10px);
}

.breads .breads_btns .col .whatsapp {
  font-size: 1.5rem;
  color: #25d366;
}

.courses {
  position: relative;
  padding: 0 !important;
  z-index: 0;
}

.courses::after {
  content: "";
  background-image: url(../images/hero_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.courses h2 {
  color: var(--darkColor);
}

.courses h2::after {
  color: var(--darkColor);
}

.courses .col-md-4:last-child {
  margin-left: auto;
}

.courses .cat_boxs {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  height: calc(100% - 15px);
}

.courses .cat_boxs:hover .box .image img,
.courses .cat_boxs:hover .cities img {
  transform: scale(1.5);
}

.courses .cat_boxs .box {
  position: relative;
  overflow: hidden;
  margin: 0 0 1rem;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.courses .cat_boxs .box .title {
  background: #fff;
  text-align: center;
  padding: 1rem;
  color: var(--darkColor);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  height: 120px;
  max-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.courses .cat_boxs .box .image {
  width: 100%;
  height: 100%;
  max-height: 277px;
  overflow: hidden;
}

.courses .cat_boxs .box .image img {
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.courses .cat_boxs .box.cities {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.courses .cat_boxs .box.cities img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.courses .cat_boxs .box.cities .title {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  color: var(--lightColor);
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.courses-owl .course-box {
  border-radius: 6px 6px 0 0;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
}

.courses-owl .course-box .entry {
  position: relative;
}

.courses-owl .course-box .entry:after {
  border-color: #01bacf;
  background-color: #01bacf;
  box-shadow: inset 0 0 0 0 #00a8bd;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.courses-owl .course-box .entry .magnifier {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  right: 0;
  opacity: 0;
  top: 0;
  background-color: rgba(1, 186, 207, 0.8);
  -webkit-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  -moz-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  -o-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
}

.courses-owl .course-box .entry .magnifier a {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 0;
  right: 0;
  margin: -20px auto;
  font-size: 30px;
  color: #fff !important;
}

.courses-owl .course-box .course-details {
  padding: 2rem 2rem;
  height: 11rem;
}

.courses-owl .course-box .course-details h4 {
  font-size: 18px;
  padding: 0 0 1.5rem;
  font-weight: 700;
  margin: 0;
}

.courses-owl .course-box .course-details p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.courses-owl .course-box .course-details small {
  display: block;
  font-size: 80%;
  margin-bottom: 10px;
  color: var(--lightBlue);
}

.courses-owl .course-box .course-details a {
  color: #000;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.courses-owl .course-box .course-details a:hover {
  color: var(--lightBlue);
}

.courses-owl .course-box .course-footer {
  border-top: 1px solid #eaeaea;
  padding: 15px;
}

.courses-owl .course-box .course-footer ul {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.courses-owl .course-box .course-footer ul li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.courses-owl .course-box .course-footer ul li a {
  color: #aaa;
}

.courses-owl .course-box .course-footer ul li a i {
  color: var(--lightBlue);
}

.courses-owl .owl-theme-01 .owl-nav [class*="owl-"] {
  background: var(--lightBlue) none repeat scroll 0 0;
  border: 1px solid #eaeaea;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  margin: 0;
  padding: 0 17px !important;
  font-weight: bold;
}

.cats_courses .col-md-4,
.cats_courses .col-lg-3 {
  padding-right: 15px;
  padding-left: 15px;
}

.cats_courses :lang(ar) .col-md-4:last-child,
.cats_courses :lang(ar) .col-lg-3:last-child {
  margin-left: auto;
}

.cats_courses :lang(en) .col-md-4:last-child,
.cats_courses :lang(en) .col-lg-3:last-child {
  margin-right: auto;
}

.cats_courses .card .card-body .card-title {
  color: #505050;
  font-size: 16px;
  min-height: 60px;
}

.cats_courses .card .card-body .card-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cats_courses .card .card-body .card-text .cert img {
  width: 50%;
}

.cats_courses .card .card-body .card-text .time {
  font-size: large;
}

.phone_container .phone_input {
  height: max-content;
  flex: 0 1 70%;
}

.phone_container .flags_select {
  flex: 0 1 30%;
}

.phone_container .multiselect .multiselect__option,
.phone_container .multiselect .multiselect__single {
  direction: ltr;
}

.phone_container .multiselect .option__desc {
  margin-right: 0.5rem;
}

.courses-list {
  border: 1px solid var(--mainColor2);
  border-radius: 5px;
  overflow: hidden;
}

.courses-list .course-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 5px 1rem;
}

.courses-list .course-item .icons {
  margin-left: 0.5rem;
  color: var(--mainColor2);
}

.courses-list .course-item:nth-child(odd) {
  background-color: #eaeaea;
}

.courses-list .course-item:nth-child(even) {
  background-color: #f7f7f7;
}

.courses-list .course-item .city_country {
  flex: 0 1 40%;
}

.courses-list .course-item .actions,
.courses-list .course-item .price_currncy {
  flex: 0 1 20%;
}

.courses-list .course-item .dates {
  display: flex;
  align-items: center;
  flex: 0 1 30%;
}

.courses-list .course-item .dates .start_date:after {
  content: " - ";
  margin: 0 5px;
}

.courses-list .course-item .price_currncy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag_container {
  margin: 1rem;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.tag_container .month-tag {
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid var(--color2);
  color: var(--mainColor2);
}

.tag_container .month-tag.active {
  background: var(--mainColor2);
  color: var(--mainColor);
  padding: 3px 6px;
}

.flip {
  transform: rotateY(180deg);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pager {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pager .pagination {
  color: #1b8e6b;
}

.pager .pagination .page-item.active .page-link {
  background-color: #b0e4d4;
  border-color: #1b8e6b;
  color: #1b8e6b;
}

.pager .pagination .page-item.disabled {
  display: none;
}

.pager .pagination .page-item:first-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pager .pagination .page-item:last-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.pager .pagination .page-item .page-link {
  color: #1b8e6b;
}

.footer {
  margin-top: 2rem;
  background: var(--darkerColor);
  padding: 2rem 0 0 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/f_bg.svg);
  background-size: 700px;
  object-fit: cover;
  z-index: -1;
  background-position: bottom;
  opacity: 0.1;
}

.footer .container .row.top_footer {
  direction: rtl;
  text-align: justify;
  padding-bottom: 40px;
}

.footer .container .row.top_footer .col-md-5 h3,
.footer .container .row.top_footer .col-md-7 h3 {
  font-size: 18px;
  color: var(--mainColor);
  padding-bottom: 5px;
}

.footer .container .row.top_footer .col-md-5 h3::after,
.footer .container .row.top_footer .col-md-7 h3::after {
  display: block;
  content: "";
  width: calc(100% - 200px);
  height: 1px;
  background: #c2a476;
  margin-top: 15px;
}

.footer .container .row.top_footer .col-md-5 h5,
.footer .container .row.top_footer .col-md-7 h5 {
  font-size: 14px;
}

.footer .container .row.top_footer .col-md-5 ul,
.footer .container .row.top_footer .col-md-7 ul {
  padding: 0;
}

.footer .container .row.top_footer .col-md-5 ul li a,
.footer .container .row.top_footer .col-md-7 ul li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #fff;
}

.footer .container .row.top_footer .col-md-5 ul li a img,
.footer .container .row.top_footer .col-md-7 ul li a img {
  width: 230px;
}

.footer .container .row.top_footer .col-md-5 ul.social,
.footer .container .row.top_footer .col-md-7 ul.social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer .container .row.top_footer .col-md-5 ul.social li a,
.footer .container .row.top_footer .col-md-7 ul.social li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #333;
  background: #F3F2EE;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.footer .container .row.top_footer .col-md-5 ul.social li a:before,
.footer .container .row.top_footer .col-md-7 ul.social li a:before {
  display: none;
}

.footer .container .row.top_footer .col-md-5.contact_links ul .title,
.footer .container .row.top_footer .col-md-7.contact_links ul .title {
  font-weight: bold;
}

.footer .container .row.top_footer .col-md-5.contact_links ul .number,
.footer .container .row.top_footer .col-md-7.contact_links ul .number {
  direction: ltr;
}

.footer .container .row.top_footer .col-md-5.contact_links .social ul,
.footer .container .row.top_footer .col-md-7.contact_links .social ul {
  display: flex;
  justify-content: space-around;
}

.footer .container .row.top_footer .col-md-5.contact_links .social ul li a,
.footer .container .row.top_footer .col-md-7.contact_links .social ul li a {
  display: block;
  padding: 1rem;
  font-size: 1.8rem;
}

.footer .dw_footer {
  background: #0f1119;
  color: #ddd;
  font-size: 11px;
}

.footer .dw_footer .col-md-6 {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  direction: rtl;
  font-size: 14px;
}

.footer .dw_footer .col-md-6.right {
  display: flex;
  align-items: center;
}

.footer .dw_footer .col-md-6.left ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .dw_footer .col-md-6.left ul li a {
  padding: 1rem;
  display: block;
}

.footer .dw_footer .col-md-6 a {
  color: var(--mainColor);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer .dw_footer .col-md-6 a:hover {
  color: var(--linkHoverColor);
}

.footer .whatsapp {
  position: fixed;
  bottom: 72px;
  right: 9px;
  width: 60px;
}

.footer .whatsapp a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom_footer {
  width: 100%;
  background: #353535;
  margin: 0;
  font-size: 12px;
  color: gray;
  text-align: center;
  padding: 1rem;
}

.bottom_footer a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--mainColor);
  opacity: 0.5;
}

.sidebar .list-group .list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--darkColor);
  border-color: var(--darkColor);
}

.sidebar .list-group .list-group-item a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--darkColor);
  display: block;
}

.sidebar .list-group .list-group-item a:hover {
  color: var(--lightBlue);
}

@media only screen and (min-width: 375px) and (max-width: 992px) {
  .header .nav_menu .nav-menu {
    display: none;
  }

  .header .nav_menu.is-sticky {
    display: none;
  }

  .header .nav_menu .nav-menu-btn {
    display: block;
  }

  .header .nav_menu .menu {
    display: flex;
    justify-content: flex-end;
    flex: 1 20%;
  }

  .header .nav_menu .logo {
    flex: 1 80%;
  }

  .header .nav_menu .logo img {
    width: 60%;
  }

  .search_container .search_form {
    flex-direction: column;
  }
}

.select2-container {
  z-index: 9999;
  flex: 1;
  padding: 0.375rem 0.75rem;
}

.select_country_short_code {
  display: flex;
  flex: 1 50%;
}

.select2-container .select2-selection--single {
  height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 15px !important;
  left: auto !important;
  top: 10px !important;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 15px !important;
  top: 10px !important;
  right: auto !important;
}

.select2-image {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}

.faq h3 {
  border-bottom: 1px solid var(--darkColor);
  padding: 0 0 1rem;
}

.site_map h5 a {
  color: var(--darkColor);
}

.site_map .child li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.site_map .child li:before {
  content: "~";
  height: 14px;
}

.site_map .child li a {
  color: #818181;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site_map .child li a:hover {
  color: var(--lightBlue);
  text-decoration: underline !important;
}

.city_plans .plan_container .plan_title {
  background: var(--darkColor);
  padding: 20px;
  color: var(--lightColor);
  font-size: 20px;
  border-radius: 5px 5px 0 0;
}

.city_plans .plan_container .plan_content {
  background: var(--lightColor);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.city_plans .plan_container .plan_content:nth-child(odd),
.city_plans .plan_container .plan_content:hover {
  background: #d6e9ea;
}

.city_plans .plan_container .plan_content .date_box {
  background: var(--darkerColor);
  color: var(--lightColor);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 10%;
}

.city_plans .plan_container .plan_content .course_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.city_plans .plan_container .plan_content .course_box .course_title a {
  color: var(--darkerColor);
  font-weight: 600;
}

.city_plans .plan_container .plan_content .course_box .course_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 0;
}

.city_plans .plan_container .plan_content .course_box .course_info .icon {
  color: var(--lightBlue);
}

.city_plans .pagination {
  justify-content: center;
  padding-top: 1rem;
}

.city_plans .pagination .small {
  display: none;
}

.city_plans .pagination .page-link.active,
.city_plans .pagination .active>.page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--darkColor);
  border-color: var(--darkColor);
}

.city_plans .pagination .page-link {
  color: var(--darkColor);
}

.v404 .img_container {
  width: 100%;
  max-height: 260px;
}

.v404 .img_container img {
  object-fit: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
}