:root {

    /*==================================
      COLORS
    ==================================*/

    /* Primary */
    --color-primary-blue: #0136C9;

    /* Base */
    --color-white-70: rgba(255,255,255,.7);
    --color-white-30: rgba(255,255,255,.3);

    --base-black: #000000;
    --color-black-70: rgba(0,0,0,.7);
 
    /* Additional */
    --color-dark-red: #630000;
     
    /*==================================
      TYPOGRAPHY
    ==================================*/

    --font-primary: "Exo 2", sans-serif;

    /* Font Weight */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /*==================================
      FONT SIZE
    ==================================*/

    --primary-headeing: 63px;
    --fs-h2: 56px;
    --secondary-heding: 54px;

    --fs-stat-number: 50px;
    --fs-section-title: 36px;
    --fs-contact-title: 36px;
    --fs-package-title: 30px;

    --fs-notice: 24px;
    --fs-feature-card: 24px;

    --fs-feature-small: 20px;
    --fs-rule-label: 20px;
    --fs-card-title: 20px;

    --fs-button: 18px;
    --fs-placeholder: 18px;
    --fs-stat-label: 18px;

    --fs-nav: 16px;
    --fs-body: 16px;
    --fs-meta: 16px;
    --fs-caption: 16px;

    --mob-button-font: 14px;

    /*==================================
      BUTTON
    ==================================*/

    --button-skew: -8deg;
    --button-radius: 2px;

    /*==================================
      SPACING
    ==================================*/

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;

    /* Additional Section Spacing */
    --section-padding: 100px;
    --section-padding-bottom: 80px;
    --content-padding: 50px;

    /*==================================
      SIZES
    ==================================*/
    --content-width-small: 360px;
    --content-width-title: 400px;
    --content-width-medium: 510px;
    --content-width-large: 580px;
    --content-width-contact: 680px;

    /*==================================
      CONTAINER
    ==================================*/
    --container-padding: 15px;

    /*==================================
      BORDER RADIUS
    ==================================*/

    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 999px;

    /*==================================
      TRANSITION
    ==================================*/

    --transition: .3s ease-in-out;

    /*==================================
      SHADOW
    ==================================*/

    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,.12);
    --shadow-lg: 0 16px 40px rgba(0,0,0,.18);

    /*==================================
      GRADIENTS
    ==================================*/

    --gradient-border: linear-gradient(
        90deg,
        #0136C9 10%,
        #630000 100%
    );

    --gradient-email: linear-gradient(
        90deg,
        #ff002b 0%,
        #ff1d25 30%,
        #ff3b1f 65%,
        #ff6a2d 100%
    );
}
/* ==========================
   HEADER
========================== */
.btn-wrp ul {
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: center;
	margin:0;
	padding:0;
}

.primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px; 
    overflow: hidden;
    background: var(--color-primary-red);
    color: var(--color-white) !important;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: var(--fs-button);
    font-weight: var(--fw-bold);
    line-height: var(--lh-button);
    font-style: italic;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    transition: color var(--transition);
    z-index: 1;
}
ul {
    list-style: none !important;
}
 .primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #6E0010;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: -1;
}

 .primary-btn:hover::before {
    transform: scaleX(1);
}

.secondary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px; 
    overflow: hidden;
        background: #373233;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-size: var(--fs-button);
    font-weight: var(--fw-bold);
    line-height: var(--lh-button);
    font-style: italic;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    transition: color var(--transition);
    z-index: 1;
}
 .secondary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
	 background: var(--color-gray);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: -1;
}

 .secondary-btn:hover::before {
    transform: scaleX(1);
}

.tertiary-btn {
position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
       padding: 14px 40px; 
    overflow: hidden;
    background: var(--color-primary-blue);
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: var(--fs-button);
    font-weight: var(--fw-bold);
    line-height: var(--lh-button);
    font-style: italic;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    transition: color var(--transition);
    z-index: 1;
}
 .tertiary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
	 background: #00217D;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: -1;
}

 .tertiary-btn:hover::before {
    transform: scaleX(1);
}
.btn-spacer {
    margin: 50px 0 0;
	padding:0;
}
.blue-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(100%, 600px);
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #011096 20%, #011096 50%, #011096 80%, transparent);
    filter: blur(0.5px);
}
.red-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(100%, 500px);
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 1, 30, 0.4) 10%, #C9011E 50%, rgba(201, 1, 30, 0.4) 90%, transparent 100%);
    filter: blur(0.5px);
}
.border-wrp {
    border-bottom: 1px solid #1F1F1F !important;
}

/*Loader*/
.site-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--base-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid var(--color-white);
    border-top-color: var(--color-primary-red);
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

 #mobile-header {
	 display:none;
 }
#masthead {
    background: var(--base-black);
    padding: 0;
    border: none;
    position: sticky;
    top: 0;
    z-index: 99;
}
#mobile-header .nav-list > li > a {
    position: relative;
    padding-bottom: 5px !important;
}

#mobile-header .nav-list > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary-red);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

#mobile-header .nav-list > li > a:hover::after,
#mobile-header .nav-list > li.current-menu-item > a::after,
#mobile-header .nav-list > li.current_page_item > a::after {
    transform: scaleX(1);
}
.site-header {
    padding: 10px 0;
}
 
/* ==========================
   LOGO
========================== */
.navbar-brand {
    margin: 0 !important;
	outline:none !important;
}
.header-logo-wrp{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-wrp img{
    width: 80px;
    height: 80px;
    display: block;
}

/* ==========================
   MENU WRAPPER
========================== */

.header-menu-wrp{
    display: flex;
    align-items: center;
    height: 100%;
}

.left-menu{
      justify-content: start;
}

.right-menu{
   justify-content: right;
}
/* ==========================
   Title Highlight
========================== */
.hero-title-highlight {
    color: var(--color-primary-red);
    font-style: italic;
	    background: linear-gradient(90deg, #FC0125 0%, #FD4117 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title h1{
    margin: 0;
    padding: 0;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--primary-headeing);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
	    display: flex;
    flex-direction: column;
}
.section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--fs-nav);
    font-weight: var(--fw-medium);
    line-height: var(--lh-nav);
    text-transform: uppercase;
    letter-spacing: 0;
    font-style: italic;
}
.section-subtitle::before,
.section-subtitle::after {
    content: "";
    width: 28px;
    height: 14px;
    background: url('/wp-content/themes/import-evolution/assets/images/red-marker.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
/* ==========================
   NAVIGATION
========================== */
.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-item{
    display: flex;
    align-items: center;
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: var(--fs-nav);
    font-weight: var(--fw-medium);
    line-height: var(--lh-nav);
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--color-white) !important;
    transition: color .35s ease;
}
/* Underline */

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100% !important;
    height: 1px;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}
.hero-title h2 {
    margin: 0;
    padding: 0;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}
/* Hover */

.nav-link:hover{
    color: var(--color-white) !important;
}
/* Hover */
.nav-link:hover::after,
.nav-link:focus-visible::after{
    transform: scaleX(1);
}
.nav-link:hover::after{
    width: 100%;
}

/* Focus */

.nav-link:focus{
    outline: none !important;
}
.header-logo-wrp img:focus{
    outline: none !important;
}

.nav-link:focus-visible::after{
    width: 100%;
}

/* Active */

.nav-link.active,
.current-menu-item > .nav-link,
.current_page_item > .nav-link{
    color: var(--color-primary-red) !important;
}

.nav-link.active::after,
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after,
.current-menu-ancestor > .nav-link::after{
    width: 100%;
    background: var(--color-primary-red);
}
.nav-link.active::after,
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after{
    background: var(--color-primary-red);
    transform: scaleX(1);
}
/* Visited */

.nav-link:visited{
    color: inherit;
}
#hamburgerBtn:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Newslatter Css */

@media only screen and (max-width:1024px){
   #mobile-header {
        display: block;
        padding: 20px 0;
    }

    #desktop-header {
        display: none;
    }

    #mobileMenu nav {
        padding-top: 20px;
    }

    /* Mobile menu list */
    #mobile-header .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        margin: 0;
        padding: 0;
    }

    /* Mobile menu items */
    #mobile-header .nav-list > li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Mobile menu links */
    #mobile-header .nav-list > li > a {
        display: inline-block;
        color: var(--color-white) !important;
        font-family: var(--font-primary);
        font-size: var(--fs-nav);
        font-weight: var(--fw-medium);
        text-decoration: none !important;
        text-transform: uppercase;

        border: 0;
        background: transparent;

        transition: color .3s ease, border-color .3s ease;
    }

    /* Remove blue visited color */
    #mobile-header .nav-list > li > a:visited {
        color: var(--color-white) !important;
    }

    /* Mobile Hover */
#mobile-header .nav-list > li > a:hover {
    color: var(--color-white) !important;
}

#mobile-header .nav-list > li > a:hover::after {
    background: var(--color-white) !important;
    transform: scaleX(1);
}

    /* Mobile Active */
    #mobile-header .nav-list > li.current-menu-item > a,
    #mobile-header .nav-list > li.current_page_item > a,
    #mobile-header .nav-list > li.current-menu-ancestor > a {
        color: var(--color-primary-red) !important;
    }

    /* Mobile Focus */
    #mobile-header .nav-list > li > a:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    /* Existing menu slider */
    .mob-menu-slider {
        position: fixed;
        border: 0;
        top: 0;
        height: 100%;
        background: #000;
        left: -40em;
        width: 70%;
        padding: 40px !important;
        transition: 0.5s;
    }

    .mob-menu-slider.active {
        left: 0;
    }

    .header-logo-wrp {
        justify-content: start;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: end;
    }

    .header-logo-wrp img {
        width: 50px;
    }

    .hamburger-btn {
        width: 44px;
        height: 44px;
        border: 2px solid var(--color-primary-red);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        padding: 0;
    }

    .hamburger-line {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--color-primary-red);
        left: 50%;
        top: 50%;
        margin: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger-line:nth-child(1) {
        transform: translate(-50%, -7px);
    }

    .hamburger-line:nth-child(2) {
        transform: translate(-50%, 0);
    }

    .hamburger-line:nth-child(3) {
        transform: translate(-50%, 7px);
    }

    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .hamburger-btn:hover,
    .hamburger-btn:active {
        border: 2px solid var(--color-primary-red) !important;
    }

    .hamburger-btn:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .header-logo-wrp img {
        height: 100% !important;
    }
	.hero-title h1{
    font-size: 50px;

}
}
@media only screen and (max-width:767px){
.primary-btn, .secondary-btn, .tertiary-btn{
    font-size: var(--mob-button-font);
	min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: block;
	clip-path: polygon(5% 0, 100% 0, 94% 100%, 0 100%);
 
}
    .hero-title h1{
        font-size: 40px;
		text-align:center;
    }
	.hero-title h2 {
        font-size: var(--fs-section-title);
    }
.header-logo-wrp img {
    height: 100% !important;
}
}