html{overflow-x:hidden;}
body{overflow-x:hidden; font-family: arial, sans-serif, helvetica;}
*{margin:0px;padding:0px;}

.header01{ width:100%; height:auto; float:left;     padding: 20px 0px 15px;}
.logo{width:100%; height:auto; float:left;}
.logo img{max-width:100%;}
.top_menu{width:100%;height:auto;float:left;text-align: right;margin-top: 12px;}

/**
 * Navigation
 */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #efefef;
}

/** 
* Nav container 
* 1. Ensure this slides in below parent
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/

.nav-container {
  position: fixed;
  top: 60px; /* 1 */
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  visibility: hidden; /* 2 */
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); /* 2 */
  background-color: #c0c0c0;
  -webkit-overflow-scrolling: touch; /* 3 */
}

/* 1. Show when `.is-visible` class is added */

.nav-container.is-visible {
  visibility: visible; /* 1 */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); /* 1 */
}

/* Nav toggle */

.nav-toggle {
  line-height: 1;
  display: inline-block;
  padding: 1.25rem 1rem;
  border: 0;
  background-color: #e74c3c;
}

/* Nav toggle icon */

.nav-toggle .icon-menu {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  vertical-align: middle;
  fill: none;
}

/* Nav toggle icon lines */

.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: #fff;
}

/* Nav toggle icon line 1 */

.icon-menu .line-1 { top: 0; }

/* When active, rotate line 1 to be lefthand part of X */

.is-active .icon-menu .line-1 {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}

/* Nav toggle icon line 2 */

.icon-menu .line-2 {
  top: 50%;
  margin-top: -2px;
}

/* When active, hide line 2 */

.is-active .icon-menu .line-2 { opacity: 0; }

/* Nav toggle icon line 3 */

.icon-menu .line-3 { bottom: 0; }

/* When active, rotate line 3 to be righthand part of X */

.is-active .icon-menu .line-3 {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Remove default list styles for menus */

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/** 
* 1. Give menu a lighter background than its container 
* 2. Prevent menu text from being accidentally highlighted
*/

.nav-menu {
  background-color: #fff; /* 1 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;         /* 2 */
}

/* Give menu items a top border */

.nav-menu .menu-item {border-top: 1px solid #bbb;margin-left: 10px;}

/* Give last menu item a bottom border */

.nav-menu > .menu-item:last-child {/* border-bottom: 1px solid #bbb; */}

/* Darker background color on hover, and when toggled */

.nav-menu > .menu-item:hover,
.nav-menu > .menu-item.is-active {background-color: #ffffff;border-top: 1px solid #6086ab;border-bottom: 1px solid  #6086ab;}

/* 1. Menu links are block level, by default */

.nav-menu .menu-link {
  display: block; /* 1 */
  text-decoration: none;
  color: #444;
  padding: 0.75rem 6px;
  font-family: arial, sans-serif, helvetica;
  font-weight: 600;
  text-transform: uppercase;
  /* margin-left: 11px; */
}

/* 1. Menu items with dropdowns appear clickable */

.has-dropdown {
  position: relative;
  cursor: pointer; /* 1 */
}

/* 1. Parent menu links inlined so you can toggle the dropdown */

.has-dropdown > .menu-link { display: inline-block; }

/* 1. Add an icon to menu items that have sub menus */

.has-dropdown:after {
  font-size: 23px;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  content: "+"; /* 1 */
  color: #222;
}

/* 1. Switch icon to n-dash when toggled */

.has-dropdown.is-active:after { content: "\2013"; /* 1 */ }

/**
 * Dropdowns
 * 1. Hide dropdowns by default
 */

.nav-dropdown {
  display: none; /* 1 */
  background-color: #c0c0c0;
}

/* 1. Show dropdown when toggled */

.has-dropdown.is-active > .nav-dropdown { display: block; /* 1 */ }

/* 2nd level dropdown */

.nav-dropdown .nav-dropdown { background-color: #aaa; }

.nav-dropdown .menu-item { border-color: #a0a0a0; margin-left:0px;     padding-left: 10px;      font-size: 12px;}

.nav-dropdown .nav-dropdown .menu-item {
  background-color: #b0b0b0;
  border-color: #909090;
}
.nav-dropdown .menu-link{ color:#fff;}

.active{background-color: #ffffff;border-top: 1px solid #6086ab !important;border-bottom: 1px solid  #6086ab !important;}


 @media (min-width: 767px) {

.nav { background-color: #dedede; }

.nav,
 .nav-container,
 .nav-container.is-visible {
  position: relative;
  top: auto;
  left: auto;
  z-index: 9999;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.nav-container,
 .nav-container.is-visible {
  visibility: visible;
  height: auto;
  min-height: 0;
  overflow-y: visible;
}

.nav-toggle { display: none; }

/* 1. Display menu items inline */

.nav-menu > .menu-item,
 .nav-menu > .menu-item.is-active {
  display: inline-block; /* 1 */
  background-color: transparent;
  border: 0;
}

/* Remove bottom border on last child */

.nav-menu > .menu-item:last-child {/* border: 0; */}

.nav-menu .menu-item {
  -webkit-transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
}

/* Remove +/- icons */

.has-dropdown:after { content: "" !important; }

/* Add a caret to top-level menu items that have dropdowns */

.nav-menu > .has-dropdown:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-top: -2px;
  margin-left: -4px;
  content: "";
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #6181a0 transparent transparent transparent;
}

/* Increase padding to compensate for caret */

.has-dropdown > .menu-link { padding-right: 2rem; }

/* Re-style dropdowns for larger screens */

.nav-dropdown {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 130px;
  margin: 0;
  padding: 0.5rem 0;
  background-color:#6184a3;
  box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.25s,  opacity 0.25s linear;
  transition: visibility 0s linear 0.25s,  opacity 0.25s linear;
  text-align:left;
}

.has-dropdown:hover > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-dropdown .menu-item { border: 0; }

.nav-dropdown .menu-item:hover,
 .nav-dropdown .nav-dropdown .menu-item:hover { background-color: #749fbc; }

.nav-dropdown .nav-dropdown,
 .nav-dropdown .nav-dropdown .menu-item { background-color: #dedede; }

.nav-dropdown .nav-dropdown {
  z-index: 9998;
  top: 0;
  left: 100%;
}
 }
 
 

.slider_01{width:100%;height:auto;float:left;position: relative;margin-bottom: 50px;}
.slider_text{width:100%; height:auto; float:left; position:absolute;     z-index: 10;}
.slider_text_left{
    width: 36%;
    float: left;
    background-color: rgba(52, 86, 120, 0.65);
    text-align: center;
    padding: 15px;
    font-family: arial, sans-serif, helvetica;
    margin-top: 150px;
}
.slider_text_left h3{
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}
.slider_text_left img{
    max-width: 290px;
    margin-bottom: 16px;
}
.slider_text_left h4{
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 13px;
}
.slider_text_right{
    width: 57%;
    float: right;
    text-align: right;
    margin-right: -72px;
}
.slider_text_right img{
    max-width: 100%;
}
.slider_banner01{width:100%; height:auto; float:left; text-align:center;}
.slider_banner01 img{ max-width:100%;}

.section_02{ width:100%; height:auto; float:left; position:relative;     padding-bottom: 50px;}
.section02_text1{width:100%; height:auto; float:left; margin-bottom:50px;}
.section02_text1 h3{font-family: arial, sans-serif, helvetica;color:#345678;font-weight:600;font-size: 28px;max-width: 440px;line-height: 40px;margin-bottom: 20px;}
.section02_text1 h3 i{    font-style: italic;    font-weight: 400;    font-size: 34px;}
.section02_text1 p{font-weight: 400;font-family: arial, sans-serif, helvetica;color:#345678;font-size: 14px;line-height: 25px;font-style: italic;}
.section02_text2{width:100%; height:auto; float:left;}
.section02_text2 h4{font-family: arial, sans-serif, helvetica;color:#345678;font-weight: bold;font-size: 40px;line-height: 40px;margin-bottom: 20px;text-transform: uppercase;text-align: center;margin-bottom: 0px;}
.section02_text3{width:100%;height:auto;float:left;border: 1px solid #ced7df;border-top: 4px solid #8c9dad;padding: 20px;margin-top:18px;margin-bottom: 30px; background-color:#fff;}
.section02_text3_left{width:100%; height:auto; float:left;}
.section02_text3_left img{ max-width:100%;}
.section02_text3_right{width:100%;height:auto;float:left;margin-top: 50px;}
.section02_text3_right p{font-weight: 400;font-family: arial, sans-serif, helvetica;color:#345678;font-size: 14px;line-height: 25px;font-style: italic;}


/*==================================================
 * Effect 2
 * ===============================================*/
.effect2
{
  position: relative;
}
.effect2:before, .effect2:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 9px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 350px;
  background: rgb(119, 119, 119);
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px rgba(119, 119, 119, 0.59);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.effect2:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}


.section_03{width:100%;height:auto;float:left;background-color:#345678;padding: 60px 0px 95px;}
.section_03_left{width:100%; height:auto; float:left;}
.section_03_left img{ max-width:100%;}
.section_03_right{width: auto;height:auto;float: none;/* border: 1px solid #ced7df; */text-align: center;margin: auto;max-width: 480px;     margin-top: 30px;}
.section_03_right h3{font-family: arial, sans-serif, helvetica;color: #ffffff;font-weight: 400;font-size: 22px;line-height: 29px;margin-bottom: 30px;text-transform: uppercase;margin-top: 10px;}
.section_03_right img{max-width:100%;margin-bottom: 10px;border: 1px solid rgba(206, 215, 223, 0.49);padding: 10px;}

.section_04{width:100%;height:auto;float:left;padding-bottom: 50px;}
.section_4_box{width:100%;height:auto;float:left;margin-top: -100px;background-color: #fff;margin-bottom: 70px;box-shadow: 0px 0px 9px 3px rgba(136, 136, 136, 0.28);}
.section_4_box_left{width:100%;height:auto;float:left;margin-left: -15px;}
.section_4_box_left img{ max-width:100%;}
.section_4_box_right{width: 113%;height:auto;float:left;padding: 37px 20px 20px 37px;border-bottom: 8px solid #234567;min-height: 355px;position: relative;margin-left: -45px;}

.section_4_box_right:before{
    content: "";
    width: 0;
    height: 0;
    border-top: 354px solid white;
    border-left: 100px solid transparent;
    position: absolute;
    top: 0px;
    left: -100px;
    /* box-shadow: 0px 0px 9px 3px rgba(136, 136, 136, 0.28); */
}

.section_4_box_right h4{font-family: arial, sans-serif, helvetica;color: #456789;font-weight: 400;font-size: 24px;line-height: 29px;margin-bottom: 20px;text-transform: uppercase;margin-top: 10px;border-bottom:0px solid #456789;padding-bottom: 7px; background-image:url(../images/border02.png); background-repeat:no-repeat; background-position:left bottom; background-size:100%;}
.section_4_box_right h4 strong{
    color: #234567;
    font-size: 33px;
    font-weight: 600;
    font-style: normal;
}
.section_4_box_right ul{width:100%;height:auto;float:left; margin:0px; padding:0px; list-style:none;}
.section_4_box_right ul li{width:100%;height:auto;float:left;font-weight: 400;font-family: arial, sans-serif, helvetica;color: #000000;font-size: 15px;line-height: 25px;font-style: normal;margin-bottom: 16px;}
.section_4_box_right ul li a{color: #000000;}
.section_4_box_right ul li:before {
    content: "\f0e7";
    font-family: FontAwesome;
    color: #234567;
    margin-right: 11px;
    font-weight: bold;
}
.section_4_box_right ul li a:hover{ text-decoration:underline;}
.section_4_box2 {width:100%;height:auto;float:left;background-color: #ecf6ff;padding: 15px 15px 24px;margin-left: 0px;}
.section_4_box2_left{width:100%;height:auto;float:left;}
.section_4_box2_left h3{font-family: arial, sans-serif, helvetica;color: #456789;font-weight: 400;font-size: 23px;line-height: 29px;margin-bottom: 10px;text-transform: uppercase;margin-top: 10px; background-image:url(../images/border01.png); background-repeat:no-repeat; background-position:left bottom; padding-bottom:8px;}
.section_4_box2_left h3 strong{
    color: #234567;
}
.section_4_box2_left p{font-weight: 600;font-family: arial, sans-serif, helvetica;color: #161616;font-size: 15px;line-height: 25px;font-style: normal;max-width: 470px;margin-bottom: 20px;}
.section_4_box2_left ul{width:100%;height:auto;float:left; margin:0px; padding:0px; list-style:none;}
.section_4_box2_left ul li{width:100%;height:auto;float:left;font-weight: 400;font-family: arial, sans-serif, helvetica;     color: #234567; font-size: 14px;line-height: 25px;font-style: normal;margin-bottom: 9px;}

.catlog_baar{width:100%;height:auto;float:left;border-top:10px solid #234567;background-color:#7790a9;margin-top: 100px;padding-bottom: 20px;}
.catlog_01{width:100%;height:auto;float:left;}
.catlog_01 img{max-width: 280px;margin-top: -90px;}
.catlog_02{width:100%;height:auto;float:left;padding-left: 60px;}
.catlog_02 h3{font-family: arial, sans-serif, helvetica;color: #fafafa;line-height: 42px;font-size: 27px;}
.catlog_02 h3 strong{
    font-weight: 600;
    font-size: 33px;
    font-style: italic;
}
.catlog_03{width:100%;height:auto;float:left;padding-top: 30px;text-align: right;}
.catlog_03 button{font-family: arial, sans-serif, helvetica;background-color: #fff;border: 0px;padding: 10px 15px;color: #234567;font-size: 15px;width: 160px;text-align: left;border-radius: 3px;box-shadow: 0px 4px 12px 3px rgba(35, 69, 103, 0.68); outline:0px;}
.catlog_03 button i{
    float: right;
    font-size: 41px;
    color: #234567;
    margin-left: 10px;
    margin-top: -16px;
}
.catlog_03 button:hover{
    background-color: #234567;
    color: #fff;
}

.catlog_03 button:hover i{ color:#fff;}

.footer{width:100%;height:auto;float:left;background-color:#383838;padding: 25px 0px 0px;}
.footer01{width:100%;height:auto;float:left;margin-top: 15px;}
.footer01 img{ max-width:100%;}
.footer02{font-family: arial, sans-serif, helvetica; width:100%;height:auto;float:left;} 
.footer02 h3{
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 15px;
}
.footer02 ul{
    font-size: 12px;
    width: 100%;
    height: auto;
    float: left;
    margin: 0px;
    padding: 0px;
    text-transform: uppercase;
	list-style:none;
	    margin-left: 5px;
}
.footer02 ul li{
    margin-bottom: 9px;
}
.footer02 ul li a{
    color: #e9e9e9;
}
.footer02 ul li a:hover{}
.footer02 ul li:before {
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	color:#fff;
	margin-right: 8px;
}
.footer03{font-family: arial, sans-serif, helvetica;width: auto;height:auto;float: right;}
.footer03 img{max-width:100%;margin-bottom: 15px;}
.footer03 p{font-family: arial, sans-serif, helvetica;margin-bottom: 14px;}
.footer03 p a{
    color: #e9e9e9;
}
.footer03 p i{
    color: #306fad;
    font-size: 20px;
    width: 30px;
    vertical-align: middle;
}
.footer03 p a:hover{}
.footer_copy{background-color:#2f2f31;width:100%;height:auto;float:left;text-align:center;font-family: arial, sans-serif, helvetica;font-size: 13px;color: #fff;padding: 9px 0px;margin-top: 15px;}
.footer_copy a{
    color: #fff;
}
.footer_copy a:hover{
    color: #fff;
    text-decoration: underline;
}

.contact_section1{width:100%;height:auto;float:left;font-family: arial, sans-serif, helvetica;padding: 20px 0px;}
.contact_section1 h3{background-image:url(../images/border01.png);background-repeat:no-repeat;background-position:left bottom;padding-bottom:8px;text-transform: uppercase;font-weight: 700;color: #234567;background-size: 12%;margin-bottom: 30px;}
.contact_section1_left{ width:100%; height:auto; float:left; }
.contact_section1_left img{ max-width:100%;}
.contact_section1_right{width:100%;height:auto;float:left;padding-top: 25px;}
.contact_section1_right p{font-family: arial, sans-serif, helvetica;font-weight: 400;font-family: arial, sans-serif, helvetica;color:#234567;font-size: 17px;line-height: 30px;/* font-style: italic; */}
.contact_section1_right ul{width:100%;height:auto;float:left;margin:0px;padding:0px;list-style:none;font-family: arial, sans-serif, helvetica;font-size: 16px;line-height: 30px;color: #234567;font-weight: 600;}
.contact_section1_right ul li{color:#234567;margin-bottom: 7px;}
.contact_section1_right ul li:before {
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color:#234567;
    margin-right: 8px;
    margin-bottom: 10;
}
.contact_section1_right ul li a{
    color: #234567;
    font-weight: 600;
}
.contact_section1_right p a{
    color: #234567;
    font-weight: 600;
}

.contact_form01{width:100%;height:auto;float:left;background-color:#345678;font-family: arial, sans-serif, helvetica;padding: 20px 0px 50px;margin: 40px 0px 20px;}
.contact_form01 h3{background-image:url(../images/border03.png);background-repeat:no-repeat;background-position:left bottom;padding-bottom:8px;text-transform: uppercase;font-weight: 700;color: #fff; margin-bottom: 30px;}
.contact_form01 input{
    width: 95%;
    height: auto;
    float: left;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 10px;
    border: 0px;
    border-radius: 2px;
}
.contact_form01 textarea{
    width: 95%;
    height: 100px;
    float: left;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 10px;
    border: 0px;
    border-radius: 2px;
}
.contact_form01 input[type="submit"]{
    float: right;
    margin-right: 5%;
    background-color: #234567;
    color: #fff;
    text-transform: uppercase;
    width: 124px;
    font-weight: bold;
}
.contact_form01 input[type="submit"]:hover{
    background-color: #7790a9;
}

.page_title{ width:100%; height:auto; float:left; text-align:center;}
.page_title img{ max-width:100%;}
.page_title_new{width:100%;height:auto;float:left;background-color: #e7e8e8;border-left: 4px solid #345678;}
.page_title_new h3{text-transform: uppercase;font-weight: 400;font-size: 21px;color: #3c3c3c;font-family: arial, sans-serif, helvetica;width:100%;height:auto;float:left;background-repeat:no-repeat;background-position:top right;padding: 25px 17px;margin: 0px;background-size: 20%;}

.product_image{width:100%;height:auto;float:left;text-align:center;padding: 30px;}
.product_image img{ max-width:100%;}

.product_detail{width:100%;height:auto;float:left;background-color:#345678;margin-bottom: 30px;font-family: arial, sans-serif, helvetica;padding: 20px;}
.product_detail ul{width:100%;height:auto;float:left;margin:0px;padding:0px;list-style:none;font-size: 15px;color: #fff;border: 1px solid #fff;border-bottom: 0px;}
.product_detail ul li{width:100%;height:auto;float:left;border-bottom: 1px solid #fff;padding: 10px 0px;}
.product_detail ul li h3{
    margin: 0px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 5px;
    font-size: 22px;
}
.product_detail ul li div{padding-left: 25px;}
.product_detail ul li div:first-child{border-right: 1px solid #fff;}
.tab01{  padding-left: 0px !important;    min-height: 59px !important;}
.tab02{    padding-left: 0px !important;    border-right: 0px !important;    border-bottom: 1px solid #fff;    padding-bottom: 5px;    margin-bottom: 5px;}
.tab03{    padding-left: 0px !important;}
.tab04{    padding-left: 0px !important;    border-right: 0px !important;    border-bottom: 1px solid #fff;    padding-bottom: 5px;    margin-bottom: 5px;}
.tab05{    padding-left: 0px !important;}
.product_detail ul li h4{margin: 0px;text-align: center;color: #fff;font-weight: 400;margin-bottom: 8px;margin-top: 6px;font-size: 20px;}

.product_baar{width:100%;height:auto;float:left;font-family: arial, sans-serif, helvetica;margin-bottom: 40px;}
.product_baar button{    background-color: #234567;    border: 0px;    color: #fff;    padding: 10px 15px;    border-radius: 2px;    font-size: 15px;    min-width: 150px;    text-align: center;}
.product_baar button i{   margin: 0px 5px;}
.product_baar button:hover{    background-color: #7790a9;}
.product_baar .product_pereview{    float: left;}
.product_baar .product_next{    float: right;}
.tanks_01{ text-align:center;}
.tanks_01 img{max-width:100%;}
.prodct_age_01{ width:100%; height:auto; float:left;}
.prodct_age_01_left{width: 90%;height:auto;float:left;border-left: 4px solid #345678;margin-left: 22px;padding-left: 0px;margin-top: 3px;}
.prodct_age_01_right{width:100%; height:auto; float:left;}
.prodct_age_01_left h3{
    background-color: #345678;
    margin: 0px;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.prodct_age_01_left ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-left: 10px;
}
.prodct_age_01_left ul li{
    margin-bottom: 10px;
	width:100%;
	height:auto; float:left;
}
.prodct_age_01_left ul li a{
    color: #000;
	    width: 100%;
    float: left;
}
.prodct_age_01_left ul li a:hover{}






@media (max-width:1199px){
	.top_menu{ font-size:12px; margin-top: 18px;}
	.slider_text_left{margin-top: 100px;}
	.section02_text3_right{ margin-top:0px;}
	.section_4_box_right h4{font-size: 21px;}
	.section_4_box_right h4 strong{font-size: 26px;}
	.section_4_box_right{width: 116%; padding: 8px 20px 2px 37px; min-height: 290px;}
	.section_4_box_right::before{border-top: 295px solid white;}
	.page_title_new h3{background-size: 29%;}
}

@media (max-width:1024px){
	.slider_text_left{ margin-top:70px;}
	.section02_text1 h3{font-size: 25px; max-width: 400px;}
}

@media (max-width:980px){
	.top_menu{margin-top: 5px;}
	.nav-menu .menu-item{margin-left: -3px;}
	.nav-menu .menu-link{text-transform: inherit;}
	.slider_text_left img{max-width:100%;}
	.slider_text_left{margin-top:80px;}
	.slider_text_left h3{margin-top: 0px; margin-bottom:15px; font-size: 20px; line-height: 28px;}
	.slider_text_left h4{font-size: 15px;}
	.section02_text2 h4{font-size: 33px;}
	.section02_text1{margin-bottom:30px;}
	.section_03_right{margin-top: 0px;}
	.section_03_right h3{margin-top:0px;}
	.section_03_right img{ max-width:300px;}
	.section_4_box_right{padding: 8px 20px 2px 20px; background-color:#fff;}
	.section_4_box_left{ width:157%;}
	.section_4_box_right::before{left: -52px; border-left: 53px solid transparent;}
	.catlog_02 h3{font-size: 20px; line-height: 33px;}
	.catlog_02 h3 strong{font-size: 28px;}
	.product_detail ul li div{padding-left: 30px;}
	.product_detail ul{font-size: 15px;}
}

@media (max-width:768px){
	.slider_text_right{margin-right: -25px; width: 45%;}
	.slider_text_left{margin-top: 40px;}
	.section02_text1 h3{font-size: 23px; line-height: 37px;}
	.section02_text1 h3 i{font-weight: 600; font-size: 29px;}
	.section_03_right h3{font-size:18px;}
	.section_4_box_right{min-height: 296px;}
	.contact_section1_right{padding-top: 0px;}
}

@media (max-width:767px){
	.top_menu{ width:auto; float:right;}
	.top_menu .nav{ position:relative; margin-top: -50px;}
	.nav-toggle{padding: 10px; background-color: #3d5876; position: relative;}
	.nav-toggle .icon-menu{width:22px;}
	.nav-container{position: absolute;  width: 320px; text-align:left; left:-278px; height: auto; }
	.nav-menu .menu-item{padding-left:10px;}
	.slider_text_left{width: 45%;}
	.slider_text_left h3{font-size: 15px; line-height: 20px;}
	.slider_text_left img{max-width:220px; margin-bottom: 10px;} 
	.section02_text3_left{margin-bottom:15px;}
	.section_03_right img{max-width:100%; border:0px;}
	.section_03_right{ width:100%; max-width:inherit; margin-top: -2px; padding-top:10px; border:1px solid rgba(206, 215, 223, 0.49)}
	.section_4_box{margin-top:0px; padding-top:20px; margin-bottom: 30px;}
	.section_4_box_left{width:100%; margin-left:0px;}
	.section_03{padding: 30px 0px;}
	.section_4_box_right{min-height:100px; width:100%; margin-left:0px; padding:10px 0px;}
	.section_4_box2{padding: 15px 0px 24px;}
	.catlog_01{text-align:center;}
	.catlog_02{padding-left:0px; text-align:center;}
	.catlog_03{float:none; text-align:center; padding-bottom:10px;}
	.footer01{margin-top: 0px; margin-bottom:15px;}
	.footer03{float:left; margin-top:10px;}
	.contact_section1_right{padding-top:25px;}
	.contact_form01 input[type="submit"]{float:left;}
	.contact_form01{padding: 10px 0px 10px; margin: 0px 0px 20px;}
	.tab01{min-height: 10px !important; border-right:0px !important; margin-bottom:10px;}
	.tab02{width: 48% !important; padding-left:0px !important; margin-left: -30px;}
	.tab03{width: 48% !important; border-bottom:1px solid #fff; padding-bottom:5px; margin-left:4%; }
	.tab04{width: 48% !important; border-bottom:0px solid #fff;}
	.tab05{width: 48% !important; border-bottom:0px solid #fff; padding-bottom:5px; margin-left:0%;}
	.product_detail ul li h3{text-align:left; font-size:22px; padding:0px 30px;}
	.product_detail ul li h4{text-align:left; font-size:20px; padding:0px 30px;}
}

@media (max-width:500px){
	.slider_text_right{display:none;}
	.slider_text_left{width:100%; background-color: rgba(52, 86, 120, 0.93);}
	.section02_text1 h3{max-width:600px;}
	.section02_text2 h4{font-size: 28px; line-height: 35px;}
	.section02_text3{ padding:20px 0px;}
	.footer01{text-align:center;}
	.footer02{text-align:center;}
	.footer03{text-align:center; width:100%;}
	.page_title_new h3{padding: 25px 0px;     font-size: 22px;     background-size: 40%;}
	.product_image{    padding: 20px 0px;}
	.product_detail ul li div:first-child{ border-right: 0px solid #fff;  padding-bottom: 10px; padding-left: 15px;}
	.product_detail ul li h3{font-size:21px;     padding: 0px 15px;}
	.product_detail ul li h4{font-size:17px; line-height:22px;}
	.product_baar button{width:auto; min-width:10px;}
	.product_detail ul li div{padding-left:17px;}
	.product_detail ul li h4{ padding:0px 15px;}
	.tab02{margin-left: -15px;}
	.tab03{    padding-bottom: 10px;}
	.nav-container{    width: 285px;     left: -245px;}
	.header01{padding: 10px 0px 15px;}
	.product_detail{    padding: 25px 0px;}
	.product_baar button{font-size:14px;}
}

@media (max-width:400px){
	.slider_text_left{margin-top:15px;}
	.section_02{padding-bottom: 0px;}	
	.footer_copy{padding:10px;}
}