/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #FFFFFF;
}

.container-fluid {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover{
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul{
    padding: 0;
    margin: 0;
}

ul li{
    list-style: none;
}


.nv_top_header {
  background-color: #0d63be;
  z-index: 9999;
  position: relative;
}
.nv_top_header_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  position: relative;
}
.nv_top_header_box_left {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nv_top_header_box_left a,
.nv_top_header_box_left button {
  color: #FFFFFF;
  font-size: 14px;
  background: transparent;
  border: none;
}
.nv_top_header_box_left a:hover,
.nv_top_header_box_left button:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .nv_top_header_box_left a,
  .nv_top_header_box_left button {
    font-size: 13px;
    text-align: center;
  }
}
.nv_top_header_box_right {
  position: absolute;
  right: 0;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .nv_top_header_box_right {
    display: none;
  }
}
.nv_top_header_box_right ul {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .nv_top_header_box_right ul {
    gap: 5px;
  }
}
.nv_top_header_box_right ul li {
  display: flex;
}
.nv_top_header_box_right ul li a {
  color: #FFFFFF;
  font-family: "Inter", sans-serif !important;
  font-weight: 300;
  font-size: 13px;
  position: relative;
  padding-right: 10px;
  display: inline-flex;
  align-items: center;
}
.nv_top_header_box_right ul li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .nv_top_header_box_right ul li a {
    font-size: 10px;
  }
}
.nv_top_header_box_right ul li a:after {
  content: "";
  width: 1px;
  height: 85%;
  background-color: #FFFFFF;
  display: inline-flex;
  position: absolute;
  right: 0;
  opacity: 0.5;
}
.nv_top_header_box_right ul li:last-child a {
  padding-right: 0;
}
.nv_top_header_box_right ul li:last-child a:after {
  content: none;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_top_header_box_right ul {
    gap: 8px;
  }
  .nv_top_header_box_right ul li a {
    font-size: 12px;
    padding-right: 8px;
  }
}

.nv_main_header {
  z-index: 9999;
  position: relative;
  padding: 18px 0;
}
@media only screen and (max-width: 991px) {
  .nv_main_header {
    padding: 10px 0;
  }
}
.nv_main_header.sticky {
  position: sticky;
  top: 0;
  filter: drop-shadow(0px 8px 24px rgba(149, 157, 165, 0.2));
  z-index: 999999;
  background-color: #FFFFFF;
  padding: 12px 0;
}
.nv_main_header.sticky .nv_main_header_box_logo a span {
  width: 97px;
  height: 40px;
}
@media only screen and (max-width: 991px) {
  .nv_main_header.sticky .nv_main_header_box_logo a span {
    width: 97px;
    height: 30px;
  }
}
.nv_main_header_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nv_main_header_box_logo {
  width: 20%;
}
@media only screen and (max-width: 991px) {
  .nv_main_header_box_logo {
    width: 25%;
  }
}
.nv_main_header_box_logo a {
  display: flex;
}
.nv_main_header_box_logo a span {
  width: 121px;
  height: 50px;
  display: inline-flex;
  transition: width 0.1s ease, height 0.1s ease;
}
.nv_main_header_box_logo a span.novus_logo {
  background: url(https://www.novus-loyalty.com/img/logos/novus-loyalty-logo.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  .nv_main_header_box_logo a span {
    width: 97px;
    height: 30px;
  }
}
.nv_main_header_box_container {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .nv_main_header_box_container {
    width: 75%;
  }
}
.nv_main_header_box_container_inner ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .nv_main_header_box_container_inner ul {
    gap: 10px;
  }
}
.nv_main_header_box_container_inner ul li {
  display: flex;
  align-items: center;
  position: relative;
}
.nv_main_header_box_container_inner ul li.for_menu {
  display: none;
}
.nv_main_header_box_container_inner ul li span {
  position: relative;
}
.nv_main_header_box_container_inner ul li span a {
  color: #0e0e0e;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 15px;
}
.nv_main_header_box_container_inner ul li.active span a {
  color: #0d63be;
}
.nv_main_header_box_container_inner ul li.withdropdown {
  padding-right: 20px;
}
.nv_main_header_box_container_inner ul li.withdropdown span.dropicon {
  position: relative;
}
.nv_main_header_box_container_inner ul li.withdropdown span.dropicon:before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #0e0e0e;
  border-bottom: 1px solid #0e0e0e;
  position: absolute;
  right: -15px;
  top: 30%;
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease, top 0.25s ease;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown {
  position: absolute;
  padding: 10px;
  border-radius: 10px;
  background-color: #fbfbfd;
  width: 550px;
  left: 50%;
  top: 60px;
  transform: translate(-50%, 150px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/dropdown_icon.webp) no-repeat;
  background-size: contain;
  width: 22px;
  height: 10px;
  position: absolute;
  left: calc(50% - 20px);
  top: -10px;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown:before {
    top: -8px;
  }
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner {
  background: #FFF;
  background: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  background: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EAF2FD", GradientType=0);
  padding: 10px;
  border-radius: 10px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_header {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_header h4 {
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin-bottom: 0;
  font-size: 20px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li {
  padding: 8px;
  border-radius: 4px;
  position: relative;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li span img {
  width: 30px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li a {
  color: #2f2f2f;
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li a span:before {
  content: none;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li .inner_menu_show {
  position: absolute;
  left: 0px;
  padding: 8px;
  background-color: #FFFFFF;
  border-radius: 8px;
  z-index: 99;
  top: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li .inner_menu_show ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 0;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li:hover {
  background-color: #e3eefd;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li:hover:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/header_icon_arrow.webp) no-repeat;
  background-size: contain;
  display: inline-flex;
  position: absolute;
  right: 8px;
  width: 12px;
  height: 10px;
  animation: arrowMove 1.2s ease-in-out forwards;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_box ul li.inner_menu:hover .inner_menu_show {
  opacity: 1;
  visibility: visible;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block {
  display: flex;
  gap: 15px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_left {
  width: 30%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_left ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_left ul li {
  width: 100%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_left ul li a {
  display: flex;
  background: #FFF;
  background: -webkit-linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  background: -moz-linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 242, 253) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EAF2FD", GradientType=0);
  width: 100%;
  justify-content: center;
  padding: 15px;
  color: #121212;
  font-family: "Inter", sans-serif !important;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid transparent;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_left ul li.active a {
  border: 1px solid #0d63be;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right {
  width: 70%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box {
  display: none;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box.active {
  display: block;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  position: relative;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul li a img {
  width: 40px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul li a span {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  color: #121212;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul li:hover a {
  background-color: #e3eefd;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_inner_block_right .solution_list_box ul li:hover a:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/header_icon_arrow.webp) no-repeat;
  background-size: contain;
  display: inline-flex;
  position: absolute;
  right: 8px;
  width: 12px;
  height: 10px;
  animation: arrowMove 1.2s ease-in-out forwards;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 {
  width: 50%;
  background: #F0F6FE;
  background: -webkit-linear-gradient(90deg, rgb(240, 246, 254) 0%, rgb(208, 226, 253) 100%);
  background: -moz-linear-gradient(90deg, rgb(240, 246, 254) 0%, rgb(208, 226, 253) 100%);
  background: linear-gradient(90deg, rgb(240, 246, 254) 0%, rgb(208, 226, 253) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F0F6FE", endColorstr="#D0E2FD", GradientType=1);
  border-radius: 15px;
  padding: 10px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li {
  padding: 8px;
  border-radius: 4px;
  position: relative;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li span img {
  width: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li span img {
    width: 30px;
  }
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li a {
  color: #2f2f2f;
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li a span:before {
  content: none;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li a {
    font-size: 14px;
  }
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li:hover {
  background-color: #e3eefd;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_1 ul li:hover:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/header_icon_arrow.webp) no-repeat;
  background-size: contain;
  display: inline-flex;
  position: absolute;
  right: 8px;
  width: 12px;
  height: 10px;
  animation: arrowMove 1.2s ease-in-out forwards;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 {
  width: 25%;
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/products/products_noxy_ai_bg.webp);
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: end;
  align-items: center;
  position: relative;
  padding-top: 35px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 a img:first-child {
  width: 70%;
  margin-bottom: 15px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 a img:last-child {
  width: 100%;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 a span.arrow_white {
  position: absolute;
  width: 40px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.42);
  right: 5px;
  bottom: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_2 a span.arrow_white img {
  width: 40%;
  margin: 0;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 {
  width: 25%;
  background: url(https://www.novus-loyalty.com/img/homepage_2026/header_icons/products/products_loyalty_calculator_bg.webp);
  background-size: cover;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 8px;
  color: #121212;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a h3 span {
  font-weight: 700;
  color: #0d63be;
  font-size: 20px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a .nv_header_dropdown_productsbox_3_inner {
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.42);
  filter: drop-shadow(8px 0px 13px rgba(0, 0, 0, 0.06));
  width: 90%;
  margin: 0 auto;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a .nv_header_dropdown_productsbox_3_inner img {
  width: 100%;
  border-radius: 5px;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a span.arrow_white {
  position: absolute;
  width: 40px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.42);
  right: 5px;
  bottom: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nv_main_header_box_container_inner ul li.withdropdown .nv_header_dropdown_productsbox_3 a span.arrow_white img {
  width: 40%;
  margin: 0;
}
.nv_main_header_box_container_inner ul li:hover span a {
  color: #0d63be;
}
@media only screen and (max-width: 991px) {
  .nv_main_header_box_container_inner ul li {
    display: none;
  }
  .nv_main_header_box_container_inner ul li.book_a_demo_btn {
    display: flex;
  }
  .nv_main_header_box_container_inner ul li.for_menu {
    display: flex !important;
  }
}
.nv_main_header_box_container_inner ul li.book_a_demo_btn a {
  padding: 8px 20px;
  background-color: #0d63be;
  color: #FFFFFF;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.nv_main_header_box_container_inner ul li.book_a_demo_btn a:hover {
  color: #FFFFFF;
  background-color: rgb(10.3871921182, 79.1024630542, 151.8128078818);
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_main_header_box_container_inner ul li.book_a_demo_btn a {
    padding: 5px 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .nv_main_header_box_container_inner ul li.book_a_demo_btn a {
    padding: 5px 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 499px) {
  .nv_main_header_box_container_inner ul li.book_a_demo_btn a {
    padding: 4px 10px;
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nv_main_header_box_container_inner ul {
    gap: 15px;
  }
  .nv_main_header_box_container_inner ul li span a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .nv_main_header_box_container_inner {
    display: flex;
    align-items: center;
  }
}
.nv_main_header.white_header .nv_main_header_box_logo a span.novus_logo {
  filter: brightness(0) invert(1);
}
.nv_main_header.white_header .nv_main_header_box_container_inner ul li span a {
  color: #FFFFFF;
}
.nv_main_header.white_header .nv_main_header_box_container_inner ul li.withdropdown span.dropicon:before {
  border-color: #FFFFFF;
}
.nv_main_header.white_header.sticky .nv_main_header_box_logo a span.novus_logo {
  filter: unset;
}
.nv_main_header.white_header.sticky .nv_main_header_box_container_inner ul li span a {
  color: #000000;
}
.nv_main_header.white_header.sticky .nv_main_header_box_container_inner ul li.withdropdown span.dropicon:before {
  border-color: #000000;
}
.nv_main_header.white_header.sticky .nv_main_header_box_container_inner ul li.book_a_demo_btn span a {
  color: #FFFFFF;
}

.nv_main_header_box_container_inner ul li.withdropdown:hover span.dropicon:before {
  transform: rotate(-135deg);
  border-color: #0d63be;
  top: 40%;
}


.nvnewheader {
  font-family: "Inter", sans-serif !important;
}
.nvnewheader_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box {
    flex-direction: column;
    gap: 15px;
  }
}
.nvnewheader_box:before, .nvnewheader_box:after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(54, 190, 254, 0.8) 0, rgba(249, 185, 247, 0.8) 100%);
  bottom: 4rem;
  content: "";
  filter: blur(100px);
  height: 40%;
  position: absolute;
  transform: rotate(-146.42deg);
  z-index: 0;
}
.nvnewheader_box:before {
  left: -8rem;
  width: 10%;
}
.nvnewheader_box:after {
  right: -8rem;
  top: 4rem;
  width: 10%;
}
.nvnewheader_box_left {
  width: 45%;
  margin-top: 75px;
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left {
    width: 100%;
    margin-top: 50px;
  }
}
.nvnewheader_box_left h1 {
  font-weight: 800;
  color: #262626;
  line-height: 1;
  font-size: 60px;
  font-family: "Inter", sans-serif !important;
  z-index: 2;
  position: relative;
  margin-bottom: 0;
}
.nvnewheader_box_left h1:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/ai_text.webp) no-repeat;
  width: 105px;
  height: 72px;
  background-size: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -35px;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h1:before {
    width: 75px;
    height: 50px;
    top: -24px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h1:before {
    width: 75px;
    height: 50px;
    top: -25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h1 {
    font-size: 36px;
  }
}
.nvnewheader_box_left h2 {
  font-weight: 800;
  color: #262626;
  line-height: 1.24;
  font-size: 60px;
  font-family: "Inter", sans-serif !important;
  z-index: 2;
  position: relative;
  margin-bottom: 20px;
  margin-top: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h2 {
    font-size: 36px;
  }
}
.nvnewheader_box_left h2 span {
  font-weight: 800;
  font-family: "Inter", sans-serif !important;
  color: #262626;
  font-size: 54px;
  display: inline-flex;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h2 span {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h2 span {
    font-size: 36px;
  }
}
.nvnewheader_box_left h2 span:after {
  content: "|";
  animation-name: blinking;
  animation-duration: 0.71s;
  animation-iteration-count: infinite;
  color: transparent;
}
@keyframes blinking {
  from {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
@media only screen and (max-width: 449px) {
  .nvnewheader_box_left h2 {
    font-size: 36px;
  }
  .nvnewheader_box_left h2 span {
    font-size: 36px;
  }
  .nvnewheader_box_left h2:before {
    width: 62px;
    height: 48px;
    top: -17px;
  }
}
.nvnewheader_box_left h2.withanimation {
  font-size: 66px;
  font-family: "Inter", sans-serif !important;
  font-weight: 800;
  margin-bottom: 20px;
  color: #202020;
  text-align: center;
  position: relative;
  z-index: 99;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h2.withanimation {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h2.withanimation {
    font-size: 36px;
  }
}
.nvnewheader_box_left h2.withanimation .slidingVertical {
  position: relative;
  height: 1.2em;
  overflow: hidden;
  min-width: 14ch;
  display: inline-block;
  text-align: left;
}
.nvnewheader_box_left h2.withanimation .slidingVertical span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  font-weight: 800;
  color: #0d63be;
  white-space: nowrap;
  font-family: "Inter", sans-serif !important;
  font-size: 66px;
  color: #0d63be;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left h2.withanimation .slidingVertical span {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left h2.withanimation .slidingVertical span {
    font-size: 36px;
  }
}
.nvnewheader_box_left h2.withanimation .slidingVertical span.active {
  opacity: 1;
  transform: translateY(0);
}
.nvnewheader_box_left h2.withanimation .slidingVertical span.exit {
  opacity: 0;
  transform: translateY(-100%);
}
.nvnewheader_box_left p {
  color: #262626;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  font-size: 20px;
  z-index: 2;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .nvnewheader_box_left p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_left p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.nvnewheader_box_left ul {
  display: flex;
  gap: 10px;
}
.nvnewheader_box_right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_right {
    width: 100%;
  }
}
.nvnewheader_box_right .nvhomepage_slider_wrap {
  margin-top: 22%;
}
@media only screen and (max-width: 768px) {
  .nvnewheader_box_right .nvhomepage_slider_wrap {
    margin-top: 0;
  }
}
.nvnewheader_box_right .nvhomepage_slides {
  width: 100%;
  flex-shrink: 0;
}
.nvnewheader_box_right .nvhomepage_slides img {
  width: 100%;
}
.nvnewheader_header {
  margin-bottom: 40px;
}
.nvnewheader_header h3 {
  color: #000000;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  font-family: "Inter", sans-serif !important;
}
@media only screen and (max-width: 449px) {
  .nvnewheader_header h3 {
    font-size: 28px;
  }
}
.nvnewheader_header h3 span {
  color: #0d63be;
  font-weight: 700;
  font-family: "Inter", sans-serif !important;
}

.nvnewheader2_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}
@media only screen and (min-width: 1601px) {
  .nvnewheader2_box {
    max-height: 800px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box {
    width: 100%;
  }
}
.nvnewheader2_box h1 {
  font-size: 66px;
  font-family: "Inter", sans-serif !important;
  font-weight: 800;
  margin-bottom: 10px;
  color: #202020;
  text-align: center;
  position: relative;
  z-index: 99;
  line-height: 1;
  display: flex;
  align-items: center;
}
.nvnewheader2_box h1 span {
  font-family: "Inter", sans-serif !important;
  font-weight: 800;
  background-color: #0d63be;
  color: #FFFFFF;
  padding: 10px 15px;
  margin-left: 10px;
}
.nvnewheader2_box h1 span.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media only screen and (min-width: 1367px) and (max-width: 1450px) {
  .nvnewheader2_box h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1 {
    font-size: 36px;
  }
}
.nvnewheader2_box h1:before {
  content: "";
  background: url(https://www.novus-loyalty.com/img/homepage_2026/ai_text.webp) no-repeat;
  width: 97px;
  height: 72px;
  background-size: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .nvnewheader2_box h1:before {
    width: 75px;
    height: 50px;
    top: 0;
  }
}
@media only screen and (min-width: 1367px) and (max-width: 1450px) {
  .nvnewheader2_box h1:before {
    width: 90px;
    height: 60px;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1:before {
    width: 70px;
    height: 50px;
    top: -15px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1 {
    display: none;
  }
}
.nvnewheader2_box h1.hero_hai {
  font-weight: 800;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s ease forwards;
  display: block;
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1.hero_hai {
    display: none;
  }
}
.nvnewheader2_box h1.hero_hai span {
  padding: 0;
  margin-left: 0;
  background-color: transparent;
  color: #0d63be;
}
.nvnewheader2_box .hero-home-text {
  position: relative;
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nvnewheader2_box .hero-home-text.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}
.nvnewheader2_box h1.mobile_heading {
  font-size: 66px;
  font-family: "Inter", sans-serif !important;
  font-weight: 600;
  margin-bottom: 0;
  color: #202020;
  text-align: center;
  position: relative;
  z-index: 99;
  line-height: 1.24;
  margin-bottom: 20px;
  display: none;
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1.mobile_heading {
    font-size: 36px;
  }
}
.nvnewheader2_box h1.mobile_heading span {
  font-family: "Inter", sans-serif !important;
  font-weight: 800;
  color: #828bf1;
  background: -webkit-linear-gradient(270deg, rgb(130, 139, 241) 0%, rgb(203, 72, 178) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  margin: 0;
}
.nvnewheader2_box h1.mobile_heading:before {
  content: none;
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h1.mobile_heading {
    display: block;
  }
}
.nvnewheader2_box h2 {
  font-size: 66px;
  font-family: "Inter", sans-serif !important;
  font-weight: 800;
  margin-bottom: 25px;
  color: #202020;
  text-align: center;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 180px;
}
@media only screen and (min-width: 1367px) and (max-width: 1450px) {
  .nvnewheader2_box h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h2 {
    display: none;
    font-size: 36px;
  }
}
.nvnewheader2_box h2 .slidingVertical {
  position: relative;
  height: 1.2em;
  overflow: hidden;
  min-width: 14ch;
  display: inline-block;
  text-align: left;
}
.nvnewheader2_box h2 .slidingVertical span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  font-weight: 800;
  color: #0d63be;
  white-space: nowrap;
  font-family: "Inter", sans-serif !important;
  font-size: 66px;
  color: #0d63be;
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .nvnewheader2_box h2 .slidingVertical span {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1367px) and (max-width: 1450px) {
  .nvnewheader2_box h2 .slidingVertical span {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box h2 .slidingVertical span {
    font-size: 36px;
  }
}
.nvnewheader2_box h2 .slidingVertical span.active {
  opacity: 1;
  transform: translateY(0);
}
.nvnewheader2_box h2 .slidingVertical span.exit {
  opacity: 0;
  transform: translateY(-100%);
}
.nvnewheader2_box p {
  font-size: 18px;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  margin-bottom: 35px;
  color: #202020;
  text-align: center;
  position: relative;
  z-index: 99;
}
.nvnewheader2_box p.lastp {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.nvnewheader2_box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 99;
}
.nvnewheader2_box ul li a {
  filter: drop-shadow(31px 0 35px rgba(0, 0, 0, 0.17));
}
.nvnewheader2_box span.nvheaderimage_1, .nvnewheader2_box span.nvheaderimage_2 {
  position: absolute;
  bottom: 5%;
  display: inline-flex;
  justify-content: center;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .nvnewheader2_box span.nvheaderimage_1, .nvnewheader2_box span.nvheaderimage_2 {
    display: none;
  }
}
.nvnewheader2_box span.nvheaderimage_1 img, .nvnewheader2_box span.nvheaderimage_2 img {
  width: 100%;
  max-width: 300px;
}
.nvnewheader2_box span.nvheaderimage_1 {
  left: -15%;
}
@media only screen and (min-width: 1441px) and (max-width: 1599px) {
  .nvnewheader2_box span.nvheaderimage_1 {
    left: -15%;
  }
}
@media only screen and (min-width: 1599px) {
  .nvnewheader2_box span.nvheaderimage_1 {
    left: -15%;
  }
}
.nvnewheader2_box span.nvheaderimage_2 {
  right: -15%;
}
@media only screen and (min-width: 1441px) and (max-width: 1599px) {
  .nvnewheader2_box span.nvheaderimage_2 {
    right: -15%;
  }
}
@media only screen and (min-width: 1599px) {
  .nvnewheader2_box span.nvheaderimage_2 {
    right: -15%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .nvnewheader2_box h1 {
    font-size: 54px;
  }
  .nvnewheader2_box h2 {
    font-size: 54px;
  }
  .nvnewheader2_box h2 span {
    font-size: 54px;
  }
  .nvnewheader2_box p {
    font-size: 16px;
  }
  .nvnewheader2_box span.nvheaderimage_1, .nvnewheader2_box span.nvheaderimage_2 {
    position: absolute;
    bottom: 5%;
    display: inline-flex;
    justify-content: center;
    z-index: 99;
  }
  .nvnewheader2_box span.nvheaderimage_1 img, .nvnewheader2_box span.nvheaderimage_2 img {
    width: 90%;
  }
  .nvnewheader2_box span.nvheaderimage_1 {
    left: -25%;
  }
  .nvnewheader2_box span.nvheaderimage_2 {
    right: -25%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1450px) {
  .nvnewheader2_box h1 {
    font-size: 60px;
  }
  .nvnewheader2_box h2 {
    font-size: 60px;
  }
  .nvnewheader2_box h2 span {
    font-size: 60px;
  }
  .nvnewheader2_box p {
    font-size: 18px;
  }
  .nvnewheader2_box span.nvheaderimage_1, .nvnewheader2_box span.nvheaderimage_2 {
    position: absolute;
    bottom: 5%;
    display: inline-flex;
    justify-content: center;
    z-index: 99;
  }
  .nvnewheader2_box span.nvheaderimage_1 img, .nvnewheader2_box span.nvheaderimage_2 img {
    width: 100%;
  }
  .nvnewheader2_box span.nvheaderimage_1 {
    left: -25%;
  }
  .nvnewheader2_box span.nvheaderimage_2 {
    right: -25%;
  }
}
@media only screen and (min-width: 1600px) {
  .nvnewheader2_box h1 {
    font-size: 72px;
  }
  .nvnewheader2_box h2 {
    font-size: 72px;
  }
  .nvnewheader2_box h2 .slidingVertical span {
    font-size: 72px;
  }
  .nvnewheader2_box p {
    font-size: 20px;
  }
}

.menu-toggle {
    width: 25px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #006bc0;
    margin: 3px 0;
    transition: 0.3s;
}

.nv_sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 9999999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nv_sidebar.active {
    left: 0;
}

.nv_sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;

    .logo{
        img{
            padding: 0;
            max-width: 70px;
        }
    }
}

.close-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
}

/* Sidebar Body */
.nv_sidebar-nav {
    position: relative;
    flex: 1;
    padding: 10px 0;
    padding-bottom: 80px; // leave space for the sticky footer button
}

/* Menu Items */
.menu-item {
    border-bottom: 1px solid #ececec;
}

.menu-item.menu-item-empty{
    border: none;
}

.menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    color: #1f2933;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.25s ease;
}

.menu-item.menu-item-empty > a{
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

.menu-item-btn{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: $white_color;
    box-shadow: rgba(149, 157, 165, 0.2) 0px -9px 24px;
    padding: 10px 15px;

    a{
        padding: 10px 12px;
        background-color: $primary_color;
        color: $white_color;
        border-radius: 0px;
        font-size: 14px;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

.menu-item > a:hover {
    background-color: #f5f6f8;
}

/* Active Item */
.has-megamenu.active > a {
    background-color: $primary_color;
    color: $white_color;
}

.has-megamenu > a::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

/* Rotate icon when active (open) */
.has-megamenu.active > a::after {
    transform: rotate(-135deg);
}

/* Megamenu Container */
.megamenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    transition: max-height 0.45s ease;
}

.megamenu.active {
    max-height: 520px;
    overflow-y: auto;
}

/* Megamenu Content */
.megamenu-content {
    padding: 15px;
}

/* Card-like Columns */
.megamenu-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Column Card */
.megamenu-column {
    background: $white_color;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Column Heading */
.megamenu-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: $primary_color;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

/* Links */
.megamenu-column ul {
    list-style: none;
    padding: 0;
}

.megamenu-column ul li {
    margin-bottom: 10px;

    &:last-child{
        margin-bottom: 0;
    }
}

.megamenu-column ul li a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    padding: 6px 0;
    display: block;
    transition: color 0.2s ease;
}

.megamenu-column ul li a:hover {
    color: #111827;
}

/* Overlay */
.nv_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99999;
}

.nv_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (min-width: 768px) {
    .megamenu-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-toggle,
    .nv_sidebar {
        display: none;
    }
}

/* --- Header Section --- */
.pr_header_fluid {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    padding: 100px 0 180px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pr_header_fluid:before {
    content: '';
    width: 100%;
    background: url(../img/press_release/prbg.png) no-repeat;
    background-size: cover;
    height: 100%;
    z-index: 0;
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 0;
}

.pr_header {
    position: relative;
    z-index: 2;
}

.pricon {
    display: inline-flex;
    position: absolute;
    animation: floatUpDown 3s ease-in-out infinite;
}

.pricon img {
    height: 65px;
}

.pricon.pricon_1 {
    left: -4%;
    animation-delay: 0s;
}

.pricon.pricon_2 {
    left: 0;
    bottom: -20%;
    animation-delay: 0.5s;
}

.pricon.pricon_3 {
    right: -4%;
    animation-delay: 1s;
}

.pricon.pricon_4 {
    right: 0;
    bottom: -20%;
    animation-delay: 1.5s;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatUpDownSmooth {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(5px);
    }
}

@media (max-width: 767px) {
    .pricon {
        animation: none;
    }
}

.pr_header_box {
    max-width: 700px;
    margin: 0 auto;
}

.pr_header_box .kicker {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.pr_header_box h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pr_header_box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- Featured Press Releases (Main Section) --- */
.pr_main_fluid {
    --pr-blue: #016DE0;
    --pr-blue-dark: #0052cc;
    --pr-blue-darker: #003d99;
    --pr-blue-light: #6CC0F6;
    --pr-card-radius: 18px;
    --pr-gap: 30px;

    margin-top: -100px;
    position: relative;
    z-index: 10;
}

/* Grid is the no-JS / pre-init fallback layout. */
.pr_main_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pr-gap);
}

.pr_main_slider {
    position: relative;
}

/* Only hand layout to Slick once it has actually initialised,
   otherwise the boxes stack (this was the display:block bug). */
.pr_main_slider.slick-initialized {
    display: block;
}

.pr_main_slider .slick-list {
    margin: 0 -15px;
}

.pr_main_slider .slick-slide {
    padding: 0 15px;
    height: auto; /* let flex cards stretch to equal height */
}

.pr_main_slider .slick-slide > div {
    height: 100%;
}

.pr_main_slider .slick-dots {
    bottom: -40px;
}

.pr_main_slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--pr-blue);
    opacity: 0.3;
}

.pr_main_slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

.pr_main_slider .slick-prev,
.pr_main_slider .slick-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.pr_main_slider .slick-prev { left: -15px; }
.pr_main_slider .slick-next { right: -15px; }

.pr_main_slider .slick-prev:before,
.pr_main_slider .slick-next:before {
    color: var(--pr-blue);
    font-size: 20px;
    opacity: 1;
}

/* Card shell — just the surface. Layout now lives on the inner wrapper. */
.pr_main_box {
    /* background: #fff;
    border-radius: var(--pr-card-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 18px;
    height: 100%;
    transition: transform 0.3s ease; */
}

/* .pr_main_box:hover {
    transform: translateY(-5px);
} */

/* New wrapper: this is the flex column that stacks image + content */
.pr_main_box_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--pr-card-radius);
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    padding: 18px;
    height: 100%;
    transition: transform 0.3s ease;
}

.pr_main_box_inner_image {
    border-radius: 16px;
    overflow: hidden;
}

/* Graphics have baked-in text, so show them uncropped at natural ratio */
.pr_main_box_inner_image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.pr_main_box_inner_content {
    padding: 18px 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meta_tags {
    list-style: none;
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding: 0;
    font-size: 12px;
    color: var(--pr-blue-dark);
    font-weight: 600;
    align-items: center;
    flex-wrap: wrap;
}

.meta_tags li:last-child {
    background: linear-gradient(135deg, var(--pr-blue) 0%, var(--pr-blue-light) 100%);
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    border-radius: 4px;
}

.pr_main_box_inner_content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
    line-height: 1.3;
}

.pr_main_box_inner_content h3 a {
    color: inherit;
    text-decoration: none;
}

.pr_main_box_inner_content h3 a:hover {
    color: var(--pr-blue-dark);
}

.pr_main_box_inner_content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.read_more {
    color: var(--pr-blue-dark);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    text-decoration: none;
}

.read_more:hover {
    color: var(--pr-blue-darker);
    text-decoration: underline;
}

.read_more:focus-visible,
.pr_main_box_inner_content h3 a:focus-visible {
    outline: 2px solid var(--pr-blue);
    outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .pr_main_fluid { margin-top: -60px; }
    .pr_main_box_inner_content h3 { font-size: 24px; }
}

@media (max-width: 767px) {
    .pr_main_fluid { margin-top: -40px; }
    .pr_main_grid { grid-template-columns: 1fr; gap: 20px; }
    .pr_main_box_inner{
      padding: 14px;
    }
    .pr_main_box_inner_content h3 { font-size: 22px; }
    .pr_main_box_inner_image{
      border-radius: 12px;
    }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    .pr_main_box { transition: none; }
    .pr_main_box:hover { transform: none; }
}

/* --- Tabs Section --- */
.pr_tab_fluid {
    padding: 60px 0;
}

.pr_tab_list {
    margin-bottom: 40px;
    display: flex;
    justify-content: start;
}

.pr_tab_list ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pr_tab_list li {
    padding: 10px 24px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    white-space: nowrap;
}

.pr_tab_list li:hover {
    border-color: #0052cc;
    color: #0052cc;
}

.pr_tab_list li.active {
    background-color: #0052cc;
    color: #fff;
    border-color: #0052cc;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.pr_tab_content_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pr_tab_content_box_inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.pr_tab_content_box_inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.pr_tab_content_box_inner_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.pr_tab_content_box_inner_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pr_tab_content_box_inner_content .date {
    font-size: 13px;
    color: #0052cc;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.pr_tab_content_box_inner_content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.4;
}

.pr_tab_content_box_inner_content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- CTA Section --- */
.prbg_fluid {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.prbg_box {
    background: url('../img/press_release/press_release_bg.png') no-repeat center center;
    background-color: #0a192f;
    background-size: cover;
    border-radius: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: end;
}

.prbg_box_inner {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 60px 0;
    left: -90px;
}

.prbg_box_inner h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.prbg_box_inner p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta_buttons {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    border-width: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-primary {
    background-color: #00d2ff;
    color: #0a192f;
    border: 1px solid #00d2ff;
}

.btn-primary:hover {
    background-color: #00b8e6;
    border-color: #00b8e6;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 1);
}

@media (max-width: 1024px) {
    .pr_tab_content_box {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prbg_box_inner {
        left: -40px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .pr_main_grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .pr_header_box h1 {
        font-size: 40px;
    }
    
    .pr_main_box_content h3 {
        font-size: 24px;
    }
    
    .pricon img {
        height: 50px;
    }
}

/* Mobile Landscape / Large Phones */
@media (max-width: 767px) {
    .prbg_fluid{
      padding: 30px 0;
    }
    .pr_header_fluid {
        padding: 80px 0 150px 0;
    }
    
    .pr_main_grid {
        grid-template-columns: 1fr;
    }

    .pr_main_slider .slick-slide {
        padding: 0 10px;
    }

    .pr_main_slider .slick-prev,
    .pr_main_slider .slick-next {
        display: none !important;
    }
    
    .pr_header_box h1 {
        font-size: 32px;
    }

    .pricon img {
        height: 40px;
    }
    
    .pr_main_box_image img {
        height: 220px;
    }
    
    /* .pricon {
      display: none;
    } */
    
    .pr_tab_content_box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pr_tab_list{
      margin-bottom: 18px;
    }
    
    .pr_tab_list ul {
        justify-content: center;
        gap: 8px;
        padding: 0;
    }
    
    .prbg_box {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
    }
    
    .prbg_box_inner {
        max-width: 100%;
        padding: 40px 20px;
        left: 0;
    }
    
    .prbg_box_inner h3 {
        font-size: 30px;
    }
    
    .cta_buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta_buttons li {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        display: block;
    }
    
    .pr_main_box_content h3 {
        font-size: 22px;
    }

    .pr_tab_content_box_inner_content {
      padding: 18px;
    }

    .pr_tab_content_box_inner_content .date {
      font-size: 12px;
      margin-bottom: 8px;
    }

    .pr_tab_content_box_inner_content h4 {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .pr_tab_content_box_inner_content p {
      font-size: 13px;
      margin-bottom: 14px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .pr_header_fluid {
        padding: 60px 0 130px 0;
    }
    
    .pr_header_box h1 {
        font-size: 28px;
    }
    
    .pr_header_box .kicker {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .pr_tab_list li {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .pr_main_box {
        padding: 12px;
    }
    
    .pr_main_box_content {
        padding: 14px 0;
    }
    
    .prbg_box_inner {
        padding: 0;
    }
    
    .prbg_box_inner h3 {
        font-size: 22px;
    }
    
    .prbg_box_inner p {
        font-size: 14px;
    }
}

.press-details{
    padding:70px 0;
    background:#f4f8fe;
}

.press-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:36px;
}

.press-content .press-title h1{
    font-size:36px;
    line-height:1.24;
    font-weight:700;
    max-width:900px;
    color: #000000;
    margin: 0;
    margin-bottom: 20px;
    border: none;
}

.press-content .press-meta{
    display:flex;
    align-items: center;
    gap:10px;
    list-style:none !important;
    padding:0;
    margin:0;
}

.press-content .press-meta li{
    font-size:14px;
    padding:0;
    list-style:none !important;
}

.press-content .press-meta li:first-child{
    color:#1976d2;
}

.press-content .press-meta li:last-child{
    background: #016DE0;
    background: -webkit-linear-gradient(135deg, rgba(1, 109, 224, 1) 0%, rgba(108, 192, 246, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(1, 109, 224, 1) 0%, rgba(108, 192, 246, 1) 100%);
    background: linear-gradient(135deg, rgba(1, 109, 224, 1) 0%, rgba(108, 192, 246, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#016DE0", endColorstr="#6CC0F6", GradientType=0);
    padding: 4px 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
    border-radius: 4px;
}

.press-content .press-social{
  display:flex;
  list-style:none;
  gap:12px;
  margin:0;
  padding:0;
}

.press-content .press-social li{
    width:36px;
    height:36px;
    border:1px solid #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:4px;
    transition:.3s;
    margin: 0;
}

.press-social li a.pr_sicon{
    width: 24px;
    height: 24px;
    background: url(../img/press_release/social_icons.png) no-repeat;
    background-size: cover;
    display: inline-flex;
}

.press-social li a.pr_sicon.pr_sicon_1{background-position-x: 6px;}
.press-social li a.pr_sicon.pr_sicon_2{background-position-x: -166px;}
.press-social li a.pr_sicon.pr_sicon_3{background-position-x: -105px;}
/* .press-social li a.pr_sicon.pr_sicon_4{background-position-x: -166px;} */

.press-social li:hover{
    background:#1f7fff;
}

.press-social li:hover a{
    filter: brightness(0) invert(1);
}

/* ===================== */

.press-layout{
    display:grid;
    grid-template-columns:
        minmax(0,2fr)
        360px;
    gap:36px;
    align-items:start;
}

/* LEFT */

.featured-image{
    overflow:hidden;
    border-radius:16px;
    margin-bottom:35px;
    padding: 18px;
    background-color: #FFFFFF;
    filter: drop-shadow(7px 5px 14px rgba(70, 80, 195, 0.1));
}

.featured-image img{
    display:block;
    width:100%;
    border-radius:16px;
    margin: 0 !important;
}

.press-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

.press-content p {
    font-size: 16px;
    line-height: 1.64;
    margin-bottom: 24px;
    font-weight: 300;
    color: #000000;
}

.press-content h1, 
.press-content h2, 
.press-content h3, 
.press-content h4 {
    color: #000000;
    line-height: 1.25;
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.press-content h1 { font-size: 36px; font-weight: 600; }
.press-content h2 { font-size: 28px; font-weight: 600; }
.press-content h3 { font-size: 22px; font-weight: 500; }
.press-content h4 { 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #555555; 
}

.press-content a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.25);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.press-content a:hover {
    text-decoration-color: #000000;
}

.press-content ul, 
.press-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.press-content li {
    font-size: 16px;
    line-height: 1.64;
    font-weight: 300;
    color: #000000;
    margin-bottom: 8px;
}

.press-content ul li{
    list-style: disc;
}
.press-content ol li{
    list-style: auto;
}

.press-content ul li::marker {
    color: #888888; 
}
.press-content ol li::marker {
    color: #000000;
    font-weight: 500;
}

.press-content blockquote {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    color: #333333;
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 3px solid #000000;
    background: #fafafa;
    border-radius: 0 4px 4px 0;
}

.press-content blockquote p:last-child {
    margin-bottom: 0;
}

.press-content img,
.press-content .wp-block-image img{
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.press-content iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    margin: 32px 0;    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.press-content figcaption,
.press-content .wp-element-caption {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: #777777;
    text-align: center;
    margin-top: -16px;
    margin-bottom: 32px;
}

.press-content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 14px;
    background: #f0f0f0;
    color: #000000;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 400;
}

.press-content pre {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.press-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

.press-content hr {
    border: 0;
    height: 1px;
    background: #e5e5e5;
    margin: 48px 0;
}

.press-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
}

.press-content th, 
.press-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.press-content th {
    font-weight: 600;
    background: #fafafa;
}

@media (max-width: 768px) {
    .press-content h1 { font-size: 28px; }
    .press-content h2 { font-size: 24px; }
    .press-content h3 { font-size: 20px; }
    
    .press-content blockquote {
        font-size: 18px;
        padding: 16px 20px;
    }
}

.press-sidebar{
    position:sticky;
    top:90px;
}

.press-box-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.press-box-inner-left{
  width: 60%;
}

.press-box-inner-right{
  width: 40%;
  display: flex;
  justify-content: end;
}

.newsletter-card{
    background: #E1EDFF;
    background: -webkit-linear-gradient(135deg, rgba(225, 237, 255, 1) 0%, rgba(201, 223, 255, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(225, 237, 255, 1) 0%, rgba(201, 223, 255, 1) 100%);
    background: linear-gradient(135deg, rgba(225, 237, 255, 1) 0%, rgba(201, 223, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E1EDFF", endColorstr="#C9DFFF", GradientType=0);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.newsletter-card h3{
    font-size:20px;
    margin-bottom:12px;
    color: #000000;
}

.newsletter-card p{
    color: #000000;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 14px;
}

.newsletter-card input{
    width:100%;
    height:56px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:0 18px;
    margin-bottom:15px;
    font-size:16px;
}

.newsletter-card button{
    width:100%;
    height:56px;
    border:none;
    border-radius:8px;
    background:#0d6efd;
    color:#ffffff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.newsletter-card button:hover{
    background:#005ad5;
}

.latest-posts h3{
    margin-bottom:18px;
    font-size:24px;
    color: #000000;
}

.latest-post{
    border-radius:18px;
    overflow:hidden;
}

.latest-post img{
    width:100%;
    display:block;
    border-radius:18px;
    height: auto;
}

.latest-post span{
    display:block;
    margin-top:15px;
    font-size:14px;
    color:#999;
}

@media (max-width:991px){

    .press-layout{
        grid-template-columns:1fr;
    }

    .press-sidebar{
        position:relative;
        top:0;
    }

    .press-header{
        flex-direction:column;
    }

    .press-content .press-title h1{
        font-size:36px;
    }

}

@media (max-width:768px){

    .press-details{
        padding:50px 0;
    }

    .press-content .press-title h1{
        font-size:30px;
    }

    .press-content p{
        font-size:16px;
        line-height:1.8;
    }
    .press-meta{
        flex-wrap:wrap;
    }
}

.latest-post-slider {
    margin-top: 20px;
}

.latest-post {
    outline: none;
}

.latest-post img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.latest-post span {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    color: #8a8a8a;
}

.latest-post h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.latest-post h4 a{
    color: #000000;
}

/* Dots */

.latest-post-slider .slick-dots {
    bottom: -35px;
}

.latest-post-slider .slick-dots li button:before {
    font-size: 10px;
    color: #0d6efd;
    opacity: .3;
}

.latest-post-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Arrows */

.latest-post-slider .slick-prev,
.latest-post-slider .slick-next {

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    z-index: 5;
}

.latest-post-slider .slick-prev {
    left: -18px;
}

.latest-post-slider .slick-next {
    right: -18px;
}

.latest-post-slider .slick-prev:before,
.latest-post-slider .slick-next:before {

    color: #0d6efd;
    font-size: 20px;
    opacity: 1;

}


/* ==========================================
   Large Tablets
========================================== */
@media (max-width: 1200px) {

    .container{
        width:94%;
    }

    .press-layout{
        grid-template-columns:minmax(0,1fr) 320px;
        gap:30px;
    }

    .press-content{
        max-width:100%;
    }
}

@media (max-width: 991px) {

    .press-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .press-social{
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

    .press-layout{
        display:block;
    }

    .press-sidebar{
        margin-top:50px;
    }

    .featured-image{
        padding:12px;
    }

    .press-content .press-title h1{
        font-size:32px;
    }

    .pr_header_box h1{
        font-size:38px;
    }

    .pr_header_fluid{
        padding:80px 0 160px;
    }

    .pr_main_fluid{
        margin-top:-80px;
    }

}


@media (max-width:767px){

    .container{
        width:92%;
    }

    .press-details{
        padding:40px 0;
    }

    .press-header{
        gap:20px;
        margin-bottom:24px;
    }

    .press-content .press-title h1{
        font-size:28px;
        line-height:1.35;
    }

    .pr_tab_fluid {
      padding: 30px 0;
    }

    .press-meta{
        gap:8px;
    }

    .press-meta li{
        font-size:13px;
    }

    .featured-image{
        padding:10px;
        margin-bottom:25px;
    }

    .press-content{
        max-width:100%;
    }

    .press-content p,
    .press-content li{
        font-size:15px;
        line-height:1.8;
    }

    .press-content h1{
        font-size:28px;
    }

    .press-content h2{
        font-size:24px;
    }

    .press-content h3{
        font-size:20px;
    }

    .press-content table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

    .newsletter-card{
        padding:20px;
    }

    .newsletter-card input,
    .newsletter-card button{
        height:52px;
    }

    .latest-post h4{
        font-size:20px;
    }

    .latest-post-slider .slick-prev{
        left:5px;
    }

    .latest-post-slider .slick-next{
        right:5px;
    }

}

@media (max-width:480px){

    .container{
        width:94%;
    }

    .pr_header_fluid{
        padding:40px 0 100px;
    }

    .pr_header_box h1{
        font-size:24px;
    }

    .pr_header_box p{
        font-size:14px;
    }

    .pr_main_box{
        padding:12px;
    }

    .pr_main_box_image img{
        height:180px;
    }

    .pr_main_box_content h3{
        font-size:20px;
    }

    .pr_tab_list ul{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:8px;
        scrollbar-width:none;
    }

    .pr_tab_list ul::-webkit-scrollbar{
        display:none;
    }

    .pr_tab_list li{
        flex:0 0 auto;
    }

    .press-content .press-title h1{
        font-size:24px;
    }

    .press-content p,
    .press-content li{
        font-size:14px;
    }

    .press-content blockquote{
        font-size:16px;
        padding:16px;
    }

    .press-social{
        gap:8px;
    }

    .press-social li{
        width:38px;
        height:38px;
    }

    .newsletter-card h3{
        font-size:18px;
    }

    .latest-post h4{
        font-size:18px;
    }

}


.nv_sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 9999999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nv_sidebar.active {
  left: 0;
}

.nv_sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.nv_sidebar-header .logo img {
  padding: 0;
  max-width: 70px;
}

.close-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
}

.nv_sidebar-nav {
  position: relative;
  flex: 1;
  padding: 10px 0;
  padding-bottom: 80px;
}

.popitup {
  display: none;
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popitcard {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  width: 40%;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  animation: popup 0.5s;
  border-radius: 10px;
  position: relative;
}
.popitcard a {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 25px;
  width: 25px;
  box-sizing: border-box;
  line-height: 25px;
  display: inline-block;
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  transition: all 0.25s ease-out;
}
.popitcard a:hover {
  border: solid 2px #255bca;
}
.popitcard p {
  margin-bottom: 0;
}

@keyframes popup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.close_button:before, .close_button:after {
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.5px;
  margin-left: -8px;
  display: block;
  height: 2px;
  width: 15px;
  background-color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 25px;
}
.close_button:after {
  transform: rotate(-135deg);
}
.close_button:hover {
  border: solid 25px #255bca;
}
.close_button:hover:before {
  transform: rotate(45deg);
}
.close_button:hover:after {
  transform: rotate(-45deg);
}

.nlgradbg {
  background: linear-gradient(to right, #006bc0, #691dc0);
}

.nv_custom_footer {
  padding: 40px 0;
}


.address_info {
  margin-bottom: 15px;
  color: #FFFFFF;
}
.address_info h4 {
  font-size: 18px;
}
.address_info p {
  font-size: 14px;
  margin-bottom: 5px;
}
.address_info p:last-child {
  margin-bottom: 0;
}

.footer_social h5 {
  margin: 0;
}
.footer_social ul {
  display: flex;
  gap: 8px;
}
.footer_social ul li a {
  display: flex;
  transition: all 0.25s ease-in-out;
}
.footer_social ul li a:before {
  content: none !important;
}
.footer_social ul li a:hover {
  transform: translateY(-1px);
}
.footer_social ul li a img {
  width: 30px;
}

@media only screen and (max-width: 768px) {
  .footer_row.row-cols-1 .col.final_col {
    width: 100%;
    margin-top: 10px;
  }
  .footer_row.row-cols-1 .col.final_col .footer_social h5 {
    display: block;
    margin-bottom: 10px;
  }
}


.footer_row {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 499px) {
  .footer_row.row-cols-1 > * {
    margin-bottom: 10px;
  }
}
.footer_row h5 {
  margin-bottom: 20px;
  color: #FFFFFF;
}
@media only screen and (max-width: 499px) {
  .footer_row h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.footer_row ul li {
  margin: 10px 0;
  font-size: 16px;
}
@media only screen and (min-width: 991px) and (max-width: 1440px) {
  .footer_row ul li {
    margin: 8px 0;
    font-size: 15px;
  }
}
@media only screen and (max-width: 499px) {
  .footer_row ul li {
    font-size: 13px;
    margin: 0;
    margin-bottom: 5px;
  }
  .footer_row ul li:last-child {
    margin-bottom: 0;
  }
}
.footer_row ul li a {
  color: #FFFFFF;
  position: relative;
}
@media only screen and (min-width: 991px) and (max-width: 1440px) {
  .footer_row ul li a {
    font-size: 15px;
  }
}
.footer_row ul li a:before {
  content: "";
  display: inline-flex;
  width: 0;
  position: absolute;
  background-color: #FFFFFF;
  transition: all 0.25s ease-in-out;
  height: 1px;
  bottom: -5px;
}
.footer_row ul li a:hover:before {
  content: "";
  display: inline-flex;
  width: 100%;
}
.footer_header {
  display: none;
}
.footer_copyright {
  padding: 10px 0;
}
.footer_copyright p {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media only screen and (min-width: 991px) and (max-width: 1440px) {
  .footer_copyright p {
    font-size: 15px;
  }
}
.footer_copyright ul li {
  display: inline-block;
  margin-right: 30px;
  color: #FFFFFF;
}
.footer_copyright ul li:nth-child(5) {
  margin-right: 0;
}
.footer_copyright ul li a {
  color: #FFFFFF;
}
.footer_copyright_links {
  float: right;
}
@media only screen and (min-width: 991px) and (max-width: 1440px) {
  .footer_copyright_links ul li {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1440px) {
  .footer_copyright_links ul li a {
    font-size: 15px;
  }
}


#products_nav {
  width: 750px;
}

#solution_nav {
  width: 900px;
}

#platform_nav {
  width: 800px;
}
#platform_nav .nv_header_dropdown_inner_box ul {
  grid-template-columns: repeat(3, 1fr);
}

#solution_nav_small {
  width: 600px;
}
#solution_nav_small .nv_header_dropdown_inner_box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
#solution_nav_small .nv_header_dropdown_inner_box ul li {
  padding: 8px;
  border-radius: 4px;
  position: relative;
}
#solution_nav_small .nv_header_dropdown_inner_box ul li a {
  color: #2f2f2f;
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
#solution_nav_small .nv_header_dropdown_inner_box ul li a img {
  width: 30px;
}
#solution_nav_small .nv_header_dropdown_inner_box ul li a span {
  font-weight: 500;
  font-family: "Inter", sans-serif !important;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
  100% {
    transform: translateX(0);
  }
}

.novus_footer {
  padding: 40px 0;
}
.novus_footer .footer_link_box {
  padding: 0 0 0 60px;
}
.novus_footer .footer_link_box ul li {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.novus_footer .footer_link_box ul li a {
  color: #000000;
}
.novus_footer .footer_link_box ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.newsletter_box input {
  padding: 10px 60px 10px 10px;
  border-radius: 50px;
  border: 1px solid #d7d7d7;
}
.newsletter_box .submitbtn {
  padding: 10px 30px;
  border-radius: 30px;
  position: absolute;
  margin-left: -60px;
  color: #FFFFFF;
}
.newsletter_box button#nsubmitting {
  display: none;
  pointer-events: none;
}
.newsletter_form input {
  width: 90%;
  padding: 8px 20px;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 25px;
}
.newsletter_form button {
  margin-top: -37px;
  padding: 6.5px 20px;
  float: right;
  z-index: 99;
  position: relative;
  border-radius: 25px;
  border: none;
  outline: none;
  color: #000000;
  background-color: #ff9900;
}
.newsletter_form button#nsubmitting {
  display: none;
  pointer-events: none;
}

.nlnewsletter {
  padding: 0 40px;
}
.nlnewsletter p {
  padding: 0 20px;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.nv_custom_footer {
  padding: 40px 0;
}

.award_row {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .award_row {
    flex-direction: column;
    gap: 20px;
  }
}
.award_row_left {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .award_row_left {
    width: 100%;
  }
}
.award_row_left ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.award_row_left ul li a {
  display: flex;
}
.award_row_left ul li a img {
  width: 150px;
  opacity: 0.75;
  transition: all 0.25s ease-in-out;
}
.award_row_left ul li:hover a img {
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .award_row_left {
    width: 100%;
  }
  .award_row_left ul {
    gap: 20px;
    justify-content: center;
  }
  .award_row_left ul li img {
    width: 80px;
  }
}
.award_row_right {
  width: 50%;
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .award_row_right {
    width: 100%;
    justify-content: center;
  }
}
.award_row_right ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 499px) {
  .award_row_right ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.award_row_right ul li a,
.award_row_right ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 70px;
  padding: 5px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
.award_row_right ul li a img,
.award_row_right ul li span img {
  transform: scale(0.95);
  transition: all 0.25s ease-in-out;
}
.award_row_right ul li:hover a img {
  transform: scale(1);
}
@media only screen and (max-width: 768px) {
  .award_row_right {
    width: 100%;
    justify-content: center;
  }
  .award_row_right ul li a,
  .award_row_right ul li span {
    min-width: 90px;
    height: 60px;
  }
}

@media only screen and (min-width: 769px) {
  .nffooterlinks,
  .nfcopyright {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .hideonnewfooter {
    display: none;
  }
  .nfnewsletter {
    margin-top: 0;
  }
  .nfnewsletter h6 {
    text-align: center;
    font-size: 18px;
  }
  .nfnewsletter .newsletter_form input {
    width: 100%;
    padding: 15px 20px;
  }
  .nfnewsletter .newsletter_form button {
    margin-top: -44px;
    margin-right: 10px;
  }
  .nffooterlinks {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .nffooterlinks ul {
    text-align: center;
  }
  .nffooterlinks ul li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 5px;
  }
  .nffooterlinks ul li a {
    color: #FFF;
  }
  .nfcopyright {
    text-align: center;
    margin-top: 20px;
  }
  .nfcopyright ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nfcopyright ul li {
    display: inline-block;
    margin-right: 20px;
    color: #FFFFFF;
  }

  .footer_row.row-cols-1 > * {
    width: 50%;
    padding-left: 20px;
  }

  .footer_row {
    margin-top: 20px;
  }
  .footer_row h5 {
    display: none;
  }

  .footer_row h5.footer_header {
    display: block;
  }
  .footer_row .footer_link_list,
  .footer_row .footer_copyright_links {
    float: none;
  }
  .footer_row .footer_link_list li,
  .footer_row .footer_copyright_links li {
    display: block;
  }
}

