body {
  position: relative;
  background-color: white;
  color: black;
  /* font-family: 'Nunito', sans-serif; */
  font-family: 'Montserrat', sans-serif;
  /* font-family: 'Quicksand', sans-serif; */
  /* font-family: 'Cutive Mono', monospace; */
}

.bg-cust-menu {
  background: rgba(255, 255, 255, 0.97);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.bg-cust-ribbon {
  background: rgba(125, 125, 125, .3);
  font-family: 'Nunito', sans-serif;
}

.container {
  max-width: 1400px;
}

.center-cropped {
  object-fit: cover; /* Do not scale the image */
  object-position: center; /* Center the image within the element */
  height: 350px;
  width: 100%;
}

.thumbnail {
    position: relative;
}

.caption {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.text-cm {
  font-family: 'Cutive Mono', monospace;
  font-weight: 800;
}

.r20-w2 {
  border-radius: 20px !important;
  border-width: 2px !important;
}

.r15-w2 {
  border-radius: 15px !important;
  border-width: 2px !important;
}

.r10-w2 {
  border-radius: 10px !important;
  border-width: 2px !important;
}

.font-primary {
  color: #007bff;
}

.font-success {
  color: #28a745;
}

.font-info {
  color: #17a2b8;
}

.font-warning {
  color: #ffc107
}

/* temp */

.op-7 {
  opacity: 0.7;
}

.filler {
  height: 700px;
}

.space {
  height: 15px;
}

.space2 {
  height: 30px;
}

.space3 {
  height: 45px;
}

.space4 {
  height: 60px;
}

.space5 {
  height: 75px;
}

.space6 {
  height: 90px;
}

.space7 {
  height: 105px;
}

.space8 {
  height: 120px;
}

.space9 {
  height: 135px;
}

.space10 {
  height: 150px;
}
.line {
  height: 1px;
  margin-top: 3px;
  margin-bottom: 3px;
  background-color: #505050;
}

/* hoover */

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  border-bottom: 1px solid #FFF;
  border-top: 1px solid #FFF;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.6);
  -webkit-filter: brightness(0.6);
}

.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
