body{
	margin: 0px;
	padding: 0px;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 16px;
    line-height: 1.5;
	color: #444;
}

.res-but {
    width: 60px;
    height: 48px;
    position: fixed;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 10000;
    display: none;
}

.res-but:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: '';
}

.res-but:before {
    transition: all .3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #ddd;
    content: '';
}

/* Turn it into an X when open */
.res-but.menu-opened {}

.res-but.menu-opened:after {
    transition: all .3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.res-but.menu-opened:before {
    top: 23px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
} 
.page_banner img{
    width: 100%;
}

a{
	color: #169444;
}
a:hover{
	text-decoration: none;
}
a small{
    font-size: 95%;
    font-weight: 500;
    text-decoration: underline;
}
ul{
    margin: 0px;
    padding: 0px;
}
ul li{
    list-style: none;
}
img{
	max-width: 100%;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /*font-style: italic;*/
  color: #888 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  /*font-style: italic;*/
  color: #888 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  /*font-style: italic;*/
  color: #888 !important;
}
.clear:after{
	content: "";
	display: block;
	clear: both;
}
.color1{
    color: #169444;
}
.heading_style1, .heading_style2{
    text-align: center;
}
.heading_style1 h2, .heading_style2 h1, .heading_style3 h2{
    color: #333333;
    font-weight: 300;
    font-size: 52px;
    display: inline-block;
    position: relative;
    padding-top: 10px;
    margin: 0 0 50px;
}
.heading_style2 h1{
    font-size: 48px;
}
.heading_style1 h2:before, .heading_style2 h1:before, .heading_style3 h2:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40%;
    height: 5px;
    background-color: #0fb1e0;
    background-image: linear-gradient(to right, #0fb1e0 , #d2e52a);
}
.top_line{
    width: 40px;
    height: 4px;
    margin: 38px 0 5px;
    background-color: #0fb1e0;
    background-image: linear-gradient(to right, #0fb1e0 , #d2e52a);   
}
.heading_style3 h2{
    font-size: 35px;
    margin-bottom: 10px;
}
header .logo{
	padding: 8px 0;
}
header .container{
    padding: 0px;
    -webkit-flex: 0 0 1366px;
    flex: 0 0 1366px;
    margin: 0;
}
header .rest_space{
    -webkit-flex-grow: 1;
    flex-grow: 1;
    border-bottom: 43px solid rgba(0, 0, 0, 0.5);
    margin-right: 15px;
}
header.active .rest_space{
    border-bottom: 39px solid rgba(0, 0, 0, 0.5);
}
header .rest_space.right{
    margin-right: 0px;
}
header .container:before{
    content: "";
    position: absolute;
}
.header_row{
	-ms-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.header_row .left{
    padding: 0 15px;
    margin-bottom: -10px;
    max-width: 190px;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.header_menu{
	-ms-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_menu > ul{
	-ms-display: flex;
	display: flex;
}
.header_menu li a{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
	padding: 12px 24px;
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}
.header_menu li a:hover, .header_menu li a.active{
    color: #fff;
    background-color: rgba(22, 148, 68, 0.3);
    background-image: linear-gradient(to right, rgba(22, 148, 68, 0.6) , rgba(140, 198, 64, 0.9));
}
.header_menu .has-sub:hover > a{
	background-color: rgba(22, 148, 68, 0.3);
    background-image: linear-gradient(to right, rgba(22, 148, 68, 0.6) , rgba(140, 198, 64, 0.9));
    color: #fff;
}
.header_menu .has-sub ul li a:hover{
    background-color: rgba(22, 148, 68, 0.5);
    background-image: linear-gradient(to right, rgba(22, 148, 68, 1) , rgba(140, 198, 64, 1));
}
.header_menu .has-sub ul{
	position: absolute;
    text-align: left;
    width: 250px;
    left: 0px;
    top: 200%;
    background-color: rgba(22, 148, 68, 0.3);
    background-image: linear-gradient(to right, rgba(22, 148, 68, 0.4) , rgba(140, 198, 64, 0.7));
    opacity: 0;
    visibility: hidden;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
}
.header_menu .has-sub{
	position: relative;
}
.header_menu .has-sub ul li {
    float: none;
    /*background: #234090;*/
}
.header_menu .has-sub ul li a {
    padding: 10px 12px;
    color: #fff;
    position: relative;
    font-size: 13px;
}
.header_menu .has-sub:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
    z-index: 1;
}
.header_menu .form-control:focus{
    outline: none;
    box-shadow: none;
    border-color: #ced4da;
}
.header_menu .dropdown-toggle {
    line-height: 0;
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 3px;
    font-size: 15px;
}
header.fixed{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9;
    display: -ms-flex;
    display: flex;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
header.fixed.innerPage{
    position: relative;
    top: 0;
}
header.active{
    background-color: rgb(51, 51, 51);
    top: 0;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.5);
}
header.active .header_row .left{
    max-width: 150px;
}
header.active .logo{
    padding-bottom: 14px;
}
header.active .header_menu li a{
    font-size: 13px;
    padding: 10px 20px;
}
.header_parent{
    -ms-display: flex;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-left: 15px;
}
.header_top{
    width: 100%;
    padding: 0px 0 24px;
}
.header_top ul{
    -ms-display: flex;  
    display: flex;  
    justify-content: flex-end;
    align-items: center;
}
.header_top ul li{
    margin-left: 15px;
}








/*banner*/
.banner{
    position: relative;
} 
.banner .banner_img:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.banner .banner_img img{
    width: 100%;
}
.owl-carousel .owl-item .banner_img .mob_img{
    display: none;
}
.testimonial.owl-theme .owl-nav{
    text-align: right;
}
.testimonial.owl-carousel .owl-nav button.owl-prev, .testimonial.owl-carousel .owl-nav button.owl-next{
    font-size: 35px;
    line-height: 10px;
}
.testimonial.owl-theme .owl-nav [class*=owl-]:hover{
    color: #191919;
    background-color: transparent;
}
.testimonial.owl-theme .owl-nav [class*=owl-]:focus{
    outline: none;
}
.mob_img{
    display: none;
}
.banner_top{
    position: absolute;
    max-width: 380px;
    left: -20%;
    right: 0px;
    top: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.banner_top h2{
    color: #efeded;
    font-weight: 300;
    font-size: 58px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.banner_top p{
    color: #efeded;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.3;
}
.banner_top .heading_style1{
    text-align: left;
}
.banner_top .heading_style1 h2:before{
    width: 30%;
}
.products_block{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: rgba(85, 85, 85, 0.6);
    z-index: 1;
    padding-bottom: 30px;
    border-bottom: 15px solid rgba(204, 204, 204, 0.4);
}
.products_block h3{
    font-weight: 300;
    font-style: italic;
    color: #f8f8f7;
    font-size: 26px;
    margin: 0;
    text-align: left;
}
.products_block p{
    color: #f8f8f7;
    font-size: 14px;
    font-weight: 300;
    margin: 15px 0 0;
}
.products_block .col{
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.products_block .col img{
    max-width: 110px;
}
.products_block .first_col{
    max-width: 280px;
    background-image: url(../images/right_arrow.png);
    background-size: unset;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: #fff;
    width: 12px;
    height: 12px;
    margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #8cc63f;
}
/*banner*/

.welcome_text{
    text-align: center;
    background-color: #f7f7f7;
    padding: 5%;
    position: relative;
}
.welcome_text p{
    max-width: 1000px;
    margin: 0 auto;
}
.welcome_border{
    padding: 15px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}
.welcome_border:before{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    background-color: rgba(204, 204, 204, 0.4);
    height: 50px;
}
.products_block:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -15px;
    background-color: rgba(204, 204, 204, 0.4);
    height: 15px;
}
.section_space{
    margin: 4% 0;
}

.products{
    height: 100%;   
    position: relative;
    overflow: hidden; 
}
.products:before{
    content: "";
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    z-index: -1;
}
.products:hover:before{
    transform: scale(1.1);
}
.products.one:before{
    background-image: url("../images/products/product-1.jpg");
}
.products.two:before{
    background-image: url("../images/products/product-2.jpg");
}
.products.three:before{
    background-image: url("../images/products/product-3.jpg");
}
.products.four:before{
    background-image: url("../images/products/product-4.jpg");
}
.products.two .heading_style1 h2:before{
    background-image: linear-gradient(to right, #2f378f , #e2038b);
}
.products.three .heading_style1 h2:before{
    background-image: linear-gradient(to right, #f05829 , #fed017);
}
.products.four .heading_style1 h2:before{
    background-image: linear-gradient(to right, #4096d3 , #444ca1);
}
.products .heading_style1{
    text-align: left;
    border-bottom: 1px solid rgba(204, 204, 204, 0.4);
    margin-bottom: 20px;
}
.products .content{
    padding: 70px 50px 28% 50px;
    max-width: 70%;
}
.products .heading_style1 h2{
    color: #f7f7f7;
    font-size: 46px;
    margin-bottom: 15px;
}
.products p{
    color: #f7f7f7;
    text-shadow: 0px 1px 4px #191919;
    font-size: 18px;
}
.products_section .col-md-7, .products_section .col-md-5{
    margin-top: 16px;
}
.products_section .row{
    margin: 0 -8px;
}
.products_section [class^="col-md"]{
    padding-left: 8px;
    padding-right: 8px;
}

/*certificate*/
.certification_section{
    margin: 8% 0;
}
.certification_section .outer{
    padding: 3% 0;
    background-color: #444fa3;
}
.owl-carousel.certificate{
    max-width: 820px;
    margin: 0 auto;
    padding: 0 15px;
}
/*certificate*/

/*News & Events*/
.news_events{
    margin-top: 30px;
}
.news_events iframe{
    width: 100%;
    height: 350px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-right: 60px;
    position: relative;
}
.line_style{
    position: absolute;
    right: 45px;
    bottom: 0px;
    width: 80px;
    background-color: #eb0784;
    height: 80%;
    background-image: linear-gradient(to bottom, #ee4334, #eb0784);
    z-index: -1;
}
.news_events .date{
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
.owl-theme.news_events .owl-dots .owl-dot, .owl-theme.news_events .owl-nav.disabled+.owl-dots{
    transform: inherit;
    right: 0;
    text-align: right;
    display: inline-block;
    top: inherit;
}
.owl-theme.news_events .owl-dots .owl-dot span{
    background-color: #d7d7d7;
}
.owl-theme.news_events .owl-dots .owl-dot.active span, .owl-theme.news_events .owl-dots .owl-dot:hover span {
    background: #8cc63f;
}
.news_events .carousel-indicators{
    padding: 0 30px;
    margin: 0;
    right: 0;
    left: auto;
    position: relative;
}
.news_events .carousel-indicators li{
    background-color: #d7d7d7;
    width: 13px;
    height: 13px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 50%;
}
.carousel-control-next, .carousel-control-prev{
    width: 15px;
}
.news_events .carousel-indicators .active{
    background-color: #8cc63f;
}
.pagination_style{    
    position: relative;
    display: inline-block;
    float: right;
}
.pagination_style .carousel-control-prev{
    position: absolute;
    right: 0px;
    cursor: pointer;
    z-index: 91;
}
.pagination_style .carousel-control-next{
    position: absolute;
    right: 0px;
    cursor: pointer;
    z-index: 91;
}
/*News & Events*/

/*Contact*/
.contact_map{
    position: relative;
}
.iframe_block{
    line-height: 0;
}
.iframe_block iframe{
    height: 835px;
}
.iframe_block:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.contact_map:hover .iframe_block:after{
    opacity: 0;
    visibility: hidden;
}
.contact_map .contact_details{
    position: absolute;
    right: 30px;
    top: 0;  
    bottom: 0;  
    margin: auto;
    background-color: rgba(0, 0, 0, 0.9);
    color: #efeded;
    padding: 10px 35px;
    max-width: 500px;
    width: 50%;
    font-weight: 300;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.enquiryToggle{
    display: none;
}
.contact_details h4{
    margin-bottom: 20px;
}
.contact_details .form-control{
    border: none;
    border-radius: 0px;
    background-color: #242424;
    min-height: 45px;
    color: #efeded;
}
.contact_details textarea{
    height: 132px;
}
.contact_details .form-control:focus{
    color: #efeded;
    background-color: #242424;
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(0,0,0,.2);
}
.contact_details hr{
    border-color: #363636;
    margin: 7% 0;
}
.btnStyle2{
    color: #efeded;
    background-color: rgba(22, 148, 68, 0.3);
    background-image: linear-gradient(to right, rgba(22, 148, 68, 0.6) , rgba(140, 198, 64, 0.9));
    border: none;
    width: 100%;
    min-height: 45px;
    background-color: #888;
    /*font-weight: 300;*/
    padding: 5px 20px;
}
.submit_btn{
    display: inline-block;
    background-color: #8cc640;
    background-image: linear-gradient(to right, #169444, #8cc640);
    padding: 4px 16px;
    color: #fff;
    border-radius: 0 4px 0 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.submit_btn:hover{
    background: #169444;
    color: #fff;
}
.address_blk [class^="col-md"]{
    margin-bottom: 16px;
}
.address_blk h4{
    font-size: 18px;
    margin-bottom: 4px;
    color: #169444;
    margin-top: 16px;
}
.address_blk b{
    font-weight: 500;
    color: #169444;
}
.address_blk a{
    color: #333;
}
.address_blk a:hover, footer a:hover{
    color: #169444;
}
select:required:invalid{
    color: #888;
}
/*Contact*/

/*Products Section*/
.products_sec h5{
    margin-top: 30px;
}
.product_1_img{
    margin-top: 114px;
}
.product_2_img{
    margin-top: 60px;
}
/*Products Section*/

/*Footer*/
footer {
    font-size: 14px;
    background-color: #f5f5f5;
}
footer .row > [class^="col-"]{
    margin: 50px 0;
}
footer h4{
    color: #222547;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 300;
}
footer a{
    color: #333;
}
.quick_links{
    display: -ms-flex;
    display: flex;
    margin: 0 -15px;
}
.quick_links ul{
    padding: 0 15px;
}
.quick_links a{
    display: block;
    padding: 4px 0;
}
.quick_links a:hover{
    color: #8cc640;
}
.social_icons{
    display: -ms-flex;
    display: flex;
}
.social_icons li a{
    padding: 4px 8px;
    display: block;
    font-size: 20px;
    color: #7f7f7f;
}
.social_icons li a:hover{
    color: #222547;
}
.copyright{
    background-color: #0fb1e0;
    background-image: linear-gradient(to right, #0fb1e0 , #d2e52a);
    padding: 12px 0;
}
.copyright .left{
    float: left;
    color: #fff;
}
.copyright .right{
    float: right;
}
/*Footer*/

/*zigzag-page*/
.zigzag_sec{
    margin: 4% 0;
}
.zigzag_sec .left{

}
.zigzag_sec .right{
    
}
.zigzag_sec .left .image_half{
    width: 50%;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}
.zigzag_sec .right .image_half{

}

.centered_left{
    -ms-flex-align: center;
    align-items: center;
}
.centered_right{ 
    -ms-flex-align: center;
    align-items: center;   
}
.centered_left .col-md-6:first-child{
    -ms-flex-order: 1;
    order: 1;
}
.content_section1 h3{
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 8px;
    color: #169444;
}
.content_section1 h3:first-child{
    margin-top: 0px;
}
.content_section1 p{
    margin-bottom: 14px;
}
/*zigzag-page*/

.ul_style li{
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
}
.ul_style li:before{
    content: "";
    position: absolute;
    top: 7px;
    left: 0px;
    width: 9px;
    height: 9px;
    border-radius: 0 3px 0 3px;
    background-color: #0fb1e0;
    background-image: linear-gradient(to right, #0fb1e0 , #d2e52a);
}
.ul_style.wrap_list{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ul_style.wrap_list li{
    margin-right: 8px;
}
.ul_style.half_width{
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ul_style.half_width li{
  width: 50%;
}
.certificate_list{
    margin-top: 25px;
    border: 1px solid #ddd;
}
.table-bordered thead td, .table-bordered thead th {
    background-color: #f8f8f8;
    font-weight: 400;
}
.owl-carousel.testimonial{
    /*padding: 25px;
    background-color: #f5f5f5;*/
}
.news_events p, .content_section1 p, .zigzag_sec p{
    text-align: justify;
}
.media_sec .overflow-hidden{
    border: 7px solid #d8d8d8;
    border-radius: 12px;
    box-shadow: 0px 2px 1px #ddd;
}
.media_sec img{
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.media_sec img:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.top_row{
    display: -ms-flex;
    display: flex;
}
.top_row .testi_icon{
    margin-right: 10px;
}
.top_row .testi_icon img{
    width: 55px;
}
.top_row .testi_name .top_line{
    margin-top: 0px;
}
.img_content img{
    /*float: left;
    width: 150px;
    margin-right: 15px;*/
}
.img_content{
    display: -ms-flex;
    display: flex;
    margin-top: 25px;
}
.img_content .left{
    margin-right: 15px;
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
}
.img_content p:last-child{
    margin-bottom: 0px;
}
.tab_type1{

}
.infra_style{
    position: relative;
}
.infra_style .tab1{
    position: absolute;
    top: 11.5%;
    left: 35.6%;
    width: 18.5%;
    height: 19%;
    border-radius: 50%;
}
.infra_style .tab2{
    position: absolute;
    top: 33%;
    right: 7%;
    width: 19%;
    height: 19%;
    border-radius: 50%;
}
.infra_style .tab3{
    position: absolute;
    bottom: 11%;
    right: 13%;
    width: 18.5%;
    height: 20%;
    border-radius: 50%;
}
.infra_style .tab4{
    position: absolute;
    bottom: 26.5%;
    left: 8%;
    width: 18%;
    height: 19.5%;
    border-radius: 50%;
}
@media (min-width: 1366px){
    .container {
        max-width: 1366px;
    }
}
@media (max-width: 1400px){
    .header.fixed{
        top: 10px;
    }
    .banner_top h2{
        font-size: 36px;
        margin-bottom: 10px;
    }
    .banner_top p{
        font-size: 16px;
        margin-bottom: 0px;
    }
    .products_block .container{
        max-width: 850px;
    }
    .products_block .col {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .products_block .col img {
        max-width: 75px;
    }
    .products_block h3 {
        font-size: 18px;
    }
    .products_block p{
        font-size: 13px;
    }
    .products_block{
        padding-bottom: 25px;
    }
    .products .heading_style1 h2 {
        font-size: 32px;
    }
    .heading_style1 h2, .heading_style2 h1, .heading_style3 h2{
        font-size: 46px;
    }
    header .container{
        -ms-flex: inherit;
        flex: inherit;
    }
}
@media (max-width: 1366px){
    .container{
        max-width: 100%;
    }
}
@media (max-width: 1200px) {
    .products_block .first_col{
        display: -ms-flex;
        display: flex;
        align-items: center;
        background: none;
    }
    .products_block .col img {
        max-width: 55px;
    }
    .products_block h3 {
        font-size: 15px;
    }
    .products_block .col {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .products_block p {
        font-size: 12px;
        margin: 8px 0 0;
    }
    .header_menu li a{
        padding: 12px;
    }
    .banner_top h2 {
        font-size: 32px;
    }
    .products .content {
        padding: 60px 40px 18% 30px;
        max-width: 85%;
    }
    .products .heading_style1 h2{
        margin-bottom: 10px;
        font-size: 22px;
    }
    .products .heading_style1{
        margin-bottom: 10px;
    }
    .heading_style1 h2, .heading_style2 h1, .heading_style3 h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    footer h4{
        font-size: 22px;
    }
}
@media (max-width: 992px) {
    .header_menu > ul{
        display: block;
    }
    .header_menu li a{
        color: #fff;
    }
    .header_menu .input-group{
        display: none;
    }
    .res-but{
        display: block;
    }
    body{
        font-size: 14px;
    }
    .latest_post h2 {
        font-size: 20px;
    }
    header.inner_pages ul li a, .inner_pages .header_menu .parent .primary a {
        color: #fff;
    }
    .header_menu {
        display: none;
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100%;
        overflow-y: auto;
        min-width: 260px;
        padding-top: 80px;
        background-color: #191919;
        z-index: 991;
        margin: 0;
        text-align: left;
    }
    header ul li a, .header_menu .parent .primary a{
        font-size: 16px;
    }
    .header_menu .parent{
        display: block;
    }
    .logo_txt{
        display: none;
    }
    .header_menu .left li, .header_menu .right li, .header_menu .left, .header_menu .right{
        float: none;
        margin: 0;
    }
    .header_menu .has-sub ul{
        position: relative;
        opacity: 1;
        visibility: visible;
        background-color: #333333;
        left: 0;
        width: 100%;
        display: none;
        border-top: none;
    }
    .header_menu li{
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .header_menu .dropdown-toggle{
        float: right;
        padding-right: 10px;
        padding: 8px 8px;
        line-height: 0;
        cursor: pointer;
    }
    .header_menu .parent .has-sub ul li {
        background-color: #3e3e3e;
    }
    .header_menu .has-sub ul:after{
        display: none;
    }
    .header_menu a.current .dropdown-toggle{
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }




    header ul li {
        float: none;
    }
    header ul li a {
        padding: 10px 15px;
        border-bottom: 1px solid transparent;
        color: #fff;
    }
    header ul li a:hover, .header_menu .parent .primary a:hover {
        -ms-transform: none;
        transform: none;
        border-bottom: 1px solid;
    }
    .banner-content-bg {
        display: none;
    }

    .mob_logo{
        display: block;
    }
    .res-but {

        width: 60px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 25px;
        cursor: pointer;
        z-index: 10000;
    }

    .res-but:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #8cc640;
        border-bottom: 2px solid #8cc640;
        content: '';
    }

    .res-but:before {
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #8cc640;
        content: '';
    }

    /* Turn it into an X when open */
    .res-but.menu-opened {}

    .res-but.menu-opened:after {
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .res-but.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }    

    .products_block{
        display: none;
    }
    .banner_top{
        top: 60%;
    }
    .welcome_border {
        margin-top: -30px;
    }
    .header_row .left{
        max-width: 100px;
        padding: 0px;
    }
    header .rest_space.right {
        opacity: 0;
    }
    header.active .header_row .left {
        max-width: 80px;
    }
    footer h4 {
        font-size: 20px;
    }
    .social_icons li a {
        padding: 4px 5px;
        font-size: 16px;
    }
    footer .row > [class^="col-"] {
        margin: 20px 0;
    }
    footer {
        font-size: 13px;
    }
    .footer_logo{
        max-width: 130px;
    }
}
@media (max-width: 768px) {
    /*.banner_top{
        display: none;
    }*/
    .owl-carousel .owl-item .banner_img .dt_img{
        display: none;
    }
    .owl-carousel .owl-item .banner_img .mob_img{
        display: block;
    }
    .dt_img{
        display: none;
    }
    .mob_img{
        display: block;
    }
    .banner_top {
        max-width: 300px;
        left: 15px;
        right: inherit;
    }
    .line_style{
        display: none;
    }
    .news_events iframe{
        padding-right: 0px;
    }
    .heading_style1 h2, .heading_style2 h1, .heading_style3 h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    footer h4 {
        margin-bottom: 5px;
    }
    .contact_map .contact_details{
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
    .iframe_block:after{
        display: none;
    }
}
@media (max-width: 767px) {
    .product_1_img{
        margin-top: 0px;
    }
    .product_2_img{
        margin-top: 0px;
    }
    .centered_left .col-md-6:first-child, .centered_right .col-md-6:first-child {
        -ms-flex-order: 1;
        order: 1;
    }
    .quick_link_blk{
        display: none;
    }
}
@media (max-width: 480px) {
    .banner_top {
        left: 15px;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        max-width: 280px;
    }
    .banner_top h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .banner_top p {
        font-size: 14px;
        line-height: 1.2;
    }
    .owl-theme .owl-nav.disabled+.owl-dots{
        right: 10px;
        top: 60%;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin-top: 4px;
    }
    footer .row > [class^="col-"] {
        margin: 15px 0;
    }
    footer .row > [class^="col-"] p:last-child{
        margin-bottom: 0px;
    }
    .copyright .left {
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }
    .copyright .right{
        float: none;
        text-align: center;
    }
    .zigzag_sec, .section_space{
        margin: 8% 0;
    }
    .mb-5, .my-5 {
        margin-bottom: 2rem!important;
    }
    .heading_style1 h2, .heading_style2 h1, .heading_style3 h2 {
        font-size: 18px;
    }
    .img_content{
    	display: block;
    	margin-top: 0px;
    	margin-bottom: 15px;
    }
    .img_content .left{
    	margin-right: 0px;
    }
    .img_content .right{
    	margin-top: 15px;
    }
    .zigzag_sec .left .image_half{
    	width: 100%;
    	margin-left: 0px;
    }
    .address_blk h4 {
	    font-size: 16px;
	}
	.address_blk [class^="col-md"] {
	    margin-bottom: 0px;
	}
	.products .content {
	    max-width: 100%;
	}
	.products p {
	    font-size: 15px;
	}
}