@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
}

@keyframes fadeOnLoad {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes loaderFadein {
  from {
    opacity: .8;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideScroll {
  from {
    margin-top: -10%;
  }

  to {
    margin-top: 0px;
  }
}

@keyframes slidein {
  from {
    margin-top: -20%;
  }

  to {
    margin-top: 0;
  }
}

.header-menu {
  width: 100%;
  /*background-color: #72c62d;*/
  background-color: #F0F0F0;
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 1;
}

.header-menu #menu-button {
  width: 45px;
  height: 45px;
  color: #000000;
  padding-top: 12px;
}

.header-menu .menu-button {
  display: none;
}

.header-menu .menu-brand {
  display: none;
}

.header-menu .brand-image {
  width: 60px;
  height: 60px;
  margin-left: 12px;
  margin-right: 12px;
}

.header-menu .menu-option-group {
  display: inline-block;
  padding-left: 12px;
  padding-top: 12px;
}

.header-menu .menu-option-group .menu-link {
  padding: 12px;
  text-decoration: none;
  color: #000000;
}

@media (max-width: 800px) {
  .header-menu {
    position: fixed;
  }

  .header-menu .menu-button {
    display: block;
  }

  .header-menu .menu-brand {
    display: block;
  }

  .container-menu {
    display: none;
  }
}

@media (max-width: 800px) {
  .sidebar.responsive {
    display: block;
    /*background-color: #66c01d;*/
    background-color: #F0F0F0;
    width: 50%;
    height: 100%;
    margin-top: 79px;
    padding-top: 32px;
    z-index: 1;
    position: fixed;
    animation-name: run;
    animation-duration: 0.5s;
  }

  .sidebar.responsive .menu-content {
    list-style: none;
  }

  .sidebar.responsive .menu-content .menu-option {
    padding-bottom: 8px;
  }

  .sidebar.responsive .menu-content .menu-option a {
    text-decoration: none;
    color: #000000;
  }

  @keyframes run {
    from {
      left: -48%;
    }

    to {
      left: 0%;
    }
  }
}

.main-menu-scroll-down {
  animation-duration: 1s;
  animation-name: slideScroll;
  width: 100%;
  /*background-color: #72c62d;*/
  background-color: #F0F0F0;
  border-bottom: 1px solid #ecebeb;
  box-shadow: 0px 1px 4px #9E9E9E;
  padding-top: 12px;
  position: fixed;
  z-index: 1;
}

.main-menu-scroll-down #menu-button {
  width: 45px;
  height: 45px;
  color: #000000;
  padding-top: 12px;
}

.main-menu-scroll-down .menu-button {
  display: none;
}

.main-menu-scroll-down .brand-image {
  width: 60px;
  height: 60px;
  margin-right: 12px;
}

.main-menu-scroll-down .menu-option-group {
  display: inline-block;
  padding-left: 12px;
  padding-top: 12px;
}

.main-menu-scroll-down .menu-option-group .menu-link {
  padding: 12px;
  text-decoration: none;
  color: #000000;
}

.sidebar {
  display: none;
}

@media (max-width: 800px) {
  .main-menu-scroll-down .menu-button {
    display: block;
  }
}

.presentation {
  background-image: url(../../images/scpeips-inicio.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 700px;
  position: relative;
}

@media (max-width: 800px) {
  .presentation {
    min-height: 280px;
  }
}

.nosotros {
  background-image: url(../../images/nosotros.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 300px;
}

.normatividad {
  background-image: url(../../images/normatividad.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 300px;
}

.contratacion {
  background-image: url(../../images/contratacion.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 300px;
}

.citas {
  background-image: url(../../images/citas.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 300px;
}

.footer {
  margin-top: 32px;
  background-color: #1d4a5f;
}

.footer #footer-navigation {
  text-decoration: none;
  color: #FFFFFF;
}

.footer .footer-copyright {
  padding-top: 668px;
  background-color: #1d4a5f;
}

.loader-wrapper {
  background-color: #F5F5F5;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2;
}

.loader-wrapper .spinner-border {
  color: #72c62d;
  font-size: 22px;
  width: 45px;
  height: 45px;
  position: fixed;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}

body {
  font-family: "Roboto" !important;
}

.main {
  width: 100%;
  background-color: #F0F0F0;
}

.main .spacer {
  display: none;
}

.main-button {
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #72c62d;
  box-shadow: 1px 1px 1px #54A820;
  border: 0;
  border-radius: 5px;
  color: #FFFFFF;
}

@media (max-width: 800px) {
  .main .spacer {
    display: block;
    height: 79px;
  }

  .main-button {
    margin-bottom: 12px;
  }
}

.card-options {
  margin-top: -20px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.card-options .card-icon {
  color: #E67E22;
  width: 45px;
  height: 45px;
}

@media (max-width: 800px) {
  .card-options {
    margin-bottom: 32px;
  }
}

.section-title {
  padding-top: 96px;
  padding-bottom: 32px;
}

#servicios .service-card {
  border: none;
  background-color: #F0F0F0;
  padding: 0px;
}

#servicios .service-card .service-card-img {
  height: 90px;
  width: 90px;
}

#servicios .service-card .card-body .service-card-decoration {
  height: 4px;
  opacity: 1 !important;
  background-color: #E67E22;
  border-color: #E67E22;
  border-top: 2px solid #E67E22;
  width: 30%;
}

#name,
#email,
#message {
  border: none;
  border-bottom: 1px solid;
}

#name:focus,
#email:focus,
#message:focus {
  border: none;
  border-bottom: 3px solid #72c62d;
  box-shadow: inset 0 0px 0px #72c62d;
}

/*@media (max-width: 800px) {
    #main-menu {
        display: none;
    }

    #menu-container {
        position: fixed;
        width: 100%;
        padding-bottom: 12px;
        height: 72px;

        #menu-button {
            display: block;
            color: $color-white;
            width: 45px;
            height: 45px;
            margin-left: 8px;
            margin-top: 8px;
        }

    }

}*/

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