@import url("marbust-framework.css");
/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&display=swap");
@font-face {
  font-family: Helvetica;
  src: url(fonts/Helvetica.otf);
}
body {
  font-family: "Baloo Chettan 2", cursive;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: Helvetica, sans-serif;
}

body {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/banner/banner.jpg);
}
body *, body {
  box-sizing: border-box;
}
body main {
  background: white;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
  min-height: 100vh;
}
body main .page-section {
  padding: 64px 10% 30px 10%;
}
@media (max-width: 1000px) {
  body main .page-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
body main .page-section h1 {
  color: #5AB301;
}
body main .page-section .subtittle {
  color: #1F4104;
}
body main .page-section p {
  color: #4A4A50;
}
body main .page-section .gray {
  color: #4A4A50;
}
body main .page-section:nth-of-type(even) {
  background: #f8f8f8;
}

header {
  /*position: fixed;
  top: 0;
  width: 100%;
  min-width: 300px;
  max-width: 1400px;
  margin: 0px auto;*/
  background: black;
  border-bottom: 3px solid #1F4104;
}
header .contacts-bar {
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s all;
}
@media (max-width: 1000px) {
  header .contacts-bar {
    padding: 7.5px 10px;
  }
}
header .contacts-bar .left {
  color: white;
}
header .contacts-bar .left a {
  text-decoration: none;
  padding: 0px 5px;
  color: white;
  transition: 0.5s all;
  font-weight: bold;
}
header .contacts-bar .left a:hover {
  color: #e6e6e6;
}
@media (max-width: 1000px) {
  header .contacts-bar .left a span {
    display: none;
  }
}
header .contacts-bar .right {
  display: flex;
  justify-content: center;
}
header .contacts-bar .right a {
  padding: 10px;
  margin: 0px 5px;
  background: white;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: black;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.5s all;
}
header .contacts-bar .right a:hover {
  background: #5AB301;
  color: white;
  transform: scale(1.1);
}
@media (max-width: 1000px) {
  header .contacts-bar .right a {
    transform: scale(0.8);
    margin: 0px 1px;
  }
}

.menu-bar {
  display: flex;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  justify-content: space-between;
  background: white;
  position: sticky;
  top: 0px;
  z-index: 5;
  align-items: center;
  padding: 0px 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
}
.menu-bar .logo-ctnr {
  display: flex;
  align-content: center;
  transition: 0.3s;
}
.menu-bar .logo-ctnr:hover {
  transform: scale(1.05);
}
.menu-bar .logo-ctnr img {
  width: 200px;
  pointer-events: none;
}
.menu-bar #menu-btn {
  padding: 10px;
  color: #1F4104;
  font-size: 25px;
  cursor: pointer;
  transition: 1s;
}
.menu-bar #menu-btn:hover {
  color: black;
}
@media (max-width: 1000px) {
  .menu-bar nav,
.menu-bar .system-btn {
    display: none;
  }
}
@media (min-width: 1000px) {
  .menu-bar #menu-btn {
    display: none;
  }
  .menu-bar nav #close-btn {
    display: none;
  }
  .menu-bar nav ul {
    display: flex;
    list-style: none;
  }
  .menu-bar nav ul li:nth-last-child(1) {
    display: none;
  }
  .menu-bar nav ul li a {
    display: block;
    padding: 10px 10px;
    margin: 0px 5px;
    /*height: 64px;*/
    text-decoration: none;
    transition: 0.5s all;
    font-weight: bold;
    color: #1F4104;
    border-bottom: 3px solid white;
  }
  .menu-bar nav ul li a:hover {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  .menu-bar nav ul li .link-active {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  .menu-bar .system-btn {
    display: block;
    padding: 10px 20px;
    background: black;
    transition: 0.3s all;
    text-decoration: none;
    color: white;
  }
  .menu-bar .system-btn:hover {
    background: #5AB301;
  }
}
@media (max-width: 1000px) {
  .menu-bar .active-menu {
    display: flex;
    position: fixed;
    flex-wrap: wrap;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    background: white;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
    overflow-y: auto;
    animation: 0.5s appearmenu ease;
  }
  .menu-bar .active-menu #close-btn {
    display: block;
    font-size: 30px;
    margin-left: auto;
    margin-right: 10px;
    padding: 10px;
    color: black;
    transition: 0.5s all;
    cursor: pointer;
  }
  .menu-bar .active-menu #close-btn:hover {
    color: #1F4104;
    transform: translateX(-15px);
  }
  .menu-bar .active-menu ul {
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    align-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
  }
  .menu-bar .active-menu ul li {
    width: 100%;
  }
  .menu-bar .active-menu ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.5s all;
    color: #1F4104;
    border-bottom: 3px solid white;
  }
  .menu-bar .active-menu ul li a:hover {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  .menu-bar .active-menu ul li .system-btn {
    display: block;
    padding: 10px 20px;
    background: black;
    transition: 0.3s all;
    text-decoration: none;
    color: white;
    width: 90%;
    margin: 10px auto;
    border-bottom: 0px;
  }
  .menu-bar .active-menu ul li .system-btn:hover {
    border-bottom: 0px;
    background: #5AB301;
    color: white;
  }
  .menu-bar .active-menu ul li .link-active {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  @keyframes appearmenu {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0px);
    }
  }
  .menu-bar .desactivate-menu {
    display: flex;
    position: fixed;
    flex-wrap: wrap;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    background: white;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
    overflow-y: auto;
    animation: 0.5s dappearmenu ease;
    transform: translateX(-100%);
  }
  .menu-bar .desactivate-menu #close-btn {
    display: block;
    font-size: 30px;
    margin-left: auto;
    margin-right: 10px;
    padding: 10px;
    color: black;
    transition: 0.5s all;
    cursor: pointer;
  }
  .menu-bar .desactivate-menu #close-btn:hover {
    color: #1F4104;
    transform: translateX(-15px);
  }
  .menu-bar .desactivate-menu ul {
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    align-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
  }
  .menu-bar .desactivate-menu ul li {
    width: 100%;
  }
  .menu-bar .desactivate-menu ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.5s all;
    color: #1F4104;
    border-bottom: 3px solid white;
  }
  .menu-bar .desactivate-menu ul li a:hover {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  .menu-bar .desactivate-menu ul li .system-btn {
    display: block;
    padding: 10px 20px;
    background: black;
    transition: 0.3s all;
    text-decoration: none;
    color: white;
    width: 90%;
    margin: 10px auto;
    border-bottom: 0px;
  }
  .menu-bar .desactivate-menu ul li .system-btn:hover {
    border-bottom: 0px;
    background: #5AB301;
    color: white;
  }
  .menu-bar .desactivate-menu ul li .link-active {
    border-bottom: 3px solid #5AB301;
    color: black;
  }
  @keyframes dappearmenu {
    from {
      transform: translateX(0px);
    }
    to {
      transform: translateX(-100%);
    }
  }
}

.banner {
  min-height: calc(100vh - 100px);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/banner/banner.jpg);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: white;
  padding: 20px 10%;
}
@media (max-width: 1000px) {
  .banner {
    min-height: calc(100vh - 100px);
  }
}
.banner div,
.banner p,
.banner h1 {
  width: 100%;
  text-align: center;
}
.banner .logo-container {
  margin-bottom: 15px;
}
.banner .logo-container img {
  width: 80%;
  max-width: 200px;
  margin: 0px auto;
  display: block;
  pointer-events: none;
}
.banner .scroll-ctnr {
  margin-top: 15px;
}
.banner .scroll-ctnr .scroll-down {
  display: block;
  width: 30px;
  height: 50px;
  border-radius: 30px;
  border: 2px solid white;
  margin: 5px auto;
  transition: 0.3s;
}
.banner .scroll-ctnr .scroll-down:hover {
  background: rgba(0, 0, 0, 0.15);
}
.banner .scroll-ctnr .scroll-down span {
  width: 4px;
  height: 15px;
  background: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 8px;
  transition: 2s all;
  animation: 2s ease infinite scrolldownanimation;
}
@keyframes scrolldownanimation {
  0% {
    top: 8px;
  }
  50% {
    top: 30px;
    opacity: 0.5;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

.not-found {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/banner/banner.jpg);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: white;
  padding: 20px 10%;
  min-height: 100vh;
}
.not-found div,
.not-found p,
.not-found h1 {
  width: 100%;
  text-align: center;
}
.not-found a {
  display: block;
  padding: 10px;
  font-size: 50px;
  color: white;
  transition: 0.5s all;
}
.not-found a:hover {
  color: #5AB301;
  transform: scale(1.1);
}

.home-logo {
  /*border-radius: 10px;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));*/
}

#concept .concept-box {
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  padding: 30px 15px;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  /* .icon-ctnr {
              width: 150px;
              height: 150px;
              display: flex;
              justify-content: center;
              align-items: center;
              background: #f8f8f8;
              color: #068448;
              font-size: 60px;
              border-radius: 50%;
              margin: 5px auto;
              transition: 0.3s;
              padding: 15px;
          }


  */
}
#concept .concept-box .icon-ctnr {
  width: 100%;
}
#concept .concept-box h2 {
  color: #068448;
  margin: 10px 0px;
  text-align: center;
  width: 100%;
  font-size: 30px;
}
#concept .concept-box .service-about {
  padding: 0px 10%;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: justify;
  font-size: 18px;
}
#concept .concept-box:hover {
  transform: scale(1.02);
}

#services .service-box {
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  padding: 0px 0px 30px 0px;
  transition: 0.3s;
  text-decoration: none;
}
#services .service-box figure {
  overflow: hidden;
}
#services .service-box figure img {
  pointer-events: none;
  transform: scale(1);
  transition: 0.3s ease-out;
  filter: grayscale(75%);
}
#services .service-box:hover {
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.52));
}
#services .service-box:hover figure img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
#services .service-box p {
  padding: 0px 15px;
}

.home-info {
  background: #1F4104;
  padding: 30px 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-info .text {
  margin: 5px 10px;
  padding: 0px 10px;
}
.home-info .text h1 {
  margin-bottom: 15px;
}
.home-info .btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #5AB301;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  width: 200px;
  margin: 5px 10px;
}
.home-info .btn:hover {
  background: black;
}
@media (max-width: 1000px) {
  .home-info {
    flex-wrap: wrap;
  }
  .home-info .text {
    text-align: center;
  }
  .home-info .text p {
    text-align: center;
  }
  .home-info .btn {
    margin: 5px auto;
  }
}

.gallery {
  min-height: 100vh;
}
.gallery h1 {
  text-align: center;
}

.service-banner-1 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/video-vigilancia.jpg);
}

.service-banner-2 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/sistemas-de-alarmas.jpg);
}

.service-banner-3 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/biometrico.jpg);
}

.service-banner-4 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/deteccion-extincion-incendios.jpg);
}

.service-banner-5 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/redes-radio.jpg);
}

.service-banner-6 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/cableado-estructurado.jpg);
}

.service-banner-7 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/telefonia-ip.jpg);
}

.service-banner-8 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/soporte-ti.jpg);
}

.service-banner-9 {
  color: white;
  text-align: center;
  min-height: 40vh;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-bottom: 5px solid #5AB301;
  background-image: url(../img/services/software-asistencia-remota.jpg);
}

.service-page {
  padding: 30px 10% 30px 10% !important;
}
.service-page h2 {
  color: black;
  font-size: 30px;
}
.service-page h3 {
  color: #5AB301;
}
.service-page a {
  font-weight: bold;
  color: #1F4104;
  text-decoration: none;
  transition: 0.3s;
}
.service-page a:hover {
  color: black;
}
.service-page .open-box {
  padding: 30px 20px;
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  border-radius: 25px;
  /*p {
      color: white;
      text-align: center;
  }*/
}
.service-page .open-box .box-btn {
  margin: 10px auto;
  display: block;
  width: 170px;
  padding: 10px 20px;
  background: #5AB301;
  transition: 0.3s all;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  text-align: center;
}
.service-page .open-box .box-btn:hover {
  background: black;
}

.contact-page .contact-box {
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  padding: 30px 15px;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.contact-page .contact-box .icon-ctnr {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  color: #068448;
  font-size: 60px;
  border-radius: 50%;
  margin: 5px auto;
  transition: 0.3s;
  padding: 15px;
}
.contact-page .contact-box h2 {
  margin: 10px 0px;
  width: 100%;
}
.contact-page .contact-box .service-about {
  padding: 0px 10%;
  margin-bottom: 15px;
  width: 100%;
}
.contact-page .contact-box a {
  width: 100%;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.contact-page .contact-box a:hover {
  color: #5AB301;
}
.contact-page .contact-box:hover {
  transform: scale(1.02);
}

.contact-form .fm-msg {
  line-height: 2em;
  font-weight: bold;
}
.contact-form form {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.contact-form form input {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 10px;
  font-family: "Nunito", sans-serif;
  margin: 10px 0px;
  border: 1px solid rgba(5, 105, 57, 0.42);
  border-radius: 10px;
}
.contact-form form .row-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  transition: 0.3s;
  margin: 10px 0px;
  cursor: pointer;
  color: #1F4104;
}
.contact-form form .row-input:hover {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.contact-form form .row-input input {
  display: inline;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  margin: 0px 0px;
  cursor: pointer;
}
.contact-form form .row-input label {
  cursor: pointer;
  padding: 10px;
}
.contact-form form textarea {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 10px;
  font-family: "Nunito", sans-serif;
  margin: 10px 0px;
  border: 1px solid rgba(5, 105, 57, 0.42);
  border-radius: 10px;
  height: 25vh;
  max-height: 25vh;
  min-height: 25vh;
}
.contact-form form button {
  margin: 10px auto;
  display: block;
  width: 180px;
  padding: 20px 20px;
  background: black;
  transition: 0.3s all;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  text-align: center;
  border: 0px;
  cursor: pointer;
}
.contact-form form button:hover {
  background: #5AB301;
}

.map-container .place-map {
  width: 100%;
  height: 50vh;
}

footer {
  background: white;
  padding: 30px 10%;
  border-top: 5px solid #5AB301;
  color: #4A4A50;
}
footer .copylink {
  text-decoration: none;
  color: black;
  transition: 0.3s;
  font-weight: bold;
}
footer .copylink:hover {
  color: #5AB301;
}

.wsp-msg {
  position: fixed;
  bottom: 22px;
  right: 60px;
  padding: 5px 10px;
  background: #ECE5DD;
  color: black;
  border-radius: 10px;
  font-weight: bold;
  transform: scale(0);
  transform: translateX(200px);
  animation: 3s ease wspdsp;
}
@keyframes wspdsp {
  0% {
    transform: translateY(100px) translateX(0px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateX(200px);
  }
}

.wsp-btn {
  display: flex;
  position: fixed;
  bottom: 15px;
  right: 15px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #25D366;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transform: translateX(0px);
  animation: 1s ease wspdsp2;
}
.wsp-btn,
.wsp-btn * {
  transition: 0.5s all;
}
.wsp-btn:hover {
  background: #075E54;
}
.wsp-btn:hover i {
  transform: rotate(15deg);
}
@keyframes wspdsp2 {
  from {
    transform: translateX(50px);
  }
  to {
    transform: translateX(0px);
  }
}

/*# sourceMappingURL=styles.css.map */
