* {
  margin: 0;
  padding: 0;
  font-family: "Lato";
  background-color: white; }

body {
  background-color: white;
  color: #404040;
  width: 100%; }

a {
  text-decoration: none;
  color: inherit; }

ul {
  list-style-type: none; }

.container {
  width: 80%;
  margin-right: auto;
  margin-left: auto; }

.container-fluid {
  width: 100%; }

.p-1 {
  padding: 1rem; }

.p-2 {
  padding: 2rem; }

.p-3 {
  padding: 3rem; }

.pt-1 {
  padding-top: 1rem; }

.pt-2 {
  padding-top: 2rem; }

.pt-3 {
  padding-top: 3rem; }

.pb-1 {
  padding-bottom: 1rem; }

.pb-2 {
  padding-bottom: 2rem; }

.pb-3 {
  padding-bottom: 3rem; }

.mt-1 {
  margin-top: 1rem; }

.mt-2 {
  margin-top: 2rem; }

.mt-3 {
  margin-top: 3rem; }

.mb-1 {
  margin-bottom: 1rem; }

.mb-2 {
  margin-bottom: 2rem; }

.mb-3 {
  margin-bottom: 3rem; }

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

.margin-auto {
  margin: auto; }

.margin-center {
  margin-left: auto;
  margin-right: auto; }

.nav {
  position: relative;
  padding: 0rem 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 1rem; }
  .nav .nav-items-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .nav .nav-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
  .nav .nav-item {
    cursor: pointer;
    padding: 1rem;
    color: #8d969d;
    position: relative; }
    .nav .nav-item:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      border-bottom: 2px solid var(--color); }
    .nav .nav-item:hover {
      color: var(--color); }
      .nav .nav-item:hover:after {
        content: '';
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0; }
  .nav .nav-bar-brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .nav .nav-bar-brand .brand {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      margin-top: auto;
      margin-bottom: auto; }

@media screen and (max-width: 996px) {
  .brand {
    max-width: 80%; }
  .nav {
    margin: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .nav-bar-brand {
    z-index: 2;
    margin: 0;
    margin-right: 0px;
    padding: 1rem 2rem; }
  .nav-items-container {
    z-index: 1;
    background-color: #d4d4d4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    top: -350%;
    width: 100%;
    margin-left: 0; }
    .nav-items-container.is-active {
      top: 100%;
      -webkit-transition: all .7s ease;
      -o-transition: all .7s ease;
      transition: all .7s ease; }
  .nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 2rem; }
  .nav-burger {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 32px;
    height: 32px;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center; }
    .nav-burger div {
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      z-index: 1;
      width: 100%;
      height: 2px;
      background-color: black; }
    .nav-burger.is-active div:nth-child(1) {
      -webkit-transform: rotate(-45deg) translate(-9px, 6px);
          -ms-transform: rotate(-45deg) translate(-9px, 6px);
           -o-transform: rotate(-45deg) translate(-9px, 6px);
              transform: rotate(-45deg) translate(-9px, 6px); }
    .nav-burger.is-active div:nth-child(2) {
      opacity: 0; }
    .nav-burger.is-active div:nth-child(3) {
      -webkit-transform: rotate(45deg) translate(-8px, -7px);
          -ms-transform: rotate(45deg) translate(-8px, -7px);
           -o-transform: rotate(45deg) translate(-8px, -7px);
              transform: rotate(45deg) translate(-8px, -7px); } }

@media screen and (min-width: 996.1px) {
  .nav-items-container {
    position: static;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .nav-start {
    margin-right: auto; }
  .nav-end {
    margin-left: auto; }
  .nav-burger {
    display: none; }
  .dropdown {
    display: none; }
  .has-dropdown:hover > .dropdown {
    display: block;
    position: absolute;
    margin-top: 1rem;
    margin-left: -1rem;
    background-color: #d4d4d4;
    width: 150px; }
  nav {
    position: relative; } }

footer {
  background-color: #3f444a;
  padding: 10px; }

footer * {
  background: rgba(0, 0, 0, 0);
  color: #a0a8b1; }

#footer > div {
  margin-bottom: 2rem;
  padding: 1rem; }

footer li {
  list-style: circle;
  margin-left: 1rem;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s; }
  footer li:hover {
    cursor: pointer;
    margin-left: 2rem;
    color: #fff; }

.footer-h {
  color: #fff;
  font-size: 0.8rem;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem; }

.footer-text {
  color: #a0a8b1;
  font-size: 0.8rem;
  line-height: 1.5rem; }

.footer-h::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  background: #6db645;
  content: ''; }

@media screen and (max-width: 600px) {
  #footer {
    display: grid;
    grid-template-columns: 1fr; } }

@media screen and (min-width: 600.1px) {
  #footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; } }

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #eee; }
  .card:hover {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
  .card img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover; }
  .card .title {
    font-size: 18px;
    font-weight: 300;
    color: #080909;
    position: relative; }
    .card .title:after {
      content: '';
      width: 50px;
      background-color: #eee;
      height: 10px;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: 0; }
  .card .small-text {
    color: #ababab;
    font-size: 14px;
    padding-left: 0.8rem; }

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 2rem; }

#images-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: .5rem;
  grid-auto-flow: dense; }
  #images-container .image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
    #images-container .image:hover {
      cursor: pointer; }

/* .modal-content {
    display: block;
    width: 80%;
    max-width: 700px;
} */
.modal-content {
  -webkit-animation-name: zoom;
       -o-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
       -o-animation-duration: 0.6s;
          animation-duration: 0.6s; }

#image-viewer {
  z-index: 10;
  display: none;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9); }

#image-viewer .close {
  background-color: transparent;
  position: fixed;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 3; }

#image-viewer .close:hover,
#image-viewer .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

#image-viewer .right-arrow,
#image-viewer .left-arrow {
  position: fixed;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer; }

#image-viewer .right-arrow:hover,
#image-viewer .left-arrow:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

#image-viewer .right-arrow {
  left: 90%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent; }

#image-viewer .left-arrow {
  right: 90%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent; }

@media screen and (min-width: 996.1px) {
  #images-container .img:first-child {
    grid-column-start: span 2;
    grid-row-start: span 2; }
  #images-container .img:nth-child(2n+3) {
    grid-row-start: span 2; } }

@media screen and (max-width: 768px) {
  #images-container {
    grid-template-columns: auto auto; }
  #images-container .img:first-child {
    grid-column-start: span 2;
    grid-row-start: span 2; }
  #images-container .img:nth-child(2n+2) {
    grid-column-start: span 2;
    grid-row-start: span 2; } }

@media screen and (max-width: 480px) {
  #images-container {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    display: block; }
  #images-container .img {
    margin-bottom: .5rem; } }

footer {
  background-color: #3f444a;
  padding: 10px; }

footer * {
  background: rgba(0, 0, 0, 0);
  color: #a0a8b1; }

#footer > div {
  margin-bottom: 2rem;
  padding: 1rem; }

footer li {
  list-style: circle;
  margin-left: 1rem;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s; }
  footer li:hover {
    cursor: pointer;
    margin-left: 2rem;
    color: #fff; }

.footer-h {
  color: #fff;
  font-size: 0.8rem;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem; }

.footer-text {
  color: #a0a8b1;
  font-size: 0.8rem;
  line-height: 1.5rem; }

.footer-h::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  background: #6db645;
  content: ''; }

@media screen and (max-width: 600px) {
  #footer {
    display: grid;
    grid-template-columns: 1fr; } }

@media screen and (min-width: 600.1px) {
  #footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; } }

.services {
  display: grid;
  background-color: #ecf0f1;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 10px;
  background-color: #373c40; }

.about div {
  padding: 1rem; }

.about p, .about li {
  font-size: 14px; }

.about p {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.about li {
  margin-left: 1rem; }

.about ul {
  list-style-type: disc;
  width: 100%; }

.recruting div {
  padding: 1rem; }

.recruting p, .recruting li {
  font-size: 14px; }

.recruting p {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.recruting li {
  margin-left: 1rem; }

.recruting ul {
  list-style-type: disc;
  width: 100%; }

.recruting img {
  width: 100%; }

.service-text {
  padding-bottom: 4rem; }
  .service-text ul {
    list-style-type: disc;
    margin-left: 2rem; }
  .service-text h1 {
    margin-top: 3rem;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 3rem; }
  .service-text h2 {
    text-rendering: optimizelegibility;
    font-weight: 300;
    font-size: 17.5px;
    margin-top: 3rem;
    margin-bottom: 1.5rem; }
  .service-text p {
    margin-bottom: 1rem; }

.service-item {
  padding: 0.3rem; }
  .service-item:hover {
    background-color: #eee; }
  .service-item:hover a {
    background-color: #eee; }
  .service-item:hover li {
    background-color: #eee; }

@media screen and (max-width: 996px) {
  .about {
    display: grid;
    grid-template-columns: 1fr; }
    .about img {
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .facility-managment {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; } }

.facility-managment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ecf0f1; }
  .facility-managment p {
    margin-bottom: 1rem; }
  .facility-managment * {
    background-color: #ecf0f1; }

.facility-managment-container {
  background-color: #ecf0f1; }

@media screen and (min-width: 996.1px) {
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr; }
  .about img {
    height: 80%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .service-text {
    width: 60%; }
  .facility-managment {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .facility-managment :first-child {
      margin-right: 1rem; } }

.alicerce-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

html {
  scroll-behavior: smooth; }

.service-div p {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 2rem; }

.btn {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #5a6369; }
  .btn:hover {
    color: white;
    background-color: #5a6369; }

.btn-primary {
  color: white;
  background-color: #373c40; }

.text-light {
  color: #929292;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center; }

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

@media screen and (max-width: 600px) {
  #index-alicerces {
    display: grid;
    grid-template-columns: 1;
    grid-gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem; } }

@media screen and (min-width: 600.1px) {
  #index-alicerces {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    grid-gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem; } }

#services > *:hover {
  cursor: pointer;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
       -o-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s; }

@media screen and (max-width: 600px) {
  #services {
    display: grid;
    grid-template-columns: 1fr; } }

@media screen and (min-width: 600.1px) {
  #services {
    display: grid;
    grid-template-columns: 1fr 1fr; } }

body {
  overflow-x: hidden; }

.homepage-icons {
  fill: #6db645;
  color: #6db645;
  border-color: #6db645;
  font-size: 50px; }
