/*** RTL websites ***/
@import url("../fonts/Frutiger/Frutiger.css");
.nav.nav-tabs {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 0; }
  .nav.nav-tabs .nav-item {
    margin-bottom: 32px;
    text-align: center; }
  .nav.nav-tabs .nav-link {
    border: none;
    padding: 0 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .nav.nav-tabs .nav-link .tab-icon {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 78px;
      height: 78px;
      background-color: #f8f8f8;
      border-radius: 100%;
      margin-bottom: 10px; }
      .nav.nav-tabs .nav-link .tab-icon svg {
        stroke: #989898; }
    .nav.nav-tabs .nav-link .tab-title {
      color: #989898;
      font-size: 1.2rem;
      font-weight: bold; }
    .nav.nav-tabs .nav-link.active .tab-icon {
      background-color: #00726f; }
      .nav.nav-tabs .nav-link.active .tab-icon svg {
        stroke: #fff; }
    .nav.nav-tabs .nav-link.active .tab-title {
      color: #00726f; }
  .nav.nav-tabs .nav-item.show .nav-link .nav-icon svg,
  .nav.nav-tabs .nav-link.active .nav-icon svg {
    stroke: #00726f; }
  .nav.nav-tabs.default-style {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .nav.nav-tabs.default-style .nav-link {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100px;
      height: 50px;
      border-radius: 4px;
      background-color: #f8f8f8;
      color: #989898;
      margin-left: 1rem;
      font-size: 2.4rem; }
      .nav.nav-tabs.default-style .nav-link.active {
        background-color: #00726f;
        color: #fff; }

.tab-content > .tab-pane {
  height: 345px; }
  @media all and (max-width: 768px) {
    .tab-content > .tab-pane {
      height: 385px; } }
  @media all and (max-width: 576px) {
    .tab-content > .tab-pane {
      height: 365px; } }

/* all cards 
===========================*/
.card-item {
  position: relative;
  display: block;
  padding: 3.2rem;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out; }
  .card-item:hover {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3); }
    .card-item:hover .card-item__title {
      color: #80bc00; }
  .card-item__icon {
    position: relative;
    margin-bottom: 8px; }
  .card-item__title {
    position: relative;
    color: #fff;
    font-size: 1.8rem;
    line-height: 3rem;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .card-item.circle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 168px;
    height: 168px;
    padding: 0px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .card-item.circle:before {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #00726f;
      border-radius: 100%;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); }
    .card-item.circle:hover {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
      .card-item.circle:hover:before {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); }
      .card-item.circle:hover .card-item__icon .light {
        opacity: 1;
        visibility: visible;
        width: auto;
        height: auto; }
      .card-item.circle:hover .card-item__icon img:not(.light) {
        opacity: 0;
        visibility: hidden;
        width: 0;
        height: 0; }
      .card-item.circle:hover .card-item__title {
        color: #fff; }
    .card-item.circle .card-item__icon img {
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
    .card-item.circle .card-item__icon .light {
      opacity: 0;
      visibility: hidden;
      width: 0;
      height: 0; }
    .card-item.circle .card-item__title {
      color: #3c3c3b;
      margin-bottom: 0;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
    .card-item.circle.logo-item:before {
      display: none; }
    .card-item.circle.logo-item .card-item__icon img {
      max-width: 70px; }
    .card-item.circle.logo-item:hover {
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px);
      box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05); }
      .card-item.circle.logo-item:hover .card-item__icon img {
        display: block;
        opacity: 1;
        visibility: visible;
        width: inherit;
        height: inherit; }
      .card-item.circle.logo-item:hover .card-item__title {
        color: #00726f; }
  @media all and (max-width: 991.98px) {
    .card-item {
      margin-bottom: 2rem !important; } }

/*box item for services and initiatives*/
.box-item {
  position: relative;
  padding: 1.6rem;
  border-radius: 2px;
  min-height: 313px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  margin-bottom: 2rem;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out; }
  .box-item:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px); }
  .box-item__icon {
    margin-bottom: 2.4rem; }
    .box-item__icon img {
      width: auto !important; }
  .box-item__content .box-labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .box-item__content .box-labels .label-item {
      padding: 4px 8px;
      background-color: #80bc00;
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
      border-radius: 2px;
      margin-left: 1rem; }
      .box-item__content .box-labels .label-item:last-child {
        margin-left: 0; }
      .box-item__content .box-labels .label-item__blue {
        background-color: #182842; }
  .box-item__content .box-title {
    font-size: 1.8rem;
    line-height: 27px;
    font-weight: bold;
    color: #3c3c3b;
    margin-bottom: 1rem; }
  .box-item__content > p {
    font-size: 1.6rem;
    line-height: 27px;
    font-weight: normal;
    color: #3c3c3b;
    margin-bottom: 2.4rem; }
  .box-item.see-all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f9f9f9;
    box-shadow: none; }
    .box-item.see-all .box-item__icon {
      width: 46px;
      height: 42px;
      margin-bottom: 1.6rem; }
    .box-item.see-all .box-item__content {
      text-align: center; }
      .box-item.see-all .box-item__content .box-title {
        width: 95%;
        margin: 0 auto 1rem; }
      .box-item.see-all .box-item__content .arrow {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 100%;
        background-color: #f1f1f1; }
  .box-item.style-2 {
    padding: 18px;
    background-color: #182842;
    color: #fff;
    min-height: auto;
    box-shadow: none;
    margin: 0 auto 1.6rem !important; }
    .box-item.style-2:hover {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    .box-item.style-2 .box-item__icon {
      margin-bottom: 1.7rem; }
    .box-item.style-2 .box-item__content .box-title {
      color: #fff;
      font-size: 1.6rem;
      font-weight: 300; }
    .box-item.style-2 .arrow-btn {
      color: #fff; }
      .box-item.style-2 .arrow-btn:hover {
        color: #80bc00; }
        .box-item.style-2 .arrow-btn:hover .arrow svg {
          fill: #80bc00; }
      .box-item.style-2 .arrow-btn .arrow svg {
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        fill: #fff; }
  .box-item.initiative-item {
    min-height: auto; }
    .box-item.initiative-item .box-item__content .box-title {
      color: #00726f; }
  .box-item.openData-box {
    text-align: center;
    min-height: auto;
    padding: 3rem 1.6rem 1.6rem; }
    .box-item.openData-box.icon-card .box-item__icon img {
      width: 40px !important;
      height: 40px; }
  @media all and (max-width: 991.98px) {
    .box-item {
      margin-bottom: 2rem; } }

/* platform-item
=====================*/
.platform-item {
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .platform-item:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px); }
    .platform-item:hover .platform-item__content {
      box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.09); }
  .platform-item.bg-purble .platform-item__head {
    background-color: #182842; }
  .platform-item.bg-green .platform-item__head {
    background-color: #80bc00; }
  .platform-item__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px;
    height: 130px;
    background-color: #00726f;
    border-radius: 2px; }
  .platform-item__content {
    background-color: #ffffff;
    padding: 36px 32px 24px;
    width: calc(100% - 20px);
    margin: -1.5rem auto 0;
    text-align: center;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1); }
    .platform-item__content .title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 14px;
      line-height: 32px; }
  @media all and (max-width: 991.98px) {
    .platform-item {
      max-width: 400px;
      margin: 0 auto 30px; } }

/*rating-list*/
.rating {
  padding: 0;
  margin-bottom: 1.4rem;
  list-style: none; }
  .rating li {
    color: #989898;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem; }
    .rating li.active {
      color: #F5D229; }

.dropdown-menu {
  top: 105px;
  border: none;
  border-radius: 2px;
  width: 100%;
  min-width: 280px;
  min-height: 100px;
  right: 1.2rem;
  left: auto;
  float: none;
  text-align: right;
  padding: 20px;
  margin: 0;
  display: block !important;
  -webkit-transform: translateY(4.5rem);
      -ms-transform: translateY(4.5rem);
          transform: translateY(4.5rem);
  opacity: 0;
  visibility: hidden;
  will-change: transform,opacity;
  background-color: #f5f6f8;
  box-shadow: 0px 5px 8px -7px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .dropdown-menu .dropdown-title {
    position: relative;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 2.7rem;
    color: #00726f;
    padding-right: 16px;
    margin-bottom: 2rem; }
    .dropdown-menu .dropdown-title:before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 2px;
      height: 100%;
      background-color: #00726f; }
  .dropdown-menu .dropdown-content ul.dropdown-menu-links {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .dropdown-menu .dropdown-content ul.dropdown-menu-links li {
      width: 100%;
      margin-bottom: .5rem;
      padding: 1.5rem;
      background-color: transparent;
      border-radius: 5px;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .dropdown-menu .dropdown-content ul.dropdown-menu-links li:hover {
        background-color: #fff; }
    .dropdown-menu .dropdown-content ul.dropdown-menu-links .menu-link {
      display: block;
      font-size: 1.6rem;
      color: #3c3c3b;
      line-height: 2.7rem;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .dropdown-menu .dropdown-content ul.dropdown-menu-links .menu-link:hover {
        color: #00726f; }
  .dropdown-menu.settings-menu {
    top: 64px;
    min-width: 52.5rem;
    min-height: auto;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    display: none !important;
    left: 0;
    right: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none; }
    .dropdown-menu.settings-menu:before {
      display: none; }
    .dropdown-menu.settings-menu.show {
      display: block !important; }
  .dropdown-menu .settings-menu-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .dropdown-menu .settings-menu-content .voice-orders .voice-btn {
      border: 0;
      box-shadow: none;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 1rem;
      background-color: #fff; }
      .dropdown-menu .settings-menu-content .voice-orders .voice-btn h3 {
        font-size: 1.4rem;
        margin-bottom: 0; }
      .dropdown-menu .settings-menu-content .voice-orders .voice-btn .voice-btn-icon {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 1rem;
        background-color: #f8f8f8;
        margin-right: .7rem; }
    .dropdown-menu .settings-menu-content .font-options-cont {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      background: #fff;
      border-radius: 2px;
      padding: 1rem;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .dropdown-menu .settings-menu-content .font-options-cont h3 {
        margin-bottom: 0;
        font-size: 1.4rem; }
      .dropdown-menu .settings-menu-content .font-options-cont .font-options {
        padding: 0;
        margin: 0;
        list-style: none;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        .dropdown-menu .settings-menu-content .font-options-cont .font-options a {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          width: 3.5rem;
          height: 3.5rem;
          background-color: #f8f8f8;
          cursor: pointer;
          margin-right: .7rem; }
          .dropdown-menu .settings-menu-content .font-options-cont .font-options a .font-lg {
            font-size: 2rem; }
          .dropdown-menu .settings-menu-content .font-options-cont .font-options a .font-normal {
            font-size: 1.6rem; }
          .dropdown-menu .settings-menu-content .font-options-cont .font-options a .font-sm {
            font-size: 1.4rem; }
    .dropdown-menu .settings-menu-content .contrast-hold {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #fff;
      padding: 1rem;
      border-radius: 2px; }
      .dropdown-menu .settings-menu-content .contrast-hold h3 {
        margin-bottom: 0;
        margin-left: 1rem;
        font-size: 1.4rem; }
  @media all and (max-width: 991.98px) {
    .dropdown-menu.settings-menu {
      min-width: 26rem;
      top: 53px; }
      .dropdown-menu.settings-menu .settings-menu-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch; }
        .dropdown-menu.settings-menu .settings-menu-content > div {
          margin-bottom: 1rem; }
          .dropdown-menu.settings-menu .settings-menu-content > div:last-of-type {
            margin-bottom: 0; }
        .dropdown-menu.settings-menu .settings-menu-content .voice-orders .voice-btn {
          width: 100%; }
        .dropdown-menu.settings-menu .settings-menu-content .contrast-hold {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center; } }

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.form-group {
  position: relative; }
  .form-group.has-icon {
    position: relative; }
    .form-group.has-icon .icon {
      position: absolute;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      top: 50%;
      right: 16px;
      width: 24px;
      height: 24px;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%); }
    .form-group.has-icon .form-control {
      padding-right: 5rem; }
  .form-group.has-select i {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 1.8rem;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%); }
  .form-group .select-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: none;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%); }

.form-control {
  height: 56px;
  border-radius: 2px;
  font-size: 1.6rem;
  border: solid 1px #f2f2f2;
  box-shadow: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .form-control:focus {
    box-shadow: none;
    border-color: #00726f; }
  .form-control::-webkit-input-placeholder {
    color: #989898; }
  .form-control::-moz-placeholder {
    color: #989898; }
  .form-control::-ms-input-placeholder {
    color: #989898; }
  .form-control[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    -moz-appearance: none; }

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none; }

/* radio-check-item
======================*/
.radio-check-item {
  position: relative;
  margin-bottom: 1rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .radio-check-item:hover {
    background-color: #f8f8f8; }
  .radio-check-item input[type=checkbox],
  .radio-check-item input[type=radio] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer; }
    .radio-check-item input[type=checkbox]:checked + label,
    .radio-check-item input[type=radio]:checked + label {
      background-color: #00726f; }
      .radio-check-item input[type=checkbox]:checked + label .title,
      .radio-check-item input[type=radio]:checked + label .title {
        color: #fff; }
      .radio-check-item input[type=checkbox]:checked + label .icon-svg svg .dark,
      .radio-check-item input[type=radio]:checked + label .icon-svg svg .dark {
        stroke: #fff; }
  .radio-check-item label {
    display: block;
    border: 1px solid #e6e6e6;
    padding: 1.6rem;
    text-align: center;
    border-radius: 4px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .radio-check-item .icon-svg {
    display: block;
    margin-bottom: 1.5rem; }
    .radio-check-item .icon-svg svg {
      width: 50px; }
      .radio-check-item .icon-svg svg .dark {
        stroke: #006D69; }

/* switch-toggle
======================*/
.switch-toggle {
  position: relative;
  width: 4rem;
  height: 2.2rem;
  margin-bottom: -2px; }
  .switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0; }
    .switch-toggle input:checked + .slider:before {
      -webkit-transform: translateX(19px);
          -ms-transform: translateX(19px);
              transform: translateX(19px);
      background: #00726f; }
  .switch-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border: .2rem solid #ddd; }
    .switch-toggle .slider:before {
      position: absolute;
      content: "";
      height: 1.2rem;
      width: 1.2rem;
      left: .2rem;
      bottom: .3rem;
      background-color: #3c3c3b;
      -webkit-transition: .4s;
      transition: .4s; }
    .switch-toggle .slider.round {
      border-radius: 10rem;
      border-radius: 10rem; }
      .switch-toggle .slider.round:before {
        border-radius: 50%; }

/* Search form
======================*/
.search-form {
  margin-bottom: 4rem; }
  .search-form .form-group {
    margin-bottom: 0; }
    @media all and (max-width: 767.98px) {
      .search-form .form-group {
        margin-bottom: 2rem; } }

/* contact-us-form
===================*/
.contact-us-form .form-group .form-control {
  background-color: #f8f8f8; }
  .contact-us-form .form-group .form-control:focus {
    background-color: #fff; }

/* form-wizard
==========================*/
.steps-box .nav.steps {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 0 25px; }
  .steps-box .nav.steps > li {
    float: none;
    display: inline-block;
    margin: 0 1rem; }
    .steps-box .nav.steps > li > a {
      display: block;
      position: relative;
      padding: 0;
      height: 100%;
      font-weight: bold;
      color: #000;
      font-size: 1.6rem;
      cursor: auto; }
      .steps-box .nav.steps > li > a .desc {
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        line-height: 2rem;
        background-color: #36726f;
        border-radius: 100%;
        color: transparent;
        bottom: -33px;
        right: 0;
        -webkit-transform: translate(50%, 0);
            -ms-transform: translate(50%, 0);
                transform: translate(50%, 0);
        z-index: 1;
        -webkit-transition: all .3s;
        transition: all .3s;
        opacity: 0; }
      .steps-box .nav.steps > li > a.active {
        color: #80bc00; }
        .steps-box .nav.steps > li > a.active .desc {
          opacity: 1;
          right: 50%; }
    .steps-box .nav.steps > li.done > a {
      color: #00726f; }

.steps-box .progress-number {
  border-bottom: 2px solid #00726f;
  position: relative; }
  .steps-box .progress-number .counter {
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #00726f;
    color: #00726f;
    position: absolute;
    top: -33px;
    right: 80px;
    background-color: #fff; }
    .steps-box .progress-number .counter::after {
      position: absolute;
      content: "";
      width: 85px;
      height: 85px;
      line-height: 85px;
      border: 10px solid #fff;
      border-radius: 50%;
      top: -12px;
      left: -12px; }

.steps-box .tab-content {
  padding-top: 60px; }
  .steps-box .tab-content > .tab-pane {
    height: auto; }
    .steps-box .tab-content > .tab-pane .tab-title {
      margin-bottom: 2.4rem; }

.steps-box .steps-title {
  margin-bottom: 30px; }
  .steps-box .steps-title .title {
    font-size: 22px;
    color: #222;
    line-height: 29px; }

.steps-box .form-action {
  overflow: hidden;
  text-align: left;
  padding-top: 35px; }
  .steps-box .form-action .step-btn {
    display: inline-block;
    padding: 6px 2rem;
    min-width: 115px;
    margin-right: 10px;
    color: #fff;
    background-color: #00726f;
    border-radius: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    .steps-box .form-action .step-btn:hover {
      background-color: #80bc00;
      color: #ffffff; }

@media all and (max-width: 767.98px) {
  .steps-box .nav.steps > li {
    margin: 0 .5rem; }
    .steps-box .nav.steps > li > a {
      font-size: 1.2rem; }
      .steps-box .nav.steps > li > a .desc {
        width: 1rem;
        height: 1rem;
        bottom: -31px; }
  .steps-box .progress-number .counter {
    left: calc(50% - 32.5px);
    width: 55px;
    height: 55px;
    line-height: 55px;
    top: -27px;
    right: 30px; }
    .steps-box .progress-number .counter::after {
      width: 65px;
      height: 65px;
      line-height: 65px;
      border: 5px solid #fff;
      border-radius: 50%;
      top: -7px;
      left: -7px; }
  .steps-box .form-action {
    text-align: center;
    overflow: visible; } }

@media all and (max-width: 400px) {
  .steps-box .nav.steps {
    margin-bottom: 3rem; }
    .steps-box .nav.steps > li {
      margin: 0 .3rem; }
      .steps-box .nav.steps > li a .desc {
        bottom: -20px; } }

.site-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3.2rem auto; }
  .site-pagination .pagination {
    padding: 0;
    margin: 0; }
    .site-pagination .pagination .page-item .page-link {
      width: 32px;
      height: 32px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none;
      color: #3c3c3b; }
      .site-pagination .pagination .page-item .page-link:hover {
        color: #00726f; }
    .site-pagination .pagination .page-item:last-child .page-link,
    .site-pagination .pagination .page-item:first-child .page-link {
      background-color: #f6f6f6;
      border-radius: 2px; }
      .site-pagination .pagination .page-item:last-child .page-link:hover,
      .site-pagination .pagination .page-item:first-child .page-link:hover {
        color: #80bc00; }

.modal-video .modal-dialog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.modal-video .embed-responsive {
  max-height: 90vh; }

.voice-modal .modal-content {
  padding: 1.5rem;
  border-radius: 4px;
  border: none; }

.voice-modal .modal-header {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0; }
  .voice-modal .modal-header .modal-title {
    font-size: 1.8rem; }
  .voice-modal .modal-header .close {
    margin: 0;
    padding: 0;
    font-size: 2.4rem; }

.accordion .card {
  border: 0; }
  .accordion .card .card-header {
    padding: 0;
    background-color: transparent;
    border: 0; }
    .accordion .card .card-header .btn-link {
      position: relative;
      font-size: 2rem;
      color: #3c3c3b;
      text-decoration: none;
      padding: 1rem 30px 1rem 0;
      text-align: right;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .accordion .card .card-header .btn-link:hover {
        color: #00726f; }
      .accordion .card .card-header .btn-link::after {
        content: "_";
        position: absolute;
        top: -2px;
        right: 0;
        font-weight: 600; }
      .accordion .card .card-header .btn-link.collapsed::after {
        content: "+";
        top: 8px; }
  .accordion .card .faq-answer {
    background-color: #f8f8f8;
    padding: 15px 15px;
    font-size: 1.8rem; }
  @media all and (max-width: 375px) {
    .accordion .card .card-header .btn-link {
      font-size: 1.8rem; }
    .accordion .card .faq-answer {
      font-size: 1.6rem; } }

/**
 * Basic typography style for copy text
 */
/*body-layout*/
html {
  font-size: 62.5%;
  overflow-x: hidden; }

body {
  font-family: "frutiger", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  font-weight: 400;
  font-size: 1.4rem;
  color: #3c3c3b;
  direction: rtl;
  text-align: right; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700; }

.title {
  color: #00726f;
  font-weight: bold; }

.title-lg {
  font-size: 2.4rem;
  line-height: 3.5rem;
  font-weight: 900; }

.text-lg {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 3.5rem; }

.title-md {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 900; }

/*Preloader*/
.preloader {
  width: 100%;
  height: 100%;
  top: 0px;
  position: fixed;
  z-index: 99999;
  background: #fff;
  right: 0;
  left: 0;
  z-index: 9999999; }

.loader-logo img {
  width: 200px;
  margin: auto; }

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1; }

.preloader .cssload-speeding-wheel {
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px); }

.loader, .loader-figure {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 250px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.loader {
  overflow: visible;
  height: 100px;
  width: 250px; }

.loader-figure {
  height: 0;
  width: 0;
  box-sizing: border-box;
  border: 0 solid #f9f9f9;
  border-radius: 50%;
  -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1); }

.loader-label {
  float: left;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 2em 0 0 50%;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5em;
  color: #006f42;
  white-space: nowrap;
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  font-weight: 600; }

.preloader.checking {
  display: none; }
  .preloader.checking .loader-logo img {
    width: 5rem; }
  .preloader.checking .loader-figure {
    height: 0;
    width: 0;
    box-sizing: border-box;
    border: 0 solid #f9f9f9;
    border-radius: 50%;
    -webkit-animation: loader-figure-check 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-check 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1); }

.preloader.checking {
  background: rgba(0, 0, 0, 0.5); }

.preloader.checking .loader-figure {
  border-color: #eceff3; }

body.loaded-checking .preloader.checking {
  display: block !important; }

body.loaded-checking {
  overflow: hidden; }

@-webkit-keyframes loader-figure {
  0% {
    height: 100%;
    width: 100%; }
  29% { }
  30% {
    height: 200%;
    width: 200%;
    background-color: transparent;
    border-width: 1em;
    opacity: 1; }
  to {
    height: 300%;
    width: 300%;
    border-width: 0;
    opacity: 0;
    background-color: transparent; } }

@keyframes loader-figure {
  0% {
    height: 2em;
    width: 2em;
    background-color: #ffffff; }
  29% {
    background-color: #fff; }
  30% {
    height: 5em;
    width: 5em;
    background-color: transparent;
    border-width: 3em;
    opacity: 1; }
  to {
    height: 5.5em;
    width: 5.5em;
    border-width: 0;
    opacity: 0;
    background-color: transparent; } }

@-webkit-keyframes loader-figure-check {
  0% {
    height: 2em;
    width: 2em;
    border: 10px solid #85bd48; }
  50% {
    height: 4em;
    width: 4em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
    border: 40px solid #fff; }
  100% {
    height: 5em;
    width: 5em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
    border: 80px solid #07706d; } }

@keyframes loader-figure-check {
  0% {
    height: 2em;
    width: 2em;
    border: 10px solid #85bd48; }
  50% {
    height: 4em;
    width: 4em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
    border: 40px solid #fff; }
  100% {
    height: 5em;
    width: 5em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
    border: 80px solid #07706d; } }

@-webkit-keyframes loader-label {
  0% {
    opacity: 0.25; }
  30% {
    opacity: 1; }
  to {
    opacity: 0.25; } }

@keyframes loader-label {
  0% {
    opacity: 0.25; }
  30% {
    opacity: 1; }
  to {
    opacity: 0.25; } }

.bs-avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px; }

.bs-avatar.size-1-by-2 {
  width: 20px;
  height: 20px; }

.bs-avatar.size-1 {
  width: 40px;
  height: 40px; }

.bs-avatar.size-2 {
  width: 70px;
  height: 70px; }

.bs-avatar.size-3 {
  width: 90px;
  height: 90px; }

.bs-avatar.size-4 {
  width: 110px;
  height: 110px; }

/********/
.text-success {
  color: #28a745 !important; }

.rotate-180 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.badge-secondary {
  color: #fff; }

.bg-pinkish-grey {
  background-color: #f8f8f8; }

/******/
.m-h-100 {
  min-height: 100%;
  min-height: 100vh; }

.op-0 {
  opacity: 0; }

.op-1 {
  opacity: 1; }

/* General elements
======================*/
*, *:focus {
  outline: none !important; }

::-moz-selection {
  background-color: #00726f;
  color: #fff; }

::selection {
  background-color: #00726f;
  color: #fff; }

/* Handle Scroll style
==============================*/
::-webkit-scrollbar {
  width: 1.5rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer; }

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; }

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 2px; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #00726f;
  cursor: pointer; }

.sm-scroll::-webkit-scrollbar {
  width: .6rem;
  height: .6rem; }

#wrapper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  #wrapper:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  #wrapper.overlay:after {
    opacity: 1;
    visibility: visible; }

#main-content {
  position: relative;
  margin-top: 106px; }

#overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }
  #overlay.in {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; }

.aside-col {
  margin-top: -35%; }
  @media all and (max-width: 991.98px) {
    .aside-col {
      margin-top: 0; } }

/* Links
==================*/
a,
a:hover,
a:focus {
  text-decoration: none; }

/* Images 
======================*/
img {
  max-width: 100%;
  height: auto; }

/* ###### 9.7 Position   ###### */
.pos-absolute {
  position: absolute; }

.pos-relative {
  position: relative; }

.pos-fixed {
  position: fixed; }

.pos-static {
  position: static; }

.pos-absolute-f {
  position: absolute !important; }

.pos-relative-f {
  position: relative !important; }

.pos-fixed-f {
  position: fixed !important; }

.pos-static-f {
  position: static !important; }

.t-0 {
  top: 0px; }

.r-0 {
  right: 0px; }

.b-0 {
  bottom: 0px; }

.l-0 {
  left: 0px; }

.t--0 {
  top: -0px; }

.r--0 {
  right: -0px; }

.b--0 {
  bottom: -0px; }

.l--0 {
  left: -0px; }

.a-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px; }

.x-0 {
  left: 0px;
  right: 0px; }

.y-0 {
  left: 0px;
  right: 0px; }

.t-5 {
  top: 5px; }

.r-5 {
  right: 5px; }

.b-5 {
  bottom: 5px; }

.l-5 {
  left: 5px; }

.t--5 {
  top: -5px; }

.r--5 {
  right: -5px; }

.b--5 {
  bottom: -5px; }

.l--5 {
  left: -5px; }

.a-5 {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px; }

.x-5 {
  left: 5px;
  right: 5px; }

.y-5 {
  left: 5px;
  right: 5px; }

.t-10 {
  top: 10px; }

.r-10 {
  right: 10px; }

.b-10 {
  bottom: 10px; }

.l-10 {
  left: 10px; }

.t--10 {
  top: -10px; }

.r--10 {
  right: -10px; }

.b--10 {
  bottom: -10px; }

.l--10 {
  left: -10px; }

.a-10 {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px; }

.x-10 {
  left: 10px;
  right: 10px; }

.y-10 {
  left: 10px;
  right: 10px; }

.t-15 {
  top: 15px; }

.r-15 {
  right: 15px; }

.b-15 {
  bottom: 15px; }

.l-15 {
  left: 15px; }

.t--15 {
  top: -15px; }

.r--15 {
  right: -15px; }

.b--15 {
  bottom: -15px; }

.l--15 {
  left: -15px; }

.a-15 {
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px; }

.x-15 {
  left: 15px;
  right: 15px; }

.y-15 {
  left: 15px;
  right: 15px; }

.t-20 {
  top: 20px; }

.r-20 {
  right: 20px; }

.b-20 {
  bottom: 20px; }

.l-20 {
  left: 20px; }

.t--20 {
  top: -20px; }

.r--20 {
  right: -20px; }

.b--20 {
  bottom: -20px; }

.l--20 {
  left: -20px; }

.a-20 {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px; }

.x-20 {
  left: 20px;
  right: 20px; }

.y-20 {
  left: 20px;
  right: 20px; }

.t-25 {
  top: 25px; }

.r-25 {
  right: 25px; }

.b-25 {
  bottom: 25px; }

.l-25 {
  left: 25px; }

.t--25 {
  top: -25px; }

.r--25 {
  right: -25px; }

.b--25 {
  bottom: -25px; }

.l--25 {
  left: -25px; }

.a-25 {
  top: 25px;
  right: 25px;
  bottom: 25px;
  left: 25px; }

.x-25 {
  left: 25px;
  right: 25px; }

.y-25 {
  left: 25px;
  right: 25px; }

.t-30 {
  top: 30px; }

.r-30 {
  right: 30px; }

.b-30 {
  bottom: 30px; }

.l-30 {
  left: 30px; }

.t--30 {
  top: -30px; }

.r--30 {
  right: -30px; }

.b--30 {
  bottom: -30px; }

.l--30 {
  left: -30px; }

.a-30 {
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px; }

.x-30 {
  left: 30px;
  right: 30px; }

.y-30 {
  left: 30px;
  right: 30px; }

.t-35 {
  top: 35px; }

.r-35 {
  right: 35px; }

.b-35 {
  bottom: 35px; }

.l-35 {
  left: 35px; }

.t--35 {
  top: -35px; }

.r--35 {
  right: -35px; }

.b--35 {
  bottom: -35px; }

.l--35 {
  left: -35px; }

.a-35 {
  top: 35px;
  right: 35px;
  bottom: 35px;
  left: 35px; }

.x-35 {
  left: 35px;
  right: 35px; }

.y-35 {
  left: 35px;
  right: 35px; }

.t-40 {
  top: 40px; }

.r-40 {
  right: 40px; }

.b-40 {
  bottom: 40px; }

.l-40 {
  left: 40px; }

.t--40 {
  top: -40px; }

.r--40 {
  right: -40px; }

.b--40 {
  bottom: -40px; }

.l--40 {
  left: -40px; }

.a-40 {
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px; }

.x-40 {
  left: 40px;
  right: 40px; }

.y-40 {
  left: 40px;
  right: 40px; }

.t-45 {
  top: 45px; }

.r-45 {
  right: 45px; }

.b-45 {
  bottom: 45px; }

.l-45 {
  left: 45px; }

.t--45 {
  top: -45px; }

.r--45 {
  right: -45px; }

.b--45 {
  bottom: -45px; }

.l--45 {
  left: -45px; }

.a-45 {
  top: 45px;
  right: 45px;
  bottom: 45px;
  left: 45px; }

.x-45 {
  left: 45px;
  right: 45px; }

.y-45 {
  left: 45px;
  right: 45px; }

.t-50 {
  top: 50px; }

.r-50 {
  right: 50px; }

.b-50 {
  bottom: 50px; }

.l-50 {
  left: 50px; }

.t--50 {
  top: -50px; }

.r--50 {
  right: -50px; }

.b--50 {
  bottom: -50px; }

.l--50 {
  left: -50px; }

.a-50 {
  top: 50px;
  right: 50px;
  bottom: 50px;
  left: 50px; }

.x-50 {
  left: 50px;
  right: 50px; }

.y-50 {
  left: 50px;
  right: 50px; }

.t-55 {
  top: 55px; }

.r-55 {
  right: 55px; }

.b-55 {
  bottom: 55px; }

.l-55 {
  left: 55px; }

.t--55 {
  top: -55px; }

.r--55 {
  right: -55px; }

.b--55 {
  bottom: -55px; }

.l--55 {
  left: -55px; }

.a-55 {
  top: 55px;
  right: 55px;
  bottom: 55px;
  left: 55px; }

.x-55 {
  left: 55px;
  right: 55px; }

.y-55 {
  left: 55px;
  right: 55px; }

.t-60 {
  top: 60px; }

.r-60 {
  right: 60px; }

.b-60 {
  bottom: 60px; }

.l-60 {
  left: 60px; }

.t--60 {
  top: -60px; }

.r--60 {
  right: -60px; }

.b--60 {
  bottom: -60px; }

.l--60 {
  left: -60px; }

.a-60 {
  top: 60px;
  right: 60px;
  bottom: 60px;
  left: 60px; }

.x-60 {
  left: 60px;
  right: 60px; }

.y-60 {
  left: 60px;
  right: 60px; }

.t-65 {
  top: 65px; }

.r-65 {
  right: 65px; }

.b-65 {
  bottom: 65px; }

.l-65 {
  left: 65px; }

.t--65 {
  top: -65px; }

.r--65 {
  right: -65px; }

.b--65 {
  bottom: -65px; }

.l--65 {
  left: -65px; }

.a-65 {
  top: 65px;
  right: 65px;
  bottom: 65px;
  left: 65px; }

.x-65 {
  left: 65px;
  right: 65px; }

.y-65 {
  left: 65px;
  right: 65px; }

.t-70 {
  top: 70px; }

.r-70 {
  right: 70px; }

.b-70 {
  bottom: 70px; }

.l-70 {
  left: 70px; }

.t--70 {
  top: -70px; }

.r--70 {
  right: -70px; }

.b--70 {
  bottom: -70px; }

.l--70 {
  left: -70px; }

.a-70 {
  top: 70px;
  right: 70px;
  bottom: 70px;
  left: 70px; }

.x-70 {
  left: 70px;
  right: 70px; }

.y-70 {
  left: 70px;
  right: 70px; }

.t-75 {
  top: 75px; }

.r-75 {
  right: 75px; }

.b-75 {
  bottom: 75px; }

.l-75 {
  left: 75px; }

.t--75 {
  top: -75px; }

.r--75 {
  right: -75px; }

.b--75 {
  bottom: -75px; }

.l--75 {
  left: -75px; }

.a-75 {
  top: 75px;
  right: 75px;
  bottom: 75px;
  left: 75px; }

.x-75 {
  left: 75px;
  right: 75px; }

.y-75 {
  left: 75px;
  right: 75px; }

.t-80 {
  top: 80px; }

.r-80 {
  right: 80px; }

.b-80 {
  bottom: 80px; }

.l-80 {
  left: 80px; }

.t--80 {
  top: -80px; }

.r--80 {
  right: -80px; }

.b--80 {
  bottom: -80px; }

.l--80 {
  left: -80px; }

.a-80 {
  top: 80px;
  right: 80px;
  bottom: 80px;
  left: 80px; }

.x-80 {
  left: 80px;
  right: 80px; }

.y-80 {
  left: 80px;
  right: 80px; }

.t-85 {
  top: 85px; }

.r-85 {
  right: 85px; }

.b-85 {
  bottom: 85px; }

.l-85 {
  left: 85px; }

.t--85 {
  top: -85px; }

.r--85 {
  right: -85px; }

.b--85 {
  bottom: -85px; }

.l--85 {
  left: -85px; }

.a-85 {
  top: 85px;
  right: 85px;
  bottom: 85px;
  left: 85px; }

.x-85 {
  left: 85px;
  right: 85px; }

.y-85 {
  left: 85px;
  right: 85px; }

.t-90 {
  top: 90px; }

.r-90 {
  right: 90px; }

.b-90 {
  bottom: 90px; }

.l-90 {
  left: 90px; }

.t--90 {
  top: -90px; }

.r--90 {
  right: -90px; }

.b--90 {
  bottom: -90px; }

.l--90 {
  left: -90px; }

.a-90 {
  top: 90px;
  right: 90px;
  bottom: 90px;
  left: 90px; }

.x-90 {
  left: 90px;
  right: 90px; }

.y-90 {
  left: 90px;
  right: 90px; }

.t-95 {
  top: 95px; }

.r-95 {
  right: 95px; }

.b-95 {
  bottom: 95px; }

.l-95 {
  left: 95px; }

.t--95 {
  top: -95px; }

.r--95 {
  right: -95px; }

.b--95 {
  bottom: -95px; }

.l--95 {
  left: -95px; }

.a-95 {
  top: 95px;
  right: 95px;
  bottom: 95px;
  left: 95px; }

.x-95 {
  left: 95px;
  right: 95px; }

.y-95 {
  left: 95px;
  right: 95px; }

.t-100 {
  top: 100px; }

.r-100 {
  right: 100px; }

.b-100 {
  bottom: 100px; }

.l-100 {
  left: 100px; }

.t--100 {
  top: -100px; }

.r--100 {
  right: -100px; }

.b--100 {
  bottom: -100px; }

.l--100 {
  left: -100px; }

.a-100 {
  top: 100px;
  right: 100px;
  bottom: 100px;
  left: 100px; }

.x-100 {
  left: 100px;
  right: 100px; }

.y-100 {
  left: 100px;
  right: 100px; }

.z-index-0 {
  z-index: 0; }

.z-index-10 {
  z-index: 10; }

.z-index-50 {
  z-index: 50; }

.z-index-100 {
  z-index: 100; }

.z-index-150 {
  z-index: 150; }

.z-index-200 {
  z-index: 200; }

@media (min-width: 480px) {
  .pos-xs-absolute {
    position: absolute; }
  .pos-xs-relative {
    position: relative; }
  .pos-xs-fixed {
    position: fixed; }
  .pos-xs-static {
    position: static; }
  .t-xs-auto {
    top: auto; }
  .r-xs-auto {
    right: auto; }
  .b-xs-auto {
    bottom: auto; }
  .l-xs-auto {
    left: auto; } }

@media (min-width: 576px) {
  .pos-sm-absolute {
    position: absolute; }
  .pos-sm-relative {
    position: relative; }
  .pos-sm-fixed {
    position: fixed; }
  .pos-sm-static {
    position: static; }
  .t-sm-auto {
    top: auto; }
  .r-sm-auto {
    right: auto; }
  .b-sm-auto {
    bottom: auto; }
  .l-sm-auto {
    left: auto; } }

@media (min-width: 768px) {
  .pos-md-absolute {
    position: absolute; }
  .pos-md-relative {
    position: relative; }
  .pos-md-fixed {
    position: fixed; }
  .pos-md-static {
    position: static; }
  .t-md-auto {
    top: auto; }
  .r-md-auto {
    right: auto; }
  .b-md-auto {
    bottom: auto; }
  .l-md-auto {
    left: auto; } }

@media (min-width: 992px) {
  .pos-lg-absolute {
    position: absolute; }
  .pos-lg-relative {
    position: relative; }
  .pos-lg-fixed {
    position: fixed; }
  .pos-lg-static {
    position: static; }
  .t-lg-auto {
    top: auto; }
  .r-lg-auto {
    right: auto; }
  .b-lg-auto {
    bottom: auto; }
  .l-lg-auto {
    left: auto; } }

@media (min-width: 1200px) {
  .pos-xl-absolute {
    position: absolute; }
  .pos-xl-relative {
    position: relative; }
  .pos-xl-fixed {
    position: fixed; }
  .pos-xl-static {
    position: static; }
  .t-xl-auto {
    top: auto; }
  .r-xl-auto {
    right: auto; }
  .b-xl-auto {
    bottom: auto; }
  .l-xl-auto {
    left: auto; } }

.t--1 {
  top: -1px; }

.l--1 {
  left: -1px; }

.l-0-f {
  left: 0 !important; }

.md-gutters {
  margin-right: -1rem;
  margin-left: -1rem; }
  .md-gutters > .col,
  .md-gutters > [class*="col-"] {
    padding-right: 1rem;
    padding-left: 1rem; }

.sm-gutters {
  margin-right: -.5rem;
  margin-left: -.5rem; }
  .sm-gutters > .col,
  .sm-gutters > [class*="col-"] {
    padding-right: .5rem;
    padding-left: .5rem; }

@media all and (max-width: 767.98px) {
  .order-sm-1 {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; } }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  /*Responsive*/ }
  .header.sticky .navbar .navbar-brand {
    margin-top: 16px;
    margin-bottom: 16px; }
  .header.sticky .navbar-nav .nav-item.dropdown .dropdown-menu {
    top: 75px; }
    .header.sticky .navbar-nav .nav-item.dropdown .dropdown-menu.settings-menu {
      top: 46px; }
  .header.sticky .navbar-nav .nav-item .nav-link {
    line-height: 75px; }
  .header.sticky .navbar-nav.nav-btns .search-form {
    height: 74px; }
    .header.sticky .navbar-nav.nav-btns .search-form .close-btn {
      top: 23px; }
  .header .navbar {
    padding: 0; }
    .header .navbar .navbar-toggler {
      border-color: transparent;
      padding: 0; }
      .header .navbar .navbar-toggler svg {
        height: 40px;
        cursor: pointer;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      .header .navbar .navbar-toggler path {
        fill: none;
        -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
        transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
        stroke-width: 40px;
        stroke-linecap: round;
        stroke: #00726f;
        stroke-dashoffset: 0px; }
      .header .navbar .navbar-toggler path#top,
      .header .navbar .navbar-toggler path#bottom {
        stroke-dasharray: 240px 950px; }
      .header .navbar .navbar-toggler path#middle {
        stroke-dasharray: 240px 240px; }
      .header .navbar .navbar-toggler .cross path#top,
      .header .navbar .navbar-toggler .cross path#bottom {
        stroke-dashoffset: -650px;
        stroke-dashoffset: -650px; }
      .header .navbar .navbar-toggler .cross path#middle {
        stroke-dashoffset: -115px;
        stroke-dasharray: 1px 220px; }
    .header .navbar .mobile-settings {
      display: none; }
    .header .navbar .navbar-brand {
      margin-right: 0;
      max-width: 152px;
      margin: 32px 0 32px 68px;
      padding: 0;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
  .header .navbar-nav {
    padding: 0; }
    .header .navbar-nav .nav-item.dropdown {
      position: relative; }
      .header .navbar-nav .nav-item.dropdown .nav-link::after {
        display: block;
        position: relative;
        top: 0;
        content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path fill='black' d='M6.72 6.78c-.14.14-.331.22-.53.22h-.38c-.198-.002-.388-.081-.53-.22L.15 1.64c-.095-.094-.148-.222-.148-.355 0-.133.053-.261.148-.355L.86.22c.092-.094.218-.147.35-.147.132 0 .258.053.35.147L6 4.67 10.44.22c.094-.095.222-.148.355-.148.133 0 .261.053.355.148l.7.71c.095.094.148.222.148.355 0 .133-.053.261-.148.355L6.72 6.78z'/></svg>");
        display: inline-block;
        padding-right: 4px;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .header .navbar-nav .nav-item.dropdown .nav-link:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 12px;
        width: 0px;
        height: 3px;
        background-color: #80bc00;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .header .navbar-nav .nav-item.dropdown:hover .nav-link:before {
        opacity: 1;
        visibility: visible;
        width: calc(100% - 24px); }
      .header .navbar-nav .nav-item.dropdown:hover .nav-link:after {
        top: 5px;
        -webkit-transform: rotateX(180deg);
                transform: rotateX(180deg);
        content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path fill='teal' d='M6.72 6.78c-.14.14-.331.22-.53.22h-.38c-.198-.002-.388-.081-.53-.22L.15 1.64c-.095-.094-.148-.222-.148-.355 0-.133.053-.261.148-.355L.86.22c.092-.094.218-.147.35-.147.132 0 .258.053.35.147L6 4.67 10.44.22c.094-.095.222-.148.355-.148.133 0 .261.053.355.148l.7.71c.095.094.148.222.148.355 0 .133-.053.261-.148.355L6.72 6.78z'/></svg>"); }
      .header .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
        visibility: visible; }
    .header .navbar-nav .nav-item .nav-link {
      position: relative;
      color: #3c3c3b;
      font-size: 1.6rem;
      padding: 0 12px;
      line-height: 105px; }
      .header .navbar-nav .nav-item .nav-link:hover {
        color: #00726f; }
  .header .navbar-nav.nav-btns {
    margin-right: auto;
    /* search */ }
    .header .navbar-nav.nav-btns .nav-item {
      border-left: 1px solid rgba(60, 60, 59, 0.2);
      padding: 0 27px; }
      .header .navbar-nav.nav-btns .nav-item .search-toggle-btn {
        padding: 0;
        border: 0;
        box-shadow: none;
        background-color: transparent; }
      .header .navbar-nav.nav-btns .nav-item:last-child {
        border: 0; }
    .header .navbar-nav.nav-btns .search-form {
      position: absolute;
      top: 0;
      left: 50%;
      width: 0;
      height: 106px;
      outline: none;
      border: none;
      background: #fff;
      border-radius: 0;
      opacity: 0;
      z-index: 1070;
      -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      box-shadow: none;
      pointer-events: none; }
      .header .navbar-nav.nav-btns .search-form.search-active {
        opacity: 1;
        width: 101%;
        pointer-events: all; }
        .header .navbar-nav.nav-btns .search-form.search-active .close-btn {
          opacity: 1;
          visibility: visible; }
      .header .navbar-nav.nav-btns .search-form .close-btn {
        position: absolute;
        top: 43px;
        left: 25px;
        width: 25px;
        height: 25px;
        opacity: 0;
        visibility: hidden;
        z-index: 6;
        padding: 0;
        border: 0;
        background-color: transparent;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .header .navbar-nav.nav-btns .search-form .close-btn:before, .header .navbar-nav.nav-btns .search-form .close-btn:after {
          content: "";
          position: absolute;
          right: 50%;
          top: 0;
          width: 2px;
          height: 25px;
          background-color: #3c3c3b;
          -webkit-transition: all .4s;
          transition: all .4s; }
        .header .navbar-nav.nav-btns .search-form .close-btn:after {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); }
        .header .navbar-nav.nav-btns .search-form .close-btn:before {
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
      .header .navbar-nav.nav-btns .search-form .form-control {
        color: #3c3c3b;
        padding: 0 20px 0 20px;
        font-size: 1.6rem;
        width: 100%;
        height: 100%;
        background-color: transparent;
        border: 0;
        box-shadow: none; }
        .header .navbar-nav.nav-btns .search-form .form-control::-webkit-input-placeholder {
          color: #3c3c3b; }
        .header .navbar-nav.nav-btns .search-form .form-control::-moz-placeholder {
          color: #3c3c3b; }
        .header .navbar-nav.nav-btns .search-form .form-control:-ms-input-placeholder {
          color: #3c3c3b; }
        .header .navbar-nav.nav-btns .search-form .form-control::-ms-input-placeholder {
          color: #3c3c3b; }
        .header .navbar-nav.nav-btns .search-form .form-control::placeholder {
          color: #3c3c3b; }
  @media all and (min-width: 992px) and (max-width: 1199px) {
    .header .navbar-nav .nav-item .nav-link {
      font-size: 1.4rem; } }
  @media all and (max-width: 991.98px) {
    .header .navbar {
      position: static;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .header .navbar .navbar-toggler {
        z-index: 10; }
      .header .navbar .navbar-brand {
        margin: 32px 0; }
      .header .navbar .mobile-settings {
        display: block; }
      .header .navbar .navbar-collapse {
        position: fixed;
        background-color: #fff;
        width: 100%;
        top: 104px;
        right: -100%;
        padding: 1rem;
        height: calc(100% - 104px) !important;
        overflow-y: auto;
        -webkit-transition: right .3s ease-in-out, top .3s ease-in-out;
        transition: right .3s ease-in-out, top .3s ease-in-out; }
        .header .navbar .navbar-collapse.show {
          right: 0; }
        .header .navbar .navbar-collapse .search-form {
          display: block !important;
          position: relative;
          margin-bottom: 2rem; }
          .header .navbar .navbar-collapse .search-form .form-control {
            border: 0;
            border-bottom: 2px solid #ddd;
            height: 45px;
            font-size: 1.4rem; }
            .header .navbar .navbar-collapse .search-form .form-control:focus ~ .border-effect {
              width: 100%;
              left: 0; }
          .header .navbar .navbar-collapse .search-form .search-icon {
            position: absolute;
            top: 10px;
            left: 0;
            background-color: transparent;
            border: 0; }
          .header .navbar .navbar-collapse .search-form .border-effect {
            position: absolute;
            bottom: 0;
            left: 50%;
            height: 2px;
            width: 0;
            background-color: #80bc00;
            -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out; }
        .header .navbar .navbar-collapse .navbar-nav .nav-item {
          display: block;
          margin-bottom: 1.2rem; }
          .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .nav-link {
            padding-right: 2rem; }
            .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .nav-link:before, .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .nav-link:after {
              display: none; }
            .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .nav-link:before {
              content: "";
              position: absolute;
              display: inline-block;
              top: 3px;
              bottom: auto;
              right: 5px;
              width: 2px;
              height: 80%;
              background-color: #00726f;
              opacity: 1;
              visibility: visible; }
          .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            -webkit-transform: none;
                -ms-transform: none;
                    transform: none;
            background-color: #fff;
            padding: 1rem 3rem 0 0;
            min-width: auto;
            width: auto;
            box-shadow: none; }
            .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-title {
              display: none; }
            .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-content ul.dropdown-menu-links {
              display: block; }
              .header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-content ul.dropdown-menu-links li {
                width: 100%;
                padding: 0; }
          .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
            min-width: 130px;
            line-height: 3rem;
            font-weight: 900;
            font-size: 2rem;
            color: #00726f; }
        .header .navbar .navbar-collapse .navbar-nav.nav-btns {
          display: none; }
    .header.sticky .navbar .navbar-collapse {
      top: 72px;
      height: calc(100% - 72px) !important; } }

.footer {
  padding: 4.8rem 0 0;
  background-color: #182842; }
  .footer .footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .footer .footer-top .logos .balady-logo {
      position: relative;
      width: 135px;
      margin-left: 16px; }
    .footer .footer-top .logos .vision-logo {
      width: 58px;
      margin-right: 16px; }
    .footer .footer-top .logos .seperator {
      display: inline-block;
      vertical-align: middle;
      width: 1px;
      height: 40px;
      opacity: 0.5;
      background-color: #fff; }
  .footer .main-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: self-start;
    -webkit-align-items: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 5rem 0; }
    .footer .main-footer .footer-widget .widget-title {
      font-size: 1.8rem;
      color: #fff;
      line-height: 3.5rem;
      font-weight: bold;
      margin-bottom: 1.8rem; }
  .footer .footer-copyRight {
    background-color: #121e32;
    padding: 25px; }
    .footer .footer-copyRight .copyRight-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .footer .footer-copyRight .copyRight-content > p {
        color: #fff;
        font-size: 1.2rem;
        line-height: 2.3rem;
        margin-bottom: 0; }
  @media all and (max-width: 767.98px) {
    .footer .main-footer .footer-widget {
      width: 50%;
      margin-bottom: 3rem; }
    .footer .footer-copyRight .copyRight-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .footer .footer-copyRight .copyRight-content > p {
        margin-bottom: 1rem; } }
  @media all and (max-width: 450px) {
    .footer .footer-top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .footer .footer-top .logos {
        margin-bottom: 3rem; }
    .footer .main-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-bottom: 1rem; }
      .footer .main-footer .footer-widget {
        width: 100%;
        text-align: center; } }

/*social-list*/
.social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .social-list .social-list-item {
    margin: 0 16px; }
    .social-list .social-list-item:last-child {
      margin-left: 0; }
    .social-list .social-list-item .social-list-link {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 28px;
      height: 24px;
      color: #fff;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .social-list .social-list-item .social-list-link:hover {
        color: #80bc00; }
      .social-list .social-list-item .social-list-link i {
        font-size: 25px; }

/*links-list*/
.links-list {
  padding: 0;
  margin: 0;
  list-style: none; }
  .links-list li {
    margin-bottom: 8px; }
    .links-list li .link-item {
      color: #d6d6d6;
      font-size: 1.6rem;
      line-height: 3rem;
      font-weight: 300;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .links-list li .link-item:hover {
        color: #80bc00; }

/*copyRight-links*/
.copyRight-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .copyRight-links li {
    border-left: 1px solid #ddd;
    padding: 0 10px; }
    .copyRight-links li:last-child {
      padding-left: 0;
      border-left: 0; }
    .copyRight-links li a {
      display: block;
      color: #fff;
      font-size: 1.2rem;
      line-height: 18px;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .copyRight-links li a:hover {
        color: #80bc00; }

.page-head {
  position: relative;
  padding: 2.4rem 0;
  background-color: #00726f; }
  .page-head .page-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 3.5rem;
    color: #fff;
    margin-bottom: 1.4rem; }
  .page-head .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0; }
    .page-head .breadcrumb .breadcrumb-item {
      font-size: 1.2rem;
      line-height: 3rem;
      padding: 0; }
      .page-head .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "";
        width: 3px;
        height: 3px;
        border-radius: 100%;
        background-color: #fff;
        padding: 0;
        margin: 0 5px; }
      .page-head .breadcrumb .breadcrumb-item.active {
        color: #80bc00; }
      .page-head .breadcrumb .breadcrumb-item a {
        font-size: 1.2rem;
        color: #fff;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .page-head .breadcrumb .breadcrumb-item a:hover {
          color: #80bc00; }
  .page-head:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: -0;
    background-image: url(../images/logo-pattern.svg);
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center; }
  @media all and (max-width: 991.98px) {
    .page-head:after {
      background-size: 200%; } }
  @media all and (max-width: 375px) {
    .page-head:after {
      display: none; } }

/*------------------------------------*\
    #BACKGROUNDS
\*------------------------------------*/
.bg-theme {
  background-color: #00726f !important; }

.bg-grey {
  background-color: #eceff3 !important; }

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

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

.bg-dark {
  background-color: #222222 !important; }

.bg-secondary {
  background-color: #80bc00; }

.bg-color-1 {
  background: #48CCA0 !important; }

.bg-color-2 {
  background: #6437CC !important; }

.bg-color-3 {
  background: #009ABA !important; }

.bg-color-4 {
  background: #DF5E5D !important; }

.bg-color-5 {
  background: #657984 !important; }

.bg-color-6 {
  background: #0F83FF !important; }

.bg-color-7 {
  background: #D857D9 !important; }

/* Background Image */
.bg-parallax {
  background-attachment: fixed !important; }

.bg-overlay {
  position: relative;
  overflow: hidden;
  z-index: 1;
  -ms-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%; }
  .bg-overlay:before {
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1; }

.bg-gradient {
  background: -webkit-linear-gradient(left, #009ab9, rgba(39, 16, 102, 0) 55%, rgba(39, 16, 102, 0) 70%, #009ab9);
  background: linear-gradient(90deg, #009ab9, rgba(39, 16, 102, 0) 55%, rgba(39, 16, 102, 0) 70%, #009ab9);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  opacity: .5; }

.bg-overlay-light:before {
  background-color: rgba(255, 255, 255, 0.8); }

.bg-overlay-dark:before {
  background-color: rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, rgba(27, 26, 26, 0.25) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%);
  background-image: linear-gradient(to bottom, rgba(27, 26, 26, 0.25) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%); }

.bg-overlay-dark-2:before {
  background-color: rgba(0, 0, 0, 0.6); }

.no-shadow {
  box-shadow: none; }

.section {
  position: relative;
  padding: 72px 0 72px; }
  .section .section-head {
    text-align: center;
    margin-bottom: 32px; }
    .section .section-head .title {
      color: #00726f;
      font-size: 2.4rem;
      font-weight: 900;
      margin-bottom: 0; }
  @media all and (max-width: 425px) {
    .section {
      padding: 42px 0 32px; }
      .section .section-head {
        margin-bottom: 22px; }
        .section .section-head .title {
          font-size: 2rem;
          line-height: 2.6rem; } }

.inner-page {
  padding: 4.2rem 0 3rem; }
  @media all and (max-width: 767.98px) {
    .inner-page {
      padding: 3.2rem 0 3rem; } }
.intro-plan {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.inner-page h2 {
  margin-bottom: 1.6rem;
}
#atlasesModal .modal-dialog {
  position: relative;
  max-width: 780px;
  height: 80%;
}
#atlasesModal .modal-content {
  height: 80%;
}
#atlasesModal .modal-header .close {
  margin: 0;
  font-size: 3rem;
}
#atlasesModal .modal-body iframe {
  width: 100%;
  height: 100%;
}
.plans-item.box-item {
  min-height: auto;
  height: calc(100% - 3.2rem);
}
/* our-value
====================*/
.our-value {
  padding: 3.2rem 0; }

/* important-links
================*/
.important-links {
  padding: 3.2rem 0; }
  .important-links .col {
    max-width: 200px; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.arrow-btn {
  display: inline-block;
  font-size: 1.4rem;
  color: #00726f;
  line-height: 3.5rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear; }
  .arrow-btn:hover {
    color: #80bc00; }
    .arrow-btn:hover .arrow {
      -webkit-transform: translateX(-5px);
          -ms-transform: translateX(-5px);
              transform: translateX(-5px); }
  .arrow-btn .arrow {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    line-height: 22px;
    width: 22px;
    -webkit-transition: -webkit-transform .3s linear;
    transition: -webkit-transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear, -webkit-transform .3s linear; }
  .arrow-btn.has-bg {
    padding: 1.2rem 2rem;
    background-color: #00726f;
    color: #fff; }
    .arrow-btn.has-bg:hover {
      background-color: #80bc00; }
    .arrow-btn.has-bg .arrow svg {
      fill: #fff; }
  .arrow-btn.arrow-btn-prev .arrow {
    -webkit-transform: rotate(-180deg) translateX(0);
        -ms-transform: rotate(-180deg) translateX(0);
            transform: rotate(-180deg) translateX(0);
    margin-right: 0;
    margin-left: 6px; }
  .arrow-btn.arrow-btn-prev:hover .arrow {
    -webkit-transform: rotate(-180deg) translateX(-5px);
        -ms-transform: rotate(-180deg) translateX(-5px);
            transform: rotate(-180deg) translateX(-5px); }

.custom-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 14px;
  min-width: 140px;
  height: 56px;
  border-radius: 2px;
  font-size: 1.4rem;
  color: #3c3c3b;
  background-color: #989898;
  border: 1px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .custom-btn:hover, .custom-btn.active-btn {
    background-color: #00726f;
    color: #fff; }
  .custom-btn.active-btn:hover {
    background-color: #80bc00;
    color: #fff;
    border: 1px solid #80bc00; }

.download-btn {
  border: 0;
  padding: 1.4rem 2.4rem;
  box-shadow: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  background-color: #f8f8f8;
  color: #00726f;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .download-btn:hover {
    background-color: #00726f;
    color: #fff; }
    .download-btn:hover .btn-icon-download {
      color: #fff; }
  .download-btn .btn-icon-type {
    width: 35px;
    margin-left: 1rem; }
  .download-btn .btn-text {
    margin-left: 1rem; }
  .download-btn .btn-icon-download {
    font-size: 18px;
    color: #80bc00;
    margin-right: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }

/* .pulse-button
================*/
.pulse-button {
  border: .6rem solid #98d05a !important;
  display: block;
  margin: auto;
  position: relative;
  width: 10rem;
  height: 10rem;
  border: none;
  box-shadow: 0 0 0 0 rgba(130, 189, 65, 0.32);
  border-radius: 50%;
  background-color: #80bc00;
  cursor: pointer;
  -webkit-animation: pulse 2.3s infinite cubic-bezier(0.66, 0, 0, 1);
          animation: pulse 2.3s infinite cubic-bezier(0.66, 0, 0, 1); }
  .pulse-button svg {
    width: auto;
    height: 58%;
    background: none; }
    .pulse-button svg g {
      fill: white; }
  .pulse-button:hover {
    -webkit-animation: none;
            animation: none; }

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0); } }

@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0); } }

.slider-action {
  position: absolute;
  width: calc(50% - 15px);
  bottom: 95px;
  left: 30px;
  z-index: 1;
  color: #fff;
  padding: 0 80px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .slider-action .slider-counter {
    margin-left: 1.6rem;
    font-size: 1.2rem;
    font-weight: bold; }
  .slider-action .progress {
    height: 1px;
    width: 50%;
    background-color: rgba(151, 151, 151, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-break-after: column;
            break-after: column; }
    .slider-action .progress span {
      background-color: #80bc00;
      height: 1px;
      display: inline-block;
      -webkit-transition: width .3s ease-in-out;
      transition: width .3s ease-in-out; }

/*overwrite owl-nav*/
.owl-carousel {
  position: static; }
  .owl-carousel .owl-item {
    opacity: 1 !important; }

.owl-nav {
  position: absolute;
  bottom: 95px;
  left: 160px;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .owl-nav .owl-next,
  .owl-nav .owl-prev {
    padding: 0;
    margin: 0 .8rem; }
    .owl-nav .owl-next img,
    .owl-nav .owl-prev img {
      width: 100%;
      height: 100%; }
  .owl-nav .owl-prev svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

/*owlTabs*/
.nav-tabs.owl-carousel {
  position: relative; }
  .nav-tabs.owl-carousel .owl-nav {
    top: 30px;
    width: 110%;
    height: 25px;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    .nav-tabs.owl-carousel .owl-nav .owl-prev,
    .nav-tabs.owl-carousel .owl-nav .owl-next {
      position: absolute;
      pointer-events: auto; }
      .nav-tabs.owl-carousel .owl-nav .owl-prev.disabled,
      .nav-tabs.owl-carousel .owl-nav .owl-next.disabled {
        display: none; }
    .nav-tabs.owl-carousel .owl-nav .owl-prev {
      right: 0; }
    .nav-tabs.owl-carousel .owl-nav .owl-next {
      left: 0; }
  @media all and (max-width: 576px) {
    .nav-tabs.owl-carousel {
      margin-bottom: 3rem; }
      .nav-tabs.owl-carousel .owl-nav {
        width: 60px;
        top: auto;
        bottom: -1rem; }
        .nav-tabs.owl-carousel .owl-nav .owl-prev.disabled,
        .nav-tabs.owl-carousel .owl-nav .owl-next.disabled {
          display: block;
          opacity: .5; } }

.single-slider .owl-nav {
  top: 50%;
  bottom: auto;
  width: 100%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .single-slider .owl-nav .owl-prev svg,
  .single-slider .owl-nav .owl-next svg {
    width: 3.5rem;
    height: 3.5rem; }
  .single-slider .owl-nav button.owl-next,
  .single-slider .owl-nav button.owl-prev {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem !important;
    margin: 0; }
  .single-slider .owl-nav button.owl-prev {
    right: 0; }
  .single-slider .owl-nav button.owl-next {
    left: 0; }

.single-slider:hover .owl-nav {
  opacity: 1; }

/*Css3 Animation*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

/*fadeInDown*/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

/*fadeInTop*/
@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInTop {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

/*fadeInLeft*/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

/*fadeInRight*/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

/*hover animation*/
@-webkit-keyframes moveLineX {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }
@keyframes moveLineX {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }

@-webkit-keyframes moveLine-X {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@keyframes moveLine-X {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@-webkit-keyframes moveLineY {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); } }

@keyframes moveLineY {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); } }

@-webkit-keyframes moveLine-Y {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }

@keyframes moveLine-Y {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }

.map-page {
  position: relative;
  min-height: 60vh; }
  .map-page #map-office {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #d6dce4; }
  .map-page > .container {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    z-index: 1; }
  @media all and (max-width: 991.98px) {
    .map-page #map-office {
      position: relative; }
    .map-page > .container {
      padding-top: 1rem;
      padding-bottom: 1rem; } }

/* Filter-box
======================*/
.filter-box {
  background-color: #fff;
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.1);
  max-width: 60%; }
  .filter-box .filter-box-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 2rem; }
  .filter-box .filter-box-footer {
    border-top: 1px solid #e3e3e3;
    padding-top: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .filter-box .filter-box-footer .social-list .social-list-item {
      margin: 0 .5rem; }
      .filter-box .filter-box-footer .social-list .social-list-item .social-list-link {
        width: 3.5rem;
        height: 3.5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        border: 0;
        border-radius: 100%;
        background-color: #182842; }
        .filter-box .filter-box-footer .social-list .social-list-item .social-list-link i {
          font-size: 1.6rem; }
        .filter-box .filter-box-footer .social-list .social-list-item .social-list-link:hover {
          background-color: #80bc00;
          color: #fff; }
  @media all and (max-width: 991.98px) {
    .filter-box {
      max-width: 100%;
      margin-bottom: 3rem;
      box-shadow: none; } }
  @media all and (max-width: 500px) {
    .filter-box .filter-box-title {
      font-size: 1.8rem; }
    .filter-box .filter-box-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .filter-box .filter-box-footer h2 {
        margin-bottom: 1rem; } }

.search-results {
  margin-top: 2rem; }
  .search-results .serach-results-head {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .search-results .serach-results-head .results-num {
      font-size: 60%; }
    .search-results .serach-results-head .close-result {
      padding: 0;
      border: 1px solid #ccc;
      background-color: transparent;
      width: 25px;
      height: 25px;
      color: #36726f;
      border-radius: 2px;
      padding-top: 2px; }

/* Branches-list
=======================*/
.branches-list {
  list-style: none;
  padding: 0;
  max-height: 170px;
  overflow-y: auto;
  padding-left: 1rem;
  margin-bottom: 0; }
  .branches-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.6rem; }
    .branches-list li a {
      color: #00726f;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .branches-list li a:hover {
        color: #80bc00; }
      .branches-list li a i {
        margin-right: .5rem; }

/* contact-info
====================*/
.contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .contact-info .contact-info-image {
    width: 25%; }
  .contact-info .contact-info-content {
    padding-right: 2rem;
    width: 70%; }
  .contact-info .contact-info-data {
    padding: 0;
    margin: 0;
    list-style: none; }
    .contact-info .contact-info-data.inline-items {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    .contact-info .contact-info-data .contact-item {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      margin-left: 2.4rem; }
      .contact-info .contact-info-data .contact-item:last-child {
        margin-left: 0; }
      .contact-info .contact-info-data .contact-item i {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 30px;
        height: 30px;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        color: #00726f;
        border-radius: 2px;
        margin-left: .5rem; }
      .contact-info .contact-info-data .contact-item span, .contact-info .contact-info-data .contact-item a {
        color: #00726f; }
        .contact-info .contact-info-data .contact-item span:hover, .contact-info .contact-info-data .contact-item a:hover {
          color: #80bc00; }
      .contact-info .contact-info-data .contact-item p {
        margin-bottom: 0; }
  @media all and (max-width: 470px) {
    .contact-info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .contact-info .contact-info-image,
      .contact-info .contact-info-content {
        width: 100%; }
      .contact-info .contact-info-image {
        margin-bottom: 2rem;
        text-align: center; }
        .contact-info .contact-info-image img {
          max-width: 150px;
          margin: auto; } }

/* contact-list
=======================*/
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .contact-list .contact-list-item {
    width: 30%;
    margin-bottom: 3rem; }
    .contact-list .contact-list-item .title {
      font-size: 1.6rem;
      margin-bottom: .6rem; }
    .contact-list .contact-list-item p {
      color: #000;
      font-weight: 600;
      margin-bottom: 0; }
  @media all and (max-width: 567.98px) {
    .contact-list {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .contact-list .contact-list-item {
        width: 48%; } }
  @media all and (max-width: 500px) {
    .contact-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .contact-list .contact-list-item {
        width: 100%; } }

/* Slider section
==========================*/
.main-slider {
  padding-top: 25px; }
  .main-slider > .container-fluid {
    position: relative;
    max-width: 1440px; }
  .main-slider .slide-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 367px; }
    .main-slider .slide-item .item-img {
      width: 50%;
      margin-top: 15px;
      margin-left: -30px;
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
      -webkit-align-self: stretch;
          -ms-flex-item-align: stretch;
              align-self: stretch;
      height: 367px; }
      .main-slider .slide-item .item-img img {
        height: 100%; }
    .main-slider .slide-item .item-caption {
      position: relative;
      padding-top: 70px;
      padding-right: 88px;
      width: 50%;
      background-color: #00726f;
      border-radius: 4px;
      -webkit-align-self: stretch;
          -ms-flex-item-align: stretch;
              align-self: stretch;
      margin-bottom: 15px; }
      .main-slider .slide-item .item-caption:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 5px;
        width: 30%;
        -webkit-transition: width 5s ease-in-out;
        transition: width 5s ease-in-out;
        background-color: #80bc00; }
      .main-slider .slide-item .item-caption:after {
        position: absolute;
        content: "";
        bottom: 0;
        left: -23%;
        background-image: url(../images/logo-pattern.svg);
        width: 50%;
        height: 50%;
        background-repeat: no-repeat;
        background-size: 200%;
        background-position: center center; }
      .main-slider .slide-item .item-caption .caption-img {
        width: 95px; }
      .main-slider .slide-item .item-caption .caption-content > p {
        font-size: 2.4rem;
        line-height: 3.5rem;
        font-weight: bold;
        color: #fff;
        margin: 1.6rem 0; }
      .main-slider .slide-item .item-caption .caption-content .arrow-btn {
        color: #fff; }
  @media all and (max-width: 1024px) {
    .main-slider .slider-action {
      bottom: 65px; }
    .main-slider .owl-nav {
      bottom: 65px;
      left: 60px; } }
  @media all and (max-width: 891.98px) {
    .main-slider > .container-fluid {
      max-width: 720px; }
    .main-slider .slide-item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .main-slider .slide-item .item-img {
        width: 100%;
        margin: 0;
        border-radius: 2px 2px 0 0;
        height: 350px; }
      .main-slider .slide-item .item-caption {
        width: 100%;
        margin: 0;
        border-radius: 0 0 2px 2px;
        padding: 30px 30px 70px; }
    .main-slider .slider-action {
      bottom: 35px;
      left: auto;
      right: 15px;
      padding: 0 30px 0 0;
      width: calc(100% - 30px); }
    .main-slider .owl-nav {
      bottom: 35px; } }
  @media all and (max-width: 425px) {
    .main-slider .slide-item .item-img {
      height: 200px; }
    .main-slider .slide-item .item-caption .caption-content > p {
      font-size: 1.6rem;
      line-height: 2.8rem; }
    .main-slider .owl-nav {
      left: 30px; } }

/* Services Section
==========================*/
.services-section .tab-content .owl-carousel .owl-stage-outer {
  padding: 20px 0;
  margin-left: 0;
  margin-right: 0; }
  .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item img {
    width: auto; }
  .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item .box-item {
    margin: 0 1rem !important; }
  @media all and (min-width: 1200px) {
    .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item {
      width: 277.5px; } }
  @media all and (min-width: 992px) and (max-width: 1199px) {
    .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item {
      width: 310px; } }
  @media all and (min-width: 768px) and (max-width: 991px) {
    .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item {
      width: 345px; } }
  @media all and (min-width: 576px) and (max-width: 767px) {
    .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item {
      width: 255px; } }
  @media all and (max-width: 575px) {
    .services-section .tab-content .owl-carousel .owl-stage-outer .owl-item {
      width: 100%; } }

.services-section .tab-content .owl-carousel .owl-nav {
  bottom: 25px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }

/* corona-update section
======================*/
.corona-update {
  background-color: #00726f;
  text-align: center;
  color: #fff;
  padding: 26px 0; }
  .corona-update > .container {
    position: relative; }
    .corona-update > .container:before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 284px;
      height: 225px;
      background-image: url(../images/icons/corona-a.svg);
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
    .corona-update > .container:after {
      content: "";
      background-image: url(../images/icons/corona-b.svg);
      width: 284px;
      height: 225px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
    @media all and (max-width: 767.98px) {
      .corona-update > .container:before, .corona-update > .container:after {
        width: 150px;
        height: 150px;
        bottom: 0; } }
  .corona-update .section-head {
    margin-bottom: 1rem; }
    .corona-update .section-head .hash-tag {
      display: block;
      font-weight: bold;
      font-size: 1.6rem;
      color: #dbff8f; }
    .corona-update .section-head .title {
      font-size: 3.2rem;
      line-height: 3.5rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0; }
  .corona-update .section-content p {
    font-size: 2rem;
    line-height: 3.5rem; }
  .corona-update .section-content .arrow-btn {
    line-height: 3.5rem;
    color: #fff; }
    .corona-update .section-content .arrow-btn:hover {
      color: #dbff8f; }
  .corona-update .section-content .logos {
    margin-top: 2.4rem; }
    .corona-update .section-content .logos .health {
      width: 4.6rem;
      margin-left: 2.8rem; }
    .corona-update .section-content .logos .balady {
      width: 15.2rem; }

/* News Section
======================= */
.news .section-content > .container {
  position: relative; }

.news .section-content .slider-action {
  bottom: 0;
  left: 15px;
  padding: 0 16px 55px 0;
  color: #3c3c3b; }

.news .owl-nav {
  bottom: 55px;
  left: 100px; }

.news .slide-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .news .slide-item .item-img {
    width: 50%; }
    .news .slide-item .item-img img {
      height: 100%; }
  .news .slide-item .item-caption {
    padding: 4.8rem 1.6rem;
    width: 50%;
    background-color: #f8f8f8;
    border-radius: 2px; }
    .news .slide-item .item-caption .caption-date {
      font-weight: bold;
      font-size: 1rem;
      color: #3c3c3b;
      margin-bottom: 8px; }
    .news .slide-item .item-caption .caption-title {
      font-size: 2rem;
      line-height: 3rem;
      font-weight: 900;
      color: #00726f;
      margin-bottom: 1.6rem; }
    .news .slide-item .item-caption p {
      color: #3c3c3b;
      font-size: 1.8rem;
      line-height: 3rem;
      font-weight: 300;
      margin-bottom: 1.4rem; }
    .news .slide-item .item-caption .arrow-btn {
      margin-bottom: 5.8rem; }

@media all and (max-width: 991.98px) {
  .news .owl-nav {
    left: 2rem; } }

@media all and (max-width: 767.98px) {
  .news .slide-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .news .slide-item .item-img {
      width: 100%;
      height: 320px; }
    .news .slide-item .item-caption {
      padding: 2.8rem 1.6rem;
      width: 100%; }
      .news .slide-item .item-caption .arrow-btn {
        margin-bottom: 3.8rem; }
  .news .section-content .slider-action {
    left: auto;
    right: 15px;
    width: calc(100% - 30px);
    padding-bottom: 0;
    bottom: 25px; }
  .news .owl-nav {
    bottom: 25px; } }

@media all and (max-width: 380px) {
  .news .slide-item .item-img {
    height: 200px; }
  .news .slide-item .item-caption .caption-title {
    font-size: 1.8rem;
    line-height: 2.5rem; }
  .news .slide-item .item-caption p {
    font-size: 1.6rem;
    line-height: 2.4rem; }
  .news .slide-item .item-caption .arrow-btn {
    margin-bottom: 2.5rem; }
  .news .owl-nav {
    left: 20px; }
  .news .slider-action .animated {
    width: 70%; } }

/* Regulations section
=====================*/
.regulations-section {
  background-color: #3c3c3b;
  padding: 4.8rem 0;
  text-align: center; }
  .regulations-section .section-head {
    color: #fff;
    margin-bottom: 3.2rem; }
    .regulations-section .section-head .title {
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 3.5rem;
      margin-bottom: 8px;
      color: #fff; }
    .regulations-section .section-head p {
      font-size: 1.6rem;
      font-weight: 300;
      line-height: 2.8rem;
      max-width: 768px;
      margin: auto; }
  .regulations-section .arrow-btn {
    color: #fff; }
    .regulations-section .arrow-btn:hover {
      color: #80bc00; }

/* workshops&Events
======================*/
.workshopsEvents .section-item > .title {
  font-size: 2.4rem;
  color: #00726f;
  margin-bottom: 2.4rem;
  font-weight: 900; }

.workshopsEvents .section-item .section-item-content {
  padding: 1.6rem 1.6rem 2.4rem;
  background-color: #f8f8f8;
  border-radius: 2px; }
  .workshopsEvents .section-item .section-item-content > .title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #3c3c3b; }
  .workshopsEvents .section-item .section-item-content .all-item {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3c3c3b;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .workshopsEvents .section-item .section-item-content .all-item:hover {
      color: #80bc00; }

.workshopsEvents .section-item .initiative-item {
  margin-bottom: 3.2rem; }
  .workshopsEvents .section-item .initiative-item > .title {
    color: #00726f;
    font-weight: 900;
    font-size: 2rem;
    line-height: 3.5rem;
    margin-bottom: 6px; }
  .workshopsEvents .section-item .initiative-item > p {
    font-size: 1.8rem;
    color: #182842;
    font-weight: 300;
    line-height: 2.9rem; }

.workshopsEvents .section-item .workShops {
  position: relative;
  padding: 0 0 2.4rem;
  background-color: #182842;
  border-radius: 2px;
  overflow: hidden; }
  .workshopsEvents .section-item .workShops .slide-item .item-img {
    height: 250px; }
    .workshopsEvents .section-item .workShops .slide-item .item-img img {
      height: 100%; }
  .workshopsEvents .section-item .workShops .slide-item .item-caption {
    padding: 24px 16px 14px;
    color: #fff; }
    .workshopsEvents .section-item .workShops .slide-item .item-caption .caption-label {
      font-size: 1.6rem;
      font-weight: bold;
      line-height: 3rem;
      margin-bottom: .5rem; }
    .workshopsEvents .section-item .workShops .slide-item .item-caption .caption-title {
      font-size: 2rem;
      font-weight: 900;
      line-height: 3.5rem;
      margin-bottom: .5rem; }
    .workshopsEvents .section-item .workShops .slide-item .item-caption p {
      font-size: 1.8rem;
      line-height: 3rem;
      font-weight: 300;
      margin-bottom: 2.4rem; }
    .workshopsEvents .section-item .workShops .slide-item .item-caption .arrow-btn {
      margin-bottom: 82px;
      color: #fff; }
      .workshopsEvents .section-item .workShops .slide-item .item-caption .arrow-btn .arrow svg {
        fill: #fff; }
      .workshopsEvents .section-item .workShops .slide-item .item-caption .arrow-btn:hover {
        color: #80bc00; }
        .workshopsEvents .section-item .workShops .slide-item .item-caption .arrow-btn:hover .arrow svg {
          fill: #80bc00; }
  .workshopsEvents .section-item .workShops .all-btn {
    color: #fff;
    margin-right: 1.6rem;
    font-size: 1.2rem;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .workshopsEvents .section-item .workShops .all-btn:hover {
      color: #80bc00; }
  .workshopsEvents .section-item .workShops .slider-action {
    width: calc(80% - 15px);
    bottom: 94px;
    right: 10px;
    padding: 0 16px 0px 0; }
    .workshopsEvents .section-item .workShops .slider-action .animated {
      width: 100%; }
  .workshopsEvents .section-item .workShops .owl-nav {
    left: 1.8rem; }
    .workshopsEvents .section-item .workShops .owl-nav .owl-prev svg,
    .workshopsEvents .section-item .workShops .owl-nav .owl-next svg {
      fill: #fff;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .workshopsEvents .section-item .workShops .owl-nav .owl-prev svg:hover,
      .workshopsEvents .section-item .workShops .owl-nav .owl-next svg:hover {
        fill: #80bc00; }

@media all and (max-width: 991.98px) {
  .workshopsEvents .section-item .section-item-content {
    margin-bottom: 3rem; } }

@media all and (max-width: 767.98px) {
  .workshopsEvents .section-item .workShops .slide-item .item-caption .arrow-btn {
    margin-bottom: 4rem; }
  .workshopsEvents .section-item .workShops .slider-action {
    bottom: 65px; }
  .workshopsEvents .section-item .workShops .owl-nav {
    bottom: 65px; } }

/* openData-section
======================*/
.openData-section {
  padding: 5.2rem 0 4.8rem;
  background-color: #f8f8f8; }
  .openData-section .section-head {
    margin-bottom: 2.4rem; }
    .openData-section .section-head .title {
      margin-bottom: 8px; }
    .openData-section .section-head p {
      max-width: 633px;
      margin: auto; }

.all-services-page {
  padding: 3.2rem 0; }
  .all-services-page .box-item {
    margin-bottom: 2rem; }
  .all-services-page .tab-content > .tab-pane {
    height: auto; }
  .all-services-page .search-services {
    margin-bottom: 4rem; }
    .all-services-page .search-services .title {
      color: #00726f;
      font-size: 2.4rem;
      line-height: 3.5rem;
      font-weight: 900;
      margin-bottom: 2.4rem; }
  @media all and (max-width: 767.98px) {
    .all-services-page .search-services {
      margin-bottom: 2rem; } }

/*service-page*/
.service-page {
  padding: 2.4rem 0; }

/*content-item*/
.content-item {
  margin-bottom: 3.2rem; }
  .content-item p {
    color: #3c3c3b;
    font-size: 1.6rem;
    line-height: 2.7rem; }
  .content-item .content-item__list,
  .content-item ul {
    padding: 0;
    list-style: none;
    margin-bottom: 3.2rem; }
    .content-item .content-item__list li,
    .content-item ul li {
      position: relative;
      padding-right: 1.2rem;
      color: #3c3c3b;
      font-size: 1.6rem;
      line-height: 2.7rem; }
      .content-item .content-item__list li:before,
      .content-item ul li:before {
        content: "";
        position: absolute;
        top: 13px;
        right: 0;
        width: 6px;
        height: 6px;
        border-radius: 100%;
        background-color: #80bc00; }

.video-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.6rem; }
  .video-item .video-bg {
    width: 100%; }
  .video-item .video-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(24, 40, 66, 0.5); }
    .video-item .video-text .btn-play {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 53px;
      height: 53px;
      border-radius: 100%;
      margin-bottom: 1rem;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .video-item .video-text .btn-play:hover {
        background-color: #80bc00;
        color: #fff; }
      .video-item .video-text .btn-play .fa-play {
        font-size: 2rem;
        margin-left: 5px;
        margin-top: 2px; }
    .video-item .video-text p {
      color: #fff;
      font-size: 1.6rem;
      line-height: 2.7rem; }

.attachments {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.6rem; }
  .attachments .attachment-item {
    width: 32%;
    text-align: center;
    border-radius: 7.7px;
    border: 2px dashed #f1f1f1;
    padding: 5px 5px 11px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .attachments .attachment-item:hover {
      background-color: #00726f;
      border-color: #00726f; }
      .attachments .attachment-item:hover .attach-title {
        color: #fff; }
    .attachments .attachment-item .attach-icon {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 58px;
      height: 58px;
      background-color: #F9F9F9;
      border: 5px solid #F9F9F9;
      margin: 0 auto 1rem;
      border-radius: 100%; }
      .attachments .attachment-item .attach-icon img {
        width: 24px; }
    .attachments .attachment-item .attach-title {
      font-size: 1.15rem;
      color: #767b7e;
      margin-bottom: 0;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }

.service-app {
  background-color: #00726f;
  padding: 1rem;
  border-radius: 2px; }
  .service-app .app-logo {
    margin-bottom: 1rem;
    width: 7rem; }
  .service-app .title {
    color: #fff;
    font-size: 1.6rem; }
  .service-app p {
    color: #fff;
    font-size: 1.2rem; }
  .service-app .app-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .service-app .app-btns a {
      display: block;
      width: 75px;
      margin-left: 8px; }
      .service-app .app-btns a:last-child {
        margin-left: 0; }
  .service-app .qr-code {
    width: 50px;
    margin-left: 1rem; }

/*inline-text with icon*/
.inline-text-icon {
  position: relative;
  margin-bottom: 3.2rem; }
  .inline-text-icon .icon {
    float: right;
    width: 45px; }
  .inline-text-icon > p {
    padding-right: 73px; }

/*controls*/
.accessabilty-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.2rem; }
  .accessabilty-controls .update-text {
    color: #182842;
    margin-left: 3.2rem; }
  .accessabilty-controls .controls-list {
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #f8f8f8;
    border-radius: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 30px; }
    .accessabilty-controls .controls-list .control-item {
      position: relative;
      color: #989898;
      display: block;
      font-size: 1.6rem;
      margin: 0 1.6rem;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .accessabilty-controls .controls-list .control-item:hover {
        color: #00726f; }
        .accessabilty-controls .controls-list .control-item:hover .contorl-text {
          opacity: 1;
          visibility: visible;
          top: -40px; }
      .accessabilty-controls .controls-list .control-item .contorl-text {
        position: absolute;
        top: -50px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        color: #fff;
        background-color: #00726f;
        padding: 3px 16px 6px;
        display: block;
        border-radius: 15px;
        font-size: 1.2rem;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: top .3s ease-in-out, opacity .1s ease-in-out;
        transition: top .3s ease-in-out, opacity .1s ease-in-out; }
        .accessabilty-controls .controls-list .control-item .contorl-text:after {
          content: "";
          position: absolute;
          bottom: -14px;
          left: 50%;
          border-style: solid;
          border-width: 7px;
          border-color: #36726f transparent transparent;
          -webkit-transform: translate(-50%, 0px);
              -ms-transform: translate(-50%, 0px);
                  transform: translate(-50%, 0px); }
    .accessabilty-controls .controls-list .dropdown:hover .controls-dropdown-menu {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      z-index: 1; }
  .accessabilty-controls .controls-dropdown-menu {
    position: absolute;
    top: 30px;
    right: 0;
    padding: 5px;
    border-radius: 2px;
    background-color: #f8f8f8;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transform: translateY(-2rem);
        -ms-transform: translateY(-2rem);
            transform: translateY(-2rem);
    will-change: transform, opacity;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .accessabilty-controls .controls-dropdown-menu .social-share {
      padding: 0;
      margin: 0;
      list-style: none;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .accessabilty-controls .controls-dropdown-menu .social-share li .social-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 3rem;
        height: 3rem;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        color: #00726f;
        font-size: 16px; }
  @media all and (max-width: 475px) {
    .accessabilty-controls {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .accessabilty-controls .update-text {
        margin-left: 0;
        margin-bottom: 2rem; }
      .accessabilty-controls .controls-list {
        padding: 8px 10px; }
        .accessabilty-controls .controls-list .control-item {
          margin: 0 1rem; } }

/*image hover*/
.image-hover {
  position: relative;
  display: block;
  margin: 0;
  max-width: 100%;
  color: #666;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }
  .image-hover:before, .image-hover:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-color: rgba(230, 230, 230, 0.3);
    -webkit-transition: all .6s ease;
    transition: all .6s ease; }
  .image-hover:after {
    top: 0;
    left: 0;
    -webkit-transform: skew(45deg) translateX(-100%);
        -ms-transform: skew(45deg) translateX(-100%);
            transform: skew(45deg) translateX(-100%); }
  .image-hover:before {
    right: 0;
    bottom: 0;
    -webkit-transform: skew(45deg) translateX(100%);
        -ms-transform: skew(45deg) translateX(100%);
            transform: skew(45deg) translateX(100%); }
  .image-hover:hover:before, .image-hover:hover:after {
    -webkit-transform: skew(40deg) translateX(0);
        -ms-transform: skew(40deg) translateX(0);
            transform: skew(40deg) translateX(0); }

/*btns-container*/
.btns-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .btns-container .download-btn {
    margin-left: 1rem;
    margin-bottom: 1rem;
    min-width: 220px; }
    .btns-container .download-btn:last-child {
      margin-left: 0;
      margin-bottom: 0; }
    .btns-container .download-btn svg path {
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      stroke: #006d69; }
    .btns-container .download-btn:hover svg path {
      stroke: #fff; }

/* minister-word
========================*/
/*prime-name*/
.prime-name {
  padding: 1rem;
  background-color: #f8f8f8;
  text-align: center;
  border-radius: 0 0 4px 4px; }

@media all and (max-width: 991.98px) {
  .minister-word > .container > .row > .col-lg-5 {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
    .minister-word > .container > .row > .col-lg-5 .prime-image,
    .minister-word > .container > .row > .col-lg-5 .prime-name {
      width: 70%;
      margin: auto; }
    .minister-word > .container > .row > .col-lg-5 .prime-name {
      margin-bottom: 2rem; }
  .minister-word .download-btn {
    width: 100%; } }

@media all and (max-width: 425px) {
  .minister-word > .container > .row > .col-lg-5 .prime-image,
  .minister-word > .container > .row > .col-lg-5 .prime-name {
    width: 100%; }
    .minister-word > .container > .row > .col-lg-5 .prime-image .title-lg,
    .minister-word > .container > .row > .col-lg-5 .prime-name .title-lg {
      font-size: 2rem; } }

/*data-content-list*/
.data-content-list {
  padding: 0;
  margin: 0;
  list-style: none; }
  .data-content-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #f8f8f8;
    padding: 15px 15px;
    margin-bottom: 1rem;
    color: #000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .data-content-list li:last-child {
      margin-bottom: 0; }
    .data-content-list li p {
      margin: 0;
      font-size: 1.8rem; }
    .data-content-list li .icon-btn {
      border: 0;
      background-color: transparent;
      padding: 7px;
      border-radius: 4px;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .data-content-list li .icon-btn:hover {
        background-color: #00726f; }
        .data-content-list li .icon-btn:hover .btn-icon-type svg path {
          stroke: #fff; }
      .data-content-list li .icon-btn .btn-icon-type svg path {
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
  .data-content-list.with-list-hover li:hover {
    background-color: #00726f;
    color: #fff; }
    .data-content-list.with-list-hover li:hover .icon-btn .btn-icon-type svg path {
      stroke: #fff; }

/* single-open-data page
==========================*/
.single-open-data .tab-content > .tab-pane {
  height: auto; }

/* alphpet-page
=========================*/
.alphapet-controls {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  z-index: 10;
  background-color: #fff; }

#main-content.sticky .alphapet-controls {
  min-height: 100px;
  padding-top: 20px; }
  #main-content.sticky .alphapet-controls .controls-list.alphapet li.active .control-item {
    color: #00726f; }

#main-content.sticky .scroll-wrappper {
  margin-top: 10px; }

/* media-page
=========================*/
.media-page .tab-content > .tab-pane {
  height: auto; }

.media-page .nav.nav-tabs.default-style .nav-link {
  width: auto;
  height: auto;
  min-width: 150px;
  font-size: 2.2rem;
  padding: 7px 20px 15px; }

/* single-gallery
====================*/
.single-gallery .hover-effect {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 2px; }
  .single-gallery .hover-effect img {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .single-gallery .hover-effect:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(54, 114, 111, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .single-gallery .hover-effect .gallery-open {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 22px;
    color: #80bc00;
    z-index: 1;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .single-gallery .hover-effect:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2); }
  .single-gallery .hover-effect:hover:after {
    opacity: 1;
    visibility: visible; }
  .single-gallery .hover-effect:hover .gallery-open {
    opacity: 1;
    visibility: visible;
    top: 50%; }

/* general-search-result
===================*/
.general-search-result {
  margin: 2rem 0; }
  .general-search-result li {
    margin-bottom: 1.5rem; }
    .general-search-result li .title {
      margin-bottom: 1rem; }
      .general-search-result li .title a {
        color: #00726f;
        font-size: 1.8rem; }
    .general-search-result li p strong {
      color: #80bc00;
      font-weight: 900; }

/* about-slider
=======================*/
.about-slider {
  position: relative;
  background-color: #f8f8f8;
  padding: 1.5rem;
  height: 45rem;
  margin-bottom: 2rem; }
  .about-slider .slide-item img {
    height: 37rem;
    width: 100%;
    -webkit-transform: scale(0.99);
        -ms-transform: scale(0.99);
            transform: scale(0.99); }
  .about-slider .slider-action {
    width: calc(100% - 15px);
    bottom: 2rem;
    right: 0;
    padding: 0 1.5rem; }
    .about-slider .slider-action .slider-counter {
      color: #000; }
  .about-slider .owl-nav {
    bottom: 2rem;
    left: 1.5rem; }

.structure .organizational-chart {
  position: relative;
  text-align: center;
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .structure .organizational-chart div:first-of-type:nth-last-of-type(3),
  .structure .organizational-chart div:first-of-type:nth-last-of-type(3) ~ div {
    width: calc((100% / 3) - 2em - 4px); }
  .structure .organizational-chart .prime-content {
    position: relative; }
    .structure .organizational-chart .prime-content::before {
      content: '';
      width: 110%;
      height: 2px;
      background: #d5d5d5;
      position: absolute;
      top: 60px;
      left: 15px;
      right: -15px;
      z-index: -1; }
    .structure .organizational-chart .prime-content::after {
      content: '';
      width: 2px;
      height: calc(100% - 382px);
      background: #d5d5d5;
      position: absolute;
      top: 100%;
      left: 50%;
      right: 50%;
      z-index: -1; }
    .structure .organizational-chart .prime-content .prime .prime-image {
      max-width: 200px;
      height: 200px;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      margin-bottom: 30px;
      border: 10px solid #182842; }
    .structure .organizational-chart .prime-content .prime .prime-title {
      position: absolute;
      top: 165px;
      right: 20%;
      width: 50px;
      height: 50px;
      background: #82bd41;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      color: #fff;
      font-weight: bold; }
    .structure .organizational-chart .prime-content .prime::after {
      content: '';
      width: 2px;
      height: calc(100% - 480px);
      background: #d5d5d5;
      position: absolute;
      top: 207px;
      left: 50%;
      right: 50%;
      z-index: -1; }
    .structure .organizational-chart .prime-content .ministry-logo img {
      max-width: 200px;
      height: auto;
      margin: 20px 0; }

.structure .blocks {
  position: relative;
  margin-top: 50px !important; }
  .structure .blocks .block {
    position: relative;
    background-color: #f7f7f7;
    padding: 15px 10px !important;
    border-left: 7px solid #95cbc9;
    margin-bottom: 20px !important;
    font-size: 1.4rem; }
    .structure .blocks .block:first-of-type {
      font-weight: 900;
      border-left: 7px solid #a2c67b; }
    .structure .blocks .block:nth-of-type(2) {
      border-left: 7px solid #259c97; }
    .structure .blocks .block:not(:first-of-type):after {
      content: '';
      width: 30px;
      height: 2px;
      background: #d5d5d5;
      position: absolute;
      top: 50%;
      left: -60px;
      z-index: -1; }
  .structure .blocks:last-of-type .block {
    margin-right: 0 !important;
    border-left: 0px !important;
    border-right: 7px solid #95cbc9; }
    .structure .blocks:last-of-type .block:first-of-type {
      font-weight: 900;
      border-right: 7px solid #a2c67b; }
    .structure .blocks:last-of-type .block:nth-of-type(2) {
      border-right: 7px solid #259c97; }
    .structure .blocks:last-of-type .block:not(:first-of-type):after {
      left: auto;
      right: -60px; }
  .structure .blocks:first-of-type::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -55px;
    width: 2px;
    height: calc(100% - 53px);
    background: #d5d5d5; }
  .structure .blocks:last-of-type::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -55px;
    width: 2px;
    height: calc(100% - 53px);
    background: #d5d5d5; }

.structure ol.card-blocks {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding: 0;
  padding-top: 2rem;
  list-style: none; }
  .structure ol.card-blocks ul, .structure ol.card-blocks li {
    list-style: none; }
  .structure ol.card-blocks:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #d5d5d5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1; }
  .structure ol.card-blocks li,
  .structure ol.card-blocks li > div {
    position: relative; }
  .structure ol.card-blocks > li {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 1em; }
    .structure ol.card-blocks > li:last-of-type .block {
      border-right: 0 !important;
      border-left: 7px solid #182842 !important; }
      .structure ol.card-blocks > li:last-of-type .block:before {
        left: -36px;
        right: auto; }
    .structure ol.card-blocks > li:last-of-type .blocks::after {
      left: -28px;
      right: auto;
      width: 2px; }
  .structure ol.card-blocks .block {
    border-right: 7px solid #182842 !important; }
    .structure ol.card-blocks .block:before {
      content: '';
      width: 13px;
      height: 2px;
      background: #d5d5d5;
      position: absolute;
      top: 50%;
      right: -36px;
      z-index: -1; }
  .structure ol.card-blocks .blocks {
    margin-top: 20px !important; }
    .structure ol.card-blocks .blocks:after {
      top: -52px;
      right: -28px;
      height: 105%; }
    .structure ol.card-blocks .blocks .block-card {
      border: 1px solid #f2f2f2;
      margin-bottom: 40px; }
      .structure ol.card-blocks .blocks .block-card ul {
        position: relative;
        text-align: right;
        list-style-type: none;
        padding-right: 4rem; }
        .structure ol.card-blocks .blocks .block-card ul:before {
          content: '';
          height: 100%;
          width: 2px;
          background: #d5d5d5;
          position: absolute;
          top: 0;
          left: 0;
          right: 20px;
          z-index: -1; }
        .structure ol.card-blocks .blocks .block-card ul li {
          color: #777779;
          margin-bottom: 2rem; }
          .structure ol.card-blocks .blocks .block-card ul li:first-of-type {
            margin-top: 10px; }
          .structure ol.card-blocks .blocks .block-card ul li:after {
            content: '';
            height: 10px;
            width: 10px;
            background: #f88540;
            position: absolute;
            top: 10px;
            left: 0;
            right: -24px;
            z-index: -1; }

@media all and (max-width: 991.98px) {
  .structure .organizational-chart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .structure .organizational-chart div:first-of-type:nth-last-of-type(3),
    .structure .organizational-chart div:first-of-type:nth-last-of-type(3) ~ div {
      width: 100%; }
    .structure .organizational-chart .prime-content {
      max-width: 320px;
      margin: 0 auto;
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
          -ms-flex-order: -1;
              order: -1; }
      .structure .organizational-chart .prime-content:before {
        display: none; }
      .structure .organizational-chart .prime-content:after {
        height: 200%; }
  .structure ol.card-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .structure ol.card-blocks:after {
      display: none; }
  .structure .blocks:last-of-type .block:first-of-type {
    text-align: center; } }

.news-item {
  display: block;
  background-color: #fbfbfb;
  margin-bottom: 2rem; }
  .news-item__image {
    min-height: 250px; }
    .news-item__image.fixed-height {
      height: 250px; }
      .news-item__image.fixed-height img {
        height: 100%; }
  .news-item__content {
    padding: 1.6rem;
    height: 230px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .news-item__content .news-date {
      font-size: 1rem;
      font-weight: 600; }
    .news-item__content .news-text {
      font-size: 1.8rem;
      line-height: 3rem; }
  .news-item.sm-news .news-item__image {
    min-height: 220px; }
  .news-item.sm-news .news-item__content {
    height: 210px; }
    .news-item.sm-news .news-item__content .title-lg {
      font-size: 1.6rem;
      line-height: 2.6rem; }
    .news-item.sm-news .news-item__content .news-text {
      font-size: 1.4rem;
      line-height: 2.4rem; }
    .news-item.sm-news .news-item__content.no--text {
      height: 140px; }
  .news-item.with-hover:hover .news-item__image .hover:after {
    opacity: 1;
    visibility: visible; }
  .news-item.with-hover:hover .news-item__image .hover .hover-item {
    opacity: 1; }
    .news-item.with-hover:hover .news-item__image .hover .hover-item:nth-child(1) {
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
    .news-item.with-hover:hover .news-item__image .hover .hover-item:nth-child(2) {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    .news-item.with-hover:hover .news-item__image .hover .hover-item:nth-child(3) {
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
    .news-item.with-hover:hover .news-item__image .hover .hover-item:nth-child(4) {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
  .news-item.with-hover .news-item__image {
    position: relative; }
    .news-item.with-hover .news-item__image .hover {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
      .news-item.with-hover .news-item__image .hover:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .news-item.with-hover .news-item__image .hover .hover-item {
        position: absolute;
        background-color: #80bc00;
        opacity: 0;
        z-index: 1;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .news-item.with-hover .news-item__image .hover .hover-item:nth-child(1) {
          top: 20px;
          left: 10px;
          width: calc(100% - 20px);
          height: 3px;
          -webkit-transform: translateX(-100%);
              -ms-transform: translateX(-100%);
                  transform: translateX(-100%); }
        .news-item.with-hover .news-item__image .hover .hover-item:nth-child(2) {
          top: 10px;
          right: 20px;
          width: 3px;
          height: calc(100% - 20px);
          -webkit-transform: translateY(-100%);
              -ms-transform: translateY(-100%);
                  transform: translateY(-100%); }
        .news-item.with-hover .news-item__image .hover .hover-item:nth-child(3) {
          bottom: 20px;
          left: 10px;
          width: calc(100% - 20px);
          height: 3px;
          -webkit-transform: translateX(100%);
              -ms-transform: translateX(100%);
                  transform: translateX(100%); }
        .news-item.with-hover .news-item__image .hover .hover-item:nth-child(4) {
          top: 10px;
          left: 20px;
          width: 3px;
          height: calc(100% - 20px);
          -webkit-transform: translateY(100%);
              -ms-transform: translateY(100%);
                  transform: translateY(100%); }
  .news-item.video-item .video-text {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .news-item.video-item .video-text .btn-play {
      display: block;
      margin-bottom: 2rem;
      -webkit-transition: 0;
      transition: 0; }
  .news-item.video-item:hover .video-text {
    top: 0;
    opacity: 1;
    visibility: visible; }
  .news-item.video-item .news-item__content {
    height: 90px; }
  .news-item.media-img .news-item__content {
    height: 70px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  @media all and (max-width: 991.98px) {
    .news-item.sm-news .news-item__image,
    .news-item .news-item__image {
      min-height: auto; }
      .news-item.sm-news .news-item__image.fixed-height,
      .news-item .news-item__image.fixed-height {
        height: auto; }
        .news-item.sm-news .news-item__image.fixed-height img,
        .news-item .news-item__image.fixed-height img {
          height: auto;
          width: 100%; }
    .news-item.sm-news .news-item__content,
    .news-item .news-item__content {
      height: auto; }
      .news-item.sm-news .news-item__content .title-lg,
      .news-item .news-item__content .title-lg {
        font-size: 1.6rem;
        line-height: 2.6rem; } }
  @media all and (max-width: 425px) {
    .news-item.sm-news .news-item__image.fixed-height,
    .news-item .news-item__image.fixed-height {
      height: 200px; }
      .news-item.sm-news .news-item__image.fixed-height img,
      .news-item .news-item__image.fixed-height img {
        height: 100%; } }

/*single-news*/
.single-news__image {
  position: relative;
  max-height: 485px;
  margin-bottom: 2.4rem;
  overflow: hidden; }

.single-news__content {
  font-size: 1.6rem;
  line-height: 2.7rem;
  font-weight: 300; }

body.invert-active {
  -webkit-filter: invert(100%);
          filter: invert(100%); }
  body.invert-active img {
    -webkit-filter: invert(100%);
            filter: invert(100%); }

/*# sourceMappingURL=app.css.map */
