@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

@font-face {
  font-family: "font-en";
  src: url(assets/fonts/cuyabra.otf);
}
:root {
  --main-color: #51459e;
  --body-bg: #f5f8fa;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #2c2f32;
  --subp-color: #adafca;
  --link-color: #51459e;
  --a-light: #FFF;
  --shadow-color: rgba(94, 92, 154, 0.0588235294);
  --border-color: #eaeaf5;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark {
  --main-color: #51459e;
  --body-bg: #151521;
  --navbar-bg: #1e1e2d;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --p-color: #FFF;
  --subp-color: #9aa4bf;
  --link-color: #51459e;
  --a-light: #FFF;
  --shadow-color: rgba(0, 0, 0, 0.0588235294);
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
@media (max-width: 991.98px) {
  .form-group {
    margin: 10px 0;
  }
}
.form-group label {
  color: #c1bacd;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: 21px;
  right: 20px !important;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
  letter-spacing: 0 !important;
}
.form-group .form-control {
  height: 55px;
  padding: 7px 20px 0 20px;
  background-color: #f5f4f7;
  border: unset;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 17px !important;
  font-size: 0.85rem;
  font-weight: 600;
}
.form-group .form-control:focus {
  border-color: tomato;
  box-shadow: none;
  outline: none;
}
.form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 600;
  font-size: 0.8rem;
}
.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 600;
  font-size: 0.8rem;
}
.form-group select {
  cursor: pointer;
}

.create-account-btn {
  text-decoration: none;
  width: 95% !important;
  margin: 0 auto 0 auto;
  color: #FFF;
  display: flex;
  justify-content: center;
  height: 43px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600 !important;
  text-align: center;
  line-height: 43px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #51459e !important;
  border: 0;
}
.create-account-btn svg {
  height: 18px;
  margin-left: 2px;
}
.create-account-btn svg path {
  fill: #FFF;
}
.create-account-btn:hover {
  background-color: #51459e;
}

.form-check {
  display: flex;
  margin: 10px 5px 10px 0;
}
.form-check input {
  background-color: #fff;
  border: 1px solid #dedeea;
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}
.form-check p {
  color: #2c2f32;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}
.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}
p.text a {
  text-decoration: none;
  color: #51459e;
  font-weight: 700;
}

.active-input label {
  padding: 0 6px;
  font-size: 0.55rem;
  top: 11px !important;
  right: 13px !important;
}

.navbar {
  justify-content: center;
  padding: 0 15px;
}
.navbar .upper-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  padding-top: 15px;
}
@media (max-width: 991.98px) {
  .navbar .upper-navbar {
    display: block;
    text-align: center;
  }
}
.navbar .upper-navbar-side {
  width: 325px;
  display: flex;
  align-items: center;
}
.navbar .social-icons {
  display: flex;
  align-items: center;
  margin: 0;
}
.navbar .social-icons li {
  margin: 0 10px;
}
.navbar .social-icons li a svg {
  fill: #333;
  height: 22px;
  width: 22px;
}
.navbar .separation-line {
  height: 30px;
  width: 1px;
  background: #ebebeb;
  margin: 0 7px;
}
.navbar .lang {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 0 0 15px;
  z-index: 10;
  width: auto;
  justify-content: end;
}
.navbar .lang .switch-langs {
  flex: 1;
  order: 2 !important;
  -webkit-box-ordinal-group: 2;
}
.navbar .lang .switch-langs h6 {
  margin: 1px 0 0 0;
  color: var(--p-color);
}
.navbar .lang .li-links {
  position: absolute;
  top: 0;
  left: -25px;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
.navbar .lang .li-links ul {
  display: block;
  width: 150px;
  display: block;
  text-align: left;
  padding: 10px 10px;
  border-radius: 8px;
  margin-top: 28px;
  background: #FFF;
  border: 1px solid #ebebeb;
}
@media (max-width: 1199.98px) {
  .navbar .lang .li-links ul {
    margin-top: 40px;
  }
}
.navbar .lang .li-links ul li {
  display: flex;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
.navbar .lang .li-links ul li:hover a {
  color: #51459e;
}
.navbar .lang .li-links ul li a {
  color: var(--p-color);
  text-decoration: none;
}
.navbar .lang .hover-drop {
  display: flex;
  align-items: center;
}
.navbar .lang .hover-drop span {
  color: #000;
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 0 3px;
  display: flex;
  align-items: center;
}
.navbar .lang .hover-drop .lang-icon svg {
  fill: #000;
  height: 18px;
  width: 18px;
  margin: 0 5px;
}
.navbar .lang .hover-drop .arrow {
  height: 20px;
  width: 20px;
  margin: 0px 8px 0 8px;
  fill: #000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.navbar .lang .hover-drop .flag-svg {
  height: 20px;
  width: 20px;
  margin: 0 2px;
  border-radius: 50%;
}
.navbar .lang .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 2px);
}
@media (max-width: 1199.98px) {
  .navbar .lang .hover-drop:hover .li-links {
    transform: translate(0, -8px);
  }
}
.navbar .lang .hover-drop .li-links {
  z-index: 150;
}
.navbar .lang .hover-drop .li-links li svg {
  height: 20px;
  width: 20px;
  margin: 0px 8px 0 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  transform: rotate(0);
}
.navbar .lang .hover-drop .li-links li a {
  font-weight: 600;
}

.down-nav-container {
  background: #FFF;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 9;
}

.down-navbar {
  border-top: 1px solid #ebebeb;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
@media (max-width: 991.98px) {
  .down-navbar {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .down-navbar {
    padding: 10px 0 0 0;
  }
}

.nav-logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .nav-logo {
    padding: 0 0;
  }
}
.nav-logo .nav-menu {
  display: none;
}
@media (max-width: 991.98px) {
  .nav-logo .nav-menu {
    display: block;
  }
}
.nav-logo .nav-menu .nav-menu-icon {
  cursor: pointer;
  margin-left: 10px;
}
.nav-logo .nav-menu .nav-menu-icon svg {
  height: 24px;
  width: 24px;
  fill: var(--h-color);
}
.nav-logo .nav-logo-container a {
  display: block;
  text-decoration: none;
  color: var(--h-color);
}
.nav-logo .nav-logo-container a img {
  height: 65px;
}
@media (max-width: 991.98px) {
  .nav-logo .nav-logo-container a img {
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  .nav-logo .nav-logo-container a img {
    height: 50px;
  }
}
@media (max-width: 575.98px) {
  .nav-logo .nav-logo-container a img {
    height: 40px;
  }
}
.nav-logo .nav-logo-container a .author {
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: 0.7rem;
  }
}
@media (max-width: 767.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: 0.6rem;
  }
}
@media (max-width: 575.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: 0.45rem;
  }
}
.nav-logo .nav-logo-container a .author .pretitle {
  font-weight: 600;
  color: var(--main-color);
}
.nav-logo .nav-logo-container a .author span {
  font-weight: 600;
  color: var(--h-color);
}
.nav-logo .upper-nav-actions {
  display: none;
}
@media (max-width: 991.98px) {
  .nav-logo .upper-nav-actions {
    display: flex;
  }
}
.nav-logo .upper-nav-actions .search-icon {
  cursor: pointer;
}
.nav-logo .upper-nav-actions .search-icon svg {
  height: 24px;
  width: 24px;
  fill: var(--h-color);
}
.nav-logo .upper-nav-actions .nav-custom-link {
  height: 32px;
}
@media (max-width: 575.98px) {
  .nav-logo .upper-nav-actions .nav-custom-link .nav-custom-link-text {
    font-size: 0.6rem !important;
  }
}

.nav-search {
  width: 325px;
  padding: 0 15px 0 0;
  display: flex;
  justify-content: end;
}
@media (max-width: 991.98px) {
  .nav-search {
    width: 500px;
    margin: auto;
    padding: 0;
    display: none;
  }
}
@media (max-width: 767.98px) {
  .nav-search {
    width: 400px;
    margin: auto;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .nav-search {
    width: 100%;
    margin: auto;
    padding: 0;
  }
}
.nav-search .contacts-icons {
  display: flex;
  align-items: center;
  margin: 0;
}
.nav-search .contacts-icons li {
  margin: 0 10px;
}
.nav-search .contacts-icons li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}
.nav-search .contacts-icons li a span {
  margin-top: 2px;
  margin-left: 5px;
}
.nav-search .contacts-icons li a svg {
  fill: #333;
  height: 20px;
  width: 20px;
  margin-top: -2px;
}
.nav-search form {
  width: 100%;
}
.nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
@media (max-width: 991.98px) {
  .nav-search .form-group {
    margin: 10px 0 0 0;
  }
}
.nav-search .form-group .form-control {
  height: 50px;
  padding: 0 45px 0 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--h-color);
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .nav-search .form-group .form-control {
    height: 43px;
    padding: 0 40px 0 20px;
  }
}
.nav-search .form-group .form-control:focus {
  border-color: var(--main-color);
  box-shadow: none;
  outline: none;
}
.nav-search .form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
@media (max-width: 575.98px) {
  .nav-search .form-group .form-control::-moz-placeholder {
    font-size: 0.7rem;
  }
  .nav-search .form-group .form-control::placeholder {
    font-size: 0.7rem;
  }
}
.nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.nav-search .form-group .search-icon svg {
  transform: rotateY(180deg);
  height: 22px;
  width: 22px;
  fill: var(--h-color);
}
@media (max-width: 575.98px) {
  .nav-search .form-group .search-icon svg {
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
  }
}

.nav-banner {
  background: var(--body-bg);
  margin: 0 20px 0 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: var(--h-color);
  min-height: 80px;
  width: 750px;
}
@media (max-width: 991.98px) {
  .nav-banner {
    display: none;
  }
}

.nav-custom-link {
  display: flex;
  text-align: left;
  justify-content: flex-end;
  font-weight: 600;
  background: var(--e-color);
  background: #941e09;
  padding: 7px 12px;
  border-radius: 4px;
  margin: 0 3px;
  height: 40px;
}
@media (max-width: 1350px) {
  .nav-custom-link {
    padding: 7px 7px 7px 12px;
  }
}
.nav-custom-link a {
  text-decoration: none;
  color: unset;
  display: flex;
  align-items: center;
}
.nav-custom-link .nav-custom-link-container {
  text-align: right;
  display: flex;
  align-items: center;
}
.nav-custom-link .nav-custom-link-container .nav-custom-link-icon svg {
  fill: var(--h-color);
  fill: #FFF;
  height: 18px;
  width: 18px;
}
@media (max-width: 1350px) {
  .nav-custom-link .nav-custom-link-container .nav-custom-link-icon {
    display: none;
  }
}
.nav-custom-link .nav-custom-link-container .nav-custom-link-info {
  margin-right: 5px;
  color: var(--body-color);
}
.nav-custom-link .nav-custom-link-container .nav-custom-link-info span {
  color: var(--main-color);
  margin-bottom: -7px;
  display: block;
  font-weight: 500;
}
.nav-custom-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
  margin-top: 3px;
  color: var(--h-color);
  color: #FFF;
  font-size: 0.75rem;
}
@media (max-width: 1350px) {
  .nav-custom-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
    font-size: 0.65rem;
  }
}

.toggle-theme {
  cursor: pointer;
}

.settings-link {
  background: unset;
  cursor: pointer;
  padding-left: 0;
}
@media (max-width: 1350px) {
  .settings-link .nav-custom-link-icon {
    display: block !important;
  }
}
.settings-link svg {
  fill: var(--h-color) !important;
  height: 22px !important;
  width: 22px !important;
}

.urgent-link {
  background: #f8eb20;
}
.urgent-link .nav-custom-link-container .nav-custom-link-icon svg {
  fill: #000;
}
.urgent-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
  color: #000;
}

.cities-link {
  background: #941e09;
}

.nav-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .nav-actions {
    display: none;
  }
}
.nav-actions ul {
  margin: 0;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.nav-actions ul li {
  cursor: pointer;
}
.nav-actions ul li svg {
  height: 26px;
  width: 26px;
  fill: var(--h-color);
}
.nav-actions .toggle-theme svg g path {
  fill: var(--h-color);
}

@media (max-width: 767.98px) {
  .nav {
    width: 100%;
  }
}
.nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .nav .nav-links {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}
.nav .nav-links li.nav-link {
  margin: 0 0;
  padding: 0.5rem 0.7rem;
  position: relative;
}
.nav .nav-links li.nav-link:hover .nav-link-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1350px) {
  .nav .nav-links li.nav-link {
    padding: 0.5rem 0.4rem;
  }
}
@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link {
    padding: 0.4rem 0.6rem;
  }
}
.nav .nav-links li.nav-link a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--h-color);
  text-decoration: none;
}
@media (max-width: 1350px) {
  .nav .nav-links li.nav-link a {
    font-size: 0.85rem;
  }
}
.nav .nav-links li.nav-link a svg {
  margin-right: -1px;
  height: 21px;
  width: 21px;
  fill: var(--h-color);
}
@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link a svg {
    display: none;
  }
}
.nav .nav-links li.nav-link .nav-link-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--card-bg);
  z-index: 100;
  padding: 10px 0 10px 0;
  border-radius: 8px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  transform: translate(0, -15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link .nav-link-dropdown {
    display: none;
  }
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li {
  transition: all 0.2s ease-in-out;
  padding: 8px 20px 7px 35px;
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover {
  transform: translate(0, 0);
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover a {
  color: var(--main-color);
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover .nav-link-dropdown-l2 {
  opacity: 1;
  visibility: visible;
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li a {
  font-size: 0.8rem;
  transition: all 0.2s ease-in-out;
}
.nav .nav-links li.nav-link .nav-link-dropdown ul li a svg {
  position: absolute;
  left: 6px;
  top: 10px;
}
.nav .nav-links li.nav-link .nav-link-dropdown-l2 {
  position: absolute;
  top: 40px;
  right: 113px;
  background: var(--card-bg);
  z-index: 100;
  padding: 10px 10px 10px 25px;
  border-radius: 8px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  transform: translate(0, -35px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link .nav-link-dropdown-l2 {
    display: none;
  }
}
.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li {
  transition: all 0.2s ease-in-out;
}
.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li a {
  font-size: 0.8rem;
  transition: all 0.2s ease-in-out;
  color: var(--h-color) !important;
}
.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li a:hover {
  color: var(--main-color) !important;
}

.big-nav {
  width: 280px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 15;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .big-nav {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .big-nav-header-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  border-bottom: 1px solid #e6e6e6;
  align-items: center;
}
.big-nav .big-nav-header-title .nav-logo-container a {
  text-decoration: none;
  color: #000;
}
.big-nav .big-nav-header-title .nav-logo-container a img {
  height: 45px;
}
@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a img {
    height: 45px;
  }
}
.big-nav .big-nav-header-title .nav-logo-container a .author {
  font-size: 0.55rem;
  color: var(--h-color);
}
@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a .author {
    font-size: 0.55rem;
  }
}
.big-nav .big-nav-header-title .nav-logo-container a .author .pretitle {
  font-weight: 600;
  color: var(--main-color);
}
.big-nav .big-nav-header-title .nav-logo-container a .author span {
  font-weight: 600;
  color: var(--h-color);
}
.big-nav .big-nav-header-title .close-big-nav svg {
  fill: #000;
  width: 30px;
  cursor: pointer;
}
.big-nav .big-nav-search .nav-search {
  width: 100%;
  padding: 10px 10px;
  display: flex;
}
.big-nav .big-nav-search .nav-search form {
  width: 100%;
}
.big-nav .big-nav-search .nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.big-nav .big-nav-search .nav-search .form-group .form-control {
  height: 43px;
  padding: 0 40px 0 20px;
  background-color: var(--card-bg) fff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.big-nav .big-nav-search .nav-search .form-group .form-control:focus {
  border-color: var(--main-color);
  box-shadow: none;
  outline: none;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  transform: rotateY(180deg);
  font-size: 0.7rem;
  height: 18px;
  width: 18px;
}
.big-nav .nav-links {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .big-nav .nav-links ul {
    overflow: scroll;
    height: calc(100vh - 200px);
  }
}
.big-nav .nav-links ul .ul-head {
  padding-right: 30px;
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 500;
}
.big-nav .nav-links ul li {
  text-decoration: none;
  color: #adafca;
  width: 100%;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid rgba(229, 229, 229, 0.5411764706);
}
.big-nav .nav-links ul li .li-link {
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.big-nav .nav-links ul li .li-link .link-info {
  white-space: nowrap;
  border-radius: 50px;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  padding: 0 20px 0 0;
}
.big-nav .nav-links ul li .li-link .link-info a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  padding: 17px 0 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon {
  width: 50px;
  display: flex;
  justify-content: end;
  cursor: pointer;
  padding: 17px 0 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon svg {
  height: 16px;
  width: 16px;
  fill: #000;
}
.big-nav .nav-links ul li .nav-link-popup {
  width: 280px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .big-nav .nav-links ul li .nav-link-popup {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .nav-links ul .li-active {
  background-color: var(--card-bg);
  color: #000;
}
.big-nav .nav-links ul .li-active a svg {
  fill: var(--main-color);
}
.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: var(--main-color);
}
.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: var(--main-color);
  stroke: var(--main-color);
}
.big-nav .nav-links ul .li-active a .link-info {
  visibility: visible;
  padding-right: 8px;
}
.big-nav .nav-links ul .li-active a .link-info span {
  color: var(--main-color) !important;
}
.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: var(--main-color);
}
.big-nav .nav-links ul .li-active:hover {
  background: var(--card-bg);
  color: var(--main-color);
}
.big-nav::-webkit-scrollbar {
  display: none;
}

.big-nav-hiddin {
  transform: translate(560px, 0);
  opacity: 0;
  z-index: -1 !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 10;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.active-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.blog-page {
  padding: 75px 0;
}
.blog-page .news {
  padding: 0px 0 0 0;
}
.blog-page .blog-more-cards .blog-more-card {
  background-color: var(--sec-bg);
  border-color: rgba(255, 255, 255, 0);
  padding: 10px 25px;
  margin-bottom: 15px;
}
.blog-page .blog-more-cards .blog-more-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: -18px;
  color: var(--p-color);
  margin-right: 4px;
}
.blog-page .blog-more-cards .blog-more-card .cat-container {
  margin-top: 35px;
}
.blog-page .blog-more-cards .blog-more-card .cat-container .cat-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  text-decoration: none;
  background: #f5f8fa;
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.blog-page .blog-more-cards .blog-more-card .cat-container .cat-line h6 {
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0;
  color: #FFF !important;
  background: rgba(18, 33, 64, 0.5411764706);
  padding: 10px 20px;
  border-radius: 12px;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-page .blog-more-cards .blog-more-card .cat-container .cat-line span {
  color: var(--main-color);
  font-weight: 700;
}
.blog-page .blog-more-cards .blog-more-card .cat-line-active h6 {
  color: var(--main-color) !important;
}
.blog-page .blog-more-cards .blog-more-card .blog-search .form-group .form-control {
  border-radius: 12px !important;
  background: #f5f8fa;
  margin: 30px 0 0 0;
  outline: none;
  box-shadow: none;
  font-size: 0.9rem;
  height: 45px;
  padding: 7px 15px 3px 5px;
  color: var(--p-color);
}
.blog-page .blog-more-cards .blog-more-card .blog-search .form-group .form-control::-moz-placeholder {
  font-size: 0.8rem;
  font-weight: 500;
  color: #adafca;
}
.blog-page .blog-more-cards .blog-more-card .blog-search .form-group .form-control::placeholder {
  font-size: 0.8rem;
  font-weight: 500;
  color: #adafca;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs {
  margin-top: 40px;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog {
  display: flex;
  text-decoration: none;
  color: #212529;
  background: #f5f8fa;
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 15px 20px;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog:last-child {
  border-bottom: 0;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog:hover .pop-blog-info h6 {
  color: var(--main-color) !important;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog .pop-blog-img {
  margin-left: 15px;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog .pop-blog-img figure {
  height: 60px;
  width: 60px;
  margin-bottom: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog .pop-blog-info h6 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1px;
  transition: all 0.3s ease-in-out;
  color: var(--p-color);
}
.blog-page .blog-more-cards .blog-more-card .pop-blogs .pop-blog .pop-blog-info span {
  direction: ltr;
  color: var(--main-color);
  font-size: 0.75rem;
  font-weight: 500;
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px 0 0 0;
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul li {
  padding: 0px 8px;
  margin: 3px 3px;
  position: relative;
  height: 31px;
  font-size: 0.7rem;
  display: inline-block;
  z-index: 1;
  background: 0 0;
  line-height: 36px;
  font-weight: 700;
  cursor: pointer;
  background: var(--light-dark28);
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul li:hover:before {
  background: var(--main-color);
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul li:hover a {
  color: #FFF;
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul li a {
  color: var(--p-color);
  transition: all 0.3s ease-in-out;
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul .blog-tag-active {
  background: var(--main-color) !important;
}
.blog-page .blog-more-cards .blog-more-card .blog-tags ul .blog-tag-active a {
  color: #FFF !important;
}
.blog-page .blog {
  padding: 0 0;
  background: var(--body-bg);
}
.blog-page .blog .row {
  overflow: unset;
}
.blog-page .blog .section-head {
  text-align: center;
}
.blog-page .blog .blog-card {
  position: relative;
  margin-bottom: 35px;
  height: 430px;
}
.blog-page .blog .blog-card:hover .blog-card-info .open-blog {
  color: var(--main-color);
}
.blog-page .blog .blog-card:hover .blog-card-info .open-blog:after {
  width: 100% !important;
}
.blog-page .blog .blog-card .blog-card-image {
  width: 100%;
  height: 200px;
}
.blog-page .blog .blog-card .blog-card-image figure {
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
}
.blog-page .blog .blog-card .blog-card-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  top: 175px;
  transform: translate(0, 0);
  width: 100%;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info {
  border-radius: 12px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: var(--navbar-color);
  text-align: right;
  width: 100%;
  padding: 35px 30px;
  margin: 0;
  width: 100%;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .pretitle {
  font-size: 0.8rem;
  color: #FFF;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .pretitle:before {
  background: var(--main-color);
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .blog-page .blog .blog-card .blog-card-content .blog-card-info .title {
    font-size: 1.1rem;
  }
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .title:hover {
  color: var(--main-color);
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .text {
  margin: 0;
  font-size: 0.9rem;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .open-blog {
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  margin-top: 12px;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .open-blog:after {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--main-color);
  content: "";
  right: 0;
  transition: all 0.5s;
}
.blog-page .blog .blog-card .blog-card-content .blog-card-info .open-blog:hover {
  color: var(--main-color);
}

.one-blog {
  background: var(--navbar-color);
}
.one-blog .one-blog-main-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 19/10;
  border-radius: 12px;
  margin-bottom: 50px;
  margin-top: -200px;
  position: relative;
  z-index: 5;
}
.one-blog .one-blog-content {
  padding: 75px 0;
}
.one-blog .one-blog-content * {
  color: var(--p-color);
}
.one-blog .blog-tags ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.one-blog .blog-tags ul li {
  color: var(--p-color);
  padding: 3px 15px;
  margin: 5px 5px;
  position: relative;
  height: 36px;
  font-size: 0.8rem;
  display: inline-block;
  z-index: 1;
  line-height: 30px;
  background: var(--body-bg);
  border-radius: 12px;
  font-weight: 500;
}

.album-page {
  padding: 75px 0;
}
.album-page .albums {
  padding: 0;
}
.album-page .albums .album {
  position: relative;
  margin-bottom: 15px;
  height: 300px;
}
.album-page .albums .album a {
  display: block;
  text-decoration: none;
  height: 100%;
}
.album-page .albums .album a .album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  box-shadow: inset 0 -120px 50px -40px rgba(0, 53, 109, 0.7019607843);
}
.album-page .albums .album a .album-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.album-page .albums .album a .image-badges {
  margin-bottom: 12px;
}
.album-page .albums .album a .image-badges .cat-badge {
  position: unset;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.8rem;
}
.album-page .albums .album a .image-badges .images-badge {
  position: unset;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: #005aff;
  color: #FFF;
  font-size: 0.8rem;
}
.album-page .albums .album a .image-badges .images-badge svg {
  fill: #FFF;
  height: 16px;
  width: 16px;
}
.album-page .albums .album a .album-content {
  position: absolute;
  bottom: 15px;
  text-align: center;
}
.album-page .albums .album a .album-content h2 {
  font-size: 1.3rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.album-page .gallery ul li {
  margin-bottom: 15px;
}
.album-page .gallery a {
  position: relative;
  height: 235px;
  width: 100%;
  display: block;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  border-radius: 8px;
  color: #FFF;
}
.album-page .gallery a:hover {
  transition: all 0.3s ease-in-out;
}
.album-page .gallery a:hover .gal-overlay {
  visibility: visible;
  opacity: 1;
}
.album-page .gallery a:hover .gal-overlay svg {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.album-page .gallery a figure {
  height: 260px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0;
  transform: scale(1.4);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.album-page .gallery a .img-id {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s ease-in-out;
  text-align: left;
  padding: 5px 10px;
}
.album-page .gallery a img {
  display: none;
}
.album-page .gallery a .gal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(21, 21, 31, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.album-page .gallery a .gal-overlay svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
  transform: scale(0);
}
.album-page .gallery .image-title {
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: var(--card-bg);
  padding: 15px 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.album-page .gallery .image-title h5 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--h-color);
}

.lg-backdrop,
.lg-outer,
.lg-outer .lg-inner {
  direction: ltr;
}

.lg-progress-bar .lg-progress {
  background: #005aff !important;
}

.lg-backdrop {
  background-color: rgba(21, 21, 31, 0.96);
}

.lg-outer .lg-thumb-item {
  cursor: pointer !important;
  float: left;
  overflow: hidden;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  margin: 0 !important;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  opacity: 1;
}

.lg-outer .lg-thumb {
  margin: auto;
}

.job-page {
  padding: 75px 0;
}
.job-page .job-content .job-card {
  padding: 20px 30px;
  background: #f5f8fa;
  margin-bottom: 12px;
  border-radius: 12px;
  position: relative;
}
.job-page .job-content .job-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.job-page .job-content .job-card .job-date {
  font-size: 0.8rem;
  color: #7e868e;
  font-weight: 500;
  margin-bottom: 0;
}
.job-page .job-content .job-card .job-date:before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #e5e5e5;
  display: inline-block;
  margin-left: 5px;
  border-radius: 50%;
  margin-top: 0;
}
.job-page .job-content .job-card p {
  font-size: 0.8rem;
  color: #7e868e;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.job-page .job-content .job-card .job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
}
.job-page .job-content .job-card .job-actions .details {
  text-decoration: none;
  color: #005aff;
  font-weight: 500;
  font-size: 0.85rem;
  border-bottom: 1px solid #005aff;
  cursor: pointer;
}
.job-page .job-content .job-card .job-actions .apply {
  background: #000;
  color: #FFF;
  padding: 7px 25px;
  cursor: pointer;
  border: unset;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
}
.job-page .job-content .job-card .job-status {
  position: absolute;
  top: 15px;
  left: 25px;
  padding: 2px 15px;
  border-radius: 50px;
}
.job-page .job-content .job-card .job-status span {
  font-size: 0.85rem;
  font-weight: 500;
}
.job-page .job-content .job-card .job-open {
  background: rgba(0, 208, 156, 0.1019607843);
}
.job-page .job-content .job-card .job-open span {
  color: #00d09c;
}
.job-page .job-content .job-card .job-close {
  background: rgba(238, 66, 102, 0.2117647059);
}
.job-page .job-content .job-card .job-close span {
  color: #ee4266;
}

.order-service {
  position: fixed;
  z-index: 5555;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 40%;
  background: #FFF;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding: 25px 40px 15px 40px;
}
@media (max-width: 767.98px) {
  .order-service {
    width: 95%;
  }
}
.order-service .order-service-content .order-servive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.order-service .order-service-content .order-servive-header h6 {
  font-size: 1.4rem;
}
.order-service .order-service-content .order-servive-header .back {
  font-size: 0.9rem;
  color: #7e868e;
  border-bottom: 1px solid #7e868e;
  cursor: pointer;
}
.order-service .order-service-content .order-servive-header svg {
  fill: #000;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.order-service .order-service-content .order-service-form {
  margin: 15px 5px 15px 5px;
}
.order-service .order-service-content .order-service-form label {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 10px 2px 0 2px;
}
.order-service .order-service-content .order-service-form .form-group {
  margin: 6px 0;
}
.order-service .order-service-content .order-service-form textarea {
  min-height: 200px;
}
.order-service .order-service-content .order-service-form button {
  margin-top: 15px;
  width: 100%;
  background: #51459e;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  outline: unset;
  box-shadow: unset;
  padding: 12px 0;
  border-radius: 0px;
  margin: 20px 10px 0 10px;
}

.open-popup {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 10;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.card {
  border: unset;
}

.one-job .editor-content {
  margin-top: -125px;
  position: relative;
  z-index: 5;
  background: #FFF;
  border-radius: 12px;
  padding: 75px 75px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  margin-bottom: 75px;
}

.job-popup {
  background: #f5f8fa;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out;
  padding: 25px 25px 15px 25px;
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  margin: -25px 0 50px 0;
  background: #f5f8fa;
}
@media (max-width: 767.98px) {
  .job-popup {
    width: 95%;
  }
}
.job-popup .job-popup-content .job-popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.job-popup .job-popup-content .job-popup-header h6 {
  font-size: 1.4rem;
}
.job-popup .job-popup-content .job-popup-header .back, .job-popup .job-popup-content .job-popup-header .applyn {
  font-size: 0.9rem;
  color: #7e868e;
  border-bottom: 1px solid rgba(228, 231, 236, 0.4392156863);
  cursor: pointer;
}
.job-popup .job-popup-content .job-popup-header svg {
  fill: #000;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.job-popup .job-popup-content .job-popup-form {
  margin: 15px 5px 15px 5px;
}
.job-popup .job-popup-content .job-popup-form label {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 12px 0 2px;
}
.job-popup .job-popup-content .job-popup-form .form-group {
  margin: 6px 0;
}
.job-popup .job-popup-content .job-popup-form .form-group .form-control {
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  background-color: #FFF;
  padding: 0px 20px 0 20px;
}
.job-popup .job-popup-content .job-popup-form .form-group .form-control::-moz-placeholder {
  color: #7e868e;
  font-weight: 400;
}
.job-popup .job-popup-content .job-popup-form .form-group .form-control::placeholder {
  color: #7e868e;
  font-weight: 400;
}
.job-popup .job-popup-content .job-popup-form textarea {
  min-height: 150px;
  padding-top: 15px !important;
}
.job-popup .job-popup-content .job-popup-form button {
  background: #005aff;
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 400;
  border: 0;
  outline: unset;
  box-shadow: unset;
  margin: 20px 10px 0 10px;
  padding: 15px 50px;
  border-radius: 12px;
}
.job-popup .job-popup-content .job-popup-form .file {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 600;
}
.job-popup .job-popup-content .job-popup-form .file__input, .job-popup .job-popup-content .job-popup-form .file__value {
  height: 55px;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 17px !important;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  background-color: #FFF;
  padding: 0px 20px 0 0;
  margin-bottom: 0;
  margin-top: 5px;
}
.job-popup .job-popup-content .job-popup-form .file__input--file {
  position: absolute;
  opacity: 0;
}
.job-popup .job-popup-content .job-popup-form .file__input--label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  height: 55px;
}
.job-popup .job-popup-content .job-popup-form .file__input--label:after {
  content: attr(data-text-btn);
  background-color: #10141b;
  color: #FFF;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border-radius: 14px;
}
.job-popup .job-popup-content .job-popup-form .file__value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}
.job-popup .job-popup-content .job-popup-form .file__value:hover:after {
  color: #000;
}
.job-popup .job-popup-content .job-popup-form .file__value:after {
  content: "X";
  cursor: pointer;
  margin-left: 25px;
}
.job-popup .job-popup-content .job-popup-form .file__value:after:hover {
  color: #000;
}
.job-popup .job-popup-content .job-popup-form .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
}

.open-popup {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 10;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 0) !important;
}

.success-job {
  padding: 150px 0 75px 0;
  font-size: 24px;
}
.success-job .main-container {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.success-job .check-container {
  width: 6.25rem;
  height: 7.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.success-job .check-container .check-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.success-job .check-container .check-background svg {
  width: 65%;
  transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: animateCheck 0.35s forwards 1.25s ease-out;
}
.success-job .check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(73, 218, 131), transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}
@keyframes animateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    transform: scale(1.15);
    box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}
@keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}
.success-job h3 {
  text-align: center;
}
.success-job p {
  text-align: center;
  color: #7e868e;
  font-size: 0.9rem;
  width: 50%;
  margin: auto;
}
@media (max-width: 767.98px) {
  .success-job p {
    width: 100%;
  }
}
.success-job .back-home {
  border: unset;
  background: #005aff;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  display: table;
  text-align: center;
  margin: 25px auto;
}

.terms .editor-content {
  margin-top: -125px;
  position: relative;
  z-index: 5;
  background: #FFF;
  border-radius: 12px;
  padding: 75px 75px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  margin-bottom: 75px;
}

.contact-page {
  padding: 75px 0;
}
.contact-page .contact-cards {
  margin-top: -150px;
  position: relative;
  z-index: 5;
}
.contact-page .contact-cards .contact-card {
  background: #FFF;
  border-radius: 12px;
  padding: 45px 50px;
  border: 1px solid #f5f8fa;
}
.contact-page .contact-cards .contact-card .contact-card-icon {
  border: 1px solid #f5f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #f5f8fa;
}
.contact-page .contact-cards .contact-card .contact-card-icon svg {
  height: 32px;
  width: 32px;
  fill: #000;
}
.contact-page .contact-cards .contact-card .contact-card-info h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
  margin: 0;
}
.contact-page .contact-cards .contact-card .contact-card-info span {
  color: #7e868e;
  font-size: 0.9rem;
  display: block;
}
.contact-page .contact-cards .contact-card .contact-card-info a {
  text-decoration: none;
  color: #005aff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 25px;
  display: block;
}
.contact-page .contact-map .map iframe {
  height: 550px;
  width: 100%;
  border-radius: 12px;
  margin-top: 75px;
}

.activities-page {
  padding: 75px 0;
}

.activity-card {
  padding: 15px 15px;
  background: #FFF;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #f5f8fa;
}
.activity-card figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 175px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 12px;
}
.activity-card .activity-info {
  padding: 5px 10px;
}
.activity-card .activity-info span {
  color: #7e868e;
  font-size: 0.85rem;
  font-weight: 500;
}
.activity-card .activity-info h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
}
.activity-card .activity-info p {
  color: #7e868e;
  font-size: 0.8rem;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.activity-card .activity-info a {
  text-decoration: none;
  padding: 10px 20px;
  width: 100%;
  border-radius: 12px;
  background: #005aff;
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.team-page {
  padding: 75px 0;
}

.team-cards .team-card {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 12px;
  height: 350px;
  width: 100%;
  position: relative;
  border-radius: 12px;
}
.team-cards .team-card .team-card-info {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 12px;
  background: #FFF;
  width: 90%;
  padding: 15px;
}
.team-cards .team-card .team-card-info h3 {
  margin: 0;
  font-size: 1.2rem;
}
.team-cards .team-card .team-card-info span {
  margin: 0;
  font-size: 0.9rem;
  color: #7e868e;
}

.apply-form .apply-form-content {
  margin-top: -125px;
  position: relative;
  z-index: 5;
  border-radius: 12px;
  margin: -125px auto 75px auto;
}
.apply-form .apply-form-content .apply-form-popup {
  background: #FFF;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out;
  padding: 25px 25px 15px 25px;
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  margin: -25px 0 50px 0;
  background: #FFF;
}
@media (max-width: 767.98px) {
  .apply-form .apply-form-content .apply-form-popup {
    width: 95%;
  }
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-header h6 {
  font-size: 1.4rem;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-header .back, .apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-header .applyn {
  font-size: 0.9rem;
  color: #7e868e;
  border-bottom: 1px solid rgba(228, 231, 236, 0.4392156863);
  cursor: pointer;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-header svg {
  fill: #000;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form {
  margin: 15px 5px 15px 5px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form label {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 12px 0 2px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .form-group {
  margin: 6px 0;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .form-group .form-control {
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  background-color: #f5f8fa;
  padding: 0px 20px 0 20px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .form-group .form-control::-moz-placeholder {
  color: #7e868e;
  font-weight: 400;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .form-group .form-control::placeholder {
  color: #7e868e;
  font-weight: 400;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form textarea {
  min-height: 150px;
  padding-top: 15px !important;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form button {
  background: #005aff;
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 400;
  border: 0;
  outline: unset;
  box-shadow: unset;
  padding: 15px 50px;
  border-radius: 12px;
  margin: 25px auto 0px auto;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 600;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__input, .apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__value {
  height: 55px;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 17px !important;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(228, 231, 236, 0.4392156863);
  background-color: #f5f8fa;
  padding: 0px 20px 0 0;
  margin-bottom: 0;
  margin-top: 5px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__input--file {
  position: absolute;
  opacity: 0;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__input--label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  height: 55px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__input--label:after {
  content: attr(data-text-btn);
  background-color: #10141b;
  color: #FFF;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  border-radius: 14px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__value:hover:after {
  color: #000;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__value:after {
  content: "X";
  cursor: pointer;
  margin-left: 25px;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__value:after:hover {
  color: #000;
}
.apply-form .apply-form-content .apply-form-popup .job-popup-content .job-popup-form .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Changa";
  background-color: #FFF;
  height: 100%;
  position: relative;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

.row {
  overflow: hidden;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.content {
  color: #000;
}

.row-inside-row {
  margin-right: -8px;
  margin-left: -8px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9 {
  padding-right: 8px;
  padding-left: 8px;
}

.list-unstyled {
  padding: 0;
}

.dark .light-theme {
  display: block;
}
.dark .dark-theme {
  display: none;
}

.dark-mode {
  overflow: hidden;
}

.light-theme {
  display: none;
}

header {
  position: relative;
  height: 500px;
  width: 100%;
  background: #161b28;
  background-image: url(./assets/images/funfact-bg.webp);
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  header {
    height: 325px;
  }
}
header .header-overlay {
  height: 100%;
  width: 100%;
}
header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
}
@media (max-width: 1199.98px) {
  header .navbar {
    padding: 25px 25px;
  }
}
header .navbar .nav-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
header .navbar .nav-logo p {
  color: #FFF;
  font-family: "en-bold";
  font-size: 1.3rem;
  margin-bottom: 0;
  margin-bottom: 0;
  margin-left: 6px;
  margin-top: 0px;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  header .navbar .nav-logo p {
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  header .navbar .nav-logo p {
    display: none;
  }
}
header .navbar .nav-logo img {
  width: 75px;
}
@media (max-width: 575.98px) {
  header .navbar .nav-logo img {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 991.98px) {
  header .navbar .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00d2ff; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: 5;
    overflow: auto;
    text-align: center;
  }
}
header .navbar .nav-links .nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  header .navbar .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}
header .navbar .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
}
header .navbar .nav-links .nav-close svg g [fill] {
  fill: #FFF;
}
header .navbar .nav-links ul {
  display: flex;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  header .navbar .nav-links ul {
    display: block;
    text-align: left;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
header .navbar .nav-links ul li {
  padding: 0 10px;
  display: flex;
  align-items: center;
  position: relative;
}
header .navbar .nav-links ul li:hover a, header .navbar .nav-links ul li:hover span, header .navbar .nav-links ul li:hover svg {
  color: #51459e;
  fill: #51459e;
}
@media (max-width: 1199.98px) {
  header .navbar .nav-links ul li {
    padding: 15px 8px;
  }
}
header .navbar .nav-links ul li a, header .navbar .nav-links ul li span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  header .navbar .nav-links ul li a:before, header .navbar .nav-links ul li span:before {
    content: "";
    height: 12px;
    width: 12px;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 10px;
    margin-top: -2px;
  }
}
header .navbar .nav-links ul li svg {
  height: 10px;
  width: 10px;
  margin: 0px 8px 0 8px;
  fill: #FFF;
  transform: rotate(90deg);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .navbar .nav-links ul li .li-links {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
}
header .navbar .nav-links ul li .li-links ul {
  display: block;
  background: var(--body-bg);
  width: 150px;
  display: block;
  text-align: right;
  padding: 10px 15px;
  border-radius: 12px;
  margin-top: 28px;
}
@media (max-width: 1199.98px) {
  header .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}
header .navbar .nav-links ul li .li-links ul li {
  display: block;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
header .navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}
header .navbar .nav-links ul li .li-links ul li:hover a {
  color: #51459e;
}
header .navbar .nav-links ul li .li-links ul li a {
  color: var(--p-color);
}
header .navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .navbar .nav-links ul .nav-link-active a {
  color: #51459e;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  header .navbar .nav-links ul .nav-link-active a {
    color: #000;
  }
}
header .navbar .nav-links ul .nav-link-active a:before {
  background: #FFF;
  border-color: #FFF;
}
header .navbar .nav-actions {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 17px 0 32px;
}
header .navbar .nav-actions .icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
header .navbar .nav-actions .icon svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}
@media (max-width: 575.98px) {
  header .navbar .nav-actions .icon svg {
    margin: 0 8px;
  }
}
header .navbar .nav-actions .icon span {
  color: var(--p-color);
}
header .navbar .nav-actions .icon.dark-mode svg {
  height: 25px !important;
  width: 25px !important;
}
header .navbar .nav-actions .icon.dark-mode svg g [fill] {
  fill: #FFF;
}
header .navbar .nav-actions .switch-langs h6.page-lang {
  color: #FFF;
  font-weight: 900;
  font-family: "ar-reg";
  margin-bottom: 0;
  margin-top: 6px;
}
header .navbar .nav-actions .nav-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  header .navbar .nav-actions .nav-toggler {
    display: block;
  }
}
header .header-content {
  text-align: center;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 85%;
}
@media (max-width: 991.98px) {
  header .header-content {
    width: 85%;
  }
}
header .header-content figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 85px;
  width: 85px;
  text-align: center;
  margin: 0 auto 25px auto;
}
@media (max-width: 991.98px) {
  header .header-content figure {
    margin: 0 auto 15px auto;
    height: 50px;
    width: 50px;
  }
}
header .header-content h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
}
@media (max-width: 991.98px) {
  header .header-content h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 767.98px) {
  header .header-content h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 575.98px) {
  header .header-content h1 {
    font-size: 2.4rem;
  }
}

footer {
  background: #10141b;
  padding: 75px 0 0 0;
  direction: rtl;
  text-align: right;
}
@media (max-width: 991.98px) {
  footer .col-r {
    text-align: left !important;
  }
}
footer .footer-col {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  footer .footer-col {
    padding-left: 50px;
  }
}
footer .footer-col .Footer-head {
  margin-bottom: 35px;
  text-decoration: none;
  color: #FFF;
  font-size: 1.3rem;
  display: block;
}
footer .footer-col .Footer-head a {
  text-decoration: none;
  color: #FFF;
  font-size: 1rem;
  display: block;
}
footer .footer-col .Footer-head a.footer-logo {
  font-family: "en-bold";
  font-size: 1.4rem;
}
footer .footer-col .Footer-head a.footer-logo img {
  height: 75px;
  width: 75px;
}
footer .footer-col p.footer-address {
  color: #FFF;
  font-size: 13px;
  margin-bottom: 15px;
}
footer .footer-col ul {
  margin: 0;
  padding: 0;
}
footer .footer-col ul li {
  color: #FFF;
  font-size: 14px;
  margin: 0 0 15px;
  transition: all 0.3s ease-in-out;
}
footer .footer-col ul li:hover {
  transform: translate(7px, 0);
}
footer .footer-col ul li span {
  color: #FFF;
}
footer .footer-col ul li a {
  color: #d5d5d5;
  text-decoration: none;
}
footer .footer-col .social-icons {
  display: flex;
  align-items: center;
  margin: 0;
  margin-right: -15px;
}
footer .footer-col .social-icons li {
  margin: 0 10px;
}
footer .footer-col .social-icons li a svg {
  fill: #FFF;
  height: 22px;
  width: 22px;
}
footer .sub-footer {
  padding: 35px 0;
  background: #151921;
  color: #FFF;
  margin-top: 50px;
}
footer .sub-footer p.copy {
  color: #7e868e;
  font-size: 12px;
  margin: 0;
  text-align: left;
}
footer .sub-footer p.copy a {
  color: #2ae99e;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  footer .sub-footer p.copy {
    text-align: center;
    margin-bottom: 15px;
  }
}
footer .sub-footer .links {
  font-size: 13px;
  color: #FFF;
  margin: 0 15px;
  text-decoration: none;
}

[lang=ar] footer {
  direction: rtl;
}
@media (max-width: 991.98px) {
  [lang=ar] footer .col-r {
    text-align: right !important;
  }
}
[lang=ar] footer .footer-col {
  text-align: right;
}
[lang=ar] footer .footer-col li {
  transition: all 0.3s ease-in-out;
}
[lang=ar] footer .footer-col li:hover {
  transform: translate(-7px, 0);
}
[lang=ar] footer .sub-footer p.copy {
  text-align: center;
  direction: ltr;
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer p.copy {
    text-align: right !important;
  }
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer .text-md-right {
    text-align: left !important;
  }
}

.home-header {
  height: calc(100vh - 156px);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .home-header {
    height: 75vh;
  }
}
.home-header .header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: transparent;
  width: 100%;
}
.home-header .swiper-container {
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content {
  height: 100%;
  width: 100%;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0), rgba(0, 90, 255, 0.62));
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
  color: #FFF;
  font-size: 6rem;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 3.3rem;
    margin: 30px 15px 10px 15px;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  color: #FFF;
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    font-size: 1rem;
    margin: 0 25px;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content a {
  text-decoration: none;
  border: 1px solid #FFF;
  font-size: 1rem;
  padding: 10px 30px 10px 30px;
  color: #FFF;
  font-weight: 500 !important;
  margin-top: 12px;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content a {
    font-size: 0.8rem;
    margin: 12px 15px 0 15px;
  }
}

.layout-header {
  height: 45vh;
}
.layout-header .swiper-container .swiper-wrapper .swiper-slide {
  background-position: 50% 35%;
}
.layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content {
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.58), rgba(0, 90, 255, 0.85));
}
.layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  .layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 2.5rem;
  }
}
.layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  .layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    font-size: 0.9rem;
  }
}
.layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content a {
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .layout-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content a {
    font-size: 0.8rem;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet-active {
  background-color: #ffd13f;
}

.animate-rotate {
  animation-name: spin;
  animation-duration: 20000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.school-slider-swiper {
  width: 100%;
  height: 100%;
}
.school-slider-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
}
.school-slider-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.4);
}
.school-slider-swiper .swiper-slide {
  width: 30% !important;
}
.school-slider-swiper .swiper-slide:nth-child(2n) {
  width: 30% !important;
}
.school-slider-swiper .swiper-slide:nth-child(3n) {
  width: 30% !important;
}

.school-slider {
  padding: 75px 0;
}
.school-slider .section-header {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
.school-slider .section-header p {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 5px;
}
.school-slider .section-header p span {
  color: #6a36ff;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(106, 54, 255, 0.0784313725);
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}
.school-slider .section-header h2 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .school-slider .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .school-slider .section-header h2 {
    font-size: 1.7rem;
  }
}
.school-slider .section-header h2 span {
  color: #6a36ff;
  font-weight: 500;
}
.school-slider .section-header .header-text {
  width: 50%;
  margin: 0 auto 25px auto;
  display: block;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .school-slider .section-header .header-text {
    font-size: 0.9rem;
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .school-slider .section-header .header-text {
    width: 90%;
  }
}
.school-slider .section-header-side {
  text-align: right;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .school-slider .section-header-side {
    display: block;
  }
}
.school-slider .section-header-side p {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 5px;
}
.school-slider .section-header-side p span {
  color: #6a36ff;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(106, 54, 255, 0.0784313725);
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}
.school-slider .section-header-side h2 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .school-slider .section-header-side h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .school-slider .section-header-side h2 {
    font-size: 1.7rem;
  }
}
.school-slider .section-header-side h2 span {
  color: #6a36ff;
  font-weight: 500;
}
.school-slider .section-header-side .header-text {
  width: 547px;
  margin: 0;
  display: block;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .school-slider .section-header-side .header-text {
    font-size: 0.9rem;
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .school-slider .section-header-side .header-text {
    width: 90%;
  }
}
.school-slider .about-more-info {
  padding-right: 200px;
  padding-left: 50px;
}
.school-slider .about-more-info .pretitle {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 0px;
}
.school-slider .about-more-info .pretitle span {
  color: #ffd13f;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 3px 5px;
  display: inline-block;
  border-radius: 0;
}
.school-slider .about-more-info h2 {
  font-size: 2.7rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .school-slider .about-more-info h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .school-slider .about-more-info h2 {
    font-size: 2rem;
  }
}
.school-slider .about-more-info h2 span {
  color: #005aff;
  font-weight: 500;
}
.school-slider .about-more-info .p-text {
  color: #7e868e;
  font-size: 1rem;
  margin-bottom: 0;
}
.school-slider .about-more-info .btn-fill {
  border: 2px solid #005aff;
  background: #005aff;
  text-decoration: none;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 20px 0 0 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.school-advantages {
  background: #f5f8fa;
  padding: 75px 0;
}
.school-advantages .advan-card {
  margin: 8px 0;
  padding: 45px 45px;
  background: white;
  border-radius: 12px;
}
.school-advantages .advan-card .advan-card-icon {
  height: 50px;
  width: 50px;
  background: #0640a9;
  transform: rotate(45deg);
  margin-bottom: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.school-advantages .advan-card .advan-card-icon svg {
  transform: rotate(-45deg);
  fill: #FFF;
  height: 26px;
  width: 26px;
}
.school-advantages .advan-card h3 {
  font-size: 1.3rem;
  color: #333;
}
.school-advantages .advan-card p {
  font-size: 0.9rem;
  color: #7e868e;
}

.school-section-header-center {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
.school-section-header-center .pretitle {
  color: #ffd13f;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}
.school-section-header-center h2 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .school-section-header-center h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 575.98px) {
  .school-section-header-center h2 {
    font-size: 1.7rem;
  }
}
.school-section-header-center h2 span {
  color: #005aff;
  font-weight: 500;
}
.school-section-header-center p {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 5px;
}
.school-section-header-center .header-text {
  width: 50%;
  margin: 0 auto 25px auto;
  display: block;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .school-section-header-center .header-text {
    font-size: 0.9rem;
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .school-section-header-center .header-text {
    width: 90%;
  }
}

.vision-message {
  padding-top: 75px;
}
.vision-message .vision-message-card {
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 12px;
}
.vision-message .vision-message-card .overlay-parent {
  height: 361px;
  width: 61px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  text-align: center;
}
.vision-message .vision-message-card .overlay {
  height: 52px;
  transform: rotate(90deg);
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  color: #e1e1e1;
}
.vision-message .vision-message-card .vision-message-card-content {
  margin-right: -72px;
  background: #f5f8fa;
  padding: 60px 80px 50px 50px;
}

.manger-talk {
  padding: 75px 0;
  background-image: url(assets/images/07.jpg);
  background-size: cover;
  background-position: center center;
}
.manger-talk .manger-talk-info figure {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  margin-bottom: 15px 0;
  background-size: cover;
  background-position: center center;
}
.manger-talk .manger-talk-info h3 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #FFF;
  margin: 0;
}
.manger-talk .manger-talk-info p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #005aff;
  margin: 0;
}
.manger-talk .manger-talk-content span {
  color: #FFF;
  font-family: "Oswald";
  display: block;
  height: 53px;
  line-height: 0px;
}
.manger-talk .manger-talk-content span p {
  font-size: 5rem;
}
.manger-talk .manger-talk-content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFF;
  margin: 0;
}

.news {
  padding: 75px 0;
}
.news .blog-container figure {
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 150px;
  width: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.news .blog-container .blog-card-main {
  margin-bottom: 12px;
}
.news .blog-container .blog-content {
  background: #f5f8fa;
  padding: 20px 25px;
  border-top: unset;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.news .blog-container .blog-content .pretitle {
  color: #005aff;
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 2px;
}
.news .blog-container .blog-content h3 {
  font-size: 1rem;
}
.news .blog-container .blog-content a {
  border: unset;
  color: #FFF;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 6px -4px 0 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  background: #122140;
  padding: 8px 15px;
}
.news .blog-container .blog-content a svg {
  height: 18px;
  fill: #FFF;
  margin-right: 1px;
  margin-left: 0;
  margin-left: -6px;
}

.contact {
  padding: 0 0 0 0;
  background: #f5f8fa;
  position: relative;
  overflow: hidden;
}
.contact .contact-container {
  height: 100%;
  width: 100%;
  display: inline-block;
  padding: 75px 0 75px 0;
}
@media (max-width: 991.98px) {
  .contact .contact-info {
    padding: 0 0 25px 0;
    text-align: center;
  }
}
.contact .contact-info .pretitle {
  color: #ffd13f;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}
.contact .contact-info h3 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
.contact .contact-info h3 span {
  color: #005aff;
  font-weight: 500;
}
.contact .contact-info p {
  margin: 0 0 15px 50px;
  display: block;
  font-size: 0.9rem;
  color: #7e868e;
}
.contact .contact-info .contacts-line .contact-line {
  display: flex;
  align-items: center;
}
.contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #005aff;
  margin-left: 10px;
  margin-bottom: 0;
}
.contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}
.contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
  text-align: right;
}
.contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}
.contact .contact-form-map iframe {
  height: 450px;
  width: 100%;
  outline: none;
  box-shadow: unset;
  border: unset;
}

.fq {
  padding: 75px 0;
}
.fq .accordion .card {
  border-radius: 6px !important;
  border: 1px solid #e5e5e5 !important;
  margin-bottom: 12px;
}
.fq .accordion .card .card-header {
  background: #f5f8fa;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  border-bottom: none;
  cursor: pointer;
}
.fq .accordion .card-header:hover {
  background: #ecf0f0;
}
.fq .accordion .card-header h2 span {
  float: left;
  margin-top: 10px;
}
.fq .accordion .card-header .btn {
  color: #000;
  font-size: 1.04rem;
  width: 100%;
  text-align: right;
  position: relative;
  top: -2px;
  font-weight: 500;
}
.fq .accordion .card-header i {
  float: left;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  top: 5px;
}
.fq .accordion .card-header .btn:hover {
  color: #005aff;
}
.fq .accordion .card-body {
  color: #324353;
  text-align: right;
  border-top: 1px solid #eceded;
  font-family: "cairo", serif;
  line-height: 2em;
}
.fq .page-title {
  text-align: center;
  font-size: 2.3rem;
  color: #005aff;
  margin: 2rem 0;
  font-family: "cairo", serif;
  position: relative;
}
.fq .page-title::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background: #005aff;
  left: 0;
  right: 0;
  bottom: -15px;
}

.brands {
  padding: 10px 0;
  background: #f5f8fa;
}
.brands .swiper {
  width: 100%;
  margin-right: auto;
  margin-left: 0;
}
.brands .companies-slider {
  height: 167px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.brands .companies-slider .brand-card {
  text-align: center;
  background: #f5f8fa;
  padding: 0 25px;
}
.brands .companies-slider .brand-card:hover img {
  filter: grayscale(0);
}
.brands .companies-slider .brand-card img {
  max-width: 100%;
  height: 125px;
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}/*# sourceMappingURL=main.css.map */