/* Fonts
-------------------------------------------------- */



/* Default
-------------------------------------------------- */

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #ffffff;
}

/* Forms
-------------------------------------------------- */

.form-field {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  color: #7A7A7A;
  background-color: #FFFFFF;
  border: 1px #fff solid;
  border-radius: 5px;
  margin: 5px 0;
}
::placeholder{
  color: #7A7A7A;
}

.form-textarea {
  padding: 10px;
  height: 170px;
}

/* Button
-------------------------------------------------- */

.button {
  height: 40px;
  padding: 0 40px;
  background-color: #3A7D3D;
  font-size: 16px;
  color:#fff;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}
.button:hover{
  background-color: #155C1F;
}

.button-full {
  width: 100%;
}

/* Image
-------------------------------------------------- */

.image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-center {
  margin: 0 auto;
  display: block;
}

/* Text
-------------------------------------------------- */

.text-bold {
  font-weight: bold;
}

/* Table
-------------------------------------------------- */

.table {
  width: 100%;
}

.table tr {
  border: 1px #ddd solid;
}

.table td, .table th {
  padding: 10px;
}

/* Pagination
-------------------------------------------------- */

.pagination a {
  background-color: #01588a;
  color: #fff;
  padding: 8px 12px;
}

.pagination span {
  padding: 8px 12px;
}

/* Map
-------------------------------------------------- */

.map {
  width: 100%;
  height: 350px;
}

/* Square
-------------------------------------------------- */

.square{
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.square:before{
  content: "";
  display: block;
  padding-top: 100%;
}

.square:hover .square-content{
  display: block;
}

.square-detail {
  content: "";
  margin-left: -10px;
  margin-top: -10px;
  width: 45px;
  height: 45px;
  background-color: #ec6707;
  position: absolute;
  z-index: 2;
}

.square-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
}

.square-content .button {
  background-color: #000;
}

.square-content div {
  display: table;
  width: 100%;
  height: 100%;
}

.square-content .divi {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

/* Selection
-------------------------------------------------- */

::selection {
  background: #004f82;
  color: #fff;
}

::-moz-selection {
  background: #004f82;
  color: #fff;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Responsive Emped
-------------------------------------------------- */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
/* List 
-------------------------------------------------- */
.list .slick-track {
  display: flex !important;
}

.list .slick-slide {
  height: inherit !important;
}

/* Extras
-------------------------------------------------- */

.line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.line-gray{
  width: 100%;
  height: 1px;
  background-color: #E5E6E6;
}