/**
 * @file
 * Subtheme specific CSS.
 */

html {
  font-size: 1vw;
}

body {
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.img-full {
  width: 100%;
  height: auto;
}

.messages .placeholder {
  background-color: #CCC;
  color: #FFF;
}

@media (min-width:992px) and (max-width:1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

.home-section .contextual-trigger {
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -khtml-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -ms-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -o-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}
.home-section:hover .contextual-trigger {
  opacity: 1;
}
.home-section .contextual-trigger .contextual-edit {
  position: absolute;
  left: 20px;
}

.separator {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #CCC;
  margin-bottom: 1rem;
}

.separator::after {
  content: '';
  display: block;
  background: var(--bs-primary);
  width: 20%;
  height: 1px;
  position: relative;
  margin-top: -1px;
  z-index: 1;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -khtml-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -ms-transition: all .35s cubic-bezier(.645,.045,.355,1);
  -o-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.separator.style2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #FFF;
}

.card-protfolio:hover .separator::after {
  width: 50%;
}

.separator.style1 {
  width: 25rem;
  margin: 2rem auto 0 auto;
}
.separator.style1::after {
  position: absolute;
  width: 20%;
  bottom: 0;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  height: 5px;
  background-color: #FFF;
}