:root {--primary-color: #446084;}
html{
  background-image: url('<{$template_path}>/wp-content/uploads/2025/08/background-rr88.webp');
}

.header-main{
  height: 90px
}

#logo img{
  max-height: 90px
}

#logo{
  width:200px;
}

.header-bottom{
  min-height: 55px
}

.header-top{
  min-height: 30px
}

.transparent .header-main{
  height: 90px
}

.transparent #logo img{
  max-height: 90px
}

.has-transparent + .page-title:first-of-type,
.has-transparent + #main > .page-title,
.has-transparent + #main > div > .page-title,
.has-transparent + #main .page-header-wrapper:first-of-type .page-title{
  padding-top: 140px;
}

.header.show-on-scroll,
.stuck .header-main{
  height:70px!important
}

.stuck #logo img{
  max-height: 70px!important
}

.search-form{
  width: 60%;
}

.header-bottom {
  background-color: #2b8eff
}

.header-bottom-nav > li > a{
  line-height: 16px 
}

@media (max-width: 549px) {
  .header-main{
    height: 70px
  }
  #logo img{
    max-height: 70px
  }
}

body{
  color: #000000;
  font-size: 100%;
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,.heading-font{
  color: #2b8eff;
  font-family: "Roboto Serif", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.banner h1,
.banner h2 {
  font-weight: 700;
  font-style: normal;
}

.nav > li > a {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mobile-sidebar-levels-2 .nav > li > ul > li > a {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.off-canvas-center .nav-sidebar.nav-vertical > li > a{
  font-family: "Roboto Serif", sans-serif;
}

.alt-font{
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400!important;
  font-style: normal!important;
}

.header:not(.transparent) .header-bottom-nav.nav > li > a{
  color: #ffffff;
}

#page-breadcrumbs {
  color: #2b8eff; 
}

#page-breadcrumbs a {
  color: #2b8eff; 
}

.header-button-1 .header-button a,
.header-button-2 .header-button a {
  color: #fff; 
  background: linear-gradient(to bottom, #FF0000 50%, #FFFF00); 
  height: 40px; 
  font-size: 16px; 
  display: inline-block; 
  position: relative; 
  text-decoration: none; 
  line-height: 40px; 
  text-align: center; 
  border-radius: 7px; 
  overflow: hidden; 
  transition: background 0.5s, color 0.5s; 
  animation: shockwave 2s infinite; 
}

.header-button-1 .header-button a:hover,
.header-button-2 .header-button a:hover {
  color: #FF0000; 
  background: linear-gradient(to bottom, #FFFF00 50%, #FF0000); 
}

.header-button-1 .header-button::before,
.header-button-1 .header-button::after,
.header-button-2 .header-button::before,
.header-button-2 .header-button::after {
  content: ""; 
  position: absolute; 
  inset: -10px; 
  border: 2px solid; 
  border-radius: 7px; 
  animation: clippath 3s infinite linear; 
}

.header-button-1 .header-button::before,
.header-button-2 .header-button::before {
  border-color: #ffce21; 
}

.header-button-1 .header-button::after,
.header-button-2 .header-button::after {
  border-color: #FF0000; 
  animation-delay: -1.5s; 
}

@keyframes clippath {
  0%, 100% { clip-path: inset(0 0 98% 0); } 
  25% { clip-path: inset(0 98% 0 0); } 
  50% { clip-path: inset(98% 0 0 0); } 
  75% { clip-path: inset(0 0 0 98%); } 
}

@keyframes shockwave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.bg{
  opacity: 0; 
  transition: opacity 1s; 
  -webkit-transition: opacity 1s; 
}

.bg-loaded{
  opacity: 1;
}

/* Image styles */
.img {
  width: 100%;
}

/* Gap element styles */
.gap-element {
  display: block;
  height: auto;
  padding-top: 30px;
}

/* 404 Page Styles */
:root {
    --primary-color: #e53e3e;
    --secondary-color: #3182ce;
    --accent-color: #38a169;
    --text-color: #333;
    --light-bg: #f9fafb;
    --border-radius: 8px;
}

.page-404 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-404 body {
    background: var(--light-bg);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-404 header {
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-404 .logo {
    max-width: 200px;
    height: auto;
}

.page-404 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-404 .error-code {
    font-size: 120px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.page-404 h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.page-404 p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
}

.page-404 .actions {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-404 .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-404 .btn:hover {
    background-color: #2c6cb0;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-404 .btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.page-404 .btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.page-404 .breadcrumb {
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.page-404 .breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-404 .breadcrumb a:hover {
    text-decoration: underline;
}

.page-404 footer {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.page-404 .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.page-404 .footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-404 .footer-links a:hover {
    text-decoration: underline;
}

.page-404 .copyright {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .page-404 .error-code {
        font-size: 80px;
    }
    
    .page-404 h1 {
        font-size: 24px;
    }
    
    .page-404 p {
        font-size: 16px;
    }
    
    .page-404 .btn {
        padding: 10px 20px;
        width: 100%;
    }
}