[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'App-Development' !important;
  /* speak: never; */
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{
  display:flex;
  justify-content:center;
  align-items:center;
}

.content-left-wrap{
  width: 89%;
}

.entry-footer{
  margin-top: 5px;
}

.nav-links{
      display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Global */
body {
  font-family: 'App-Development', sans-serif;
  margin: 0;
  padding: 0;
  color: black;
}

.btn-orange {
  background-color: #ff5a00 !important;
  color: white !important;
  border: none;
  padding: 0.7rem 3.5rem !important;
  border-radius: 10px !important;
}

.btn-orange:hover{
  background-color: #e04e00;
  color: white;
}

/* nav bar */
.nav-link{
  color:white !important;
  margin-right:40px;
}

/* Default transparent style */
.fixed-nav {
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #03248f !important;
  z-index: 999;
}

/* Style applied on scroll */
.fixed-nav.scrolled {
  background-color: white !important;
  z-index:1000;
  box-shadow:0 1px 2px 0 rgb(0 0 0 / 10%);
}

.fixed-nav.scrolled .nav-link,
.fixed-nav.scrolled .navbar-brand {
  color: black !important;
}

.fixed-nav.scrolled .dropdown-menu {
  background-color: white;
  color: black;
}

.fixed-nav.scrolled .dropdown-item {
  color: black;
}



/* .connected-arrow:last-child {
  display: none !important;
} */


@media (max-width: 991px) {
  .arrow-svg {
    display: none;
  }
}

/* footer section */
.footer-section {
  background-color: #000;
  color: #ccc;
  padding: 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-link {
  color: #ccc;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
  }
}


/*Blog page*/

.entry-content p{
  line-height: 1.5;
  /* word-spacing: 1px; */
}

.wp-block-list li{
  margin-bottom: 5px;
}

a {
  text-decoration: none !important;
}

.site-content {
  margin-top: 80px;
}

.entry-title a {
    color: #000 !important;
    font-size: 25px;
    text-decoration: none;
}

.type-post a, .listpost-content-wrap-full a{
  color: #0057b8;
}

.navigation {
    text-align: center;
    padding: 10px 0px;
    font-family: Arial, sans-serif;
    margin: 15px 0px;
}

.navigation ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.navigation li {
    display: inline;
}

.navigation a {
    text-decoration: none;
    padding: 8px 12px;
    color: #0057b8;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #fff;
}

.navigation a:hover {
    background-color: #0057b8;
    color: white;
}

.navigation .active a {
    background-color: #0057b8;
    color: white;
    font-weight: bold;
    border-color: #0057b8;
}
.screen-reader-text{
  display: none;
}

#content .rp4wp-related-posts ul>li {
  list-style-type: square !important;
  margin-left: -25px;
}
.updated {
  display: none;
}


