/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

@font-face {
    font-family: 'Gotham Book';
    src: url('fonts/Gotham-Book.woff2') format('woff2'),
        url('fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2'),
        url('fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



:root {
  --bg-color: #f6f6f6; 
  --bg-color-vertical: #ffffff; 
  --angle: -12deg;      
  --radius: 40px;      
}

a {
  color:#01275f !important;
}

a:hover {
  color:#fcc230 !important;
}

blockquote {
  padding:20px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 20px;
}

.logo-rounded-tab {
  --r: 25px; 

  line-height: 1.8; 
  padding-inline: .5em;
  border-inline: var(--r) solid #0000;
  border-radius: 0 0 calc(2*var(--r)) calc(2*var(--r)) / var(--r);
  mask:
    radial-gradient(var(--r) at var(--r) 100%, #0000 98%, #000 101%)
      calc(-1*var(--r)) 0 / 100% var(--r) repeat-x,
    conic-gradient(#000 0 0) padding-box;
  background: #ffffff border-box;
  width: fit-content;
}


.card-container {
  width: 100%;
  height: 120px;
  overflow: hidden;    /* This clips the slanted bottom to make it flat */
  position: relative;
}

.slanted-card {
  width: 100%;
  height: 150%;        /* Make it taller so the bottom slant is hidden */
  background-color: var(--bg-color);
  border-radius: var(--radius);
  
  /* The Magic: Skew only the Y axis */
  transform: skewY(var(--angle));
  transform-origin: top right;
  
  position: absolute;
  top: 0;
  left: 0;
}

.slanted-card.verticals {
  background-color: var(--bg-color-vertical); 
}

.slanted-content {
  /* Counter-skew the content so it stays level */
  transform: skewY(calc(var(--angle) * -1));
  padding: 60px 40px;
  color: #333;
}

.haccordian .e-n-accordion-item[open]>.e-n-accordion-item-title {
  background-color: #fff5dc;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.haccordian .e-n-accordion-item >.e-n-accordion-item-title {
  background-color: #f0f0f0;
}

.haccordian .e-n-accordion > .e-n-accordion-item > .e-con {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  background-color: #fff5dc;
}

.home-menu a {
  color:#ffffff !important;

}

.product-tabs .elementor-icon-list-item a:nth-child(n+2) {
  color:#ffffff !important;
  background-color: #000000;
  border-radius: 30px;
  padding:5px 10px;
  white-space: nowrap;
}

.product-tabs .elementor-icon-list-item a:nth-child(n+2):hover {
  color:#01275F;
  background-color:#FCC230;
}

.breadcrumbs-container a {
  color:#ffffff !important;
}

.breadcrumbs-container .active a {
  color:#01275F !important;
  background: transparent !important;
  border: 1px solid #01275F;
}

.cls-1, .cls-2, .cls-3 {
  fill: #ffffff !important;
}

.icon.blue .cls-1, .icon.blue .cls-2, .icon.blue .cls-3 {
  fill: #01275F !important;
}

.unit-tabs .e-n-tabs .e-n-tabs-heading{
  border-bottom: 1px solid #01275F !important;
}

.icon.novaguard .cls-1 {
  fill: #a7dca5 !important;
}

.icon.novapreserv .cls-1 {
  fill: #be8df2 !important;
}

.icon.novasolve .cls-1 {
  fill: #4db9ea !important;
}

.icon.novakare .cls-1 {
  fill: #ff8fab !important;
}

.text.novaguard {
  color:#a7dca5;
}

.text.novapreserv {
  color:#be8df2;
}

.text.novasolve {
  color:#4db9ea;
}

.text.novakare {
  color:#ff8fab;
}

.button-sticky a {
  color:#ffffff !important;
  background-color:#01275F ;
}

.button-sticky a:hover  {
  color:#01275F !important;
  background-color:#FCC230 !important;
}


.btn-nova-primary a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #01275F;
  color: #ffffff !important;
  text-decoration: none;
  padding: 6px 6px 6px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  gap: 16px;
  transition: background-color 0.2s ease;
}

.btn-nova-primary a:hover {
  color:#01275F !important;
  background-color: #FCC230 !important;
}

.btn-nova-primary a:after {
  content: '\279C';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #e8e8e8;
  border-radius: 50%;
  color: #0d2560;
  font-size: 18px;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-nova-primary a:hover::after {
  background-color: #01275F;
  color:#FCC230;
  transform: translateX(2px);
}

/*Accordion*/

.accordion-card {
  transition: width 0.5s;
  overflow: hidden;
  height:500px;
}

.accordion-card .accordion-title h3 {
  height:40vh !important;
  transition: display 0.2s ease, transform 0.2s ease;
}

/*Desktop over 1024px*/
@media screen and (min-width: 1025px) {
  .expanded {
    width: 50% !important;
  }
}

.accordion-card.expanded  .accordion-title h3 {
  display: none;
}

.expanded:after {   
  content: '';
  background: #01275F;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

 /*Tablet below 1025px*/
 @media (max-width: 1024px) {
  .accordion-card {
    transition: height 0.5s;
    height: 100px;
  }

  .expanded {
     height: 500px !important;
  }
}

/* mobile, below 480px*/
@media (max-width: 480px) {
  .accordion-card {
    transition: height 0.5s;
    height: 100px;
  }

  .expanded {
     height: 350px !important;
  }
}
    
.inner-content {
  opacity: 0;
  transition: opacity 0s;
  z-index: 2;
}

.inner-content.active {
    opacity: 1;
    transition: opacity 0.5s 0.4s;
}

.inner-content .accordion-button a {
  border: 1px solid #ffffff !important;
  color:#ffffff !important;
  background: transparent !important;
}

.inner-content .accordion-button a:hover {
  color:#01275F !important;
  background: #ffffff !important;
}

.inner-content.active .accordion-arrow { 
  transform: rotate(-90deg);
}

.history-carousel .elementor-element:hover .history-year {
  background-color:#FCC230 !important;
} 

.history-carousel .elementor-element:hover .history-year h4{
  color:#01275F !important;
} 

.history-carousel .elementor-element:hover .history-data span.elementor-icon-list-text {
  color:#ffffff !important;
}

.history-carousel .elementor-element:hover .history-data .elementor-icon-list-icon svg {
  fill:#FCC230 !important;
}

.novapost-info .elementor-icon-list-item {
  background-color: #FAFAFA;
  margin:5px 0;
  padding:10px 20px;  
  border-radius: 30px;
}

.novapost-nav a span {
  background-color: #FAFAFA;
  border-radius: 30px;
  padding:5px 10px;
}

.novapost-nav a:hover span {
  background-color: #f0f0f0;
  color:#01275F;
}

.novapost-related article {
  background-color: #ffffff;
  border-radius: 20px;
  padding:10px !important;
}

.novapost-related article .elementor-post__thumbnail {
  border-radius: 10px !important;
  margin:5px !important;
}

.novapost-related article a {
  margin: 0px !important;
}

.novablog-list-container .novablog-info .elementor-icon-list-item {
  background-color:#01275F !important;
  border-radius: 20px;
  padding:5px 10px;
  display: inline-flex;
  margin:0;
}

.novablog-list-container .novablog-info .elementor-icon-list-item a {
  color: #ffffff !important;
  word-break: keep-all !important;
}

.doc-request-button a span {
  text-align: left;
}

.elementor.elementor .elementor-widget-n-menu.e-n-menu-tablet .e-n-menu-toggle {
  border-radius: 30px;
}

.mobile-menu .e-n-menu-heading{
  background-color: #fff;
  margin:0;
  padding:0;
}

.mobile-menu .e-n-menu-wrapper {
  padding-top: 20px;
}

.mobile-menu .e-n-menu-wrapper .e-n-menu-item {
  padding:4px 10px;
}

.pci-font-heading h1 {
  font-family: 'Gotham Book', 'Montserrat', sans-serif !important;
}

.pci-font-heading h1 sup {
  font-size: 50% !important;
  top: -1em !important;
}