/*
@font-face {
    font-family: "Geometric";
    src: url("../_fonts/geometric231-lt.ttf");
    font-weight: normal;
    font-style: normal;
}
*/
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-underline {
  text-decoration: underline;
}

.text-line-through {
  text-decoration: line-through;
}

.text-white {
  color: #FFF;
}

.text-white-alpha {
  color: rgba(52, 52, 52, 0.5);
}

.text-grey {
  color: #707070;
}

.text-black {
  color: #343434;
}

.text-black-alpha {
  color: #343434;
}

.text-extrabold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-extralight {
  font-weight: 200;
}

.text-thin {
  font-weight: 100;
}

.text-xl {
  font-size: 18pt;
  line-height: 32px;
}

.text-lg {
  font-size: 13.5pt;
  line-height: 24px;
}

.text-md {
  font-size: 12pt;
}

.text-sm {
  font-size: 9pt;
  line-height: 18px;
}

.black-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.white-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

/*
.bg-white {
    background-color: $white;
}
.bg-black {
    background-color: $black;
}
.bg-grey {
    background-color: $grey;
}
.bg-light-grey {
    background-color: $light-grey;
}
.bg-ultra-light-grey {
    background-color: $ultra-light-grey;
}
*/
.bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.grid {
  margin-top: 30px;
  max-width: 100%;
  transition: height 0.3s ease;
}

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */
.grid-item {
  position: relative;
  overflow: hidden;
  float: left;
  width: 33.3%;
  height: auto;
  padding: 0 10px;
  padding-top: 20px;
}
@media only screen and (max-width: 800px) {
  .grid-item {
    width: 50%;
    padding: 0 5px;
    padding-top: 10px;
  }
}
.grid-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.grid-item:hover::before {
  animation: shine 0.75s;
  -moz-animation: shine 0.75s;
  -webkit-animation: shine 0.75s;
}
.grid-item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
.header.default .left-part .logo .black {
  display: none;
}
.header.default .left-part .logo .white {
  display: block;
}
.header.switched-header .left-part .logo .black {
  display: block;
}
.header.switched-header .left-part .logo .white {
  display: none;
}
.header .left-part .logo img {
  height: 37px;
}
@media only screen and (max-width: 800px) {
  .header .right-part .main-nav ul {
    margin-top: 30px;
  }
}
.header .right-part .main-nav .has-dropdown {
  position: relative;
}
.header .right-part .main-nav .has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
}
.header .right-part .main-nav .dropdown {
  position: absolute;
  left: -50%;
  background-color: #FFF;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
  -moz-box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
@media only screen and (max-width: 800px) {
  .header .right-part .main-nav .dropdown {
    position: relative;
    left: unset;
    margin-top: 0;
    margin-left: 30px;
    background-color: unset;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
  }
}
.header .right-part .main-nav .dropdown li {
  margin-left: 0;
  padding: 0 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
@media only screen and (max-width: 800px) {
  .header .right-part .main-nav .dropdown li {
    padding: 0;
  }
}
.header .right-part .main-nav .dropdown li:hover {
  background-color: rgba(52, 52, 52, 0.1);
}
@media only screen and (max-width: 800px) {
  .header .right-part .main-nav .dropdown li:hover {
    background-color: unset;
  }
}
.header .right-part .main-nav .dropdown li a {
  width: 100%;
  color: #343434;
}
.header .toggle-mobile-but .mobile-but {
  top: -28px;
}
.header .toggle-mobile-but.active .mobile-but {
  top: -60px;
}

.block-tabs li {
  border: 0;
}
@media only screen and (max-width: 800px) {
  .block-tabs li {
    font-size: 7pt;
  }
}
.block-tabs li.active {
  display: inline-flex;
  align-items: center;
  border: 0;
  background-color: #b0988b;
}

.slider-apoios {
  z-index: 99;
  position: absolute;
  bottom: 120px;
  right: 15px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .slider-apoios img {
    height: 250px;
  }
}
.slider-apoios:hover, .slider-apoios:active, .slider-apoios:focus {
  opacity: 0.5;
}
