/* ============================
   Global Resets
============================ */
*,
ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    transition: 0.3s;
}

a:focus,
a:hover {
    outline: none;
    border: 0;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 1) !important;
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 1) !important;
}

/* ============================
   Base Typography
============================ */


p {
    line-height: 24px;
}

h2,
h3,
h4 {
    padding: 0;
}

/* ============================
   Utility Classes
============================ */
.float_right {
    float: right;
}

.float_left {
    float: left;
}

.float_none {
    float: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.padding_left0 {
    padding-left: 0;
}

.padding_right0 {
    padding-right: 0;
}

.padding_left_right0 {
    padding-left: 0;
    padding-right: 0;
}

.padding_top_bottom {
    padding-top: 0;
    padding-bottom: 0;
}

.padding0 {
    padding: 0 !important;
}

.margin0 {
    margin: 0 !important;
}

.margin_top30 {
    margin-top: 30px;
}

.margin_top15 {
    margin-top: 15px;
}

.padding_right8 {
    padding-right: 8px !important;
}

.border_radius {
    border-radius: 0;
}

.clear {
    clear: both;
    margin: 0 auto;
}

.page_container {
    width: 1400px;
    margin: 0 auto;
}

.d_flex {
    display: flex;
}

.justify_content_enter {
    justify-content: center;
}

.justify_content_space_between {
    justify-content: space-between;
}

/* ============================
   Layout Adjustments
============================ */
body,
html {

    width: 100% !important;
    background: #fff !important;
}

.site-content-contain,
.site-content {
    background: none;
    padding: 0 !important;
}

.site-footer {
    border: 0;
}

.page:not(.home) #content {
    padding-bottom: 0 !important;
}

.widget {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget a:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.widget ul li,
.widget ol li {
    border: 0 !important;
}

/* ============================
   Error Page
============================ */
.error_page {
    text-align: center;
}

.error_page h1 {
    color: #040202;

    font-size: 40px;
}

.error_page h2 {
    color: #040202;

    font-size: 40px;
    margin-top: 0;
    text-transform: uppercase;
}

.error_page .border {
    background: #e5e5e5;
    display: inline-block;
    height: 2px;
    margin: 4px 20px;
    width: 150px;
}

.error_page h4 {
    color: #000;
    display: inline-block;

    font-size: 18px;
    margin: 10px 0 40px;
    text-transform: uppercase;
}

/* ============================
   Widgets & Search
============================ */
.widget_search {
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 30px;
}

.search-form {
    position: relative;
}

.search-form label {
    display: block;
}

.search-form input[type="search"] {
    border-radius: 0;
}

.search-form .search-submit {
    bottom: 3px;
    color: #fff;
    height: 41px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
}

/* ============================
   Navigation
============================ */
.main-navigation a {
    color: #fff;
    font-size: 14px;
    padding: 13px 15px;
    text-transform: uppercase !important;

}

.main-navigation a:hover,
.main-navigation li.current_page_item a {
    color: #000;
    background: #fff200;
    text-decoration: none;
}

.main-navigation li {
    position: relative;
    z-index: 999;
}

.main-navigation li ul a {
    color: #000;
}

.main-navigation li.current_page_item ul a,
.main-navigation li ul a:hover {
    color: #fff;
    background: #0063b4 !important;
    text-decoration: none;
}

.main-navigation ul ul {
    margin-left: -8px;
}

/* ============================
   Pagination
============================ */
.nav-previous a,
.nav-next a {
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
}

.nav-next a:hover,
.nav-next a:focus,
.nav-previous a:hover,
.nav-previous a:focus {
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 1);
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 1);
}

/* ============================
   Slider Navigation
============================ */
.centered-btns_tabs,
.transparent-btns_tabs,
.large-btns_tabs {
    bottom: 100px;
}

.transparent-btns_nav {
    width: 32px;
    height: 32px;
    opacity: 1;
    top: 0;
    bottom: 0;
}

.transparent-btns_nav.prev {
    background: url(../images/left.png) no-repeat;
    right: 68px;
    left: auto;
}

.transparent-btns_nav.next {
    background: url(../images/right.png) no-repeat;
    left: auto;
    right: 30px;
}

/* ============================
   Animation
============================ */
@-webkit-keyframes clickbounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes clickbounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.clickbounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    text-align: center;
    margin-top: 30px;
}



/* ============================  */

img {
    max-width: 100%;
}

html body, h1, h2, h3, h4, h5, h6, p, div, li, input, button, textarea {
    font-family: "Poppins", sans-serif !important;
}

body {
    font-size: 16px;
    font-family: "Poppins", sans-serif !important;
    color: var(--color-text);
}


body {
    overflow-x: hidden !important;
}


:root {

    --color-primary: #2c3583;
    --color-accent: #EA8C23;
    --color-text: #333333;
    --color-heading: #333333;
    --color-heading2: #111111;
}



.vce-text-block h2, .vce-text-block h3, .vce-text-block h4, .vce-text-block h5, .vce-text-block h6,
.vce-faq-toggle-inner h3,
.vce-raw-html h2, .vce-raw-html h3, .vce-raw-html h4, .vce-raw-html h5, .vce-raw-html h6 {
    color: var(--color-heading2);
    margin: 25px 0 15px 0;
    font-weight: 600;
}


p {
    font-size: 18px;
    color: var(--color-heading);
    line-height: 150%;
}


.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 0;
}



.top_menu ul {
    margin: 0;
    padding: 0;
    float: right;
}

.top_menu ul li {
    list-style: none;
    float: left;
    margin: 0 15px;
}


.top_menu ul li a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 17px;
}

.top_menu ul li.current_page_item a {
    color: var(--color-accent);
}



.top_menu ul li a:hover {
    text-decoration: underline;
}

.top_menu ul li:last-child {
    margin-right: 0;
}

.top_menu {
    border-bottom: 1px solid var(--color-primary);
    padding: 10px 0;
    background: #fff;
}

.header_logo {
    width: 250px;
    display: block;
}


.footer_top {
    background: var(--color-primary);
}

.footer_address i {
    background: #fff;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    border-radius: 6px;
    color: var(--color-accent);
    margin-right: 5px;
}


.footer_address a, .footer_address {
    color: #fff;
    text-decoration: none;
}

.footer_address {
    gap: 20px;
}

.footertop_address {
    padding: 50px 0;
}

.footertop_address .phone a {
    font-size: 20px;
}

.facebook_post iframe, .facebook_post .fb_iframe_widget {
    border-radius: 10px;
    width: 100% !important;
    height: 300px !important;
}


.footertop_links {
    padding-bottom: 60px;
}


.footertop_links h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #5862bd;
    padding-bottom: 15px;
    width: 85%;
    margin-bottom: 30px;
}

.footertop_links ul {
    padding: 0;
    margin: 0;
}


.footertop_links ul li {
    list-style: none;
}

.footertop_links ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-decoration-thickness: auto;
    font-size: 16px;
    padding: 5px 0;
    display: block;
}

.footertop_links ul li a:hover {
    text-decoration: underline;
}


.quick_links_2 li {
    float: left;
    width: 50%;
}

.copy_footer {
    background-color: #020626;
    padding: 30px;
}

.copy_footer * {
    color: #fff;
}


.copy_social {
    margin: 0;
    padding: 0;
}

.copy_social li {
    float: left;
    margin-right: 20px;
    list-style: none;
}


#gt_float_wrapper {
    bottom: 71px !important;
}

.gold_seal {
    display: flex;
    align-items: center;
    background: var(--color-primary);
    border-radius: 1rem;
    padding: 30px;
    gap: 30px;
}


.gold_seal h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 15px;
}

.gold_seal h3 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}


.headh2, .vce-text-block h2, .homebanner h1, .inner_breadcramp h1 {
    font-weight: 600;
    font-size: 52px;
    color: var(--color-heading2);
    margin-bottom: 15px;
}


.vce-raw-html h2.h2 {
    font-weight: 600;
    font-size: 52px;
    margin-bottom: 15px;
}

.headh2 strong, .vce-text-block h2 strong {
    font-weight: 600;
}


.latest_news_slider_box svg {
    margin: 20px 0;
}



.latest_news_slider_box {
    border: 1px solid #f0f0f0;
    padding: 20px 30px;
    border-radius: 1rem;
    min-height: 350px;
    background: var(--Background-Blue, rgba(249, 249, 255, 0.80));
}


.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-primary) !important;
    border-radius: 50%;
    text-indent: -99999px;
    background: url(../images/arrowright.jpg) no-repeat center center !important;
    margin-left: 10px;
    opacity: 0.8;
}

.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
}


.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-primary) !important;
    border-radius: 50%;
    text-indent: -99999px;
    background: url(../images/arrowleft.jpg) no-repeat center center !important;
    margin-right: 10px;
    opacity: 0.8;
}

.owl-carousel .owl-nav button.owl-prev:hover {
    opacity: 1;
}

.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}





.color-primary {
    background: var(--color-primary);
}



.video_part_template1 h2,
.video_part_template1 p {
    color: #fff;
}


.themebutton, .vce-button {
    background: var(--color-accent) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 30px !important;
    display: inline-block !important;
    border-radius: 0.31rem !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    margin-top: 15px !important;
}

.themebutton:hover, .vce-button:hover {
    background: #020626 !important;
}



.padding_div {
    padding: 60px 0;
}


.support_div {
    display: block;
    padding: 70px 15px;
    text-align: center;
    border: 1px solid #D9D9D9 !important;
    border-radius: 1rem;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
}

.support_div h4 {
    margin-top: 50px;
    color: #fff;
}


.support_div:hover {
    background: #fff;
}

.support_div:hover h4 {
    color: var(--color-heading)
}



.services_box h3 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-heading2)
}

.themebutton2 {
    color: var(--color-accent);
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.themebutton2:hover {
    text-decoration: underline;
}

.services_box img {
    border-radius: 15px;
    margin-bottom: 20px;
}


.radius {
    border-radius: 15px;
}


.copy_footer p {
    font-size: 16px;
}

.vce-hero-section--content-container h1,
.vce-hero-section--content-container h2 {
    font-weight: 600;
}

.banner_bottom {
    background: var(--color-primary);
    border-radius: 0 0 15px 15px;
    padding: 25px 0;
    margin: 0 0 80px 0;
    text-align: center;
}


.banner_bottom li {
    display: inline-block;
    list-style: none;
    font-size: 30px !important;
    color: #fff;
    font-weight: 500;
    width: 31.33%;
    padding: 0px 0;
}

.banner_bottom li img {
    margin-right: 15px;
}

.banner_bottom li:nth-child(2) {
    border-left: 4px solid var(--color-accent);
    border-right: 4px solid var(--color-accent);
}


.callfixed {
    position: fixed;
    bottom: 74px;
    z-index: 99;
    background: var(--color-accent);
    width: 50px;
    line-height: 50px;
    text-align: center;
    left: 14px;
    height: 50px;
    color: #fff;
    font-size: 21px;
    border-radius: 50%;
    display: none;
}




/* Menu Css ========================== */
.menuleft {
    background: var(--color-primary);
    height: 100vh;
    left: -1200px;
    top: 0;
    position: fixed !important;
    padding: 0 !important;
    width: 25% !important;
    z-index: 9999999;
    transition: 0.3s;
}


.menu_header {
    background: #f7f7f7;
    padding: 11px 20px 9px 20px;
}

.menu_header .site-title {
    margin: 0;
}



.menu_list {
    padding: 5px 0 30px 0;
}

.menu_list ul {
    margin: 0;
    padding: 0;
}

.menu_list ul li {
    list-style: none;
    margin-bottom: 0;
    position: relative;
}


.menu_list ul li a {
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    border-top: 1px solid #334a79;
    border-bottom: 1px solid #334a79;
    margin-top: -1px;
    display: flex;
}

.menu_list ul li.current_page_item>a {
    color: var(--color-accent);
    font-weight: 600;
}

.current-menu-parent>a {
    color: var(--color-accent) !important;
    font-weight: 600;
}

.menu_list ul li.menu-item-has-children a {
    padding: 15px 60px 15px 30px;
}

.menu_list ul li a:hover {
    color: var(--color-accent);
}

.menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 60px;
    text-align: center;
    color: #fff;
    background: url(../images/downarrow.png) no-repeat center center;
    background-size: auto;
    background-size: 13px;
    height: 56px;
    text-indent: -9999px;
    z-index: 9999;
}


.menu_list ul li>.sub-menu li a {
    margin-left: 20px !important;
}

.menu_list ul .sub-menu .sub-menu a {
    margin-left: 30px !important;
}


.menu_list ul li .sub-menu a {
    border: 0 !important;
}

.menu-item-has-children.open>.sub-menu {
    background: #283e6a;
}

.menu-item-has-children .sub-menu .sub-menu {
    background: #324a79;
}



.menu_list li .sub-menu li a:hover {
    color: var(--color-accent);
}


.menu_list li:nth-child(1) a {
    border-top: 0 !important;
}



.menu_list ul li img {
    filter: brightness(0) invert(1);
}


.menu_list ul li.current_page_item img,
.menu_list ul li a:hover img {
    filter: none;
}



.menuleft.open {
    width: 100% !important;
    left: 0;
}


.menu_open_close {
    display: block;
}

.menu_open_close {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -20px;
    font-size: 21px;
    background: var(--color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99999;
    transition: 0.3s;
}

.menuleft.open .menu_open_close {
    top: 0;
    margin-top: 29px;
}


.top_menu.active-top .menu_open_close {
    right: -100px;
}

.top_menu {
    position: relative;
}


.menuleft .header_logo {
    width: 250px !important;
    display: block;
}

.menu_open_close {
    display: none;
}




@media only screen and (max-width: 991px) {

    .menu_open_close {
        display: block;
    }

    .top_menu .site-nav {
        display: none;
    }

    .header_logo {
        width: 250px !important;
        display: block;
    }



}




.vce_container {
    max-width: 1356px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 30px;
}



/*  End Menu Css ========================== */


/*  Inner Breadcramp ========================== */

.inner_breadcramp {
    background-size: cover !important;
    background-position: center center !important;
    padding: 100px 0;

}


.inner_breadcramp h1 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 0;
}


.vce-faq-toggle-title {
    padding-left: 43px !important;
}

.vce-faq-toggle-title h3 {
    color: var(--color-heading2);
    font-weight: 600;
}

.vce-faq-toggle-shape-color--1D64C5 .vce-faq-toggle-icon {
    background-color: var(--color-primary) !important;
}

.vce-faq-toggle-icon {
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    left: -43px !important;
}

.vce-faq-toggle-text-block {
    padding-left: 0 !important;
    margin-top: 20px;
}


.inner_img {
    border-radius: 1rem;
    width: 100%;
}

.right_menu h3 {
    color: var(--color-heading2);
    margin: 0px 0 15px 0;
    font-weight: 600;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.right_menu {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 1rem;
}

.right_menu ul {
    margin: 0;
    padding: 0;
}

.right_menu ul li {
    list-style: none;
}

.right_menu ul li a {
    color: var(--color-heading);
    font-size: 18px;
    text-decoration: none;
    padding: 0;
    display: block;
}

.right_menu ul li a:hover {
    color: var(--color-accent);
}

.right_menu {
    margin-top: 30px;
}

.right_menu1 {
    margin-top: 60px;
}

.right_menu ul li+li {
    margin-top: 15px;
}

.vce-vim-video-player-iframe {
    border-radius: 8px;
}


.fixed_div_right {
    margin-bottom: 40px;
    position: sticky;
    top: 00px;
    /* distance from top when scrolling */
    align-self: flex-start;
    /* IMPORTANT: makes sticky work correctly */
}

.customli {
    padding: 0;
}

.customli li {
    list-style: none;
    background: url(../images/031a2a46736ca759b16ae0fad715beb5.png) no-repeat;
    background-position: left 5px;
    background-size: 19px;
    padding: 3px 0 3px 29px;
    font-size: 18px;
}


.inner_breadcramp .breadcramenu {
    font-size: 18px;
}

.services_box_inn .themebutton2 {
    font-size: 16px;
    margin-top: 0;
    font-weight: 600;
}

.services_box_inn {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 1rem;
    height: 100%;
    transition: 0.3s;
}

.services_box_inn:hover {
    background: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.tab_tab_left {
    border-right: 1px solid #eee;
    padding-right: 70px;
    width: 30%;
}

.tab_tab_right {
    padding-left: 60px;
    width: 70%;
}


.nav-pills .nav-link {
    font-size: 18px;
    text-align: left;
    color: var(--color-heading);
    background: #fff;
    padding: 15px 20px;
}

.nav-pills .nav-link:hover {
    background: #fff;
    color: var(--color-accent);
}

.nav-pills .nav-link.active {
    background: #fff !important;
    color: var(--color-heading2) !important;
    font-weight: 600;
    border: 1px solid #eee;
    border-left: 5px solid var(--color-accent);
}


.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
    float: right !important;
    margin-right: 0;
}

.sp-easy-accordion .sp-ea-single .ea-header a {
    color: var(--color-heading2) !important;
    padding: 0 !important;
}

.sp-easy-accordion .sp-ea-single {
    border: 0 !important;
}

.ea-header {
    background: #fff;
}

.ea-body {
    padding: 15px 0 !important;
}

.ea-card {
    margin-bottom: 30px !important;
}

.ea-card+.ea-card {
    border-top: 1px solid #eee !important;
    padding-top: 30px !important;
    background: #fff !important;
    margin-bottom: 30px !important;
}


.inner_phone {
    padding-left: 30px;
    font-size: 18px;
    background: url(../images/phone-line-1.png) no-repeat left center;
}



.imgradius {
    border-radius: 1rem !important;
}


b, strong {
    font-weight: 600;
}


.vce-button--style-outline--border-square {
    border: 2px solid var(--color-accent) !important;
    background: #fff !important;
    color: var(--color-accent) !important;
}

.vce-button--style-outline--border-square:hover {
    border: 2px solid var(--color-accent) !important;
    background: var(--color-accent) !important;
    color: #fff !important;
}

.vce-text-block blockquote {
    border-left: 7px solid var(--color-accent) !important;
    padding: 15px 15px 0px 25px;
    margin-left: 0;
    border: 1px solid #eee;
    border-radius: 1rem;
}



/* News */
.post-meta {
    font-size: 18px;
}

.post-meta abbr {
    color: var(--color-primary);
}

.container_news_details {
    margin-top: 60px;
    margin-bottom: 60px;
}

.post_block {
    margin: 40px 0 80px;
}

.news_item_top {
    margin-top: 30px !important;
}

.news_item_bg::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.92%, rgba(0, 0, 0, 0.80) 100%);
    pointer-events: none;
    z-index: 9;
}




.news_item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.news_item_bg {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center center;
    position: relative;
}


.view-more {
    font-size: 16px;
    display: block;
    background: var(--color-accent);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 12px 0;
    text-decoration: none;
    color: #fff;
}

.view-more:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ===== Pagination ===== */
.news-pagination {
    margin: 60px 0 00px 0;
    text-align: center;
}

.news-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pagination a,
.news-pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.news-pagination .current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}


.news_item h2 {
    position: absolute;
    bottom: 0;
    padding: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    z-index: 99;
}

.recent-posts-list li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.recent-posts-list li a {
    font-size: 15px !important;
    text-decoration: none;
}




@media only screen and (max-width: 1399px) {
    .top_menu ul li a {
        font-size: 15px;
    }

    .top_menu ul li {
        margin: 0 10px;
    }

    .header_logo {
        width: 100%;
        display: block;
    }

}



@media only screen and (max-width: 1199px) {

    .container {
        max-width: 95% !important;
    }

    .headh2, .vce-text-block h2, .homebanner h1, .inner_breadcramp h1, .vce-raw-html h2.h2 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .vce-hero-section--content-container h1, .vce-hero-section--content-container h1 * {
        font-size: 42px !important;

    }

    .vce-hero-section--content-container h1 {
        margin-bottom: 15px !important;
    }

    .vce-faq-toggle-title h3, .vce-faq-toggle-inner h3 {
        font-size: 20px;
    }


    .themebutton, .vce-button {
        font-size: 16px !important;
    }


    .top_menu ul li {
        margin: 0 5px;
    }

    .top_menu ul li a {
        font-size: 14px;
    }

    .homebanner {
        background: #fff;
    }

    .footertop_links h3 {
        width: 100%;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .customli li {
        font-size: 16px;
    }
}


@media only screen and (max-width: 991px) {

    @supports(padding:max(0px)) {
        body {
            padding-left: min(0vmin, env(safe-area-inset-left));
            padding-right: min(0vmin, env(safe-area-inset-right))
        }
    }

    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important
    }


    .homebanner .vce-hero-section-media--md .vce-hero-section--content {
        width: 80%;
    }


    .banner_bottom {
        padding: 15px 0;
        margin: 0 0 30px 0;
    }

    .padding_div {
        padding: 30px 0;
    }

    .our_services_section {
        padding-top: 30px;
        padding-bottom: 30px;
    }


    .iframe_ture {
        height: 400px;
    }



    .footertop_links h3 {
        margin-top: 30px;
    }

    .footertop_address .phone a {
        font-size: 16px;
    }


    .footer_logo {
        margin-bottom: 15px;
        width: 300px;
        display: block;
    }


    .phone {
        margin-top: 15px;
    }

    .services_box_inn .services_in_icon, .services_box_inn p {
        display: none;
    }

}


@media only screen and (max-width: 767px) {
    .banner_bottom li img {
        display: block;
        width: 34px;
        margin: 0 auto 10px auto;
    }

    .banner_bottom li {
        font-size: 14px !important;
    }



    .banner_bottom li:nth-child(2) {
        border-left: 2px solid var(--color-accent);
        border-right: 2px solid var(--color-accent);
    }


    .vce-hero-section--content-container h1 * {
        font-size: 36px !important;

    }

    .vce-hero-section--content-container h1 {
        line-height: 1.1;
    }


    .support_div {
        padding: 30px 15px;
    }

    .iframe_ture, .iframe_half02 {
        height: 180px;
    }

    .iframe_half02 {
        margin-top: 30px;
    }

    .gold_seal {
        display: block;
    }

    .gold_seal_left {
        margin-bottom: 15px;
    }


    .phone {
        margin-top: 25px;
    }



    .footer_address i {
        float: left;
        margin-right: 15px;
    }

    .footertop_address {
        padding: 30px 0 00px 0;
    }

    .footertop_links {
        padding-bottom: 40px;
    }


    .copy_social li {
        display: inline-block;
        float: none;
    }

    .copy_social {
        text-align: center;
    }

    .copy_footer p {
        font-size: 14px;
    }

    .footertop_links ul li a {
        font-size: 14px;
    }

    #gt_float_wrapper {
        bottom: 15px !important;
    }

    .copy_footer {
        padding: 30px 30px 80px 30px;
    }

    .homebanner #el-5ae767d9 .vce-col-inner {
        background: url(../images/Hemet-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    .homebanner .mainbanner {
        background: none !important;
    }

    .callfixed {
        display: block;
    }


    .inner_breadcramp {
        padding: 40px 0;
    }


    .right_menu1 {
        margin-top: 0px;
    }

    .right_menu {
        margin-top: 0px;
        margin-bottom: 30px;
    }



    .tab_tab_left {
        border-right: 0px solid #eee;
        padding-right: 0px;
        width: 100%;
    }

    .tab_tab_right {
        padding-left: 0px;
        margin-top: 20px;
        width: 100%;
    }


    .tab_tab {
        display: block !important;
    }

}