/* DETAILS
==================================================
	Theme Name: CFOcus (Andres Arango)
==================================================
*/

@charset "utf-8";

@font-face {
    font-family: 'Gilroy regular';
    src: url('../webfonts/Gilroy-Regular.eot');
    src: url('../webfonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Gilroy-Regular.woff2') format('woff2'),
        url('../webfonts/Gilroy-Regular.woff') format('woff'),
        url('../webfonts/Gilroy-Regular.ttf') format('truetype'),
        url('../webfonts/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy Medium';
    src: url('../webfonts/Gilroy-Medium.eot');
    src: url('../webfonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Gilroy-Medium.woff2') format('woff2'),
        url('../webfonts/Gilroy-Medium.woff') format('woff'),
        url('../webfonts/Gilroy-Medium.ttf') format('truetype'),
        url('../webfonts/Gilroy-Medium.svg#Gilroy-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy SemiBold';
    src: url('../webfonts/Gilroy-SemiBold.eot');
    src: url('../webfonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Gilroy-SemiBold.woff2') format('woff2'),
        url('../webfonts/Gilroy-SemiBold.woff') format('woff'),
        url('../webfonts/Gilroy-SemiBold.ttf') format('truetype'),
        url('../webfonts/Gilroy-SemiBold.svg#Gilroy-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy Bold';
    src: url('../webfonts/Gilroy-Bold.eot');
    src: url('../webfonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Gilroy-Bold.woff2') format('woff2'),
        url('../webfonts/Gilroy-Bold.woff') format('woff'),
        url('../webfonts/Gilroy-Bold.ttf') format('truetype'),
        url('../webfonts/Gilroy-Bold.svg#Gilroy-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* @font-face {
    font-family: 'Gilroy extra bold';
    src: url('Gilroy-Heavy.eot');
    src: url('Gilroy-Heavy.eot?#iefix') format('embedded-opentype'),
        url('Gilroy-Heavy.woff2') format('woff2'),
        url('Gilroy-Heavy.woff') format('woff'),
        url('Gilroy-Heavy.ttf') format('truetype'),
        url('Gilroy-Heavy.svg#Gilroy-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
} */
@font-face {
    font-family: 'Gilroy extra bold';
    src: url('../webfonts/Gilroy-Black.eot');
    src: url('../webfonts/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Gilroy-Black.woff2') format('woff2'),
        url('../webfonts/Gilroy-Black.woff') format('woff'),
        url('../webfonts/Gilroy-Black.ttf') format('truetype'),
        url('../webfonts/Gilroy-Black.svg#Gilroy-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* General Transitions */
    --transition-common: all 0.4s ease;

    /* Colors */
    --color-accent: #0925BD;
    --rgb-accent: 230, 57, 70;
    --color-primary: #0F0C2F; 
    --color-secondary: #444444;
    --color-tertiary: #EEF1FF; /* 3rd */
    --color-quaternary: #222222; /* 4th */
    --color-orange:#F14B01;
    --color-white: #fff;
    --color-black: #000;

    /* Font Settings */
    --ff-base: 'Gilroy Medium';
    --ff-title: 'Gilroy Bold';
    --ff-gilroy-extrabold:'Gilroy extra bold';
    --ff-gilroy-semibold:'Gilroy SemiBold';
    --ff-gilroy-regular: 'Gilroy regular';
    --ff-awesome: "Font Awesome 6 Free";
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 700;

    /* Font Sizes */
    --f-size-XXXXL: 60px;
    --f-size-XXXL: 45px;
    --f-size-XXL: 35px;
    --f-size-XL: 30px;
    --f-size-L: 27px;
    --f-size-M: 24px;
    --f-size-S: 18px;
    --f-size-ES: 18px;
    --f-size-Body: 20px;

    /* Layout Adjustments */
    --margin-title: 0 0 25px 0;
    --margin-paragraph: 0 0 25px 0;
    --gap-40:40px;
    --gap-50:50px;

    --border-radius-image: 10px;
    --padding-height: clamp(50px, 6.76563vw, 100px);

    /* Form Styling */
    --form-height: 60px;
    --form-font-color: #44444480;
    --form-placeholder-color: #44444480 ;
    --form-border-radious: 8px;
    --form-holder-bg: #ffffff;
}
@media only screen and (max-width: 1599px) {
    :root{
         /* Font Sizes */
    --f-size-XXXXL: 48px;
    --f-size-XXXL: 38px;
    --f-size-XXL: 32px;
    --f-size-XL: 26px;
    --f-size-L: 24px;
    --f-size-M: 22px;
    }
}
@media only screen and (max-width: 1399px) {
    :root{
        --gap-40:30px;
        --gap-50:35px;

        --form-height: 50px;
    }
}
@media only screen and (max-width: 1199px) {
    :root{
         /* Font Sizes */
    --f-size-XXXXL: 38px;
    --f-size-XXXL: 32px;
    --f-size-XXL: 28px;
    --f-size-XL: 24px;
    --f-size-L: 20px;
    --f-size-M: 18px;
    --f-size-S: 18px;
    --f-size-ES: 16px;
    --f-size-Body: 18px;
    }
}
@media only screen and (max-width: 991px) {
    :root{
         /* Font Sizes */
    --f-size-XXXXL: 32px;
    --f-size-XXXL: 28px;
    --f-size-XXL: 26px;
    --gap-40:25px;
    --gap-50:25px;
    
    }
}

@media only screen and (max-width: 575px) {
    :root{
         /* Font Sizes */
    --f-size-XXXXL: 30px;
    --f-size-XXXL: 26px;
    --f-size-XXL: 24px;
    --f-size-XL: 22px;
    --f-size-L: 18px;
    --f-size-M: 16px;
    --f-size-S: 16px;
    --f-size-ES: 15px;
    --f-size-Body: 16px;
    }
}

/* GLOBAL SETTINGS START HERE ========================== */
/* GLOBAL SETTINGS START HERE ========================== */
/* GLOBAL SETTINGS START HERE ========================== */
* {
    box-sizing: border-box;
}
html, body { overflow-x: hidden; }
body { font-family: var(--ff-base); font-weight: var(--fw-regular); font-size: var(--f-size-Body); color: var(--color-secondary); margin: 0; }
p { margin-bottom: 0; line-height: 1.4;}
p:not(:last-child) { margin: var(--margin-paragraph); }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-title); font-weight: var(--fw-regular); color: var(--color-primary); line-height: 1.1; margin: var(--margin-title); }
h1 { font-size: var( --f-size-XXXXL); }
h2 { font-size: var( --f-size-XXXL); }
h3 { font-size: var( --f-size-XXL); }
h4{ font-size: var(--f-size-XL);}
h6{ font-size: var(--f-size-Body);}
/* h4 { font-size: var(--f-size-M); }
h5 { font-size: var(--f-size-S); }
h6 { font-size: var(--f-size-Body); } */
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition-common); color: inherit; }
a:link, a:visited, a:focus, a:hover { transition: var(--transition-common);}
ul { list-style: none; margin: 0; padding: 0; }

/* Utility Classes */
.padding-common { padding-top: var(--padding-height); padding-bottom: var(--padding-height); }
.background-cover { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.overlay-content { position: relative; z-index: 3; }
.responsive-image-wrapper { position: relative; overflow: hidden; }
.responsive-image-wrapper img { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.deep-bg-color{background: linear-gradient(231.27deg, #00ADFD 14.64%, #0747CD 100%); }
.fade-bg{ background: #F6F6F6;}
.mb-50 { margin-bottom: var(--gap-50); }

.point-lits ul li:not(:last-child){ margin-bottom: 15px;}
.point-lits ul li{ position: relative; padding-left: 40px;}
.point-lits ul li::before { content: ""; width: 20px; height: 20px; background: url(../images/tick.svg); background-position: center; background-size: 100% !important; background-repeat: no-repeat; border-radius: 50%; position: absolute; top: 8px; left: 0; }

.slick-arrow{ z-index: 5; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: #00ADFD !important; border-radius: 50%; cursor: pointer; box-shadow: 0 0 15px 1px rgba(0,0,0,0.25); transition: var(--transition-common);}
.slick-arrow:hover{ box-shadow: 0 0 15px 1px rgba(0,0,0,0.55);}
.slick-arrow::before{ content: ""; display: block;}
.slick-prev:before, .slick-prev-button::before { content: ""; background: url(../images/prev-arrow.svg); background-position: center; background-size: 100%; background-repeat: no-repeat; display: block; width: 24px; height: 24px; opacity: 1; }
.slick-next:before, .slick-next-button::before { content: ""; background: url(../images/next-arrow.svg); background-position: center; background-size: 100%; background-repeat: no-repeat; display: block; width: 24px; height: 24px; opacity: 1; }
.slick-arrow:hover { background: var(--color-orange) !important;}

.what-we-do-slider .slick-arrow{ background: var(--color-orange) !important; border: 0px solid #fff;}
.what-we-do-slider .slick-arrow:hover{ border-width: 5px;}



/*================ Button Styles ================*/
.button__primary, a.button__primary { display: inline-block; vertical-align: top; background: var(--color-accent); border: 0; border-radius: 100px; font-size: var(--f-size-S); font-family: var(--ff-title); font-weight: var(--fw-regular); line-height: 1; color: var(--color-white); text-align: center; text-transform: uppercase; padding: 20px 50px; position: relative; transition: var(--transition-common); }
.button__primary:hover, a.button__primary:hover { background: var(--color-orange); color: var(--color-white); }

.button__primary.orange_button__primary{ background: var(--color-orange);}
.button__primary.orange_button__primary:hover{ background: var(--color-quaternary);}

@media only screen and (max-width: 1399px) {
    .slick-arrow{ width: 55px; height: 55px;}
    .slick-prev:before, .slick-next:before, .slick-arrow::before{ width: 20px; height: 20px;}

    .button__primary, a.button__primary { padding: 18px 35px;}
}
@media only screen and (max-width: 767px) {
    .slick-arrow{ width: 45px; height: 45px;}
    .slick-prev:before, .slick-next:before, .slick-arrow::before{ width: 18px; height: 18px;}

    .button__primary, a.button__primary { padding: 15px 30px; }
}

/*================ Form Control Styles ================*/
.form-row { margin-bottom: 15px; }
.form-control { background-color: var(--form-holder-bg); height: var(--form-height); border: 1px solid #B5B9CD !important; border-radius: 0;  box-shadow: none !important; color: var(--form-font-color); font-size: var(--f-size-ES); padding-right: 20px; padding-left: 20px; }
select.form-control { background-image: url(../images/select-arrow.svg); background-position: right 15px center; background-size: 15px; background-repeat: no-repeat; padding-right: 35px; color: #44444480; cursor: pointer; }
textarea.form-control { height: 125px; resize: none; }
.form-control::-moz-placeholder { color: var(--form-placeholder-color); opacity: 1; font-weight: 400; }
.form-control:-ms-input-placeholder { color: var(--form-placeholder-color); font-weight: 400; }
.form-control::-webkit-input-placeholder { color: var(--form-placeholder-color); font-weight: 400; }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}
@media only screen and (max-width: 1199px){
    input.form-control{ height: 55px;}
}
@media only screen and (min-width: 1600px){
    .container{ max-width: 1424px;}
}
/* @media only screen and (min-width: 1740px){
    .container{ max-width: 1624px;}
} */
/* GLOBAL SETTINGS END HERE ========================== */
/* GLOBAL SETTINGS END HERE ========================== */
/* GLOBAL SETTINGS END HERE ========================== */

/* HEADER PART START HERE ========================== */
/* HEADER PART START HERE ========================== */

/* hamburger menu design */
.hamburger-nav { display: none; vertical-align: top; width: 32px; height: 26px; position: relative; margin: 0 0 0 15px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; -o-transition: .5s ease-in-out; transition: .5s ease-in-out; cursor: pointer; margin-top: 0; z-index: 9; }
.hamburger-nav span { display: block; position: absolute; height: 2px; width: 100%; background: var(--color-secondary); border-radius: 9px; opacity: 1; left: 0; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out; -o-transition: .25s ease-in-out; transition: .25s ease-in-out; }
.hamburger-nav span:nth-child(1) { top: 2px; -webkit-transform-origin: left center; -moz-transform-origin: left center; -o-transform-origin: left center; transform-origin: left center; }
.hamburger-nav span:nth-child(2) { top: 10px; -webkit-transform-origin: left center; -moz-transform-origin: left center; -o-transform-origin: left center; transform-origin: left center; }
.hamburger-nav span:nth-child(3) { top: 18px; -webkit-transform-origin: left center; -moz-transform-origin: left center; -o-transform-origin: left center; transform-origin: left center; }

.hamburger-nav-close { vertical-align: top; width: 30px; height: 24px; position: relative; margin: 0 0 0 15px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; -o-transition: .5s ease-in-out; transition: .5s ease-in-out; cursor: pointer; margin-top: 0; z-index: 9; }
.hamburger-nav-close span { display: block; position: absolute; height: 2px; width: 100%; background: var(--color-white); border-radius: 9px; opacity: 1; left: 0; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out; -o-transition: .25s ease-in-out; transition: .25s ease-in-out; }
.hamburger-nav-close span:nth-child(1) { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); top: 10px; left: 3px; }
.hamburger-nav-close span:nth-child(2) { width: 0%; opacity: 0; }
.hamburger-nav-close span:nth-child(3) { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); top: 10px; left: 2px; }

.header-wraper { position: fixed; z-index: 999; top: 0; right: 0; left: 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); padding: 16px 0;}
.site-logo-wrap { height: 42px; transition: var(--transition-common); }
.site-logo-wrap * { display: inline-block; height: 100%; transition: var(--transition-common); }
/* .normal-logo {display: block;}
.sticky-logo {display: none;}
body.header-sticky .normal-logo {display: none;}
body.header-sticky .sticky-logo {display: block;} */

/* body.header-sticky .site-logo-wrap img {
    filter: brightness(0) invert(1);
} */
/* .desktop-menu{ margin-right: 10%;} */
.header-wraper .desktop-menu li { font-weight: var(--fw-bold); margin: 0 18px; padding: 14px 0; position: relative;}
.header-wraper .desktop-menu li a { padding-top: 5px; padding-bottom: 5px; font-family: var(--ff-gilroy-semibold); font-weight: var(--fw-regular); position: relative;}
.header-wraper .desktop-menu li a::after{ content: ""; background: var(--color-orange); width: 0; height: 1px; position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; margin: 0 auto; opacity: 0; visibility: hidden; transition: var(--transition-common);}
.header-wraper .desktop-menu li a:hover{ color: var(--color-orange);}
.header-wraper .desktop-menu li a:hover::before { border-color: var(--color-orange); }


.header-wraper .desktop-menu li.current-menu-item > a{ font-family: var(--ff-gilroy-extrabold);}
.header-wraper .desktop-menu li.current-menu-item > a::after{ width: 100%; opacity: 1; visibility: visible;}
.header-wraper .desktop-menu li li{ padding: 0;}
/* sub-menu start */
.header-wraper .menu-item-has-children { position: relative; }
.header-wraper .menu-item-has-children .sub-menu { background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); width: 215px; position: absolute; top: calc(100% - 10px); opacity: 0; visibility: hidden; box-shadow: 0 8px 15px 0px rgb(0 0 0 / 10%); overflow: hidden; transition: var(--transition-common);}
.header-wraper .menu-item-has-children .sub-menu li { margin: 0; font-size: var(--f-size-ES);}
.header-wraper .menu-item-has-children .sub-menu a { display: block; padding: 10px 20px; border-bottom: 1px solid  transparent;}
.header-wraper .menu-item-has-children .sub-menu a:hover { border-color: var(--color-white); color: var(--color-orange);}
.header-wraper .menu-item-has-children:hover .sub-menu { transform: translateY(10px); opacity: 1; visibility: visible; }
.header-wraper .menu-item-has-children>a { padding-right: 25px; }
.header-wraper .menu-item-has-children>a::before { position: absolute; content: ''; border: solid var(--color-secondary); border-width: 0 2px 2px 0; display: inline-block; padding: 4px; transform: rotate(45deg); -webkit-transform: rotate(45deg); right: 5px; top: 13px; transition: var(--transition-common); }
/* sub-menu end */
.header-wraper .social-icons { margin: 0 20px; }
.header-button-row { margin-left: 120px;}

/* Mobile Menu */
.mobile-menu { display: none; background: var(--color-primary); width: 420px; height: 100vh; padding-bottom: 50px; position: fixed; top: 0; right: -420px; overflow: hidden; z-index: 999; transition: var(--transition-common); }
.mobile-menu .top-row { padding: 20px; }
.mobile-menu  .logo-wrap{ height: 25px;}
.mobile-menu  .logo-wrap *{ display: inline-block; width: auto; height: 100%;}
.mobile-menu .logo-wrap img{ filter: brightness(0) invert(1);}
.mobile-menubar { height: calc(100vh - 120px); padding: 20px 0; overflow: auto; }
.mobile-menu .mobile-menubar li { opacity: 0; -webkit-transform: translateX(-150px); transform: translateX(-150px); -webkit-transition: -webkit-transform 0.4s, opacity 0.4s; transition: transform 0.4s, opacity 0.4s;  padding: 0 20px; position: relative;     border-bottom: 1px dashed var(--color-accent);}
.mobile-menu .mobile-menubar li li{ padding: 0;}
.mobile-menu .mobile-menubar li li:last-child{ border-bottom: 0;}
.mobile-menu .mobile-menubar li a{ display: inline-block; padding: 10px 0; color: var(--color-white);}
.mobile-menu .mobile-menubar li .arrow { display: flex; align-items: center; justify-content: end; width: 30px; height: 30px; color: #fff; position: absolute; top: 10px; right: 20px; }
.menu-open .mobile-menu { right: 0; }
.menu-open .mobile-menu .mobile-menubar li { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
.menu-open .mobile-menu .mobile-menubar li:nth-child(2) { transition-delay: 0.24s; }
.menu-open .mobile-menu .mobile-menubar li:nth-child(3) { transition-delay: 0.32s; }
.menu-open .mobile-menu .mobile-menubar li:nth-child(4) { transition-delay: 0.40s; }
.menu-open .mobile-menu .mobile-menubar li:nth-child(5) { transition-delay: 0.48s; }
.menu-open .mobile-menu .mobile-menubar li:nth-child(6) { transition-delay: 0.56s; }
.menu-open .mobile-menu .mobile-menubar li:nth-child(7) { transition-delay: 0.56s; }
html:has(.menu-open){ height: 100vh; overflow: hidden;}


/* ~~ header sticky start ~~ */
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

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

.header-sticky .header-wraper { box-shadow: 4px 4px 15px 0px rgb(0 0 0 / 10%); animation: slide-down 0.5s; z-index: 999;}
.header-sticky .top-header { display: none;}
/* .header-sticky .header-button-row a.button__primary{ background: var(--color-white); color: var(--color-accent);}
.header-sticky .header-button-row a.button__primary:hover{ background: var(--color-orange); color: var(--color-white);} */
/* ~~ header sticky end ~~ */

.no-banner .header-wraper, .error404 .header-wraper, body.single .header-wraper  { position: relative; /*background: #000000;*/ background: rgba(255, 255, 255, 0.85);}
.no-banner .header-wraper { position: relative; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); box-shadow: 4px 4px 15px 0px rgb(0 0 0 / 10%);}
.header-sticky.no-banner .header-wraper, .header-sticky.error404 .header-wraper, .header-sticky.single .header-wraper{ position: fixed;}
.header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 90px;}

/* .page-template-default .header-wraper{ background: rgba(7, 71, 205, 0.9); backdrop-filter: blur(20px); box-shadow: 4px 4px 15px 0px rgb(0 0 0 / 10%);}
.page-template-default .header-wraper .header-button-row a.button__primary{ background: var(--color-white); color: var(--color-accent);}
.page-template-default .header-wraper .header-button-row a.button__primary:hover{ background: var(--color-orange); color: var(--color-white);}
.page-template-default main{ padding-top: 97px;} */

@media only screen and (max-width: 1599px) {
    .site-logo-wrap{ height: 40px;}
    .header-wraper .desktop-menu li{ margin: 0 15px;}
    .header-wraper .menu-item-has-children>a::before{ top: 10px;}
    .header-button-row { margin-left: 90px;}
    /* .page-template-default .header-sticky main{ padding-top: 92px;} */

}
@media only screen and (max-width: 1399px){
    .site-logo-wrap { height: 35px; }
    .header-button-row { margin-left: 60px;}
    /* .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 90px;} */
    /* .page-template-default .header-sticky main{ padding-top: 90px;} */
}
@media only screen and (max-width: 1199px){
    .header-wraper .desktop-menu li { margin: 0 6px; }
    .header-button-row { margin-left: 20px; }
    .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 87px;}
}
@media only screen and (max-width: 991px) {
    .desktop-menu { display: none; }
    .hamburger-nav { display: block; }
    .mobile-menu { display: block; }
    .mobile-menu .logo-wrap{ opacity: 0; visibility: hidden;}
    .mobile-menu .sub-menu { display: none; width: calc(100% - 20px); margin-left: auto; }
    .header-button-row { margin-left: 0;}
    .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 86px;}
    /* .page-template-default .header-sticky main{ padding-top: 86px;} */
}
@media only screen and (max-width: 767px){
    .header-wraper .social-icons{ display: none;}
    .mobile-menu .social-icons { display: block !important; position: absolute; bottom: 0; right: 0; left: 0; background: #fff; padding: 10px 20px; }
    .mobile-menu .social-icons li{ width: 33.33%; margin: 0; text-align: center;}
    .mobile-menu .social-icons li a{ color: var(--color-orange);}

    .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 80px;}
    /* .page-template-default .header-sticky main{ padding-top: 80px;} */
}
@media only screen and (max-width: 575px){
    .site-logo-wrap { height: 25px;}
    .mobile-menu{ width: 100vw; right: -100vw;}
    .mobile-menu .logo-wrap{ opacity: 1; visibility: visible;}
    .mobile-menu .mobile-menubar li{ font-size: 18px;}
    .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 78px;}
    /* .page-template-default .header-sticky main{ padding-top: 78px;} */
}
@media only screen and (max-width: 419px){
    .header-wraper{ padding: 12px 0;}
    .header-wraper a.button__primary { padding: 12px 18px; font-size: 15px; }
    .mobile-menu  .logo-wrap { height: 28px; }
    .header-sticky.no-banner main, .header-sticky.error404 main, .header-sticky.single main{ padding-top: 63px;}
    /* .page-template-default .header-sticky main{ padding-top: 63px;} */
}
/* HEADER PART END HERE ========================== */
/* HEADER PART END HERE ========================== */

/* HOME PAGE START HERE ==========================*/
/* HOME PAGE START HERE ==========================*/
.hero-banner .hero-bg { position: relative; padding-bottom: 50%; }
.hero-banner .hero-bg>* { position: absolute; z-index: 3; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner .hero-info { position: absolute; z-index: 5; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-end; padding-bottom: 8%;}
.hero-banner .hero-info .banner-info { max-width: 50%; }
.hero-banner .hero-info .banner-info h1, .hero-banner .hero-info .banner-info p{ color: var(--color-white);}
.hero-banner .hero-bg.hero-video::before { content: ""; background: rgba(0, 0, 0, 0.4); position: absolute; z-index: 4; top: 0; right: 0; bottom: 0; left: 0; }
.hero-banner-slider.slick-dotted { margin: 0; }
.hero-banner-slider .slick-dots { display: flex; bottom: 5%; left: 0; right: 0; margin: 0 auto; padding-right: calc(var(--bs-gutter-x)* .5); padding-left: calc(var(--bs-gutter-x)* .5);}
.hero-banner-slider .slick-dots li { width: 13.5px; height: 13.5px; border-radius: 50%; overflow: hidden; margin: 0; }
.hero-banner-slider .slick-dots li:not(:last-child){ margin-right: 8px;}
.hero-banner-slider .slick-dots li button{ width: 100%; height: 100%; border-radius: 50%; padding: 0; font-size: 0; transition: var(--transition-common); background: var(--color-white); opacity: 0.3;}
.hero-banner-slider .slick-dots li button::before{ display: none;}
.hero-banner-slider .slick-dots li.slick-active button{ opacity: 1;}

.social-icons ul { display: flex; flex-wrap: wrap; align-items: center; }
.social-icons ul li:not(:last-child){ margin-right: 50px;}
.hero-banner .social-icons{ margin-top: var(--gap-50);}
.hero-banner .social-icons li:first-child{ margin-left: 0;}
.hero-banner .social-icons li:last-child{ margin-right: 0;}
.hero-banner .social-icons li a { letter-spacing: 0.3rem; text-transform: uppercase; font-family: var(--ff-gilroy-regular); font-size: 16px; color: var(--color-white);}
.hero-banner .social-icons li a svg{ font-size: var(--f-size-S);}
.hero-banner .social-icons li a:hover{ color: var(--color-orange);}

/* .slider-dots-outer{ position: absolute; right: 0; bottom: 9%; left: 0;}
.hero-banner-dots-slider .slider-col { width: fit-content !important; margin-right: 8px; }
.slider-dots-outer .dots { width: 14px; height: 14px; background: var(--color-white); border-radius: 50%; cursor: pointer; opacity: 0.3; transition: var(--transition-common);}
.slider-dots-outer .slick-current .dots{ opacity: 1;} */

/* .services-col{ margin-top: 25px;} */
.services-slider .slick-list{ margin: 0 -12px;}
.services-slider .services-col{ padding: 0 12px;}
.services-slider .slick-arrow.slick-disabled{ opacity: 0;}
/* @media only screen and (min-width: 768px){
    .services-col:nth-child(-n+2){ margin-top: 0;}
}
@media only screen and (min-width: 992px){
    .services-col:nth-child(-n+3){ margin-top: 0;}
} */
.services-card-box a{ display: block;}
.services-card-box .image-wraper { padding-bottom: 130%; }
.services-card-box .image-wraper::before{ content: ""; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; transition: var(--transition-common);}
.services-card-box .image-wraper::after{ content: ""; background: linear-gradient(180deg, rgba(9, 37, 189, 0) 0%, #0925BD 100%); position: absolute; z-index: 2; top: 0; right: 0; bottom: 0; left: 0; transition: var(--transition-common); opacity: 0;}
.services-card-box .info-wraper { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; padding: 30px 42px; }
.services-card-box .info-wraper .icon { height: 90px; width: fit-content; margin: 0 auto 25px; opacity: 0; visibility: hidden; transition: var(--transition-common);}
.services-card-box .info-wraper .icon img{ height: 100%;}
.services-card-box .info-wraper h3{ margin-bottom: 0; color: var(--color-white);}

@keyframes bouncing {
	from, to {
	  transform: scale(1, 1);
	}
	25% {
	  transform: scale(0.9, 1.1);
	}
	50% {
	  transform: scale(1.1, 0.9);
	}
	75% {
	  transform: scale(0.95, 1.05);
	}
}
@media only screen and (min-width: 1200px){
    .services-card-box:hover .image-wraper::after{ opacity: 1; }
    .services-card-box:hover .icon{transform: scale(1.01) translateY(-2px); opacity: 1; visibility: visible;}
}

.services-card-box:hover .icon img{ animation: bouncing 0.5s 0.3s;}

@media only screen and (max-width: 1199px){
    .services-card-box .image-wraper::after{ opacity: 1; }
    .services-card-box .info-wraper .icon{transform: scale(1.01) translateY(-2px); opacity: 1; visibility: visible;}
}

.clients-section .section-title{ margin-bottom: var(--gap-40);}
.company-logo-wrap{ height: 135px; display: flex; align-items: center; justify-content: center; padding: 10px; border: 2px solid transparent; transition: var(--transition-common);}
.company-logo-wrap img{ display: inline-block; width: auto; max-height: 90px;}
.company-logo-wrap:hover{ border-color: var(--color-accent);}
.clients-slider .slick-list{ margin: 0 -5px;}
.clients-slider .slick-slide { padding: 0 5px; }

.why-choose-section  .container-fluid{ padding: 0; max-width: 2200px;}
.why-choose-section .image-wraper { padding-bottom: 80%; height: 100%;}
.why-choose-section  .info-wraper { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 50px; background: var(--color-tertiary); }
.why-choose-section  .info-wraper .info-inner { padding-right: 15%; }

.what-we-do-section { background: linear-gradient(231.27deg, #00ADFD 14.64%, #0747CD 100%); position: relative;}
.what-we-do-section::before { content: ""; background: url(../images/what-we-do-bg-design.svg); background-repeat: no-repeat !important; background-position: center !important; background-size: 100% !important; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; width: 65%; height: 100%; margin: auto; }
.what-we-do-section .title-row{ margin-bottom: var(--gap-40);}
.what-we-do-section .title-row h2{ margin-bottom: 0;}
.what-we-do-section .title-row h2, .what-we-do-section .title-row p{ color: var(--color-white);}
.what-we-do-section .title-row .button-wrap { text-align: right; }

.what-we-do-card .image-wraper{ padding-bottom: 102%;}
.what-we-do-card .image-wraper::before { content: ""; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 97.11%); position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: 50%; }

.what-we-do-card .info-wraper { background: var(--color-accent); padding: 30px; transition: var(--transition-common);}
.what-we-do-card .info-wraper *{ color: var(--color-white); transition: var(--transition-common);}
.what-we-do-card .info-wraper h3{ font-size: var(--f-size-XL);}
.what-we-do-card .info-wraper p{ font-size: var(--f-size-S);    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
.what-we-do-card .info-wraper a{ font-size: var(--f-size-S); font-family: var(--ff-title); text-transform: uppercase; text-decoration: underline;}

.what-we-do-card:hover .info-wraper{ background: var(--color-white);}
.what-we-do-card:hover .info-wraper h3{ color: var(--color-primary);}
.what-we-do-card:hover .info-wraper p{ color: var(--color-secondary);}
.what-we-do-card:hover .info-wraper a{ color: var(--color-orange);}

.what-we-do-slider .slick-list{ margin: 0 -25px;}
.what-we-do-slider .slick-slide{ padding: 0 25px;}
.what-we-do-slider .slick-prev { left: -35px; }
.what-we-do-slider .slick-next { right: -35px; }

.testimonial-section { background: #FFE4D8; }
.testimonial-section::before { content: ""; background: url(../images/quote-top.svg); background-position: top center; background-repeat: no-repeat; background-size: 100%; position: absolute; z-index: 1; width: 34%; height: 45%; top: 0; left: 0; }
.testimonial-section::after { content: ""; background: url(../images/quote-bottom.svg); background-position: bottom center; background-repeat: no-repeat; background-size: 100%; position: absolute; z-index: 1; right: 0; bottom: 0; width: 12%; height: 20%; }
.testimonial-section .section-title{ margin-bottom: var(--gap-40);}
.tab-wraper ul.nav-tabs { justify-content: center; width: fit-content; margin: 0 auto var(--gap-40); background: #fff; box-shadow: 0px 4px 10px 0px #00000040; padding: 5px; border: 0; border-radius: 100px; overflow: hidden; }
.tab-wraper ul.nav-tabs button { border: 0; border-radius: 100px; padding: 20px 70px; text-transform: uppercase; font-size: var(--f-size-S); font-family: var(--ff-title); color: var(--color-accent); transition: var(--transition-common);}
.tab-wraper ul.nav-tabs button.active { background: var(--color-orange); color: var(--color-white);}

.testimonial-box { background: #FFFFFF; padding: 40px; transition: var(--transition-common);}
.testimonial-box .review-star-wrap { text-align: center; color: #F14B01; margin-bottom: 30px; }
.testimonial-box .review-star-wrap img{ display: inline-block;}
.testimonial-box .review-text p{ color: var(--color-primary); font-family: var(--ff-gilroy-semibold); font-style: italic;}
.testimonial-box .review-profile-row { margin-top: 30px;}
.testimonial-box  .author-profile { width: 68px; height: 68px; border-radius: 50%; margin-right: 15px; overflow: hidden; }
.testimonial-box .author-info h4{ font-size: var(--f-size-M); color: var(--color-primary); margin-bottom: 0;}
.testimonial-box .author-info p{ font-size: var(--f-size-S); font-style: italic;}
.slick-center .testimonial-box{ box-shadow: 0px 4px 10px 0px #00000040; }

.testimonial-slider{  padding-bottom: 90px;}
.testimonial-slider .slick-list{ margin: 0 -25px; padding: 20px 0 !important;}
.testimonial-slider .slick-slide { padding: 0 25px; }
.testimonial-slider-outer .arrow-row{ margin-top: 30px;}
.testimonial-slider-outer .slick-arrow {  top: auto; bottom: 0; left: 50%; right: auto; }
.testimonial-slider-outer .slick-prev { transform: translate(-50% , 0); left: calc(50% - 40px); }
.testimonial-slider-outer .slick-next { transform: translate(-50% , 0); left: calc(50% + 40px); }

.testimonial-box .review-video { position: relative; padding-bottom: 55%; }
.testimonial-box .review-video video { position: absolute; z-index: 5; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
/* .blog-section::before { content: ""; background: url(../images/blog-bg-design.svg); background-repeat: no-repeat !important; background-position: center !important; background-size: 100% !important; position: absolute; z-index: 1; bottom: -5%; left: -2%; width: 35%; height: 70%; } */
.latest-blog-section .bg-design-image-blog { position: absolute; z-index: 1; bottom: -2%; left: -2%; width: 26%; }
.latest-blog-section .section-title{ margin-bottom: var(--gap-40);}
.latest-blog-section .section-title h2{ margin-bottom: 0;}
.featured-blog-card .featured-image { padding-bottom: 86%; }
.featured-blog-card .featured-image::before{ content: ""; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); position: absolute; z-index: 3; top: 0; right: 0; bottom: 0; left: 0;}
.featured-blog-card  .featured-info { padding: 40px; position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; }
.featured-blog-card p{ color: var(--color-white);}
.featured-blog-card .featured-info a{ color: var(--color-white);}
.featured-blog-card .featured-info a:hover{ color: var(--color-orange);}
.featured-blog-card .short-description{ margin-bottom: 20px;}
.featured-blog-card .button-wrap .link-btn { display: flex; align-items: center; justify-content: center; width: 67px; height: 67px; background: #00ADFD; border-radius: 50%; cursor: pointer; transition: var(--transition-common); }
.featured-blog-card .button-wrap .link-btn:hover{ background: var(--color-orange);}


@media only screen and (min-width: 992px){
    .latest-blog-section .featured-blog-wraper{ display: flex; flex-direction: column; height: calc(100% - 91px);}
    .latest-blog-section .featured-blog-card { flex: 1 1 auto; }
    .latest-blog-section .featured-blog-card .featured-image{ height: 100%;}
}
@media only screen and (min-width: 1400px){
    .latest-blog-section .featured-blog-wraper{ height: calc(100% - 110px);}
}
@media only screen and (min-width: 1600px){
    .latest-blog-section .featured-blog-wraper{ height: calc(100% - 112px);}
}



.catagory{ margin-bottom: 15px;}
.catagory p { color: var(--color-orange); text-transform: uppercase; letter-spacing: 0.6rem; font-family: var(--ff-gilroy-semibold); font-size: 16px; }
.post-date{ margin-bottom: 30px;}
.post-date ul{ display: flex; align-items: center;}
.post-date ul li{ display: flex; align-items: center; color: var(--color-quaternary); line-height: 1.2;}
.post-date ul li:not(:last-child)::after { content: ""; width: 2px; height: 25px; background: var(--color-quaternary); margin: 0 10px; }

.featured-blog-card .post-date ul li{ color: var(--color-white);}
.featured-blog-card .post-date ul li::after{ background: var(--color-white);}
.blog-card { padding: 20px; background: var(--color-tertiary); border: 2px solid transparent; transition: var(--transition-common);}
.blog-card .blog-image { width: 30%; padding-bottom: 36.5%; }
.blog-card .blog-image img{ width: 100%;}
.blog-card .blog-info { width: 70%; padding-left: 40px; }
.blog-card .blog-info h4{ margin-bottom: 15px;}
.blog-card .blog-info h4 a{ color: var(--color-primary);}
.blog-card .blog-info h4 a:hover{ color: var(--color-orange);}
.blog-card .post-date ul li:first-child{ flex: 0 0 auto;}
.blog-card:not(:last-child){ margin-bottom: var(--gap-50);}
.blog-card .short-description p{ display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
.blog-card:hover{ border-color: var(--color-accent);}

.newsletter-section::before{ content: ""; background: #0653D3B2; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0;}
.newsletter-section h2, .newsletter-section h4{ color: var(--color-white);}
.newsletter-section .section-title { max-width: 490px; }
.newsletter-section .section-title h2{ margin-bottom: 0;}
.newsletter-form-outer .form-row { display: flex; align-items: center; }
.newsletter-form-outer .form-row .form-control { flex: 1 1 auto; color: #222222 !important; padding-left: 50px; border: 0 !important; border-radius: 100px; background-color: var(--color-white); background-image: url(../images/mail.svg); background-position: left 15px center; background-repeat: no-repeat; background-size: 25px; }
.newsletter-form-outer .form-row .button__primary{ flex: 0 0 auto; white-space: nowrap; padding: 21px 50px; background: var(--color-orange); margin-left: 10px;}
.newsletter-form-outer .form-row .button__primary:hover{ background: var(--color-primary);}
.mc4wp-response .mc4wp-alert { color: var(--color-white);}
@media only screen and (max-width: 1739px){
    .hero-banner .hero-bg{ padding-bottom: 53%;}
}
@media only screen and (max-width: 1599px){
    .social-icons ul li:not(:last-child){ margin-right: 30px;}
    .why-choose-section  .info-wraper .info-inner { padding-right: 3%; }
    .what-we-do-slider .slick-list{ margin: 0 -15px;}
    .what-we-do-slider .slick-slide{ padding: 0 15px;}
    .testimonial-slider .slick-list{ margin: 0 -15px;}
    .testimonial-slider .slick-slide { padding: 0 15px; }
    .testimonial-box{ padding: 25px;}
}

@media only screen and (max-width: 1399px){
    .social-icons ul li:not(:last-child){ margin-right: 20px;}
    .services-card-box .info-wraper .icon{ height: 70px;}
    .why-choose-section .info-wraper{ padding: 25px;}
    .what-we-do-card .info-wraper{ padding: 20px;}
    .what-we-do-slider .slick-prev{ left: -25px;}
    .what-we-do-slider .slick-next{ right: -25px;}
    .testimonial-slider-outer .slick-prev { left: calc(50% - 34px); }
    .testimonial-slider-outer .slick-next { left: calc(50% + 34px); }
    .testimonial-slider { padding-bottom: 65px; }
    .featured-blog-card .featured-info{ padding: 25px;}
    .featured-blog-card .button-wrap .link-btn{ width: 55px; height: 55px;}
    .blog-card{ padding: 15px;}
    .blog-card .blog-info{ padding-left: 20px;}
    .post-date { margin-bottom: 15px; }
}
@media only screen and (max-width: 1199px){
    .hero-banner .hero-bg{ padding-bottom: 55%;}
    .services-card-box .info-wraper{ padding: 20px;}
    .company-logo-wrap{ height: 110px;}
    .why-choose-section  .info-wraper .info-inner { padding-right: 0; }
    .what-we-do-slider .slick-list{ margin: 0 -10px;}
    .what-we-do-slider .slick-slide{ padding: 0 10px;}
    .tab-wraper ul.nav-tabs button{ padding: 17px 40px;}
    .testimonial-box { padding: 20px 15px; }
    .testimonial-box .review-star-wrap{ margin-bottom: 20px;}
    .testimonial-box .review-profile-row { margin-top: 20px; }
    .testimonial-box .author-profile{ width: 55px; height: 55px;}
    .testimonial-slider .slick-list{ margin: 0 -10px;}
    .testimonial-slider .slick-slide { padding: 0 10px; }
    .featured-blog-card .featured-info { padding: 20px 15px; }
    .newsletter-form-outer .form-row .button__primary{ padding: 18px 40px;}
}
@media only screen and (max-width: 991px){
    .hero-banner .hero-bg{ padding-bottom: 65%;}
    .hero-banner .hero-info .banner-info { max-width: 60%; }
    .social-icons ul li:not(:last-child){ margin-right: 10px;}
    .company-logo-wrap { height: 70px; }
    .company-logo-wrap img{ max-height: 55px;}
    .what-we-do-section .title-row{ max-width: 550px;}
    .what-we-do-section .title-row .title-wrap{ margin-bottom: 15px;}
    .what-we-do-card-outer .button-wrap { margin-top: 25px; }
    .tab-wraper ul.nav-tabs{ margin-bottom: 10px;}
    .featured-blog-wraper{ margin-bottom: 25px;}
    .newsletter-section .section-title{ margin-bottom: 25px;}
    .newsletter-form-outer h4 { margin-bottom: 15px; }
    .newsletter-form-outer .form-row .form-control{ background-size: 18px; padding-left: 40px;}

    .services-slider .slick-list{ padding-right: 85px;}
}
@media only screen and (max-width: 767px){
    .hero-banner .hero-bg { padding-bottom: 80%; }
    .hero-banner .hero-bg img { object-position: 65%;}
    .hero-banner .hero-info{ padding-bottom: 60px; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(1px);}
    .hero-banner .hero-info .banner-info { max-width: 100%; }
    .hero-banner .social-icons{ margin-top: 15px;}
    .hero-banner .social-icons li a span{ display: none;}
    .hero-banner-slider .slick-dots{ bottom: 20px;}
    .services-col:first-child{ margin-top: 0;}
    .testimonial-slider{ padding-bottom: 50px;}
    .testimonial-slider-outer .slick-prev { left: calc(50% - 28px); }
    .testimonial-slider-outer .slick-next { left: calc(50% + 28px); }
    .catagory p{ letter-spacing: 0.3rem;}
    .blog-card .blog-info{ width: 100%; padding: 0;}
    .blog-card .catagory { margin-bottom: 10px; }
    .blog-card .blog-info h4 { margin-bottom: 20px; }
    .blog-card .blog-image { width: 100%; padding-bottom: 85%; margin-bottom: 25px;}

    .services-slider .slick-list{ padding-right: 80px;}
    .services-slider .slick-next{ right: 0;}
    .services-slider .slick-prev{ left: 0;}
}
@media only screen and (max-width: 575px){
    .hero-banner .hero-bg { padding-bottom: 92%; }
    .hero-banner .hero-info .banner-info h1, .hero-banner .hero-info .banner-info p{ margin-bottom: 15px;}
    .why-choose-section .info-wraper { padding: 20px 15px; }
    .what-we-do-card .info-wraper { padding: 20px 15px; }
    .what-we-do-slider .slick-prev { left: -10px; }
    .what-we-do-slider .slick-next { right: -10px; }
    .tab-wraper ul.nav-tabs button { padding: 15px 18px; }
    .newsletter-form-outer .form-row{ flex-wrap: wrap;}
    .newsletter-form-outer .form-row .form-control{ width: 100%; margin-bottom: 15px;}
}
@media only screen and (max-width: 479px){
    .hero-banner .hero-bg { padding-bottom: 105%; }
    .featured-blog-card .featured-info { padding: 20px 12px; }
}
@media only screen and (max-width: 419px){
    .hero-banner .hero-bg { padding-bottom: 115%; }
    .hero-banner .hero-bg img { object-position: 73%; }
    .tab-wraper ul.nav-tabs button { padding: 12px; font-size: 14px; }
    .featured-blog-card .featured-image { padding-bottom: 100%; }
    .featured-blog-card .featured-image::before { background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%); }
    .featured-blog-card .button-wrap .link-btn { width: 50px; height: 50px; }
    .blog-card{ padding: 15px;}
    .blog-card .inner-row { display: block !important; }
    .catagory { margin-bottom: 10px; }
    .post-date { margin-bottom: 10px; } 
}
@media only screen and (max-width: 379px){
    .hero-banner .hero-bg { padding-bottom: 130%; }
}
/* HOME PAGE END HERE ==========================*/
/* HOME PAGE END HERE ==========================*/

/* FOOTER PART START HERE ==========================*/
/* FOOTER PART START HERE ==========================*/
.main-footer{ background: var(--color-quaternary); position: relative;}
.main-footer::before { content: ""; background: url(../images/footer-design.svg); background-repeat: no-repeat; background-position: bottom center; background-size: 100%; position: absolute; z-index: 1; right: -5%; bottom: 0; width: 38%; height: 59%; }
.main-footer .container{ position: relative; z-index: 3;}
.main-footer .top-footer{ padding-bottom: var(--gap-50); border-bottom: 1px solid #FFFFFFCC;}
.main-footer  .logo-wrap{ height: 60px;}
.main-footer  .logo-wrap *{ display: inline-block; width: auto; height: 100%;}
.main-footer li, .main-footer a, .main-footer p, .main-footer h4{ color: var(--color-white);}
.footer-menu-wraper h4{ margin-bottom: var(--gap-40);}
.footer-menu-wraper li{ font-size: var(--f-size-ES);}
.footer-menu-wraper li:not(:last-child){ margin-bottom: 22px;}
.footer-menu-wraper li a:hover{ color: var(--color-orange); letter-spacing: 0.05rem;}
.footer-address { max-width: 215px; }
.bottom-footer{ padding: 25px 0; border-top: 1px solid #FFFFFFCC;}
.bottom-footer p{ font-size: var(--f-size-ES);}
.bottom-footer a:hover{ color: var(--color-orange);}
.footer-social-icon ul{ display: flex; align-items: center;}
.footer-social-icon li{ margin: 0 6px;}
.footer-social-icon li:last-child{ margin-right: 0;}
.footer-social-icon li a{ display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1.5px solid #00ADFD; border-radius: 50%; color: #00ADFD;}
.footer-social-icon li a:hover{ background: var(--color-orange); color: var(--color-white); border-color: var(--color-orange); }
@media only screen and (min-width: 2000px){
    .main-footer::before{ width: 720px; height: 530px;}
}
@media only screen and (max-width: 1399px){
    .main-footer  .logo-wrap { height: 45px; }
    .footer-social-icon li a{ width: 50px; height: 50px;}
}
@media only screen and (max-width: 991px){
    .footer-menu-wraper h4{ margin-bottom: 20px;}
    .footer-menu, .footer-address{ margin-bottom: 25px;}
    .footer-menu-wraper li:not(:last-child) { margin-bottom: 15px; }
    .footer-menu-wraper{ padding: 50px 0 25px;}
    .what-we-do-card-col:first-child{ margin-top: 0;}
}
@media only screen and (max-width: 767px){
    .main-footer .logo-wrap { height: 40px; margin-bottom: 25px; }
    .footer-social-icon li a { width: 45px; height: 45px; }
}
@media only screen and (max-width: 575px){
    .bottom-footer{ padding: 20px 0;}
    .bottom-footer .inner-row{ flex-wrap: wrap;}
    .bottom-footer .inner-row .policy-wraper{ margin-bottom: 15px;}
    .footer-social-icon li:first-child{ margin-left: 0;}
}
/* FOOTER PART END HERE ==========================*/
/* FOOTER PART END HERE ==========================*/

/* SERVICES PAGE START HERE ==========================*/
/* SERVICES PAGE START HERE ==========================*/
.inner-banner .inner-banner-bg { padding-bottom: 31.7%; }
.inner-banner .inner-banner-bg::before { content: ""; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); filter: brightness(0.6); }
.inner-banner .container { position: absolute; z-index: 3; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: self-end; padding-bottom: 5.5%; }
/* .inner-banner .container::before { content: ""; background: url(../images/inner-banner-bg.svg); background-repeat: no-repeat; background-position: center; background-size: cover; position: absolute; z-index: 1; width: 60%; height: 80%; right: 0; bottom: 0; } */
.inner-banner .banner-info { position: relative; z-index: 3; padding-right: 10%; }
.inner-banner .banner-info *{ color: var(--color-white);}
.inner-banner .info-outer .banner-image { position: absolute; z-index: 1; right: 1%; bottom: 0; width: 37.5%; }
.inner-banner .info-outer .banner-image img { width: 100%; }
/* .inner-banner .banner-info h1 { width: fit-content; padding-bottom: 10px; border-bottom: 1px solid #fff; } */

.accelerate-growth-section  .image-wraper img{ width: 100%;}
.accelerate-growth-section .info-wraper { padding-left: 10%; }
.accelerate-growth-section .info-wraper .button-wraper li:not(:last-child){ margin-bottom: 20px;}
.full-image img{ width: 100%;}

.smarter-solutions-section::before{ content: "";}
.smarter-solutions-section .info-wraper { padding-right: 25%; }

.bg-logo-section{ overflow: hidden; isolation: isolate;}
.bg-logo { position: absolute; z-index: -1; width: 25%; bottom: 0; left: 0; }
.bg-logo img{ width: 100%;}

.core-service-section .section-title{ margin-bottom: var(--gap-50);}
.core-services-box-card { height: 100%; padding: 60px; background: #EEF1FF; transition: var(--transition-common);}
.core-services-box-card *{ transition: var(--transition-common);}
.core-services-box-card .icon { display: flex; align-items: center; justify-content: center; width: 120px; height: 120px; background: var(--color-white); border-radius: 50%; margin: 0 auto 30px;}
.core-services-box-card .icon img{ width: auto; height: 50px;}
.core-services-box-card p{ font-size: var(--f-size-ES);}
.core-services-box-card .learn-more{ font-size: var(--f-size-S); text-decoration: underline; color: var(--color-orange); text-transform: uppercase; font-family: var(--ff-title);}
.core-services-box-card a { display: block; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; font-size: 0; }

.core-services-box-card:hover{ background: var(--color-accent);}
.core-services-box-card:hover *{ color: var(--color-white);}
.core-services-box-card:hover .icon img{ animation: bouncing 0.6s 0s;}
.core-services-box-card:hover h4{ letter-spacing: 0.05rem;}

.core-services-box-card-col{ margin-top: 30px;}
@media only screen and (min-width: 768px){
    .core-services-box-card-col:nth-child(-n+2){ margin-top: 0; }
}
@media only screen and (min-width: 992px){
    .core-services-box-card-col:nth-child(-n+3){ margin-top: 0; }
}
.why-it-work-section .info-wraper { padding-right: 16%; }

.leadership-section { background: #FFE4D8; isolation: isolate; }
.leadership-section .bg-logo { right: 0; left: auto; }
.leadership-section .image-wraper { position: absolute; z-index: -1; top: 0; left: 0; bottom: 0; width: 50%; height: 100%; }
.leadership-section .image-wraper::before { content: ""; background: rgba(15, 12, 47, 0.8); position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; }
.leadership-section .image-wraper img { width: 100%; height: 100%; object-fit: cover; }
.leadership-section  .title-wraper { padding-right: 25%; }
.leadership-section  .title-wraper *{ color: var(--color-white);}
.leadership-section .title-wraper h2{ margin-bottom: 0;}
.leadership-provider-card{ height: 100%;}
.leadership-provider-card .icon{ display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; background: var(--color-accent); border-radius: 50%; margin-bottom: 20px;}
.leadership-provider-card .icon img{ height: 30px;}
.leadership-provider-col{ margin-top: 30px;}
@media only screen and (min-width: 576px){
    .leadership-provider-col:nth-child(-n+2){ margin-top: 0; }
}

.financial-engine-section .inner-row{ padding: 60px; background: var(--color-accent);}
.financial-engine-section .section-title { max-width: 790px; padding-right: 40px; }
.financial-engine-section .inner-row h2{ color: var(--color-white); margin-bottom: 0;}
.financial-engine-section .button-row{ flex: 0 0 auto;}

/* SERVICES DETAILS PAGE START */
.financial-direction-section .section-title{ max-width: 910px; margin-right: auto; margin-bottom: var(--gap-50); margin-left: auto;}
.financial-direction-section .image-wraper { padding-bottom: 120%; height: 100%; margin-left: 25px;}
.financial-direction-section .info-wraper { position: relative; padding: 100px 50px; background: #EEF1FF; isolation: isolate; }
.financial-direction-section .info-wraper::before { content: ""; background: url(../images/financial-direction-bg.svg); background-repeat: no-repeat; background-position: center; background-size: 100%; position: absolute; z-index: -1; width: 30%; height: 55%; bottom: 0; left: 0; }
.financial-direction-section .info-wraper ul{ margin-bottom: 20px;}
.accurate-financial-section { background: #F4F4F4; isolation: isolate;  display: flow-root;}
.accurate-financial-section .accurate-financial-image-outer { width: 38%; float: left; margin-right: 5%; margin-bottom: 30px;}
.accurate-financial-section .accurate-financial-image { padding-bottom: 101%; width: 100%; }
.accurate-financial-section .point-lits ul { display: flex; flex-wrap: wrap; max-width: 550px; margin: 0 -5px 30px;}
.accurate-financial-section .point-lits li{ width: 50%; margin-bottom: 8px;}
.accurate-financial-section .bg-design-image { width: 23%; height: 40%; right: 0; bottom: 0; z-index: -1; }
.systems-procedures-section{ display: flow-root; isolation: isolate;}
.systems-procedures-section *{ color: var(--color-white);}
.systems-procedures-section .image-wraper-container { width: 38%; float: right; margin-left: 5%; margin-bottom: 30px; }
.systems-procedures-section .image-wraper-container { width: 38%; float: right; margin-left: 5%; }
.systems-procedures-section .image-wraper-container .image-wraper{ padding-bottom: 101%;}

.systems-procedures-section .bg-design-image { width: 43%; height: 80%; top: 0; right: 0; bottom: 0; left: 0; margin: auto; }


@media only screen and (max-width: 1599px){
    .inner-banner .inner-banner-bg{ padding-bottom: 35%;}
}
@media only screen and (max-width: 1399px){
    .accelerate-growth-section .info-wraper { padding-left: 5%; }
    .smarter-solutions-section .info-wraper { padding-right: 20%; }
    .core-services-box-card{ padding: 35px;}
    .core-services-box-card .icon{ width: 90px; height: 90px;}
    .core-services-box-card .icon img{ height: 35px;}
    .why-it-work-section .info-wraper { padding-right: 5%; }

    .financial-direction-section .image-wraper{ margin-left: 0;}
    .financial-direction-section .info-wraper{ padding: 40px 20px;}
    .accurate-financial-section .accurate-financial-image-outer{ width: 41%; margin-right: 25px; margin-bottom: 20px;}
    .accurate-financial-section .point-lits ul{ margin-bottom: 15px;}
    .point-lits ul li{ padding-left: 32px;}
    .systems-procedures-section .image-wraper-container{ width: 41%; margin-left: 25px;}
}
@media only screen and (max-width: 1199px){
    .accelerate-growth-section .info-wraper { padding-left: 0; }
    .core-services-box-card { padding: 25px 15px; }
    .why-it-work-section .info-wraper { padding-right: 0; }
    .leadership-section  .title-wraper { padding-right: 0; }
    .leadership-section .leadership-provider-outer { padding-left: 20px; }
    .leadership-provider-card .icon{ width: 50px; height: 50px;}
    .leadership-provider-card .icon img{ height: 20px;}
    .financial-engine-section .inner-row{ padding: 35px;}

    .financial-direction-section .info-wraper { padding: 30px 15px; }
    .accurate-financial-section .point-lits ul{ max-width: 450px;}
}
@media only screen and (max-width: 991px){
    .inner-banner .inner-banner-bg { position: absolute !important; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; padding: 0;}
    .inner-banner .container{ position: static; padding-bottom: 0;}
    .inner-banner .info-outer { padding-top: 120px; }
    .inner-banner .banner-info{ padding: 0; margin-bottom: 25px;}
    .inner-banner .info-outer .banner-image { position: relative; width: 50%; margin: 0 auto; }

    .accelerate-growth-section .image-wraper{ margin-bottom: 25px;}
    .smarter-solutions-section .image-wraper{ margin-bottom: 25px;}
    .core-services-box-card-col { margin-top: 25px; }

    .why-it-work-section .image-wraper{ margin-bottom: 25px;}
    .leadership-section .image-outer{ position: relative; margin-bottom: 25px;}
    .leadership-section .image-wraper{ position: relative; width: 100%;}
    .leadership-section .image-outer .title-wraper { position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: center; padding: 30px; }
    .leadership-section .leadership-provider-outer { padding-left: 0; }
    .financial-engine-section .inner-row{ padding: 35px 20px;}

    .financial-direction-section .image-wraper{ padding-bottom: 95%;}
    .accurate-financial-section .accurate-financial-image-outer, .systems-procedures-section .image-wraper-container{ width: 100%; float: none; margin: 0 0 25px;}
}
@media only screen and (max-width: 767px){
    .financial-engine-section .inner-row{ flex-wrap: wrap; padding: 35px 15px;}
    .financial-engine-section .section-title{ padding: 0; margin-bottom: 25px;}

    .accurate-financial-section .bg-design-image{ width: 200px; height: 150px;}
}
@media only screen and (max-width: 575px){
    .core-services-box-card .icon { width: 70px; height: 70px; margin-bottom: 20px; }
    .core-services-box-card .icon img { height: 25px; }
    .core-services-box-card-col:first-child, .leadership-provider-col:first-child{ margin-top: 0;}
    .leadership-provider-col { margin-top: 25px; }
    .leadership-provider-card{ text-align: center;}
    .leadership-provider-card .icon { width: 45px; height: 45px; margin: 0 auto 15px; }
    .bg-logo{ width: 45%;}
    .leadership-section .image-outer .title-wraper{ padding: 15px;}
}
@media only screen and (max-width: 479px){
    .inner-banner .info-outer { padding-top: 80px; }
    .inner-banner .info-outer .banner-image{ width: 70%;}
}
/* SERVICES PAGE END HERE ==========================*/
/* SERVICES PAGE END HERE ==========================*/

/* ABOUT PAGE START HERE ==========================*/
/* ABOUT PAGE START HERE ==========================*/

  
.about-us-banner .info-outer .banner-image{ width: 60%;}
.about-why-choose-section .image-wraper img{ width: 100%;}
.about-why-choose-section .info-wraper { padding-left: 10%; }
.about-why-choose-section .info-wraper strong{ color: var(--color-primary); font-weight: var(--fw-medium);}

.our-vision-mission-section{ display: flow-root;}
.our-vision-mission-section .image-wraper { width: 50%; margin-left: 5%; float: right; }
.our-vision-mission-section .image-wraper img{ width: 100%;}
.our-vision-mission-section .section-title{ margin-bottom: var(--gap-50);}
.our-vision-mission-section .point-lits ul li{ margin-bottom: var(--gap-50);}
.our-vision-mission-section .section-title p strong{ color: var(--color-primary); font-weight: var(--fw-medium);}
.our-vission-section .image-wraper{ float: left; margin: 0 5% 0 0;}
.our-value-section{ background: var(--color-tertiary);}

.our-value-section .section-title{ margin-bottom: var(--gap-50);}
.our-value-section .info-wraper { padding-right: 9%; }
.our-value-section .point-lits ul li{ padding-bottom: 20px; margin-bottom: 30px; border-bottom: 1px solid rgba(0, 0, 0, 0.2);}
.our-value-section .point-lits ul li:last-child{ margin-bottom: 0;}

.how-it-section::before { content: ""; background: url(../images/what-we-do-bg-design.svg); background-repeat: no-repeat !important; background-position: center !important; background-size: 100% !important; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: -5%; width: 50%; height: 100%; margin: auto; opacity: 0.4; }
.how-it-section .video-wraper { max-width: 60%; width: 100%; float: right; padding-left: 2%; margin-bottom: 30px; }
.how-it-section .video-box { position: relative; padding-bottom: 60%; overflow: hidden; }
.how-it-section .video-box video{ position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.how-it-video-container .video-control { display: flex; align-items: center; justify-content: center; width: 125px; height: 125px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(15px); position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; margin: auto; }
.how-it-video-container .video-control img{ height: 35px;}
.how-it-section .inner-wraper *{ color: var(--color-white);}
.team-section .bg-design-image{ bottom: -2%; left: -2%; width: 26%;}
.bg-design-image{ position: absolute; z-index: 1;}
.bg-design-image img{ width: 100%;}
.team-section .section-title{ max-width: 1170px; margin-right: auto; margin-left: auto; margin-bottom: var(--gap-50);}

.team-card { display: flex; flex-direction: column; height: 100%; }
.team-card .photo-upload { width: 250px; height: 250px; border-radius: 50%; overflow: hidden; margin: 0 auto var(--gap-40);}
.team-card .photo-upload img{ width: 100%; height: 100%; object-fit: cover;}
.team-card .name-details { margin-bottom: 20px; }
.team-card .name-details h6 { margin-bottom: 10px; }
.team-card .name-details p{ color: var(--color-accent); font-size: var(--f-size-ES);}
.team-card .short-description{ margin-bottom: 30px;}
.team-card .short-description p{ color: var(--color-primary); font-size: var(--f-size-ES);}
.team-card .social-link-row { margin-top: auto; }
.team-card .social-link-row .read-more a{ color: var(--color-orange); text-decoration: underline; cursor: pointer; font-size: var(--f-size-ES);}
.team-card .social-link-row .read-more a:hover{ color: var(--color-accent);}
.team-card  .team-social li a{ color: var(--color-quaternary);}
.team-card  .team-social li a:hover{ color: var(--color-orange);}

.team-slider .slick-list { margin: 0 -15px; }
.team-slider .slick-track{ display: flex;}
.team-slider .slick-slide{ padding: 0 15px; height: inherit;}
/* .team-section .slider-arrow-outer{ margin-top: var(--gap-50);} */
.team-section .slick-arrow:not(.slick-hidden){ margin: var(--gap-50) 10px 0; position: relative;}

.team-modal .modal-dialog{ max-width: 900px;}
.team-modal .modal-body { padding: 35px 20px; text-align: center;}
.team-modal button.btn-close { position: absolute; top: 15px; right: 15px; opacity: 1; }
.team-modal .modal-image { width: 250px; height: 250px; border-radius: 50%; overflow: hidden; margin: 0 auto var(--gap-40); }
.team-modal .modal-image img { width: 100%; height: 100%; }

.how-we-help-section{ background: #F6F6F6;}
.how-we-help-section .image-wraper{ padding-bottom: 105%;}
.how-we-help-section .info-wraper{ padding-left: 10%;}
.how-we-help-section .info-wraper strong{ color: var(--color-primary);}
.how-we-help-services-col{ margin-bottom: 25px;}
.how-we-help-services-box { background: #fff; padding: 30px; text-align: center; height: 100%; position: relative;}
.how-we-help-services-box .icon { display: inline-block; height: 50px; margin: 0 auto 25px; }
.how-we-help-services-box .icon img{ display: block; width: auto; height: 100%;}
.how-we-help-services-box h6{ margin-bottom: 0;}
.how-we-help-services-box .link{ position: absolute; font-size: 0; inset: 0;}
.how-we-help-section .info-wraper .button-wrap{ margin-top: 25px;}

@media only screen and (max-width: 1399px){
    .about-why-choose-section .info-wraper { padding-left: 5%; }
    .our-value-section .info-wraper { padding-right: 5%; }
    .team-card .photo-upload, .team-modal .modal-image{  width: 200px; height: 200px;}
    .team-slider .slick-list { margin: 0 -10px; }
    .team-slider .slick-slide{ padding: 0 10px;}
    .how-we-help-section .info-wraper { padding-left: 0; }
}
@media only screen and (max-width: 1199px){
    .about-why-choose-section .info-wraper { padding-left: 0; }
    .our-vision-mission-section .image-wraper { width: 45%; margin-left: 20px; }
    .our-vission-section .image-wraper{ margin-right: 20px;}
    .our-value-section .info-wraper { padding-right: 0; }
    .our-value-section .point-lits ul li { padding-bottom: 15px; margin-bottom: 15px; }

    .how-we-help-services-box .icon{ height: 35px;}
    .how-we-help-section .info-wraper .button-wrap { margin-top: 10px; }
}
@media only screen and (max-width: 991px){
    .about-us-banner .info-outer .banner-image { width: 75%; }
    .about-why-choose-section .row { flex-direction: column-reverse; }
    .about-why-choose-section .info-wraper{ margin-bottom: 25px;}
    .our-vision-mission-section .image-wraper{ width: 100%; float: none; margin: 0;}
    .our-vision-mission-section  .inner-outer-row { display: flex; flex-wrap: wrap; flex-direction: column-reverse; }
    .our-vision-mission-section .info-wraper{ margin-bottom: 25px;}
    .our-value-section .info-wraper{ margin-bottom: 25px;}
    .team-card .photo-upload, .team-modal .modal-image { width: 150px; height: 150px; }
    .team-card .short-description { margin-bottom: 15px; }

    .how-we-help-section .image-wraper{ margin-bottom: 30px;}
}
@media only screen and (max-width: 767px){
    .about-us-banner .info-outer .banner-image { width: 100%; }
    .team-card .short-description{ max-width: 380px; margin: 0 auto 15px;}
    .how-we-help-services-outer .row{ margin-right: -8px; margin-left: -8px;}
    .how-we-help-services-outer .row>*{ padding-right: 8px; padding-left: 8px;}
    .how-we-help-services-col { margin-bottom: 16px; }
}
/* ABOUT PAGE END HERE ==========================*/
/* ABOUT PAGE END HERE ==========================*/

/* CASE STUDIES PAGE START HERE ==========================*/
/* CASE STUDIES PAGE START HERE ==========================*/

.case-studies-card .row{ margin-left: 0; margin-right: 0;}
.case-studies-card .row>*{ padding-right: 0; padding-left: 0;}
.case-studies-card .imge-wraper { padding-bottom: 80%; height: 100%;}

/* .case-studies-card .info-wraper-col{ isolation: isolate;} */

.case-studies-card .info-wraper-col::after{ content: ""; background-position: center !important; background-size: 100% !important; background-repeat: no-repeat !important; position: absolute; z-index: 1; bottom: 0; width: 320px; height: 250px;}
.case-studies-card .info-wraper { height: 100%; display: flex; align-items: center; padding: 50px;}
.case-studies-card .info-inner-wraper{ z-index: 3;}
.case-studies-card .date p{ font-size: 16px;}
.case-studies-card .info-wraper h6{ color: var(--color-orange);}
.more-btn{ color: var(--color-orange); font-size: var(--f-size-ES); text-decoration: underline; transition: var(--transition-common);}
.more-btn:hover{ color: var(--color-accent);}

.case-studies-card:not(:last-child){ margin-bottom: 50px;}
.case-studies-card:nth-child(odd) .info-wraper-col::before{ bottom: -50px;}
.case-studies-card:nth-child(odd) .info-wraper-col::after{ background: url(../images/case-studies-card-bg-design-1.svg); right: 0; bottom: -50px;}
.case-studies-card:nth-child(even) .row{ flex-direction: row-reverse;}
.case-studies-card:nth-child(even) .info-wraper{ background: #EEF1FF; padding-bottom: 100px;}
.case-studies-card:nth-child(even) .info-wraper::after{ content: ""; background: var(--color-white); position: absolute; z-index: 1; width: 100%; height: 50px; right: 0; bottom: 0; left: 0;}
.case-studies-card:nth-child(even) .info-wraper-col::before{ content: ""; background: #EEF1FF; position: absolute; z-index: 1; width: 100%; height: 50px; top: -50px; right: 0; left: 0;} 
.case-studies-card:nth-child(even) .info-wraper-col::after { background: url(../images/case-studies-card-bg-design-2.svg); bottom: 50px; left: 0;}


@media only screen and (max-width: 1399px){
    .case-studies-card .info-wraper-col::after{ width: 250px; height: 200px;}
    .case-studies-card .info-wraper{ padding: 30px;}
}
@media only screen and (max-width: 1199px){
    .case-studies-card:not(:last-child) { margin-bottom: 30px; }
    .case-studies-card:nth-child(odd) .info-wraper-col::after{ bottom: -30px;}
    .case-studies-card:nth-child(even) .info-wraper-col::before{ height: 30px; top: -30px;}
    .case-studies-card:nth-child(even) .info-wraper-col::after{ bottom: 30px;}
    .case-studies-card:nth-child(even) .info-wraper{ padding-bottom: 60px;}
    .case-studies-card:nth-child(even) .info-wraper::after{ height: 30px;}
    
}
@media only screen and (max-width: 991px){
    .case-studies-card .info-wraper-col{ overflow: hidden;}
    .case-studies-card .info-wraper-col::after { width: 190px; height: 150px; bottom: -50px;}
    .case-studies-card .info-wraper{ height: auto; background: #EEF1FF; padding: 30px 15px !important;}
    .case-studies-card:nth-child(even) .info-wraper-col::before, .case-studies-card:nth-child(even) .info-wraper::after{ display: none;}
    .case-studies-card:nth-child(even) .info-wraper-col::after { bottom: 0; }
    .case-studies-card .date p{ font-size: 15px;}
    
}
/* CASE STUDIES PAGE END HERE ==========================*/
/* CASE STUDIES PAGE END HERE ==========================*/



/* BLOG PAGE START HERE ==========================*/
/* BLOG PAGE START HERE ==========================*/
.featured-blog-card-col{ margin-top: 30px;}
@media only screen and (min-width: 992px){
    .featured-blog-card-col:nth-child(-n+2){ margin-top: 0;}
}


.blog-section .featured-blog-card .featured-image::before{ background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%); }
.blog-section .featured-blog-card .button-wrap .link-btn{ background: var(--color-accent);}
.blog-section .featured-blog-card .button-wrap .link-btn:hover{ background: var(--color-orange);}
.pegination-wraper{ margin-top: var(--gap-50);}
.pegination-wraper .page-item{ display: flex; flex-wrap: wrap;}
.pegination-wraper .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin: 0 4px; border: 1px solid #DADADA; color: #676767; font-size: var(--f-size-ES); transition: var(--transition-common);}
.pegination-wraper .prev.page-numbers, .pegination-wraper .next.page-numbers { font-size: 0; background: url(../images/pegination-arrow.svg); background-repeat: no-repeat !important; background-position: center !important; background-size: 18px !important; border: 0; }
.pegination-wraper .prev.page-numbers{ transform: scaleX(-1);}
.pegination-wraper .page-numbers.current, .pegination-wraper .page-numbers:hover{ border-color: #F14B01; color: var(--color-black);}

/* blog details part start */
.details-section  .details-inner-wraper { padding-right: 8%; padding-left: 8%; padding-bottom: var(--padding-height); border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
.date p{ color: var(--color-accent); margin-bottom: 20px;}
.details-section .image-wraper { padding-bottom: 39%; margin: var(--gap-50) 0; }
.details-section ul{ margin-bottom: 25px;}
.related-slider .slick-list{ margin: 0 -15px;}
.related-slider .slick-slide{ padding: 0 15px;}
.related-slider .slick-arrow { background: #EEF1FF !important; }
.related-slider .slick-arrow::before{ filter: brightness(0); transition: var(--transition-common);}
.related-slider .slick-prev{ left: -40px;}
.related-slider .slick-next{ right: -40px;}
.related-slider .slick-arrow:hover{ background: var(--color-orange) !important;}
.related-slider .slick-arrow:hover::before{ filter: inherit;}

@media only screen and (max-width: 1399px){
    .details-section  .details-inner-wraper { padding-right: 5%; padding-left: 5%; }
    .related-slider{ padding: 0 25px;}
    .related-slider .slick-prev{ left: -10px;}
    .related-slider .slick-next{ right: -10px;}
}
@media only screen and (max-width: 1199px){
    .details-section  .details-inner-wraper { padding-right: 0; padding-left: 0; }
    .point-lits ul li{ padding-left: 28px;}
    .point-lits ul li::before{ width: 16px; height: 16px;}
    .related-slider .slick-list{ margin: 0 -10px;}
    .related-slider .slick-slide{ padding: 0 10px;}
}
@media only screen and (max-width: 991px){
    .featured-blog-card-col{ margin-top: 25px;}
    .featured-blog-card-col:first-child{ margin-top: 0;}

    .details-section .image-wraper{ padding-bottom: 45%;}
}
@media only screen and (max-width: 575px){
    .pegination-wraper .page-numbers{ width: 40px; height: 40px;}
    .pegination-wraper .prev.page-numbers, .pegination-wraper .next.page-numbers{ background-size: 14px !important;}
    .related-slider { padding: 0 15px;}
    .related-slider .slick-arrow { width: 35px; height: 35px; }
    .related-slider .slick-prev:before, .related-slider .slick-next:before { background-size: 12px; }
}
/* BLOG PAGE END HERE ==========================*/
/* BLOG PAGE END HERE ==========================*/



/* CONTACT US PAGE START HERE ==========================*/
/* CONTACT US PAGE START HERE ==========================*/
.contact-us-section .contact-form { height: 100%; padding: 60px; background: #EEF1FF; }
.contact-us-section .contact-form .section-title{ margin-bottom: var(--gap-50);}
.contact-us-section .contact-form .button-row{ margin-top: 30px;}
.contact-us-section  .contact-info{ height: 100%; padding: 60px; }
.contact-us-section  .contact-info *{ color: var(--color-white); line-height: 1.1;}
.contact-us-section .contact-info .section-title{ margin-bottom: var(--gap-40);}

.contact-details-list{ margin-bottom: var(--gap-40);}
.contact-details-list-box:not(:last-child) { margin-bottom: 25px; }
.contact-details-list-box .icon { height: 24px; flex: 0 0 auto; margin: 3px 20px 0 0; }
.contact-details-list-box .icon img{ display: block; width: auto; height: 100%;}
.contact-us-section  .contact-info a:hover, .contact-us-section  .contact-info a:hover *{ color: var(--color-orange);}
.map-holder{ position: relative; padding-bottom: 55%;}
.map-holder iframe{ position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%;}
.wpcf7-not-valid{ border-color: #dc3232 !important;}
.wpcf7-not-valid-tip{ display: none;}
.wpcf7-response-output { margin: 20px 0 0 !important; font-size: 16px; line-height: 1.2; }
@media only screen and (max-width: 1599px){
    .contact-us-section .contact-form, .contact-us-section .contact-info{ padding: 35px;}
}
@media only screen and (max-width: 1199px){
    .contact-us-section .contact-form, .contact-us-section .contact-info { padding: 30px 20px; }
    .contact-us-section .contact-form .bg-logo { width: 35%; }
    .contact-us-section .contact-form .button-row { margin-top: 10px; }
    .contact-details-list-box .icon { height: 20px; margin: 1px 12px 0 0; }
}
@media only screen and (max-width: 767px){
    .contact-us-section .contact-form, .contact-us-section .contact-info { padding: 30px 15px; }
}
/* CONTACT US PAGE END HERE ==========================*/
/* CONTACT US PAGE END HERE ==========================*/




