:root {
  --brand: #f6a000;
  --brand-dark: #df8f00;
  --ink: #202124;
  --muted: #6f747b;
  --line: #ececec;
  --dark: #1d1d1d;
  --soft: #f6f6f6;
  --shadow: 0 18px 45px rgba(25, 28, 33, .12);
}

* {
  box-sizing: border-box;
list-style-type: none;margin: 0;padding: 0;font-family: 'Open Sans', sans-serif;
    

}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  padding:9px 0;
}
.topbar-l{border-right: solid 1px #eee;padding-right:20px}
.topbar i {
  margin-right: 6px;
  font-size: 1.1rem;
}


.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  height: 24px;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  width: 24px;
}
.socials img{filter: brightness(0) invert(1);}

.socials a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.main-nav {
  min-height: 82px;
  position: sticky;
  transition: min-height .25s ease, box-shadow .25s ease;
  z-index: 1030;
}

.main-nav.nav-scrolled {
  min-height: 68px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08) !important;
}

.main-nav > .container {
  position: relative;
  z-index: 2;
}

.navbar-brand img {
  display: block;
  height: 54px;
  object-fit: contain;
  width: 188px;
}

.mobile-nav-actions {
  align-items: center;
  display: none;
  gap: 14px;
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: #222;
  font-size:1rem;
  font-weight: 700;
  margin: 0 10px;
  padding: 28px 4px;
  position: relative;
  text-transform: none;
}

.navbar-nav .nav-link::after {
  border: 0;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::before,
.navbar-nav .dropdown-toggle::before {
  background: var(--brand);
  bottom: 18px;
  content: "";
  height: 3px;
  left: 4px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: calc(100% - 8px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  color: var(--brand);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:focus::before {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  border: 0;
  content: "\F282";
  display: inline-block;
  font-family: "bootstrap-icons";
  font-size: .625rem;
  margin-left: 7px;
  vertical-align: .08em;
}

.dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  margin-top: 0;
  min-width: 210px;
  padding: 10px;
}

.dropdown-item {
  border-radius: 4px;
  color: #333;
  font-size: .875rem;
  padding: 10px 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(246, 160, 0, .12);
  color: var(--brand);
  transform: translateX(5px);
}

.nav-search {
  align-items: center;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  width: 36px;
}

.nav-search:hover {
  background: var(--brand);
  color: #fff;
  transform: rotate(8deg);
}

.nav-search.active {
  background: var(--brand);
  color: #fff;
}

.search-dropdown {
  background: rgba(246, 249, 252, .96);
  box-shadow: 0 26px 60px rgba(29, 39, 53, .12);
  left: 0;
  opacity: 0;
  padding: 52px 0 56px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-16px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  visibility: hidden;
  z-index: 1;
}

.search-dropdown.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.search-dropdown .container {
  position: relative;
}

.search-close {
  align-items: center;
  background: #333;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(36, 46, 61, .1);
  color: #fff;
  display: inline-flex;
  font-size: 1.125rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: -45px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  width: 38px;
  z-index: 2;
}

.search-close:hover,
.search-close:focus {
  background: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

.search-form {
  margin: 0 auto;
}

.search-control {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(36, 46, 61, .08);
  display: flex;
  min-height: 64px;
  padding: 8px 16px 8px 34px;
}

.search-control .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #29313d;
  flex: 1;
  font-size: 1rem;
  min-height: 56px;
  padding: 0 18px 0 0;
}

.search-control .form-control::placeholder {
  color: #59616d;
  opacity: 1;
}

.search-submit {
  align-items: center;
  background: #ff7900;
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 52px;
  font-size: 1.375rem;
  height: 52px;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
  width: 52px;
}

.search-submit:hover,
.search-submit:focus {
  background: var(--brand);
  transform: rotate(10deg) scale(1.04);
}

.search-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.search-keywords a {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(39, 49, 64, .05);
  color: #233041;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  min-width: 104px;
  padding: 0 34px;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}

.search-keywords a:hover,
.search-keywords a:focus {
  background: var(--brand);
  box-shadow: 0 16px 35px rgba(246, 160, 0, .24);
  color: #fff;
  transform: translateY(-4px);
}

.footer {
  background: #1f1f1f;
  color: #a7a7a7;
  padding: 45px 0 24px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.footer-logo img {
  filter: brightness(1.1);
  height: 56px;
  object-fit: cover;
  object-position: left center;
}

.footer .socials a {
  color: #fff;
}

.footer-links {
  padding: 44px 0 26px;
}

.footer h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer p,
.footer a {
  color: #a7a7a7;
  display: block;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 10px;
  transition: color .2s ease, transform .2s ease;
}

.footer a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer p i {
  color: #fff;
  margin-right: 8px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #777;
  font-size: .8125rem;
  padding-top: 24px;
  text-align: center;
}

.back-to-top {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  color: #fff;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  width: 44px;
  z-index: 1050;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #111;
}
.inner-position{background: #eee;padding:1rem 0}
.position-box{max-width: 1500px;margin:0 auto;font-size: 1rem;padding:0 2%}
.list-page {
    text-align: center;
    width: 98%;
    margin: 1.5rem auto 2rem;display: flex;justify-content: center;
}

.pagination a {

    color: #0b112a !important
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff !important;
    cursor: default;
    background-color: #333 !important;
    border-color: #ddd !important;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    animation: menuFade .24s ease both;
  }

  @keyframes menuFade {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

@media (max-width: 991.98px) {
  .main-nav {
    min-height: 70px;
  }

  .main-nav > .container {
    align-items: center;
    display: flex;
    position: static;
  }

  .navbar-brand img {
    height: 46px;
    width: 160px;
  }

  .mobile-nav-actions {
    display: flex;
  }

  .navbar > .container > .navbar-toggler {
    display: none;
  }

  .mobile-nav-actions .navbar-toggler {
    align-items: center;
    border: 1px solid #d7dbe0;
    border-radius: 6px;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 56px;
  }

  .mobile-search {
    background: transparent;
    color: #222;
    display: inline-flex;
    height: 40px;
    width: 40px;
  }

  .desktop-search {
    display: none;
  }

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(22, 28, 36, .14);
    left: 0;
    margin-top: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 12px calc(var(--bs-gutter-x) * .5) 18px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1040;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 13px 2px;
  }

  .navbar-nav .nav-link::before {
    bottom: 5px;
  }

  .dropdown-menu {
    box-shadow: none;
    padding: 4px 0 8px 12px;
  }

  .search-dropdown {
    padding: 44px 0 38px;
  }

  .search-control {
    min-height: 62px;
    padding: 6px 10px 6px 24px;
  }

  .search-control .form-control {
    font-size: .9375rem;
    min-height: 48px;
  }

  .search-submit {
    flex-basis: 46px;
    font-size: 1.1875rem;
    height: 46px;
    width: 46px;
  }

  .search-keywords {
    gap: 14px;
    margin-top: 30px;
  }

  .search-keywords a {
    font-size: .875rem;
    min-height: 42px;
    min-width: auto;
    padding: 0 24px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding-top: 44px;
  }
  .endMeun{display: none}
}

@media (max-width: 575.98px) {
  .container {
    --bs-gutter-x: 1.5rem;
  }


  .search-control {
    border-radius: 28px;
    padding-left: 18px;
  }

  .search-keywords {
    gap: 10px;
  }

  .search-keywords a {
    flex: 1 1 calc(50% - 10px);
    padding: 0 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}
