@charset "UTF-8";
.header {
  width: 100%;
  position: relative;
  z-index: 1000;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  background: #fff;
  box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.04); }
  .header ::-webkit-scrollbar {
    width: 1px; }
  .header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-top: -44px; }
    .header.sticky .menu-item {
      padding: 24px 0px; }
      @media (max-width: 991px) {
        .header.sticky .menu-item {
          padding: 0px; } }
    .header.sticky .logo img {
      max-width: 90px; }
      @media (max-width: 991px) {
        .header.sticky .logo img {
          max-width: 90px; } }
    .header.sticky .icon .dropdown .dropdown-menu.show {
      top: 52px !important; }
  .header .min-header {
    display: flex;
    align-items: center;
    background: #f3f3ff;
    height: 44px; }
    @media (max-width: 550px) {
      .header .min-header {
        padding: 4px 0px; } }
    .header .min-header .content {
      display: flex;
      align-items: center; }
      .header .min-header .content p {
        color: #202043;
        padding-left: 12px;
        margin-left: 12px;
        border-left: 1px solid #202043;
        height: 12px;
        line-height: 12px;
        font-weight: 400; }
        @media (max-width: 767px) {
          .header .min-header .content p {
            display: none; } }
        .header .min-header .content p:last-child {
          padding-left: 0px;
          margin-left: 0px;
          border-left: 0px; }
    .header .min-header .linkstop {
      display: flex; }
      @media (max-width: 767px) {
        .header .min-header .linkstop {
          width: 100%;
          justify-content: center; } }
      .header .min-header .linkstop a {
        display: flex;
        align-items: center;
        height: 12px;
        line-height: 12px;
        padding-left: 12px;
        margin-left: 12px;
        border-left: 1px solid #202043;
        font-weight: 400;
        color: #202043;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 767px) {
          .header .min-header .linkstop a {
            font-size: 12px;
            padding-left: 4px;
            margin-left: 4px; } }
        .header .min-header .linkstop a svg {
          margin-left: 4px;
          width: 14px;
          fill: #ffffffbf;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .header .min-header .linkstop a:hover {
          color: #008fc7; }
        .header .min-header .linkstop a:last-child {
          padding: 0px;
          border: 0px;
          margin: 0px; }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (max-width: 991px) {
    .header .logo {
      margin: 8px 0px; } }
  .header .logo img {
    max-width: 102px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 1199px) {
      .header .logo img {
        max-width: 90px; } }
  .header .navbar {
    padding: 0px; }
    .header .navbar .cancel {
      display: none;
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 10; }
      .header .navbar .cancel svg {
        width: 18px;
        height: 18px; }
    @media screen and (max-width: 991px) {
      .header .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow: hidden;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0px 10px 40px 0px #06163a1a;
        background: #E5E5E5;
        transition: all 0.5s ease; }
        .header .navbar .menu-link {
          color: #202043; }
          .header .navbar .menu-link svg {
            fill: #202043; }
        .header .navbar.active {
          right: 0rem;
          opacity: 1;
          visibility: visible; }
        .header .navbar .cancel {
          display: block; } }
  .header .menu-item {
    position: relative;
    display: inline-block;
    margin: 0px 6px;
    padding: 32px 0px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 1199px) {
      .header .menu-item {
        margin: 0px; } }
  .header .menu-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: 600;
    line-height: inherit;
    cursor: pointer;
    color: #202043;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .header .menu-link svg {
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  @media only screen and (min-width: 991px) {
    .header .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0); } }
  @media only screen and (max-width: 991px) {
    .header .menu {
      width: 100%;
      height: auto;
      padding: 1rem 0; }
      .header .menu-item {
        display: block;
        padding: 0px; }
      .header .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem; } }
  .header .menu .activelink .menu-link,
  .header .menu .menu-item:hover .menu-link {
    color: #008fc7; }
    .header .menu .activelink .menu-link svg,
    .header .menu .menu-item:hover .menu-link svg {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
      fill: #008fc7; }
  .header .submenu {
    position: absolute;
    top: 100%;
    right: 0px;
    min-width: 292px;
    height: auto;
    padding: 16px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    background: #fff !important;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #008fc7; }
    .header .submenu .submenu-item {
      display: block; }
    .header .submenu .submenu-link {
      position: relative;
      display: block;
      font-weight: 600;
      cursor: pointer;
      color: #202043;
      padding: 4px 0px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .header .submenu .submenu-link:hover {
        outline: none;
        color: #008fc7; }
    @media only screen and (max-width: 991px) {
      .header .submenu {
        position: relative;
        top: 0px;
        right: 0px;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: #f3f3f3 !important;
        border-radius: 0px;
        padding: 0px 20px; }
        .header .submenu .submenu-link {
          padding: 8px 0px 8px 20px; } }
  .header .burger {
    position: absolute;
    left: 12px;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent; }
    .header .burger-line {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 2px;
      opacity: 1;
      border: none;
      outline: none;
      background: #202043; }
      .header .burger-line:nth-child(1) {
        top: 0px; }
      .header .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 80%; }
      .header .burger-line:nth-child(3) {
        top: 1rem;
        width: 60%; }
    @media only screen and (max-width: 991px) {
      .header .burger {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65); }
    @media only screen and (max-width: 991px) {
      .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .icon {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .header .icon {
        margin-left: 40px; } }
    .header .icon .searchicon {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
      .header .icon .searchicon svg {
        width: 20px;
        height: 20px; }
        .header .icon .searchicon svg path {
          fill: #202043; }
    .header .icon .bottom {
      margin-right: 12px; }
    .header .icon .dropdown {
      margin-right: 24px; }
      .header .icon .dropdown:last-child {
        margin: 0px; }
      .header .icon .dropdown .dropdown-toggle {
        display: flex;
        line-height: 1;
        cursor: pointer;
        position: relative;
        width: 34px;
        height: 34px;
        overflow: hidden;
        border: 2px solid #fff;
        filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        margin-right: 16px; }
        .header .icon .dropdown .dropdown-toggle::after {
          display: none; }
        .header .icon .dropdown .dropdown-toggle img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .header .icon .dropdown .dropdown-menu.show {
        left: 0px !important;
        right: auto !important;
        padding: 0px;
        transform: none !important;
        top: 61px !important;
        margin: 0px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        border: 0px;
        padding-top: 6px;
        overflow: hidden;
        -webkit-border-radius: 0px 0px 5px 5px;
        border-radius: 0px 0px 5px 5px;
        background-clip: padding-box;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        z-index: 2;
        text-align: right; }
        @media (max-width: 991px) {
          .header .icon .dropdown .dropdown-menu.show {
            top: 46px !important; } }
        .header .icon .dropdown .dropdown-menu.show a {
          align-items: center;
          margin: 0px !important;
          padding: 8px 12px; }
          .header .icon .dropdown .dropdown-menu.show a svg,
          .header .icon .dropdown .dropdown-menu.show a img {
            width: 18px;
            margin-left: 8px; }
        .header .icon .dropdown .dropdown-menu.show .dropdown-item {
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s;
          background: none !important;
          color: #000; }
          .header .icon .dropdown .dropdown-menu.show .dropdown-item:last-child {
            border: 0px;
            border-top: 1px dotted #E5E5E5;
            padding: 12px; }
          .header .icon .dropdown .dropdown-menu.show .dropdown-item.active, .header .icon .dropdown .dropdown-menu.show .dropdown-item:hover {
            background: #E5E5E5 !important; }
  .header .showboxsearch {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    width: 444px;
    z-index: 1000; }
    @media (max-width: 991px) {
      .header .showboxsearch {
        top: 74px; } }
    @media (max-width: 550px) {
      .header .showboxsearch {
        width: calc(100% - 24px); } }
    .header .showboxsearch .formsearch {
      width: 100%;
      position: relative; }
    .header .showboxsearch .innersearch {
      display: flex;
      align-items: center;
      background: #f3f3ff;
      padding: 12px;
      -webkit-border-radius: 0px 0px 10px 10px;
      border-radius: 0px 0px 10px 10px;
      background-clip: padding-box; }
    .header .showboxsearch .form-control {
      height: 50px;
      width: 100%;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      background-clip: padding-box;
      border: 0px;
      box-shadow: none;
      outline: none;
      background: #fff;
      text-transform: none;
      padding: 0px;
      padding: 0px 12px 0px 70px;
      font-weight: 400; }
    .header .showboxsearch .bottom {
      position: absolute;
      top: 8px;
      left: 16px;
      width: 32px;
      height: 32px;
      padding: 0px;
      background: none;
      -webkit-border-radius: 0px;
      border-radius: 0px;
      background-clip: padding-box; }
      .header .showboxsearch .bottom::before {
        display: none; }
      .header .showboxsearch .bottom svg {
        max-width: 28px; }
        .header .showboxsearch .bottom svg path {
          fill: #008fc7; }
    .header .showboxsearch .advanced {
      color: #008fc7;
      text-decoration: underline;
      cursor: pointer;
      white-space: nowrap;
      text-overflow: ellipsis;
      margin-right: 12px; }

.bg-overlay {
  content: '';
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000c9;
  left: -100%;
  z-index: 1001;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .bg-overlay.active {
    left: 0px; }

.advancedsearch {
  position: fixed;
  right: -100%;
  top: 0px;
  background: #fff;
  z-index: 1002;
  width: 440px;
  height: 100%;
  padding: 16px;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }
  .advancedsearch.active {
    right: 0px; }
  @media (max-width: 991px) {
    .advancedsearch {
      width: 294px; } }
  .advancedsearch .mindead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 16px; }
    .advancedsearch .mindead .title {
      font-size: 20px; }
    .advancedsearch .mindead .cancel {
      cursor: pointer; }
    .advancedsearch .mindead svg {
      width: 18px;
      height: 18px; }

.colors {
  display: flex;
  position: fixed;
  left: 0px;
  top: 32%;
  z-index: 100; }
  .colors .colors-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    border-radius: 0px 8px 8px 0px; }
    .colors .colors-toggle svg {
      width: 22px;
      height: 22px;
      -webkit-animation: rotation 3s infinite linear; }
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg); } }
  .colors .colorinner {
    display: none;
    background: #fff;
    width: 206px;
    padding: 16px;
    padding-bottom: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    border-radius: 0px 0px 8px 0px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); }
    .colors .colorinner .title {
      font-size: 18px;
      border-bottom: 1px solid #cccccc6b;
      padding-bottom: 12px; }
    .colors .colorinner .list {
      padding: 12px 0px; }
      .colors .colorinner .list a {
        display: flex;
        align-items: center;
        border: 0px !important;
        color: #202043;
        font-weight: 500;
        padding: 8px 0px !important; }
        .colors .colorinner .list a .bg {
          position: relative;
          display: block;
          min-width: 24px;
          max-width: 24px;
          height: 24px;
          background: #E5E5E5;
          margin-left: 8px;
          border-radius: 4px; }
          .colors .colorinner .list a .bg::after {
            content: "";
            position: absolute;
            left: 8px;
            top: 2px;
            width: 8px;
            height: 16px;
            border: solid #fff;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
            opacity: 0; }
          .colors .colorinner .list a .bg.blue {
            background: #008fc7; }
          .colors .colorinner .list a .bg.dark {
            background: #202043; }
          .colors .colorinner .list a .bg.rever {
            background: #ffafbd; }
          .colors .colorinner .list a .bg.contras {
            background: #474f47; }
        .colors .colorinner .list a.active .bg::after {
          opacity: 1; }

.slider {
  overflow: hidden; }
  .slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #11112480; }
  .slider .carousel-item img {
    width: 100%;
    height: calc(100vh - 134px);
    object-fit: cover; }
    @media (max-width: 991px) {
      .slider .carousel-item img {
        height: calc(100vh - 118px); } }
  .slider:hover .carousel-control-next {
    right: 24px; }
  .slider:hover .carousel-control-prev {
    left: 24px; }
  .slider .carousel-control-next,
  .slider .carousel-control-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    top: 50%;
    opacity: 1;
    background: #00000059;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 991px) {
      .slider .carousel-control-next,
      .slider .carousel-control-prev {
        display: none; } }
    .slider .carousel-control-next svg,
    .slider .carousel-control-prev svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .slider .carousel-control-next:hover,
    .slider .carousel-control-prev:hover {
      background: #008fc7; }
  .slider .carousel-control-next {
    right: -90px; }
  .slider .carousel-control-prev {
    left: -90px; }
    .slider .carousel-control-prev svg {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .slider .cen-text {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 100%;
    top: 0px;
    margin: 0px auto;
    text-align: center; }
    .slider .cen-text .title {
      font-size: 40px;
      color: #fff;
      font-weight: 900; }
      @media (max-width: 991px) {
        .slider .cen-text .title {
          font-size: 28px;
          font-weight: 700; }
          .slider .cen-text .title br {
            display: none; } }
    .slider .cen-text p {
      display: block;
      color: #fff;
      margin-top: 8px;
      font-size: 18px; }
      @media (max-width: 991px) {
        .slider .cen-text p {
          font-size: 16px; }
          .slider .cen-text p br {
            display: none; } }
    .slider .cen-text .bottom {
      margin-top: 16px; }
  .slider .carousel-indicators {
    margin: 0px auto;
    bottom: 24px;
    padding: 0px; }
    .slider .carousel-indicators li {
      background: #fff;
      width: 16px;
      margin: 0px 8px 0px 0px; }
      .slider .carousel-indicators li.active {
        background: #008fc7;
        width: 24px; }

.minhospitals {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  padding: 48px 0px 96px 0px; }
  @media (max-width: 991px) {
    .minhospitals {
      padding: 24px 0px; } }
  .minhospitals .item {
    margin-top: 48px; }
    @media (max-width: 991px) {
      .minhospitals .item {
        max-width: 50%;
        flex: 50%;
        margin-top: 24px; } }
    @media (max-width: 667px) {
      .minhospitals .item {
        max-width: 100%;
        flex: 100%; } }
    .minhospitals .item .inner {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      padding: 32px;
      background: #fff;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .minhospitals .item .inner:hover {
        transform: translateY(-8px); }
        .minhospitals .item .inner:hover::before {
          width: 100%; }
        .minhospitals .item .inner:hover .title,
        .minhospitals .item .inner:hover p {
          color: #fff; }
        .minhospitals .item .inner:hover .photo {
          border-radius: 50%; }
      .minhospitals .item .inner::before {
        width: 0;
        height: 100%;
        z-index: -1;
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        background-color: #008fc7;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minhospitals .item .inner .photo {
        width: 120px;
        height: 120px;
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        overflow: hidden;
        box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .minhospitals .item .inner .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .minhospitals .item .inner .title {
        font-size: 16px;
        margin-top: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minhospitals .item .inner p {
        max-width: inherit;
        width: 100%;
        text-align: right;
        margin-top: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }

.about {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .about {
      padding: 24px 0px; } }
  .about .photo {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden; }
    @media (max-width: 991px) {
      .about .photo {
        display: none; } }
    .about .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  @media (max-width: 991px) {
    .about .item {
      max-width: 100%;
      flex: 100%; } }
  .about .item .title {
    color: #008fc7; }
  .about .item p {
    font-size: 16px;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .about .item p {
        font-size: 14px; } }
  .about .item .bottom {
    margin-top: 24px; }

.mass {
  margin-top: 24px; }
  .mass:hover .icon {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background: #008fc7; }
    .mass:hover .icon svg {
      fill: #fff; }
  .mass .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .mass .icon svg {
      width: 26px;
      max-width: 26px;
      fill: #008fc7;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .mass .title {
    color: #202043;
    font-size: 18px;
    font-weight: 600; }
  .mass p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px; }

.numbers {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  padding: 64px 0px !important;
  overflow: hidden;
  background: #202043 url(../images/numbers.png) no-repeat fixed center center/cover; }
  @media (max-width: 991px) {
    .numbers {
      padding: 24px 0px; } }
  .numbers .row {
    position: relative;
    z-index: 10; }
  .numbers .item {
    text-align: center; }
    @media (max-width: 991px) {
      .numbers .item {
        max-width: 50%;
        flex: 50%;
        margin-bottom: 48px; }
        .numbers .item:nth-child(3), .numbers .item:nth-child(4) {
          margin: 0px; } }
    @media (max-width: 500px) {
      .numbers .item {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 24px !important; }
        .numbers .item:nth-child(4) {
          margin: 0px !important; } }
    .numbers .item .icon svg,
    .numbers .item .icon img {
      width: 58px;
      fill: #008fc7; }
    .numbers .item .timer {
      font-size: 38px;
      color: #fff;
      font-weight: 800;
      text-align: center; }
      @media (max-width: 1199px) {
        .numbers .item .timer {
          font-size: 30px; } }
    .numbers .item .flex {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 32px; }
      .numbers .item .flex span {
        display: block;
        margin: -32px 0px 0px 4px;
        font-weight: 300;
        font-size: 34px;
        color: #fff; }
    .numbers .item .title {
      color: #18AAE3;
      font-weight: 400;
      font-size: 16px;
      line-height: 1;
      margin-top: 32px; }

.minadvertis {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #f3f3ffb8; }
  @media (max-width: 991px) {
    .minadvertis {
      padding: 24px 0px; } }
  .minadvertis .row {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .minadvertis .row {
        margin: 0px; } }
  .minadvertis .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .minadvertis .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 667px) {
      .minadvertis .item {
        max-width: 100%;
        flex: 100%; } }
    .minadvertis .item .inner {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      padding: 32px;
      background: #fff;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .minadvertis .item .inner:hover {
        transform: translateY(-8px); }
        .minadvertis .item .inner:hover .title,
        .minadvertis .item .inner:hover p {
          color: #fff; }
        .minadvertis .item .inner:hover .photo {
          border-radius: 50%; }
        .minadvertis .item .inner:hover .img {
          opacity: 1; }
      .minadvertis .item .inner .img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .minadvertis .item .inner .img::after {
          content: '';
          position: absolute;
          top: 0;
          right: auto;
          bottom: auto;
          left: 0;
          width: 100%;
          height: 100%;
          background: #008fc7e3; }
        .minadvertis .item .inner .img img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .minadvertis .item .inner .photo {
        position: relative;
        width: 112px;
        height: 112px;
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        overflow: hidden;
        box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .minadvertis .item .inner .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .minadvertis .item .inner .title {
        font-size: 16px;
        margin-top: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minadvertis .item .inner p {
        position: relative;
        max-width: inherit;
        width: 100%;
        text-align: right;
        margin-top: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }

.minteams {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .minteams {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .minteams {
      padding-bottom: 48px; } }
  .minteams .teams-slider {
    position: relative;
    direction: ltr; }
    .minteams .teams-slider .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      outline: none;
      margin: 0px -12px; }
      .minteams .teams-slider .slick-list .slick-track {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        overflow: hidden; }
        .minteams .teams-slider .slick-list .slick-track:after, .minteams .teams-slider .slick-list .slick-track:before {
          display: table;
          content: ''; }
    .minteams .teams-slider .slick-prev,
    .minteams .teams-slider .slick-next {
      position: absolute;
      top: 54%;
      right: -42px;
      cursor: pointer;
      border: 0px;
      padding: 0px;
      outline: none;
      font-size: 0px;
      background: none; }
      @media (max-width: 1280px) {
        .minteams .teams-slider .slick-prev,
        .minteams .teams-slider .slick-next {
          display: none !important; } }
      .minteams .teams-slider .slick-prev svg,
      .minteams .teams-slider .slick-next svg {
        width: 18px;
        height: 18px;
        fill: #202043;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minteams .teams-slider .slick-prev:hover svg,
      .minteams .teams-slider .slick-next:hover svg {
        fill: #008fc7 !important; }
    .minteams .teams-slider .slick-prev {
      right: auto;
      left: -42px;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .minteams .teams-slider .slick-dots {
      position: absolute;
      bottom: -18px;
      left: 0px;
      width: 100%;
      padding: 0px;
      list-style: none;
      text-align: center;
      display: none !important; }
      @media (max-width: 1280px) {
        .minteams .teams-slider .slick-dots {
          display: block !important; } }
      .minteams .teams-slider .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0px 2px;
        padding: 0px;
        cursor: pointer;
        background: #c3c3c3; }
        .minteams .teams-slider .slick-dots li button {
          font-size: 0px;
          line-height: 0px;
          display: block;
          width: 20px;
          height: 3px;
          cursor: pointer;
          color: #E5E5E5;
          border: 0px;
          outline: none;
          background: transparent; }
      .minteams .teams-slider .slick-dots li.slick-active {
        background: #008fc7; }
    .minteams .teams-slider .slick-track {
      margin-top: 48px;
      padding-bottom: 24px; }
    .minteams .teams-slider .team-card {
      display: inline-block;
      text-align: center;
      direction: rtl;
      margin: 0px 12px; }
      .minteams .teams-slider .team-card:hover .team-img {
        border-radius: 10px 10px 0 0;
        background-color: #202043; }
        .minteams .teams-slider .team-card:hover .team-img img {
          border: 10px solid #202043;
          box-shadow: 0px 0px 20px 1px #3851a2; }
      .minteams .teams-slider .team-card:hover .team-card-text {
        background-color: #202043;
        border-radius: 0px 0px 10px 10px;
        box-shadow: none; }
        .minteams .teams-slider .team-card:hover .team-card-text .title,
        .minteams .teams-slider .team-card:hover .team-card-text p {
          color: #fff; }
      .minteams .teams-slider .team-card .team-img {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border-radius: 50%;
        padding: 24px;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
        .minteams .teams-slider .team-card .team-img img {
          width: 200px;
          height: 200px;
          object-fit: cover;
          border: 10px solid #f3f3ff;
          border-radius: 50%;
          -moz-transition: all 0.3s ease-in-out 0s;
          -o-transition: all 0.3s ease-in-out 0s;
          -webkit-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s; }
      .minteams .teams-slider .team-card .team-card-text {
        padding: 100px 20px 24px 20px;
        box-shadow: 0 10px 14px 5px #89adff0f;
        background: #fff;
        margin-top: -90px;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
        .minteams .teams-slider .team-card .team-card-text .title {
          font-size: 18px;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          overflow: hidden;
          -moz-transition: all 0.3s ease-in-out 0s;
          -o-transition: all 0.3s ease-in-out 0s;
          -webkit-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s; }
        .minteams .teams-slider .team-card .team-card-text p {
          max-width: inherit;
          width: 100%;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          margin-top: 4px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .minteams .teams-slider .team-card .team-card-text span {
          display: block;
          margin-top: 12px;
          color: #008fc7; }

.survey {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  padding: 100px 0px !important; }
  @media (max-width: 991px) {
    .survey {
      padding: 24px 0px; } }
  .survey .photo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%; }
    .survey .photo::before {
      content: '';
      position: absolute;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%;
      background: #11112480; }
    .survey .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .survey .inner {
    background-color: #fff;
    padding: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px; }
    @media (max-width: 991px) {
      .survey .inner {
        max-width: 100%;
        margin: 0px;
        padding: 24px; } }
    .survey .inner::before {
      content: '';
      position: absolute;
      z-index: -1;
      background: #ffffff;
      width: 96%;
      opacity: .62;
      height: 50%;
      bottom: -20px;
      left: 0;
      right: 0;
      margin: auto;
      border-radius: 3px; }
    .survey .inner .title {
      font-size: 28px; }
      @media (max-width: 991px) {
        .survey .inner .title {
          font-size: 24px; } }
    .survey .inner p {
      margin-top: 8px; }

.infosite {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .infosite {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .infosite .item {
      max-width: 100%;
      flex: 100%; }
      .infosite .item .hide {
        display: none; } }
  .infosite .item .photo {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    z-index: 10; }
  .infosite .item img {
    max-width: 100%; }
  .infosite .item .title {
    font-size: 26px;
    margin-top: 24px; }
  .infosite .item p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 32px; }
  .infosite .color {
    color: #008fc7;
    font-size: 20px !important; }
  .infosite .s-size {
    font-size: 16px !important; }
  .infosite .mass .title {
    font-size: 20px !important; }
  .infosite p {
    font-size: inherit; }
  .infosite .innercontent h1,
  .infosite .innercontent h2,
  .infosite .innercontent h3,
  .infosite .innercontent h4,
  .infosite .innercontent h5,
  .infosite .innercontent h6 {
    font-size: 32px;
    font-weight: 600;
    color: #202043;
    line-height: 160%;
    position: relative; }
    @media (max-width: 991px) {
      .infosite .innercontent h1,
      .infosite .innercontent h2,
      .infosite .innercontent h3,
      .infosite .innercontent h4,
      .infosite .innercontent h5,
      .infosite .innercontent h6 {
        font-size: 28px; } }
  .infosite .innercontent h2,
  .infosite .innercontent h3,
  .infosite .innercontent h4,
  .infosite .innercontent h5,
  .infosite .innercontent h6 {
    font-size: 18px; }
  .infosite ol,
  .infosite ul {
    padding: 0px;
    counter-reset: li;
    padding-right: 32px;
    margin-top: 12px; }
  .infosite ol li,
  .infosite ul li {
    list-style: decimal;
    /* Disable the normal item numbering */
    position: relative;
    margin-top: 8px;
    font-size: 16px; }
  .infosite ul li {
    list-style: disc; }
  @media (max-width: 767px) {
    .infosite .itemsline .sharnews .social {
      margin-top: 12px; } }
  .infosite .se-item {
    margin-top: 24px; }
    @media (max-width: 767px) {
      .infosite .se-item {
        max-width: 100%;
        flex: 100%;
        margin-top: 12px; } }
    .infosite .se-item .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      width: 100%;
      height: 100%;
      padding: 24px;
      background: #fff;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
      .infosite .se-item .inner .title {
        font-size: 16px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .infosite .se-item .inner .ceas {
        display: block;
        margin-top: 8px;
        font-weight: 500; }
        .infosite .se-item .inner .ceas.green {
          color: #008a3a; }
        .infosite .se-item .inner .ceas.red {
          color: #D1362A; }
      .infosite .se-item .inner svg {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        width: 28px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .infosite .se-item .inner:hover .title {
        color: #008fc7; }
      .infosite .se-item .inner:hover svg {
        margin-left: -4px;
        fill: #008fc7; }
  .infosite .awards {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .infosite .awards {
        max-width: 50%;
        flex: 50%;
        margin-top: 12px; } }
    @media (max-width: 667px) {
      .infosite .awards {
        max-width: 100%;
        flex: 100%; } }
    .infosite .awards .innerawards {
      display: block;
      width: 100%;
      height: 100%;
      background: #f3f3ff;
      padding: 20px;
      border-radius: 16px;
      padding-top: 0px;
      text-align: center;
      -moz-transition: all 0.3s ease-in-out 0s;
      -o-transition: all 0.3s ease-in-out 0s;
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
      .infosite .awards .innerawards .icon {
        margin: 0px auto;
        padding: 12px;
        background: #008fc72b;
        width: 100px;
        height: 100px;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        border-radius: 0px 0px 50% 50%; }
        .infosite .awards .innerawards .icon img {
          max-width: 100%; }
      .infosite .awards .innerawards .title {
        font-size: 20px;
        margin-top: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
      .infosite .awards .innerawards p {
        margin-top: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .infosite .awards .innerawards .btnbottom {
        justify-content: center;
        margin-top: 12px; }
      .infosite .awards .innerawards:hover {
        background: #fff;
        box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
        .infosite .awards .innerawards:hover .title {
          color: #008fc7; }
        .infosite .awards .innerawards:hover .icon {
          background: #008fc7; }
        .infosite .awards .innerawards:hover .btnbottom svg {
          margin-right: 8px; }
  .infosite .iframe {
    background: #fff;
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 24px; }
    @media (max-width: 991px) {
      .infosite .iframe {
        height: 250px; } }
    .infosite .iframe iframe {
      display: block;
      border: 0px;
      width: 100%;
      height: 100%; }
  .infosite .nav-tabs {
    width: 100%;
    border: 0px;
    overflow: hidden;
    flex-wrap: inherit;
    padding-right: 0px !important;
    margin-top: 24px;
    padding-bottom: 12px; }
    @media (max-width: 991px) {
      .infosite .nav-tabs {
        overflow-x: scroll; } }
    .infosite .nav-tabs li {
      position: relative;
      margin: 0px;
      margin-left: 20px;
      list-style: none !important; }
      .infosite .nav-tabs li:last-child {
        margin: 0px; }
      .infosite .nav-tabs li a {
        position: relative;
        border: 0px !important;
        font-weight: 600;
        padding: 0px;
        font-size: 16px;
        border-radius: 0px;
        color: #202043;
        white-space: nowrap;
        text-overflow: ellipsis;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .infosite .nav-tabs li a::after {
          content: "";
          position: absolute;
          bottom: -4px;
          right: 0px;
          width: 0px;
          height: 2px;
          background: #008fc7;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .infosite .nav-tabs li a:hover, .infosite .nav-tabs li a.active {
          background: none;
          color: #008fc7; }
          .infosite .nav-tabs li a:hover::after, .infosite .nav-tabs li a.active::after {
            width: 50%; }
  .infosite .requirement {
    padding: 0px !important; }
    .infosite .requirement li {
      display: flex;
      position: relative;
      color: #008fc7;
      margin-top: 0px !important;
      margin-bottom: 16px !important;
      list-style: none !important;
      border-bottom: 1px solid #e2e2ef;
      padding-bottom: 16px; }
      .infosite .requirement li:last-child {
        border: 0px;
        padding: 0px; }
      .infosite .requirement li svg {
        width: 24px;
        height: 24px;
        margin-left: 8px; }
      .infosite .requirement li .content .title {
        font-size: 16px !important;
        line-height: 20px; }

.p-center {
  text-align: center;
  max-width: 54%;
  margin: 12px auto 0px auto; }
  @media (max-width: 991px) {
    .p-center {
      max-width: 100%; } }

.numbersurvey .row {
  justify-content: center; }
.numbersurvey .itemnumber {
  margin-top: 48px;
  border-left: 1px solid #d9d9df; }
  .numbersurvey .itemnumber:last-child {
    border: 0px; }
  @media (max-width: 991px) {
    .numbersurvey .itemnumber {
      max-width: 50%;
      flex: 50%;
      margin-top: 24px; }
      .numbersurvey .itemnumber:nth-child(2) {
        border: 0px; } }
  @media (max-width: 500px) {
    .numbersurvey .itemnumber {
      max-width: 100%;
      flex: 100%;
      border: 0px; } }
  .numbersurvey .itemnumber .inner {
    width: 100%;
    text-align: center; }
  .numbersurvey .itemnumber .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 80px;
    height: 80px;
    background: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background-clip: padding-box;
    box-shadow: 4px 4px 60px #0000001a; }
    .numbersurvey .itemnumber .icon svg,
    .numbersurvey .itemnumber .icon img {
      width: 50px;
      fill: #008fc7; }
  .numbersurvey .itemnumber .timer {
    font-size: 42px;
    color: #000;
    font-weight: 800;
    color: #202043;
    margin-top: 32px; }
    @media (max-width: 1199px) {
      .numbersurvey .itemnumber .timer {
        font-size: 30px; } }
  .numbersurvey .itemnumber .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    margin-top: 24px; }

.minmenu {
  position: sticky;
  top: 100px;
  width: 100%;
  background: #f3f3ff;
  padding: 24px;
  border-radius: 16px; }
  .minmenu .title {
    font-size: 24px !important;
    margin: 0px !important; }
  .minmenu .list {
    margin-top: 24px; }
    .minmenu .list a {
      display: flex;
      font-weight: 600;
      margin-top: 16px;
      background: #fff;
      padding: 12px 16px;
      border-radius: 16px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .minmenu .list a:hover {
        background: #008fc7;
        color: #fff; }

.bg {
  background: #f3f3ffb8; }

.bg-inner {
  background: #f3f3ffb8;
  width: 100%;
  padding: 24px;
  border-radius: 16px; }
  @media (max-width: 991px) {
    .bg-inner {
      max-width: 100%; } }
  .bg-inner .oneitem {
    background: #fff;
    padding: 24px;
    padding-top: 0px; }
  @media (max-width: 991px) {
    .bg-inner .s-survey {
      max-width: 100%;
      flex: 100%;
      margin-bottom: 24px; }
      .bg-inner .s-survey:last-child {
        margin: 0px; } }
  .bg-inner .s-survey .innerbox {
    position: sticky;
    top: 100px; }

.services {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .services {
      padding: 24px 0px; } }

@media (max-width: 991px) {
  section.infosite.pt-4 {
    padding-top: 0px !important; } }

.minnews {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .minnews {
      padding: 24px 0px; } }
  .minnews .slidernews {
    position: relative;
    direction: ltr;
    width: 100%; }
    .minnews .slidernews .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      outline: none;
      margin: 0px -12px; }
      .minnews .slidernews .slick-list .slick-track {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        overflow: hidden; }
        .minnews .slidernews .slick-list .slick-track:after, .minnews .slidernews .slick-list .slick-track:before {
          display: table;
          content: ''; }
    .minnews .slidernews .slick-prev,
    .minnews .slidernews .slick-next {
      position: absolute;
      top: 54%;
      right: -42px;
      cursor: pointer;
      border: 0px;
      padding: 0px;
      outline: none;
      font-size: 0px;
      background: none; }
      @media (max-width: 1280px) {
        .minnews .slidernews .slick-prev,
        .minnews .slidernews .slick-next {
          display: none !important; } }
      .minnews .slidernews .slick-prev svg,
      .minnews .slidernews .slick-next svg {
        width: 18px;
        height: 18px;
        fill: #202043;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minnews .slidernews .slick-prev:hover svg,
      .minnews .slidernews .slick-next:hover svg {
        fill: #008fc7 !important; }
    .minnews .slidernews .slick-prev {
      right: auto;
      left: -42px;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .minnews .slidernews .slick-dots {
      position: absolute;
      bottom: -18px;
      left: 0px;
      width: 100%;
      padding: 0px;
      list-style: none;
      text-align: center;
      display: none !important; }
      @media (max-width: 1280px) {
        .minnews .slidernews .slick-dots {
          display: block !important; } }
      .minnews .slidernews .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0px 2px;
        padding: 0px;
        cursor: pointer;
        background: #c3c3c3; }
        .minnews .slidernews .slick-dots li button {
          font-size: 0px;
          line-height: 0px;
          display: block;
          width: 20px;
          height: 3px;
          cursor: pointer;
          color: #E5E5E5;
          border: 0px;
          outline: none;
          background: transparent; }
      .minnews .slidernews .slick-dots li.slick-active {
        background: #008fc7; }
    .minnews .slidernews .slick-list {
      margin: 0px; }
    .minnews .slidernews .slick-track {
      padding: 48px 0px 24px 0px; }
  .minnews .item {
    display: inline-block;
    direction: rtl;
    position: relative;
    border-radius: 30px;
    background: #fff;
    padding: 16px;
    margin: 0px 12px;
    overflow: hidden;
    box-shadow: 0 0px 14px 5px #89adff0f; }
    .minnews .item:hover .photo img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .minnews .item .photo {
      display: block;
      width: 100%;
      height: 240px;
      overflow: hidden;
      border-radius: 30px; }
      .minnews .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .minnews .item .title {
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 20px;
      margin-top: 24px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 991px) {
        .minnews .item .title {
          font-size: 22px; } }
      .minnews .item .title:hover {
        color: #008fc7; }
    .minnews .item p {
      display: -webkit-box;
      max-width: inherit;
      width: 100%;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-top: 8px;
      text-align: right; }
    .minnews .item .date {
      display: block;
      width: 100%;
      border-top: 1px solid #cccccc59;
      margin-top: 20px;
      padding-top: 12px;
      color: #008fc7; }

.minevent {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .minevent {
      padding: 24px 0px; } }
  .minevent .photo {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 48%;
    height: 100%;
    overflow: hidden; }
    @media (max-width: 991px) {
      .minevent .photo {
        display: none; } }
    .minevent .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .minevent .item {
    margin-right: 50%; }
    @media (max-width: 991px) {
      .minevent .item {
        max-width: 100%;
        flex: 100%;
        margin: 0px; } }
    .minevent .item .title {
      color: #008fc7; }
    .minevent .item p {
      font-size: 16px;
      margin: 12px 0px 24px 0px; }
      @media (max-width: 991px) {
        .minevent .item p {
          font-size: 14px; } }
  .minevent .minhead {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .minevent .minhead .title {
      width: auto; }
    .minevent .minhead a {
      text-decoration: underline;
      color: #008fc7;
      font-weight: 500; }
      .minevent .minhead a:hover {
        text-decoration: none; }

.itemevent {
  display: flex;
  align-items: center;
  background: #f3f3ff;
  padding: 8px;
  margin-top: 8px; }
  .itemevent .event-img {
    position: relative;
    display: block;
    min-height: 86px;
    min-width: 86px;
    max-width: 86px;
    height: 86px;
    overflow: hidden;
    margin-left: 12px; }
    .itemevent .event-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .itemevent .event-img:hover img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
  .itemevent .content {
    margin-left: 12px; }
    .itemevent .content .title {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 16px;
      color: #202043;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .itemevent .content .title:hover {
        color: #008fc7; }
      @media (max-width: 400px) {
        .itemevent .content .title {
          font-size: 14px; } }
  .itemevent .date {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    max-width: 106px;
    height: 86px;
    padding: 8px;
    border-right: 1px solid #d6e7ed;
    color: #008fc7;
    font-size: 12px; }
    @media (max-width: 400px) {
      .itemevent .date {
        display: block;
        text-align: center;
        min-width: 66px;
        max-width: 66px;
        padding-top: 20px; } }
    .itemevent .date i {
      font-weight: 600;
      font-size: 30px;
      margin-left: 4px; }
      @media (max-width: 400px) {
        .itemevent .date i {
          display: block;
          margin: 0px; } }

.minbrochures {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #f3f3ffb8; }
  @media (max-width: 991px) {
    .minbrochures {
      padding: 24px 0px; } }
  .minbrochures .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .minbrochures .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 550px) {
      .minbrochures .item {
        max-width: 100%;
        flex: 100%; } }
    .minbrochures .item .inner {
      display: flex;
      align-items: center;
      background: #fff;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
      padding: 16px;
      cursor: pointer;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .minbrochures .item .inner:hover {
        transform: translateY(-8px); }
        .minbrochures .item .inner:hover .content .title {
          color: #008fc7; }
      .minbrochures .item .inner .img {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        height: 100px;
        box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
        margin-left: 16px; }
        .minbrochures .item .inner .img img {
          max-width: 100%;
          max-height: 100%;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .minbrochures .item .inner .content .title {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minbrochures .item .inner .content .date {
        display: block;
        margin-top: 4px;
        color: #008fc7; }

.news {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #f3f3ffb8; }
  @media (max-width: 991px) {
    .news {
      padding: 24px 0px; } }
  .news .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .news .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 767px) {
      .news .item {
        max-width: 100%;
        flex: 100%; } }
    .news .item .inner {
      position: relative;
      border-radius: 30px;
      background: #fff;
      padding: 16px;
      overflow: hidden;
      box-shadow: 0 0px 14px 5px #89adff0f; }
      .news .item .inner:hover .photo img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    .news .item .photo {
      display: block;
      width: 100%;
      height: 240px;
      overflow: hidden;
      border-radius: 30px; }
      .news .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .news .item .title {
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 20px;
      margin-top: 24px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 991px) {
        .news .item .title {
          font-size: 22px; } }
      .news .item .title:hover {
        color: #008fc7; }
    .news .item p {
      display: -webkit-box;
      max-width: inherit;
      width: 100%;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-top: 8px;
      text-align: right; }
    .news .item .date {
      display: block;
      width: 100%;
      border-top: 1px solid #cccccc59;
      margin-top: 20px;
      padding-top: 12px;
      color: #008fc7; }

.newsinner,
.adv-inner {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .newsinner,
    .adv-inner {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .newsinner .item,
    .adv-inner .item {
      max-width: 100%;
      flex: 100%;
      margin-bottom: 24px; }
      .newsinner .item:last-child,
      .adv-inner .item:last-child {
        margin: 0px; } }
  .newsinner .item .photo,
  .adv-inner .item .photo {
    display: block;
    position: relative;
    width: 100%;
    height: 364px;
    overflow: hidden;
    z-index: 10;
    background: #E5E5E5;
    border-radius: 16px; }
    .newsinner .item .photo img,
    .adv-inner .item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .newsinner .item img,
  .adv-inner .item img {
    max-width: 100%; }
  .newsinner .item .title,
  .adv-inner .item .title {
    font-size: 26px;
    margin-top: 24px; }
  .newsinner .item p,
  .adv-inner .item p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 32px; }
  .newsinner .item .tags,
  .adv-inner .item .tags {
    position: sticky;
    top: 100px;
    width: 100%;
    background: #f3f3ff;
    padding: 24px;
    margin-top: 24px;
    border-radius: 16px; }
    .newsinner .item .tags .title,
    .adv-inner .item .tags .title {
      margin: 0px; }
    .newsinner .item .tags .list,
    .adv-inner .item .tags .list {
      margin-top: 4px; }
      .newsinner .item .tags .list a,
      .adv-inner .item .tags .list a {
        display: flex;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        background: #fff;
        padding: 4px 20px;
        -webkit-box-shadow: 4px 4px 60px #0000000d;
        -moz-box-shadow: 4px 4px 60px #0000000d;
        -o-box-shadow: 4px 4px 60px #0000000d;
        -ms-box-shadow: 4px 4px 60px #0000000d;
        box-shadow: 4px 4px 60px #0000000d;
        -webkit-border-radius: 60px;
        border-radius: 60px;
        background-clip: padding-box;
        color: #202043;
        font-weight: 500;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        margin: 12px 0px 0px 12px; }
        .newsinner .item .tags .list a:hover,
        .adv-inner .item .tags .list a:hover {
          color: #fff;
          background: #008fc7; }
  .newsinner .item .most,
  .adv-inner .item .most {
    width: 100%;
    background: #f3f3ff;
    padding: 24px;
    border-radius: 16px; }
    .newsinner .item .most .title,
    .adv-inner .item .most .title {
      margin: 0px; }
  .newsinner .item .other,
  .adv-inner .item .other {
    display: flex;
    align-items: center;
    margin-top: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 16px; }
    .newsinner .item .other .photo,
    .adv-inner .item .other .photo {
      min-width: 88px;
      max-width: 88px;
      height: 88px;
      overflow: hidden;
      border-radius: 16px; }
      .newsinner .item .other .photo img,
      .adv-inner .item .other .photo img {
        width: 100%;
        min-height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .newsinner .item .other .photo:hover img,
      .adv-inner .item .other .photo:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3); }
    .newsinner .item .other .content,
    .adv-inner .item .other .content {
      padding-right: 16px; }
      .newsinner .item .other .content .date,
      .adv-inner .item .other .content .date {
        display: block;
        margin-top: 8px;
        color: #008fc7; }
      .newsinner .item .other .content .link,
      .adv-inner .item .other .content .link {
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 600;
        color: #202043; }
        .newsinner .item .other .content .link:hover,
        .adv-inner .item .other .content .link:hover {
          color: #008fc7; }

.adv-inner .most {
  position: sticky;
  top: 100px; }

.itemsline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px; }
  @media (max-width: 767px) {
    .itemsline {
      display: block; } }
  .itemsline .date,
  .itemsline .name {
    color: #008fc7; }
    @media (max-width: 767px) {
      .itemsline .date,
      .itemsline .name {
        display: block;
        text-align: center; } }
  .itemsline .sharnews {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center; }
    @media (max-width: 767px) {
      .itemsline .sharnews {
        display: block; } }
    .itemsline .sharnews .sharicon {
      display: flex;
      align-items: center; }
      @media (max-width: 767px) {
        .itemsline .sharnews .sharicon {
          justify-content: center; } }
      .itemsline .sharnews .sharicon a {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 12px;
        font-weight: 600;
        color: #202043;
        font-size: 24px;
        height: 38px;
        cursor: pointer;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 767px) {
          .itemsline .sharnews .sharicon a {
            margin: 0px 8px 16px 8px; } }
        .itemsline .sharnews .sharicon a:hover {
          color: #008fc7; }
          .itemsline .sharnews .sharicon a:hover svg {
            fill: #202043; }
          .itemsline .sharnews .sharicon a:hover::after {
            opacity: 1; }
          .itemsline .sharnews .sharicon a:hover small {
            visibility: visible;
            opacity: 1;
            transform: translateY(0); }
    .itemsline .sharnews .social {
      display: flex;
      justify-content: flex-end;
      direction: ltr;
      margin-top: 24px;
      margin: 0px; }
      .itemsline .sharnews .social a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 38px;
        max-width: 38px;
        height: 38px;
        margin-left: 4px;
        border-radius: 50%;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .itemsline .sharnews .social a svg {
          max-width: 16px;
          max-height: 16px;
          fill: #fff;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .itemsline .sharnews .social a.icon-facebook {
          background: #3b5998; }
          .itemsline .sharnews .social a.icon-facebook:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-facebook:hover svg {
              fill: #3b5998; }
        .itemsline .sharnews .social a.icon-twitter {
          background: #00acee; }
          .itemsline .sharnews .social a.icon-twitter:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-twitter:hover svg {
              fill: #00acee; }
        .itemsline .sharnews .social a.icon-instagram {
          background: #8d5b46; }
          .itemsline .sharnews .social a.icon-instagram:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-instagram:hover svg {
              fill: #8d5b46; }
        .itemsline .sharnews .social a.icon-youtube {
          background: #c4302b; }
          .itemsline .sharnews .social a.icon-youtube:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-youtube:hover svg {
              fill: #c4302b; }
        .itemsline .sharnews .social a.icon-rss {
          background: #ee802f; }
          .itemsline .sharnews .social a.icon-rss:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-rss:hover svg {
              fill: #ee802f; }
        .itemsline .sharnews .social a.icon-snapchat {
          background: #fbeb0c; }
          .itemsline .sharnews .social a.icon-snapchat:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-snapchat:hover svg {
              fill: #fbeb0c; }
        .itemsline .sharnews .social a.icon-linkedin {
          background: #007fb1; }
          .itemsline .sharnews .social a.icon-linkedin:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-linkedin:hover svg {
              fill: #007fb1; }
        .itemsline .sharnews .social a.icon-gplus {
          background: #dd4b39; }
          .itemsline .sharnews .social a.icon-gplus:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-gplus:hover svg {
              fill: #dd4b39; }
        .itemsline .sharnews .social a.icon-whatsapp {
          background: #189d0e; }
          .itemsline .sharnews .social a.icon-whatsapp:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-whatsapp:hover svg {
              fill: #189d0e; }
        .itemsline .sharnews .social a.icon-email {
          background: #dd4b39; }
          .itemsline .sharnews .social a.icon-email:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-email:hover svg {
              fill: #dd4b39; }
        .itemsline .sharnews .social a.icon-print {
          background: #8d5b46; }
          .itemsline .sharnews .social a.icon-print:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-print:hover svg {
              fill: #8d5b46; }
        .itemsline .sharnews .social a.icon-link {
          background: #008fc7; }
          .itemsline .sharnews .social a.icon-link:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-link:hover svg {
              fill: #008fc7; }
        .itemsline .sharnews .social a.icon-behance {
          background: #008fc7; }
          .itemsline .sharnews .social a.icon-behance:hover {
            background: #fff !important;
            box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
            .itemsline .sharnews .social a.icon-behance:hover svg {
              fill: #008fc7; }
      @media (max-width: 767px) {
        .itemsline .sharnews .social {
          justify-content: center; } }
      .itemsline .sharnews .social a {
        margin: 0px !important;
        margin-right: 8px !important; }
        .itemsline .sharnews .social a:hover::after {
          opacity: 1; }
        .itemsline .sharnews .social a:hover small {
          visibility: visible;
          opacity: 1;
          transform: translateY(0); }
    .itemsline .sharnews small {
      visibility: hidden;
      width: 132px;
      background-color: #202043ab;
      text-align: center;
      -webkit-border-radius: 6px;
      border-radius: 6px;
      background-clip: padding-box;
      padding: 8px !important;
      position: absolute;
      bottom: 134%;
      line-height: 20px;
      font-size: 14px;
      left: 50%;
      margin-left: -66px;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 20;
      font-weight: 500;
      color: #fff;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      transform: translateY(10px);
      -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
      @media (max-width: 767px) {
        .itemsline .sharnews small {
          width: 100px;
          margin-left: -50px;
          font-size: 12px;
          padding: 6px !important; } }
      .itemsline .sharnews small::after {
        content: "";
        position: absolute;
        top: 99%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #202043ab transparent transparent transparent; }

.events {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  padding-top: 24px; }
  @media (max-width: 991px) {
    .events {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .events {
      padding-top: 0px; } }
  .events .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .events .item {
        max-width: 100%;
        flex: 100%;
        margin-top: 12px; } }
    .events .item .itemevent {
      margin: 0px; }

.eventsinner {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #cccccc30; }
  @media (max-width: 991px) {
    .eventsinner {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .eventsinner {
      margin-bottom: 24px; } }
  .eventsinner .detailsvents {
    display: flex;
    -webkit-border-radius: 22px;
    border-radius: 22px;
    background-clip: padding-box;
    background: #fff;
    padding: 24px; }
    @media (max-width: 991px) {
      .eventsinner .detailsvents {
        display: block; } }
    .eventsinner .detailsvents .photo {
      min-width: calc(40% - 24px);
      max-width: calc(40% - 24px);
      border-radius: 22px;
      overflow: hidden;
      margin-left: 24px; }
      .eventsinner .detailsvents .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      @media (max-width: 991px) {
        .eventsinner .detailsvents .photo {
          min-width: 100%;
          max-width: 100%;
          height: 340px; } }
    .eventsinner .detailsvents .detels {
      min-width: 60%;
      max-width: 60%; }
      @media (max-width: 991px) {
        .eventsinner .detailsvents .detels {
          min-width: 100%;
          max-width: 100%;
          margin-top: 24px; } }
      .eventsinner .detailsvents .detels .title {
        font-size: 24px;
        font-weight: 600; }
      .eventsinner .detailsvents .detels .respons {
        display: block;
        color: #202043;
        font-weight: 600;
        font-size: 16px; }
      .eventsinner .detailsvents .detels p {
        margin-top: 12px;
        font-size: 16px; }
      .eventsinner .detailsvents .detels .itemtab {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 16px;
        position: relative;
        overflow: hidden;
        background: #f3f3ff;
        -webkit-border-radius: 12px;
        border-radius: 12px;
        background-clip: padding-box;
        margin-top: 24px; }
        @media (max-width: 400px) {
          .eventsinner .detailsvents .detels .itemtab {
            display: block; } }
        .eventsinner .detailsvents .detels .itemtab .deta-text {
          display: flex;
          align-items: center;
          justify-content: center; }
          @media (max-width: 991px) {
            .eventsinner .detailsvents .detels .itemtab .deta-text {
              margin-top: 12px;
              justify-content: flex-start; } }
          .eventsinner .detailsvents .detels .itemtab .deta-text svg {
            width: 20px;
            fill: #008fc7; }
          .eventsinner .detailsvents .detels .itemtab .deta-text p {
            margin: 0px 8px 0px 4px;
            color: #848484;
            font-size: 16px; }
          .eventsinner .detailsvents .detels .itemtab .deta-text span {
            color: #202043;
            font-weight: 600; }
      .eventsinner .detailsvents .detels .list {
        padding-right: 24px; }
        .eventsinner .detailsvents .detels .list li {
          list-style: disc;
          color: #202043;
          font-weight: 400;
          margin-top: 4px; }

.contactus {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .contactus {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .contactus .item {
      max-width: 100%;
      flex: 100%; }
      .contactus .item:last-child {
        display: none; } }
  .contactus .item .title {
    line-height: 1; }
  .contactus .item .iframe {
    position: sticky;
    top: 100px;
    background: #fff;
    height: 500px;
    border-radius: 16px;
    overflow: hidden; }
    @media (max-width: 991px) {
      .contactus .item .iframe {
        height: 250px; } }
    .contactus .item .iframe iframe {
      display: block;
      border: 0px;
      width: 100%;
      height: 100%; }
  .contactus .item .photo {
    position: sticky;
    top: 100px;
    max-width: 500px;
    height: 500px;
    margin: 0px auto; }
    .contactus .item .photo img {
      width: 100%;
      height: 100%;
      border-radius: 64px;
      object-fit: cover;
      box-shadow: 0px 4px 20px 16px #00000012; }
  .contactus .item .nav-tabs {
    width: 100%;
    border: 0px;
    overflow: hidden;
    flex-wrap: inherit;
    padding-bottom: 12px; }
    @media (max-width: 991px) {
      .contactus .item .nav-tabs {
        overflow-x: scroll; } }
    .contactus .item .nav-tabs li {
      position: relative;
      margin: 0px;
      margin-left: 20px; }
      .contactus .item .nav-tabs li:last-child {
        margin: 0px; }
      .contactus .item .nav-tabs li a {
        position: relative;
        border: 0px !important;
        font-weight: 600;
        padding: 0px;
        font-size: 16px;
        border-radius: 0px;
        color: #202043;
        white-space: nowrap;
        text-overflow: ellipsis;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .contactus .item .nav-tabs li a::after {
          content: "";
          position: absolute;
          bottom: -4px;
          right: 0px;
          width: 0px;
          height: 2px;
          background: #008fc7;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .contactus .item .nav-tabs li a:hover, .contactus .item .nav-tabs li a.active {
          background: none;
          color: #008fc7; }
          .contactus .item .nav-tabs li a:hover::after, .contactus .item .nav-tabs li a.active::after {
            width: 50%; }
  .contactus .item p {
    font-size: 16px;
    font-weight: 500; }
  .contactus .item .map-text {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px; }
    @media (max-width: 991px) {
      .contactus .item .map-text {
        margin-top: 20px; } }
    .contactus .item .map-text .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 46px;
      max-width: 46px;
      height: 46px;
      background: #fff;
      box-shadow: 0px 0px 13px #d0d0d070;
      -webkit-border-radius: 60px;
      border-radius: 60px;
      background-clip: padding-box;
      margin-left: 12px; }
      .contactus .item .map-text .icon svg {
        fill: #008fc7;
        width: 22px;
        height: 22px; }
    .contactus .item .map-text .content .title {
      font-size: 14px !important; }
    .contactus .item .map-text .content p,
    .contactus .item .map-text .content a {
      font-size: 16px;
      margin-top: 12px; }
    .contactus .item .map-text .content a {
      display: block;
      direction: ltr;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .contactus .item .map-text .content a:hover {
        color: #008fc7; }
  .contactus .item .socialstyle {
    display: flex;
    justify-content: flex-end;
    direction: ltr;
    margin-top: 24px; }
    .contactus .item .socialstyle a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      max-width: 38px;
      height: 38px;
      margin-left: 4px;
      border-radius: 50%;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .contactus .item .socialstyle a svg {
        max-width: 16px;
        max-height: 16px;
        fill: #fff;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .contactus .item .socialstyle a.icon-facebook {
        background: #3b5998; }
        .contactus .item .socialstyle a.icon-facebook:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-facebook:hover svg {
            fill: #3b5998; }
      .contactus .item .socialstyle a.icon-twitter {
        background: #00acee; }
        .contactus .item .socialstyle a.icon-twitter:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-twitter:hover svg {
            fill: #00acee; }
      .contactus .item .socialstyle a.icon-instagram {
        background: #8d5b46; }
        .contactus .item .socialstyle a.icon-instagram:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-instagram:hover svg {
            fill: #8d5b46; }
      .contactus .item .socialstyle a.icon-youtube {
        background: #c4302b; }
        .contactus .item .socialstyle a.icon-youtube:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-youtube:hover svg {
            fill: #c4302b; }
      .contactus .item .socialstyle a.icon-rss {
        background: #ee802f; }
        .contactus .item .socialstyle a.icon-rss:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-rss:hover svg {
            fill: #ee802f; }
      .contactus .item .socialstyle a.icon-snapchat {
        background: #fbeb0c; }
        .contactus .item .socialstyle a.icon-snapchat:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-snapchat:hover svg {
            fill: #fbeb0c; }
      .contactus .item .socialstyle a.icon-linkedin {
        background: #007fb1; }
        .contactus .item .socialstyle a.icon-linkedin:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-linkedin:hover svg {
            fill: #007fb1; }
      .contactus .item .socialstyle a.icon-gplus {
        background: #dd4b39; }
        .contactus .item .socialstyle a.icon-gplus:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-gplus:hover svg {
            fill: #dd4b39; }
      .contactus .item .socialstyle a.icon-whatsapp {
        background: #189d0e; }
        .contactus .item .socialstyle a.icon-whatsapp:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-whatsapp:hover svg {
            fill: #189d0e; }
      .contactus .item .socialstyle a.icon-email {
        background: #dd4b39; }
        .contactus .item .socialstyle a.icon-email:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-email:hover svg {
            fill: #dd4b39; }
      .contactus .item .socialstyle a.icon-print {
        background: #8d5b46; }
        .contactus .item .socialstyle a.icon-print:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-print:hover svg {
            fill: #8d5b46; }
      .contactus .item .socialstyle a.icon-link {
        background: #008fc7; }
        .contactus .item .socialstyle a.icon-link:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-link:hover svg {
            fill: #008fc7; }
      .contactus .item .socialstyle a.icon-behance {
        background: #008fc7; }
        .contactus .item .socialstyle a.icon-behance:hover {
          background: #fff !important;
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2); }
          .contactus .item .socialstyle a.icon-behance:hover svg {
            fill: #008fc7; }
  .contactus .item .itemadds {
    margin-top: 32px; }
    @media (max-width: 991px) {
      .contactus .item .itemadds {
        margin-top: 24px; } }
    .contactus .item .itemadds .inner {
      display: flex;
      align-items: center;
      width: 100%;
      margin-bottom: 24px; }
      .contactus .item .itemadds .inner:last-child {
        margin: 0px; }
      .contactus .item .itemadds .inner .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-bottom-left-radius: 10px;
        overflow: hidden;
        background: #D1362A;
        position: relative; }
        .contactus .item .itemadds .inner .icon svg {
          min-width: 16px;
          min-height: 16px;
          fill: #fff; }
          .contactus .item .itemadds .inner .icon svg path {
            fill: #fff; }
      .contactus .item .itemadds .inner p,
      .contactus .item .itemadds .inner a {
        display: block;
        font-weight: 500;
        line-height: 150%;
        color: #000;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .contactus .item .itemadds .inner a:hover {
        color: #D1362A; }

.hiring {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #cccccc30;
  padding-top: 24px; }
  @media (max-width: 991px) {
    .hiring {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .hiring {
      padding-top: 0px; } }
  @media (max-width: 991px) {
    .hiring .item {
      max-width: 100%;
      flex: 100%; } }
  .hiring .item .inner {
    position: relative;
    width: 100%;
    border-radius: 22px;
    background: #fff;
    padding: 24px;
    margin-top: 24px; }
    @media (max-width: 991px) {
      .hiring .item .inner {
        max-width: 100%; } }
    .hiring .item .inner .title {
      color: #008fc7;
      font-size: 22px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .hiring .item .inner .title:hover {
        color: #008fc7; }
    .hiring .item .inner .respons {
      display: block;
      color: #202043;
      font-weight: 600;
      margin-top: 12px; }
    .hiring .item .inner .list {
      padding-right: 24px; }
      .hiring .item .inner .list li {
        list-style: disc;
        color: #202043;
        font-weight: 400;
        margin-top: 4px; }
    .hiring .item .inner .category {
      position: absolute;
      left: 24px;
      top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 400;
      background: #4caf5014;
      border-radius: 8px;
      color: #008a3a;
      min-width: 80px;
      max-width: 80px;
      height: 32px; }
      @media (max-width: 500px) {
        .hiring .item .inner .category {
          position: relative;
          left: auto;
          top: auto;
          margin-top: 12px; } }
    .hiring .item .inner .btns {
      display: flex;
      align-items: center;
      margin-top: 16px; }

.btnbottom {
  display: flex;
  align-items: center;
  color: #008fc7;
  text-transform: capitalize;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  border: 0px;
  background: none;
  padding: 0px;
  cursor: pointer;
  font-weight: 400; }
  .btnbottom svg {
    margin-right: 4px;
    fill: none;
    width: 14px;
    height: 14px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
    .btnbottom svg path {
      stroke: #008fc7;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .btnbottom:hover {
    color: #008fc7; }
    .btnbottom:hover svg {
      margin-right: 8px; }
      .btnbottom:hover svg path {
        stroke: #008fc7; }

.hiringinner {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  padding-top: 24px; }
  @media (max-width: 991px) {
    .hiringinner {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .hiringinner {
      padding-top: 0px; } }
  @media (max-width: 991px) {
    .hiringinner .item {
      max-width: 100%;
      flex: 100%;
      margin-top: 24px; }
      .hiringinner .item:last-child {
        margin-top: 8px; } }
  .hiringinner .item .h-box {
    border-radius: 22px;
    background: #cccccc30; }
    .hiringinner .item .h-box .photo {
      width: 100%;
      height: 276px;
      border-radius: 22px;
      overflow: hidden;
      margin-top: 20px; }
      @media (max-width: 991px) {
        .hiringinner .item .h-box .photo {
          display: none; } }
      .hiringinner .item .h-box .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .hiringinner .item .h-box .detels {
      position: relative;
      padding: 24px; }
      .hiringinner .item .h-box .detels .title {
        color: #008fc7;
        font-size: 22px;
        font-weight: 400; }
      .hiringinner .item .h-box .detels .category {
        position: absolute;
        left: 24px;
        top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        background: #4caf5014;
        border-radius: 8px;
        color: #008a3a;
        min-width: 80px;
        max-width: 80px;
        height: 32px; }
        @media (max-width: 500px) {
          .hiringinner .item .h-box .detels .category {
            position: relative;
            left: auto;
            top: auto;
            margin-top: 12px; } }
      .hiringinner .item .h-box .detels .respons {
        display: block;
        color: #202043;
        font-weight: 600; }
      .hiringinner .item .h-box .detels .list {
        padding-right: 24px; }
        .hiringinner .item .h-box .detels .list li {
          list-style: disc;
          color: #202043;
          font-weight: 400;
          margin-top: 4px; }
      .hiringinner .item .h-box .detels .jobtype {
        margin-top: 48px;
        color: #6E6E6E;
        font-size: 12px; }
        .hiringinner .item .h-box .detels .jobtype span {
          font-weight: 600; }

.styleinner {
  position: relative;
  width: 100%;
  background: #cccccc30;
  padding: 24px;
  margin-top: 12px;
  border-radius: 8px; }
  .styleinner .mintitle {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .styleinner .mintitle .title {
      font-size: 22px !important; }
    .styleinner .mintitle .rating {
      margin: 0px;
      flex-direction: inherit; }
      .styleinner .mintitle .rating li svg {
        width: 32px;
        fill: #ccc; }
        .styleinner .mintitle .rating li svg.active {
          fill: #fbae1f; }
  .styleinner p {
    margin-top: 12px; }
  .styleinner .date,
  .styleinner .time,
  .styleinner .star {
    display: flex;
    align-items: center;
    color: #202043;
    font-weight: 500;
    margin-top: 12px; }
    .styleinner .date svg,
    .styleinner .time svg,
    .styleinner .star svg {
      width: 20px;
      fill: #008fc7;
      margin-left: 8px; }

.inputform {
  margin-top: 20px; }
  @media (max-width: 991px) {
    .inputform {
      margin-top: 12px;
      max-width: 100%;
      flex: 100%; } }
  .inputform label {
    font-weight: 600;
    color: #202043; }
  .inputform .custom-file-label,
  .inputform .custom-file-input {
    width: calc(100% - 24px);
    outline: 0px !important;
    height: 54px;
    border: 1px solid #ced4da;
    background: #fff;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background-clip: padding-box;
    color: #202043;
    right: 12px; }
  .inputform .custom-file-input:focus ~ .custom-file-label {
    border-color: #008fc7 !important; }
  .inputform .custom-file-label {
    display: flex;
    align-items: center;
    margin: 0px;
    padding-right: 164px;
    box-shadow: none !important;
    outline: 0 !important;
    outline-style: none !important;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .inputform .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "تحميل السيرة الذاتية";
    background: none;
    height: 54px;
    background: url(../images/up.svg) no-repeat center right;
    border: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    right: 16px;
    padding-right: 30px; }
  .inputform .nots {
    margin-top: 8px; }
  .inputform .flexcheck {
    display: flex;
    align-items: center; }
    @media (max-width: 767px) {
      .inputform .flexcheck {
        display: block; } }
    .inputform .flexcheck .che-box {
      margin-left: 24px; }
      @media (max-width: 767px) {
        .inputform .flexcheck .che-box {
          width: 100%;
          margin: 0px;
          margin-bottom: 12px; } }
      .inputform .flexcheck .che-box:last-child {
        margin: 0px; }
  .inputform .surveymore {
    color: #008fc7;
    margin-right: 12px; }
    .inputform .surveymore:hover {
      text-decoration: underline; }
  .inputform .s-add {
    margin-right: 12px;
    color: #D1362A;
    cursor: pointer; }

.login,
.signup,
.forgot {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 48px 12px;
  display: flex;
  align-items: center;
  background: #008fc7; }
  .login .photo,
  .signup .photo,
  .forgot .photo {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%; }
    .login .photo::before,
    .signup .photo::before,
    .forgot .photo::before {
      content: '';
      position: absolute;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%;
      background: #202043e8; }
    .login .photo img,
    .signup .photo img,
    .forgot .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .login .innerstyle,
  .signup .innerstyle,
  .forgot .innerstyle {
    position: relative;
    width: 500px;
    margin: 0px auto;
    background: #fff;
    -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1;
    padding: 32px; }
    @media (max-width: 991px) {
      .login .innerstyle,
      .signup .innerstyle,
      .forgot .innerstyle {
        padding: 24px;
        width: 100%; } }
    .login .innerstyle::before,
    .signup .innerstyle::before,
    .forgot .innerstyle::before {
      content: '';
      position: absolute;
      z-index: -1;
      background: #ffffff;
      width: 86%;
      opacity: .62;
      height: 50%;
      bottom: -20px;
      left: 0;
      right: 0;
      margin: auto;
      border-radius: 12px; }
  .login .back,
  .signup .back,
  .forgot .back {
    position: absolute;
    top: 16px;
    z-index: 10; }
    .login .back svg,
    .signup .back svg,
    .forgot .back svg {
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      -webkit-transform: rotate(-180deg);
      -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
      transform: rotate(-180deg); }
    .login .back:hover svg,
    .signup .back:hover svg,
    .forgot .back:hover svg {
      fill: #008fc7; }
  .login .title,
  .signup .title,
  .forgot .title {
    text-align: center;
    margin-bottom: 8px; }
  .login p.text,
  .signup p.text,
  .forgot p.text {
    text-align: center; }
  .login .field,
  .signup .field,
  .forgot .field {
    position: relative;
    margin-top: 16px; }
    .login .field.flex,
    .signup .field.flex,
    .forgot .field.flex {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .login .field.flex .che-box a,
      .signup .field.flex .che-box a,
      .forgot .field.flex .che-box a {
        text-decoration: underline;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        font-weight: 500; }
        .login .field.flex .che-box a:hover,
        .signup .field.flex .che-box a:hover,
        .forgot .field.flex .che-box a:hover {
          color: #008fc7;
          text-decoration: none; }
      .login .field.flex .forgetlink,
      .signup .field.flex .forgetlink,
      .forgot .field.flex .forgetlink {
        display: block;
        color: #000;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .login .field.flex .forgetlink:hover,
        .signup .field.flex .forgetlink:hover,
        .forgot .field.flex .forgetlink:hover {
          color: #008fc7; }
    .login .field p,
    .signup .field p,
    .forgot .field p {
      text-align: center;
      color: #000; }
      .login .field p a,
      .signup .field p a,
      .forgot .field p a {
        color: #008fc7;
        font-weight: 600; }
        .login .field p a:hover,
        .signup .field p a:hover,
        .forgot .field p a:hover {
          text-decoration: none; }
    .login .field .bottom,
    .signup .field .bottom,
    .forgot .field .bottom {
      width: 100%;
      height: 54px;
      -webkit-border-radius: 0.25rem;
      border-radius: 0.25rem;
      background-clip: padding-box; }

.signup {
  display: block;
  overflow-y: scroll; }
  .signup .boxform {
    display: block; }
    .signup .boxform .inner {
      padding-bottom: 32px; }
    .signup .boxform .back {
      display: block;
      position: relative;
      top: auto;
      margin-top: 48px; }
      @media (max-width: 991px) {
        .signup .boxform .back {
          margin: 0px; } }
    @media (max-width: 991px) {
      .signup .boxform .title {
        margin-top: 32px; } }

.icon-pass {
  position: absolute;
  top: 12px;
  left: 30px;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .icon-pass svg {
    width: 24px;
    fill: #000; }

.icon-pass.eye-slash.icon-pass {
  display: none; }
  .icon-pass.eye-slash.icon-pass svg path {
    stroke: #008fc7;
    fill: none; }

.media {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .media {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .media .item {
      max-width: 100%;
      flex: 100%; } }
  .media .item .bar {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 12px; }
    .media .item .bar .watch,
    .media .item .bar .date {
      margin-left: 24px;
      color: #cfcfcf; }
      .media .item .bar .watch svg,
      .media .item .bar .date svg {
        width: 18px;
        fill: #008fc7;
        margin-left: 4px; }
    .media .item .bar .date {
      margin: 0px; }
  .media .item .photo {
    display: flex;
    position: relative;
    width: 100%;
    height: 428px;
    overflow: hidden;
    background: #E5E5E5;
    border-radius: 8px; }
    @media (max-width: 991px) {
      .media .item .photo {
        height: 328px; } }
    .media .item .photo img {
      width: 100%;
      min-height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .media .item .photo:hover img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .media .item .photo:hover i.icon-play {
      background: #008fc7; }
  .media .item .contant {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 48px 16px 16px 16px;
    background: linear-gradient(#00000000, #000000); }
    .media .item .contant .title {
      color: #fff !important;
      font-size: 24px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 991px) {
        .media .item .contant .title {
          font-size: 20px; } }
  .media .item .inner {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 24px;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .media .item .inner:last-child {
      margin: 0px; }
    @media (max-width: 991px) {
      .media .item .inner {
        margin: 0px;
        margin-top: 12px !important; } }
    @media (max-width: 400px) {
      .media .item .inner {
        display: block; } }
    .media .item .inner .photo {
      min-width: 140px;
      max-width: 140px;
      height: 104px;
      margin-left: 12px; }
      @media (max-width: 400px) {
        .media .item .inner .photo {
          min-width: 100%;
          max-width: 100%;
          margin: 0px;
          margin-bottom: 12px; } }
    .media .item .inner .bar .watch,
    .media .item .inner .bar .date {
      color: #767676; }
    .media .item .inner .title {
      font-size: 16px !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .media .item .inner i.icon-play {
      width: 56px;
      height: 38px; }
      .media .item .inner i.icon-play svg {
        width: 20px;
        height: 20px; }
    .media .item .inner:hover .title {
      color: #008fc7; }
    .media .item .inner:hover .photo img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .media .item .inner:hover .photo i.icon-play {
      background: #008fc7; }

i.icon-play {
  position: absolute;
  top: 50%;
  right: 0px;
  left: 0px;
  width: 86px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  z-index: 1;
  background: #008ad299;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  margin-top: -20px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  i.icon-play svg {
    width: 28px;
    height: 28px; }

.latestvideo {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #f3f3ff; }
  @media (max-width: 991px) {
    .latestvideo {
      padding: 24px 0px; } }
  .latestvideo .v-item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .latestvideo .v-item {
        max-width: 50%;
        flex: 50%;
        margin-top: 12px; } }
    @media (max-width: 550px) {
      .latestvideo .v-item {
        max-width: 100%;
        flex: 100%; } }
    .latestvideo .v-item .inner {
      display: block;
      position: relative;
      background: #fff;
      border-radius: 8px;
      background: #fff;
      padding: 12px;
      padding-bottom: 0px;
      overflow: hidden;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .latestvideo .v-item .inner .photo {
        display: flex;
        position: relative;
        width: 100%;
        height: 196px;
        overflow: hidden;
        background: #E5E5E5;
        border-radius: 8px; }
        .latestvideo .v-item .inner .photo img {
          width: 100%;
          min-height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .latestvideo .v-item .inner .title {
        font-size: 16px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-top: 12px;
        overflow: hidden;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .latestvideo .v-item .inner i.icon-play {
        width: 56px;
        height: 38px; }
        .latestvideo .v-item .inner i.icon-play svg {
          width: 20px;
          height: 20px; }
      .latestvideo .v-item .inner .bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f3f3ff;
        width: calc(100% + 24px);
        height: 44px;
        margin-right: -12px;
        padding: 0px 12px;
        margin-top: 12px; }
        .latestvideo .v-item .inner .bar .watch svg,
        .latestvideo .v-item .inner .bar .date svg {
          width: 18px;
          fill: #008fc7;
          margin-left: 4px; }
      .latestvideo .v-item .inner:hover .title {
        color: #008fc7; }
      .latestvideo .v-item .inner:hover .photo img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
      .latestvideo .v-item .inner:hover .photo i.icon-play {
        background: #008fc7; }

.media-center {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .media-center {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .media-center .title.text-center.mb-5 {
      margin-bottom: 20px !important; } }
  @media (max-width: 991px) {
    .media-center .item {
      max-width: 100%;
      flex: 100%;
      margin-bottom: 24px; }
      .media-center .item:last-child {
        margin: 0px; } }
  .media-center .item .photo,
  .media-center .item .iframetwitter {
    max-width: 500px;
    height: 500px;
    margin: 0px auto; }
    .media-center .item .photo img,
    .media-center .item .iframetwitter img {
      width: 100%;
      height: 100%;
      border-radius: 64px;
      object-fit: cover;
      box-shadow: 0px 4px 20px 16px #00000012; }
  .media-center .item .iframetwitter {
    overflow: hidden;
    overflow-y: scroll;
    border-bottom: 1px solid #cfd9de;
    border-radius: 20px; }
  .media-center .item .iframetwitter::-webkit-scrollbar-track {
    background: #fff; }
  .media-center .item .iframetwitter::-webkit-scrollbar {
    width: 4px; }
  .media-center .item .inner {
    position: relative;
    width: 100%; }
    .media-center .item .inner::before {
      content: "";
      position: absolute;
      right: 38px;
      top: 0px;
      width: 2px;
      height: calc(100% - 80px);
      background: #008fc7; }
    .media-center .item .inner .stap {
      position: relative;
      display: flex;
      margin-bottom: 48px; }
      .media-center .item .inner .stap:last-child {
        margin: 0px; }
      .media-center .item .inner .stap:hover .icon {
        background: #008fc7; }
        .media-center .item .inner .stap:hover .icon svg,
        .media-center .item .inner .stap:hover .icon img {
          fill: #fff; }
      .media-center .item .inner .stap:hover .title {
        color: #008fc7; }
      .media-center .item .inner .stap .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        max-width: 80px;
        height: 80px;
        border: 2px solid #008fc7;
        background: #fff;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .media-center .item .inner .stap .icon svg,
        .media-center .item .inner .stap .icon img {
          width: 40px;
          height: 40px;
          fill: #008fc7;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .media-center .item .inner .stap .cotant {
        margin-right: 12px; }
      .media-center .item .inner .stap .title {
        font-size: 22px !important;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }

.YouTubePopUp-Wrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999999999999;
  padding: 15px; }
  .YouTubePopUp-Wrap .YouTubePopUp-Content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 680px;
    margin: 0px auto;
    height: 100%;
    position: relative; }
    .YouTubePopUp-Wrap .YouTubePopUp-Content iframe {
      max-width: 100% !important;
      width: 100% !important;
      display: block !important;
      height: 400px !important;
      border: none !important;
      margin: auto 0px;
      background: #fff;
      padding: 12px;
      border-radius: 16px; }
      @media (max-width: 767px) {
        .YouTubePopUp-Wrap .YouTubePopUp-Content iframe {
          height: 300px !important; } }
  .YouTubePopUp-Wrap .YouTubePopUp-Close {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    margin: auto 0px; }

.item-reports {
  margin-top: 30px; }
  @media (max-width: 991px) {
    .item-reports {
      max-width: 50%;
      flex: 50%; } }
  @media (max-width: 550px) {
    .item-reports {
      max-width: 100%;
      flex: 100%; } }
  .item-reports .in-reports {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 0px 14px 5px #89adff0f;
    overflow: hidden;
    padding: 12px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    background-clip: padding-box; }
    .item-reports .in-reports .img-reports {
      position: relative;
      width: 100%;
      padding-top: 80%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #008fc7;
      overflow: hidden;
      -webkit-border-radius: 16px;
      border-radius: 16px;
      background-clip: padding-box; }
      .item-reports .in-reports .img-reports img {
        position: absolute;
        top: 0px;
        right: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .item-reports .in-reports .img-reports:hover img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15); }
      .item-reports .in-reports .img-reports svg {
        position: absolute;
        top: 50%;
        opacity: 0;
        fill: #fff;
        width: 46px;
        z-index: 2;
        margin-top: -23px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .item-reports .in-reports .img-reports:after {
        content: '';
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0000009c;
        opacity: 0;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        z-index: 1; }
      .item-reports .in-reports .img-reports:hover:after {
        opacity: 1; }
      .item-reports .in-reports .img-reports:hover svg {
        opacity: 1; }
    .item-reports .in-reports .title {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      margin-top: 12px;
      overflow: hidden;
      margin-top: 12px;
      font-size: 16px !important; }
    .item-reports .in-reports span {
      display: inline-block;
      max-width: 94px;
      background: #008fc7;
      padding: 1px 12px;
      margin-top: 5px;
      font-size: 12px;
      color: #fff;
      margin-right: -12px;
      margin-top: 12px;
      -webkit-border-radius: 60px 0px 0px 60px;
      border-radius: 60px 0px 0px 60px;
      background-clip: padding-box; }

.viewbox-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000; }
  .viewbox-container .viewbox-body {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-clip: padding-box;
    -webkit-box-shadow: 0px 1px 1px #292828;
    -moz-box-shadow: 0px 1px 1px #292828;
    -o-box-shadow: 0px 1px 1px #292828;
    -ms-box-shadow: 0px 1px 1px #292828;
    box-shadow: 0px 1px 1px #292828;
    overflow: auto; }
    .viewbox-container .viewbox-body .viewbox-header,
    .viewbox-container .viewbox-body .viewbox-footer {
      margin: 10px; }
    .viewbox-container .viewbox-body .viewbox-content {
      margin: 10px;
      width: 300px;
      height: 300px; }
      .viewbox-container .viewbox-body .viewbox-content .viewbox-image {
        width: 100%;
        height: 100%; }

.viewbox-button-default {
  cursor: pointer;
  height: 64px;
  width: 64px;
  fill: #999; }
  .viewbox-button-default svg {
    width: 100%;
    height: 100%;
    background: inherit;
    fill: inherit;
    pointer-events: none;
    transform: translateX(0px); }
  .viewbox-button-default:hover {
    fill: #fff; }

.viewbox-button-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9; }
  @media (max-width: 480px) {
    .viewbox-button-close {
      top: 0px;
      right: 0px; } }

.viewbox-button-full-screen {
  position: absolute;
  top: 84px;
  right: 10px;
  z-index: 9; }

.viewbox-button-next,
.viewbox-button-prev {
  position: absolute;
  top: 50%;
  height: 100px;
  width: 100px;
  margin: -64px 0 0;
  z-index: 9; }
  @media (max-width: 480px) {
    .viewbox-button-next,
    .viewbox-button-prev {
      height: 81px;
      width: 81px;
      margin-top: -40px; } }

.viewbox-button-next {
  right: 0px; }
  @media (max-width: 480px) {
    .viewbox-button-next {
      right: -15px; } }

.viewbox-button-prev {
  left: 0px; }
  @media (max-width: 480px) {
    .viewbox-button-prev {
      left: -15px; } }

.viewbox-container .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  widows: 100%;
  margin: -25px 0 0 -25px; }
  .viewbox-container .loader .spinner {
    width: 30px;
    height: 50px;
    position: relative;
    margin: 0px auto; }
  .viewbox-container .loader .double-bounce1,
  .viewbox-container .loader .double-bounce2 {
    position: absolute;
    top: 0;
    left: 50;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    background-color: #008fc7;
    opacity: 0.6;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out; }
  .viewbox-container .loader .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }
@-webkit-keyframes sk-bounce {
  0%,
         100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }
@keyframes sk-bounce {
  0%,
         100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
.homeitem {
  position: relative;
  text-align: center; }
  .homeitem:after {
    content: '';
    position: absolute;
    top: auto;
    right: 0px;
    bottom: -24px;
    left: 0px;
    z-index: 1;
    width: 2px;
    height: 24px;
    margin: 0px auto;
    background: #008fc7; }

.textname {
  display: inline-block;
  background: #fff;
  padding: 8px 12px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  background-clip: padding-box;
  text-align: center;
  -webkit-box-shadow: 0px 0px 7px #dadada;
  -moz-box-shadow: 0px 0px 7px #dadada;
  -o-box-shadow: 0px 0px 7px #dadada;
  -ms-box-shadow: 0px 0px 7px #dadada;
  box-shadow: 0px 0px 7px #dadada; }
  .textname .title {
    font-size: 16px; }

.organiz {
  display: flex;
  width: 100%;
  margin-top: 24px;
  border-top: 2px solid #008fc7; }
  @media (max-width: 991px) {
    .organiz {
      display: block; } }
  .organiz .colitme {
    width: 25%;
    padding: 0px 12px;
    margin-top: 24px;
    position: relative; }
    @media (max-width: 991px) {
      .organiz .colitme {
        padding: 0px; } }
    .organiz .colitme:after {
      content: '';
      position: absolute;
      top: -24px;
      right: 0px;
      bottom: auto;
      left: 0px;
      z-index: 1;
      width: 2px;
      height: 24px;
      margin: 0px auto;
      background: #008fc7; }
      @media (max-width: 991px) {
        .organiz .colitme:after {
          display: none; } }
    @media (max-width: 991px) {
      .organiz .colitme {
        width: 100%; } }
    .organiz .colitme .textname {
      width: 100%; }
  .organiz .list {
    margin-top: 24px; }
    .organiz .list a {
      display: flex;
      font-weight: 600;
      margin-top: 16px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 991px) {
        .organiz .list a {
          justify-content: center; } }
      .organiz .list a:hover {
        color: #008fc7; }

.profile {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .profile {
      padding: 24px 0px; } }
  .profile .inner {
    background: #f3f3ffb8;
    width: 100%;
    padding: 24px;
    border-radius: 16px; }
    @media (max-width: 991px) {
      .profile .inner {
        max-width: 100%;
        padding: 12px; } }
    .profile .inner .imgcent {
      position: relative;
      width: 100%;
      height: 216px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden; }
      .profile .inner .imgcent:hover .file-bro {
        opacity: 1; }
      .profile .inner .imgcent .img_prev {
        width: 100%;
        min-height: 100%;
        position: relative;
        z-index: 2; }
      .profile .inner .imgcent .file-bro {
        position: absolute;
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
        background: #fff;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        margin: 0px;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
        -o-box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
        -ms-box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
        box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        z-index: 3; }
        .profile .inner .imgcent .file-bro svg {
          z-index: 10;
          min-width: 16px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          .profile .inner .imgcent .file-bro svg path {
            fill: #008fc7; }
        .profile .inner .imgcent .file-bro:hover {
          background: #008fc7;
          color: #fff; }
          .profile .inner .imgcent .file-bro:hover svg path {
            fill: #fff; }
    .profile .inner .pic {
      text-align: center; }
      .profile .inner .pic .imgcent {
        margin: 0px auto;
        width: 136px;
        height: 136px;
        border: 8px solid #fff;
        border-radius: 50%;
        margin-top: -72px;
        z-index: 10;
        overflow: inherit; }
        .profile .inner .pic .imgcent .img_prev2 {
          border-radius: 50%;
          height: 100%;
          object-fit: cover; }
        .profile .inner .pic .imgcent .file-bro {
          right: 38px;
          bottom: -20px; }
      .profile .inner .pic .title {
        margin-top: 12px;
        font-size: 26px; }
      .profile .inner .pic .pos {
        display: block;
        font-size: 16px;
        font-weight: 400;
        margin-top: 8px; }
      .profile .inner .pic .bottom {
        width: auto;
        padding: 0px 24px;
        margin: 16px auto 0px auto; }
    .profile .inner .item {
      margin-top: 24px; }
      @media (max-width: 991px) {
        .profile .inner .item {
          max-width: 100%;
          flex: 100%; } }
    .profile .inner .nav-tabs {
      position: sticky;
      top: 100px;
      border: 0px; }
      .profile .inner .nav-tabs li {
        border: 0px;
        width: 100%;
        margin: 0px;
        margin-bottom: 8px; }
        .profile .inner .nav-tabs li:last-child {
          margin: 0px; }
        .profile .inner .nav-tabs li a {
          border-radius: 0px;
          border: 0px !important;
          font-weight: 500;
          font-size: 16px;
          border-right: 4px solid transparent !important;
          color: #202043; }
          .profile .inner .nav-tabs li a.active {
            background: #0f75bb1a;
            border-right: 4px solid #008fc7 !important; }
    .profile .inner .tab-content {
      position: relative;
      min-height: inherit;
      border-radius: 16px;
      background: #fff;
      padding: 24px;
      overflow: hidden;
      box-shadow: 0 0px 14px 5px #89adff0f; }
      @media (max-width: 991px) {
        .profile .inner .tab-content {
          padding: 12px; } }
      .profile .inner .tab-content .title {
        font-size: 22px; }
      .profile .inner .tab-content .iteminfo {
        margin-top: 24px; }
        @media (max-width: 991px) {
          .profile .inner .tab-content .iteminfo {
            max-width: 50%;
            flex: 50%;
            margin-top: 12px; } }
        @media (max-width: 767px) {
          .profile .inner .tab-content .iteminfo {
            max-width: 100%;
            flex: 100%; } }
        .profile .inner .tab-content .iteminfo .innerinfo {
          position: relative;
          display: flex;
          padding: 16px;
          border-radius: 16px;
          border: 2px dashed #0f75bb40; }
          .profile .inner .tab-content .iteminfo .innerinfo .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            background: #fff;
            margin: -24px -22px 0px 0px; }
            .profile .inner .tab-content .iteminfo .innerinfo .icon svg {
              width: 34px;
              fill: #008fc7; }
          .profile .inner .tab-content .iteminfo .innerinfo .content {
            margin-right: 16px; }
            .profile .inner .tab-content .iteminfo .innerinfo .content .title {
              font-size: 16px; }
            .profile .inner .tab-content .iteminfo .innerinfo .content p {
              margin-top: 2px; }
  .profile .attendance {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #ced4da;
    padding: 16px;
    border-right: 4px solid #008fc726;
    border-radius: 8px; }
    .profile .attendance .minhead {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid #ced4da; }
      .profile .attendance .minhead .date {
        display: flex;
        align-items: center; }
        @media (max-width: 500px) {
          .profile .attendance .minhead .date {
            font-size: 12px; } }
        .profile .attendance .minhead .date svg {
          width: 18px;
          fill: #008fc7;
          margin-left: 4px; }
          @media (max-width: 500px) {
            .profile .attendance .minhead .date svg {
              display: none; } }
      .profile .attendance .minhead .time {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0px 12px;
        background: #008a3a2b;
        border-radius: 8px;
        color: #008a3a;
        padding-right: 24px;
        font-size: 12px; }
        @media (max-width: 500px) {
          .profile .attendance .minhead .time {
            font-size: 10px;
            padding: 0px 4px; } }
        .profile .attendance .minhead .time::after {
          content: "";
          position: absolute;
          right: 12px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #008a3a; }
          @media (max-width: 500px) {
            .profile .attendance .minhead .time::after {
              display: none; } }
    .profile .attendance .presence {
      display: flex;
      justify-content: space-between; }
      .profile .attendance .presence li {
        text-align: center;
        padding: 16px 0px; }
        .profile .attendance .presence li span {
          display: block; }
          @media (max-width: 500px) {
            .profile .attendance .presence li span {
              font-size: 12px; } }
          .profile .attendance .presence li span:last-child {
            color: #202043;
            font-weight: 900;
            margin-top: 4px; }
    .profile .attendance .minfooter {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 8px;
      border-top: 1px solid #ced4da; }
  .profile .minheader {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 550px) {
      .profile .minheader {
        display: block; } }
    .profile .minheader .dateinput {
      position: relative; }
      @media (max-width: 550px) {
        .profile .minheader .dateinput {
          width: 100%;
          margin-top: 12px; } }
      .profile .minheader .dateinput .form-control {
        background-image: none;
        padding-right: 34px;
        border-radius: 8px;
        height: 40px;
        padding-top: 4px; }
      .profile .minheader .dateinput svg {
        width: 12px;
        position: absolute;
        right: 12px;
        bottom: 14px; }
      .profile .minheader .dateinput .cs-svg {
        width: 16px;
        bottom: 7px; }
    .profile .minheader .bottom {
      width: 102px;
      height: 34px; }
      @media (max-width: 550px) {
        .profile .minheader .bottom {
          margin-top: 12px; } }
      .profile .minheader .bottom svg {
        width: 18px;
        margin-left: 4px; }
    .profile .minheader .felxdate {
      display: flex; }
      .profile .minheader .felxdate .dateinput {
        min-width: 130px;
        max-width: 130px; }
        @media (max-width: 550px) {
          .profile .minheader .felxdate .dateinput {
            min-width: 118px;
            max-width: 118px; } }
        .profile .minheader .felxdate .dateinput:last-child {
          margin-right: 12px; }
  .profile .days {
    margin-top: 12px;
    font-weight: 500;
    color: #008a3a; }
  .profile .late .attendance {
    border-right: 4px solid #d1362a26; }
    .profile .late .attendance .minhead .time {
      background: #d1362a26;
      color: #D1362A; }
      .profile .late .attendance .minhead .time::after {
        background: #D1362A; }
  .profile .inputform {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .profile .inputform {
        margin-top: 12px; } }
    .profile .inputform.dateinput .form-control {
      padding-right: 30px; }
    .profile .inputform.dateinput svg {
      width: 14px;
      position: absolute;
      right: 20px;
      bottom: 19px; }
    .profile .inputform .bottom {
      margin-left: 12px; }
    .profile .inputform button.btn.btn-secondary {
      background: none;
      border: 0;
      margin: 0;
      color: #cf0c0c; }
      .profile .inputform button.btn.btn-secondary:focus {
        box-shadow: none; }
  .profile .noactive {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .profile .formedit,
  .profile .formsport {
    position: absolute;
    opacity: 0;
    z-index: -1; }
    .profile .formedit.active,
    .profile .formsport.active {
      position: relative;
      opacity: 1;
      z-index: 1; }
  .profile .listskills {
    display: flex;
    flex-wrap: wrap; }
    .profile .listskills li {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 12px 0px 0px 12px;
      padding: 4px 16px;
      border-radius: 60px;
      background: #f3f3ffb8;
      color: #202043; }
  .profile .experience {
    margin-top: 12px; }
    .profile .experience .title {
      color: #008fc7;
      font-weight: 400; }
    .profile .experience ul {
      padding-right: 32px;
      margin-top: 4px; }
      .profile .experience ul li {
        list-style: disc;
        margin-top: 8px; }

.footer {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: linear-gradient(90deg, #00072D 0%, #153256 15.03%, #102456 84.79%, #00072D 100%);
  padding: 0px !important; }
  @media (max-width: 991px) {
    .footer {
      padding: 24px 0px; } }
  .footer .item {
    margin-top: 48px; }
    @media (max-width: 991px) {
      .footer .item {
        max-width: 100%;
        flex: 100%; } }
    .footer .item .logo {
      display: flex;
      align-items: center; }
      @media (max-width: 991px) {
        .footer .item .logo {
          justify-content: center; } }
      .footer .item .logo img {
        max-width: 120px;
        margin-left: 24px; }
        .footer .item .logo img:last-child {
          margin: 0px; }
        @media (max-width: 991px) {
          .footer .item .logo img {
            margin: 0px 12px; } }
    .footer .item p {
      color: #fff;
      margin-top: 24px;
      line-height: 24px; }
      @media (max-width: 991px) {
        .footer .item p {
          text-align: center; } }
    .footer .item .app-icons {
      display: flex;
      align-items: center;
      margin-top: 24px; }
      @media (max-width: 991px) {
        .footer .item .app-icons {
          justify-content: center; } }
      .footer .item .app-icons a {
        display: block;
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
        width: 122px;
        height: 40px;
        transition: all 0.5s ease-in-out 0s;
        margin-left: 24px; }
        .footer .item .app-icons a:last-child {
          margin: 0px; }
        @media (max-width: 991px) {
          .footer .item .app-icons a {
            margin: 0px 12px; } }
        .footer .item .app-icons a:hover {
          transform: scale(1.1); }
        .footer .item .app-icons a img {
          width: 100%;
          height: 100%; }
    .footer .item .navmenu {
      margin-top: 12px; }
      .footer .item .navmenu a {
        display: inline-block;
        width: 100%;
        position: relative;
        color: #ffffffbf;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        margin-bottom: 4px; }
        .footer .item .navmenu a:last-child {
          margin: 0px; }
        .footer .item .navmenu a:hover {
          color: #fff; }
        @media (max-width: 991px) {
          .footer .item .navmenu a {
            text-align: center; } }
    .footer .item .title {
      color: #fff;
      font-size: 16px; }
      @media (max-width: 991px) {
        .footer .item .title {
          text-align: center; } }
    .footer .item .newsletter {
      position: relative;
      width: 100%;
      margin-top: 24px; }
      .footer .item .newsletter .form-control {
        height: 50px;
        border-radius: 0px;
        border: 0px !important;
        background: #ffffff14;
        font-style: italic;
        color: #fff;
        font-weight: 400;
        padding-left: 70px; }
      .footer .item .newsletter .bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 50px;
        height: 50px;
        box-shadow: none;
        border-radius: 0px; }
        .footer .item .newsletter .bottom::before {
          border-radius: 0px; }
        .footer .item .newsletter .bottom svg {
          fill: #fff;
          width: 20px; }
      .footer .item .newsletter ::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #ffffffbf;
        opacity: 1;
        /* Firefox */ }
      .footer .item .newsletter :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #ffffffbf; }
      .footer .item .newsletter ::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #ffffffbf; }
  .footer .copyright {
    position: relative;
    margin-top: 48px;
    padding: 16px 12px;
    width: 100%;
    border-top: 1px solid #ffffff38;
    z-index: 2; }
    @media (max-width: 991px) {
      .footer .copyright {
        margin-top: 32px; } }
    .footer .copyright p {
      padding: 0px 12px;
      text-align: center;
      color: #fff; }
  .footer .scrollToTop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    z-index: 998;
    padding: 0px;
    font-size: 12px;
    text-align: center;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-clip: padding-box;
    background: #008fc7;
    padding-top: 11px;
    display: none; }
    .footer .scrollToTop:before {
      content: '';
      position: absolute;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%;
      background: #202043;
      -webkit-transform: scale(0);
      transform: scale(0);
      -moz-transition: all 0.6s ease-in-out 0s;
      -o-transition: all 0.6s ease-in-out 0s;
      -webkit-transition: all 0.6s ease-in-out 0s;
      transition: all 0.6s ease-in-out 0s; }
    .footer .scrollToTop span {
      position: relative;
      z-index: 1;
      color: #fff; }
    .footer .scrollToTop:hover::before {
      -webkit-transform: scale(1);
      transform: scale(1); }
    @media (max-width: 991px) {
      .footer .scrollToTop {
        display: none !important; } }

.m-contact {
  display: flex;
  align-items: flex-start;
  margin-top: 12px; }
  @media (max-width: 991px) {
    .m-contact {
      justify-content: center; } }
  .m-contact svg {
    fill: #fff;
    min-width: 16px;
    max-width: 16px;
    margin: 8px 8px 0px 0px; }
  .m-contact p,
  .m-contact a {
    color: #fff;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
  .m-contact a:hover {
    color: #202043; }

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-decoration: none;
  list-style: none;
  font-size: 14px;
  line-height: 28px;
  color: #767676;
  font-family: 'Almarai', sans-serif; }

::-webkit-scrollbar {
  width: 8px;
  height: 0px; }

/* Track */
::-webkit-scrollbar-track {
  background: #E5E5E5; }

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #008fc7;
  cursor: pointer; }

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  -webkit-transition: .9s;
  transition: .9s; }

.preloader .loader {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 45%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s; }

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; }

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite; }

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1.5);
  transform: translateY(-50%) scale(1.5); }

.indicator img {
  max-width: 16px; }

.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #008fc7;
  -webkit-transition: .9s;
  transition: .9s; }

.preloader::after {
  left: auto;
  right: 0; }

.preloader.preloader-deactivate {
  visibility: hidden; }

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 0; }

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden; }

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@-webkit-keyframes dash {
  62.5% {
    opacity: 0; }
  to {
    stroke-dashoffset: 0; } }
@keyframes dash {
  62.5% {
    opacity: 0; }
  to {
    stroke-dashoffset: 0; } }
/*================================================
  Header Area CSS
  =================================================*/
body {
  direction: rtl;
  text-align: right;
  background: #fff url(../images/bg.png) repeat center center; }
  body.active {
    overflow: hidden; }

.bottom {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  padding: 0px 12px;
  background: #008fc7;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  border: 0px;
  outline-style: none;
  outline: 0px;
  color: #fff;
  width: 130px;
  height: 42px;
  cursor: pointer;
  overflow: hidden;
  justify-content: center;
  -moz-transition: all 0.6s ease-in-out 0s;
  -o-transition: all 0.6s ease-in-out 0s;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s; }
  @media (max-width: 991px) {
    .bottom {
      width: 116px;
      height: 36px;
      font-size: 12px; } }
  .bottom:hover {
    background: #202043; }
  .bottom:focus {
    outline: 0px !important; }

.social {
  display: flex;
  justify-content: flex-end;
  direction: ltr;
  margin-top: 24px; }
  @media (max-width: 991px) {
    .social {
      justify-content: center; } }
  .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff14;
    margin-right: 4px;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .social a:last-child {
      margin: 0px; }
    @media (max-width: 991px) {
      .social a {
        margin: 0px 4px !important; } }
    .social a svg {
      max-width: 16px;
      max-height: 16px;
      fill: #fff; }
    .social a.icon-facebook:hover {
      background: #3b5998 !important; }
    .social a.icon-twitter:hover {
      background: #00acee !important; }
    .social a.icon-instagram:hover {
      background: #8d5b46 !important; }
    .social a.icon-youtube:hover {
      background: #c4302b !important; }
    .social a.icon-rss:hover {
      background: #ee802f !important; }
    .social a.icon-snapchat:hover {
      background: #fbeb0c !important; }
    .social a.icon-linkedin:hover {
      background: #007fb1 !important; }
    .social a.icon-gplus:hover {
      background: #dd4b39 !important; }
    .social a.icon-whatsapp:hover {
      background: #189d0e !important; }
    .social a.icon-email:hover {
      background: #dd4b39 !important; }
    .social a.icon-print:hover {
      background: #8d5b46 !important; }
    .social a.icon-link:hover {
      background: #008fc7 !important; }
    .social a.icon-behance:hover {
      background: #008fc7 !important; }

.title {
  font-size: 32px;
  font-weight: 600;
  color: #202043;
  line-height: 160%;
  position: relative; }
  @media (max-width: 991px) {
    .title {
      font-size: 28px; } }

.form-control {
  height: 54px;
  text-transform: none;
  box-shadow: none; }
  .form-control:focus {
    border: 1px solid #008fc7; }

.che-box {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  margin: 0px;
  padding-right: 28px; }
  .che-box input[type="checkbox"],
  .che-box input[type="radio"] {
    position: absolute;
    left: 9000px; }
  .che-box input[type="checkbox"] + .label-text:before,
  .che-box input[type="radio"] + .label-text:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 6px;
    background: none;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    font-style: initial;
    border: 1px solid #008fc7; }
  .che-box input[type="radio"] + .label-text:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box; }
  .che-box input[type="checkbox"]:checked + .label-text:before,
  .che-box input[type="radio"]:checked + .label-text:before {
    content: "";
    background: #008fc7 url(../images/tick.svg) no-repeat center center;
    background-size: 100% 100%;
    animation: effect 250ms ease-in; }
  .che-box span.label-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #202043;
    text-transform: capitalize; }
    @media (max-width: 991px) {
      .che-box span.label-text {
        font-size: 14px; } }

.textcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px; }
  .textcenter .bottom {
    width: 154px; }
    @media (max-width: 991px) {
      .textcenter .bottom {
        width: 130px; } }

.alert {
  display: flex;
  align-items: center;
  border: 0px;
  margin: 0px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  height: 60px;
  color: #fff; }
  .alert a {
    text-decoration: underline;
    color: #fff;
    font-weight: 400; }
    .alert a:hover {
      text-decoration: none; }
  .alert .contant {
    margin: 0px !important;
    margin-right: 12px !important; }
  .alert p {
    margin: 0px !important;
    color: #fff; }
  .alert.alert-success {
    background: linear-gradient(303.91deg, #1F7A66 7.57%, #60B3A7 94.39%); }
  .alert.alert-danger {
    background: linear-gradient(303.91deg, #C24848 7.57%, #D34A4A 94.39%); }

table {
  margin-bottom: 0px !important;
  margin-top: 24px; }
  @media (max-width: 991px) {
    table {
      margin-top: 12px; } }
  table .case {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0px 4px;
    background: #008a3a2b;
    border-radius: 8px;
    color: #008a3a;
    max-width: 80px;
    font-size: 12px; }
    table .case.red {
      background: #d1362a26;
      color: #D1362A; }
    table .case.yellow {
      background: #fda40038;
      color: #fbae1f; }
  table td,
  table th {
    border: 0px !important; }
    @media (max-width: 991px) {
      table td,
      table th {
        white-space: nowrap; } }
  table th {
    color: #202043; }
  table .vacat {
    font-weight: 600;
    color: #202043;
    text-align: center; }
  table tr:nth-of-type(odd) {
    background: #f3f3ffb8 !important; }

select.form-control {
  -webkit-appearance: none;
  background: #fff url(../images/arrow.svg) no-repeat;
  background-position: 12px 24px; }
  select.form-control option {
    padding: 24px; }

textarea.form-control {
  resize: none;
  min-height: 120px; }

.map-back {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  height: 192px;
  padding: 0px;
  background: #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  @media (max-width: 991px) {
    .map-back {
      padding: 24px 0px; } }
  .map-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(303.91deg, #041c3fd1 7.57%, #041c3f57 94.39%);
    z-index: 2; }
  .map-back img {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
  .map-back .container {
    z-index: 2; }
  .map-back .title {
    color: #fff;
    text-align: center; }
    @media (max-width: 991px) {
      .map-back .title {
        font-size: 28px; } }
  .map-back .maplink {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .map-back .maplink {
        display: none; } }
    .map-back .maplink li {
      display: inline-block;
      color: #18AAE3;
      margin-left: 8px; }
      .map-back .maplink li:last-child {
        margin-right: 0px; }
        .map-back .maplink li:last-child a {
          padding-left: 0px; }
      .map-back .maplink li a {
        color: #fff;
        position: relative;
        padding-left: 16px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .map-back .maplink li a:hover {
          color: #008fc7; }
        .map-back .maplink li a:before {
          position: absolute;
          top: -5px;
          left: 2px;
          content: "/";
          display: inline-block;
          color: #fff; }

.pagination {
  width: 100%;
  margin-top: 32px;
  justify-content: center;
  padding: 0px !important; }
  @media (max-width: 991px) {
    .pagination {
      margin-top: 24px; } }
  .pagination li {
    display: inline-block;
    margin: 0px 4px; }
    .pagination li a,
    .pagination li span {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      -webkit-border-radius: 50% !important;
      border-radius: 50% !important;
      background-clip: padding-box;
      width: 40px;
      height: 40px;
      border: 0px;
      background: rgba(193, 193, 193, 0.5);
      color: #202043;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .pagination li svg {
      width: 12px;
      height: 12px; }
    .pagination li:last-child svg {
      transform: rotate(90deg); }
    .pagination li:first-child svg {
      transform: rotate(-90deg); }
  .pagination .page-link.active,
  .pagination .page-link:hover {
    background: #202043 !important;
    color: #fff !important; }
    .pagination .page-link.active svg,
    .pagination .page-link:hover svg {
      fill: #fff; }

.comments {
  width: 100%;
  background: #f3f3ff;
  padding: 24px;
  margin-top: 24px;
  border-radius: 16px;
  /* Vertical line */ }
  @media (max-width: 991px) {
    .comments {
      padding: 16px; } }
  .comments .inner {
    display: flex;
    border-bottom: 1px solid #E5E5E5;
    padding: 24px;
    background: #fff; }
    .comments .inner:last-of-type {
      border-bottom: 0px; }
  .comments .img {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    border: 1px solid #fff;
    margin-left: 16px;
    -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15); }
    .comments .img img {
      width: 100%;
      min-height: 100%;
      object-fit: cover; }
  .comments .content {
    margin-right: 12px; }
  .comments .title {
    font-size: 18px !important;
    font-weight: 600;
    margin: 0px !important; }
  .comments .days {
    display: block;
    color: #008fc7;
    margin-top: 4px; }
  .comments .text {
    font-weight: 500; }
  .comments .answer {
    display: flex;
    align-items: center;
    margin-top: 12px;
    font-weight: 500;
    cursor: pointer;
    color: #202043 !important; }
    .comments .answer svg {
      margin-left: 4px;
      fill: #008fc7; }
  .comments .commentinner {
    display: flex;
    width: 100%;
    margin-top: 24px;
    position: relative;
    border-top: 1px solid #E5E5E5;
    padding-top: 24px; }
  .comments .addcoment {
    width: 100%;
    margin-top: 24px; }
    .comments .addcoment .title {
      font-size: 28px; }
    .comments .addcoment .field {
      margin-top: 24px; }
      .comments .addcoment .field .form-control {
        background: #fff; }
      .comments .addcoment .field textarea {
        min-height: 140px;
        resize: none; }
      .comments .addcoment .field .che-box input[type="checkbox"] + .label-text:before,
      .comments .addcoment .field .che-box input[type="radio"] + .label-text:before {
        background: #fff;
        border: 1px solid #ced4da; }
      .comments .addcoment .field input[type="checkbox"]:checked + .label-text:before,
      .comments .addcoment .field input[type="radio"]:checked + .label-text:before {
        background: #008fc7 url(../images/tick.svg) no-repeat center center;
        border: 1px solid #008fc7; }
      .comments .addcoment .field .che-box {
        font-weight: 500;
        color: #202043; }
        .comments .addcoment .field .che-box a {
          color: #008fc7;
          font-weight: 500; }
          .comments .addcoment .field .che-box a:hover {
            text-decoration: underline; }
  .comments .accordion {
    width: 100%; }
    .comments .accordion .option {
      width: 100%;
      position: relative; }
      .comments .accordion .option .click-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: #fff;
        border-radius: 0px !important;
        box-shadow: none !important; }
        .comments .accordion .option .click-title a {
          display: flex !important;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          padding: 12px 20px;
          font-size: 16px;
          color: #202043;
          font-weight: 500; }
          .comments .accordion .option .click-title a p {
            margin: 0px;
            margin-left: 20px;
            font-size: 16px;
            color: #202043;
            font-weight: 500; }
            .comments .accordion .option .click-title a p span {
              margin-right: 4px;
              color: #008fc7;
              font-weight: 600; }
  .comments .collapsible-link::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 16px;
    height: 10px;
    background: url(../images/arrow.svg) no-repeat;
    display: block;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    z-index: 10; }
  .comments .collapsible-link[aria-expanded='true']::before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }

.settings .itemreting {
  margin-top: 24px; }
  @media (max-width: 991px) {
    .settings .itemreting {
      max-width: 50%;
      flex: 50%; } }
  @media (max-width: 767px) {
    .settings .itemreting {
      max-width: 100%;
      flex: 100%; } }
  .settings .itemreting .inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px 8px;
    background: #f3f3ff;
    border-radius: 16px;
    text-align: center; }
    .settings .itemreting .inner .title {
      font-size: 16px !important;
      margin: 0px !important;
      text-align: center; }
      .settings .itemreting .inner .title span {
        color: #008fc7; }
    .settings .itemreting .inner nav {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 12px; }
      .settings .itemreting .inner nav .bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        margin: 0px 4px;
        border-radius: 8px; }

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 12px; }
  .rating input {
    display: none; }
  .rating label {
    position: relative;
    font-size: 34px;
    color: #fbae1f;
    margin: 0px;
    cursor: pointer; }
    .rating label:before {
      content: "\2605";
      position: absolute;
      opacity: 0; }

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important; }

.rating > input:checked ~ label:before {
  opacity: 1; }

.rating:hover > input:checked ~ label:before {
  opacity: 0.4; }

/*# sourceMappingURL=home.css.map */
