/***************************** Start Animations *****************************/
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
            transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
            transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@-webkit-keyframes circled {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circled {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes stars {
  0% {
    top: 0;
  }
  100% {
    top: 110%;
  }
}

@keyframes stars {
  0% {
    top: 0;
  }
  100% {
    top: 110%;
  }
}

/*dropdown animation*/
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  50% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  50% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

/*rotation animation*/
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

/*spinner loading page*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*start the wave animation*/
@-webkit-keyframes wave {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes wave {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}

@-webkit-keyframes niceAnimate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes niceAnimate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

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

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

@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}

@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}

@-webkit-keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes translateX {
  0%,
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes translateX {
  0%,
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes translateY {
  0%,
  100% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@keyframes translateY {
  0%,
  100% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes wheel {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes wheel {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

/*flipping*/
@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

/*shadow animation*/
@-webkit-keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 35px -4px #00a4e6;
            box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    -webkit-box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
            box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 35px -4px #00a4e6;
            box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    -webkit-box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
            box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}

/*start rotate*/
@-webkit-keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}
@keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}

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

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

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

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

@font-face {
  font-family: "semiBold";
  src: url(../fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3 {
  font-family: "bold";
}

h4,
h5,
h6 {
  font-family: "semiBold";
}

p,
span, a, .nav-link {
  font-family: 'regular';
}

.typed-cursor {
  opacity: 0 !important;
}

/*end general properties for website*/
/*start nav*/
.top-nav {
  width: 100%;
  padding: 20px 0px;
  background-color: #160b71;
}

.top-nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.top-nav .links li {
  color: #fff;
}

.top-nav .links li a {
  color: #fff;
  margin: 0px 10px;
}

.top-nav .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-nav .social-icon li {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border-radius: 4px;
  margin: 0px 10px;
}

.top-nav .social-icon li a {
  color: #11095c;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.top-nav .social-icon li:hover a {
  -webkit-animation: translateX .5s linear infinite;
          animation: translateX .5s linear infinite;
}

nav {
  width: 100%;
  padding: 5px 0px;
  background-color: #261b76;
}

nav .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

nav .nav-content .image-content {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
}

nav .nav-content .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav .nav-content .navbar {
  list-style: none;
  width: 100%;
  margin: auto;
}

nav .nav-content .navbar .nav-item .nav-link {
  color: #ddd;
}

nav .nav-content .navbar .nav-item .nav-link.active {
  color: #fff;
  font-family: "semiBold";
}

nav .nav-content .colse-btn {
  display: none !important;
}

nav .nav-content .nav-button {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #dfdff9;
  display: none;
}

/*satrt header*/
header {
  width: 100%;
  padding: 50px 0px 0px 0px;
  background-color: #0d0743;
  position: relative;
}

header .image-content {
  width: 100%;
  height: 500px;
  background-color: #dfdff9;
  border-top-left-radius: 50%;
  border-top-right-radius: 60%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 55%;
  -webkit-animation: rotate 20s linear infinite both;
          animation: rotate 20s linear infinite both;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: -25%;
}

header .image-content svg {
  width: 90%;
  height: 90%;
  margin: auto;
}

header .image-content svg #hand_shape, header .image-content svg #woman {
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

header .image-content svg #graph, header .image-content svg #graph_4, header .image-content svg #graph_2, header .image-content svg #graph_3, header .image-content svg #man {
  -webkit-animation: translateY 1s linear infinite;
          animation: translateY 1s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

header .image-content svg #Vector_9, header .image-content svg #Vector_10, header .image-content svg #Vector_11, header .image-content svg #Vector_12, header .image-content svg #Vector_4, header .image-content svg #Vector_5, header .image-content svg #Vector_6 {
  -webkit-animation: niceAnimate 1s linear infinite;
          animation: niceAnimate 1s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

header .image-content svg #Vector_85 {
  -webkit-animation: vibrate 1s linear infinite;
          animation: vibrate 1s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

header .header-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

header .header-content span {
  font-family: "bold";
}

header .header-content p {
  margin: 10px 0px;
  line-height: 2rem;
}

/*satrt who-us*/
.who-us {
  width: 100%;
  padding: 100px 0px;
  background: url(../images/map_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.who-us .box {
  padding: 0px 20px;
}

.who-us .box .image-content {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .box .image-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(13, 7, 67, 0.5);
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .box .content {
  width: 100%;
  padding: 20px 0px;
}

.who-us .box .content h3 {
  color: #11095c;
}

.who-us .box .content span {
  font-weight: bold;
}

.who-us .box .content span, .who-us .box .content p {
  color: #808080;
  line-height: 1.8rem;
  margin: 10px 0px;
}

.who-us .box:hover .image-content {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.who-us .box:hover .image-content img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.who-us .box:hover .image-content::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.who-us .video-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 27% 100% 100% 42% / 42% 40% 100% 98% !important;
  border-radius: 27% 100% 100% 42% / 42% 40% 100% 98% !important;
  -webkit-box-shadow: 0px 0px 30px #808080;
          box-shadow: 0px 0px 30px #808080;
  position: relative;
  z-index: 999;
}

.who-us .video-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.who-us .video-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 11, 113, 0.5);
  top: 0;
  left: 0;
  border-radius: 27% 100% 100% 42% / 42% 40% 100% 98% !important;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .video-box .video-play {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.who-us .video-box .video-play img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .video-box:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.who-us .video-box:hover .video-play img {
  -webkit-animation: translateY 1s linear infinite;
          animation: translateY 1s linear infinite;
}

/*start convert*/
.convert {
  width: 100%;
  padding: 50px 0px 30px 0px;
  background-color: #f2f5fc;
}

.convert .content h3 {
  color: #261b76;
}

.convert .content p {
  line-height: 2rem;
  margin: 10px 0px;
  color: #808080;
}

.convert .convert-box {
  padding: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px #808080;
          box-shadow: 0px 0px 20px #808080;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  position: relative;
}

.convert .convert-box .image-content {
  width: 150px;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.convert .convert-box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  -webkit-filter: invert(11%) sepia(36%) saturate(6555%) hue-rotate(243deg) brightness(91%) contrast(117%);
          filter: invert(11%) sepia(36%) saturate(6555%) hue-rotate(243deg) brightness(91%) contrast(117%);
}

.convert .convert-box .box-contain {
  padding: 0px 20px;
  position: relative;
  z-index: 999;
}

.convert .convert-box .box-contain span {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 30px;
  background-color: #261b76;
  border-radius: 20px;
  top: -15px;
  margin-top: -11px !important;
  color: #fff;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.convert .convert-box .box-contain p {
  margin: 10px 0px;
  color: #808080;
  line-height: 1.8rem;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.convert .convert-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #160b71;
  left: 0;
  top: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.convert .convert-box:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  border-radius: 10px;
}

.convert .convert-box:hover span {
  color: #160b71;
  background-color: #fff;
}

.convert .convert-box:hover p {
  color: #dfdff9;
}

.convert .convert-box:hover img {
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(65deg) brightness(98%) contrast(97%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(65deg) brightness(98%) contrast(97%);
  -webkit-animation: translateY 1s linear infinite;
          animation: translateY 1s linear infinite;
}

/*start last-news*/
.last-news {
  width: 100%;
  padding: 50px 0px;
  background-color: #fff;
}

.last-news .heading {
  width: 100%;
  text-align: center;
  color: #160b71;
}

.last-news .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto  20px;
}

.last-news .nav .nav-link {
  color: #000;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  margin: .5rem;
}

.last-news .nav .nav-link.active, .last-news .nav .nav-link:hover {
  background-color: transparent;
  color: #160b71;
  font-weight: bold;
  text-decoration: line-through !important;
}

.last-news .box {
  width: 100%;
  position: relative;
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #eee;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.last-news .box .image-content {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.last-news .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.last-news .box .image-content:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 27, 118, 0.5);
  top: 0;
  left: 0;
  -webkit-transform: scale(0) rotate(180deg);
          transform: scale(0) rotate(180deg);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.last-news .box .content {
  padding: 20px;
}

.last-news .box .content h3 {
  color: #160b71;
  text-align: center;
  margin-bottom: 10px;
}

.last-news .box .content span {
  color: #c5817b;
  font-weight: bold;
}

.last-news .box .content p {
  color: #808080;
  line-height: 1.8rem;
  margin-top: 15px;
}

.last-news .box:hover {
  -webkit-box-shadow: 0px 0px 10px #808080;
          box-shadow: 0px 0px 10px #808080;
}

.last-news .box:hover .image-content img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.last-news .box:hover .image-content:after {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

/*start news*/
.news {
  width: 100%;
  padding: 50px 0px;
  background-color: #f1f5f8;
}

.news .heading {
  width: 100%;
  text-align: center;
  color: #160b71;
  margin-bottom: 30px;
}

.news .box {
  width: 100%;
  position: relative;
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #ddd;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.news .box.cloumn-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.news .box .image-content {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.news .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.news .box .image-content .time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #261b76;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  -webkit-box-shadow: 0px 0px 15px #808080;
          box-shadow: 0px 0px 15px #808080;
}

.news .box .image-content .time p {
  margin: 5px 0px;
  text-align: center;
  color: #fff;
}

.news .box .image-content:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 27, 118, 0.5);
  top: 0;
  left: 0;
  -webkit-transform: scale(0) rotate(180deg);
          transform: scale(0) rotate(180deg);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.news .box .content {
  padding: 20px;
}

.news .box .content h3 {
  color: #160b71;
  text-align: center;
  margin-bottom: 10px;
}

.news .box .content p {
  color: #808080;
  line-height: 1.8rem;
  margin-top: 15px;
}

.news .box .content .social-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.news .box .content .social-content span {
  color: #c5817b;
  font-weight: bold;
}

.news .box .content .social-content .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.news .box .content .social-content .social-icon li {
  margin: 0px 10px;
}

.news .box .content .social-content .social-icon li a {
  color: #11095c;
  font-size: 17px;
}

.news .box:hover {
  -webkit-box-shadow: 0px 0px 10px #808080;
          box-shadow: 0px 0px 10px #808080;
}

.news .box:hover .image-content img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.news .box:hover .image-content:after {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
}

.news .box:hover .image-content .time {
  background-color: #dfdff9;
}

.news .box:hover .image-content .time p {
  color: #160b71;
}

/*start multi-media*/
.multi-media {
  width: 100%;
  padding: 50px 0px;
  background-color: #fff;
}

.multi-media .heading {
  width: 100%;
  text-align: center;
  color: #160b71;
  margin-bottom: 40px;
}

.multi-media .image-content {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  margin-bottom: 30px;
}

.multi-media .image-content.big-img {
  height: 528px;
}

.multi-media .image-content.small-img {
  height: 250px;
}

.multi-media .image-content h6 {
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  z-index: 999;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.multi-media .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.multi-media .image-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 11, 113, 0.6);
  -webkit-transition: .5s linear;
  transition: .5s linear;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  top: 0;
  left: 0;
}

.multi-media .image-content:hover {
  -webkit-box-shadow: 0px 0px 20px #808080;
          box-shadow: 0px 0px 20px #808080;
}

.multi-media .image-content:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.multi-media .image-content:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.multi-media .image-content:hover h6 {
  opacity: 1;
}

/*start open-data*/
.open-data {
  width: 100%;
  padding: 50px 0px;
}

.open-data .image-content {
  width: 100%;
  height: 500px;
}

.open-data .image-content svg {
  width: 100%;
  height: 100%;
}

.open-data .image-content #circle {
  -webkit-animation: wheel 2s linear infinite;
          animation: wheel 2s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.open-data .image-content #lap_top, .open-data .image-content #phone, .open-data .image-content #watch {
  -webkit-animation: translateY 1s linear infinite;
          animation: translateY 1s linear infinite;
}

.open-data .image-content #firstServer, .open-data .image-content #lastServer {
  -webkit-animation: fadeInRight 2s linear infinite;
          animation: fadeInRight 2s linear infinite;
}

.open-data .image-content #mediumServer {
  -webkit-animation: fadeInLeft 2s linear infinite;
          animation: fadeInLeft 2s linear infinite;
}

.open-data .image-content #Vector_22, .open-data .image-content #Vector_29 {
  -webkit-animation: niceAnimate 1s linear infinite;
          animation: niceAnimate 1s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.open-data .heading {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.open-data .heading h3 {
  color: #11095c;
}

.open-data .heading p {
  margin: 20px 0px;
  line-height: 1.8rem;
  color: #808080;
}

.open-data .heading .btn {
  padding: 15px 30px;
  border-radius: 20px;
  border: 2px solid #261b76;
  color: #261b76;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  z-index: 9999;
}

.open-data .heading .btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #261b76;
  top: 0;
  left: 0;
  border-radius: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
  z-index: -1;
}

.open-data .heading .btn:hover {
  color: #fff;
  border-color: #fff;
}

.open-data .heading .btn:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*satrt links*/
.links {
  width: 100%;
  padding: 50px 0px;
}

.links .heading {
  width: 100%;
  text-align: center;
  color: #261b76;
  margin-bottom: 30px;
}

.links .item {
  width: 100%;
  height: 75px;
  overflow: hidden;
  position: relative;
}

.links .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.links .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 7, 67, 0.5);
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.links .item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.links .item:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.links .owl-theme .owl-dots .owl-dot.active span {
  background-color: #261b76;
}

/*start footer*/
footer {
  width: 100%;
  padding: 20px 0px;
  background-color: #091a50;
  color: #fff !important;
}

footer .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

footer .image .image-content {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #061543;
  margin: 20px 15px !important;
}

footer .image .image-content img {
  width: 90%;
  height: 90%;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

footer .image .image-content p {
  color: #fff;
}

footer .image .image-content:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/*start loading page*/
.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.loader .circle {
  width: 290px;
  height: 290px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#11095c), to(#30b7bd));
  background: linear-gradient(#11095c, #30b7bd);
  border-radius: 50%;
  -webkit-animation: circled 0.5s linear infinite;
          animation: circled 0.5s linear infinite;
}

.loader .circle::after {
  content: '';
  position: absolute;
  top: 35px;
  right: 35px;
  bottom: 35px;
  left: 35px;
  background: #000000;
  border-radius: 50%;
}

.loader .circle span {
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(#30b7bd), to(#11095c));
  background: linear-gradient(#30b7bd, #11095c);
  border-radius: 50%;
}

.loader .circle span:nth-child(1) {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.loader .circle span:nth-child(2) {
  -webkit-filter: blur(18px);
          filter: blur(18px);
}

.loader .circle span:nth-child(3) {
  -webkit-filter: blur(20);
          filter: blur(20);
}

.loader .circle span:nth-child(4) {
  -webkit-filter: blur(55px);
          filter: blur(55px);
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background: #11095c;
  border-radius: 50%;
  color: #fff;
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
  bottom: 4px;
}
/*# sourceMappingURL=style.css.map */