@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600;700;800;900&display=swap');
:root {

  /* Fonts*/
  --primary-font    : 'Arial', sans-serif;

  /* Colors */
  --primary     : #CCBE5D;
  --gold        : #FFB830;
  --dark        : #0b0c1b;
  --semi-dark   : #1a1b2e;
  --semi-dark-2 : #212235;
  --text-gray   : #9193a8;
  --red         : #ec625f;
  --border      : #01549F;
  --light       : #f4f8fb;
  /* 84B3FF */

}
html {
  font-family: var(--primary-font);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  direction: rtl;
}
body {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  cursor: default;
}

/* :: NAVBAR :: */
.theme-nav {
  position: relative;
  padding: 20px 0;
}

/* nav-content */
.theme-nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* links */
.theme-nav .links .link-item:not(:last-child) {
  margin-left: 26px;
}
.theme-nav .links .link-item a {
  position: relative;
  color: var(--border);
  font-size: 20px;
  text-decoration: none;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
.theme-nav .links .link-item a::before {
  position: absolute;
  content: '';
  bottom: -8px;
  height: 2px;
  right: 0;
  width: 0;
  background-color: #01549F;
  transition: width .2s ease-in-out;
}
.theme-nav .links .link-item a:hover {
  color: #01549F;
}
.vission{
  display: block;
}
.theme-nav .links .link-item a:hover::before {
  width: 100%;
}
@media (max-width: 1556px) {
  .vission{
    display: inline;
  }

}
@media (max-width: 991.98px) {
  .theme-nav {
    border-bottom: 1px solid var(--border);
  }
  .theme-nav .links {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 101px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 6;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
    transition: all .2s ease-in-out;
  }
  .theme-nav.menu-open .links {
    visibility: visible;
    opacity: 1;
  }
  .theme-nav .links .link-item:not(:last-child) {
    margin-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }
  .theme-nav .links .link-item {
    width: 100%;
  }
  .theme-nav .links .link-item a {
    display: flex;
    padding: 10px 20px;
    min-width: 100% !important;
    justify-content: center;
  }
  .theme-nav .links .link-item a:hover {
    background-color: var(--text-gray);
    color: #fff;
  }
  .theme-nav .links .link-item a::before {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .theme-nav .logo-image {
    width: 120px;
  }
}
.theme-nav .nav-toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  margin-right: 10px;
}
.theme-nav .nav-toggle-btn > i {
  position: absolute;
}
.theme-nav.menu-open .nav-toggle-btn .fa-bars {
  visibility: hidden;
  opacity: 0;
}
.theme-nav .nav-toggle-btn .fa-bars {
  visibility: visible;
  opacity: 1;
}
.theme-nav .nav-toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
}
.theme-nav .nav-toggle-btn .fa-xmark {
  visibility: hidden;
  opacity: 0;
}
.theme-nav.menu-open .nav-toggle-btn .fa-xmark {
  visibility: visible;
  opacity: 1;
}

/* Custom Buttons */
.th-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #01549F;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 500;
  padding: 10px 26px;
  min-height: 52px;
  text-decoration: none !important;
  border-radius: 4px;
  transition: background-color .2s ease-in-out;
}
.th-btn-primary:hover {
  background-color: var(--primary);
}
.rounded-btn {
  border-radius: 50px !important;
}
.has-arrow > i {
  margin-right: 10px;
  font-size: 16px;
  transition: all .2s ease-in-out;
}
.has-arrow:hover > i {
  margin-right: 15px;
}