body {
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary.focus, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

p {
    margin: 0 0 25px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 25px 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    color: #070748;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}


h1 {
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
}

h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

h6 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none !important;
    color: #77B843;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

ol {
    padding-left: 20px;

}

ol li {
    margin-bottom: 5px;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    padding: 0;
    padding-left: 17px;
    position: relative;
    list-style: none;
    margin-bottom: 5px;
}

ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #000;
    position: absolute;
    top: 8px;
    left: 0;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea, .form-control, select {
    height: 48px;
    border: 1px solid #b8b8b8;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 7px 11px;
    color: #000;
    width: 100%;
    background-color: #fff;
    font-size: 16px;
}

textarea {
    height: 100px;
    padding: 12px 11px;
}

select {
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center #fff;
    background-size: 18px;
    padding: 7px 11px;
    padding-right: 40px;
    outline: none;
}

input:focus, button:focus, textarea:focus {
    outline: none;
    box-shadow: inherit;
}

select[multiple] {
    background: transparent;
    min-height: 85px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
}

button[type="button"], button[type="submit"], input[type="button"], input[type="submit"] {
    background: transparent;
    color: #fff;
    background-color: #77B843;
    border: 0;
    padding: 15px 40px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 33px;
    border-radius: 33px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    min-width: 200px;
    text-align: center;
}

button[type="button"]:hover, button[type="submit"]:hover, input[type="button"]:hover, input[type="submit"]:hover {
    background: #070748;
    color: #fff;
}

/* custom checkbox */
.form_input_check {
    position: relative;
    margin: 0;
    padding-left: 40px;
}

.form_input_check span {
    margin: 0;
    padding: 0;
}

.form_input_check input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check input[type="checkbox"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    border: 2px solid #feb620;
    background: #fff;
}

.form_input_check input[type="checkbox"] + span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/checked.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

} */
.form_input_check input[type="checkbox"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

}


/* custom radio */
.form_input_radio {
    position: relative;
    margin: 0;
    padding-left: 30px;
}

.form_input_radio span {
    margin: 0;
    padding: 0;
}

.form_input_radio input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio input[type="radio"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio input[type="radio"] + span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

} */
.form_input_radio input[type="radio"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

}

/* custom radio end */

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
}


.cmn_gap {
    padding-top: 80px;
    padding-bottom: 80px;
}


.logo_prt {
    text-align: center;
}


.main_head {
    position: relative;
    z-index: 99;
}

.main_head_top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    min-height: 123px;
    display: flex;
    align-items: center;
}


.site_header_iconss li:before {
    display: none;
}

.site_header_iconss li {
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-left: 28px;
    vertical-align: middle;
}

.site_header_iconss li:first-child {
    margin-left: 0;
}

.site_header_iconss_search .search_icoo {
    display: inline-block;
    width: 32px;
}

.site_hd_srchs {
    background-color: #77B843;
    width: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.site_hd_srchs .menu_ico {
    width: 30px;
    display: block;
    height: 2px;
    background-color: #fff;
    margin-bottom: 6px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.site_hd_srchs .menu_ico:last-child {
    margin-bottom: 0;
}

.rt_menu_part {
    text-align: right;
}


.banner_partt_homer {
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    background-position: center center;
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_partt_homer_d {
    width: 100%;
}

.global_solution_col_outtts_main h3 {
    margin-bottom: 0;
}

.banner_partt_homer .homer_bann_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner_partt_homer .homer_bann_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner_partt_homer .homer_bann_video:after {
    position: absolute;
    content: "";
    /*	background: rgba(188,188,188,0.7); */ /* 2021-07-19 JM */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner_partt_homer_heading {
    text-align: center;
    margin-bottom: 37px;
}

.banner_partt_homer_heading:last-child {
    margin-bottom: 0;
}

.home_banner_broder h2 {
    font-size: 30px;
    color: #070748;
    margin-bottom: 0;
}

.home_banner_broder {
    display: inline-block;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 0;
    position: relative;
    border-top: 3px solid #070748;
    border-bottom: 3px solid #070748;
    padding: 30px 0;
    z-index: 1;
}

.home_banner_broder:before {
    content: "";
    width: 254px;
    height: 84px;
    border-left: 10px solid #77B843;
    border-bottom: 10px solid #77B843;
    border-bottom-left-radius: 33px;
    -webkit-border-bottom-left-radius: 33px;
    position: absolute;
    bottom: -6px;
    left: -50px;
    z-index: -1;
}

.home_banner_broder:after {
    content: "";
    width: 254px;
    height: 84px;
    border-right: 10px solid #77B843;
    border-top: 10px solid #77B843;
    border-top-right-radius: 33px;
    -webkit-border-top-right-radius: 33px;
    position: absolute;
    top: -6px;
    right: -50px;
    z-index: -1;
}

.banner_partt_homer_heading .subheading {
    margin: 40px auto;
}

/*.home_banner_broder .brder1{
	display: block;
	width: 254px;
	height: 84px;
	border-left: 10px solid #b10b23;
	border-bottom: 10px solid #b10b23;
	border-bottom-left-radius: 33px;
	-webkit-border-bottom-left-radius: 33px;
	position: absolute;
	bottom: -6px;
	left: -50px;
}*/

.banner_partt_homer_heading .subheading h4 {
    font-size: 31px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #070748;
}

.global_solution_col_outtts {
    box-shadow: 0px 7px 17px #00000040;
    position: relative;
    padding: 31px 26px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: rgba(255, 255, 255, 0.26);
    text-align: center;
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.global_solution_col_outtts_main .main_img {
    margin-bottom: 17px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global_solution_col_outtts_main .main_img img {
    max-height: 180px;
    object-fit: contain;
}

.global_solution_col_outtts_main h3 {
    font-size: 20px !important;
    font-weight: 500;
    color: #070748;
}

.global_solution_col_outtts_hover {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -98%;
    left: 0;
    right: 0;
    height: 100%;
    background: #070748;
    color: #fff;
    padding: 30px 40px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.box1 {
    background: #009BC4;
}

.box2 {
    background: #78B63A;
}

.box3 {
    background: #D58661;
}

.box4 {
    background: #FAA123;
}


.global_solution_col_outtts_hover .paragraph {
    margin-bottom: 16px;
}

.global_solution_col_outtts_hover .paragraph p {
    font-size: 18px;
    margin-bottom: 30px;
}

.global_solution_col_outtts_hover .paragraph p:last-child {
    margin-bottom: 0;
}

.global_solution_col_outtts_hover h3 {
    color: #fff;
}

.global_solution_col_outtts_hover .inner_global {
    overflow-y: auto;
    width: 100%;
    max-height: 100%;
    display: none;
}


.global_solution_col_outtts:hover .global_solution_col_outtts_hover {
    top: 0;
}

.global_solution_col_outtts:hover .global_solution_col_outtts_hover .inner_global {
    display: block;
}

.global_solution {
    padding: 5px 0;
}


.home_page_btm_joardan .main_img {
    text-align: center;
    margin-bottom: 0;
}


.inner_page_banner {
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    margin-bottom: 80px;
}

.inner_page_banner .headinsg h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.inner_page_banner .headinsg {
    margin-bottom: 40px;
}


.inner_page_banner .headinsg .subheader {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 15px;
    line-height: 1.3;
    border-left: 4px solid #77B843;
}

.inner_page_banner .paragraph {
    background: #070748;
    color: #fff;
    padding: 40px 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-bottom: -80px;
    width: 670px;
    max-width: 100%;
}

.inner_page_banner_wrappper {
    max-width: 900px;
}

.sec_main_hdngs h2 {
    margin-bottom: 13px;
    font-weight: 500;
}

.sec_main_hdngs h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.vbtn {
    display: inline-block;
    background: #77B843;
    color: #fff;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.27px;
    text-transform: uppercase;
}

.vbtn:hover {
    background: #000;
    color: #fff;
}

.sec_main_hdngs_fig .main_img {
    margin-bottom: 0;
}


.fsystem_parts {
    border-bottom: 1px solid #77B843;
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.fsystem_parts:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}


.fsystem_parts:nth-child(even) .fsystem_parts_row .fsystem_parts_row_lfts {
    order: 1;
}

.fsystem_parts:nth-child(even) .fsystem_parts_row .fsystem_parts_rtsss {
    order: 0;
}

.wrapper_reld_top1 h4 {
    font-size: 29px;
    font-weight: 500;
    color: #070748;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wrapper_reld_top1 {
    box-shadow: 0px 1px 2px #00000029;
    border-radius: 5px;
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.wrapper_reld_top1 ul li:before {
    display: none;
}

.wrapper_reld_top1 ul li {
    padding: 0;
    margin: 0 0;
    /*border-bottom: 1px solid #070748;*/
}

.wrapper_reld_top1 ul li:first-child {
    padding-top: 0;
}

.wrapper_reld_top1 ul li a {
    /*	font-size: 18px;*/
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #070748;
    padding: 0;
    display: inline-block;
    width: 100%;
    border-left: 3px solid transparent;
    padding: 10px 0;
}

.navbar_sub-releatd_ul > li {

}

.sub-releatd-menu {
    margin-left: 20px;
}

.sub-releatd-menu > li > a {
    border-top: 1px solid #070748;
}


/*.wrapper_reld_top1 ul li:first-child a{
	padding-top: 0;
}*/
.wrapper_reld_top1 ul li a:hover, .wrapper_reld_top1 ul li a.active {
    color: #000;
    padding-left: 6px;
    border-left-color: #a7000b;
}

.related_page_environmental_right_outer {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    left: 0;
}

.main_footers_top {
    background-color: #00012c;
    color: #fff;
    padding: 130px 0;
    border-bottom: 2px solid #3e3f5f;
    text-align: center;
}

.main_footers_top h2 {
    color: #fff;
    font-weight: 600;
}

.vbtn_contact {
    display: inline-block;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    background: #77B843;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    padding: 17px 32px;
    letter-spacing: 3px;
}

.vbtn_contact:hover {
    background: #fff;
    color: #000;
}

.main_footers_botttom {
    padding: 100px 0;
    background-color: #00002d;
    color: #b3b3bf;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.main_footers_botttom h1, .main_footers_botttom h2, .main_footers_botttom h3, .main_footers_botttom h4, .main_footers_botttom h5, .main_footers_botttom h6 {
    color: #b3b3bf;
}

.footer_logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer_addrss li:before {
    display: none;
}

.footer_addrss li {
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.footer_addrss li:last-child {
    margin-bottom: 0;
}

.footer_addrss li a {
    color: #b3b3bf;
}

.footer_addrss li a:hover {
    color: #77B843;
}

.main_footers_botttom_coll .head {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.main_footers_botttom_coll .head:after {
    position: absolute;
    content: "";
    background-color: #b3b3bf;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 1px;
}

.qk_links_foot li:before {
    display: none;
}

.qk_links_foot li {
    padding: 0;
    margin-bottom: 17px;
}

.qk_links_foot li:last-child {
    margin-bottom: 0;
}


.qk_links_foot li a {
    color: #b3b3bf;
}

.qk_links_foot li a:hover {
    color: #77B843;
}

.main_footers_botttom1 {
    padding-bottom: 120px;
}

.main_footers_botttom2 {
    border-bottom: 1px solid #b3b3bf;
    padding-bottom: 36px;
    margin-bottom: 36px;
}

/*.main_footers_botttom2_logo{
	position: relative;
	padding-left: 97px;
	padding-top: 4px;
	padding-bottom: 4px;
	min-height: 73px;
}
.main_footers_botttom2_logo .main_img{
	position: absolute;
	left: 0;
	top: 0;
	margin-bottom: 0;
}*/


.main_footers_botttom2_logo {
    display: flex;
    flex-wrap: wrap;
}

.main_footers_botttom2_logo .main_img {
    flex-basis: 78px;
    max-width: 78px;
    margin-bottom: 0;
}

.main_footers_botttom2_logo .main_footers_botttom2_logo_p {
    flex-basis: calc(100% - 78px);
    max-width: calc(100% - 78px);
    align-self: center;
    padding-left: 20px;
}


.main_footers_botttom2_row_right {
    text-align: right;
}

.social_media_foot li:before {
    display: none;
}

.social_media_foot li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-left: 12px;
}

.social_media_foot li:first-child {
    margin-left: 0;
}

.social_media_foot li a {
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #9f9eae;
    color: #00002d;
    font-size: 20px;
}

.social_media_foot li a:hover {
    background: #77B843;
    color: #fff;
}

.main_footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.main_footer .decoration {
    background-image: url("images/decoration.svg");
    background-size: 500px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: scaleX(-1) rotate(45deg);
    -moz-transform: scaleX(-1) rotate(45deg);
    -ms-transform: scaleX(-1) rotate(45deg);
    -o-transform: scaleX(-1) rotate(45deg);
    transform: scaleX(-1) rotate(45deg);
    height: 500px;
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    margin: 0;
    z-index: -1;
    opacity: .25;
}

.main_footer .decoration:after {
    content: '';
    display: block;
    background: inherit;
    width: inherit;
    height: inherit;
    -webkit-background-size: inherit;
    -o-background-size: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    margin: inherit;
    opacity: 1;
    -webkit-transform: scale(1.5) translate(-180px, 80px);
    -moz-transform: scale(1.5) translate(-180px, 80px);
    -ms-transform: scale(1.5) translate(-180px, 80px);
    -o-transform: scale(1.5) translate(-180px, 80px);
    transform: scale(1.5) translate(-180px, 80px);
}

.main_footers_botttom3 p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #37375a;
}

.main_footers_botttom3 p:last-child {
    margin-bottom: 0;
}

.main_footers_botttom3 p a {
    color: #b3b3bf;
}

.main_footers_botttom3 p a:hover {
    color: #77B843;
}

.sec_main_hdngs li {
    padding-left: 15px;
    margin-bottom: 4px;
}

.sec_main_hdngs ul {
    margin-bottom: 25px;
}

.sec_main_hdngs ul:last-child {
    margin-bottom: 0;
}

.sec_main_hdngs li:last-child {
    margin-bottom: 0;
}

/*.sec_main_hdngs li:before{
	width: 5px;
	height: 5px;
	top: 7px;
}*/

.offer_section_outer {
    margin-top: 46px;
}

.vbtn.full {
    width: 100%;
    text-align: center;
}

.offer_section_innnrs {
    border-bottom: 1px solid #77B843;
    padding-bottom: 46px;
    margin-bottom: 46px;
}

.offer_section_innnrs:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.inner_page_banner .headinsg:last-child {
    margin-bottom: 0;
}


.inner_page_banner.inner_page_banner_new {
    margin-bottom: 0;
    min-height: 427px;
    padding-top: 200px;
    padding-bottom: 40px;
}

.news_section_part_wrapper_top li:before {
    display: none;
}

.news_section_part_wrapper_top li {
    display: inline-block;
    padding: 0;
    margin-right: 46px;
    margin-bottom: 30px;
}

.news_section_part_wrapper_top li a {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #070748;
}

.news_section_part_wrapper_top li a:hover, .news_section_part_wrapper_top li.active a {
    color: #C23338;
}

.news_section_part_wrapper_bottom {
    margin-top: 40px;
}

.news_img_wrpprs {
    position: relative;
    height: 100%;
    box-shadow: 0px 3px 9px -6px #717171;
    -webkit-box-shadow: 0px 3px 9px -6px #717171;
    border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;

}

.news_img_wrpprs .main_img {
    width: 100%;
    position: relative;
    min-height: 250px;
    max-height: 250px;
    margin-bottom: 0;
}

.news_img_wrpprs .main_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.news_img_wrpprs_btms {
    padding: 35px 32px;
    padding-bottom: 70px;
}

.news_img_wrpprs_btms h4 {
    color: #010119;
    font-weight: 500;
    margin-bottom: 5px;
}

.news_img_wrpprs_btms h4 a {
    color: #010119;
}

.news_img_wrpprs_btms h4 a:hover {
    color: #77B843;
}

.news_img_wrpprs_btms .date {
    color: #959595;
    display: block;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    letter-spacing: 3.15px;
    margin-bottom: 17px;
}

.news_img_wrpprs_btms p {
    margin-bottom: 10px;
}

.news_img_wrpprs_btms p:last-child {
    margin-bottom: 0;
}

.read_more_btn {
    font-weight: 400;
}

.news_img_wrpprs_btms .read_more_btn {
    position: absolute;
    bottom: 35px;
    left: 32px;
}

.menu_section_headd:not(.show) {
    opacity: 0;
}

.menu_section_headd {
    position: fixed;
    transform: translateY(-200%);
    top: 0;
    left: 0;
    background: transparent;
    transition: 0.3s all ease-in-out 0s;
    z-index: 999;
    height: 100vh;
    width: 100%;
    z-index: -999;
    overflow-y: auto;
}

.menu_section_headd.show {
    transform: inherit;
    transition: 0.3s all ease-in-out 0s;
    z-index: 999;
}

body.active {
    overflow: hidden;
}

body.active .main_head_top {
    z-index: 9999;
}

.main_head_top.active .logo_prt, .main_head_top.active .d-none {
    display: none !important;
}

.main_head_top.active .rt_menu_part {
    width: 100%;
}


.menu_section_headd_top {
    min-height: calc(100vh - 184px);
    background-size: cover;
    background-position: center center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 100px;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_section_headd_top:after {
    position: absolute;
    content: "";
    background: rgba(128, 25, 39, 0.8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.menu_section_headd_bottom {
    min-height: 184px;
    padding: 43px 0;
    background-color: #070748;
    color: #fff;
}

.main_head_top.active .site_hd_srchs .menu_ico {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    margin-bottom: 0;
}

.main_head_top.active .site_hd_srchs .menu_ico:nth-child(1) {
    transform: rotate(-45deg);
}

.main_head_top.active .site_hd_srchs .menu_ico:nth-child(2) {
    display: none;
}

.main_head_top.active .site_hd_srchs .menu_ico:nth-child(3) {
    transform: rotate(45deg);
    margin-top: -2px;
}


.menu_section_headd_top_nav .navbar-nav {
    flex-direction: inherit;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.menu_section_headd_top_nav .navbar-nav > li:before {
    display: none;
}

.menu_section_headd_top_nav .navbar-nav > li {
    padding: 0 15px;
    flex: 1;
    text-align: center;
    margin-bottom: 0;
}

.menu_section_headd_top_nav .navbar-nav > li > a {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.menu_section_headd_top_nav .navbar-nav > li.current-menu-item > a, .menu_section_headd_top_nav .navbar-nav > li > a:hover {
    color: #ddc8cb;
    border-color: #ddc8cb;
}


.menu_mega_top_row {
    padding-top: 100px;
}

.menu_mega_top_col {
    border-right: 1px solid #fff;
}

.menu_mega_top_col:nth-child(3n+4) {
    border-right: 0;
}

.menu_mega_top_col h4 {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}

.header_qk_links li:before {
    display: none;
}

.header_qk_links li {
    padding: 0;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

.header_qk_links li:last-child {
    margin-bottom: 0;
}

.menu_mega_top_col h4 a, .header_qk_links li a {
    color: #fff;
    display: inline-block;
}

.menu_mega_top_col h4 a:hover, .header_qk_links li a:hover {
    color: #ccc;
}

.header_qk_links li.invntr_asnc a {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 7px 25px;
}

.header_qk_links li.invntr_asnc a:hover {
    background: #fff;
    color: #000;
}

.menu_section_headd_bottom .social_media_foot {
    text-align: right;
}

.copyrt_mega {
    font-size: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    text-align: center;
}


.main-head-srchs-btm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-200%);
    z-index: -9999;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    background-color: #fff;
}

.main-head-srchs-btm .inner {
    padding: 10px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main-head-srchs-btm .inner .inner_uin {
    width: 100%;
    position: relative;
    padding-left: 30px;
}

.main-head-srchs-btm .inner .inner_uin .hd_meu_close {
    position: absolute;
    top: 7px;
    left: 0;
}

.main-head-srchs-btm .inner .form-group {
    position: relative;
}

.main-head-srchs-btm .inner .form-group input[type="text"] {
    padding-right: 80px;
    height: 47px;
    font-size: 14px;
}

.main-head-srchs-btm .inner .form-group input[type="submit"], .main-head-srchs-btm .inner .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0;
    background: transparent;
    min-width: inherit;
    padding: 0;
    background: url(images/loupe.svg) no-repeat center center;
    background-size: 18px;
    width: 48px;
    height: 47px;
}

.main-head-srchs-btm.actv_part {
    transform: inherit;
    z-index: 9999;
}

.main_head_top.active .site_header_iconss_search .search_icoo img {
    filter: brightness(0) invert(1);
}


.global_solution_col_outtts_main .paragraph {
    display: none;
}

.global_solution_col_outtts_main .paragraph p {
    font-size: 16px;
    color: #000000;
}


.news_section_part_wrapper_bottom_col {
    display: none;
}


.contact_form_InnerPg_col label {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.contact_form_InnerPg_row button[type="button"], .contact_form_InnerPg_row button[type="submit"], .contact_form_InnerPg_row input[type="button"], .contact_form_InnerPg_row input[type="submit"] {
    display: table;
    margin: 0 auto;
    margin-top: 20px;
}

.contact_form_InnerPg_row input[type="text"],
.contact_form_InnerPg_row input[type="email"],
.contact_form_InnerPg_row input[type="url"],
.contact_form_InnerPg_row input[type="password"],
.contact_form_InnerPg_row input[type="search"],
.contact_form_InnerPg_row input[type="number"],
.contact_form_InnerPg_row input[type="tel"],
.contact_form_InnerPg_row input[type="range"],
.contact_form_InnerPg_row input[type="date"],
.contact_form_InnerPg_row input[type="month"],
.contact_form_InnerPg_row input[type="week"],
.contact_form_InnerPg_row input[type="time"],
.contact_form_InnerPg_row input[type="datetime"],
.contact_form_InnerPg_row input[type="datetime-local"],
.contact_form_InnerPg_row input[type="color"],
.contact_form_InnerPg_row textarea,
.contact_form_InnerPg_row .form-control,
.contact_form_InnerPg_row select {
    font-size: 14px;
}

.contact_page_map {
    line-height: 0;
}

.contact_page_map iframe {
    width: 100%;
    border: 0;
    height: 480px;
}


.sec_main_hdngsnew h2:last-child {
    margin-bottom: 0;
}

.sec_main_hdngsnew {
    margin-bottom: 30px;
}

.sec_main_hdngsnew h3 {
    text-transform: uppercase;
}

.contact_locations_col_inner h6 {
    margin-bottom: 5px;
}

.contact_locations_col_inner {
    background-color: #E8EDF3;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 18px 18px;
	height: 100%;
}


.sales_represntve hr {
    background-color: #801927;
    margin-top: 0;
    margin-bottom: 60px;
    height: 3px;
}


.sales_represntve_col_inners {
    background-color: #E8EDF3;
    padding: 50px 35px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
	height: 100%;
}

.sales_represntve_col_inners .hd {
    font-size: 24px;
    margin-bottom: 10px;
}

.sales_represntve_col_inners_address h5 {
    font-size: 16px;
    border-bottom: 2px solid #000;
    display: table;
}


.sales_represntve_col_inners_address ul {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 12px;
}

.sales_represntve_col_inners_address ul:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.sales_represntve_col_inners_address li {
    padding: 0;
    margin-bottom: 10px;
}

.sales_represntve_col_inners_address li:last-child {
    margin-bottom: 0;
}

.sales_represntve_col_inners_address li:before {
    display: none;
}

.sales_represntve_ull {
    display: flex;
    flex-wrap: wrap;
}

.sales_represntve_ull .sales_represntve_ull_left {
    flex-basis: 30px;
    max-width: 30px;
    text-align: center;
    line-height: 1;
}

.sales_represntve_ull .sales_represntve_ull_left i {
    font-size: 21px;
    color: #77B843;
}

.sales_represntve_ull .sales_represntve_ull_rttt {
    flex-basis: calc(100% - 30px);
    max-width: calc(100% - 30px);
    padding-left: 10px;
    font-size: 15px;
    align-self: center;
    word-break: break-word;
}

.sales_represntve_ull .sales_represntve_ull_rttt a {
    color: #000;
}

.sales_represntve_ull .sales_represntve_ull_rttt a:hover {
    color: #77B843;
}

.sales_represntve_col_inners_address {
    margin-bottom: 30px;
}

.sales_represntve_col_inners_address:last-child {
    margin-bottom: 0;
}


.common_hd_abouts h3 {
    margin-bottom: 10px;
}

/*.common_hd_abouts{font-size: 18px;}*/


.leadership_teams_col_outer {
    display: inline-block;
    width: 100%;
    position: relative;
}

.leadership_teams_col_outer .main_img {
    margin-bottom: 0;
    min-height: 250px;
    max-height: 250px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.leadership_teams_col_outer .main_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    overflow: hidden;
}

.leadership_teams_col_outer:hover .main_img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.leadership_teams_col_outer_bttmm {
    padding-top: 20px;
    text-align: center;
    color: #000000;
}

.leadership_teams_col_outer_bttmm h4 {
    font-size: 21px;
    margin-bottom: 10px;
}


.leadership_teams_col_outer_bttmm h6 {
    margin-bottom: 5px;
}

.leadership_teams_col_outer_bttmm p {
    font-size: 16px;
}

.leadership_teams_col_outer:hover .leadership_teams_col_outer_bttmm {
    color: #77B843;
}


.modal_cmn_pop .modal-dialog {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.modal_cmn_pop .close {
    padding: 0;
    margin: 0;
    background: transparent !important;
    color: #000;
    font-size: 35px;
    line-height: 1;
    min-width: inherit;
    display: table;
    margin-left: auto;
    margin-bottom: 20px;
}

.modal_cmn_pop .close:hover {
    color: #77B843;
}

.modal_cmn_pop .modal-header {
    border: 0;
}

.modal_cmn_pop .modal-body {
    padding: 30px 35px;
}

.home_page_btm_joardan li:before {
    display: none;
}

.home_page_btm_joardan ul {
    display: flex;
    margin: 0 -15px 0;
    justify-content: center;
}

.home_page_btm_joardan {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    width: 100%;
}

.home_page_btm_joardan li {
    padding: 0 15px;
    margin: 0;
}

.home_page_btm_joardan li img {
    width: 150px;
}

.vbtn.large {
    padding: 15px 25px;
    font-size: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.career_center_hdngs .vbtn {
    margin-top: 30px;
}

.cmn_nav_pills li:before {
    display: none;
}

.cmn_nav_pills li {
    display: inline-block;
    padding: 0;
    margin-right: 21px;
    margin-bottom: 20px;
}

.cmn_nav_pills .nav-pills li .nav-link {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #070748;
    min-width: inherit;
    background: transparent !important;
    border: 0;
    padding: 0;
    box-shadow: inherit !important;
    text-transform: none;
}

.cmn_nav_pills .nav-pills li .nav-link.active {
    color: #C23338;
}

.inverntory_sale_innerPG_bottttom {
    margin-top: 40px;
}

.invent_sale_ins {
    background: #fff;
    box-shadow: 0px 0px 25px #00000029;
    -webkit-box-shadow: 0px 0px 25px #00000029;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden;
}

.invent_sale_ins_topp {
    padding: 40px 26px;
}

.invent_sale_ins_row_left {
    align-self: center;
}


.invent_sale_ins_botmsm li:before {
    display: none;
}

.invent_sale_ins_botmsm ul {
    display: flex;
    flex-wrap: wrap;
}

.invent_sale_ins_botmsm ul li {
    flex: 1;
    border-right: 1px solid #6f6f6f;
    margin: 0;
    padding: 0;
}

.invent_sale_ins_botmsm ul li:last-child {
    border-right: 0;
}

.vbtn.gry {
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #cccccc;
    color: #6f6f6f;
    font-size: 16px;
}

.vbtn.gry:hover {
    background: #77B843;
    color: #fff;
}

/*
.inverntory_sale_innerPG_bottttom_col:nth-child(2n+2) .invent_sale_ins_row_left{order: 1;}
.inverntory_sale_innerPG_bottttom_col:nth-child(2n+2) .invent_sale_ins_row_right{order: 0;}*/


.contact_change_child > * {
    padding-bottom: 80px;
}

.contact_change_child > *:last-child {
    padding-bottom: 0;
}

.contact_change_child {
    display: none;
}


.contact_change_child.active {
    display: block;
}


.contact_relt_pt {
    box-shadow: 0px 1px 2px #00000029;
    border-radius: 5px;
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.contact_relt_pt h4 {
    font-size: 29px;
    font-weight: 500;
    color: #070748;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact_relt_pt ul li {
    padding: 10px 0;
    margin: 0 0;
    border-bottom: 1px solid #070748;
}

.contact_relt_pt ul li:first-child {
    padding-top: 0;
}

.contact_relt_pt ul li:before {
    display: none;
}

.contact_relt_pt ul li a {
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #070748;
    padding: 0;
    display: inline-block;
    width: 100%;
    border-left: 3px solid transparent;
}

.contact_relt_pt ul li a:hover, .contact_relt_pt ul li a.active {
    color: #000;
    padding-left: 6px;
    border-left-color: #a7000b;
}

.global_solution_col_outtts_main h3 span, .global_solution_col_outtts_hover h3 span {
    display: block;
}


.contact_locations_col_inner.con2 {
    min-height: 240px !important;
}

.sales_represntve_col_inners.sales2 {
    height: auto !important;
    min-height: 740px;
}


/* 12021-11-09 - Edits from Josh M. */
body.single-post article.post {
    padding-top: 50px;
}

body.single-post article.post .container {
    margin: 0 0 25px;
    padding: 0;
}

body.single-post article.post .container .inner_page_banner_wrappper {
    min-width: fit-content;
    width: 100%;
}


/*responsive_start*/


@media (min-width: 1025px) {

    /* navbar*/
    .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover > .sub-menu {
        display: block;
    }

}

/*@media (max-width: 1920px){
	.home_banner_broder h2{font-size: 40px;}
	.global_solution_col_outtts{min-height: 250px;}
	.global_solution_col_outtts_hover h3,.global_solution_col_outtts_main h3{
		font-size: 20px;
	}
	.global_solution_col_outtts_hover .paragraph p,.global_solution_col_outtts_main .paragraph p{font-size: 13px;}
	.global_solution_col_outtts_main .main_img{min-height: 120px;}
	.global_solution_col_outtts_main .main_img img{max-height: 120px;}
}
*/

/*@media (max-width: 1880px){
	.home_banner_broder h2 {
	    font-size: 35px;
	}
	.banner_partt_homer_heading .subheading h4{font-size: 25px;}
	.banner_partt_homer{padding-top: 160px;}
	.global_solution_col_outtts_hover .paragraph p, .global_solution_col_outtts_main .paragraph p{
		margin-bottom: 10px;
	}
	.global_solution_col_outtts_hover .paragraph p:last-child, .global_solution_col_outtts_main .paragraph p:last-child{margin-bottom: 0;}

}*/

@media (max-width: 1800px) {
    .home_page_btm_joardan ul {
        margin-top: 30px;
    }
}


@media (max-width: 1700px) {
    .global_solution_wrapp {
        max-width: 1220px;
        margin: 0 auto;
    }

    .home_banner_broder h2 {
        font-size: 36px;
    }

    .home_banner_broder {
        padding: 20px 0;
    }

    .banner_partt_homer_heading .subheading {
        margin: 30px auto;
    }

    .global_solution_col_outtts_hover .paragraph p, .global_solution_col_outtts_main .paragraph p {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .global_solution_col_outtts_hover h3, .global_solution_col_outtts_main h3 {
        font-size: 20px;
    }

    .global_solution_col_outtts_main .main_img {
        min-height: 150px;
    }

    .global_solution_col_outtts_main .main_img img {
        max-height: 150px;
    }

    .global_solution_col_outtts {
        min-height: 350px;
    }

    .banner_partt_homer {
        padding-top: 150px;
    }
}


@media (max-width: 1400px) {
    .home_banner_broder h2 {
        font-size: 35px;
    }

    .home_banner_broder::before, .home_banner_broder::after {
        content: "";
        width: 234px;
        height: 64px;
    }

    .global_solution_col_outtts {
        min-height: 250px;
    }

    .global_solution_col_outtts_main .main_img {
        min-height: 110px;
    }

    .global_solution_col_outtts_main .main_img img {
        max-height: 110px;
    }

    .global_solution_col_outtts_hover h3, .global_solution_col_outtts_main h3 {
        font-size: 20px;
    }

    .banner_partt_homer_heading .subheading {
        margin: 20px auto;
    }

    .home_page_btm_joardan li img {
        width: 130px;
    }

    .global_solution_col_outtts_hover .paragraph p, .global_solution_col_outtts_main .paragraph p {
        font-size: 14px;
    }

    .global_solution_col_outtts_hover {
        padding: 20px 30px;
    }
}


/*@media (max-width: 1600px){
	.banner_partt_homer_heading .subheading {
	    margin: 20px auto;
	}
	.home_banner_broder{padding: 20px 0;}
	.banner_partt_homer_heading .subheading h4{font-size: 26px;}
	.home_banner_broder h2{
	    font-size: 33px;
	}
	.home_banner_broder::before,.home_banner_broder::after{
	    content: "";
	    width: 194px;
	    height: 54px;
	}
	.home_page_btm_joardan ul{
	    margin-top: 20px;
	}
	.global_solution_col_outtts{
	    min-height: 230px;
	}
	.global_solution_col_outtts_hover .paragraph p, .global_solution_col_outtts_main .paragraph p{
		margin-bottom: 10px;
	}
	.banner_partt_homer{padding-top: 150px;}
}*/

@media (max-width: 1199px) {
    /*.home_banner_broder h2{font-size: 60px;}*/
    .global_solution_col_outtts_main h3, .global_solution_col_outtts_hover h3 {
        font-size: 25px;
    }

    .global_solution_col_outtts_hover .paragraph p, .global_solution_col_outtts_main .paragraph p {
        font-size: 15px;
    }

    .news_section_part_wrapper_top_uls {
        background: #fff;
        box-shadow: 0px 3px 9px -6px #717171;
        -webkit-box-shadow: 0px 3px 9px -6px #717171;
        padding: 10px 15px;
    }

    .news_section_part_wrapper_top li {
        margin: 5px 0;
        margin-right: 25px;
    }

    .cmn_nav_pills {
        background: #fff;
        box-shadow: 0px 3px 9px -6px #717171;
        -webkit-box-shadow: 0px 3px 9px -6px #717171;
        padding: 10px 15px;
    }

    .cmn_nav_pills li {
        margin: 5px 0;
        margin-right: 21px;
    }


    .global_solution_col_outtts {
        min-height: 350px;
    }

    .global_solution_col_outtts_main h3 span, .global_solution_col_outtts_hover h3 span {
        display: block;
    }

    .banner_partt_homer {
        min-height: 100vh;
        height: auto;
    }

    .banner_partt_homer_heading .subheading {
        margin: 40px auto;
    }

    .contact_locations_col_inner.con2 {
        min-height: 320px !important;
    }
}

@media (max-width: 991px) {
    /* images alignment for wordpress content pages */
    .alignright, .alignleft, .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin: 0 0 22px 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }


    .global_solution_col_outtts {
        min-height: inherit;
    }

    .global_solution_col_outtts_hover {
        display: none;
    }

    .global_solution_col_outtts_main .paragraph {
        display: block;
    }

    .home_banner_broder h2 {
        font-size: 50px;
    }

    .inner_page_banner_wrappper {
        max-width: 100%;
    }

    /*.inner_page_banner .headinsg h2{font-size: 50px;}*/
    .main_footers_top {
        padding: 50px 0;
    }

    .main_footers_botttom {
        padding: 40px 0;
    }

    .main_footers_botttom1 {
        padding-bottom: 60px;
    }

    .main_footers_botttom2_row_right {
        text-align: left;
    }

    .sec_main_hdngs h2 {
        font-size: 40px;
    }

    /*body{font-size: 18px;}*/
    /*.main_footers_top h2{font-size: 50px;}*/
    .menu_section_headd_top_nav .navbar-nav > li > a {
        font-size: 20px;
    }

    .menu_mega_top_row {
        padding-top: 80px;
    }

    .menu_mega_top_col {
        margin-bottom: 30px;
    }

    .menu_mega_top_col:last-child {
        margin-bottom: 0;
    }

    .inner_page_banner.inner_page_banner_new {
        min-height: inherit;
        padding-top: 140px;
        padding-bottom: 40px;
    }

    /*.news_section_part_wrapper_bottom{margin-top: 50px;}*/
    .global_solution_col_outtts_main .main_img {
        min-height: inherit;
    }


    .invent_sale_ins_row_left {
        text-align: center;
        margin-bottom: 30px;
    }

    .global_solution_col_outtts_main h3 {
        margin-bottom: 20px;
    }

    .menu_mega_top_col {
        border-right: 0;
    }

    .contact_locations_col_inner.con2 {
        min-height: 250px !important;
    }

    .sales_represntve_col_inners.sales2 {
        min-height: 850px;
    }

    .contact_locations_col_inner.con2 {
        min-height: auto !important;
    }

}


@media (max-width: 767px) {

    .home_banner_broder h2 {
        font-size: 35px;
    }

    .home_banner_broder {
        margin-left: 25px;
        margin-right: 25px;
        padding: 20px 0;
    }

    .home_banner_broder::before {
        width: 124px;
        height: 54px;
        left: -25px;
        border-left: 6px solid #b10b23;
        border-bottom: 6px solid #b10b23;
        bottom: -4px;
    }


    .home_banner_broder::after {
        width: 124px;
        height: 54px;
        right: -25px;
        border-right: 6px solid #b10b23;
        border-top: 6px solid #b10b23;
        top: -4px;
    }

    .banner_partt_homer_heading .subheading h4 {
        font-size: 22px;
    }

    .cmn_gap {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /*body{font-size: 16px;}*/
    .fsystem_parts {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .fsystem_parts_rtsss {
        text-align: center;
        margin-bottom: 30px;
    }

    .fsystem_parts:nth-child(odd) .fsystem_parts_row .fsystem_parts_row_lfts {
        order: 1;
    }

    .fsystem_parts:nth-child(odd) .fsystem_parts_row .fsystem_parts_rtsss {
        order: 0;
    }

    .main_footers_top h2 {
        font-size: 40px;
    }

    .vbtn_contact {
        font-size: 16px;
        padding: 14px 22px;
    }

    .inner_page_banner {
        padding-top: 150px;
    }

    .main-head-srchs-btm .inner {
        padding: 10px 20px;
    }

    .main-head-srchs-btm .inner .inner_uin .hd_meu_close {
        top: 8px;
        font-size: 22px;
    }

    .menu_section_headd_top_nav .navbar-nav > li > a {
        font-size: 28px;
    }

    .menu_mega_top_col h4 {
        font-size: 25px;
    }

    .header_qk_links li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .megamenu_logo {
        display: table;
        margin: 0 auto;
    }

    .copyrt_mega {
        text-align: center;
    }

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

    .menu_section_headd_bottom_row > [class*="col-"] {
        margin-bottom: 25px;
    }

    .menu_section_headd_bottom_row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }

    .offer_section_outer {
        margin-top: 40px;
    }

    .offer_section_innnrs_row_rights {
        order: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .offer_section_innnrs_row_left {
        order: 1;
    }

    /*.news_section_part_wrapper_bottom{margin-top: 20px;}*/
    .news_section_part_wrapper_top li a {
        font-size: 17px;
    }

    .news_section_part_wrapper_top li {
        margin-right: 20px;
    }

	.news_img_wrpprs {
		height: initial !important;
	}

    .news_img_wrpprs_btms {
        padding: 25px 22px;
    }

    .news_img_wrpprs_btms .read_more_btn {
        position: static;
    }

    /*.news_img_wrpprs_btms p{font-size: 16px;}*/
    .read_more_btn {
        font-size: 16px;
    }

    .contact_locations_col_inner {
        height: 100% !important;
    }

    .sales_represntve hr {
        margin-bottom: 40px;
    }

    .sales_represntve_col_inners {
        height: 100% !important;
    }

    .modal_cmn_pop .modal-dialog {
        max-width: 80%;
    }

    .inner_page_banner .headinsg .subheader {
        font-size: 20px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .contact_change_child > * {
        padding-bottom: 50px;
    }

    ::-webkit-full-page-media, :future, :root .menu_section_headd_bottom {
        padding-bottom: 110px;
    }

    body.single-post article.post {
        padding: 50px;
    }

}

@media (max-width: 575px) {

    .sec_main_hdngs h2 {
        font-size: 31px;
    }

    .fsystem_parts_rtsss {
        margin-bottom: 20px;
    }

    .main-head-srchs-btm .inner .form-group input[type="text"] {
        padding-right: 40px;
    }

    .main-head-srchs-btm .inner .form-group input[type="submit"], .main-head-srchs-btm .inner .form-group button {
        width: 36px;
    }

    .menu_section_headd_top_nav .navbar-nav {
        display: block;
        margin: 0;
    }

    .menu_section_headd_top_nav .navbar-nav > li {
        padding: 0;
        text-align: left;
        margin-bottom: 20px;
    }

    .menu_section_headd_top_nav .navbar-nav > li:last-child {
        margin-bottom: 0;
    }

    .menu_mega_top_row {
        padding-top: 40px;
    }

    .banner_partt_homer {
        padding-top: 145px;
    }

    .home_banner_broder h2 {
        font-size: 32px;
    }

    /*.sec_main_hdngs li{font-size: 16px;}*/
    .home_page_btm_joardan ul {
        margin: 30px -5px 0;
        justify-content: center;
    }

    .home_page_btm_joardan li {
        padding: 0 5px;
    }

    .home_page_btm_joardan li img {
        width: 130px;
    }

    .vbtn.large {
        padding: 13px 21px;
        font-size: 13px;
    }

    .wrapper_reld_top1 h4 {
        font-size: 24px;
    }

    .invent_sale_ins_topp {
        padding: 20px 16px;
    }
}

@media (max-width: 479px) {
    /*.inner_page_banner .headinsg h2{font-size: 40px;}*/
    .site_hd_srchs {
        width: 43px;
        height: 43px;
    }

    .site_hd_srchs .menu_ico {
        width: 22px;
        margin-bottom: 5px;
    }

    .site_header_iconss li {
        margin-left: 18px;
    }

    .site_header_iconss_search .search_icoo {
        width: 25px;
    }

    .main_footers_top h2 {
        font-size: 31px;
    }

    .menu_mega_top_col h4 {
        margin-bottom: 20px;
    }

    .main_head_top {
        min-height: 93px;
    }

    .inner_page_banner {
        padding-top: 100px;
    }

    .menu_section_headd_top {
        padding-top: 100px;
    }

    .banner_partt_homer {
        padding-top: 115px;
    }

    .banner_partt_homer_heading .subheading h4 {
        font-size: 18px;
    }

    .inner_page_banner.inner_page_banner_new {
        min-height: inherit;
        padding-top: 100px;
    }

    .sales_represntve_col_inners .hd {
        font-size: 21px;
    }

    .sales_represntve_col_inners {
        padding: 40px 25px;
    }

    .inner_page_banner .headinsg {
        max-width: 100%;
    }

    .inner_page_banner .paragraph {
        padding: 20px 30px;
        width: 100% !important;
    }

    .modal_cmn_pop .modal-body {
        padding: 20px 18px;
    }

    .modal_cmn_pop .modal-dialog {
        max-width: 90%;
    }

    .vbtn.gry {
        font-size: 12px;
        padding: 12px 8px;
    }

    body.single-post article.post {
        padding: 20px;
    }
}
