  body {
    padding: 0;
    margin: 0;
  }
  html,
  body {
    overflow-x: hidden;
  }
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center; /*box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);*/
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; /*flex-direction: column;*/ /*max-width: 85%;*/ /*margin: auto;*/ /*background: red;*/
    margin: auto;
    padding: 15px 2.5%;
  }
  header {
    align-items: center; /*box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);*/ /*background: #AA183D;*/ /*width: auto;*/ /*color: white;*/
    text-align: center;
    justify-content: flex-start;
    display: flex;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
      "Lucida Sans Unicode", Geneva, Verdana, sans-serif; /*font-family: "Poppins", serif;*/
  }
  header h1 {
    font-size: 30px;
    margin: 0; /*font-weight: 700;*/ /*font-family: "Lemon", serif;*/ /*color: firebrick;*/
  }
  #navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9; /*background: #0F3063;*/ /*border-radius: 0 0 8px 8px;*/ /*padding-right:20px;*/
  }
  #navigation ul {
    display: flex;
  }
  #navigation ul li {
    list-style-type: none;
  }
  #navigation a,
  #navigation span {
    font-size: 16px;
    color: #000;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
  }
  #navigation a:hover {
    text-decoration: underline;
    color: red;
    transition: 0.5s;
  }
  .navSearchBtn i {
    pointer-events: none; /* ✅ ensures clicks pass through icon to button */
    padding-left: 20px;
  }
  
  .activeNavLink { text-decoration: underline; }
  #menuToggle {
    display: none;
  } /*+++++++++++++++++++++++++++++++++++++++++++++++++++*/
  .dropdownBtn {
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: none;
  }
  .dropdownContent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding-bottom: 20px;
  }
  .dropdownContent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdownContent a:hover {
    background-color: #0f3063;
    color: #fff;
    text-decoration: none;
  }
  .dropdown:hover .dropdownContent {
    display: block;
  } /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  .navSearchBtn {
    background: none;
    border: none;
  }
  .navSearch {
    display: none;
    position: absolute;
    right: 100px;
  }
  .activeSearch {
    display: block;
  }
  .navSearch {
    animation: fadeIn 0.5s;
  }
  .navSearch input[type="text"] {
    padding: 10px;
    font-size: 17px;
    border: none;
    width: 100%; /*background: white;*/
  }
  .navSearch input[type="text"]:hover {
    background: #f1f1f1;
  }
  .navSearch input[type="text"]:focus {
    outline: none;
  }
  .navSearch button {
    float: left;
    width: 15%;
    padding: 10px;
    background: #1e90ff;
    font-size: 17px;
    border: none;
    cursor: pointer;
    z-index: 1; /*color:#fff;*/
  }
  .navSearch button:hover {
    background: #bbb;
  }
  .navSearchBtn {
    cursor: pointer;
    padding: 5px;
  }
  .navSearchForm {
    width: 380px;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1000;
    border: 2px solid #1e90ff;
  } /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  .autocomplete {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99; /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
  }
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
  } /*when hovering an item:*/
  .autocomplete-items div:hover {
    background-color: #e9e9e9;
  } /*when navigating through the items using the arrow keys:*/
  .autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
  } /* --------------------------------------------.Footer Style--------------------------------------------- */
  footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    background: #0f3063;
  }
  footer a,
  footer span {
    color: #fff;
    font-size: 14px;
    padding: 2px 15px;
  }
  footer a:hover {
    text-decoration: underline;
  }
  .toSearch {
    background-color: #aa183d;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 20px;
    height: 20px;
    padding: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s;
    border: none;
    display: none;
    z-index: 5;
  }
  .toSearch:hover {
    background: green;
  }
  .toSearch i {
    font-size: 20px;
    color: #fff;
  } /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
  }
  .overlay-content {
    position: relative;
    top: 28%;
    width: 90%;
    max-width: 700px;
    text-align: center;
    margin-top: 30px;
    margin: auto;
  }
  .overlay {
    animation: fadeIn 0.5s;
  }
  .overlay .closebtn {
    position: absolute;
    top: 40px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
  } /*.closebtn { animation: fadeOut .5s; }*/ /*.overlay .closebtn:hover {*/ /* color: #ccc;*/ /*}*/
  .overlay input[type="text"] {
    padding: 10px;
    font-size: 17px;
    border: none;
    width: 100%;
    background: white;
  }
  .overlay input[type="text"]:hover {
    background: #f1f1f1;
  }
  .overlay input[type="text"]:focus {
    outline: none;
  }
  .overlay button {
    float: left;
    width: 15%;
    padding: 10px;
    background: #1e90ff;
    font-size: 17px;
    border: none;
    cursor: pointer;
    z-index: 1;
    color: #fff;
  }
  .overlay button:hover {
    background: #bbb;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  } 
  
  /* =========================================================
   SOCIAL STICKY BUTTON
========================================================= */
.social-sticky {
    position: fixed;
    top: 80%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.social-sticky.visible {
    opacity: 1;
    pointer-events: auto;
}

.social-link {
    background: #0088cc;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 30px 0 0 30px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    width: 50px;
    transition: width .6s ease, background .3s ease;
}

.social-link:hover {
    width: auto;
}

.typing {
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.7);
    animation: blink .7s infinite;
    transition: opacity .3s ease;
}

.icon-wrapper {
    font-size: 20px;
    margin-left: 8px;
    transition: transform .6s ease, opacity .6s ease;
}

.rotate-out {
    transform: rotateY(90deg);
    opacity: 0;
}

.rotate-in {
    transform: rotateY(0deg);
    opacity: 1;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes blink {
    0%, 50%, 100% { border-color: rgba(255,255,255,0.7); }
    25%, 75% { border-color: transparent; }
}
 /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/



  @media screen and (max-width: 800px) {
    #header {
      /*max-width: 100%;*/
      padding: 25px 5%;
      position: relative;
      z-index: 999;
    }
    header h1 {
      font-size: 30px;
    }
    #navigation a {
      width: 100%;
      font-weight: 400;
      color: #000;
      font-size: 20px;
      display: block;
      padding: 3px 0;
    }
    #navigation ul {
      flex-direction: column;
      position: fixed;
      right: -100%;
      width: 65%;
      height: 70vh;
      top: 75px;
      background: #fff;
      padding: 40px 0 60px 0;
      transition: all 0.5s ease-in-out;
      z-index: 500;
      line-height: 2; /*text-align: center;*/
    }
    #navigation ul li {
      padding: 5px 10%;
      border-bottom: 1px solid #7f7f7f;
    }
    #navigation a {
      width: 100%;
      padding: 0;
      font-size: 20px;
      font-weight: 400;
      display: block;
      color: #000;
    }
    .dropdownBtn {
      color: #000;
      font-size: 20px;
      font-weight: 400;
      padding: 5px;
    }
    #navigation .dropdownContent {
      width: 100%;
      margin-top: 15px;
      padding-bottom: 0;
      box-shadow: none;
      position: relative;
    }
    .navigationActions {
        display: flex;
      justify-content: space-between;
    }
    #menuToggle {
      display: flex; /*background: #0F3063;*/
      margin-left: 10px;
    }
    #menuToggle span {
      padding: 5px;
      font-weight: 400;
    }
    .iconbar1,
    .iconbar2,
    .iconbar3 {
      width: 35px;
      height: 5px;
      background-color: #000;
      margin: 6px 0;
      transition: 0.4s;
    }
    .change .iconbar1 {
      transform: translate(0, 11px) rotate(-45deg);
    }
    .change .iconbar2 {
      opacity: 0;
    }
    .change .iconbar3 {
      transform: translate(0, -11px) rotate(45deg);
    }
    #navList.activeNav {
      right: 0;
      position: absolute;
    }
    .navSearchBtn {
      margin-right: 5px;
    }
    .navSearchForm {
      width: 70vw;
    }
    .navSearch {
      position: relative;
      top: 30px;
      right: 0;
    }
    .social-sidebar {
      display: none;
    } /***************************Footer Content Mobile View*****************************************/
    footer {
      display: flex;
      flex-direction: column;
    }
    .footerLink {
      display: flex;
      flex-direction: column;
      align-items: center;
    } /*.footer-link*/ /*{*/ /* flex-direction: column;*/ /*}*/
    footer a {
      font-size: 16px;
    }
    .copyright {
      display: flex;
      margin-top: 20px;
    } /*+++++++++++++++++++++++++++++++++++++++++*/
    .mobBottom {
      position: fixed;
      height: 65px;
      width: 100%;
      bottom: 0;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      background-color: #ffffff;
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      border: 1px solid #e3e3e3;
      padding: 5px 0;
      z-index: 4;
    }
    .mobCol {
      width: 20%;
      padding: 5px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: none;
      border: none;
    }
    .mobCol p {
      margin: 0;
      font-size: 12px;
    }
    .mobCol figure {
      text-align: center;
      margin: 0;
      margin-bottom: 10px;
    }
    .mobCol a {
      color: #000;
    }
    .toSearch {
      bottom: 20px;
    }
  }