/* GENERAL */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', Arial, sans-serif;
}

.text-black a {
  color: inherit;
}

.no-underline {
  text-decoration: none !important;
}

.bg-black {
  background-color: #000;
}

.bg-color {
  background-color: #20C997;
}

.bg-color-pattern {
  background-color: #20C997;
  background-image: radial-gradient(#000 1px, transparent 0);
  background-size: 30px 30px;
  background-attachment: fixed;
}

.bg-black-pattern {
  background: #000;
  background-image: radial-gradient(#555 1px, transparent 0);
  background-size: 30px 30px;
  background-attachment: fixed;
}

.bg-white-pattern {
  background: whitesmoke;
  background-image: radial-gradient(#555 1px, transparent 0);
  background-size: 30px 30px; 
  background-attachment: fixed;
}

.btn-outline-black {
  background-color: whitesmoke;
  border-color: black;
  color: black;
}

.btn-outline-black:hover {
  background-color: black;
  border-color: black;
  color: white;
}

.btn-black {
  background-color: black;
  color: white;
}

.btn-black:hover {
  background-color: black;
  color: white;
}

.btn-white {
  background-color: whitesmoke;
  color: black;
}

.btn-white:hover {
  background-color: whitesmoke;
  color: black;
}

.btn-group-xs > .btn, .btn-xs {
  padding: .4rem;
  font-size: .875rem;
  line-height: .5;
  border-radius: .2rem;
}

.img-round {
  border-radius: 50%;
}

.text-body-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFF;
  padding-bottom: 0.5em;
}

.text-body-subtitle {
  font-size: 0.8em;
  color: #FFF;
}

.text-body-footer {
  font-size: 0.7em;
}

.text-body-footer a {
  color: inherit;
}

.text-section-title {
  border-top: 3px solid #000;
  padding-top: 4px;
}

.masthead {
  height: 100vh;
  min-height: 500px;
}

.cover-main-text {
  font-size: 2.4em;
  color: #FFF;
  line-height: 1.4em;
  }

@media (min-width: 768px) {
  .cover-main-text {
    font-size: 5vw;
  }
}

@media (min-width: 1200px) {
  .cover-main-text {
    font-size: 5em;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.border-dark {
  border: 1px solid #000000 !important; 
}

/* RECAPTCHA BADGE */

.grecaptcha-badge {
  visibility: hidden;
}

/* NAVIGATION */

.nav-masthead .nav-link {
  font-size: 0.8em;
  padding: .25rem 0;
  color: rgba(255, 255, 255, .7);
  background-color: transparent;
  border-bottom: .15rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .7);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #FFF;
  border-bottom-color: #FFF;
}

/* MENU */

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: whitesmoke;
  overflow-y: hidden;
  transition: 0.4s;
}

.overlay a {
  text-decoration: none;
  font-size: 2em;
  color: #000;
  line-height: 2em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .overlay a {
    font-size: 4vw;
  }
}

@media (min-width: 1200px) {
  .overlay a {
    font-size: 4em;
    line-height: 1.5em;
  }
}

/* PRODUCTS */

.grid-product:hover {
  background: #000;
  background-image: radial-gradient(#555 1px, transparent 0);
  background-size: 30px 30px;
  color: #FFF;
}

.grid-product:hover .btn-black {
  background-color: #FFF;
  color: #000;
}


/* CONTACT FORM */

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #000;
  background-image: none;
  padding-right: 0.75rem;
}

.form-control.is-valid, .was-validated .form-control:valid {
  border-color: #BBB;
  background-image: none;
}

.form-control {
  border-color: #BBB;
}

.form-control:focus {
  border-color: inherit !important;
  box-shadow: none !important;
}

.invalid-feedback {
  color: #000;
  font-size: 0.75em;
  font-weight: bold;
}

/* DataTable */

.dataTables_filter {
  float: left !important;
}

table.dataTable tbody td {
  vertical-align: middle;
}