/* @import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400&display=swap"); */
@import "size.css";

.mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic {
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-drawer .mdc-list-item--activated {
  color: rgb(0 117 160);
}

.color-primary {
  color: var(--theme-primary) !important;
}

.color-primary-bg {
  background-color: var(--theme-primary) !important;
}

.mdc-theme--white {
  color: white;
}

.mdc-theme--white-bg {
  background-color: white;
}

html {
  font-size: 16px;
}

.ui.text.container {
  font-size: 14px;
}

body {
  background-color: var(--theme-background);
  color: var(--theme-text, #171717);
  /* overflow: hidden; */
  margin: 0;
}

.app-title {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.7rem;
  border-radius: 6px;
  padding-right: 12px;
  padding-left: 12px;
  line-height: var(--mdc-typography-headline6-line-height, 2rem);
  user-select: none;
  cursor: pointer;
}

.app-title span:last-child {
  /* color: rgb(0 0 0 / 0.5); */
  /* color: var(--theme-primary); */
  color: var(--theme-primary);
}

.app-main-content {
  overflow: auto;
  height: 100vh;
}

.gn-tl {
  position: absolute;
  max-width: 220px;
  box-shadow: 0 1px 4px -2px #434a4e;
  z-index: 1000;
  background: #000000a9;
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}

.gn-tl span {
  color: #cccccc;
}

.button-icon--navbar {
  padding: 8px;
  font-size: 32px !important;
}

.name-app {
  text-align: center;
  font-size: 1.5rem;
}

.name-app span:last-child {
  color: var(--theme-primary);
}

.mdc-tab-hidden {
  transition: opacity 0.5s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.tab-content--active {
  opacity: 1;
  height: auto;
}

.marked-required::after {
  content: "\002A";
  color: red;
}

/* Util */

.w-100 {
  width: 100%;
}

.txt-a-c {
  text-align: center;
}

.txt-a-r {
  text-align: right;
}

.space-w {
  /* width: 6px; */
  padding: 3px;
}

.space-h {
  padding: 3px;
  /* height: 6px; */
}

.b-radius-32 {
  border-radius: 32px;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.back-home {
  height: 100vh;
  max-height: 595px;
  display: flex;
  background-image: url(../img/background-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.back-home-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 59.375rem;
  display: flex;
  padding: 20px;
}

.back-home-content > div {
  margin: auto 0;
}

.home-title {
  color: white;
  font-size: 65px;
}

.home-p {
  color: white;
  font-size: 35px;
}

.home-bg--panel {
  width: 100%;
  height: 100vh;
  max-height: 595px;
  background: rgb(0 0 0 / 34%);
  background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 70%) 100%);
  top: 0px;
  position: absolute;
}

.column-contact img {
  width: 420px;
}

.column-contact h1 {
  font-size: 26px;
}

@media (max-width: 800px) {
  .home-title {
    font-size: 45px;
  }

  .home-p {
    font-size: 30px;
  }

  .column-contact img {
    width: 350px;
  }

  .column-contact h1 {
    font-size: 22px;
  }
}

@media (max-width: 540px) {
  .home-title {
    font-size: 35px;
  }

  .home-p {
    font-size: 24px;
  }

  .column-contact img {
    width: 300px;
  }

  .column-contact h1 {
    font-size: 18px;
  }
}
