/***************************** 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;
  }
}

/*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(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  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);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

@-webkit-keyframes scaleed {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleed {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-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);
  }
}

/*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);
  }
}

@-webkit-keyframes imageMove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@keyframes imageMove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

@-webkit-keyframes wave-2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

@keyframes wave-2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

@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;
  scroll-behavior: smooth !important;
}

.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, .nav-link, .btn {
  font-family: 'regular';
}

body::-webkit-scrollbar-thumb {
  background-color: #FDB00A;
  border-radius: 0px;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}

ul {
  margin: 0px;
  list-style: none;
  padding: 0px;
}

.particles {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  pointer-events: none;
  z-index: 9;
}

.particles .particles-js-canvas-el {
  top: 0px;
  left: 0px;
  position: absolute;
}

.margin-content {
  margin: 25px 0px !important;
}

.special-heading {
  padding: 20px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 99;
}

.special-heading h3 {
  color: #FDB00A;
  margin-bottom: 1rem;
  padding: 20px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 99;
}

.special-heading h3::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border: 3px solid rgba(0, 51, 50, 0.5);
  top: calc(50% - 12.5px);
  z-index: -1;
  left: 0;
  -webkit-animation: translateY 1.5s linear infinite;
          animation: translateY 1.5s linear infinite;
}

.special-heading p {
  color: #80808080;
}

.heading {
  padding: 20px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 99;
}

.heading h3 {
  color: #FDB00A;
  margin-bottom: 1rem;
}

.heading p {
  line-height: 1.8rem;
  padding: 0px 10px;
  font-size: 15px;
  color: #777777;
  position: relative;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #ccc;
  width: 13px;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 20px !important;
  background-color: #FDB00A !important;
}

.owl-theme .owl-nav {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: -10%;
  left: 0;
}

.owl-theme .owl-nav [class*='owl-'],
.owl-theme .owl-nav [class*='owl-']:hover {
  background-color: transparent;
  color: #FDB00A;
  font-size: 20 !important;
  margin: 0px 10px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  -webkit-animation: translateX 1s ease-in-out infinite;
          animation: translateX 1s ease-in-out infinite;
}

.general-section {
  width: 100%;
  padding: 50px 0px;
}

nav {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #f3f3f3;
          box-shadow: 0px 0px 10px #f3f3f3;
  position: relative;
}

nav .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

nav .content .heading {
  margin: unset;
  text-transform: capitalize;
}

nav .content .heading h3 {
  color: #000;
}

nav .nav-container .image-content {
  width: 200px;
  height: 100px;
  overflow: hidden;
}

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

nav .nav-container .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -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: 20px 0px;
  width: 100%;
  margin: auto;
  position: relative;
  background-color: #026562;
}

nav .nav-container .nav-content .nav-item .nav-link {
  padding: .5rem 1rem;
  color: #fff;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  cursor: pointer;
}

nav .nav-container .nav-content .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FDB00A;
  top: 0;
  left: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

nav .nav-container .nav-content .nav-item .nav-link i {
  margin: 0px 10px;
}

nav .nav-container .nav-content .nav-item.active .nav-link, nav .nav-container .nav-content .nav-item:hover .nav-link {
  color: #FDB00A;
  font-weight: bold;
}

nav .nav-container .nav-content .nav-item.active .nav-link::after, nav .nav-container .nav-content .nav-item:hover .nav-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

nav .nav-container .nav-content::before {
  content: '';
  position: absolute;
  width: 28%;
  height: 100%;
  top: 0;
  left: 0px;
  background-color: #003332;
  -webkit-clip-path: polygon(0 1%, 63% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 1%, 63% 0, 100% 100%, 0% 100%);
}

nav::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  right: 0;
  background-color: rgba(253, 176, 10, 0.5);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  -webkit-animation: niceAnimate 4s ease-in-out infinite;
          animation: niceAnimate 4s ease-in-out infinite;
}

.mobile-only {
  display: none !important;
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #111;
  -webkit-box-shadow: 0px 0px 100px  #FDB00A;
          box-shadow: 0px 0px 100px  #FDB00A;
  z-index: 9999;
}

.mobile-only .nav-button {
  width: 50px;
  height: 30px;
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-only .nav-button span {
  width: 100%;
  height: 4px;
  background-color: #FDB00A;
}

.mobile-only .nav-button span:nth-child(2) {
  -webkit-animation: translateX 1s ease-in-out infinite;
          animation: translateX 1s ease-in-out infinite;
}

.mobile-only .nav-menu {
  width: 0%;
  height: 87%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0%;
  left: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.mobile-only .nav-menu .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(253, 176, 10, 0.5);
  visibility: hidden;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.mobile-only .nav-menu .nav-items {
  width: 70%;
  height: 100%;
  position: absolute;
  z-index: 999;
  background-color: #111;
  left: -100%;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.mobile-only .nav-menu .nav-items .nav-content {
  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;
  list-style: none;
  margin: 0px;
  padding: 10px 0px 0px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-only .nav-menu .nav-items .nav-content .nav-item .nav-link {
  padding: 1rem 1rem;
  color: #fff;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.mobile-only .nav-menu .nav-items .nav-content .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FDB00A;
  bottom: 0;
  left: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.mobile-only .nav-menu .nav-items .nav-content .nav-item.active .nav-link, .mobile-only .nav-menu .nav-items .nav-content .nav-item:hover .nav-link {
  color: #FDB00A;
  font-weight: bold;
}

.mobile-only .nav-menu .nav-items .nav-content .nav-item.active .nav-link::after, .mobile-only .nav-menu .nav-items .nav-content .nav-item:hover .nav-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.active-overlay {
  opacity: 1 !important;
  visibility: visible !important;
}

.active-nav-item {
  left: 0% !important;
}

.active-menu {
  width: 100% !important;
}

/*====================================
    start mian
==========================================*/
/*start header*/
header {
  width: 100%;
  padding: 100px 0px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

header .background-header {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

header .wave-content .wave {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100px;
  background: url(../images/wave.png);
  background-size: 1000px 100px;
}

header .wave-content .wave:nth-child(1) {
  -webkit-animation: wave 20s linear infinite !important;
          animation: wave 20s linear infinite !important;
  z-index: 3;
  opacity: 1;
  -webkit-animation: 0s;
          animation: 0s;
  bottom: 0;
}

header .wave-content .wave:nth-child(2) {
  -webkit-animation: wave-2 15s linear infinite !important;
          animation: wave-2 15s linear infinite !important;
  z-index: 6;
  opacity: .5;
  -webkit-animation: -5s;
          animation: -5s;
  bottom: 10px;
}

header .wave-content .wave:nth-child(3) {
  -webkit-animation: wave 20s linear infinite !important;
          animation: wave 20s linear infinite !important;
  z-index: 5;
  opacity: .2;
  -webkit-animation: -2s;
          animation: -2s;
  bottom: 15px;
}

header .wave-content .wave:nth-child(4) {
  -webkit-animation: wave-2 5s linear infinite !important;
          animation: wave-2 5s linear infinite !important;
  z-index: 4;
  opacity: .7;
  -webkit-animation: -5s;
          animation: -5s;
  bottom: 20px;
}

header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0d170f), color-stop(#0d170f), color-stop(rgba(13, 23, 15, 0.63)), to(rgba(13, 23, 15, 0.3)));
  background-image: linear-gradient(to bottom, #0d170f, #0d170f, rgba(13, 23, 15, 0.63), rgba(13, 23, 15, 0.3));
  top: 0;
  left: 0;
  z-index: 9;
}

header .data-content-pages {
  width: 100%;
  padding: 100px 0px;
  background-color: rgba(17, 17, 17, 0.9);
  position: relative;
  z-index: 999;
  border-radius: 20px;
}

header .data-content-pages ul {
  width: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .data-content-pages ul li {
  margin: 0px 10px;
  color: #fff;
}

header .data-content-pages ul li a {
  color: #fff;
}

header .data-content-pages ul li.active a {
  color: #FDB00A;
  font-weight: bold;
}

header .owl-header {
  width: 100%;
  padding: 100px 0px 30px 0px;
  background-color: rgba(17, 17, 17, 0.9);
  position: relative;
  z-index: 999;
  border-radius: 20px;
}

header .owl-header .item {
  text-align: center;
  margin-bottom: 40px;
}

header .owl-header .item h4 {
  color: #FDB00A;
}

header .owl-header .item p {
  color: #f1f1f1;
  line-height: 1.8rem;
  font-size: 15px;
}

header .owl-header .item .btn {
  border: 2px solid #FDB00A;
  color: #FDB00A;
}

header .owl-header .item .image-content {
  width: 100%;
  height: 200px;
}

header .owl-header .item .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*start responsible*/
.responsible {
  width: 100%;
  padding: 50px 0px;
  background: url(../images/npatt.png);
  position: relative;
}

.responsible .data h3, .responsible .data h5 {
  color: #FDB00A;
  margin-bottom: 1rem;
}

.responsible .data p {
  color: #f3f3f3;
  line-height: 1.8rem;
}

.responsible .data .importnat-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 0px;
  position: relative;
}

.responsible .data .importnat-name::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 3px;
  background-color: #FDB00A;
}

.responsible .image-content {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border: 3px solid #FDB00A;
  border-radius: 10px;
  margin-top: -100px;
  z-index: 99;
}

.responsible .image-content span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 15px;
  line-height: 30px;
  background-color: #026562;
  position: absolute;
  left: 0;
  top: 20px;
  color: #fff;
  border-radius: 3px;
}

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

/*satrt last-news*/
.last-news {
  width: 100%;
  padding: 50px 0px;
}

.last-news .item {
  margin: 10px !important;
}

.last-news .box {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  overflow: hidden;
}

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

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

.last-news .box .image-content span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 15px;
  line-height: 1.8rem;
  color: #f1f1f1;
  background-color: #026562;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 0px;
  z-index: 99;
}

.last-news .box .image-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0% !important;
  left: 0%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-news .box .image-content .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #FDB00A;
  color: #f1f1f1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: 999;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.last-news .box .box-content {
  padding: 20px 0px;
  text-align: center;
}

.last-news .box .box-content h4 {
  color: #000;
}

.last-news .box .box-content p {
  color: #777777;
  line-height: 1.8rem;
}

.last-news .box:hover {
  -webkit-box-shadow: 0px 0px 5px #444;
          box-shadow: 0px 0px 5px #444;
}

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

.last-news .box:hover .image-content::after {
  height: 100% !important;
}

.last-news .box:hover .image-content .btn {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.last-news .box:hover h4 {
  color: #FDB00A;
}

/*start department*/
.department {
  width: 100%;
  padding: 100px 0px;
  background: url(../images/header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.department .box {
  width: 100%;
  padding: 20px 0px 10px 0px;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 20px 0px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.department .box .box-container {
  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;
  align-items: center;
}

.department .box .box-container .image-content {
  width: 100px;
  height: 100px;
  margin: auto;
}

.department .box .box-container .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(29%) sepia(12%) saturate(5204%) hue-rotate(140deg) brightness(94%) contrast(98%);
          filter: invert(29%) sepia(12%) saturate(5204%) hue-rotate(140deg) brightness(94%) contrast(98%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.department .box .box-container .box-content {
  padding: 20px 0px 0px 0px;
  text-align: center;
}

.department .box .box-container .box-content h4 {
  color: #FDB00A;
}

.department .box:hover img {
  -webkit-animation: rotation .5s ease-in-out infinite;
          animation: rotation .5s ease-in-out infinite;
}

.department .box:hover h4 {
  color: #026562 !important;
}

.department .card-container {
  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;
  width: 100%;
  height: 100%;
}

.department .card-container .accordion .card {
  background-color: transparent;
  border-color: transparent;
  text-align: center;
}

.department .card-container .accordion .card .card-header {
  background-color: #ddd;
  border: 1px solid #026562;
  margin: 0px;
}

.department .card-container .accordion .card .card-header a {
  text-align: center;
  color: #026562;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.department .card-container .accordion .card h5 {
  color: #FDB00A;
}

/*satrt last events*/
.last-events {
  width: 100%;
  padding: 50px 0px;
  background: url(../images/events.jpg);
  position: relative;
}

.last-events .swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.last-events .swiper-container .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 20px 0px;
  overflow: hidden;
}

.last-events .swiper-container .swiper-slide .box {
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.last-events .swiper-container .swiper-slide .box .image-content {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-events .swiper-container .swiper-slide .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-events .swiper-container .swiper-slide .box .image-content span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  border-radius: 5px;
  background-color: #ccc;
  -webkit-box-shadow: 0px 0x 10px #ddd;
          box-shadow: 0px 0x 10px #ddd;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 999;
}

.last-events .swiper-container .swiper-slide .box .image-content::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(253, 176, 10, 0.5);
  top: -100%;
  left: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-events .swiper-container .swiper-slide .box .image-content::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(253, 176, 10, 0.5);
  bottom: -100%;
  right: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-events .swiper-container .swiper-slide .box .box-content {
  padding: 20px 0px;
  text-align: center;
}

.last-events .swiper-container .swiper-slide .box .box-content h4 {
  color: #FDB00A;
}

.last-events .swiper-container .swiper-slide .box .box-content p {
  color: #777;
  line-height: 1.8rem;
  margin: 10px 0px;
}

.last-events .swiper-container .swiper-slide .box .box-content .btn {
  border: 1px solid  #FDB00A;
  color: #000;
}

.last-events .swiper-container .swiper-slide .box:hover .image-content::after {
  top: 0;
}

.last-events .swiper-container .swiper-slide .box:hover .image-content::before {
  bottom: 0 !important;
}

.last-events .swiper-container .swiper-slide .box:hover .image-content span {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.last-events .swiper-container .swiper-button-next, .last-events .swiper-container .swiper-button-prev {
  top: unset;
  bottom: 0% !important;
  color: #FDB00A !important;
}

.last-events .events-news {
  width: 100%;
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
}

.last-events .events-news .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.last-events .events-news .nav .nav-link {
  background-color: #ccc !important;
  color: #FDB00A !important;
  border-radius: 0px;
  margin: 10px;
}

.last-events .events-news .nav .nav-link.active {
  background-color: #FDB00A !important;
  color: #fff !important;
}

.last-events .events-news .tab-content {
  width: 100%;
  padding: 20px;
  background: #f1f1f1;
}

.last-events .events-news .tab-content .tab-pane {
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden !important;
}

.last-events .events-news .tab-content .tab-pane::-webkit-scrollbar-thumb {
  background-color: #FDB00A;
  border-radius: 0px;
}

.last-events .events-news .tab-content .tab-pane::-webkit-scrollbar {
  width: 2px;
  background-color: transparent !important;
}

.last-events .events-news .tab-content .box {
  background-color: #ddd;
  border-radius: 0px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 10px 0px;
}

.last-events .events-news .tab-content .box .image-content {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.last-events .events-news .tab-content .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.last-events .events-news .tab-content .box .image-content span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  border-radius: 5px;
  background-color: #ccc;
  -webkit-box-shadow: 0px 0x 10px #ddd;
          box-shadow: 0px 0x 10px #ddd;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 999;
}

.last-events .events-news .tab-content .box .image-content::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(253, 176, 10, 0.5);
  top: -100%;
  left: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 99;
}

.last-events .events-news .tab-content .box .image-content::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(253, 176, 10, 0.5);
  bottom: -100%;
  right: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 99;
}

.last-events .events-news .tab-content .box .box-content {
  padding: 20px 0px;
  text-align: center;
}

.last-events .events-news .tab-content .box .box-content h4 {
  color: #FDB00A;
}

.last-events .events-news .tab-content .box .box-content p {
  color: #777;
  line-height: 1.8rem;
  margin: 10px 0px;
}

.last-events .events-news .tab-content .box .box-content .btn {
  border: 1px solid  #FDB00A;
  color: #000;
}

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

.last-events .events-news .tab-content .box:hover .image-content::after {
  top: 0;
}

.last-events .events-news .tab-content .box:hover .image-content::before {
  bottom: 0 !important;
}

.last-events .events-news .tab-content .box:hover .image-content span {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.last-events::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(2, 101, 98, 0.7);
}

/*start persnibles*/
.contact_us {
  width: 100%;
  padding: 50px 0px;
  background: url(../images/dot-pattern.png);
  position: relative;
}

.contact_us .map-content {
  width: 100%;
  height: 100%;
  border: 2px solid #ddd;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  overflow: hidden;
}

.contact_us .map-content iframe {
  width: 100%;
  height: 100%;
}

.contact_us form {
  margin-bottom: 40px;
}

.contact_us form .form-group {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

.contact_us form .form-group .form-control {
  background-color: #ddd;
  padding: 20px;
  border-radius: 30px 15px;
  border: 2px solid #eee;
  resize: none;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.contact_us form .form-group .form-control:hover {
  border-color: #FDB00A;
}

.contact_us form .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: #FDB00A;
  color: #000;
  border-radius: 10px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.contact_us form .btn i {
  font-size: 20px;
}

.contact_us form .btn:hover {
  background-color: #ddd;
  color: #FDB00A;
}

.contact_us form .btn:hover i {
  -webkit-animation: rotation .5s ease-in-out infinite;
          animation: rotation .5s ease-in-out infinite;
}

/*start who-us*/
.who-us {
  background-color: #f1f1f1;
}

.who-us .image-content {
  width: 100%;
  height: 400px;
  position: relative;
}

.who-us .image-content img {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 999;
  float: left;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.who-us .image-content::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(../images/dot-pattern.png);
  -webkit-filter: invert(76%) sepia(41%) saturate(2975%) hue-rotate(354deg) brightness(101%) contrast(98%);
          filter: invert(76%) sepia(41%) saturate(2975%) hue-rotate(354deg) brightness(101%) contrast(98%);
  bottom: 0;
  right: 0;
  z-index: 9;
}

.who-us .image-content:hover img {
  width: 100%;
  height: 100%;
}

.who-us .content h5 {
  color: #026562;
}

.who-us .content h4 {
  color: #FDB00A;
}

.who-us .content p {
  color: #808080;
  line-height: 1.8rem;
  font-size: 15px;
}

.who-us .content ul li {
  position: relative;
  padding: 10px 20px;
  color: #444;
  line-height: 1.8rem;
  font-size: 15px;
}

.who-us .content ul li::after {
  content: '\f058';
  position: absolute;
  font-family: 'Font Awesome 5 free';
  width: 30px;
  height: 30px;
  right: 0;
  top: calc(50% -15px);
  color: #FDB00A;
}

.who-us .special-image-content {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.who-us .special-image-content .small-img {
  position: absolute;
  width: 200px;
  height: 150px;
  z-index: 999;
  -webkit-box-shadow: 0px -3px 15px 0px #999;
  box-shadow: 0px -3px 15px 0px #999;
}

.who-us .special-image-content .small-img.top-right {
  top: 0;
  right: 0;
}

.who-us .special-image-content .small-img.bottom-left {
  bottom: 0;
  left: 0;
}

.who-us .special-image-content .main-img {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*end who-us*/
/*start bids*/
.bids .inputGroup {
  position: relative;
}

.bids .inputGroup label {
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #026562;
  font-weight: 500;
  text-transform: uppercase;
}

.bids .inputGroup .form-control {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px;
  font-family: Trebuchet MS;
  background: none;
  color: #000;
  border-radius: 0px;
  resize: none;
}

.bids .inputGroup .form-control:focus {
  border-color: #FDB00A;
}

.bids .inputGroup textarea {
  margin: 0px;
  width: 100%;
  padding-top: 0px !important;
}

.bids .margin-custom {
  margin: 6px 0px 20px 0px !important;
}

.bids .btn-contain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bids .btn-contain .btn {
  width: 140px;
  margin: auto;
  border: 1px solid #026562;
  background-color: #026562;
  color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bids .btn-contain .btn i {
  float: right;
}

.bids .table-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bids table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bids table tr, .bids table td, .bids table th {
  border-color: transparent;
}

.bids table th {
  background-color: #f9f9f9;
  color: #FDB00A;
}

.bids table td {
  background-color: #fff;
}

.bids table td img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bids .modal-dialog {
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

/*end bids*/
/*start structure*/
.structure .head-nav, .structure .tab-content {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(253, 176, 10, 0.4);
          box-shadow: 0px 8px 16px 0px rgba(253, 176, 10, 0.4);
  padding: 1.5rem 0rem;
}

.structure .tab-content {
  padding: 1.5rem;
}

.structure .custom-button {
  width: 100%;
  border-radius: 0px !important;
  background-color: transparent !important;
  color: #000;
  margin: 5px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 15px;
  padding-right: 0px;
}

.structure .custom-button img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 10px;
}

.structure .custom-button.active {
  border-left: 2px solid #FDB00A;
  background-color: #f9f9f9;
  color: #FDB00A;
  font-weight: bold;
}

.structure .custom-button.active img {
  -webkit-filter: invert(63%) sepia(79%) saturate(828%) hue-rotate(355deg) brightness(104%) contrast(98%);
          filter: invert(63%) sepia(79%) saturate(828%) hue-rotate(355deg) brightness(104%) contrast(98%);
}

.structure .name {
  padding: 20px 35px !important;
  height: 100%;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(253, 176, 10, 0.2);
          box-shadow: 0px 0px 10px rgba(253, 176, 10, 0.2);
  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;
  text-align: center;
}

.structure .name p {
  margin: 0px;
  font-size: 13px;
  color: #101010;
}

/*end structure*/
.contract table {
  width: 100%;
}

.contract table th {
  width: 15%;
  background-color: #f5f5f5;
  border: 1px solid #888;
}

.contract table td {
  background-color: #f9f9f9;
  width: 20%;
  border: 1px solid #888;
}

/*start the registration*/
.registration .inputGroup {
  position: relative;
}

.registration .inputGroup label {
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #026562;
  font-weight: 500;
  text-transform: uppercase;
}

.registration .inputGroup .form-control {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px;
  font-family: Trebuchet MS;
  background: none;
  color: #000;
  border-radius: 0px;
  resize: none;
}

.registration .inputGroup .form-control:focus {
  border-color: #FDB00A;
}

.registration .inputGroup textarea {
  margin: 0px;
  width: 100%;
  padding-top: 0px !important;
}

.registration .btn-contain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.registration .btn-contain .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 1px solid #026562;
  background-color: #026562;
  color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.registration .btn-contain .btn i {
  float: right;
  margin: 0px 10px;
}

.registration a {
  color: #003332;
}

.registration .register {
  text-align: center;
  color: #7C7C7C;
}

.registration .register a {
  font-weight: bold;
  padding: 0px;
}

.registration .image-content {
  width: 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;
}

.registration img {
  width: 80%;
  height: 200px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.registration p {
  color: #999;
  font-size: 12px;
}

/*end registration*/
/*start library-section*/
.library-section .box {
  position: relative;
}

.library-section .box .image-content {
  width: 100%;
  height: 200px;
  position: relative;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  overflow: hidden;
}

.library-section .box .image-content .play {
  width: 50px;
  height: 50px;
  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;
  background-color: #f9f9f9;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 99;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .7s linear;
  transition: .7s linear;
}

.library-section .box .image-content .play i {
  font-size: 20px;
  color: #FDB00A;
}

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

.library-section .box .image-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .4s linear;
  transition: .4s linear;
}

.library-section .box .box-content {
  width: 100%;
  padding: 20px 0px;
  background-color: #f9f9f9;
  position: relative;
}

.library-section .box .box-content h6 {
  text-align: center;
  -webkit-transition: .4s linear;
  transition: .4s linear;
}

.library-section .box:hover .play {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: 0px 0px 3px #FDB00A;
          box-shadow: 0px 0px 3px #FDB00A;
}

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

.library-section .box:hover img {
  -webkit-animation: imageMove 3s ease-in-out infinite;
          animation: imageMove 3s ease-in-out infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.library-section .box:hover h6 {
  color: #026562;
}

/*end library-section*/
/*start single-article*/
.single-article .image-content {
  width: 100%;
  height: 400px;
  position: relative;
}

.single-article .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-article .image-content .date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background-color: #FDB00A;
  color: #fff;
  position: absolute;
  left: 80px;
  bottom: -35px;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 10px 0px #999;
          box-shadow: 0px 3px 10px 0px #999;
}

.single-article .image-content .date p {
  margin: 0px !important;
}

.single-article .content {
  padding: 20px 0px;
}

.single-article .content h3 {
  color: #026562;
}

.single-article .content p {
  color: #888;
  line-height: 1.8rem;
  font-size: 14px;
}

.single-article .news-box {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
  background-color: #f9f9f9;
}

.single-article .news-box .news-head {
  width: 100%;
  padding: 10px 5px;
  border-radius: 15px 15px 0px 0px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eaeaea;
  color: #111;
  text-align: center;
}

.single-article .news-box .news-content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

.single-article .news-box .news-content .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-article .news-box .news-content .box .box-content {
  width: 100%;
  text-align: center;
  padding: 10px;
  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;
}

.single-article .news-box .news-content a {
  color: #000;
}

/*start single-article*/
/*start footer*/
footer {
  background-color: #202020;
  padding-top: 50px;
}

footer .heading {
  text-transform: capitalize;
}

footer .heading h5 {
  color: #fff;
}

footer .content {
  margin-bottom: 20px;
}

footer .content .heading {
  color: #ddd;
  margin-bottom: .5rem;
  font-size: 14px !important;
}

footer .content p {
  color: #888;
  font-size: 11px;
}

footer .content h6 {
  margin-bottom: 20px;
  color: #cbb405;
}

footer .content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

footer .content .links a {
  margin: 5px 0px;
  color: #ddd;
  font-size: 13px;
}

footer .content .links a i {
  margin-left: 4px;
}

footer .copyright {
  padding: 15px 0px;
  background-color: #101010;
  color: #fff;
}

footer .copyright p {
  margin-bottom: 0px;
  font-size: 13px;
}

/*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 .loading,
.loader .reverse-loading {
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: -100px 0px 0px -100px;
  background-color: transparent;
  border-radius: 50%;
  border: 4px solid;
  border-left-color: #026562;
  border-right-color: #026562;
  border-top-color: #cbb405;
  border-bottom-color: #cbb405;
  -webkit-animation: loadAnimation 2s infinite;
          animation: loadAnimation 2s infinite;
}

.loader .reverse-loading {
  -webkit-animation: reversLoadAnimation 2s infinite;
          animation: reversLoadAnimation 2s infinite;
}

@-webkit-keyframes loadAnimation {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, 360deg);
            transform: rotate3d(1, 1, 1, 360deg);
  }
}

@keyframes loadAnimation {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, 360deg);
            transform: rotate3d(1, 1, 1, 360deg);
  }
}

@-webkit-keyframes reversLoadAnimation {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, -360deg);
            transform: rotate3d(1, 1, 1, -360deg);
  }
}

@keyframes reversLoadAnimation {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, -360deg);
            transform: rotate3d(1, 1, 1, -360deg);
  }
}

/*scroll to top btn */
.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: #FDB00A;
  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 */