@charset 'UTF-8';
@import url( ./normalize.min.css );
@import url( ./bootstrap-grid.min.css );
@import url( ./fonts.min.css );

/* SLICK */
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}

* {
  box-sizing: border-box;
  outline: none;
}

#back-top {
  position: fixed;
  right: 0;
  bottom: 0;
}

body {
  background: #f5f5f5;
  font-family: OpenSans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-basis: auto;
  min-height: 100vh;
}

label.input-label {
  display: block;
  margin: 15px 0;
}
label.input-label span {
  display: block;
  font-size: 15px;
  line-height: 1em;
  margin-bottom: 5px;
}
label.input-label span sup {
  color: red;
  font-size: 8px;
}
label.input-label input,
label.input-label textarea {
  display: block;
  width: 100%;
  outline: none;
  resize: none;
  font-size: 16px;
  line-height: 1.2em;
  padding: 8px 15px;
  border: 1px solid #d8d8d8;
  transition: .2s ease;
}
label.input-label input:focus,
label.input-label textarea:focus {
  border: 1px solid #000
}

.grecaptcha-badge {
  visibility: hidden;
}

.grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.grid .item {
  width: calc( 100% - 30px );
  margin: 15px;
}
.grid.x2 .item {
  width: calc( 100% / 2 - 30px );
}
.grid.x3 .item {
  width: calc( 100% / 3 - 30px );
}
.grid.x4 .item {
  width: calc( 100% / 4 - 30px );
}
.grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#header {
  position: relative;
}
#header:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 580px;
  background: #f3f3f3
              url(../images/rcam.jpg) no-repeat;
  background-size: auto;
  background-position: center;
  z-index: -1;
  box-shadow: 0 0 30px rgba(50,50,50,.5);
  border-bottom: 15px solid rgba(50,50,50,.8);
}
#header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 580px;
  background: rgba(0,0,0,.5);
  z-index: -1;
}
#header .inner {
  width: 100%;
  max-width: 1170px;
  margin: 15px auto 0;
  padding: 0 15px;
  background: #fff;
  border-radius: 5px 5px 0 0;
}

#main {
  width: 100%;
  max-width: 1170px;
  flex-grow: 1;
  flex-basis: auto;
  margin: 0 auto;
  padding: 15px;
  background: #fff;
}
#main.ws {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-basis: auto;
}
#main.ws #sidebar {
  width: 100%;
  max-width: 260px;
  margin-right: 25px;
}
#main.ws #sidebar .item {
  background: #f9f9f9;
  border: 1px solid #00498d;
  border-radius: 5px;
  margin-bottom: 25px;
}
#main.ws #sidebar .item .header {
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  background: #00498d;
  padding: 10px 15px;
}
#main.ws #sidebar .item .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main.ws #sidebar .item .menu ul {
  list-style: none;
  padding: 0;
  margin-left: 15px;
}
#main.ws #sidebar .item .menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  transition: .1s ease;
  color: #222;
  font-size: 16px;
  line-height: 1.1em;
}
#main.ws #sidebar .item .menu a:hover {
  color: #fff;
  background: #00498d;
}
#main.ws #sidebar .item .menu .nav-child {
  border-left: 1px dashed #333;
}
/*#main.ws #sidebar .item .menu .nav-child a:hover {
  color: #00498d;
  background: transparent;
}*/
#main.ws #sidebar .item .menu .active > a {
  background: #00498d99;
  color: #fff;
}
#main.ws #sidebar .item .menu .nav-child {
  display: none;
}
#main.ws #sidebar .item .menu .active > .nav-child {
  display: block;
}

#main.ws #content {
  width: 100%;
  max-width: calc(100% - 260px - 25px);
}
#main.ws #sidebar .item .news {}
#main.ws #sidebar .item .news .news-item {
  padding: 15px;
}
#main.ws #sidebar .item .news .news-item:last-child {}
#main.ws #sidebar .item .news .news-item h5 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 5px;
}
#main.ws #sidebar .item .news .news-item h5 a {
  display: block;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}
#main.ws #sidebar .item .news .news-item .date {
  font-size: 13px;
  font-weight: 700;
  color: #00498d;
  margin-bottom: 5px;
}
#main.ws #sidebar .item .news .news-item p {
  font-size: 12px;
  line-height: 1.2em;
  color: #3b3b3b;
  margin: 0;
}
#main.ws #sidebar .item .all {
  display: block;
  padding: 15px;
  text-align: right;
  font-size: 13px;
  line-height: 1em;
  color: #00498d;
}

#content ul.breadcrumb {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #111;
}
#content ul.breadcrumb li:first-child {
  display: none;
}
#content ul.breadcrumb .divider {
  margin: 0 7px 0 5px;
  color: #999;
}
#content ul.breadcrumb a {
  color: #111;
  transition: .1s ease;
}
#content ul.breadcrumb a:hover {
  color: #00498d;
}

#content .item-page {
  padding: 1em;
  border: 2px solid #f2ebdf;
}
#content .item-page .page-header h1,
#content .item-page .page-header h2 {
  margin-top: 0;
}
#content .item-page p:first-child {
  margin-top: 0;
}
#content .item-page p:last-child {
  margin-bottom: 0;
}
#content .item-page a {
  color: #333;
  transition: .1s ease;
}
#content .item-page a:hover {
  color: #00498d;
}
#content .item-page iframe {
  display: block;
  margin: 0 auto;
}
#content .item-page img {
  display: block;
  /*max-width: 200px;*/
  max-width: 100%;
  margin: 1em 0;
  height: auto;
}
#content .item-page table {
  width: 100% !important;
}
#content .item-page table td {
  padding: 5px;
}
.blog .item {
  font-size: 13px;
  line-height: 1.4em;
}
.blog .item .title a {
  color: #202020 !important;
  display: block;
  text-decoration: none;
  margin: 0;
  font-weight: 700;
}
.blog .item .date {
  font-size: 13px;
  font-weight: 700;
  color: #00498d;
  margin-bottom: 5px;
}
.blog .item-image {
  display: block;
  float: left;
  max-width: 150px;
  max-height: 150px;
  margin: 1em 0;
  margin-right: 1em;
  line-height: 0em;
}
.blog .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  border: 1px solid #00498d;
}
.blog hr {
  display: block;
  width: 100%;
  height: 1px;
  background: #00498d;
  border: none;
  margin: 15px 0;
}
.blog hr:last-child {
  display: none;
}

.certificates .item,
.gallery .item {
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  border: 1px solid #ddd;
  border-radius: 5px;
}
.certificates .item,
.gallery .item {
  max-height: 250px;
  position: relative;
}
.gallery .item {
  height: 250px;
  background: #eee;
}
.certificates .item img,
.gallery .item img {
  object-position: top;
}
.gallery .item img {
  object-fit: contain;
  object-position: center;
  border-radius : 5px;
}
.gallery .item .title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  font-size: 14px;
  line-height: 1.2em;
  background: rgba(0,0,0,.7);
  color: #fff;
  text-align: center;
  border-radius: 0 0 5px 5px;
}

.page-gallery {
  background: #EDEDED;
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0 0;
}
.page-gallery h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin: 0 0 15px;
}
.page-gallery .grid {
  margin: 0 -5px;
}
.page-gallery .grid .item {
  width: calc(100% / 3 - 10px);
  margin: 5px;
  max-height: 200px;
}
.page-gallery .item img {
  max-height: 200px;
}

#footer {
  margin: 0;
  padding: 15px 0;
  font-size: 14px;
  line-height: 1.2em;
  background: #f5f5f5 url(../images/tile.jpg) repeat;
}
#footer .row {
  align-items: center;
}
#footer small {
  font-size: 10px;
}
#footer a {
  color: #262626;
}
#footer p {
  margin: 0;
}
#footer .phone {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-left: 50px;
}
#footer .phone:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  width: 40px;
  height: 40px;
  background: url(../images/phone.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#main-slider {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 15px 15px 0;
  background: #fff;
}
#main-slider .slide {
  height: 350px;
  max-height: 100%;
  position: relative;
}
#main-slider img {
  width: 100%;
  height: 100%;
  object-position: center;
  border-radius: 5px;
}
#main-slider .slick-dots {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#main-slider .slick-dots li {
  margin: 0 5px;
}
#main-slider .slick-dots li button {
  border: none;
  background: transparent;
  color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-size: 0px;
  height: 9px;
}
#main-slider .slick-dots li button:before {
  content: '';
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  background: #c5c5c5;
  border-radius: 50%;
  transition: .2s ease;
}
#main-slider .slick-dots .slick-active button:before,
#main-slider .slick-dots button:hover:before {
  background: #ff7a31
}
.ya-share2__container {
  margin-top: 5px;
  text-align: left;
}
.text-center {
  text-align: center;
}

.seodrive_wrap {
  width: 100%;
}
.seodrive_wrap h1 {
  font-size: 18px;
}

.labind101 {
	display : none!important;
}

.fox-form {
	padding : 30px;
}

.fox-form .controls, .fox-form .controls input, .fox-form .controls textarea {
    width: 100%!important;
}

.fox-form label.checkbox {
	font-size : 12px;
	text-align : center;
}

.fox-form label.checkbox input {
	float : none!important;
	display: block!important;
}

.fox-form .alert-error {
	display : none;
}

.form-btn-hidden {
	display : none!important;
}

.textcenter {
	text-align : center;
	width : 100%;
}

.rca-form {
	text-align : center;
}

.rca-form input {
	width : 100%;
	height : 40px;
	line-height : 40px;
	margin : 0px auto 15px;
	max-width : 400px;
	width : 100%;
	border-radius : 5px;
	border : 1px solid #ccc;
	display : block;
	padding : 0 10px;
}

.rca-form textarea {
	width : 100%;
	height : 100px;
	line-height : 24px;
	margin : 0px auto 15px;
	max-width : 400px;
	width : 100%;
	border-radius : 5px;
	border : 1px solid #ccc;
	display : block;
	padding : 5px 10px;
}

.rca-form label span {
	color : red;
	border-radius : 4px;
}

.rca-form label {
	display : block;
	margin-bottom : 5px;
}

.rca-form a.btn {
	display : block;
	max-width : 250px;
	width : 100%;
	margin : 0px auto 15px;
	text-decoration : none;
	border-radius : 5px;
	background: #00498d;
	color : #FFF!important;
	height : 40px;
	line-height : 40px;
}

.rca-form-btn a.btn {
	display : inline-block;
	max-width : 250px;
	width : 100%;
	max-width : 200px;
	text-decoration : none;
	border-radius : 5px;
	background: #00498d;
	color : #FFF!important;
	height : 40px;
	line-height : 40px;
	text-align : center;
}

.mob-menu-btn {
	display : block;
	width : 100%;
	text-decoration : none;
	border-radius : 5px;
	background: #00498d;
	color : #FFF!important;
	height : 40px;
	line-height : 40px;
	text-align : center;
	margin-bottom : 20px;
	cursor : pointer;
}

.rca-form a.btn:hover {
	background: #3079ad;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner .rd-navbar-panel {
	display : none;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-outer {
	border-radius : 0px;
}

.mob-slider {
	display : none;
}

p.socicos img {
	display : inline-block!important;
	margin : 0 6px!important;
	width : 36px;
	height : auto;
}

p.socicos {
	margin-bottom : 0px;
}

.prods-list {
	text-align : center;
	vertical-align : top;
}

.cont-list {
	text-align : left;
	vertical-align : top;
}

.prods-list-item {
	display : inline-block;
	max-width : 30%;
	text-align : center;
	vertical-align : top;
	margin-bottom : 30px;
	padding : 0px 10px;
}

.cont-list-item-one {
	display : inline-block;
	max-width : 65%;
	width : 60%;
	text-align : left;
	vertical-align : top;
	margin-bottom : 30px;
	padding : 0px 10px;
}

.cont-list-item-two {
	display : inline-block;
	max-width : 37%;
	width : 37%;
	text-align : center;
	vertical-align : top;
	margin-bottom : 30px;
	padding : 0px;
}

.prods-list-item img {
	display : block;
	margin : 0px 0px 5px!important;
	border-radius : 5px;
	transition: .2s ease;
}

.prods-list-item:hover img {
	transition: .2s ease;
	opacity : 0.8;
}

.rca-form h4 {
	margin : 0 0 15px!important;
}

.rd-navbar-buttons a.btn-inline {
	border-radius : 5px;
}

.mob-menu-btn, .not-pc {
	display : none;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px) {
	body.home #main-slider {
		display : none;
	}
	body.home .mob-slider #main-slider, body.home .mob-slider {
		display : block;
	}
	#main-slider .slide, #main-slider img {
	  height: auto!important;
	}
	.prods-list-item {
		max-width : 48%;
		margin-bottom : 10px;
		padding : 0px 1px;
	}
	.cont-list-item-one {
		max-width : 100%;
		width : 100%;
	}

	.cont-list-item-two {
		max-width : 100%;
		width : 100%;
	}
	.rd-navbar-fixed .only-fixed a.butt {
	  width : 90%;
	  height : 30px;
	  line-height : 30px;
	  text-align : center;
	  font-size : 14px;
	  border-radius : 5px;
	  background: #ff7a31;
	  color: #fff;
	  margin: 10px 0 0 10px;
	  display : block;
	  padding : 0px;
	}
	#sidebar, #mob-sidebar #sidebar .header {
		display : none;
	}	
	#mob-sidebar #sidebar, .not-pc, .mob-menu-btn {
		display : block;
	}
	.rd-navbar-nav-wrap .socicos {
		text-align : center;
	}
	a.phone-link {
		display : block;
		text-align : center;
		color : #00498d;
		font-size : 18px;
		font-weight : bold;
		margin-bottom : 20px;
		margin-top : 15px;
		text-decoration : none;
	}
	.rd-navbar-fixed .rd-navbar-nav {
		height: auto;
	}	
	a.phone-top {
	  position: absolute;
	  top: 14px;
	  right: 46px;
	  z-index: 100;
	}	
	a.wa-top img, a.phone-top img {
	  width: 28px;
	  height: auto;
	}	
	a.wa-top {
	  position: absolute;
	  top: 14px;
	  right: 10px;
	  z-index: 100;
	}	
	
}










