@charset "utf-8";

/*************** DEFAULT CSS ***************/
@font-face {
    font-family: 'ITCAvantGardeGothicStdDemi';
    src: url('../fonts/ITCAvantGardeGothicStdDemi.eot');
    src: url('../fonts/ITCAvantGardeGothicStdDemi.eot') format('embedded-opentype'),
        url('../fonts/ITCAvantGardeGothicStdDemi.woff2') format('woff2'),
        url('../fonts/ITCAvantGardeGothicStdDemi.woff') format('woff'),
        url('../fonts/ITCAvantGardeGothicStdDemi.ttf') format('truetype'),
        url('../fonts/ITCAvantGardeGothicStdDemi.svg#ITCAvantGardeGothicStdDemi') format('svg');
}

@font-face {
    font-family: 'itcavantgardestdmd';
    src: url('../fonts/itcavantgardestdmd.eot');
    src: url('../fonts/itcavantgardestdmd.eot') format('embedded-opentype'),
        url('../fonts/itcavantgardestdmd.woff2') format('woff2'),
        url('../fonts/itcavantgardestdmd.woff') format('woff'),
        url('../fonts/itcavantgardestdmd.ttf') format('truetype'),
        url('fonts/itcavantgardestdmd.svg#itcavantgardestdmd') format('svg');
}

:root {
    --body-font: 'itcavantgardestdmd', sans-serif;
    --body-font-size: 16px;
    --body-color: #000;
    --primary-color: #3552a3;
    --secondary-color: #f05f24;
    --black: #000;
    --white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #E7E7E7;
	--grey-dark: #6D6D6D;
    --font-demi: 'ITCAvantGardeGothicStdDemi', sans-serif;
    --logo-show: 7;
	--gradient:linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	--tertiary-color: #324558;
	--quaternary-color:#25394D;	

}

body {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    color: var(--body-color);
    text-decoration: none;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #000;
    color: #fff;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

p {
    margin: 0 0 20px 0;
    clear: left;
    padding: 0;
    line-height: 24px;
}

ul {
    padding: 0px;
    margin: 0 0 25px;
}

ul li {
    list-style: none;
}

/******* Headings Style *******/
h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: normal;
}

hr {
    margin: 40px 0 60px 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
    width: 100%;
    position: relative;
}

img {
    border: 0;
    max-width: 100%;
}

a img {
    border: 0;
}

/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
    width: 100%;
    height: 100%;
    background-image: url(../images/cybraum-logo.svg);
    background-position: center;
    background-repeat: no-repeat;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/*************** COLUMS AND ROWS ***************/
main {
    position: relative;
}

.row {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.justify-content-flex-end {
    justify-content: flex-end
}

.section-spacing {
    padding: 100px 0;
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px;
    width: 100%;
}

.clearfix {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    display: block;
}

.container {
    width: 1500px;
    margin: 0 auto;
}

.fullwidth {
    width: 100%;
    display: block;
}

.two-col {
    flex: 0 0 48%;
}

.three-col {
    flex: 0 0 31%;
}

.four-col {
    flex: 0 0 22%;
}

section {
    width: 100%;
    display: block;
    position: relative;
}

aside {
    flex: 0 0 25%;
    margin: 0;
    padding: 0;
}

summary {
    flex: 0 0 70%;
    margin: 0;
    padding: 0;
}

.list {
    padding: 0px;
    margin: 0 0 25px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.list li {
    list-style: none;
    color: #3a4455;
    padding:10px 0 10px 22px;
    margin-bottom:0;
    line-height: 24px;
    position: relative;
	border-bottom:1px solid #ccc;
	
}

.list li:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 15px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #F06022;
}

.list li a {
    color: #3a4455;
}

.list-02 li:after {}

.text-center {
    text-align: center;
}

.scrollwrap {
    width: calc(50vw + 680px);
    overflow: hidden;
}

.scrollwrap-left {
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.gap-1 {
    gap: 1%
}

.gap-2 {
    gap: 2%
}

.gap-3 {
    gap: 3%
}

.gap-4 {
    gap: 4%
}

.gap-5 {
    gap: 5%
}

.gap-10,
.gap-20,
.gap-30,
.gap-40,
.gap-50,
.gap-60,
.gap-70,
.gap-80,
.gap-90,
.gap-100 {
    display: flex;
    width: 100%;
    height: 10px;
}

.gap-20 {
    height: 20px;
}

.gap-30 {
    height: 30px;
}

.gap-40 {
    height: 40px;
}

.gap-50 {
    height: 50px;
}

.gap-60 {
    height: 60px;
}

.gap-70 {
    height: 70px;
}

.gap-80 {
    height: 80px;
}

.gap-90 {
    height: 90px;
}

.gap-100 {
    height: 100px;
}

.m-b-0 {
    margin-bottom: 0px;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-35 {
    margin-bottom: 35px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-45 {
    margin-bottom: 45px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.button-style a,
.button-style-span {
    position: relative;
    background-color: #2345a5;
    color: var(--white);
    font-size: 12px;
    padding: 16px 56px 16px 25px;
    border-radius: 0;
    display: inline-block;
    font-family: var(--font-demi);
    text-transform: uppercase;
    max-width: 230px;
    width: 100%;
}

.button-style a:after,
.button-style-span:after {
    color: var(--white);
    content: "\f054";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    right: 20px;
    position: absolute;
    top: 10px;
    line-height: 28px;
    border-radius: 50px;
    text-align: center;
    transition: .3s ease-in-out;
    transform: rotate(1deg);
    font-size: 15px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.button-style a:hover,
.button-style-span:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.button-style a:hover:after,
.button-style-span:hover:after {
    transform: rotate(328deg);
}

.button-style-02 a {
    background-color: var(--secondary-color)
}

.button-style-02 a:hover {
    background-color: #294183;
}

.button-style-width-auto a {
    max-width: auto;
    width: auto;
}

.button-style-span-02 {
    background-color: var(--secondary-color);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.button-style-span-02:hover {
    background-color: var(--primary-color);
}

.button-style-width-auto {
    max-width: initial;
    width: auto;
}

/*************** PAGE CSS ***************/
header {
    padding: 12px 0px;
    background-color: var(--white);
    border-bottom: 1px solid #e7ebf0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    top: -100px;
	
}
header .container{
	width:100% !important;
	 
	}
.logo {
    line-height: 0px;
	padding-left:20px;
}

.logo img {
    width: 162px;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

.right-header {
    display: flex;
    gap: 25px;
    align-items: center;
	padding-right:20px;
}

.btn-get-demo {
    font-size: 12px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 50px 15px 20px;
    position: relative;
    font-family: var(--font-demi);
}

.btn-get-demo:after {
    position: absolute;
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    right: 20px;
    top: 15px;
    font-size: 16px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn-get-demo:hover:after {
    transform: rotate(359deg);
}

.login-btns a {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: var(--font-demi);
}

.login-btns .btn-sign-up {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    color: var(--white);
    margin-left: 12px;
}

.login-btns a:hover {
    color: var(--primary-color);
}

.login-btns .btn-sign-up:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-get-demo:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.fixed-chat-links-r-b {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 9
}

.whatsapp-chat-box {
    position: relative;
}

.whatsapp-chat-box h5 {
    right: 45px;
    opacity: 0;
    font-size: 14px;
    margin: 6px 0 0;
    line-height: 18px;
    z-index: 0;
    color: #424242;
    padding: 10px 10px 8px;
    position: absolute;
    /* font-weight: 500; */
}

.whatsapp-chat-box h5 {
    width: 140px;
    top: -8px;
    background-color: #ededed;
    border-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .2);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2db742;
    border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    z-index: 1;
    position: relative;
    width: 50px;
    height: 50px;
}

.whatsapp-icon i {
    color: var(--white);
    font-size: 29px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.whatsapp-chat-box:hover h5 {
    right: 52px;
    opacity: 1
}

.whatsapp-chat-box:hover .whatsapp-icon i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.home-banner {
    padding: 100px 0px;
    background-color: #f8f9fb;
}

.home-banner-wrap {
    display: flex;
    justify-content: space-between;
    height: 500px;
}

.home-banner-left {
    flex: 0 0 50%;
}

.home-banner-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.home-banner-left h1 {
    font-size: 50px;
    font-family: var(--font-demi);
}

.home-banner-left p {
    font-size: 24px;
    line-height: normal;
}

.bnt-elmnt-img {
    position: absolute;
    top: -35px;
    right: 18%;
}

.bnt-elmnt-1 {
    z-index: 1;
}

.bnt-elmnt-2 {
    top: auto;
    right: 0;
    bottom: -10px;
    z-index: 1;
}

.bnt-elmnt-3 {
    right: 58%;
    top: 12%;
}

.bnt-elmnt-4 {
    right: 58%;
    top: 40%;
}

.bnt-elmnt-5 {
    right: 4%;
    top: 20%;
}

.bnt-elmnt-6 {
    top: auto;
    bottom: 32%;
}

.banner-product-wrap {
    display: flex;
    gap: 1.5%;
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.bnr-prdct-box {
    border: 1px solid #e7e7e7;
    padding: 30px;
    background-color: var(--white);
    position: relative;
    flex: 0 0 18.81%;
}

.bnr-prdct-box h6 img,
.bnr-prdct-box h3,
.bnr-prdct-box p {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.bnr-prdct-box:hover h6 img {
    filter: brightness(0) invert(1);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.bnr-prdct-box h3 {
    font-size: 22px;
    font-family: var(--font-demi);
    margin-bottom: 15px;
}

.bnr-prdct-box p {
    color: #3f3f3f;
    font-size: 14px;
    margin-bottom: 0px;
}

.bnr-prdct-box:hover {
    box-shadow: 0px 12px 20px rgba(0, 0, 0, .10);
    -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, .10);
    -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, .10);
}

.bnr-prdct-box:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: var(--primary-color);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.bnr-prdct-box:hover:after {
    height: 100%;
}

.bnr-prdct-box h3,
.bnr-prdct-box p,
.bnr-prdct-box h6 {
    position: relative;
    z-index: 1;
}

.bnr-prdct-box:hover h3,
.bnr-prdct-box:hover p {
    color: var(--white);
}

.all-in-one {
    padding: 80px 0px;
    background-color: var(--primary-color);
}

.all-in-one-wrap {
    display: flex;
    gap: 25px 3%;
}

.all-in-one-left {
    flex: 0 0 60%;
    display: flex;
    gap: 25px 5%;
}

.all-in-one-left h6 {
    font-size: 16px;
    font-family: var(--font-demi);
    color: var(--white);
}

.heading {
    font-size: 46px;
    font-family: var(--font-demi);
    color: var(--body-color);
}
.heading-large{
	font-size:70px !important;
}
.all-in-one-right {
    flex: 0 0 37%;
    padding: 70px;
    background-color: #2b4595;
    margin-top: -140px;
}

.all-in-one-right h2 {
    color: var(--white);
}

.all-in-one-right p {
    color: var(--white);
    margin-bottom: 20px;
}

.all-in-btn-wrap {
    padding-top: 30px;
    border-top: 1px solid rgb(255, 255, 255, .3);
    display: flex;
    align-items: flex-start;
    gap: 20px 8%;
}

.all-in-btn-right h6 {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
}

.all-in-one-left-inn-img {
    flex: 0 0 84px;
    position: relative;
    text-align: right;
}

.all-in-one-img-1,
.smrt-prodt-list-img-1,
.testi-elmnt-3 {
    animation: floatUpDown 4s ease-in-out infinite;
}

.all-in-one-img-2,
.smrt-prodt-list-img-2,
.testi-elmnt-1,
.testi-elmnt-2 {
    margin-top: -20px;
    animation: floatUpDown 4s ease-in-out infinite 1.5s;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        -webkit-transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    100% {
        transform: translateY(0);
    }
}

.all-in-one-left-inn-cnt {
    color: var(--white);
}

.all-in-one-left-inn-cnt h2 {
    color: var(--white);
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
}

.logo-img {
    flex: 0 0 calc(100% / var(--logo-show));
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img img {
    transition: .3s;
}

.logo-img img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brnd-slider {
    padding: 80px 0px;
    background-color: #f8f9fb;
}

.head-cap {
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 35px;
}

.head-cap:after {
    position: absolute;
    content: '';
    width: 60px;
    height: 1px;
    background-color: #f4c41e;
    bottom: 0px;
    left: 50%;
    margin-left: -30px;
}

.smrt-prodt-list {
    padding: 100px 0px;
    background-image: url(../images/bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.smrt-prodt-list:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    bottom: 0px;
    left: 0;
    opacity: .4;
    top: 0px;
}

.smrt-prodt-list-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 25px 13%;
}

.smrt-prodt-list-left {
    flex: 0 0 30%;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 25px;
}

.smrt-prodt-list-left .heading {
    color: var(--white);
}

.smrt-prodt-list-left h6 {
    font-size: 20px;
    line-height: 30px;
}

.smrt-prodt-list-inn {
    background: linear-gradient(45deg, rgba(255, 66, 0, 0.5) 0%, rgba(244, 196, 30, 0.5) 100%);
    padding: 30px;
}

.smrt-prodt-list-inn .list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: inherit;
    margin-bottom: 0px;
}

.smrt-prodt-list-inn .list li {
    color: var(--white);
    flex: 0 0 50%;
}

.smrt-prodt-list-inn .list li:nth-child(5):after {
    border-left: 12px solid #ff4200;
}

.smrt-prodt-list-inn .list li:nth-child(6):after {
    border-left: 12px solid #ff4200;
}

.smrt-prodt-list-inn .list li:nth-child(7):after {
    border-left: 12px solid #ff4200;
}

.smrt-prodt-list-inn .list li:nth-child(8):after {
    border-left: 12px solid #ff4200;
}

.smrt-prodt-list-right {
    position: relative;
    margin-top: -80px;
}

.smrt-prodt-list-img-2 {
    position: absolute;
    left: 130px;
    top: 80%;
}

.contact-section-hm {
    background-color: var(--primary-color);
    padding: 50px 0px;
}

.contact-section-hm-wrap {
    display: flex;
}

.contact-section-hm-wrap a {
    flex: 0 0 20%;
    display: flex;
    gap: 20px;
    color: var(--white);
    border-left: 1px solid rgba(226, 226, 226, .3);
    align-items: center;
    padding: 12px 0 12px 20px;
}

.contact-section-hm-wrap a:first-child {
    padding-left: 0px;
    border-left: none;
}

.contact-section-hm-wrap a h5 {
    margin-bottom: 0px;
}

.contact-section-hm-wrap a h5 img {
    position: relative;
    top: 0px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.cnt-hm-dtl h6 {
    font-size: 12px;
    font-family: var(--font-demi);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cnt-hm-dtl h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.contact-section-hm-wrap a:hover h5 img {
    top: -8px
}

.testimonials {
    padding: 100px 0px;
}

.testimonials-wrap {
    display: flex;
    background-color: #f8f9fb;
    padding: 100px 70px 25px;
    outline: 1px solid #d0d7e9;
    outline-offset: -20px;
    justify-content: space-between;
}

.testimonials .heading {
    margin-bottom: 45px;
}

.testimonials-left {
    flex: 0 0 60%;
    display: flex;
    gap: 22px;
}

.tsti-icon {
    flex: 0 0 51px;
    height: 51px;
    color: var(--white);
    font-size: 70px;

    background: linear-gradient(45deg, rgba(255, 66, 0, 1) 0%, rgba(244, 196, 30, 1) 100%);
    border-radius: 50px;
    text-align: center;
    line-height: 88px;
    font-family: Arial, Helvetica, sans-serif;
}

.tsti-cnt p {
    font-size: 18px;
    line-height: 28px;
}

.tsti-cnt h4 {
    font-size: 18px;
    font-family: var(--font-demi);
    color: var(--primary-color);
    line-height: 26px;
    margin-bottom: 0;
}

.tsti-cnt h4 span {
    display: block;
    font-size: 14px;
    font-family: var(--body-font);
    color: var(--black);
}

.testimonials-right {
    flex: 0 0 35%;
    margin-top: -205px;
    position: relative;
}

.testi-img {
    position: relative;
    z-index: 1;
}

.testi-elmnt {
    position: absolute;
    left: -70px;
    bottom: 12%;
}

.testi-elmnt-1 {
    left: auto;
    right: -22px;
    bottom: auto;
    top: 39px;
}

.testi-elmnt-3 {
    bottom: auto;
    top: 0px;
    left: 25%;
}

.counter-section {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}

.counter-section li {
    list-style: none;
    flex: 0 0 45%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 28px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255, 255, 255, .4);
}

.counter-section li h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 0;
    font-family: var(--font-demi);
}

.counter-section li:after {
    position: absolute;
    content: '';
    background-image: url(../images/icons/ribbon.svg);
    width: 18px;
    height: 20px;
    right: 25px;
    top: 0px;
    background-size: cover;
}

.counter-section p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--white);
    flex: 0 0 38%;
}

.funfact-numbers {
    background-color: var(--primary-color);
    background-image: url(../images/bg2.png);
    background-repeat: no-repeat;
    background-position: bottom left 34%;
    padding: 100px 0px;
}

.funfact-numbers-wrap {
    display: flex;
    justify-content: space-between;
}

.funfact-left {
    flex: 0 0 42%;
    padding-top: 25px;
}

.funfact-left .heading {
    color: var(--white);
}

.funfact-left p {
    color: var(--white);
}

.funfact-right {
    flex: 0 0 45%;
}

.team-image {
    line-height: 0px;
}

.team-image:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .2;
    top: 0;
    left: 0;
}

.team-image img {
    filter: grayscale(100%);
}

.why-choose-us-outer {
    padding: 100px;
    background-color: var(--white);
    margin-top: -100px;
}

.why-choose-us-outer h6,
.articles h6 {
    font-size: 24px;
    margin-bottom: 54px;
}

.why-choose-us-wrap {
    display: flex;
    gap: 25px 2%;
}

.why-choose-box {
    padding: 50px 40px;
    background-color: #f8f9fb;
    text-align: center;
    flex: 0 0 32%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: relative;
}

.why-choose-box h4 {
    font-size: 20px;
    font-family: var(--font-demi);
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    z-index: 0;
    transition: all 300ms ease-in-out;
}

.why-choose-box p {
    margin-bottom: 0px;
    color: #3f3f3f;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    z-index: 0;
    transition: all 300ms ease-in-out;
}

.why-choose-box:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: var(--primary-color);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    z-index: 0;
    transition: all 300ms ease-in-out;
}

.why-choose-box:hover:after {
    height: 100%;
}

.why-choose-box h5,
.why-choose-box h4,
.why-choose-box p {
    position: relative;
    z-index: 1;
}

.why-choose-box:hover h4,
.why-choose-box:hover p {
    color: var(--white);
}

.articles-wrap {
    display: flex;
    gap: 25px 3%;
}

.article-left {
    flex: 0 0 62%;
}

.artcl-left-cnt {
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    border-bottom: 1px solid #e2e2e2;
    align-items: center;
}

.artcl-left-cnt h4 {
    margin-bottom: 0px;
    color: var(--black);
    font-size: 24px;
}

.article-right {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-right-box {
    border: 1px solid #e2e2e2;
    display: block;
    transition: all 0.3s ease;
}

.article-right-box:hover,
.article-right-box.active {
    border-left: 4px solid var(--secondary-color);
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-anim {
    animation: slideUpFade 0.4s ease forwards;
}

.artcl-right-cnt {
    padding: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.artcl-right-cnt h2 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 15px;
}

.artcl-right-cnt p {
    color: #3f3f3f;
    font-size: 16px;
    margin-bottom: 0px;
}

.artcl-right-admin {
    margin-bottom: 0px;
    padding: 19px;
    display: flex;
    gap: 20px;
}

.artcl-right-admin li {
    font-size: 14px;
    color: var(--body-color);
}

.artcl-right-admin li i {
    color: #c1c1c1;
}

.articles {
    padding-bottom: 100px;
}

footer {
    background-image: url(../images/bg5.jpg);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

footer:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: var(--black);
    opacity: .8;
    z-index: 0;
}

footer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 105px;
    left: 0px;
    top: 0px;
    background-color: var(--white);
    z-index: 1;
}

.footer-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 45px 60px 55px;
    outline: 1px solid #748bcb;
    outline-offset: -15px;
    position: relative;
    z-index: 2;
}

.footer-top-left h2 {
    font-size: 46px;
    font-family: var(--font-demi);
    color: var(--white);
    margin-bottom: 10px;
}

.footer-top-left h5 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0px;
}

.footer-bottom-wrap {
    padding: 70px 0px 40px;
    display: flex;
    position: relative;
    z-index: 2;
}

.ftr-col {
    flex: 0 0 20%;
}

.ftr-col h2 {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--font-demi);
}

.ftr-list li {
    margin-bottom: 8px;
}

.ftr-list li a {
    font-size: 14px;
    color: var(--white);
}

.ftr-col p {
    color: var(--white);
    font-size: 14px;
}

.ftr-col p a {
    color: var(--white);
}

.copyright {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.copyright p {
    margin-bottom: 0px;
    color: var(--white);
    font-size: 14px;
}

.copyright p a {
    color: var(--white);
}

.social a {
    color: var(--white);
    font-size: 20px;
    margin: 0px 4px;
}

.ftr-list li a:hover,
footer a:hover {
    color: var(--secondary-color);
}

header.smaller {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}
.header-unstick{
	position:relative!important;
	top:auto !important;
	left:auto !important;
}
.pad {
    padding: 100px 0px;
}

.about-inn-wrap {
    display: flex;
    gap: 25px 3%;
}

.about-inn-left {
    flex: 0 0 50%;
    position: relative;
}

.about-innelemnt-1,
.about-innelemnt-2 {
    position: absolute;
    top: 0px;
    right: 60px;
    width: 175px;
    left: auto;
}

.about-innelemnt-2 {
    top: 186px;
    right: 0;
    width: 160px;
}
/*************** CONTACT PAGE ***************/
.contact-page-wrap {
    display: flex;
    gap: 25px 3%;
}

.contactstyle {

    background: linear-gradient(145deg, rgba(42, 74, 170, .9) 0%, rgba(30, 45, 109, .9) 100%);

    padding: 0;

    color: var(--white);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    position: relative;

    max-width: 380px;

    width: 100%;
}

.contactstyle::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.contactstyle::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.contactstyle-top {
    padding: 40px 35px 0px;
    position: relative;
    z-index: 1;
}

.contactstyle h3 {
    color: var(--white);
    font-family: var(--font-demi);
    margin-bottom: 6px;
    font-size: 28px;
}

.contact-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.cont-info-list {
    padding: 0 35px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.cont-inn-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.cont-inn-box:last-child {
    border-bottom: none;
}

.cont-inn-box .coic {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.cont-inn-box:hover .coic {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.cont-inn-box .coic i {
    color: var(--white);
    font-size: 18px;
}

.cont-inn-text {
    flex: 1;
}

.cont-inn-box h4 {
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-demi);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cont-inn-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.cont-inn-box p a {
    color: rgba(255, 255, 255, 0.7);
}

.cont-inn-box:hover p a,
.cont-inn-box p a:hover {
    color: var(--white);
}

/* Social Links */
.contact-social {
    padding: 25px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.contact-social h5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-family: var(--font-demi);
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.contact-social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-right h5 {
    font-size: 15px;
    color: #686868;
    margin-bottom: 32px;
}

.contact-right .heading {
    margin-bottom: 10px;
    font-size: 34px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
    flex-direction: column;
}

.form-group {
    /* flex: 0 0 calc(50% - 10px); */
}

.form-group-full {
    flex: 0 0 100%;
}

.floating-label {
    position: relative;
}

.floating-label .fieldset1 {
    resize: vertical;
    min-height: 120px;
}

.floating-label label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #6a6a6a;
    pointer-events: none;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    background-color: var(--white);
    padding: 0 4px;
    margin: 0;
}

.form-group-full.floating-label label {
    top: 20px;
    transform: translateY(0);
}

.floating-label .fieldset:focus~label,
.floating-label .fieldset:not(:placeholder-shown)~label {
    top: -6px;
    transform: translateY(0);
    font-size: 11px;
    color: var(--primary-color);

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group-full.floating-label .fieldset:focus~label,
.form-group-full.floating-label .fieldset:not(:placeholder-shown)~label {
    top: -4px;
    transform: translateY(0);
}

.floating-label .fieldset:focus {
    border-color: var(--primary-color);
    background-color: var(--white);

}

.map {
    display: flex;
    margin-top: 60px;
}

.contact-outer {
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-end;
    padding: 30px;
    background-image: url(../images/bg6.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.news-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.news-box {
    flex: 0 0 32%;
    border-bottom: 1px solid #e2e2e2;
}

.news-img {
    line-height: 0px;
}

.news-text {
    padding: 25px 0px;
}

.news-text h3 {
    font-size: 22px;
    font-family: var(--font-demi);
    color: var(--black);
    margin-bottom: 10px;
}

.news-text p {
    color: var(--black);
    margin-bottom: 0px;
}

.news-box .artcl-right-admin {
    border-top: 1px solid #e2e2e2;
    padding: 15px 0px;
}

.news-box:hover .news-text h3 {
    color: var(--primary-color);
}

/*************** BLOG DETAIL PAGE ***************/
.blog-detail-wrap {
    display: flex;
    gap: 25px 4%;
}

.blog-detail-left {
    flex: 0 0 68%;
}

.blog-detail-right {
    flex: 0 0 28%;
}

/* Featured Image */
.blog-detail-img {
    line-height: 0;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail-img img {
    width: 100%;
    object-fit: cover;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-meta li {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta li i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Blog Content */
.blog-detail-content h1 {
    font-size: 32px;
    font-family: var(--font-demi);
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--black);
}

.blog-detail-content h2 {
    font-size: 22px;
    font-family: var(--font-demi);
    margin: 30px 0 15px;
    color: var(--black);
}

.blog-detail-content p {
    color: #4a4a4a;
    line-height: 28px;
    margin-bottom: 18px;
    font-size: 15px;
}

.blog-detail-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background-color: #f5f7fb;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.blog-detail-content blockquote p {
    font-size: 17px;
    font-style: italic;
    color: #333;
    margin-bottom: 0;
    line-height: 30px;
}

.blog-list {
    margin: 15px 0 25px 0;
    padding: 0;
}

.blog-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 26px;
}

.blog-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Tags & Share */
.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tags-label,
.blog-share-label {
    font-size: 14px;
    font-family: var(--font-demi);
    color: var(--black);
    margin-right: 4px;
}

.blog-tags a {
    font-size: 12px;
    color: #555;
    background-color: #f0f2f5;
    padding: 5px 14px;
    border-radius: 50px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.blog-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.blog-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sidebar */
.sidebar-widget {
    background-color: #f8f9fb;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    position: sticky;
    top: 85px;
}

.sidebar-title {
    font-size: 20px;
    font-family: var(--font-demi);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--black);
}

/* Related News */
.related-news-list {
    display: flex;
    flex-direction: column;
}

.related-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.related-news-item:first-child {
    padding-top: 0;
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-news-img {
    width: 90px;
    min-width: 90px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
}

.related-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.related-news-item:hover .related-news-img img {
    transform: scale(1.08);
}

.related-news-text {
    flex: 1;
}

.related-news-text h4 {
    font-size: 15px;
    font-family: var(--font-demi);
    color: var(--black);
    margin-bottom: 6px;
    line-height: 20px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.related-news-item:hover .related-news-text h4 {
    color: var(--primary-color);
}

.related-news-text span {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-news-text span i {
    font-size: 11px;
}

/* Sidebar Categories */
.sidebar-categories {
    margin: 0;
    padding: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #4a4a4a;
    font-size: 14px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.sidebar-categories li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.sidebar-categories li a span {
    background-color: #e8ebf0;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: #666;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.sidebar-categories li a:hover span {
    background-color: var(--primary-color);
    color: var(--white);
}



.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 30px 120px;
	margin-bottom:25px;
	border-bottom:1px solid var(--grey);
	min-height:100px;
	position:relative;
}
.iconic:before{
	width:80px;
	height:1px;
	content:'';
	position:absolute;
	left:0;
	bottom:-1px;
	background-color:var(--secondary-color);
	z-index:1;
}
.iconic:last-child{
	 
}
.iconic h2{
	font-size: 20px;
	font-weight:var(--bold);
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--black);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding: 5px;
	border-radius:50%;
	border:1px solid var(--grey-dark);
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.iconic:hover .webicon{
	transform: rotate(360deg);
	
}
.iconic p:last-child{
	margin:0;
}
.rounded-img{
	border-radius: 20px;
	width:100%;
	display:block;
}

/*************** MENU SETTINGS ***************/
.pro-brand-info{
	font-size:14px;
	background-color:var(--grey-light);
	border:1px solid var(--grey);
	padding:30px;
}
.pro-brand-info .head{
	display: flex;
    flex-wrap: wrap;
	gap:0 15px;
	align-items: center;
	margin-bottom:18px;
	}
.pro-brand-info .head img{
	height:40px;
	}
.pro-brand-info .head h2{
	margin:0;
	font-size:20px;
	font-family:var(--font-demi);
	}
.pro-brand-info .head h2 span{
	font-size:14px;
	line-height:normal;
	font-family:var(--body-font);
}
.pro-brand-info p{
	margin:0 0 10px 0;
}
.pro-brand-info p:last-child{
	margin:0;
}
.tn-bt{
	position:relative;
	padding:0 15px 5px 0;
	line-height:normal;
	border-bottom:1px solid #000;
	display:inline-block;
	font-size:12px;
	
}
.tn-bt:before{
	width:8px;
	height:8px;
	position:absolute;
	top:5px;
	right:0;
	border-left:1px solid #000;
	border-top:1px solid #000;
	content:'';
	width:10px;
	height:10px;	
	transform: rotate(135deg);
	
}

/********brands row*******/
.brand-row{
	display: grid;
	grid-gap:20px;
	grid-template-columns: repeat(6, 1fr);
	}
	
.brand-row .item{
	padding:0 20px;
	background-color:var(--white);
	border-radius: 10px;
}
.brand-row .item img{
	width:100%;
	display:block;
}

.fix-bg{
	background-attachment:fixed !important;
}
/********************************/
.fact1, .fact2, .fact3{	
	border-radius:50px 50px 0 0;
	text-align:center;
	background-color:#FFDCAB;
	padding:50px;
	text-align:center;
	color:var(--black) !important;
}
 
.fact2{
	margin-top:100px;
	background-color:#FFCAE2;
}
.fact3{
	margin-top:200px;
	background-color:#DECAFF;
}

/*************** inner banner ***************/
.banner-fullheight {
    width: 100%;
    height:90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}


.secondary-header-wrap{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	z-index:5;
	padding:20px 0;
	transition:all 0.35s ease;
}
 /* sticky state */
.secondary-header-wrap.sticky{
	position:fixed!important;
	top:0;
	left:0;
	width:100%;
	background:var(--white);
	/*backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);*/
	padding:12px 0;
	box-shadow:0 10px 30px rgba(0,0,0,0.15);
	animation:stickyHeader 0.35s ease;
}


.secondary-header{
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	}
.secondary-header .logo{
 	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:10px;
	font-size:16px;
	line-height:normal;
	font-family:var(--font-demi);
}
/* optional smaller logo on sticky */
.secondary-header-wrap.sticky .logo img{
	width:55px;
	transition:all 0.35s ease;
}
/* smooth animation */
@keyframes stickyHeader{
	from{
		transform:translateY(-100%);
		opacity:0;
	}
	to{
		transform:translateY(0);
		opacity:1;
	}
}
.secondary-header .logo img{
	width:70px;
}

.secondary-menu{}




.theme-content {
	display: flex;
    justify-content: space-between;
    align-items: center;
	 
}
.theme-content-left {
     width:55%;
}
.theme-content-left h1 {
	color:var(--primary-color);
	font-size:70px;
	line-height:normal;
	font-family:var(--font-demi);
}
.theme-content-left h2 {
	font-size:30px;
	line-height:normal;
}

.theme-content-left .footer {
	font-size:16px;
	line-height:normal;
	display:flex;
	gap:0 15px;
	align-items: center;
	margin:0;
}
.theme-content-right {
     width:25%;
}

.form-box{
	border-radius: 20px;
	padding:40px;
	background-color:rgba(255, 255, 255, 0.5);
	font-size:12px;
	  box-shadow:0 4px 15px rgba(0,0,0,0.08);
	}

.form-box h2{
	font-size:24px;
	text-align:center;
}
.form-box p{
	margin:0 0 10px ;
	line-height:normal;
}
.box-form{
    display: flex;
    flex-wrap: wrap; 
	flex-direction:column;
	gap:10px 0;
	}
.text-orange{
	color:var(--secondary-color);
}	
.text-blue{
	color:var(--primary-color);
}
.caps{
	text-transform:uppercase;
}
.box-form .fieldset {
    width: 100%;
    height: 45px;
    padding: 8px 25px;
    background-color: var(--white);
    display: block;
    border: 1px solid #A6B8EA;
    margin: 0;
    color: #262626;
    font-size: 12px;
    border-radius: 50px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.box-form .sendbutton{
	width:100%;
	text-align:center;
}
.box-form .footer{
	display: flex;
	gap:10px;
	text-align:center;
	justify-content: center;
	align-items: center;
}
/*************** inner banner ***************/
.banner {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    text-align: center;
    background-color: #f8f9fb;
    background-image: url(../images/banner.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .banner:after {
	position: absolute;
	content: '';
	
 background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%); 
	
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 50%;
} */
.banner-inn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    justify-content: center;
}

.breadcrumb ul {

    display: flex;

    flex-wrap: wrap;

    list-style: none;

    margin: 0;
}

.breadcrumb li {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--black);
}

.breadcrumb li:not(:last-child)::after {
    display: inline-flex;
    margin: 0 8px;
    content: "  ";
    width: 8px;
    height: 11px;
    position: relative;
    top: 1px;
    background-image: url(../images/logo-icon.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb a {
    color: var(--black);
}

.breadcrumb a:hover {
    color: #cccccc;

}


/*************** table style ***************/
.responsive-table {
    overflow-x: auto;
}

.table-style {
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #ddd;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--primary-color);
    color: var(--white);
}

/**********forms**************/
form {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

.fieldset {
    width: 100%;
    height: 50px;
    padding: 8px 15px;
    background-color: var(--white);
    display: block;
    border: 2px solid #e1e5eb;
    margin: 0;
    color: #262626;
    font-size: 14px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea.fieldset,
textarea {
    height: 140px;
}

.sendbutton {
    width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0 5px 0 0;
    float: left;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    vertical-align: top;
    padding: 14px 25px 14px;
    text-align: center;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--font-demi);
}

.sendbutton:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

::-webkit-input-placeholder {
    color: #262626 !important;
}

:-moz-placeholder {
    color: #262626 !important;
}

::-moz-placeholder {
    color: #262626 !important;
}

:-ms-input-placeholder {
    color: #262626 !important;
}

/*************HOVER EFFECT*******/
.hover-effect {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.hover-effect i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: -100px;
    z-index: 1;
    line-height: 50px;
    text-align: center;
    margin: 0 0 0 -25px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
    top: 50%;
    margin: -25px 0 0 -25px;
}

.hover-effect:hover i:hover {
    background-color: var(--secondary-color);
}

.hover-effect img {
    display: block;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    width: 100%;
}

.hover-effect:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/*************BACK TO TOP*******/
.progress-wrap {
    position: fixed;
    right: 18px;
    bottom: 78px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "\f30c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color: var(--secondary-color);
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--secondary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*************** PRODUCT DETAIL PAGE (Invigorix) ***************/
.product-detail-wrapper {
    background-color: #fff;

    /* assuming modern sans serif */
}

.pd-section {
    padding: 60px 0;
}

.pd-header {
    padding: 0 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.pd-badge {
    display: inline-block;
    margin-bottom: 20px;
    
}



.pd-header h4 {
    font-size: 22px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.pd-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.pd-section-header {
    margin-bottom: 50px;
}


.pd-section-header.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pd-section-header p {
    font-size: 16px;
    color: #666;
}

/* Challenges Grid - Premium SaaS Vibe */
.pd-challenges {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background: #f8fafe;
    /* Soft, premium background */
    z-index: 1;
}

/* Optional soft gradient orb in background for depth */
.pd-challenges::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 82, 163, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -200px;
    z-index: -1;
    pointer-events: none;
}

.pd-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
    /* High vertical gap for floating badges */

    padding: 20px 60px;
}

/* Sibling focus effect: dims other cards when grid is hovered */
.pd-challenges-grid:hover .pd-challenge-card:not(:hover) {
    opacity: 0.4;
    transform: scale(0.98);
    filter: blur(2px);
}

.pd-challenge-card {
    background: #ffffff;

    /* Large, friendly modern radius */
    padding: 45px 35px 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.pd-challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(53, 82, 163, 0.15);
    border-color: rgba(53, 82, 163, 0.1);
    z-index: 3;
}

/* Floating, offset number badge breaking the boundary */
.pd-card-num {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 54px;
    height: 54px;

    background: linear-gradient(45deg, rgba(255, 66, 0, 1) 0%, rgba(244, 196, 30, 1) 100%);
    color: #ffffff;
    font-size: 20px;
    font-family: var(--font-demi);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(240, 95, 36, .3);
    border: 4px solid #ffffff;
    /* Gives space from the card edge */
    transition: all 0.4s ease;
}

/* Subtle line separator inside card */
.pd-challenge-card::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 35px;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0.2;
    transition: width 0.4s ease, opacity 0.4s ease;
}

.pd-challenge-card:hover::before {
    width: 50px;
    opacity: 1;
}

.pd-challenge-card:hover .pd-card-num {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(53, 82, 163, 0.4);
}

.pd-challenge-card h3 {
    font-size: 20px;
    color: #0f172a;
    /* Slate 900 for dark rich contrast */
    margin-top: 22px;
    /* Spacing from the offset badge */
    margin-bottom: 12px;
    font-family: var(--font-demi);
    line-height: 1.4;
}

.pd-challenge-card p {
    font-size: 15px;
    color: #64748b;
    /* Slate 500 for elegant readability */
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.pd-challenge-card:hover p {
    color: #475569;
}

/* Premium Unique Section */
.pd-unique {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.pd-unique::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 82, 163, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.pd-unique-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Side - The Elegant List */
.pd-unique-list {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0px;
}

.pd-unique-list::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 6px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(53, 82, 163, 0.2), rgba(53, 82, 163, 0));
}

.pd-unique-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px 20px 25px 40px;
    position: relative;
    background: transparent;
    transition: all 0.4s ease;
    border-radius: 0;
}

.pd-unique-item:hover {
    transform: translateX(10px);
    background: rgba(248, 250, 254, 0.5);
    border-radius: 16px;
}

/* Interactive Timeline Node (Circle on the line) */
.pd-unique-item::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -2px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px #ffffff;
    z-index: 2;
}

.pd-unique-item:hover::before {
    transform: scale(1.4);
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(240, 95, 36, .15);
    border: 3px solid var(--secondary-color);
}

/* Watermark Number */
.pd-unique-icon {
    position: absolute;
    top: -5px;
    left: 45px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(53, 82, 163, 0.04);
    transition: all 0.5s ease;
    z-index: 0;
    line-height: 1;
}

.pd-unique-item:hover .pd-unique-icon {
    color: rgba(53, 82, 163, 0.08);
    transform: translateX(10px);
}

.pd-unique-text {
    position: relative;
    z-index: 1;
}

.pd-unique-text h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
    font-family: var(--font-demi);
    transition: color 0.3s ease;
}

.pd-unique-item:hover .pd-unique-text h4 {
    color: var(--primary-color);
}

.pd-unique-text p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Right Side - The Dynamic Image Container */
.pd-unique-image-container {
    flex: 1;
    position: relative;
    border-radius: 30px;

}

.pd-img-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #17265c 100%);
    opacity: 0.15;
    z-index: -1;
    transition: all 0.5s ease;
}

.pd-unique-image-container:hover .pd-img-backdrop {
    top: -25px;
    right: -25px;
    opacity: 0.25;
}

#pd-dynamic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

/* Stats Bottom Row - Full width floating bar */
.pd-unique-stats-row {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(145deg, #1e2d6d 0%, var(--primary-color) 100%);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 35px 70px rgba(30, 45, 109, 0.2);
    overflow: hidden;
    z-index: 2;
}

/* Inner glowing shapes to make it abstract */
.pd-unique-stats-row::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: 15%;
}

.pd-unique-stats-row::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 95, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: 5%;
}

.pd-stat-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.pd-stat-item-row {
    background: rgba(255, 255, 255, 0.06);
    /* Glass card */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pd-stat-item-row:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pd-stat-item-row h2 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.pd-stat-item-row h2 span {
    font-size: 26px;
    opacity: 0.9;
    color: #FFC107;
}

.pd-stat-item-row p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.pd-stat-item-row p strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-demi);
}

/* Features */
/* Premium Features Showcase */
.pd-features-showcase {
    display: flex;
    /* flex-direction: column; */
    margin-top: 60px;
    gap: 25px 2%;
    flex-wrap: wrap;
    justify-content: center;
}

.pd-showcase-item {
    display: flex;
    align-items: center;
    position: relative;
    /* width: 100%; */
    /*border: 1px solid rgba(53, 82, 163, .15);*/
    flex: 0 0 32%;
    padding: 35px;
	border-radius:20px;
	background-color:var(--grey-light);
}

.pd-showcase-item.reverse {
    flex-direction: row-reverse;
}

.pd-showcase-image {
    width: 50%;
    
    
    overflow: hidden;
    position: relative;
    
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pd-showcase-item:hover .pd-showcase-image {
    transform: scale(1.02);
}

.pd-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 1s ease;
}

.pd-showcase-item:hover .pd-showcase-image img {
    transform: scale(1.05);
}

.pd-img-overlay {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* z-index: 2; */
    /* opacity: 0.2; */
    /* mix-blend-mode: multiply; */
}

.pd-showcase-content {
    
    position: relative;
    /* margin-left: -10%; */
    /* background: rgba(53, 82, 163, .6); */
    /* backdrop-filter: blur(25px); */
    -webkit-backdrop-filter: blur(25px);
    /* border: 1px solid rgba(53, 82, 163, .7); */
    /* border-radius: 40px; */
   
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.06); */
    z-index: 3;
    transition: all 0.5s ease;
}

.pd-showcase-item.reverse .pd-showcase-content {
    /* margin-left: 0; */
    /* margin-right: -10%; */
    padding-right: 70px;
    padding-left: 0;
}

.pd-showcase-item:hover .pd-showcase-content {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 40px 80px rgba(0,0,0,0.1); */
}

.pd-feature-icon-fancy {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(230, 114, 53, 0.9) 0%, rgba(244, 196, 30, 0.9) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(240, 95, 36, 0.3);
}

.pd-showcase-content h3 {
        font-size: 20px;
    color: var(--black);
    margin-bottom: 15px;
    font-family: var(--font-demi);
    line-height: 1.3;
}

.pd-showcase-content p {
    font-size: 15px;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 0;
}

.pd-feature-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pd-split-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 100%);
    width: 100%;
}

.bg-gradient-1 { background: linear-gradient(135deg, #e0eafc, #cfdef3); }
.bg-gradient-2 { background: linear-gradient(135deg, #d4fced, #a6ebc9); }
.bg-gradient-3 { background: linear-gradient(135deg, #fce0f3, #ebd4e9); }

/***************BACKGROUND COLORS*****/
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:var(--white)!important;	 
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }
 .bg-ivory{
	 background-color:#FFF9DC
 }
 
 .boxy{ 
      
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
	 background-color:var(--white);
	 border:1px solid var(--grey);
	 margin-left:-1px;
}


 .boxy .icon{
 	width:100px;
 
 }
 .boxy .icon img{
 	width:100%;
	 transition: all 0.4s ease;
 
 } 
 .boxy:hover img{
 filter: brightness(0) invert(1);}
.display-style{ 
      
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
	 text-align:center;
	 justify-content: center;
	 flex-direction:column;
	 background-color:var(--white);
}
.display-style:hover,  .boxy:hover{
	background-color:var(--primary-color);
	color:var(--white);
}
.icon-row{
    display: flex;
    flex-wrap: wrap; 
	 justify-content: center;
	}

.display-style .icon{
	 width:60px;
	 height:60px;
	 display: flex;
	 justify-content: center;
	 margin-bottom:25px;
	 transition: all 0.4s ease;
	 font-size:30px;
	 align-items: center;
	 color:var(--primary-color);
	 border-radius:50%;
	 border:1px solid var(--grey-dark);
}
.display-style .icon i{
	font-size:24px;
} 
  
.display-style .icon img{
	width:70px;
	display:block;
} 
.display-style:hover .icon{
	filter: brightness(0) invert(1);
	transform: rotate(360deg);
}

.display-style p:last-child{
	margin:0;
}
.display-style h2{
	font-size:20px;
	font-family: var(--font-demi);
}
/* Pillars */
.pd-pillars {
    background: #f8fafe;
    padding: 80px 40px;
    border-radius: 20px;
}

.pd-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pd-pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pd-pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(53, 82, 163, 0.05);
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
}

.pd-pillar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pd-pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-pillar-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.pd-pillar-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.pd-pillar-card ul li strong {
    color: var(--black);
}

/* Empowering */
.pd-empowering {
    margin: 60px 0;
    background: url(../images/bg7.jpg) center / cover no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/**********bg*********/
 
/************/
.pd-empowering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(240, 95, 36, .7) 0%, rgba(30, 45, 109, 0.9) 100%);
}

.pd-empowering-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pd-empowering-content {
    max-width: 880px;
    color: #fff;
}

.pd-empowering-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.pd-empowering-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* FAQs */
.pd-faq {
   
    margin: 0 auto;
}

.pd-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pd-accordion-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.pd-accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pd-accordion-header:focus {
    outline: none;
}

.pd-accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.pd-accordion-item.active .pd-accordion-header {
    background: #f8fafe;
    color: var(--primary-color);
}

.pd-accordion-item.active .pd-accordion-header i {
    transform: rotate(180deg);
}

.pd-accordion-body {
    display: none;
    padding: 0 25px 20px;
    background: #f8fafe;
}

.pd-accordion-body p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}


.clients-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1.5%;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.clients-wrapper li {
    flex: 0 0 13%;
    padding: 6px;
    background-color: var(--white);
    border-radius: 10px;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.clients-wrapper li img{   
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.clients-wrapper li:hover img{
    filter: grayscale(100%);  
    transform: scale(0.9);
}
.clients-wrapper li:hover {
    border: 1px solid var(--light-gray);
}


.patners-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding: 80px;
    position: relative;
    background: #f8fafe;
}
.patner-box {
    flex: 0 0 48%;
    background: #ffffff;
    padding: 35px ;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}
.patner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 50px;
    background: var(--secondary-color);
}
.patner-box img {
    height: 56px;
    margin-bottom: 25px;
}
.patner-box h3 {
    font-size: 23px;
    color: var(--primary-color);
    font-weight: 600;
}








@media only screen and (max-width: 1550px) {
    .container {
        width: 95%;
    }

    .scrollwrap {
        width: 100% !important;
        padding: 0;
    }
}

/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {
    .smrt-prodt-list-left {
        flex: 0 0 50%;
    }

    .contact-section-hm-wrap a {
        gap: 5px;
    }

    .contact-section-hm-wrap a {
        padding: 12px 0 12px 10px;
    }

    .cnt-hm-dtl h4 {
        font-size: 17px;
    }

    .cnt-hm-dtl h6 {

        margin-bottom: 4px;
    }

    .home-banner-left p {
        font-size: 20px;
    }

    .why-choose-us-outer {
        padding: 55px 50px 50px;
    }

    .testimonials-wrap {

        padding: 100px 70px 70px;
    }

    .article-left {
        flex: 0 0 54%;
    }

    .article-right {
        flex: 0 0 43%;
    }


}



/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
    .all-in-btn-right h6 br {
        display: none;
    }

    .funfact-right {
        flex: 0 0 55%;
    }

    .counter-section {

        gap: 4%;
    }

    .counter-section li {

        flex: 0 0 48%;
    }
	
.theme-content-right{
	width:30%;
}
}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
    .home-banner-left h1 {
        font-size: 42px;
    }

    .bnr-prdct-box {

        padding: 20px;
    }

    .heading {
        font-size: 38px;
    }

    .all-in-one-right {

        padding: 40px;
    }

    .testimonials-right {

        margin-top: -170px;
    }

    .testimonials-wrap {
        padding: 80px 45px 70px;
    }

    .funfact-numbers-wrap {

        flex-direction: column;
    }

    .funfact-left {
        margin-bottom: 25px;
        padding-top: 0px;
    }

    .bnr-prdct-box h3 {
        font-size: 20px;
    }

    .contact-outer {
        flex: 0 0 60%;
    }
	
	.theme-content-right{
	width:40%;
}
}
@media only screen and (max-width: 1199.98px) {
.secondary-header-wrap{
	display:none;
}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .home-banner-left h1 {
        font-size: 36px;
    }

    .banner-product-wrap {
        flex-wrap: wrap;
        gap: 12px 1.5%;
        justify-content: center;
    }

    .bnr-prdct-box {
        flex: 0 0 32.3333333%;
    }

    .all-in-one-wrap {
        flex-direction: column;
    }

    .all-in-one-right {
        margin-top: 0px;
    }

    .smrt-prodt-list-right .smrt-prodt-list-img-1 {
        width: 130px;
    }

    .contact-section-hm-wrap {
        gap: 1%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-section-hm-wrap a {
        border: 1px solid rgba(226, 226, 226, .3) !important;
        flex: 0 0 32.66%;
        margin-bottom: 15px;
    }

    .testimonials-right {
        margin-top: 0;
        flex: 0 0 20%;
    }

    .testimonials-left {
        flex: 0 0 76%;
    }

    .testi-elmnt-1 {

        width: 38px;
    }

    .testi-elmnt-3 {

        width: 22px;
    }

    .why-choose-us-outer {
        padding: 55px 0px 50px;
    }

    .why-choose-box {
        padding: 35px 18px;
    }

    .articles-wrap,
    .footer-top-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-top-wrap {
        gap: 20px;
    }

    .footer-top-left h2 {
        font-size: 38px;
    }

    .cnt-hm-dtl h6 {
        font-size: 11px;
    }

    .cnt-hm-dtl h4 {
        font-size: 15px;
    }

    :root {
        --logo-show: 4;
    }

    .artcl-right-cnt {

        text-align: left;
    }

    .news-text h3 {
        font-size: 20px;
    }

    .news-text p {

        font-size: 15px;
    }
    .pd-unique-item::before {
 
    left: 0px;}
    .pd-unique-list::before {
  left: 8px;}
  .pd-unique{ padding-bottom: 60px;}
  .pd-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .pd-unique-wrap {
        flex-direction: column;
        gap: 30px 2%;
    }

    .pd-unique-image-container {
        width: 100%;
        height: 400px;
    }

    .pd-stat-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-features-showcase {
        gap: 30px 2%;
    }
    
    .pd-showcase-item, .pd-showcase-item.reverse {
        flex-direction: column;
    }
    
    .pd-showcase-image {
        width: 100%;
        height: 400px;
        border-radius: 30px;
    }
    

    
    .pd-showcase-item.reverse .pd-showcase-content {
        margin-right: 0;
    }
    .pd-showcase-item{ flex: 0 0 49%;}
    .pd-pillar-grid {
   
    grid-template-columns: repeat(2, 1fr);}

        .clients-wrapper li {
        flex: 0 0 18.4%;
    }
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
    .tsti-cnt p {
        font-size: 16px;
        line-height: 26px;
    }

    .home-banner-right {
        flex: 0 0 20%;
    }

    .bnt-elmnt-2 {
        bottom: 120px;
    }

    .home-banner-left {
        flex: 0 0 68%;
    }

    .bnt-elmnt-5 {

        top: -8%;
    }

    .bnt-elmnt-4 {
        right: 118%;
        top: 35%;
    }

    .footer-bottom-wrap {

        flex-wrap: wrap;
    }

    .ftr-col {
        flex: 0 0 33.33333333%;
    }

    .why-choose-us-outer {

        margin-top: -50px;
    }

    .about-inn-wrap,
    .blog-detail-wrap {
        flex-direction: column;
    }

    .blog-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {
    .news-box {
        flex: 0 0 49%;
    }
    .clients-wrapper li {
        flex: 0 0 23.3333%;
    }


}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

    .two-col,
    .three-col,
    .four-col,
    aside,
    summary {
        flex: 0 0 100%;
        margin: 0 0 25px 0;
    }

    .banner-product-wrap {
        margin-top: 0px;
    }

    .home-banner-wrap {
        flex-direction: column;
        height: 760px;
    }

    .home-banner-left,
    .home-banner-right {
        flex: 0 0 50%;
    }

    .bnt-elmnt-1 {
        right: auto;
        left: 18%;
    }

    .bnt-elmnt-2 {
        bottom: -60px;
        right: 10%;
    }

    .bnt-elmnt-3 {
        top: 70%;
    }

    :root {
        --logo-show: 3;
    }

    .brnd-slider {
        padding: 50px 0px;
    }

    .smrt-prodt-list-wrap {
        flex-direction: column;
    }

    .smrt-prodt-list-right {
        margin-top: 0;
    }

    .contact-section-hm-wrap a {
        flex: 0 0 49.5%;
    }

    .testimonials .heading {
        margin-bottom: 15px;
    }

    .testimonials-wrap {
        flex-direction: column;
    }

    .testi-img img {
        width: 215px;
    }

    .testi-img {
        margin-top: 35px;
    }

    .testi-img img {
        width: 215px;
    }

    .why-choose-us-wrap {
        flex-direction: column;
    }

    .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .why-choose-us-outer h6,
    .articles h6 {
        font-size: 18px;
    }

    .header-wrap {
        flex-wrap: wrap;
    }

    .right-header {
        flex: 0 0 100%;
        margin-top: 10px;
        border-top: 1px solid #ebebeb;
        padding-top: 10px;
        justify-content: space-between;
        padding-right: 0;
    }
    .logo {
        padding-left: 0;
    }

    header .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn-get-demo {
        padding: 15px 50px 15px 15px;
    }

    header {
        padding: 10px 0px;
    }

    header.smaller .btn-get-demo,
    header.smaller .login-btns {
        display: none;
    }

    header.smaller .right-header {

        margin-top: 0px;
        border-top: none;
        padding-top: 0px;

    }

    .home-banner {
        padding: 40px 0px;
    }

    .banner-inn {
        flex-direction: column;
        gap: 10px;
    }

    .contact-page-wrap {
        flex-direction: column;
    }

    .blog-detail-content h1 {
        font-size: 26px;
    }
    .pd-challenges-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-challenge-card {
        padding: 40px 25px 30px;
    }

 

    .pd-unique-stats-row {
        padding: 40px 20px;
    }

  

    .pd-unique-list::before {
        left: 10px;
    }



    .pd-unique-icon {
        left: 15px;
        font-size: 50px;
    }

    .pd-showcase-image {
        height: 250px;
    }
    
   
    
    .pd-showcase-content h3 {
        font-size: 24px;
    }
        .pd-showcase-item {
        flex: 0 0 100%;
    }
        .pd-pillar-grid {
        grid-template-columns: repeat(1, 1fr);
    }
.banner-fullheight{
	height:auto;
	padding:25px 0;
}
.theme-content {
	 
	flex-direction: column;
	gap:20px 0;
	text-align:center;
}
.theme-content-left, .theme-content-right{
	width:100%!important;
}

.theme-content-left h1 {
	font-size:20px;
}
.theme-content-left h2 {
	font-size:16px;
	line-height:normal;
}
.theme-content-left .footer{
	font-size:12px;
	text-align:center;
	justify-content: center;
}
    .clients-wrapper li {
        flex: 0 0 32%;
    }
    .patner-box {
    flex: 0 0 100%;
    padding: 20px ;
}
.patners-wrapper {
    padding: 30px;
}
.smrt-prodt-list-left {
    padding: 12px;
}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
    .gap-50 {
        height: 25px;
    }

    .gap-100 {
        height: 50px;
    }

    .home-banner-left h1 {
        font-size: 30px;
    }

    .home-banner-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .bnt-elmnt-1 {

        width: 145px;
        top: 0;
    }

    .bnt-elmnt-2 {
        bottom: 30px;
        right: 30%;
        width: 145px;
    }

    .bnt-elmnt-3 {
        right: 30%;
    }

    .bnt-elmnt-5 {
        right: 17%;
    }

    .bnr-prdct-box {
        flex: 0 0 49%;
    }

    .counter-section {
        flex-direction: column;
    }

    .counter-section p {
        flex: 0 0 105px;
    }

    .why-choose-us-outer {
        margin-top: 0;
    }

    .footer-top-wrap {

        padding: 45px 30px 55px;
    }

    .footer-top-left h2 {
        font-size: 28px;
    }

    .footer-top-left h5 {

        font-size: 20px;
    }

    .banner-product-wrap {
        margin-top: -85px;
    }

    .heading {
        font-size: 34px;
    }

    .spinner {

        background-size: 200px;
    }

    .pad {
        padding: 60px 0px;
    }

    .banner h2 {

        font-size: 28px;
    }

    .breadcrumb li {

        font-size: 11px;
    }

    .news-wrap {
        flex-direction: column;
    }
    .pd-header h4 {
    font-size: 18px;}
    .pd-challenges {
    padding-top: 50px;
    padding-bottom: 50px;}
    .pd-unique {
    padding: 60px 0;}
    .pd-stat-item-row {

    padding: 25px 10px;}
    .pd-empowering-inner{ padding: 30px;}

    .smrt-prodt-list-left  .list li {
        font-size: 13px;
    }
    .pd-stat-grid-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .pd-stat-item-row h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .pd-unique-stats-row {
        margin-top: 30px;
        padding: 20px;
    }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
    .home-banner-wrap {

        height: 630px;
    }

    .bnt-elmnt-2 {
        bottom: 0;
    }

    .banner-product-wrap {
        margin-top: -48px;
    }

    .bnr-prdct-box h3 {
        font-size: 18px;
    }

    .bnr-prdct-box h3 {
        margin-bottom: 8px;
    }

    .heading {
        font-size: 30px;
    }

    .all-in-one-left {
        flex-direction: column;
        gap: 0px
    }

    .all-in-one-left-inn-cnt {

        margin-top: -75px;
    }

    .all-in-one {
        padding: 30px 0px 60px;
    }

    .all-in-one-img-1 {
        width: 50px;
    }

    .all-in-one-img-2 {
        width: 40px;
    }

    .smrt-prodt-list-inn {
        padding: 15px;
    }

    .smrt-prodt-list {
        padding: 80px 0px 45px;
    }

    .testimonials {
        padding: 60px 0px;
    }

    .testimonials-left {
        flex-direction: column;
    }

    .tsti-icon {
        width: 51px;
    }

    .testimonials-wrap {
        padding: 50px 45px 60px;
    }

    .funfact-numbers {

        padding: 60px 0px;
    }

    .ftr-col {
        flex: 0 0 50%;
    }

    :root {
        --logo-show: 3;
    }

    .artcl-left-cnt {
        flex-direction: column;
    }

    .btn-get-demo {
        padding: 10px 35px 10px 10px;
    }

    .btn-get-demo:after {

        right: 14px;
        top: 11px;
        font-size: 13px;
    }

    .login-btns .btn-sign-up {

        padding: 10px 14px;
    }

    .button-style a,
    .button-style-span {
        max-width: initial;
        width: auto;
    }
    .pd-challenges-grid {
   
    padding: 20px 5px;}
    .pd-pillars {
   
    padding: 20px;}
    .clients-wrapper {
    gap: 15px 3%;
}
    .clients-wrapper li {
        flex: 0 0 48%;
    }
    .bnr-prdct-box {
        flex: 0 0 100%;
    }
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
    .home-banner-wrap {
        height: 725px;
    }

    .bnt-elmnt-2 {

        right: 0;
    }

    .banner-product-wrap,
    .all-in-btn-wrap {
        flex-direction: column;
    }

    :root {
        --logo-show: 2;
    }

    .smrt-prodt-list-inn .list {
        flex-direction: column;
    }

    .heading {
        font-size: 26px;
    }

    .all-in-one-right {
        padding: 25px;
    }

    .smrt-prodt-list-left {
        padding: 18px;
    }

    .smrt-prodt-list-right .smrt-prodt-list-img-1 {

        margin-left: -45px;
    }

    .smrt-prodt-list-img-2 {

        left: 4px;
        top: 92%;
    }

    .contact-section-hm-wrap {
        flex-direction: column;
    }

    .artcl-right-cnt h2 {
        font-size: 20px;
    }

    .artcl-left-cnt h4 {
        margin-bottom: 15px;

        font-size: 20px;
    }

    .right-header {

        gap: 5px;
    }

    .cont-info-list {
        padding: 0 12px;
    }
        .pd-stat-grid-row {
        grid-template-columns: repeat(1, 1fr);
    }
}




/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}



