/* Fonts
-------------------------------------------------- */



/* Default
-------------------------------------------------- */

body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #000;
  background-color: #000;
}

strong {
  font-weight: 700;
}

/* Forms
-------------------------------------------------- */

.form-field {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  color: #000;
  background-color: #F0F7F7;
}
.form-field::placeholder {
  color: #888888;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.form-textarea {
  padding: 10px;
  height: 170px;
}
label {
  font-family: 'Barlow', sans-serif;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
/* Button
-------------------------------------------------- */

.button {
  height: 60px;
  padding: 0 20px;
  background-color: #ffee00;
  font-size: 24px;
  color: #88161F;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ffee00;
  transition: all 0.3s ease;
}
.button:hover{
  background-color: transparent;
}.button-red {
  background-color: #85161F;
  color: #fff;
  font-size: 14px;
  height: 50px;
  border: 1px solid #85161F;
  transition: all 0.3s ease;
}
.button-red:hover {
  background-color: transparent;
}
@media(min-width:550px) {
  .button-red {
    font-size: 12px;
    height: 40px;
  }
}

.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 {
  display: flex;
  flex-wrap: wrap;
}

.list-item {
  display: flex; 
}

.list-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.list-content-top {
  flex: 1 0 auto;
}

.list .slick-track {
  display: flex !important;
}

.list .slick-slide {
  height: inherit !important;
}

/* Extras
-------------------------------------------------- */

.line {
  width: 100%;
  height: 1px;
  background-color: #F2EDE6;
}
p + p {
  margin-top: 20px;
}

/* Alert
-------------------------------------------------- */

.alert {
  font-family: 'Open Sans', sans-serif;
  display: none;
  cursor: pointer;
}

.alert-error {
  background-color: #a51313;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}

.alert-success {
  background-color: #008403;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}