:root {
  --clr-primary: #130443;
  --clr-secondary: #FF8539;
  --clr-tertiary: rgb;
  --clr-accent: #82441e;
  --clr-hover: #ac5c2a;
  --clr-otc: #0AFF02;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-family: sans-serif;
}

/*      Top-level class        */
.bg-primary {
  background-color: var(--clr-primary);
}

.bg-secondary {
  background-color: var(--clr-secondary);
}

.ff-ss {
  font-family: Arial, Helvetica, sans-serif !important;
}

.fc-primary {
  color: var(--clr-primary) !important;
}

.fc-secondary {
  color: var(--clr-secondary) !important;
}

.mobile {
  display: none;
}

.notmobile {
  display: block;
}

.link-direction img {
  height: 26px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.link-direction::after {
  content: 'Directions';
  font-size: large;
  color: #fff;
  background-color: var(--clr-primary);
  padding: 2px 16px;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.link-direction:hover img, .link-direction:active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.link-direction:hover::after, .link-direction:active::after {
  opacity: 1;
}

.knife {
  height: 30px;
  width: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.knife * {
  background-color: var(--clr-secondary);
}

.knife .rect {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

.knife .tri {
  width: 40px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.block-arrow {
  height: 50px;
  min-width: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  z-index: 100;
  position: relative;
}

.block-arrow * {
  background-color: var(--clr-secondary);
}

.block-arrow .rect {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 48px;
}

.block-arrow .rect h2 {
  color: #fff !important;
}

.block-arrow .side-tri {
  width: 40px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.block-arrow .center-line {
  height: 3px;
  width: 600px;
  position: absolute;
  z-index: -2;
}

.quote {
  text-align: center;
  font-size: 2.4vw;
  font-family: serif;
  font-weight: 900;
  font-style: italic;
  color: var(--clr-primary);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.greyblock-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background-color: #E5E5E5;
  padding: 38px 16px 28px 16px;
  margin: 16px 0;
  position: relative;
}

.greyblock-container::before, .greyblock-container::after {
  content: "";
  background-color: var(--clr-secondary);
  position: absolute;
  left: 25%;
  width: 50%;
  height: 3px;
  border-radius: 10px;
  z-index: 100;
}

.greyblock-container::before {
  top: -10px;
}

.greyblock-container::after {
  bottom: -10px;
}

body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto 1fr auto;
      grid-template-rows: auto auto 1fr auto;
  min-height: 100vh;
  overflow-y: overlay;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* width */
body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  border: transparent;
  border-radius: 0px;
}

/* Track */
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px transparent;
          box-shadow: inset 0 0 5px transparent;
  border-radius: 20px;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: var(--clr-secondary);
  border-radius: 5px;
}

/* Handle on hover */
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.4) url("../images/double-ring.svg") 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
     the scrollbar off with overflow:hidden */
body.loading .modal {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
     modal element will be visible */
body.loading .modal {
  display: block;
}

#toast {
  visibility: hidden;
  max-width: 50px;
  height: 50px;
  /*margin-left: -125px;*/
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 30px;
  font-size: 17px;
  white-space: nowrap;
}

#toast #img {
  width: 50px;
  height: 50px;
  float: left;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #111;
  color: #fff;
}

#toast #desc {
  color: #fff;
  padding: 16px;
  overflow: hidden;
  white-space: nowrap;
}

#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}

@keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}

@-webkit-keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}

@keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}

@-webkit-keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}

@keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}

.snackbar {
  position: -webkit-sticky;
  position: sticky;
  bottom: 24px;
  margin-left: auto;
  background: var(--clr-primary);
  padding: 12px 24px;
  z-index: 800;
  font-size: 1em;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.snackbar * {
  outline: 1px solid wheat;
}

.snackbar span {
  margin: 0 12px;
}

.snackbar #snack-close {
  font-size: 1.5em;
}

.snackbar #snack-close:hover {
  color: var(--clr-secondary);
}

.snackbar #snack-msg {
  font-size: 1.5;
}

.snackbar::after {
  height: 2px;
  width: 100%;
  background-color: var(--clr-secondary);
  position: absolute;
  bottom: 0;
}

.smo-btn {
  cursor: pointer;
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 25px;
  background-color: var(--clr-secondary);
  border: none;
  margin-top: 8px;
  font-weight: 900;
}

.smo-btn:hover {
  background-color: var(--clr-hover);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0;
  position: relative;
  z-index: 200;
}

.top-header .banner img {
  width: 240px;
}

.top-header .socials {
  position: absolute;
  left: 100px;
}

.top-header .search-container {
  position: absolute;
  right: 32px;
}

.top-header .search-container input {
  width: 28vw;
  font-size: 1vw;
  padding: 8px 24px;
  border-radius: 25px;
  border: none;
  color: #000;
}

.top-header .search-container input:focus {
  outline: none;
}

.top-header .search-container button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 8vw;
  padding: 0 40px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

.top-header .search-container button:hover, .top-header .search-container button:active {
  background-color: var(--clr-hover);
}

.top-header .search-container button img {
  height: 60%;
}

.bottom-header {
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  outline: 1px solid var(--clr-secondary);
}

.bottom-header .banner {
  display: none;
}

.bottom-header .banner img {
  height: 55px;
  margin: 8px 0;
}

.bottom-header .navbar {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 800;
}

.bottom-header .navbar li {
  height: 40px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-header .navbar li a {
  font-size: 1.3vw;
  height: 100%;
  width: 100%;
  padding: 0 8px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: background-color .15s ease;
  transition: background-color .15s ease;
}

.bottom-header .navbar li a.active {
  background-color: var(--clr-accent);
}

.bottom-header .navbar li a:hover {
  background-color: var(--clr-hover);
}

.bottom-header .link-direction img {
  height: 26px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.bottom-header .link-direction::after {
  content: 'Directions';
  font-size: large;
  position: absolute;
  right: 2.5%;
  bottom: -30px;
  color: #fff;
  background-color: var(--clr-primary);
  padding: 2px 16px;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.bottom-header .link-direction:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bottom-header .link-direction:hover::after {
  opacity: 1;
}

.sticky {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--clr-primary);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sticky .banner {
  display: block !important;
  position: absolute;
  left: 48px;
}

.sticky .link-direction {
  position: absolute;
  right: 48px;
}

.sticky .link-direction::after {
  background-color: var(--clr-secondary);
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socials img {
  height: 26px;
  margin: 0 8px;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.socials img:hover {
  -webkit-filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
          filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 200;
}

footer .top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5vw 2vw;
}

footer .top-footer .block {
  margin: 0 24px;
}

footer .top-footer .block h1 {
  color: var(--clr-secondary);
  font-size: 1.3vw;
  margin: 0px 0;
  margin-bottom: 8px;
}

footer .top-footer .block span {
  margin-left: 8px;
}

footer .top-footer .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .top-footer .block1 .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4px 0;
  font-size: smaller;
}

footer .top-footer .block1 .contact-info img {
  width: 25px;
}

footer .top-footer .block2 .quick-links {
  padding-top: 6px;
  padding-left: 6px;
  font-size: smaller;
}

footer .top-footer .block2 .quick-links a:hover {
  color: var(--clr-secondary);
}

footer .top-footer .block3 .loco-info {
  padding-top: 6px;
  padding-left: 6px;
  font-size: smaller;
}

footer .top-footer .block4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .top-footer .block4 h1 {
  margin-left: 10%;
}

footer .top-footer .block4 input {
  width: 22vw;
  font-size: 1vw;
  padding: 8px 24px;
  border-radius: 25px;
  color: #000;
}

footer .top-footer .block4 input:focus {
  outline: none;
  color: var(--clr-primary);
}

footer .top-footer .block4 #subscribe-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 4px 18px;
  border-radius: 25px;
  background-color: var(--clr-secondary);
  border: none;
  margin-top: 8px;
  font-size: 1.2vw;
  font-weight: 600;
}

footer .top-footer .block4 #subscribe-btn:hover {
  background-color: var(--clr-hover);
}

footer .top-footer .block5 {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

footer .top-footer .block5 > img {
  width: 150px;
  margin: 16px 0;
}

footer hr {
  background-color: #fff;
  height: 2px;
}

footer .bottom-footer {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

footer .bottom-footer .otc {
  position: absolute;
  left: 48px;
  cursor: pointer;
  font-weight: 700;
  font-size: smaller;
}

footer .bottom-footer .otc:hover {
  color: var(--clr-otc);
}

footer .bottom-footer .socials img {
  height: 20px;
  margin: 0 6px;
}

footer .bottom-footer .copywrite {
  position: absolute;
  right: 48px;
  font-size: 1vw;
  font-weight: 500;
}

footer .bottom-footer .copywrite a {
  color: var(--clr-otc);
}

@media only screen and (max-width: 1216px) {
  .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .socials img {
    height: 30px;
    margin: 0 12px;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
  }
  .socials img:hover {
    -webkit-filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
            filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .top-footer {
    padding: 4vw 2vw;
  }
  .top-footer .block {
    margin: 0 16px;
  }
  .top-footer .block h1 {
    font-size: 1.1vw;
  }
  .top-footer .block4 input {
    width: 25vw !important;
    font-size: .9vw;
  }
  .top-footer .block4 #subscribe-btn {
    font-size: .9vw;
  }
  .top-footer .block5 {
    display: none !important;
  }
  .top-footer .block5 > img {
    width: 120px;
    margin: 16px 0;
  }
  .bottom-footer .socials img {
    height: 16px;
    margin: 0 6px;
  }
}

@media only screen and (max-width: 1024px) {
  .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .socials img {
    height: 25px;
    margin: 0 8px;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
  }
  .socials img:hover, .socials img:active {
    -webkit-filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
            filter: invert(32%) sepia(27%) saturate(4598%) hue-rotate(335deg) brightness(106%) contrast(101%);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .top-header .banner img {
    width: 150px;
  }
  .top-header .search-container input {
    padding: 8px 24px;
    font-size: 1.2vw;
  }
  .top-header .search-container button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
  }
  .top-header .search-container button:hover {
    background-color: var(--clr-hover);
  }
  .top-header .search-container button img {
    height: 60%;
  }
  footer .top-footer .block4 {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .top-footer .block4 input {
    font-size: 1.2vw;
  }
  footer .top-footer .block4 #subscribe-btn {
    font-size: 2vw;
  }
}

@media only screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .notmobile {
    display: none;
  }
  a, a > *, .btn-type {
    cursor: pointer;
  }
  a:hover, a:active, a > *:hover, a > *:active, .btn-type:hover, .btn-type:active {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .quote {
    font-size: 3vw !important;
  }
  .top-header {
    padding: 16px 32px;
  }
  .top-header .banner {
    justify-self: flex-start;
    margin-right: auto;
  }
  .top-header .banner img {
    width: 120px;
  }
  .top-header .link-direction {
    position: relative;
  }
  .top-header .link-direction img {
    height: 20px !important;
  }
  .top-header .link-direction::after {
    content: 'Directions';
    position: absolute;
    right: 2.5%;
    bottom: -24px;
    background-color: var(--clr-secondary);
    opacity: 0;
  }
  .top-header .search-container {
    display: none;
    position: relative;
    right: 0;
    height: 30px;
    margin: 0 12px;
  }
  .top-header .search-container input {
    height: 30px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    display: none;
  }
  .top-header .search-container button {
    background-color: var(--clr-primary);
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 20px;
  }
  .top-header .search-container button img {
    height: 80%;
  }
  .top-header .search-container.open {
    margin: 0 16px;
  }
  .top-header .search-container.open input {
    display: block;
  }
  .top-header .search-container.open button {
    background-color: var(--clr-secondary);
    position: absolute;
    right: -1px;
    top: 0;
  }
  .top-header #hamburger {
    font-size: 7.5vw;
    margin-left: 12px;
  }
  .bottom-header {
    padding: 12px 32px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
    flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 0;
    right: -45vw;
    display: none;
    z-index: 200;
    width: 50vw;
    background-color: rgba(0, 0, 0, 0.9) !important;
    -webkit-transition: display 2s ease, right 2s ease;
    transition: display 2s ease, right 2s ease;
  }
  .bottom-header .banner {
    display: block !important;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .bottom-header .banner img {
    height: 80px;
    margin: 8px 0;
  }
  .bottom-header #close {
    font-size: 7.5vw;
    margin-left: auto;
  }
  .bottom-header .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 800;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--clr-secondary);
    width: 100%;
  }
  .bottom-header .navbar li a {
    font-size: 2vw;
    height: 100%;
    width: 100%;
    padding: 0 8px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    -webkit-transition: background-color .15s ease;
    transition: background-color .15s ease;
  }
  .bottom-header .navbar li a.active {
    background-color: var(--clr-accent);
  }
  .bottom-header .navbar li a:hover {
    background-color: var(--clr-hover);
  }
  footer .top-footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .top-footer .block {
    margin: 12px 0;
    width: 40%;
  }
  footer .top-footer .block h1 {
    font-size: 2.4vw;
  }
  footer .top-footer .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -25px;
  }
  footer .top-footer .block1 h1 {
    margin-left: 30px;
  }
  footer .top-footer .block1 .contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 4px 0;
    font-size: smaller;
    font-weight: 600;
  }
  footer .top-footer .block1 .contact-info img {
    width: 25px;
  }
  footer .top-footer .block4 {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .top-footer .block4 input {
    width: 50vw !important;
    font-size: 2vw;
  }
  footer .top-footer .block4 #subscribe-btn {
    font-size: 2vw;
  }
  footer .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .bottom-footer > * {
    margin: 5px 0;
  }
  footer .bottom-footer .otc {
    position: relative;
    left: 0px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  footer .bottom-footer .socials {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .bottom-footer .socials img {
    height: 25px;
    margin: 0 6px;
  }
  footer .bottom-footer .copywrite {
    position: relative;
    right: 0px;
    font-size: smaller;
    font-weight: 500;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .bottom-footer .copywrite a {
    color: var(--clr-otc);
  }
}

@media only screen and (max-width: 425px) {
  .top-header {
    padding: 12px 24px;
  }
  .top-header .banner img {
    width: 100px;
  }
  .top-header .link-direction img {
    height: 16px !important;
  }
  .top-header .search-container input {
    font-size: 3vw;
  }
  .top-header .search-container button {
    padding: 0 10px;
  }
  .top-header .search-container button img {
    height: 60%;
  }
  .top-header .search-container.open input {
    width: 40vw;
  }
  .bottom-header {
    width: 60vw;
  }
  .bottom-header #close {
    font-size: 10vw;
  }
  .bottom-header .navbar li a {
    font-size: 4vw;
  }
  footer .top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .top-footer .block {
    width: 50%;
  }
  footer .top-footer .block h1 {
    font-size: 4.5vw;
  }
  footer .top-footer .block1 {
    margin-left: 0;
  }
  footer .top-footer .block1 h1 {
    margin-left: 0px;
  }
  footer .top-footer .block1 .contact-info {
    margin: 6px 0;
    font-size: 3vw;
    position: relative;
  }
  footer .top-footer .block1 .contact-info img {
    width: 25px;
    position: absolute;
    left: -30px;
  }
  footer .top-footer .block4 {
    width: 95%;
  }
  footer .top-footer .block4 h1 {
    margin-left: 0px;
  }
  footer .top-footer .block4 input {
    width: 70vw !important;
    font-size: 3vw;
  }
  footer .top-footer .block4 #subscribe-btn {
    font-size: 3vw;
  }
  footer .top-footer .block5 {
    display: -ms-grid !important;
    display: grid !important;
    place-items: center;
    width: 95%;
  }
  footer .top-footer .block5 > img {
    width: 55vw;
    margin: 16px 0;
  }
  footer .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .bottom-footer > * {
    margin: 8px 0;
  }
  footer .bottom-footer .socials {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .bottom-footer .socials img {
    height: 25px;
    margin: 0 6px;
  }
  footer .bottom-footer .copywrite {
    text-align: center;
  }
}

@media only screen and (max-width: 375px) {
  .top-header .banner img {
    width: 70px;
  }
  .top-header .link-direction img {
    height: 12px !important;
  }
  .top-header .search-container input {
    font-size: 3vw;
  }
  .top-header .search-container button img {
    height: 50%;
  }
  .top-header .search-container.open input {
    width: 45vw;
  }
  .bottom-header {
    width: 70vw;
  }
  .bottom-header .navbar li a {
    font-size: 4.5vw;
  }
  footer .top-footer .block h1 {
    font-size: 4vw;
  }
  footer .top-footer .block4 input {
    font-size: 3.5vw;
  }
  footer .top-footer .block4 #subscribe-btn {
    padding: 4px 24px;
    font-size: 3.5vw;
  }
}
/*# sourceMappingURL=main.css.map */