@import url(./brand.css);

body {
    background: var(--white-color);
    color: var(--primary-color);
    font-size: var(--font-size-primary);
    line-height: 1.5; 
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    padding: 0;
}
.primary-fonts {
    font-family: var(--font-primary) !important;
}
.secondary-fonts {
    font-family: var(--font-secondary) !important;
} 
.primary-color {
    font-family: var(--primary-color) !important;
} 
.secondary-color {
    font-family: var(--secondary-color) !important;
} 
a {
    text-decoration: none;
    color: inherit;
}
*, ::after, ::before { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;  
}
:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}
b, strong {
    font-weight: 500;
}
ul, ol {
    margin: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.padd_row {
    padding: 100px 0;
}
.white_bg {
    background: var(--white-color);
}   
.light_bg {
    background: var(--light-bg);
}   
.dark_bg {
    background: var(--primary-color);
}     
p { 
    margin: 0 0 15px;
}
.sub_heading {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    line-height: 1.2;
    margin: 0 0 15px;
}
.dark_bg h1, .dark_bg .h1, .dark_bg h2, .dark_bg .h2, .dark_bg h3, 
.dark_bg .h3, .dark_bg h4, .dark_bg .h4, .dark_bg h5, .dark_bg .h5, 
.dark_bg h6, .dark_bg .h6, .dark_bg p { 
    color: var(--white-color); 
}
h1, .h1 {
    font-size: 70px;
}
h2, .h2 {
    font-size: 36px;
} 
h3, .h3 {
    font-size: 32px;
} 
h4, .h4 {
    font-size: 26px;
} 
h5, .h5 {
    font-size: 20px;
} 
h6, .h6 {
    font-size: 16px;
}  
.section_label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}
.link {
    font-family: var(--font-secondary);
    font-size: var(--btn-font-size);
    text-decoration: none; 
    display: inline-block;
    position: relative; 
    color: var(--primary-color);
    transition: all 0.3s ease;
} 
.link::before, .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    transform-origin: left;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    transform: scaleX(1);
}
.link::after {
    background-color: var(--secondary-color);
    transform: scaleX(0);
} 
.link:hover {
    text-decoration: none;
    color: var(--secondary-color);
}
.link:hover::after {
    transform: scaleX(1);
} 
.btn_style {
    display: inline-block;
    font-size: var(--btn-font-size);
    color: var(--white-color);
    background: var(--secondary-color);
    padding: 10px 30px 10px 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 1.1px;
    cursor: pointer;
    text-decoration: none;
    transition: all .6s;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    z-index: 1;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
}
.btn_style::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--white-color);
    z-index: -1;
    transition: width 0.4s ease;
} 
.btn_style:hover {
    color: var(--secondary-color); 
    border-color: var(--secondary-color);
    text-decoration: none;
}
.btn_style:hover::before {
    width: 100%;
}
.sepratorLine {
    height: 0.5px;
    width: 100%;
    background: var(--grey-color-v3);
}
.sepratorSpace {
    margin-top: 65px;
    margin-bottom: 65px;
}
.mob_img {
    display: none !important;
}
.max350 {
    max-width: 350px;
}
.max400 {
    max-width: 400px;
}
.max450 {
    max-width: 450px;
}
.max500 {
    max-width: 500px;
}
.max600 {
    max-width: 600px;
}
.max700 {
    max-width: 700px;
}
.max800 {
    max-width: 800px;
}
.max900 {
    max-width: 900px;
}
.max1920 {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.mt_30 {
    margin-top: 30px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mt_40 {
    margin-top: 40px;
}
.mb_50 {
    margin-bottom: 50px;
}
.my_75 {
    margin-top: 75px;
    margin-bottom: 75px;
}
.my_100 {
    margin-top: 100px;
    margin-bottom: 100px;
}
.mb_80 {
    margin-bottom: 80px;
}
.mt_50 {
    margin-top: 50px;
}
.mt_100 {
    margin-top: 100px;
}
.pt_50 {
    padding-top: 50px;
}
.pb_50 {
    padding-bottom: 50px;
}
.py_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.py_130 {
    padding-top: 130px;
    padding-bottom: 130px;
}
.pt_100 {
    padding-top: 100px;
} 
.pb_100 {
    padding-bottom: 100px;
} 
.pb_200 {
    padding-bottom: 200px;
} 
.home_wrap, .inner_page {
    max-width: 2800px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}
.footer {
    /* color: var(--footer-txt-color); */
    color: var(--white-color);
    font-size: 13px; 
}
.cust_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.cust_pagination .pagination-btn {
    display: inline-block;
    font-size: 15px;
    padding: 6px 13px;
    border: 1px solid #ddd;
    border-left: 0;
    text-decoration: none;
    color: var(--secondary-color);
    background: #f8f8f8;
}
.cust_pagination .pagination-btn:hover {
    color: var(--secondary-color);
}
.cust_pagination .pagination-btn:first-child {
    border-left: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
}
.cust_pagination .pagination-btn:last-child {
    border-radius: 0 8px 8px 0;
}
.cust_pagination .pagination-btn.active {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}
.cust_pagination .pagination-btn.active:hover{
    color: var(--white-color);
}
.cust_pagination .pagination-btn .ellipsis {
    display: inline-block;
    line-height: 1;
    vertical-align: top;
}
.cust_pagination .pagination-btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    color: var(--secondary-color) !important;
}  
.cust_pagination_extraTop {
    margin-top: 90px !important;
} 
/* stripe line */
.stripe_wrapper {
    width: 100%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
}
.stripe_wrapper.light_bg {
    background-color: var(--light-color-v2);
}
.stripe_wrapper.rightSide {
    display: flex;
    justify-content: flex-end;
}
.stripe_line {
    width: 25%;
    height: 12px; 
    background: repeating-linear-gradient(
        45deg,
        var(--white-color) 0,
        var(--white-color) 10px,
        var(--secondary-color) 10px,
        var(--secondary-color) 20px
    ); 
    background-size: 28px 28px; 
    animation: smoothStripe 3s linear infinite;
}
.stripe_wrapper p {
    font-size: 21px;
    padding-left: 20px;
    line-height: normal;
    margin-bottom: 0;
}
.stripe_line.grey_stripe {
    background: repeating-linear-gradient(
        45deg,
        var(--white-color) 0,
        var(--white-color) 10px,
        var(--light-color-v2) 10px,
        var(--light-color-v2) 20px
    );
}
.stripe_line.grey_orange {
    background: repeating-linear-gradient(
        45deg,
        var(--light-color-v2) 0,
        var(--light-color-v2) 10px,
        var(--secondary-color) 10px,
        var(--secondary-color) 20px
    );
}
.stripe_line.stripe_45 {
    width: 45%;
}

@keyframes smoothStripe {
    to {
        background-position: 28px 0;
    }
}
 
.border_btm {
    border-bottom: 1px solid var(--grey-color-v3);
}
.mb_btm_heading {
    margin-bottom: 40px;
}
.mb_row_60 {
    margin-bottom: -60px;
}
.mb_row_60 [class*='col-'] {
    margin-bottom: 60px;
}
.fontMedium {
    font-weight: 500;
}
.fontNormal {
    font-weight: 400;
}
.stripe_image_wrapper {
    position: relative;
}
.stripe_image_wrapper::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 44px;
    height: 44px;
    border-left: 2px solid var(--light-color-v4);
    border-bottom: 2px solid var(--light-color-v4);
}
.stripe_image_wrapper::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 44px;
    height: 44px;
    border-top: 2px solid var(--light-color-v4);
    border-right: 2px solid var(--light-color-v4);
}
.stripe_image_wrapper .stripe_wrapper.stripe_top {
    position: absolute;
    right: 23px;
    top: -30px;
    max-width: 268px;
}
.stripe_image_wrapper .stripe_wrapper.stripe_bottom {
    position: absolute;
    left: 23px;
    bottom: -30px;
    max-width: 268px;
}
.stripe_image_wrapper .stripe_wrapper .stripe_line {
    width: 100%;
}
.highlightedTxt {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.highlightedTxt::before {
    content: "";
    height: 13px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
    z-index: -1;
}
.fontMd {
    font-size: 21px;
    font-weight: 500;
}
.font-weight-semibold { 
    font-weight: 600 !important; 
}
.mt_75 {
    margin-top: 75px;
}
.font14 {
    font-size: 14px;
}
.borderedImg {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}
.dashLeftBorder { 
    padding-left: 8px;
    border-left: 2px dashed #FF8200;
}
.roundedFull, .roundedFull img {
    border-radius: 100%;
}
.radialBgSec {
    position: relative;
    overflow: hidden;
}
.radialBg {
    position: absolute;
    width: 750px;
    height: 550px;
    right: -250px;
    bottom: -250px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 130, 0, 0.25) 0%,
        rgba(255, 130, 0, 0.15) 30%,
        rgba(255, 130, 0, 0.08) 50%,
        rgba(255, 130, 0, 0.03) 70%,
        transparent 100%
    );
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}
.radialBg.bottomLeft {
    left: -250px;
    right: auto;
}
.radialBg.topRight {
    top: -250px;
    bottom: auto;
}
.radialBg.topLeft {
    top: -250px;
    left: -250px;
    bottom: auto;
    right: auto;
}
.containerInner {
    position: relative;
    z-index: 2;
}
.bdrWithSpace80 {
    margin: 80px 0;
    border: 0.5px solid var(--grey-color-v3);
}

/* Gradient Animation Background */

.gradientBg { 
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1; 
    filter: blur(35px); 
    opacity: 0.4; 
    background-image: radial-gradient(circle at 50% 50%,
        rgba(255, 130, 0, 0.45) 0%,
        rgba(255, 130, 0, 0.20) 10%,
        rgba(255, 130, 0, 0.05) 20%,
        transparent 35%
    ); 
    background-size: 200% 200% !important;  
    background-position: 0% 0%; 
    animation: gradientFlow 22s ease-in-out infinite; 
}

@keyframes gradientFlow { 
    0% {
        background-position: 0% 0%;       /* Top Left corner */
    }
    25% {
        background-position: 100% 0%;     /* Top Right corner */
    }
    50% {
        background-position: 100% 100%;   /* Bottom Right corner */
    }
    75% {
        background-position: 0% 100%;     /* Bottom Left corner */
    }
    100% {
        background-position: 0% 0%;       /* Returns to Top Left */
    }
}

.gradientBg_ylw {
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.50) 20%,
        rgba(255, 130, 0, 0.30) 45%,
        rgba(255, 130, 0, 0.09) 75%,
        transparent 100%
    );  
    opacity: 0.5;
    background-size: 200% 200%; 
    animation: gradientFlow2 12s ease-in-out infinite; 
} 
@keyframes gradientFlow2 {
    0% {
        /* Starts localized over on the bottom left zone */
        background-position: 15% 65%;
    }
    25% {
        /* Glides the white core deeply over to the upper right side */
        background-position: 85% 20%; 
    }
    50% {
        /* Settles lower down on the right side area */
        background-position: 90% 75%;
    }
    75% {
        /* Swings back across towards the left side boundary */
        background-position: 30% 80%;
    }
    100% {
        /* Loops cleanly right back to the start point */
        background-position: 15% 65%;
    }
}

.orangeDashedBox {
    border: 2px dashed #FF8200;
    padding: 20px 55px;
    max-width: 400px;
    text-align: center;
}
.orangeDashedBox .dashedCont {
    font-size: 16px;
    color: #282828;
    max-width: 250px;
    margin: 0 auto;
    margin-top: 16px;
    text-transform: uppercase;
}
.orangeDashedBox .dashedCont .dashText2 {
    font-size: 27px;
    color: #FF8200;
    font-weight: 600;
}
.orangeDashedBox .dashedCont strong {
    font-weight: 700;
}
.wrapPatrn_boxes {
    position: relative;
}
.wrapPatrn_boxes::before, 
.wrapPatrn_boxes::after {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: 36px;
    height: 36px;
    border: 6px solid var(--secondary-color); 
}
.wrapPatrn_boxes::before {  
    border-width: 6px 0 0 6px;  
} 
.wrapPatrn_boxes::after { 
    border-width: 0 6px 6px 0; 
    bottom: -14px;
    right: -14px;
    top: auto;
    left: auto;
}  
.font50 {
    font-size: 50px;
}