:root {
    --font-nunito: "Nunito", sans-serif;
    --font-numans: "Numans", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --text-body: #333;
    --primary-color: #831B24;
    --white: #fff;
    --light-gray: #F8F8F8;
    --light-yellow: rgba(227, 196, 131, 0.20);
    --black-alternate: #1C1C1C;
    --black: #000;
    --transition: all 400ms ease-in-out;
}
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    -ms-overflow-style: scrollbar;
    box-sizing: border-box;
    font-size: 100%;
    height: 100%;
}
*,
:after,
:before {
    box-sizing: inherit
}
body {
    color: var(--text-body);
    font-family: var(--font-numans);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    font-size: 16px;
    background-color: var(--white);
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}
a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
a:visited{
    color: inherit;
}
a:focus {
    outline: none;
    text-decoration: none;
}
img {
    display: block;
}
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
label {
    font-weight: inherit;
}

p {
    font-family: var(--font-numans);
    color: var(--text-body);
    margin-bottom: 20px;    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px; /* 193.333% */
}
p b, p strong {
    font-weight: 600;
}

p:empty {
    display: none;
}

p:last-child {
    margin-bottom: 0;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1350px;
} 

ul:not(:last-child),
ol:not(:last-child) {
    margin-bottom: 20px;
}

ul, 
ol{
    padding-left: 20px;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: var(--font-nunito);
    font-weight: 700;
    color: var(--black-alternate);
    margin-bottom: 20px;
}

h1,.h1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 55px; /* 110% */
}

h2,.h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 48px; /* 120% */
}

h3,.h3 {
    font-size: 30px;
    font-style: normal;
    line-height: 130%;
    /* 39px */
    letter-spacing: -0.3px;
}

h4,.h4 {
    font-size: 24px;
    letter-spacing: -0.3px;
    line-height: 30px;
}

h5,.h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 122.222% */
}

h6,.h6 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 22px;
}

img {
    max-width: 100%;
    display: block;
}

.mb-80{
    margin-bottom: 80px;
}
.heading_label{
    border-radius: 50px;
    max-width: max-content;
    padding: 1.5px 13px;
    border: 1px solid var(--primary-color);
    margin-bottom: 10px;

    color: var(--primary-color);
    font-family: var(--font-numans);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-transform: capitalize;
}

.switch-column {
    flex-direction: row-reverse;
}
/* Reset Styles */

/* Button Style */
.btn:focus,
.btn:focus-visible,
.btn:focus-within,
a.btn:visited,
.btn{
    padding: 15px 31px;
    background-color: var(--primary-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    color: #FFF;
    font-family: var(--font-numans);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    text-transform: uppercase;
}
.btn:hover{
    background-color: var(--black-alternate);
    color: var(--white);
}
.btn.arrow-right::after {
    width: 12.806px;
    height: 12.806px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    background-image: url(../images/icon_arrow_diagonal.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 0px;
    background-position: 50% center;
}

.cta_read_more{
    display: inline-flex;
    align-items: center;
    color: var(--black-alternate);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    text-transform: uppercase;
}
.cta_read_more:after {
    background-image: url(../images/icon_cta_right.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 8px;
    content: "";
    display: inline-block;
    height: 24px;
    position: relative;
    top: -1px;
    width: 24px;
    transition: var(--transition);
}
.cta_read_more:hover::after{
    filter: brightness(0) saturate(100%) invert(14%) sepia(61%) saturate(3230%) hue-rotate(338deg) brightness(87%) contrast(94%);
}
/* Button Style */

/* Header Start */
.top_bar {
    padding: 7.5px 0;
    background-color: var(--primary-color);
}

.top_bar *:not(.btn){
    color: var(--white);
}
.top_bar .top_bar_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.top_bar .top_bar_wrap .center_text p{
    text-align: left;
    color: #FFF;
    font-family: var(--font-nunito);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px; /* 142.857% */
    text-transform: capitalize;
}
.top_bar .top_bar_wrap .center_text{
    flex-grow: 1;
}
.top_bar .top_bar_wrap .right_links{
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; */
    flex-shrink: 0;
}

@media only screen and (min-width: 1200px) {
    .top_bar .top_bar_wrap .right_links{
        position: absolute;
        right: 0;
    }
    .top_bar {
        padding: 9.5px 0;
    }
    .top_bar .top_bar_wrap .center_text p {
        text-align: center;
    }
}

.top_bar .top_bar_wrap .right_links a{
    display: flex;
    align-items: center;
    color: var(--white);
    font-family: var(--font-nunito);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px; /* 142.857% */
}
.top_bar .top_bar_wrap .right_links a:hover{
    opacity: 0.7;
}
.top_bar .top_bar_wrap .right_links a::before{
    background-image: url(../images/icon_mail.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    height: 24px;
    margin-right: 6px;
    position: relative;
    top: 0;
    width: 24px;
}

.site-header{
    position: relative;
    background-color: var(--white);
    z-index: 90;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    transition: 1s;
    width: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: stickySlideDown;
    animation-name: stickySlideDown;
}

.site-header + section:not(.inner_page_banner, .home_banner ){
    margin-top: 80px;
}


@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-inner .site-branding{
    width: 140px;
}
.header-inner .site-branding img{
    max-width: 51px;
}

.header_right_cta a.btn{
    padding: 13px 26px;
    text-transform: capitalize;
}
.header_right_cta a.btn::before{
    background-image: url(../images/icon_globe.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 0;
    width: 20px;
}

/* Header End */

/* Main Navigation */
.main-navigation,
.main-navigation ul{
    position: static;
}
.main-navigation ul{
    display: flex;
    align-items: center;
    padding-left: 0;
}
.main-navigation ul > li{
    list-style-type: none;
    position: static;
}
.main-navigation ul > li:not(:last-child){
    margin-right: 45px;
}
.main-navigation ul > li.menu-item-has-children{
    position: static;
}
.main-navigation ul > li > a{
    color: var(--black-alternate);
    font-family: var(--font-nunito);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
.main-navigation ul > li > a:hover{
    color: var(--primary-color);
}
.main-navigation ul > li.menu-item-has-children > a::after{
    transition: var(--transition);
    background-image: url(../images/icon_menu_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    content: "";
    display: inline-block;
    position: relative;
    top: 0;
    width: 24px;
    height: 24px;

}


.main-navigation ul > li .dropdown-menu{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    top: 100%;
    left: 0;
    border: 1.3px solid rgba(51, 51, 51, 0.10);
    background: var(--white);
    padding: 20px;    
    border-radius: 0 0 20px 20px;
    width: 100%;
}
.main-navigation ul > li .dropdown-menu .dropdown-inner{
    max-width: 870px;
        margin: 0 auto;
}


.main-navigation ul > li .dropdown-menu .dropdown-small{
    /* width: 640px; */
    display: flex;
    /* margin-left: -180px; */
}

.main-navigation ul > li .dropdown-menu .dropdown-large{
    /* width: 911px; */
    /* margin-left: -410px; */
}
.main-navigation ul > li .dropdown-menu .dropdown-small,
.main-navigation ul > li .dropdown-menu .dropdown-large{
    display: flex;
}
.two-col-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -16px;
    flex-grow: 1;
}
.two-col-menu .col-item{
    width: calc(50% - 8px);
    border-radius: 18px;
    background-color: rgba(217, 217, 217, 0.25);
    padding: 20px 45px 48px 20px;
    margin-bottom: 16px;
    position: relative;
}
.two-col-menu .col-item .inner-content{
    margin-bottom: 21px;
}
.two-col-menu .col-item p:last-child{
    margin-bottom: 0;
}
.two-col-menu .col-item p{
    color: #333;
    font-family: var(--font-nunito);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}
.two-col-menu .col-item h6{
    color: var(--black-alternate);
    font-family: var(--font-montserrat);
    color: var(--black-alternate);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #DDD;
}
.two-col-menu .col-item a.cta-link{
    width: 53px;
    height: 46px;
    border-radius: 18px 0 18px 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
.two-col-menu .col-item a.cta-link:hover{
    background: var(--black-alternate);
}
.main-navigation ul > li .dropdown-menu .dropdown-large .service_right_img{
    max-width: 251px;
    width: 251px;
    margin-left: 20px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--primary-color);
    position: relative;
}
.main-navigation ul > li .dropdown-menu .dropdown-large .service_right_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.menu-hamburger-wrap {
    display: none;
}

@media only screen and (min-width: 992px) {
    .main-navigation ul > li:not(:hover) > .dropdown-menu {
        pointer-events: none;
    }
    .main-navigation ul > li.menu-item-has-children > a:hover::after{
        filter: brightness(0) saturate(100%) invert(17%) sepia(54%) saturate(2258%) hue-rotate(329deg) brightness(94%) contrast(102%);
    }
    .main-navigation ul > li:hover .dropdown-menu{
        opacity: 1;
        visibility: visible;
    }
    .main-navigation ul > li.menu-item-has-children a{
        position: relative;
    }
    .main-navigation ul > li.menu-item-has-children:hover >  a::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50px;
        background: transparent;
        top: 0;
        left: unset;
        bottom: 0;
    }
}
/* Main Navigation */

/* Site Footer */

.site-footer{
    background-color: var(--black-alternate);
    padding: 46px 0 17px;
}
.site-footer .container{
    max-width: 1160px;
}
.site-footer *:not(.btn, .wpcf7-not-valid-tip){
    color: var(--white);
}

.copyright_footer{
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.copyright_footer .content_left{
    flex-grow: 1;
}
.copyright_footer .content_right{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.copyright_footer .content_right ul{
    display: flex;
    align-items: center;
}
.copyright_footer .content_right ul li{
    list-style-type: none;
    display: flex;
    align-items: center;
}
.copyright_footer .content_right ul li:not(:last-child)::after{
    position: relative;
    content: "|";
    margin: 0 10px;
}

.copyright_footer .content_right ul li a{
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    font-family: var(--font-nunito);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.32px;
}
.copyright_footer .content_right ul li a:hover{
    opacity: 0.5;
}
.footer_main_wrap{
    display: flex;
}
.footer_main_wrap .title_widget{
    color: var(--white);
    font-family: var(--font-nunito);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
    text-transform: uppercase;
}
.footer_main_wrap .footer_main_left{
    justify-content: space-between;
    display: flex;
    flex-grow: 1;
}
.footer_main_wrap .footer_main_left .footer_logo img{
    max-width: 209.92px;
}
.footer_main_wrap .footer_main_right{
    flex-shrink: 0;
    max-width: 366px;
    margin-left: 25px;
}
.footer_main_left .footer_col{
    width: calc(33.33% - 15px);
}
.footer_main_left .footer_col .menu{
    padding-left: 0;
}
.footer_main_left .footer_col .menu li:not(:last-child){
    margin-bottom: 15px;
}
.footer_main_left .footer_col .menu li{
    list-style-type: none;
    line-height: 1;
}
.footer_main_left .footer_col .menu li a{
    color: var(--white);
    opacity: 0.8;
    font-family: var(--font-numans);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
}
.footer_main_left .footer_col .menu li a:hover{
    opacity: 1;
}

.social_links ul{
    display: flex;
    align-items: center;
    padding-left: 0;
}
.social_links ul li:not(:last-child){
    margin-right: 19px;
}
.social_links ul li{
    list-style-type: none;
}
.social_links ul li a{
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    border-radius: 50%;
}
.social_links ul li a:hover{
    border: 1px solid #686868;
    background-color: #686868;

}
.social_links ul li a img{
    width: 15px;
    height: 15px;
}

.signup_form .wpcf7-form-control[type="email"]{
    background-color: var(--white);
    border-radius: 100px;
    color: var(--black-alternate);
    font-family: var(--font-nunito);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 175% */
    padding: 10px 20px;
    border: none;
    margin-bottom: 16px;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
}
.signup_form .btn-wrap p{
    display: flex;
    align-items: center;
}
.signup_form p{
    margin-bottom: 0;
}

.signup_form .btn-wrap .wpcf7-form-control{
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    box-shadow: none !important;
    outline: none !important;
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 133.333% */
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition);
}
.signup_form .btn-wrap .wpcf7-form-control:hover{
    background-color: rgba(227, 196, 131, 1);
    color: var(--black-alternate);
}
.signup_form .wpcf7-spinner{
    margin: 0 0 0 15px;
    background-color: #FFF;
}
.signup_form .wpcf7-spinner::before{
    background-color: var(--black-alternate);
}
.wpcf7-not-valid-tip {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: var(--font-nunito);
    font-weight: 500;
    text-transform: inherit;
    letter-spacing: 0;
    line-height: normal;
}
.wpcf7 form .wpcf7-response-output {
    margin: 25px 0 0;
    padding: 10px 15px;
    font-size: 14px;
    border-width: 1px;
}
.wpcf7-not-valid-tip + .wpcf7-not-valid-tip{
    display: none;
}
/* Site Footer */

/* Common Form Style */

.contact_right_form .wpcf7-form-control.wpcf7-textarea,
.contact_right_form .wpcf7-form-control[type="text"],
.contact_right_form .wpcf7-form-control[type="tel"],
.contact_right_form .wpcf7-form-control[type="email"] {
    color: var(--black-alternate);
    font-family: var(--font-numans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    padding: 10px 15px;
    border: none;
    margin-bottom: 14px;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;

    border-radius: 10px;
    border: 1.3px solid rgba(28, 28, 28, 0.20);
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}
.contact_right_form .wpcf7-form-control.wpcf7-textarea:focus,
.contact_right_form .wpcf7-form-control[type="text"]:focus,
.contact_right_form .wpcf7-form-control[type="tel"]:focus,
.contact_right_form .wpcf7-form-control[type="email"]:focus {
    border: 1.3px solid rgba(28, 28, 28, 0.50);
}

.contact_right_form .wpcf7-form-control.wpcf7-textarea{
    height: 119px;
    resize: vertical;
}

.contact_right_form .wpcf7-form-control.wpcf7-textarea::placeholder,
.contact_right_form .wpcf7-form-control[type="text"]::placeholder,
.contact_right_form .wpcf7-form-control[type="tel"]::placeholder,
.contact_right_form .wpcf7-form-control[type="email"]::placeholder{
    color: var(--black-alternate);
    opacity: 0.8;
    font-family: var(--font-numans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
}

.contact_right_form .form_btn .wpcf7-form-control {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition);
    
    font-family: var(--font-numans);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    text-transform: uppercase;
}
.contact_right_form .form_btn .wpcf7-form-control:hover{
    background-color: var(--black-alternate);
    color: var(--white);
}
.contact_right_form br{
    display: none;
}
.contact_right_form .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
}
.contact_right_form .form_btn > p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.contact_right_form .form_btn > p .wpcf7-spinner{
    margin: 0 0 0 15px;
    /* background-color: var(--white); */
}
.contact_right_form .form_btn > p .wpcf7-spinner::before{
    /* background-color: var(--primary-color); */
}
.contact_right_form p{
    margin-bottom: 4px;
}

.contact_right_form .short_info{
    color: var(--black-alternate);
    font-family: var(--font-nunito);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    margin-top: 21px;
    margin-bottom: 0;
}
.contact_right_form .short_info a{
    text-decoration: underline;
    color: var(--black-alternate);
    font-size: 14px;
}
.contact_right_form .short_info a:hover{
    text-decoration: none;
}
/* Common Form Style */

/* Accordian Style */
.accrodion-main{
    align-items: flex-start;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.accrodion-content {
    display: none;
    padding: 16px 72px 0 0;
    border-top: 1px solid transparent;
    margin-top: 20px;
}
.accrodion-item.active .accrodion-content {
    border-top: 1px solid rgba(28, 28, 28, 0.10);
}

.accrodion-content p{
    color: var(--text-body);
    font-family: var(--font-nunito);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 162.5% */
}
.accrodion-main .accrodion-item:not(:last-child){
    margin-bottom: 20px;
}
.accrodion-main .accrodion-item{
    position: relative;
    padding: 20px;

    border-radius: 15px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    background: var(--white);
}

.accrodion-content p:last-child {
    margin-bottom: 0;
}
.accrodion-title {
    padding-right: 40px;
    padding-bottom: 0;
    position: relative;
    cursor: pointer;    
    transition: var(--transition);

    color: var(--black-alternate);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
}
.accrodion-item .accrodion-title > :last-child{
    margin-bottom: 0;
}
.accrodion-title h4 {
    margin-bottom: 0;
    padding-right: 40px;
    color: #2C2E30;
}
.accrodion-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon_plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center center;
    transition: var(--transition);
}
.accrodion-item.active .accrodion-title::before {
    transform: translateY(-50%) rotate(45deg);
}
/* Accordian Style */

/* Error Style */
.error_banner{
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url(../images/inner_banner_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: calc(100% + 2px);
    padding: 80px 0;
    margin-bottom: 0;
    text-align: center;
}
.error_banner :last-child{
    margin-bottom: 0;
}
.error-text-content{
    text-align: center;
    padding: 10vh 0;
    max-width: 590px;
    margin: 0 auto;
}
.error-text-content h2{
    color: var(--black-alternate);
    line-height: 1;
    margin: 0 0 30px;
    line-height: 1;
}
/* Error Style */



@media only screen and (max-width: 1199px) {
    .footer_main_wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_main_wrap .footer_main_right{
        margin-top: 30px;
        margin-left: 0;
    }

    .footer_main_wrap .footer_main_left {
        width: 100%;
    }

}

@media only screen and (max-width: 991px) {
    .site-header + section:not(.inner_page_banner, .home_banner ){
        margin-top: 60px;
    }

    .copyright_footer .content_left p,
    .copyright_footer .content_right ul li a {
        font-size: 14px;
        line-height: normal;
    }
    .mb-80 {
        margin-bottom: 60px;
    }
    /* Heading Style */
    h1,.h1 {
        font-size: 44px;
        line-height: 46px;
    }

    h2,.h2 {
        font-size: 32px;
        line-height: 32px;
    }

    h3,.h3 {
        font-size: 24px;
        line-height: 24px;
    }

    h4,.h4 {
        font-size: 30px;
        line-height: 36px; /* 138.462% */
    }

    h5,.h5 {
        font-size: 18px;
        line-height: 24px; /* 133.333% */
    }

    h6,.h6 {
        font-size: 16px;
        line-height: 24px; /* 133.333% */
    }
    /* Heading Style */

    .error_banner{
        background-size: cover;
    }

    /* Main Header Style Start */
    .site-branding.mobile_logo,
    .header_right_cta,
    .menu-hamburger-wrap {
        display: flex;
        position: relative;
        z-index: 999;
    }

    .site-header >  .container{
        padding: 0;
    }

    .header-inner {
        padding: 15px;
    }

    .site-branding{
        position: relative;
        z-index: 99;
    }

    .mobile-header-alt {
        transition: var(--transition);
        position: relative;
        z-index: 9;
        width: 100%;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-header-alt::after{
        position: absolute;
        content: "";
        width: calc(100% - 30px);
        left: 15px;
        bottom: 0;
        border-bottom: 1px solid rgba(0, 42, 74, 0.15);
    }

    html:not(.menu-active) .sticky .mobile-header-alt::after{
        display: none;
    }

    .menu-active .site-header.sticky{
        background-color: var(--grey);
    }

    /* .menu-active .mobile-header-alt {
        border-radius: 12px 12px 0 0;
    } */

    html.menu-active{
        overflow: hidden;
    }
    
    .sticky .header-inner{
        padding: 10px 15px;
    }
    .header-bg-inner {
        position: relative;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-radius: 0;
        padding: 0 15px;
    }

    .header-fixed .header-bg-inner {
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 0;
    }

    .header-sticky {
        margin-bottom: 30px;
    }

    .menu-active .main-navigation-outer::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 70px;
        background: var(--white);
        left: 0;
        transition: all .5s;
        top: 0;
        z-index: 91;
    }

    .main-navigation-outer {
        pointer-events: none;
        z-index: 4;
        position: absolute;
        /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
        /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
        width: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        transition: var(--transition);
    }
    .main-navigation {
        overflow-y: auto;
        transform: translateX(-40px);
        align-items: flex-start;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        left: 0;
        position: absolute;
        top: 0;
        transition: var(--transition);
        width: 100%;
        z-index: 90;
        justify-content: flex-start;
        padding: 90px 15px 40px;
        height: 100dvh;
        clip-path: inset(0% 100% 0% 0%);
    }

    .site-header:not(.sticky) .main-navigation {
        height: calc(100dvh - 60px);
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main-navigation ul > li > a,
    .main-navigation ul > li{
        width: 100%;
    }

    .main-navigation ul > li > a{
        justify-content: space-between;
    }

    .main-navigation ul > li.menu-item-has-children.active > a {
        color: var(--primary-color);
    }
    .main-navigation ul > li.menu-item-has-children.active > a::after {
        transform: rotate(180deg);
        filter: brightness(0) saturate(100%) invert(17%) sepia(54%) saturate(2258%) hue-rotate(329deg) brightness(94%) contrast(102%);
    }

    .main-navigation ul > li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .main-navigation ul > li .dropdown-menu{
        position: relative;
        opacity: 1;
        visibility: unset;
        top: unset;
        transition: unset;
        margin-top: 10px;
        border-radius: 10px;
        padding: 15px;
    }
    .main-navigation ul > li .dropdown-menu .dropdown-large,
    .main-navigation ul > li .dropdown-menu .dropdown-small{
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .menu-active .main-navigation {
        clip-path: inset(0% 0% 0% 0);
        transform: translateX(0);
    }

    .menu-active .main-navigation-outer {
        pointer-events: all;
    }

    .menu-hamburger-wrap {
        margin-left: 15px;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    .menu-hamburger-wrap .menu-icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-hamburger-wrap .menu-icon span {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 20px;
        height: 20px;
    }
    .menu-hamburger-wrap .menu-icon span.icon-close{
        display: none;
    }

    .header_right_cta{
        margin-left: auto;
    }

    .main-navigation ul > li .dropdown-menu .dropdown-large{
        flex-direction: column;        
    }
    .main-navigation ul > li .dropdown-menu .dropdown-large .service_right_img img {
        position: relative;
    }
    .main-navigation ul > li .dropdown-menu .dropdown-large .service_right_img {
        max-width: calc(50% - 8px);
        width: calc(50% - 8px);
        margin-left: 0;
        margin-top: 25px;
        flex-shrink: 0;
        border-radius: 18px;
        overflow: hidden;
        background-color: var(--primary-color);
        position: relative;
    }

    header .header-inner::before {
        position: fixed;
        content: "";
        width: 100%;
        left: 0;
        top: 0;
        background-color: var(--white);
        z-index: 99;
    }

    header .header-inner::before {
        /* height: 125px; */
    }

    header.sticky .header-inner::before {
        /* height: 75px; */
    }
    .top_bar {
        position: relative;
        z-index: 99;
    }

    .top_bar .top_bar_wrap {
        flex-direction: column;
    }

    .menu-active .menu-hamburger-wrap .menu-icon span.icon-close{
        display: block;
        width: 16px;
        height: 16px;
    }
    .menu-active .menu-hamburger-wrap .menu-icon span.icon-hamburger{
        display: none;
    }
    
    /* Main Header Style End */

}


@media only screen and (max-width: 767px) {
    body{
        font-size: 15px;
    }
    .site-header + section:not(.inner_page_banner, .home_banner ){
        margin-top: 40px;
    }
    .mb-80 {
        margin-bottom: 40px;
    }
    .top_bar .top_bar_wrap .center_text p {
        font-size: 12px;
        line-height: 18px;
    }

    .error_banner {
        padding: 40px 0;
    }

    .copyright_footer .content_right ul{
        padding-left: 0;
    }

    .two-col-menu {
        flex-direction: column;
    }
    .main-navigation ul > li .dropdown-menu .dropdown-large .service_right_img,
    .two-col-menu .col-item {
        width: 100%;
        max-width: 100%;
    }

    .site-footer {
        background-color: var(--black-alternate);
        padding: 30px 0 20px;
    }
    .footer_main_wrap .footer_main_left {
        flex-wrap: wrap;
    }
    .footer_main_left .footer_col {
        width: calc(50% - 15px);
    }
    .footer_main_left .footer_col.item-1{
        width: 100%;
    }
    .footer_main_left .footer_col.item-1:not(:last-child){
        margin-bottom: 30px;
    }

    .copyright_footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .copyright_footer .content_right{
        padding-top: 10px;
        width: 100%;
    }
    

    
}

@media only screen and (max-width: 380px) {
    .home_banner_content h1 {
        font-size: 36px;
        line-height: normal;
    }
    .btn:focus, .btn:focus-visible, .btn:focus-within, a.btn:visited, .btn {
        padding: 15px 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
    }

    .footer_main_left .footer_col:not(:last-child){
        margin-bottom: 30px;
    }
    .footer_main_left .footer_col {
        width: 100%;
    }
    .header_right_cta {
        display: none;
    }
}