/*@import url('https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp');*/
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*
font-family: "SpaceGrotesk";
*/
/*** custom CSS writen  here   ***/

:root {
    --color-black: #000;
    --color-white: #fff;
    --main-body-font: "Roboto", sans-serif;
    --main-heading-font-size: 100px;
    --sub-heading-font-size: 65px;
    --body-font-size: 19px;
    --menu-font-size: 18px;
    --color-green: #1ac57b;
    --color-light-green: #e9f4ee;
    --green-content-echo: #509577;
    --color-red: #EA3934;
}


/****** Reset Css ******/
body,
html {
    font-size: 100%;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--main-body-font);
    overflow-x: hidden !important;
    font-weight: 300 !important;
}

/* Reset Css */
p {
    font-family: var(--main-body-font) !important;
    font-weight: 300 !important;
    color: var(--color-black);
    margin: 0 0 35px 0;
    font-size: var(--body-font-size) !important;
    line-height: 30px !important;
}

p a {
    color: #025296;
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--body-font-size);
}

a,
a:hover,
a:focus {
    color: var(--color-blue);
    text-decoration: none !important;
    outline: none !important;
}

button,
select,
input,
textarea,
button:hover,
select:hover,
input:hover,
textarea:hover,
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: none;
    border: none;
}

main {
    padding: 0 !important;
    margin: 120px 0 0 0 !important;
    margin-block-start: 0rem;
    margin-block-end: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-body-font) !important;
    font-weight: 700 !important;
    margin: 0 0 35px 0 !important;
}

h1 {
    font-size: var(--main-heading-font-size);
}

h2,
h3,
h4,
h5,
h6 {
    font-size: var(--sub-heading-font-size) !important;
    /* margin: 0 0 35px 0!important; */
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
    text-decoration: none !important;
}

.main_header_wrapper {}

.elementor {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container-header,
.common-container,
.custom_container,
.elementor-container,
.container,
.e-con-inner {
    max-width: 1660px !important;
    margin: 0 auto;
    /* width: 100%; */
    padding: 0 15px;
}



footer {
    margin: 0 !important;
}

/****** Reset Css end ******/

/****** HEader Css *****/
.site_main_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    /* box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); */
    background-color: var(--color-black) !important;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid #d1d1d1; */
    padding: 20px 0;
}

.site_main_header .has-base-background-color {
    background-color: rgba(0, 0, 0, 1) !important;
    backdrop-filter: blur(10px);
}

.site_main_header.scrollUp {
    position: fixed;
    z-index: 999;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgb(0 0 0 / 100%);
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 35%);
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    background-color: rgba(0, 0, 0, 1) !important;
    border-bottom: 1px solid transparent;
}


@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

header {
    background-color: rgba(0, 0, 0, 0.5);
}

.site_main_header .main_inner_header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.site_main_header.scrollUp .main_inner_header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.site_main_header .blue-btn-wrapper .wp-block-button__link {
    text-transform: capitalize !important;
    font-size: 21px !important;
    padding: 10px 45px;
}

.site_main_header.scrollUp .blue-btn-wrapper .wp-block-button__link {
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    height: 50px !important;
}

.site_main_header .main_inner_header .wp-block-site-logo a img {
    width: auto;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.site_main_header.scrollUp .main_inner_header .wp-block-site-logo a img {
    width: 90px !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.site_main_header nav ul.main-nav-header li a {
    color: var(--color-white) !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.site_main_header nav ul.main-nav-header li:hover a {
    color: var(--color-red) !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.common-header-social .common-header-social-box figure a {
    background-color: #f3f8f6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.ommon-header-social {
    margin: 0 0 0 50px !important;
}

.main-nav-header ul li a span {
    font-size: var(--menu-font-size) !important;
}

.main-nav-header ul {
    gap: 4rem;
}

.main-home-banner .n2-section-smartslider {
    border-radius: 0px !important;
    overflow: hidden !important;
}

.get-started-btn a {
    max-width: 174px;
    width: 100%;
    border-radius: 35px !important;
    text-align: center !important;
    padding: 10px 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center;
    position: relative;
    background-color: transparent !important;
}

.get-started-btn a:after {
    background: var(--color-red) !important;
    content: "";
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    border-radius: 35px !important;
    z-index: 50;
}

.get-started-btn a:before {
    background-color: transparent !important;
    content: "";
    position: absolute !important;
    background-image: url(../images/slider-btn.png) !important;
    display: block !important;
    z-index: 100 !important;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat !important;
    right: 22px;
    top: 16px;
}

.get-started-btn a div {
    position: relative !important;
    z-index: 120 !important;
}

.padding-both-150 {
    padding: 150px 0 !important;
}

.padding-both-100 {
    padding: 100px 0 !important;
}

.padding-both-80 {
    padding: 80px 0 !important;
}

.padding-both-60 {
    padding: 60px 0 !important;
}

.padding-bottom-60 {
    padding: 0 0 60px 0 !important;
}

.padding-top-60 {
    padding: 60px 0 0 0 !important;
}

.global-search {
    background-color: var(--color-light-green);
    padding: 0 0 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
    margin: 0 0 45px 0 !important;
}

.global-search span {
    position: absolute;
    top: 19px;
    color: var(--green-content-echo);
    left: 25px;
    font-size: 35px;
}

.global-search input {
    width: 100%;
    height: 100%;
    padding: 15px 15px 15px 75px;
    background-color: transparent;
    color: var(--green-content-echo);
    height: 45px;
    border-radius: 10px;
    font-size: 22px;
}

.global-search input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--green-content-echo);
}

.global-search input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--green-content-echo);
}

.global-search input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--green-content-echo);
}

.global-search input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--green-content-echo);
}

.common-loop-wrapper .common-loop-heading h2 {
    font-size: 42px;
    margin: 0 0 35px 0;
}

.common-loop-list,
.common-loop-list .wp-block-group {
    margin: 0px !important;
    padding: 0 !important;
}

.common-cover-wrapper {
    margin: 0 0 20px 0 !important;
}

.common-loop-list .common-box-heading {
    font-size: 22px;
    margin: 0 !important;
}


/*** Accordion Wrapper ****/
.accordion_slider_home {
    display: block;
}

.accordion_slider_home .accor_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px !important;
    justify-content: center;
}

.accordion_slider_home .accor_row .accor_col {
    width: 22.5%;
    padding: 0 15px;
}

.accor_box {
    background-color: #f7fafc;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 30px 0;
    position: relative;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.accor_box .accor_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    min-height: 110px;
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.accor_box .accor_heading .accor_button {
    background-color: transparent;
    margin: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    cursor: pointer;
}

.accor_box .accor_heading .accor_button span {
    font-size: 29px;
}

.accor_box .accor_heading .accor_button.active_toggler {
    transform: rotate(135deg);
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.accor_box .accor_heading h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 !important;
    text-align: center;
    width: 100%;
}

.accor_box .accor_content {
    opacity: 0;
    transform: translate(0px, -50px);
    height: 0;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    padding: 15px;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: -10;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.accor_box .accor_content p,
.accor_box .accor_content {
    font-size: 15px !important;
    margin: 0 !important;
}

.accor_box .accor_content .accor_inner_content_wrapper {
    position: relative;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    max-height: 300px;
    overflow: auto;
}

.accor_box.active_box .accor_content {
    opacity: 1;
    transform: translate(0px, -10px);
    height: auto;
    z-index: 200;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}


/*** Accordion Wrapper End **/

.common_big_box figure {
    position: relative;
    overflow: hidden !important;
    height: 250px !important;
    width: 100% !important;
    border-radius: 20px !important;
    margin: 0 0 30px 0 !important;
}

.common_big_box figure a,
.common_big_box figure {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
}

.common_big_box figure a img,
.common_big_box figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.common_big_box_content h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
}

.common_big_box_content.content_green p {
    color: var(--green-content-echo) !important;
}

.common_big_box.common_company_content {
    background-color: #f2f4f4;
    padding: 28px 25px;
    border: 1px solid #dbdbdb;
    border-radius: 15px !important;
}

.common_big_box.common_company_content h3 {
    font-size: 23px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
}

.common_big_box.common_company_content p {
    color: var(--green-content-echo) !important;
    font-size: 20px !important;
}

.common_big_box.common_company_content .company_box_icon {
    margin: 0 0 10px 0;
}

.common_big_box.common_company_content .company_box_icon span {
    font-size: 42px !important;
}

.thumbnail_slider_container .owl-nav {
    display: none;
}

.video_col iframe {
    width: 100% !important;
    height: 720px !important;
}

#sync2 {
    padding: 40px 0 15px 0;
}

.benefits_thumbnail_panel .thumbnail_image {
    height: 135px !important;
    overflow: hidden;
    border-radius: 20px;
}

.benefits_thumbnail_panel .thumbnail_image img {
    height: 120% !important;
    width: 125% !important;
    object-fit: cover !important;
}

.video_col_thumbnail {
    padding: 0 5px;
}

.benefits_thumbnail_panel .thumbnail_heading {
    text-align: center;
    font-weight: 700;
    padding: 20px 0;
}

footer {
    padding: 60px 0 0 0;
    background-color: #000;
}

.foote_menu_wrapper {
    margin: 0 0 30px 0;
}

.foote_menu_wrapper ul {
    gap: 10rem !important;
}

.foote_menu_wrapper ul li a span {
    font-size: 22px !important;
    color: var(--green-content-echo) !important;
}

.footer_copyright_wrapper .copyright_below {
    font-size: 22px !important;
    color: var(--green-content-echo) !important;
    text-align: center;
    margin: 30px 0 0 0;
}

.site_call .site_top_call_row {
    display: flex;
    align-items: center;
}

.call_content.hide_mob {
    margin: 0 0 0 25px !important;
}

.call_content ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.call_content ul li:first-child {
    padding: 0 0 0 0px !important;
    max-width: 192px;
}

.call_content ul li {
    padding: 0 0 0 15px !important;
}


.btn_white {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    padding: 0 12px !important;
    z-index: 20;
    color: var(--color-black);
}

.btn_white span {
    margin: 0 5px 0 0 !important;
}

/*****/
.btn-common {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 180px;
    width: 100%;
    margin: 15px 0 0 0;
}

.btn-common .wp-block-button__link,
.btn-common .elementor-button {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    font-family: var(--main-body-font) !important;
    padding: 0 25px;
    text-transform: capitalize;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    width: 100%;
    height: 45px !important;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

.btn-red-common .wp-block-button__link,
.btn-common .elementor-button {
    background-color: transparent;
    color: var(--color-white) !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 100;
}

.btn-red-common .wp-block-button__link:after,
.btn-common .elementor-button:after {
    background-color: var(--color-red);
    ;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}

.btn-red-common .wp-block-button__link:before,
.btn-common .elementor-button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1e282e;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}

.btn-red-common .wp-block-button__link:hover:before,
.btn-red-common .wp-block-button__link:focus:before,
.btn-common .elementor-button:hover:before,
.btn-common .elementor-button:focus:before {
    width: 100%;
}

/****/
.common-heading-section-tru {
    margin: 0 0 35px 0 !important;
}

.common-heading-section-tru .wp-block-heading,
.common-heading-section-tru .elementor-heading-title {
    font-size: 36px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: var(--color-black) !important;
}

.border-left {
    border-left: 4px solid #0A75BC;
    padding-left: 22px;
}

.image-common-truout-wrapper img {
    max-width: 830px !important;
    width: 100% !important;
}

.image-common-truout-wrapper {
    display: flex;
}

.image-common-truout-wrapper.right-sideimg {
    justify-content: center;
}

.image-common-truout-wrapper.left-sideimg {
    justify-content: center;
}

.common-custom-listing {
    padding: 0 0 0 30px !important;
}

.common-custom-listing li {
    position: relative;
    padding: 0 0 20px 0;
    line-height: 28px;
}

.common-custom-listing li:before {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #0A75BC;
    border-radius: 50%;
    left: -30px;
    top: 12px;
    content: '';
}

.footer-heading .wp-block-heading {
    font-size: 24px !important;
    font-weight: 500 !important;
}

.address_pol_row {
    display: flex;
    flex-direction: column;
}

.address_pol_row .addr_pol_col {
    width: 100%;
}

.addr_table .addr_row {
    display: flex;
    margin: 0 -10px;
    padding: 0 0 10px 0;
}

.addr_table .addr_row .addr_icon_col {
    width: 30px;
    padding: 0 0 0 10px;
    display: flex;
    align-items: flex-start;
    margin: 3px 0 0 0;
}

.addr_table .addr_row .addr_icon_col span {
    color: #fff;
}

.addr_table .addr_row .addr_content_col {
    width: calc(100% - 30px);
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.addr_table .addr_row .addr_content_col,
.addr_table .addr_row .addr_content_col a {
    color: rgba(255, 255, 255, 1);
    font-size: 18px !important;
}

.addr_table .addr_row .addr_content_col,
.addr_table .addr_row .addr_content_col a {
    color: rgba(255, 255, 255, 1);
    font-size: 18px !important;
    font-weight: 300 !important;
}

.social-link-footer-listing ul {
    display: flex;
}

.social-link-footer-listing ul li {
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
}

.social-link-footer-listing ul li a {
    width: 30px;
    display: flex;
    align-items: center;
}

.footer-logo-wrapper {
    margin: 0 0 25px 0;
}

.about-content-footer p {
    font-weight: 300 !important;
    font-size: 18px !important;
}

.footer-conditional-menu ul li a,
.footer-main-nav ul li a {
    font-weight: 300 !important;
    font-size: 18px !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.footer-main-nav ul li:hover a,
.footer-main-nav ul li:hover a {
    color: var(--color-red) !important;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.bottom-footer-wrapper-outer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.top-footer-wrapper {
    margin-bottom: 70px;
}

.footer-right-copyright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff !important;
}


.btn-common-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 150px;
    width: 100%;
    margin: 15px 0 0 0;
}

.btn-common-header-set {
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    font-family: var(--main-body-font) !important;
    padding: 0 25px;
    text-transform: capitalize;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    height: 45px !important;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

.btn-white-header-common {
    background-color: transparent;
    color: var(--color-black) !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 100;
}

.btn-white-header-common span {
    color: #000;
    font-size: 20px;
    margin: 0 10px 0 0;
}

.btn-white-header-common:after {
    background-color: #fff;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}

.btn-white-header-common:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1b3da2 !important;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}

.btn-white-header-common:hover:before,
.btn-white-header-common:focus:before {
    width: 100%;
}

.btn-white-header-:hover,
.btn-white-header-:focus {
    color: var(--color-white) !important;
}

.btn-white-header-common:hover span,
.btn-white-header-common:focus span,
.btn-white-header-common:hover {
    color: var(--color-white) !important;
}

.btn-language span {
    font-size: 27px !important;
    margin: 0 0px 0 0 !important;
}

.main_nav_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: none !important;
}

.nav_col nav ul li ul li.mega-menu-row {
    max-width: 1660px !important;
    margin: 0 auto !important;
    float: none !important;
}

.mega-sub-menu {
    padding: 0px 10%;
}

#primary-mobile-menu,
.menu-button-container {
    display: none !important;
}

#mega-menu-wrap-primary {
    background-color: transparent !important;
    background: transparent !important;
    gap: 4rem;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus {
    background-color: transparent !important;
}

.main_nav_row .nav_col {
    margin: 0 30px 0 auto !important;
}

.footer-row {
    display: flex;
    margin: 0 -15px;
    gap: 2em;
    color: #fff;
}

.footer-row .footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-row .footer-col,
.footer-row .footer-col p,
.footer-row .footer-col ul li a,
.footer-row .footer-col h2 {
    color: var(--color-white) !important;
}

.footer-row .footer-col:nth-child(1) {
    width: 46%;
}

.footer-row .footer-col:nth-child(2) {
    width: 20%;
}

.botom_footer_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}

.botom_footer_row .bottom_footer_menu {
    width: 50%;
    padding: 0 15px;
}

.botom_footer_row .bottom_footer_copyright {
    width: 50%;
    padding: 0 15px;
    text-align: right;
    color: #fff;
}

.bottom_footer_menu ul {
    display: flex;
}

.bottom_footer_menu ul li {
    padding: 0 18px 0 0;
}

.bottom_footer_menu ul li a {
    color: #fff;
}

.footer-navigation-wrapper li {
    padding: 0 0 15px 0;
}

.menu_gray_grid {
    margin: 0 0 25px 0 !important;
}

.menu_gray_grid a {
    background-color: #ea3934;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.cust_grid_row {
    column-count: 2;
}

.cust_grid_row .grid_col_single {
    background-color: #d9d9d9;
    padding: 10px;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
}

#mega-menu-primary li a ul li .cust_grid_row .grid_col_single a {
    font-size: 14px !important;
    text-align: center;
    color: var(--color-black);

}

#mega-menu-primary li a.mega-menu-link {
    font-size: var(--body-font-size) !important;
    margin: 0 2rem !important;
}

.mega-menu-item-156 .mega-sub-menu {
    margin: 0 !important;
    padding: 0 !important;
}

#mega-menu-item-156 .mega-sub-menu li a.mega-menu-link {
    padding: 10px 15px !important;
    margin: 8px 0 !important;
}

#mega-menu-item-156 .mega-sub-menu li:hover a.mega-menu-link {
    background-color: #d3d3d3 !important;
}

#mega-menu-item-159 .mega-sub-menu,
#mega-menu-item-360 .mega-sub-menu,
#mega-menu-item-361 .mega-sub-menu {
    margin: 0 !important;
    padding: 0 !important;
}

#mega-menu-item-159 .mega-sub-menu li a.mega-menu-link,
#mega-menu-item-360 .mega-sub-menu li a.mega-menu-link,
#mega-menu-item-361 .mega-sub-menu li a.mega-menu-link {
    padding: 10px 15px !important;
    margin: 8px 0 !important;
}

#mega-menu-item-159 .mega-sub-menu li:hover a.mega-menu-link,
#mega-menu-item-360 .mega-sub-menu li:hover a.mega-menu-link,
#mega-menu-item-361 .mega-sub-menu li:hover a.mega-menu-link {
    background-color: #d3d3d3 !important;
}

.wpcf7-form input,
.wpcf7-form textarea {
    padding: 10px 15px !important;
}

.global-image-wrapper .elementor-widget-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.global-image-wrapper .elementor-widget-container img {
    width: 100%important;
    height: auto !important;
}

.otherspage_site_banner {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.otherspage_site_banner img {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.entry-header {
    display: none !important;
}

.site_banner_image_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.site_banner_overlay {
    max-width: 1600px;
    margin: 10rem auto 2rem auto;
    width: 100%;
}

.site_banner_container {
    width: 60%;
}

.site_banner_container h1 {
    font-family: var(--main-body-font) !important;
    font-weight: 700 !important;
    margin: 0 0 35px 0 !important;
    font-size: 55px !important;
    color: var(--color-white);
}

.site_banner_container h2 {
    font-family: var(--main-body-font) !important;
    font-weight: 700 !important;
    margin: 0 0 25px 0 !important;
    font-size: 38px !important;
    color: var(--color-white);
}

.site_banner_container h3 {
    font-family: var(--main-body-font) !important;
    font-weight: 700 !important;
    margin: 0 0 25px 0 !important;
    font-size: 22px !important;
    color: var(--color-white);
}

.call-to-action-heading .elementor-heading-title {
    font-size: 38px !important;
    color: var(--color-white);
    font-weight: 200 !important;
    max-width: 1190px;
    margin: 0 auto !important;
    line-height: 60px;
}

.case-study-content p {
    max-width: 1024px;
    margin: 0 auto;
    color: var(--color-white);
}

.common-sub-heading-section-tru .elementor-heading-title {
    font-size: 28px !important;
    margin: 0 0 10px 0 !important;
    color: var(--color-black) !important;
    line-height: 35px !Important;
    font-weight: 500 !Important;
}

.entry-footer,
.comments-area,
.post-navigation {
    display: none !important;
}

.blog_list_grid_wrapper {
    padding: 80px 0;
}

.blog_list_grid_wrapper.custom_listing_for_inner_page {
    padding: 0 0 80px 0;
}

.blog_archive_grid_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    box-sizing: border-box;
}

.blog_archive_grid_row .blog_grid {
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 35px !important;
}

.service_box .service_topbox_banner {
    overflow: hidden;
    height: 295px;
    margin: 0 0 20px 0;
    border-radius: 15px;
}

.service_box .service_topbox_banner a {
    overflow: hidden;
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.service_box .service_topbox_banner a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service_box .service_main_heading .blog_heading_main h3 {
    font-size: 24px !important;
    margin: 0 0 15px 0 !important;
    min-height: 85px;
}

.service_box .service_main_heading .auth_details {
    margin: 0 0 10px 0;
    display: none !important;
}

.service_box .service_main_heading .auth_details ul li .post_auth {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.service_box .service_main_heading .auth_details ul li .post_auth span {
    margin: 0 12px 0 0;
}


.btn-common-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 180px;
    width: 100%;
    margin: 15px 0 0 0;
}

.btn-common-blog {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    font-family: var(--main-body-font) !important;
    padding: 0 25px;
    text-transform: capitalize;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    width: 100%;
    height: 45px !important;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

.btn-common-blog {
    background-color: transparent;
    color: var(--color-white) !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 100;
}

.btn-common-blog:after {
    background-color: var(--color-red);
    ;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}

.btn-common-blog:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1e282e;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}

.btn-common-blog:hover:before,
.btn-common-blog:focus:before {
    width: 100%;
}

/******** 26'th September 2024 ********/
/* CSS for the buttons used in Resourses pages */
#btn-customised {
    min-width: 250px !important;
}

/******** 27'th September 2024 ********/
.contact_form .wpcf7-text,
.contact_form .wpcf7-email,
.contact_form .wpcf7-textarea {
    background-color: #ffffff !important;
    min-height: 50px !important;
    width: 600px !important;
    border: 1px solid #eeeeee;
    border-radius: 10px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contact_form p {
    padding-bottom: 15px !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin: 0 0 15px !important;
}

.contact_form .wpcf7-submit {
    background-color: var(--e-global-color-14f33aa);
    border-radius: 30px 30px 30px 30px;
    color: var(--color-white) !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 100;
    padding: 15px 25px;
    font-size: 15px !important;
    cursor: pointer !important;
}

.footer_email {
    background-color: #ffffff !important;
    min-height: 50px !important;
    max-width: 430px !important;
    border: 1px solid #eeeeee;
    border-radius: 40px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex !important;
    column-gap: 20px !important;
    margin: 0 auto;
    padding: 10px;
}

#email_id {
    margin-left: 15px !important;
    width: 100%;
    font-size: 16px;
}

.footer_email .submit {
    background-color: var(--e-global-color-14f33aa);
    border-radius: 30px 30px 30px 30px;
    color: var(--color-white) !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 100;
    padding: 15px 25px;
    font-size: 15px !important;
}

/******** 1'st October 2024 ********/
.subscribe-heading {
    color: #ffffff !important;
    font-size: 37px !important;
}

.subscribe {
    margin-bottom: 80px !important;
}

.subscribe .common-heading-section-tru .elementor-heading-title {
    font-size: 36px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.subscribtion_form_inner_Wrapper {
    width: 100%;
    max-width: 600px !important;
    margin: 0 auto;
}

.our_location_outer iframe {
    height: 450px !important;
    padding: 60px 0 0 0 !important;
}

#rmp_menu_trigger-257.is-active {
    background: #ea3934 !important;
}

body.error404 .otherspage_site_banner {
    display: none;
}

.not-found {
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 0 120px;
}

.not-found .page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.not-found .page-content h1,
.not-found .page-content p {
    text-align: center;
}

.not-found .page-content h1 {
    font-size: 150px !important;
}

.backto-home {
    width: 100%;
    display: flex;
    justify-content: center;
}

.next-event-logo-wrapper img {
    width: 100% !important;
    height: auto !important;
    max-width: 350px !important;
    margin: 0 auto 0 0 !important;
}

.next-event-logo-wrapper .elementor-widget-container {
    display: flex !important;
}

.icon-with-heading-label .left-icon-panel .elementor-widget-container {
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.icon-with-heading-label .elementor-widget-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin: 0 !important;
    max-width: 70px !important;
}

.icon-with-heading-label .elementor-heading-title {
    line-height: 30px !important;
    font-size: 20px !important;
    font-weight: 700;
    margin: 0 !important;
}

/* Blog Css */

.blogsingle_main_wrapper {
    margin: 125px 0 0 !important;
}

.blog_songle_container {
    max-width: 1600px;
    margin: 0 auto;
}

.blog_songle_container .blog_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 !important;
    padding: 0 18px;
}

.blog_row .blog_details {
    width: calc(100% - 495px);
    margin: 0 45px 0 0;
}

.blog_row .blog_widget {
    width: 395px;
}

.aside_bar_widget .widget_box_inner {
    background-color: #2a2a2a;
    padding: 20px 35px;
    margin: 0 0 35px;
}

.aside_bar_widget .widget_box_inner .blog_widget_header {
    font-size: 24px !important;
    margin: 0 0 30px;
    color: #fff !important;
}

.blog_listing_common ul,
.elementor-widget-text-editor ul,
.widget_box_inner ul,
.widget_box_inner ul.blog-list-archive li ul {
    position: relative;
    margin: 0 0 0 30px !important;
}

.widget_box_inner ul li {
    margin: 0 0 20px 0 !important;
}

.widget_box_inner ul li:last-child {
    margin: 0 0 0px 0 !important;
}

.widget_box_inner ul li,
.widget_box_inner ul li a {
    color: #b9b9b9 !important;
    display: block;
    position: relative;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
}

.widget_box_inner ul li:before,
.widget_box_inner ul.blog-list-archive li ul li:before {
    position: absolute;
    border-radius: 50%;
    background-color: #d1d1d1;
    left: -23px;
    top: 10px;
    height: 6px;
    width: 6px;
    content: "";
}

.widget_box_inner ul li a {
    color: #b9b9b9 !important;
    padding: 0 0 10px !important;
    display: block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    font-size: 18px;
    line-height: 26px;
}

/* Get Started Modal Css */
.getstarted-wrapper {
    padding: 40px 20px;
}

.getstarted-wrapper .contact_form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto !important;
}

.getstarted-wrapper .contact_form input {
    background-color: var(--color-white);
    width: 100% !important;
    border: 1px solid #eee;
    border-radius: 10px !important;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
    font-size: 16px;
    font-weight: 400 !important;
}

.getstarted-wrapper .contact_form textarea {
    background-color: var(--color-white);
    width: 100% !important;
    height: 150px;
    border: 1px solid #eee;
    border-radius: 10px !important;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
    font-size: 16px;
    font-weight: 400 !important;
}

.getstarted-wrapper .contact_form input[type="submit"] {
    background-color: var(--color-red);
    width: 100% !important;
    max-width: 160px !important;
    border: 1px solid #eee;
    font-size: 16px;
    font-weight: 400 !important;
    color: var(--color-white) !important;
    height: 55px;
    border-radius: 35px !important;
}

.getstarted-wrapper .contact_form p {
    padding-bottom: 0px !important;
    font-weight: initial !important;
    color: #000 !important;
    margin: 0 0 15px !important;
}

.getstarted-wrapper .contact_form label {
    display: block;
    font-size: 15px;
    font-weight: 600 !important;
}

.getstarted-wrapper .contact_form label br {
    display: none !important;
}

.getstarted-wrapper .contact_form span {
    display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    background-color: #ffb900 !important;
    color: #333 !important;
    padding: 15px !important;
    font-weight: 600 !important;
}

.wpcf7-not-valid-tip {
    font-size: 15px !important;
    font-weight: 400;
}

.pum-theme-410 .pum-container,
.pum-theme-lightbox .pum-container {
    border: 0px solid #000 !important;
}

.blog_details h2 {
    font-size: 36px !important;
    color: var(--color-black) !important;
}

.blog_details h3 {
    font-size: 28px !important;
    color: var(--color-black) !important;
}

.blog_details h4 {
    font-size: 22px !important;
    color: var(--color-black) !important;
}

.blog_details .entry-content ul li {
    position: relative;
    padding: 0 0 15px 0 !important;
}

.blog_details .entry-content ul li:before {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ea3934;
    border-radius: 50%;
    left: -20px;
    top: 10px;
    content: '';
}