<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ======================================================== */
/* header */
/* ======================================================== */



.main-navigation.psticky {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#navLogo {
  display: none; /* Initially hidden */
}

#navLogo.showLogo {
  display: block !important;
  opacity: 1 !important;
}
.--header-container {
  display: flex;
}

.burger {
  position: relative;
  width: 32px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  display: block;
  margin: 0;
}

.--toggle-box {
  border: none;
  background: transparent;
  outline: none;
}

.toggle-box {
  margin-right: auto;
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
  font-size: 20px;

  &amp;:hover {
    background: transparent;
  }
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #d4d4d4;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.--header {
  background: #000;
  width: 100%;
  display: flex;
}

.--header-container {
  min-height: 130px;
  height: 100%;
  display: flex;
  align-items: center;
}

.--header-left {
  padding-right: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #656565;
}

.--header-right {
  width: 100%;
  height: 100%;
  border-right: 1px solid #656565;
}

.--hdr-top {
  display: flex;
  justify-content: space-between;
  padding-left: 33px;
  padding-right: 33px;
  min-height: 77px;
  border-bottom: 1px solid #656565;
}

.--hdr-bottom {
  padding-left: 33px;

}

.--hdr-t-l {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.--hdr-t-r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;

}

.pod-cast {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pod-cast a:first-of-type {
  filter: grayscale(1);
}

.--search-form {
  width: 100%;
}

.custom-search-section {
  max-width: 800px;
  margin: 0 auto;
}

.custom-search-section .input-group {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.custom-search-section .input-group-text {
  background-color: #fff;
  border: none;
}

.custom-search-section .fa-magnifying-glass {
  color: #666;
}

/* ----------------- */
/* nav */
/* ----------------- */
.inner-nav {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1285px;
}

.navmenu .item:first-of-type .link {
  padding-left: 0;
}

.navmenu {
  font-size: 16px;
  line-height: 1.6;
  color: #ff0c0c;
  width: fit-content;
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px;
}

.navmenu a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}



.navmenu .link {
  position: relative;
  font-size: 17px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff0a0a;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .link svg {
  width: 14px;
  height: 14px;
  fill: #f6f6f6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .item {
  position: relative;
}

.navmenu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 103%;
  border-radius: 8px;
  left: 0;
  width: 170px;
  overflow: hidden;
  border: 1px solid #ededed5c;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
  list-style: none;
  background-color: rgb(0 0 0 / 90%);
  backdrop-filter: blur(12px);
}

.navmenu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

}

.navmenu .item .link {
  color: #f6f6f6;
  white-space: nowrap;
}

/* Make text red on hover */
.link:hover {
  color: red;
}

/* Make SVG icon red on hover */
.link:hover svg {
  fill: red;
}

.navmenu .item:hover .link {
  color: #fe0e0e;
  border-radius: 5px;
}

.navmenu .item:hover .link::after {
  /* transform: scaleX(1); */
  transform-origin: right;
}

.navmenu .item:hover .link svg {
  fill: #ff0808;
  transform: rotate(-180deg);
}

.submenu .submenu-item {
  font-size: 15px;
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link {
  color: white;
  display: block;
  padding: 12px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #ff0a0a;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}

.search-wrap {
  position: relative;
  box-sizing: border-box;
  width: fit-content;
}

.social-wrap {
  display: flex;
  gap: 20px;
}

.social-wrap .social-item {
  color: #ffffff;
  font-size: 18px;
}

.mainbox {
  box-sizing: border-box;
  position: relative;
  width: 230px;
  height: 38px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  border-radius: 110px;

  transition: all 0.3s ease;
}

.checkbox-search:focus {
  border: none;
  outline: none;
}

.checkbox-search:checked {
  right: 10px;
}

.checkbox-search:checked~.mainbox {
  width: 45px;
}

.checkbox-search:checked~.mainbox .search_input {
  width: 0;
  height: 0px;
  display: contents;
  background: black;
  border-radius: 9px;
  margin-right: -30px;
}

.checkbox-search:checked~.mainbox .iconContainer {
  padding-right: 8px;
}

.checkbox-search {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 17px;
  top: 10px;
  z-index: 9;
  cursor: pointer;
  appearance: none;
}

.search_input {
  background: black;
  border-radius: 9px !important;
  margin-right: -30px !important;
  box-sizing: border-box;
  height: 100%;
  width: 170px;
  border: none;
  outline: none;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  padding-bottom: 4px;
  padding-left: 10px;
  padding-right: 40px !important;
  font-size: 1em;
  color: white;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.search_input::placeholder {
  color: rgba(163, 163, 163, 0.776);
}

.iconContainer {
  box-sizing: border-box;
  width: fit-content;
  padding-right: 0px !important;
  transition: all 0.3s ease;
  background: black;
  border: none;
  display: contents;
  margin-right: 15px;

  i {
    margin-right: 15px;
    color: red;

  }

}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity 0.4s ease-in-out;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 355px;
  padding: 40px 18px;
  height: 100%;
  background-color: #ffffffed;
  backdrop-filter: blur(18px);
  box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
  -webkit-box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
  -moz-box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.68, 0.55, 0.265, 0.75), opacity 0.4s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.68, 0.55, 0.265, 0.75), opacity 0.4s ease-in-out;
  -o-transition: transform 0.6s cubic-bezier(0.68, 0.55, 0.265, 0.75), opacity 0.4s ease-in-out;
  -ms-transition: transform 0.6s cubic-bezier(0.68, 0.55, 0.265, 0.75), opacity 0.4s ease-in-out;
}

.modal-overlay.active .modal-content {
  transform: translateX(0);
}

.modal_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 23px;
}

.close_btn {
  position: absolute;
  top: -5px;
  right: 16px;
  background: #fff;
  font-size: 20px;
  line-height: 0;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: #ff5050 !important;
  margin-top: 20px;
  border-radius: 50%;
  border: 1px solid #cbcbcb;
  transition: transform 0.3s ease;
}

.close_btn:hover {
  transform: rotate(180deg);
}

.modalmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #cbcbcb;
  margin-left: 0;

  .modal_item {
    margin-right: auto;
  }

  a {
    font-size: 18px;
    color: #3e3e3e;
    text-decoration: none;
    transition: all 0.3s ease;

    i {
      margin-right: 10px;
    }

    &amp;:hover {
      color: #ff0000;
    }
  }
}

/* Modal Open State */
.modal-overlay.active {
  display: flex;
}


.modal_logo {
  width: 70px;
}

.navigation-wrap {
  background-color: #1a1a1a;
  border-top: 1px solid #ff0a0a;
  box-shadow: 1px 1px 10px #00000089;
  min-height: 55px;
}

.navmenu {
  font-size: 16px;
  line-height: 1.6;
  color: #ff0c0c;
  width: fit-content;
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px;
}

.navmenu a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.navmenu .link {
  position: relative;
  font-size: 17.5px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff0a0a;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .link svg {
  width: 14px;
  height: 14px;
  fill: #f6f6f6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.navmenu .item {
  position: relative;
}

.navmenu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 103%;
  border-radius: 8px;
  left: 0;
  width: 170px;
  overflow: hidden;
  border: 1px solid #ededed5c;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
  list-style: none;
  background-color: rgb(0 0 0 / 90%);
  backdrop-filter: blur(12px);
}

.navmenu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

}

.navmenu .item .link {
  color: #f6f6f6;
  white-space: nowrap;
}

/* Make text red on hover */
.link:hover {
  color: red;
}

/* Make SVG icon red on hover */
.link:hover svg {
  fill: red;
}

.navmenu .item:hover .link {
  color: #fe0e0e;
  border-radius: 5px;
}

.navmenu .item:hover .link::after {
  /* transform: scaleX(1); */
  transform-origin: right;
}

.navmenu .item:hover .link svg {
  fill: #ff0808;
  transform: rotate(-180deg);
}

.submenu .submenu-item {
  font-size: 15px;
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link {
  color: white;
  display: block;
  padding: 12px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #ff0a0a;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}


/* 
@media screen and (prefers-color-scheme: dark) {
  body, input {
    color: #f1f1f1;
  }
  body {
    background: #171717;
  }
  .search_bar input {
    box-shadow: 0 0 0 0.4em #f1f1f1 inset;
  }
  .search_bar input:focus,
  .search_bar input:valid {
    background: #3d3d3d;
    box-shadow: 0 0 0 0.1em #3d3d3d inset;
  }
  .search_btn {
    background: #f1f1f1;
  }
} */


.burger input {
  display: none;
}


.act_buttons {
  width: 100%;
  display: flex;
  gap: 50px;
}

.sub_logo {
  display: inline-block;
  width: 50px;
}

.psticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
  background: #eee;
  /* -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -o-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -ms-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.psticky .inner-nav ul li a span,
.psticky .inner-nav ul li a svg {
  color: #333;
  fill: #333;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;

  &amp;:hover {
    color: #ff0000;
    fill: #ff0000;
  }
}

/* ========================== */
/* Media Queries */
/* For small laptop: */
/* ========================== */
@media (max-width: 1360px) {
  .--nmf-logo {
    width: 77px;
  }

  .modal-content {
    position: relative;
    width: 300px;
  }

  .modal_logo {
    width: 63px;
  }

  .modalmenu {
    gap: 14px;
  }

  .modalmenu {
    a {
      font-size: 16px;
    }
  }

  .close_btn {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}
/* ========================== */
/* Media Queries */
/* For mobile phones: */
/* ========================== */
@media (max-width: 600px) {
  .--header {
    padding: 13px 15px 13px;
    position: fixed;
    top: 0;
    z-index: 5;
  }
  .modal_logo {
    width: 62px;
}
  .--hdr-bottom {
    display: none;
  }

  .--header-right-top {
    height: 100%;
    padding: 0;
  }

  .--hdr-t-r {
    display: none;
  }

  .--hdr-top {
    min-height: 100%;
    border: none;
    padding-left: 20px;
    padding-right: 0;
  }

  .--header-right {
    border: none;
  }

  .--hdr-t-l {
    flex-direction: row-reverse;
    gap: 20px;
  }

  .--header-left {
    padding-right: 0;
    border: none;
  }

  .--header-container {
    min-height: 100%;
  }

  .--header-left a {
    width: 52px;
    display: inline-block;
  }
  .modal-content{
    width: 100%;
    padding: 20px 15px;
  }
  .modalmenu {
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    height: 445px;
    overflow-y: auto;
}
.modalmenu {
  a {
      font-size: 17px;
  }
}
}</pre></body></html>