body {
  font-family: rubik, sans-serif;
  font-smooth: always;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #595959;
  background-color: #fff;

  overflow-y: scroll;
  overflow-x: hidden !important
}

.bac {
  background-color: #eeb10b
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Arrus Blk BT';
  color: #303745
}

ul {
  list-style: none;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #eeb10b;
  text-decoration: none;
  -webkit-transition: all .45s ease-in-out;
  -moz-transition: all .45s ease-in-out;
  -o-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out
}

a:hover {
  color: #303745
}

/*  hedar navbar */
.list-group-item.active {
  z-index: 0;
}

.hajfree {
  :root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
      0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --color: #c7232f;
    --color2: #161d27;
    --color2-dark: #0f131a;
  }

  // Breakpoint
  $breakpoint: 767px;

  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
  }

  body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    transition: 0.35s;

    &.darkmode {
      color: #fff;
      background-color: var(--color2-dark);
    }
  }

  main {
    overflow: hidden;
  }

  a,
  button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
  }

  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  // Elements Section
  .section {
    margin: 0 auto;
    padding: 6rem 0 2rem;
  }

  .container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }

  .centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
  }

  // Header Section
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: var(--shadow-medium);

    .darkmode & {
      background-color: var(--color2);
    }
  }

  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 65px;
    margin: 0 auto;

    .navbar__left {
      display: flex;
      align-items: center;
      flex: 0 0 17%;

      @media (max-width: ($breakpoint - 1)) {
        flex: 0 0 auto;
      }
    }

    .navbar__center {
      display: flex;

      @media (max-width: ($breakpoint - 1)) {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
      }
    }

    .navbar__right {
      display: flex;
      flex: 0 0 17%;
      align-items: center;
      justify-content: flex-end;
      column-gap: 1.5rem;

      @media (max-width: ($breakpoint - 1)) {
        flex: 0 0 auto;
        align-items: center;
      }
    }
  }

  .brand {
    display: flex;
    align-items: center;
    order: 1;

    svg {
      width: 60px;
      height: 60px;
    }
  }

  .menu {
    @media (max-width: ($breakpoint - 1)) {
      position: fixed;
      top: 0;
      left: 0;
      width: 350px;
      max-width: 85%;
      height: 100%;
      z-index: 100;
      overflow: hidden;
      background-color: #fff;
      transform: translate(-100%);
      transition: all 0.4s ease-in-out;

      &.is-active {
        transform: translate(0%);
      }

      .darkmode & {
        background-color: var(--color2);
      }
    }

    .menu__header {
      display: none;
      box-shadow: var(--shadow-medium);

      @media (max-width: ($breakpoint - 1)) {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;

        &.is-active {
          visibility: visible;
          background-color: #fff;

          >.menu__arrow {
            display: flex;
          }

          .darkmode & {
            background-color: var(--color2);
          }
        }
      }

      .menu__arrow {
        @media (max-width: ($breakpoint - 1)) {
          display: none;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          width: 3rem;

          &:hover {
            i {
              color: var(--color);
            }
          }

          >i {
            font-size: 1.5rem;
            color: #000;
            transition: all 0.25s ease;

            .darkmode & {
              color: #fff;
            }
          }
        }
      }

      .menu__title {
        @media (max-width: ($breakpoint - 1)) {
          cursor: pointer;
          font-weight: 500;
          text-transform: capitalize;
          color: #000;
          transition: all 0.25s ease;

          &:hover {
            color: var(--color);
          }

          .darkmode & {
            color: #fff;
          }
        }
      }
    }

    .menu__inner {
      @media (max-width: ($breakpoint - 1)) {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
      }

      .menu__item {
        position: static;
        display: inline-block;
        padding-right: 20px;
        padding: 15px 20px 15px 0;

        &:last-child {
          padding-right: 0;
        }

        &:hover {
          >.menu__link {
            color: var(--color);
          }

          .darkmode &>.menu__link {
            color: var(--color);
          }
        }

        @media (max-width: ($breakpoint - 1)) {
          display: block;
          padding: 0;
        }

        @media (min-width: $breakpoint) {
          &:hover {
            >.menu__link {
              i {
                transform: rotate(-90deg);
              }
            }
          }
        }

        &.menu__dropdown {
          @media (min-width: $breakpoint) {
            &:hover {
              >.submenu {
                opacity: 1;
                visibility: visible;
                top: 95%;
              }
            }
          }
        }

        .menu__link {
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          font-size: 16px;
          font-weight: 500;
          color: #000;
          text-transform: capitalize;
          transition: all 0.25s ease;

          @media (max-width: ($breakpoint - 1)) {
            justify-content: space-between;
            padding: 20px;
          }

          >i {
            margin-left: 5px;
            font-size: 1.35rem;
            transform: rotate(90deg);
            transition: 0.35s;

            @media (max-width: ($breakpoint - 1)) {
              margin-left: 10px;
              transform: rotate(0deg);
            }
          }

          .darkmode & {
            color: #fff;
          }
        }
      }
    }
  }

  .submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-radius: 0.25rem;
    border-top: 2px solid var(--color);
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);

    .darkmode & {
      border-top: 2px solid var(--color);
      background-color: var(--color2);
    }

    @media (max-width: ($breakpoint - 1)) {
      position: absolute;
      display: none;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      min-width: auto;
      margin: 0;
      padding: 100px 15px 0 15px;
      border-radius: 0;
      border-top: 0;
      box-shadow: none;
      opacity: 1;
      overflow-y: auto;
      visibility: visible;
      transform: translateX(0%);

      &.is-active {
        display: block;
      }
    }

    @media (min-width: $breakpoint) {
      animation: none !important;
    }

    &.megamenu__normal {
      @media (min-width: $breakpoint) {
        left: 65%;
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
      }
    }

    &.megamenu__text,
    &.megamenu__image {
      @media (min-width: $breakpoint) {
        display: flex;
        flex-wrap: wrap;
        max-width: 95%;
        height: auto;
        margin: 0 auto;
      }

      @media (min-width: ($breakpoint + 208)) {
        max-width: 992px;
      }
    }

    &.megamenu__image {
      .submenu__inner {
        a {
          display: flex;
          flex-flow: column;
          align-items: center;

          @media (max-width: ($breakpoint - 1)) {
            flex-flow: row;
            align-items: center;
            padding-bottom: 20px;
          }

          img {
            display: block;
            width: 100%;
            height: 150px;
            margin-bottom: 15px;
            object-fit: cover;
            border-radius: 10px;

            @media (max-width: ($breakpoint - 1)) {
              width: 30%;
              height: 80px;
              margin-bottom: 0;
              margin-right: 15px;
            }
          }
        }
      }
    }

    .submenu__inner {
      width: 25%;
      padding: 0 15px;

      @media (max-width: ($breakpoint - 1)) {
        width: 100%;
        padding: 0;
      }

      .submenu__title {
        font-size: 16px;
        font-weight: 500;
        color: var(--color);
        text-transform: uppercase;
        transition: all 0.3s ease;

        .darkmode & {
          color: var(--color);
        }
      }
    }

    .submenu__list {
      @media (max-width: ($breakpoint - 1)) {
        margin-bottom: 20px;
      }

      li {
        display: block;
        line-height: 1;
        margin: 0 auto;

        a {
          display: inline-block;
          padding: 10px 0;
          line-height: 1.4;
          text-transform: capitalize;
          color: #000;
          transition: all 0.25s ease-in-out;

          &:hover {
            color: var(--color);
          }

          @media (max-width: ($breakpoint - 1)) {
            display: block;
          }

          .darkmode & {
            color: #fff;

            &:hover {
              color: var(--color);
            }
          }
        }
      }
    }
  }

  .switch {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    margin-right: 10px;

    .switch__light,
    .switch__dark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform-origin: center;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease-in;
    }

    .switch__light {
      font-size: 20px;
      visibility: visible;
      color: #000;

      .darkmode & {
        font-size: 0;
        visibility: hidden;
      }
    }

    .switch__dark {
      font-size: 0;
      visibility: hidden;
      color: #fff;

      .darkmode & {
        font-size: 20px;
        visibility: visible;
      }
    }
  }

  .overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;

    @media (max-width: ($breakpoint - 1)) {
      cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
      pointer-events: visible;

      &.is-active {
        opacity: 1;
        visibility: visible;
      }
    }
  }

  .burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 15px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    background: transparent;

    @media (max-width: ($breakpoint - 1)) {
      opacity: 1;
      visibility: visible;
    }

    .burger-line {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 2px;
      opacity: 1;
      border-radius: 15px;
      background: #000;

      .darkmode & {
        background: #fff;
      }

      &:nth-child(1) {
        top: 0px;
      }

      &:nth-child(2) {
        top: 8px;
        width: 70%;
      }

      &:nth-child(3) {
        top: 16px;
      }
    }
  }

}

/**/
/* defaults */
/**/
.sky-mega-menu,
.sky-mega-menu * {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
}



/**/
/* level 1 */
/**/
.sky-mega-menu {
  position: relative;
  z-index: 999;
  background: transparent;
  box-shadow: 0;
  font-size: 0;
  line-height: 0;
  text-align: right;
}

.sky-mega-menu:after {
  content: '';
  display: table;
  clear: both;
}

.sky-mega-menu li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 10;
  font-size: 16px;
  line-height: 45px;
  text-align: left;
  white-space: nowrap;
  font-family: 'Arrus Blk BT' !important;
}

.sky-mega-menu li a {
  display: block;
  padding: 0 20px;
  text-decoration: none;
  color: #484747;
  transition: background 0.4s, color 0.4s;
  -o-transition: background 0.4s, color 0.4s;
  -ms-transition: background 0.4s, color 0.4s;
  -moz-transition: background 0.4s, color 0.4s;
  -webkit-transition: background 0.4s, color 0.4s;
}

.sky-mega-menu li>div {
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: -9999px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(0, 0, 0, .3);
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: -o-transform 0.4s, opacity 0.4s;
  -ms-transition: -ms-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
}

.sky-mega-menu li>div:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}

.sky-mega-menu li>div:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 24px;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255, 255, 255, 0.9);
  border-left: 5px solid transparent;
}

.sky-mega-menu li:hover>a,
.sky-mega-menu li.current>a {
  color: #eeb10b;
}

.sky-mega-menu li.active>a {
  color: #000;
}

.sky-mega-menu li:hover>div {
  left: 0;
  opacity: 1;
  -webkit-transform: translate(0, 0);
}

.sky-mega-menu .right {
  float: none;
  border-right-width: 0;
  border-left-width: 1px;
}

.sky-mega-menu .right>div {
  -o-transform-origin-x: 100%;
  -ms-transform-origin-x: 100%;
  -moz-transform-origin-x: 100%;
  -webkit-transform-origin-x: 100%;
}

.sky-mega-menu .right:hover>div {
  right: 0;
  left: auto;
}

.sky-mega-menu .right:hover>div:before {
  right: 24px;
  left: auto;
}

.sky-mega-menu .switcher {
  display: none;
}


/**/
/* level 2+ */
/**/
.sky-mega-menu li li {
  display: block;
  float: none;
  border-width: 0;
  border-top-width: 1px;
  line-height: 21px;
  white-space: normal;
}

.sky-mega-menu li li:first-child {
  border-top: 0;
}

.sky-mega-menu li li a {
  padding-top: 12px;
  padding-bottom: 12px;
}

.sky-mega-menu li li>div {
  top: 0;
  margin: 0 0 0 8px;
}

.sky-mega-menu li li>div:after {
  top: 0;
  right: 100%;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 100%;
}

.sky-mega-menu li li>div:before {
  top: 22px;
  right: 100%;
  bottom: auto;
  left: auto;
  border-top: 5px solid transparent;
  border-right: 5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 5px solid transparent;
}

.sky-mega-menu li li:hover>div {
  left: 100%;
}

.sky-mega-menu .right li>div {
  margin: 0 8px 0 0;
  -o-transform-origin-x: 100%;
  -ms-transform-origin-x: 100%;
  -moz-transform-origin-x: 100%;
  -webkit-transform-origin-x: 100%;
}

.sky-mega-menu .right li>div:after {
  right: auto;
  left: 100%;
}

.sky-mega-menu .right li>div:before {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 5px solid rgba(255, 255, 255, 0.9);
}

.sky-mega-menu .right li:hover>div {
  right: 100%;
  left: auto;
}



/**/
/* animations */
/**/
.sky-mega-menu-anim-slide li>div {
  -o-transform: translate(0, 60px);
  -ms-transform: translate(0, 60px);
  -moz-transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.sky-mega-menu-pos-bottom.sky-mega-menu-anim-slide li>div {
  -o-transform: translate(0, -60px);
  -ms-transform: translate(0, -60px);
  -moz-transform: translate(0, -60px);
  -webkit-transform: translate(0, -60px);
}

.sky-mega-menu-anim-slide li:hover>div {
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.sky-mega-menu-anim-scale li>div {
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.sky-mega-menu-anim-scale li:hover>div {
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

.sky-mega-menu-anim-flip {
  perspective: 2000px;
  -o-perspective: 2000px;
  -moz-perspective: 2000px;
  -webkit-perspective: 2000px;
}

.sky-mega-menu-anim-flip li>div {
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
}

.sky-mega-menu-anim-flip li:hover>div {
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  width: 250px;
}



/* icons */
/**/
.sky-mega-menu li a>.fa {
  display: block;
  float: left;
  width: 16px;
  margin: 0 10px 0 -4px;
  font-size: 16px;
  line-height: inherit;
  text-align: center;
}

.sky-mega-menu li a>.fa-single {
  float: none;
  margin: 0;
}

.sky-mega-menu li a>.fa-indicator {
  position: relative;
  top: -1px;
  float: none;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0 -10px 0 10px;
  font-size: 9px;
  line-height: 1;
  text-align: right;
}

.sky-mega-menu li li a>.fa-indicator {
  top: 0;
  float: right;
  display: block;
  line-height: inherit;
}

@media screen and (max-width: 1000px) {
  .sky-mega-menu li a {
    padding: 0 15px;
  }

  .sky-mega-menu li a>.fa-indicator {
    margin-right: -5px;
  }

  .sky-mega-menu .grid-column2,
  .sky-mega-menu .grid-container2 {
    width: 117px;
  }

  .sky-mega-menu .grid-column3,
  .sky-mega-menu .grid-container3 {
    width: 176px;
  }

  .sky-mega-menu .grid-column4,
  .sky-mega-menu .grid-container4 {
    width: 235px;
  }

  .sky-mega-menu .grid-column5,
  .sky-mega-menu .grid-container5 {
    width: 294px;
  }

  .sky-mega-menu .grid-column6,
  .sky-mega-menu .grid-container6 {
    width: 353px;
  }

  .sky-mega-menu .grid-column7,
  .sky-mega-menu .grid-container7 {
    width: 412px;
  }

  .sky-mega-menu .grid-column8,
  .sky-mega-menu .grid-container8 {
    width: 471px;
  }

  .sky-mega-menu .grid-column9,
  .sky-mega-menu .grid-container9 {
    width: 530px;
  }

  .sky-mega-menu .grid-column10,
  .sky-mega-menu .grid-container10 {
    width: 589px;
  }

  .sky-mega-menu .grid-column11,
  .sky-mega-menu .grid-container11 {
    width: 648px;
  }

  .sky-mega-menu .grid-column12,
  .sky-mega-menu .grid-container12 {
    width: 707px;
  }
}


/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
  }

  .sky-mega-menu .grid-column {
    float: none;
    width: auto;
    margin: 0;
    border: 0;
    border-top: 1px solid #d9d9d9;
  }

  .sky-mega-menu .grid-column:first-child {
    border-top: 0;
  }

  .sky-mega-menu form fieldset {
    display: block;
    padding: 15px 20px;
  }

  .sky-mega-menu form section {
    margin-bottom: 10px;
  }

  .sky-mega-menu form .row {
    margin: 0 -10px;
  }

  .sky-mega-menu form .col {
    padding-right: 10px;
    padding-left: 10px;
  }


  .sky-mega-menu-response-to-stack>li {
    display: block;
    float: none;
    border: 0;
    border-top: 1px solid #d9d9d9;
  }

  .sky-mega-menu-response-to-stack>li:first-child {
    border-top: 0;
  }

  .sky-mega-menu-response-to-switcher>li {
    display: none;
    float: none;
    border: 0;
  }

  .sky-mega-menu-response-to-switcher>.switcher {
    display: block;
  }

  .sky-mega-menu-response-to-switcher:hover>li {
    display: block;
    border-top: 1px solid #d9d9d9;
  }

  .sky-mega-menu-response-to-switcher:hover>.switcher {
    display: none;
  }

  .sky-mega-menu-response-to-stack li>div,
  .sky-mega-menu-response-to-stack li>[class^="grid-container"],
  .sky-mega-menu-response-to-switcher li>div,
  .sky-mega-menu-response-to-switcher li>[class^="grid-container"] {
    top: 100%;
    bottom: auto;
    width: auto;
    margin: 8px 0 0 0;
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }

  .sky-mega-menu-response-to-stack li>div:after,
  .sky-mega-menu-response-to-switcher li>div:after {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .sky-mega-menu-response-to-stack li>div:before,
  .sky-mega-menu-response-to-switcher li>div:before {
    display: none;
  }

  .sky-mega-menu-response-to-stack li a>.fa,
  .sky-mega-menu-response-to-switcher li a>.fa {
    margin: 0 15px 0 0;
  }

  .sky-mega-menu-response-to-stack li:hover>div,
  .sky-mega-menu-response-to-stack li:hover>[class^="grid-container"],
  .sky-mega-menu-response-to-switcher li:hover>div,
  .sky-mega-menu-response-to-switcher li:hover>[class^="grid-container"] {
    right: 0;
    left: 51px;
  }

  .sky-mega-menu-response-to-stack li li>div,
  .sky-mega-menu-response-to-switcher li li>div {
    top: 100%;
    width: auto;
    margin: 8px 0 0 0;
  }

  .sky-mega-menu-response-to-stack li li>div:after,
  .sky-mega-menu-response-to-switcher li li>div:after {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .sky-mega-menu-response-to-stack li li:hover>div,
  .sky-mega-menu-response-to-switcher li li:hover>div {
    right: 0;
    left: 51px;
  }

  .sky-mega-menu-response-to-stack .search .input input,
  .sky-mega-menu-response-to-switcher .search .input input {
    width: 100%;
  }

  .sky-mega-menu-response-to-icons li {
    position: static;
    font-size: 0;
  }

  .sky-mega-menu-response-to-icons li a {
    padding: 0 10px;
  }

  .sky-mega-menu-response-to-icons li>div,
  .sky-mega-menu-response-to-icons li>[class^="grid-container"] {
    width: 100%;
  }

  .sky-mega-menu-response-to-icons li>div:before {
    display: none;
  }

  .sky-mega-menu-response-to-icons li a>.fa {
    margin: 0;
  }

  .sky-mega-menu-response-to-icons li a>.fa-indicator {
    position: static;
    display: block;
    float: right;
    margin-left: 10px;
    line-height: 45px;
  }

  .sky-mega-menu-response-to-icons li li {
    position: relative;
    font-size: 13px;
  }

  .sky-mega-menu-response-to-icons li li>div,
  .sky-mega-menu-response-to-icons .right li>div {
    top: 100%;
    margin: 8px 0 0 0;
  }

  .sky-mega-menu-response-to-icons li li>div:after,
  .sky-mega-menu-response-to-icons .right li>div:after {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .sky-mega-menu-response-to-icons li li:hover>div,
  .sky-mega-menu-response-to-icons .right li:hover>div {
    right: 0;
    left: 41px;
    width: auto;
  }

  .sky-mega-menu-response-to-icons li li a>.fa {
    margin-right: 10px;
  }

  .sky-mega-menu-response-to-icons li li a>.fa-indicator {
    margin-right: 0px;
  }

  .sky-mega-menu-response-to-icons.sky-mega-menu-anim-flip li li>div {
    top: 100%;
    margin: 8px 0 0 0;
    transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
  }

  .sky-mega-menu-pos-bottom.sky-mega-menu-response-to-icons li li>div {
    top: auto;
    bottom: 100%;
    margin: 0 0 8px 0;
  }

  .sky-mega-menu-pos-bottom.sky-mega-menu-response-to-icons li li>div:after {
    top: 100%;
    bottom: auto;
  }
}

/*  hedar navbar */
.hdrsocial a {
  height: 40px !important;
  width: 40px !important;
  box-shadow: none !important;
  color: #000;
  font-size: 20px;
  background-color: transparent !important;
}

.hj_px:hover>.hj_col_u {
  display: block;
}

.hj_comng {
  background: linear-gradient(rgba(34, 41, 65, 0.45), rgba(46, 55, 86, 0.45)), url('/img/abtsl2.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
}

.hj_comng h1 {
  color: #fff;
  font-family: 'Arrus Blk BT' !important;

  font-weight: 300 !important;
  font-size: 4rem !important;
  letter-spacing: 15px;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 2s;

}

.hj_cm_logo img {
  width: 10%;
  text-align: center;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  height: auto;
  display: table;
}

.content {
  display: table-cell;
  vertical-align: middle;
}

.item {
  width: auto;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding: 8px;
}

@media only screen and (min-width: 800px) {
  h1 {
    font-size: 6em;
  }

  p {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 320px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1.2em;
  }
}

/* slider section start */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #eeb10b;
}

.hj_logo_w {
  width: 20%;
}

.hj_px {
  padding: 0px 15px;
}

.hj_px a {
  font-weight: 500;
}

.hj_col a {
  color: #000;
  font-weight: 400;
  font-size: 17px;
  font-family: 'Arrus Blk BT' !important;

}

.hj_col_u a {
  color: #000;

}

.hj_hedar {
  position: fixed;
  z-index: 1;
  width: 100%;
  background-color: #d7d2d2b8;
}

.hj_hedar_abt {
  position: static;
  background-color: #e3f0f8;
}

.hj_hd_nav {
  background-color: transparent !important;
}

.sliderr {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slidee {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, left 1s ease-in-out;
}

.slidee.active {
  left: 0;
  opacity: 1;
}

.text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 3em;
  color: #000;
  opacity: 0;
  animation: fadeInText 2s ease-in-out 1s forwards;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sliderr img {
  width: 100%;
}

/* slider section end */
/* about section start */
.hj_abt h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 30px;
}

.hj_abt h5 {
  color: #eeb10b;
}

.hj_abt i {
  font-style: normal;
  font-weight: 400;
  color: #303745;
  font-size: 40px;
}

.hj_abt p {
  font-size: 16px;
  text-align: justify;
}

.hj_vals a {
  border-color: #eeb10b;
  background-color: #eeb10b;
  color: #fff;
  text-align: center;
  align-items: center;
  font-size: 14px;
  padding: 10px 20px;
}

.hj_vals a:hover {
  border-color: #303745;
  background-color: #303745;
  color: #fff;

}

/* about section end */
/* client info start */
.hj_carousel_caption {
  right: 15%;
  bottom: 1.25rem;
  left: 0%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.hj_client_five {
  text-align: justify;
  color: #595959;
}

.hj_client_five p {
  font-size: 16px;
}

.hj_client_five i {
  color: #eeb10b;
  padding-right: 10px;
}

.hj_client_five p {}


/* client info end */
/* Portfolio section start */
.hj_clpd {
  padding: 0px 71px;
}

.hj_prt i {
  font-size: 40px;
  color: #303745;
}

.hj_prt h5 {
  font-size: 20px;
  line-height: 28px;
  padding-top: 15px;
}

.hj_prt p {
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  padding-top: 15px;
}

/* Portfolio section end */
/* our-team Start  */

.ot .card-pink {
  border-radius: 6px;
  border-bottom: 4px solid #ff2c95 !important;
}

.ot .card-blue {
  border-radius: 6px;
  border-bottom: 4px solid #1c68b3 !important;
}

.ot .col .card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ot .card-body {
  padding: 1rem 1.5rem;
}

.ot .card-body p {
  color: #4B5563;
  font-size: 13px;
}

.ot .card-blue svg {
  fill: #1c68b3;
}

.ot .card-pink svg {
  fill: #ff2c95;
}

.ot .card-blue .card-footer p {
  color: #1c68b3;
}

.ot .card-pink .card-footer p {
  color: #ff2c95;
}

.ot .card-shape {
  position: relative;
}

.custom-shape-divider-bottom-1634717805 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1634717805 svg {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
}

.custom-shape-divider-bottom-1634717805 .shape-fill {
  fill: #FFFFFF;
}


/* our-team end  */
/* testimonial start  */

.testim {
  width: 100%;
  top: 50%;
  background-color: #fff;
  padding: 100px 0px;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 80px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #000;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #ea830e;
}


.testim .arrow.left {
  left: 10px;
}

.testim .arrow.right {
  right: 10px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #000;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #ea830e;
  border-color: #ea830e;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;
  -moz-animation: testim-scale .5s ease-in-out forwards;
  -ms-animation: testim-scale .5s ease-in-out forwards;
  -o-animation: testim-scale .5s ease-in-out forwards;
  animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont>div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont>div.inactive {
  opacity: 1;
}


.testim .cont>div.active {
  position: relative;
  opacity: 1;
}


.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #ea830e;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: #000;
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;
  -moz-animation: testim-show .5s ease-in-out forwards;
  -ms-animation: testim-show .5s ease-in-out forwards;
  -o-animation: testim-show .5s ease-in-out forwards;
  animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;
  -moz-animation: testim-content-in .4s ease-in-out forwards;
  -ms-animation: testim-content-in .4s ease-in-out forwards;
  -o-animation: testim-content-in .4s ease-in-out forwards;
  animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;
  -moz-animation: testim-content-in .5s ease-in-out forwards;
  -ms-animation: testim-content-in .5s ease-in-out forwards;
  -o-animation: testim-content-in .5s ease-in-out forwards;
  animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;
  -moz-animation: testim-hide .5s ease-in-out forwards;
  -ms-animation: testim-hide .5s ease-in-out forwards;
  -o-animation: testim-hide .5s ease-in-out forwards;
  animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;
  -moz-animation: testim-content-out .4s ease-in-out forwards;
  -ms-animation: testim-content-out .4s ease-in-out forwards;
  -o-animation: testim-content-out .4s ease-in-out forwards;
  animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;
  -moz-animation: testim-content-out .5s ease-in-out forwards;
  -ms-animation: testim-content-out .5s ease-in-out forwards;
  -o-animation: testim-content-out .5s ease-in-out forwards;
  animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}



/* testimonial end  */
/* footer section start */
.flogo {
  width: 100px;
}

.hj_ftr {
  background-color: #f3f3f3;
}

.bd-footer {
  background-color: #e3f0f8;

  a {
    color: #50504e;
  }
}

.footer-waw-svg {
  background-color: transparent;
  display: block;
  height: 50px;
  position: relative;
  top: -8px;
  width: 100%;
}

.footer-wave-path {
  fill: #f4f0f0;
}

.hj_ftr_tp i {
  color: #eeb10b;
  margin-right: 7px;
  font-size: 14px;
}

.hj_ftr_icn {
  float: left;
  padding: 5px 10px;
  background-color: #eeb10b;
  margin-left: 10px;
}

.hj_ftr_icn:hover {
  background-color: #303745;
}

.hj_ftr_icn i {
  color: #fff;
  font-size: 16px;
}

.hj_ftr_btm a {
  color: #595959;
}

/* footer section end */

/* About-us -section */
.About-us {
  width: 100%;
  float: left;
  height: 100vh;
  margin-top: 5%;
  background-color: #000;
  background-image: url(/img/hero_inner_page.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0px;
}

.about-us-text {
  margin-left: 85px;
}

.about-us-text h4 {
  margin-top: 25px;
  color: white;
  font-size: 16.5px;
  font-family: "Montserrat", sans-serif;
}

.about-us-text h2 {
  color: white;
  font-size: 40.005px;
  padding: 0 0 16.02px;
  font-weight: 500;
}

.about-us-text p {
  color: white;
  font-size: 18px;
  margin: 0px 0px 9px;
}

.about-LEARN-MORE {
  width: 100%;
  background-color: #fff;
  float: left;
  margin-top: 10%;
  height: 100vh;
  margin-bottom: 10%;
}

.learn-more-section span {
  margin: 0px 0px 6.6px;
  font-size: 1.1em;
  margin-bottom: 0.4em;
}

.learn-more-section h2 {

  font-family: 'Arrus Blk BT' !important;
  font-size: 2.667em;
  font-weight: 600;
  padding-bottom: 0.4em;
  padding-top: 10px;
}

.learn-more-section hr {
  border: 2px solid #FBBD02;
  width: 15%;
}

.learn-more-section p {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 400;
}

.learn-more-section button {
  border: 1px solid #eeb10b;
  padding: 10.4px 28.8px;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #fff;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.learn-more-section button:hover {
  background-color: #fff;
  border: 10px solid #eeb10b;
  color: #eeb10b;
}

.about-us-serives {
  width: 100%;
  background-color: #fff;
  float: left;
  margin-top: 10px;
}

.hj_abt_port h2 {
  font-size: 46px;
  font-weight: 500;
}

.hj_abt_port p {
  font-size: 14px;
}

.hj_abt_sr_icn {
  float: left;
  font-size: 40px;
  color: #ffc100;
}

.About-us-serives-text {
  padding-left: 17%;
}

.About-us-serives-text p {
  font-size: 16px;
}

.entry-summary {
  font-size: 16px;
}

.About-us-serives-text h4 {
  font-size: 18px;
  font-weight: 500;
}

.hj_wwr {
  background-color: rgb(3, 24, 56);
  float: left;
  width: 100%;
  background-image: linear-gradient(rgb(3 24 56 / 93%), rgb(3 24 56 / 91%)), url(/img/abtsl1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px;
}

.hj_wwr h3 {
  color: #fff;
  padding: 0;
}

.hj_wwr p {
  color: #9f9c9c;
  font-size: 16px;
  padding: 10px 0px;
}

/* about acording Start */
.abt_bg {
  background-color: #f5f6f8;
  float: left;
}

/* about acording End */
/* contact Page Start */
.haj_con_hdr {
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
  margin-top: 5%;
  background-image: url(/img/slider3.avif);
  background-position: center;
  background-color: #fff;
  background-repeat: no-repeat;
  align-items: baseline;
  background-size: auto;
  padding: 80px 50px !important;
}

.haj_con_hdr h3 {
  font-weight: 500;
  font-size: 42px;
  padding: 26px;
  color: #031838;
}

.haj_con_hdr p {
  color: #d7cfcf;
  font-size: 14px;
  font-weight: 100;
}

/* contact Page End */
/* contact map Start */
.hj_cn_mil h3 {
  font-size: 25px;

}

.hj_cn_mil span {
  font-weight: 500;
}

.button_cn_map {
  border-color: #eeb10b;
  background-color: #eeb10b;
  color: #fff;
  text-align: center;
  align-items: center;
  font-size: 16px;
  padding: 10px 25px;
  border: 0;
}

.button_cn_map:hover {
  border-color: #303745;
  background-color: #303745;
  color: #fff;

}

.hj_cn_toch i {
  color: #eeb10b;
  font-size: 14px;
}

.hj_cn_toch span {
  font-size: 16px;
  padding-left: 15px;
}

.hj_cn_toch p {
  font-size: 16px;
}

.p {
  font-size: 16px;
}

/* contact map End */
/* portfolio Start */
.hz_sr_bac {
  background-color: #f7f3f3;
}

.columnn {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}

.cardd {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #e3f0f8 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}

.cardd h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  font-family: 'Arrus Blk BT';
}

.cardd p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.icon-wrapper {
  background-color: #eeb10b;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}

.cardd:hover {
  background-position: 0 100%;
}

.cardd:hover .icon-wrapper {
  background-color: #ffffff;
  color: #eeb10b;
}

.cardd:hover h3 {
  color: #000;
}

.cardd:hover p {
  color: #000;
}

.haj_con_hdr .breadcrumb-item+.breadcrumb-item {
  color: #0c0c0c !important;
}

@media screen and (min-width: 768px) {

  .columnn {
    flex: 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {

  .columnn {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* portfolio End */
/* Services Start */
.services {
  width: 100%;
  padding: 0 8%;
}

.services h2 {
  text-align: center;
  padding-top: 6%;
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: yellow;
  border-radius: 20px;
}

.hj_sr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hj_sr .service {
  padding: 25px 15px;
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}

.hj_sr .service:hover {
  background-color: #e9b93a;
  transform: scale(1.05);
}

.hj_sr .service i {
  color: #edb212;
  margin-bottom: 20px;
  font-size: 30px;
  transition: 0.5s;
  margin-bottom: 10px;

}

.hj_sr .service h3 {
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.hj_sr .service p {
  font-size: 14px;
}

.hj_sr .service a {
  color: #edb212;
}

.hj_sr .service:hover i {
  color: #000;
}

.hj_sr .service:hover h3 {
  color: #fff;
}

.hj_sr .service:hover a {
  color: #fff;
}

.hj_sr .service:hover p {
  color: #fff;
}

.hj_sr .service h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Services End */
/* Policies Page Start */
/* Policies  Start */
.hj_card {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 90%;
  border-radius: 30px;
  background-color: #031838;
  margin-left: auto;
  margin-right: auto;
}

.hj_card .primary-heading {
  text-align: center;
  font-family: josefin sans;
  color: white;
  padding-top: 50px;
  font-size: 4em;
  border-bottom: 1px dotted #4078cc;
  max-width: fit-content;
  margin: auto;
}

.paragraph {
  font-family: josefin sans;
  color: rgb(179, 179, 179);
  margin-left: 50px;
  margin-right: 25px;
  padding-top: 50px;
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: 500;
}

.bold {
  font-weight: 700;
  color: white;
}

/* Policies  End */
/* testimonial  Start */

.train_bac {
  background-color: #f3f0f0;
}

.training p {
  font-size: 16px;
  color: #919295;
  font-weight: 400;
}

.btn_train {
  color: #071c3f;
}

/* .featuredPropBox {}
        
.featuredPropBox ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: outside none none;
    padding: 0;
}

.featuredPropBox ul li {
    background-color: #eeeeee;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
    height: 250px;
    margin: 5px;
    width: 32%;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.featuredPropBox ul li:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(22, 22, 22, 0.6);
    transition: all 0.3s;
}

.featuredPropBox ul li:nth-child(1) {
    background-image: url('https://i.ibb.co/ZmtmLGK/a.jpg');
}

.featuredPropBox ul li:nth-child(2) {
    background-image: url('https://i.ibb.co/pzGysVS/b.jpg');
}

.featuredPropBox ul li:nth-child(3) {
    background-image: url('https://i.ibb.co/QMrtWT1/c.jpg');
}

.featuredPropBox ul li:nth-child(4) {
    background-image: url('https://i.ibb.co/DL5pvY6/bg-1-2.jpg');
}

.featuredPropBox ul li:nth-child(5) {
    background-image: url('https://i.ibb.co/FWV1BJG/bg-1.jpg');
}
.featuredPropBox ul li:nth-child(6) {
    background-image: url('https://i.ibb.co/ZXmWmSZ/14.jpg');
}

.featuredPropBox ul li:nth-child(7) {
    background-image: url('https://i.ibb.co/hLcmWbT/15646.jpg');
}

.featuredPropBox ul li:nth-child(8) {
    background-image: url('https://i.ibb.co/89P5rTs/15678.jpg');
}

.featuredPropBox ul li:nth-child(9) {
    background-image: url('https://i.ibb.co/RhZgpSG/20845.jpg');
}

.featuredPropBox ul li .fplogo {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  transition: all 0.3s;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Arrus Blk BT' !important;
}
.fpredmore {
  color: #fff;
    font-size: 20px;
    border: 3px solid #f3ecec;
    padding: 5px 20px;
}
.fpredmore :hover{
  color: #fff;
}

.featuredPropBox ul li .fplogo img {
    width: 100%;
}

.featuredPropBox ul li .fptext {
    display: none;
    font-size: 16px;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease 0s;
    width: 65%;
    z-index: 1;
}

.featuredPropBox ul li .fptext p {
    color: #fff;
    margin: 0px;
}

.featuredPropBox ul li:hover {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0.2) inset;
}

.featuredPropBox ul li:hover:after {
    background-color: rgba(22, 22, 22, 0.3);
}

.featuredPropBox ul li:hover .fplogo {
    display: none;
}

.featuredPropBox ul li:hover .fptext {
    display: block;
} */

.trn .card {
  &:nth-child(1) .box .icon .iconBox {
    background: #182944;
  }

  &:nth-child(1) .box .icon .iconBox:hover {
    background: #dee0e3;
  }

  &:nth-child(2) .box .icon .iconBox {
    background: #70b3b1;
  }

  &:nth-child(3) .box .icon .iconBox {
    background: #d05fa2;
  }

  ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;

    li {
      text-transform: uppercase;
      background: var(--clr-tag);
      color: #282828;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.375rem 0.625rem;
      border-radius: 0.188rem;
      margin: auto;
    }

    a {
      color: #fff;
    }

    .branding {
      color: darken(#d3b19a, 40%);
    }

    .packaging {
      color: darken(#70b3b1, 40%);
    }

    .marketing {
      color: darken(#d05fa2, 40%);
    }
  }

  .content {
    padding: 0.938rem 0.625rem;

    h3 {
      text-transform: capitalize;
      font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
    }

    p {
      margin: 0.625rem 0 1.25rem;
      color: #565656;
    }

    li {
      background-color: #182944;
    }
  }
}

.card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;

  .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;

    .imgBox {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgb(3 24 56 / 92%), rgb(9 29 60 / 85%)), url(/img/bachz1.jpeg);
      background-repeat: no-repeat;
      background-size: cover;

      h3 {
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        text-align: center;
        display: flex;
        justify-content: center;
        line-height: 14;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .icon {
      position: absolute;
      bottom: -0.375rem;
      right: -0.375rem;
      width: 6rem;
      height: 6rem;
      background: var(--clr);
      border-top-left-radius: 50%;

      &:hover .iconBox {
        transform: scale(1.1);
      }

      &::before {
        position: absolute;
        content: "";
        bottom: 0.375rem;
        left: -1.25rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
      }

      &::after {
        position: absolute;
        content: "";
        top: -1.25rem;
        right: 0.375rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
      }

      .iconBox {
        position: absolute;
        inset: 0.625rem;
        background: #282828;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;

        span {
          color: #fff;
          font-size: 1.5rem;
        }
      }
    }
  }
}

.training ol {
  background-color: #e6e7e9;
  padding: 10px 13px;
}


/* testimonial  End */
/* traning industial */
.hj_tru {
  i {
    color: green;
    font-size: 30px;
    font-weight: 500;

  }

  span {
    font-size: 20px;
  }
}

/* traning industial */
/* modul start */
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 60%;

}

/* modul end */
.Social-media {
  justify-content: center;

  a {
    display: flex;
    background: #e3edf7;
    height: 60px;
    width: 60px;
    font-size: 25px;
    margin: 10px 15px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
      -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0);
    transition: transform 0.5s;
  }

  a i {
    font-size: 50px color:#777;
    transition: transform 0.5s;
  }

  a:hover {
    box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
      inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
      -0.5px -0.5px 0px -1px rgba(255, 255, 255, 1),
      0.5px 0.5px 0px rgba(0, 0, 0, 0.15),
      0px 12px 10px -10px rgba(0, 0, 0, 0.05);
    border: 0px solid rgba(255, 0, 0, 0.1);
    transform: translateY(2px);
  }

  a:hover i {
    transform: scale(0.90);
  }

  a:hover .fa-facebook {
    color: #3b5998;
  }

  a:hover .fa-twitter {
    color: #00acee;
  }

  a:hover .fa-whatsapp {
    color: #4fce5d;
  }

  a:hover .fa-instagram {
    color: #f14843;
  }

  a:hover .fa-youtube {
    color: #f00;
  }
}



/* media responsive start */


@media only screen and (max-width: 1024px) {
  .hj_logo_w {
    width: 70%;
  }

  .navbar-brand {
    width: 10%;
  }

  .navbar>.container,
  .navbar>.container-fluid,
  .navbar>.container-lg,
  .navbar>.container-md,
  .navbar>.container-sm,
  .navbar>.container-xl,
  .navbar>.container-xxl {
    flex-wrap: nowrap;
  }

}

@media only screen and (max-width: 768px) {
  .bd-footer .row {}

  .haj_con_hdr h3 {
    padding-right: 50px !important;
    font-size: 22px;
  }

  .haj_con_hdr {
    padding: 127px 50px !important;
    height: 241px;
  }

}

@media only screen and (max-width: 767px) {
  .hj_wwr2 {
    margin-top: 104%;
  }

  .about-LEARN-MORE {
    height: auto;
  }

  .paragraph {
    font-size: 16px;
    padding: 10px 0;
    text-align: justify;
    margin: 0 13px;
  }

  .hcard {
    width: 100%;
  }

  .hj_card .primary-heading {
    font-size: 36px;
  }

  .hj_cn_toch {
    padding: 30px 0;
  }

}

@media only screen and (max-width: 600px) {
  .sky-mega-menu {
    width: 100% !important;
    display: block !important;
    float: none;
    display: none !important;
  }

  .sidebar {
    display: block !important;
  }
}

@media only screen and (max-width: 425px) {
  .training {
    h2 {
      font-size: 23px;
    }
  }

  .train_detail {
    p {
      margin-top: 26px;
      text-align: justify;
    }
  }

  .hj_wwr2 {
    margin-top: 200%;
  }

  .hj_abt {
    padding: 0;
  }

  .hj_wwr3 {
    margin-top: 0%;
  }

  .cntifrm {
    padding-left: 0px !important;
    width: 118% !important;
  }

  .cntifrm iframe {
    height: 300px !important;
  }

  .trn .card {
    margin-top: 20px;
  }

  .haj_con_hdr h3 {
    font-size: 20px !important;
    font-weight: 900;
  }

  .haj_con_hdr nav {
    margin-left: -24%;
  }

  .haj_con_hdr {
    display: block !important;
  }

  .haj_con_hdr {
    padding: 90px 18px !important;
  }

  .cnpad {
    padding: 0px !important;
  }

  .hj_cn_toch p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 350px) {

  .haj_con_hdr h3 {
    font-size: 16px;
  }
}

/* media responsive end */


.accordion {
  h2 {
    font-size: 20px;
  }

  .hj_tru {
    span {
      font-size: 20px;
    }
  }
}

.sidebar {
  display: none;
}

.sidebar {

  a,
  a:hover {
    text-decoration: none;
    color: #000;
  }

  /* MENU */
  body,
  .menu-btn {
    position: relative;
    left: 0;
  }

  body,
  .menu-btn,
  nav>ul {
    transition: left .45s cubic-bezier(.42, .97, .52, 1.49);
  }

  body.body-menu-open {
    left: 280px;
    /* according to the menu width */
    cursor: pointer;
    overflow-x: hidden;
  }

  body.body-menu-open:after {
    content: '';
    background-color: rgba(0, 0, 0, .45);
    position: absolute;
    min-height: 100vh;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
  }

  nav>ul {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 280px;
    background-color: #e3f0f8;
    height: 100%;
    min-height: 100vh;
    box-shadow: inset -5px 0 10px #647178;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 99999999;

  }

  .menu-btn:before,
  .menu-btn:after {
    font-size: 50px;
    color: #a2047b;
    line-height: 1;
    position: relative;
    top: -10px;
    left: -3px;
  }

  .menu-btn:before {
    content: '\02261';
  }

  .menu-btn-open:after {
    content: '\02A35';
    left: -6px;
  }

  .menu-btn-open:before {
    content: none;
  }

  /* MENU ITEMS */
  .menu li a {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 20px;
    color: #000;
    position: relative;
  }

  .menu>li {
    border-top: 1px solid #a2a6a9;
  }

  .menu>li>a:hover {
    background-color: #8e046b;
  }

  /* DROPDOWN */
  .menu li ul {
    background-color: #8e046b;
    padding-left: 35px;
    display: none;
  }

  .menu li li a {
    font-size: 80%;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
  }

  .menu li li a:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -99999px;
    top: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #9c0777;
  }

  .menu li li a:hover:after {
    background-color: #c90097;
  }

  /* PLUS MINUS SIGN */
  .caret {
    position: absolute;
    right: 0;
    color: #fff;
    width: 45px;
    top: 0;
    bottom: 0;
    padding-top: 10px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
  }

  .caret-up:after {
    content: '+';
  }

  .caret-down:after {
    content: '-';
  }

  .menu li li .caret {
    padding-top: 3px;
  }

  .menu-btn:before,
  .menu-btn:after,
  .caret:after {
    font-family: 'san-serif';
    font-weight: 600;
  }

}



























:root {
  --white-100: hsl(206, 5%, 100%);
  --white-200: hsl(206, 5%, 90%);
  --white-300: hsl(206, 5%, 80%);
  --white-400: hsl(206, 5%, 65%);
  --white-500: hsl(206, 5%, 45%);
  --black-100: hsl(210, 21%, 12%);
  --black-200: hsl(210, 21%, 9%);
  --black-300: hsl(210, 21%, 6%);
  --black-400: hsl(210, 21%, 3%);
  --black-500: hsl(210, 21%, 1%);
  --night-100: hsl(217, 27%, 20%);
  --night-200: hsl(217, 27%, 16%);
  --night-300: hsl(217, 27%, 12%);
  --night-400: hsl(215, 27%, 8%);
  --night-500: hsl(215, 27%, 4%);
  --pink-100: hsl(326, 85%, 90%);
  --pink-200: hsl(327, 87%, 80%);
  --pink-300: hsl(329, 86%, 70%);
  --pink-400: hsl(330, 81%, 60%);
  --pink-500: hsl(333, 71%, 50%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1rem, calc(0.97rem + 0.14vw), 1.09rem);
  font-weight: normal;
  line-height: 1.5;
  color: var(--black-300);
  background-color: var(--white-100);
}

body.darkmode {
  color: var(--white-100);
  background-color: var(--night-400);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--pink-500);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--night-300);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background-color: #e3f0f8;
}

.darkmode .header {
  background-color: var(--night-300);
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-500);
  text-transform: uppercase;
  order: 1;
}

.darkmode .brand {
  color: var(--pink-300);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 17%;
}

.navbar-center {
  display: flex;
}

.navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1.5rem;
}

@media only screen and (max-width: 992px) {

  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
  }

  .navbar-right {
    align-items: center;
  }

  .navbar-center {
    align-items: center;

  }

  .hj_logo_w {
    width: 10% !important;
  }
}

@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: var(--white-100);
    transition: all 0.4s ease-in-out;
  }

  .menu.is-active {
    transform: translate(0%);
    border-right: 3px solid #ff8100;
  }

  .darkmode .menu {
    background-color: var(--night-300);
  }
}

.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}

.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-right: 3.25rem;
  font-family: 'Arrus Blk BT' !important;
  font-size: 16px;
}

.menu-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black-300);
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.menu-link>i.bx {
  font-size: 1.35rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
}

.darkmode .menu-link {
  color: var(--white-100);
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}

.darkmode .menu-icon {
  color: var(--white-100);
}

@media only screen and (min-width: 993px) {
  .menu-dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }

  .menu-header.is-active {
    visibility: visible;
    background-color: var(--white-100);
  }

  .menu-header.is-active>.menu-arrow {
    display: block;
  }

  .darkmode .menu-header.is-active {
    background-color: var(--night-100);
  }

  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 4rem;
    text-align: center;
  }

  .menu-arrow>i.bx {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }

  .darkmode .menu-arrow>i.bx {
    color: var(--white-100);
  }

  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }

  .darkmode .menu-title {
    color: var(--white-100);
  }

  .menu-inner {
    height: 100%;
    margin-top: 4rem;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
  }

  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }

  .menu-link>i.bx {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}

.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 2px solid var(--pink-400);
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
}

.darkmode .submenu {
  border-top: 2px solid var(--pink-300);
  background-color: var(--night-300);
}

.submenu-inner {
  flex: 0 0 25%;
  padding: 0 1rem;
}

.submenu-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--pink-500);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.darkmode .submenu-title {
  color: var(--pink-300);
}

.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
}

.submenu-link {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  padding: 0.75rem 0;
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--black-300);
  transition: all 0.25s ease-in-out;
}

.darkmode .submenu-link {
  color: var(--white-100);
}

.submenu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 0.5rem;
  object-fit: cover;
}

@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }

  .submenu.is-active {
    display: block;
  }

  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }

  .submenu-list {
    margin-bottom: 1rem;
  }

  .submenu-link {
    display: block;
  }

  .submenu-image {
    margin-top: 0;
  }
}

.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}

.megamenu-column-1 {
  left: 56%;
  max-width: 17rem;
  width: 100%;
  height: auto;
}

.megamenu-column-4 {
  display: flex;
  flex-wrap: wrap;
  max-width: 62rem;
  height: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  margin-right: 0.5rem;
}

.switch-light,
.switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}

.switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: var(--black-300);
}

.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}

.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--white-100);
}

.darkmode .switch-dark {
  font-size: 1.3rem;
  visibility: visible;
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}

.train_detail {

  p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }

  img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-radius: 16px;
  }

}

@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

@media only screen and (max-width: 992px) {
  .burger {
    opacity: 1;
    visibility: visible;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--black-400);
}

.darkmode .burger-line {
  background: var(--white-100);
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

@media only screen and (max-width: 780px) {

  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .burger {
    opacity: 1;
    visibility: visible;
    width: 40%;
  }

  .hj_logo_w {
    width: 30% !important;
  }

  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
    width: 30%;
  }
}

@media only screen and (max-width: 425px) {
  .burger {
    opacity: 1;
    visibility: visible;
    width: 300px;
  }

  .our_st_pd_m {
    padding: 0 20px !important;
  }

  .our_st_pd {
    padding: 0 0px !important;
  }

  .our_st_pd img {
    margin-top: 30px;
  }

  .accordion {

    .hj_tru {
      span {
        font-size: 14px;
      }
    }
  }

  .breadcrumb {
    display: none;
  }

  .Social-media {
    display: none !important;
  }

  .hj_abt h2 {
    font-weight: 900;
    text-align: center;
    border-bottom: 3px solid #FBBD02;
    width: fit-content;
    padding-bottom: 10px;
    width: 100%;
    font-family: 'Arrus Blk BT';
  }

  .hj_abt i {
    justify-content: center;
    display: flex;
  }

  .hj_abt {
    .row.pt-3 {
      text-align: center;
      border: 2px solid #ebedef;
      -webkit-box-shadow: 0 10px 6px -6px #777;
      -moz-box-shadow: 0 10px 6px -6px #777;
      box-shadow: 0 8px 5px -6px #ebedef;
      margin-top: 20px;
      background-color: #f9f6f6;
      border-radius: 10px;
    }

    .row.pt-3.hj_vals {
      box-shadow: 0 0px 0px 0px;
      border: 0px;
    }

    p.pt-1 {
      margin-top: 14px;
    }
  }

  .hj_abt h5 {
    width: fit-content;
    border-bottom: 2px solid;
    margin: auto;
    padding: 5px 0;
    font-weight: 900;
    font-family: 'Arrus Blk BT';
  }

  .hj_logo_w {
    width: 70% !important;
  }

  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
    width: 20%;
  }
}

.trdn {
  display: none;
}
i.bx.bx-sun{
  display: none!important;
}