@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;700&display=swap");
/************************************************************
                        RESPONSIVE
 *************************************************************/
:root {
  --grey: #f7f7f7;
  --green: #016d38;
  --red: #d3141d;
  --text: #707070;
  --textDark: #686868;
  --yellow: #ffdc5d;
  --black: #2b2b2b;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  overflow-y: scroll;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: initial;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
}

p,
a,
table,
ul {
  font-size: 1.2rem;
  line-height: 1.6;
}

p {
  color: var(--textDark);
}

p br {
  display: none;
}

@media screen and (min-width: 1024px) {
  p br {
    display: block;
  }
}

.font-r {
  font-weight: 400;
}

.font-b {
  font-weight: 700;
}

/************************************************************
                           UTILIDADES
  *************************************************************/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid, #seminarios .main-seminar .col-content .row-cards, #capsulas .main-capsules .card_video_header .row-icon {
  display: -ms-grid;
  display: grid;
}

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

.wrap {
  padding: 0 8%;
}

@media screen and (min-width: 1024px) {
  .wrap {
    padding: 0 6%;
  }
}

@media screen and (min-width: 1600px) {
  .wrap {
    padding: 0 15%;
  }
}

.menu-active-link, #seminarios .link-seminarios, #guias .link-guias, #capsulas .link-capsulas, #soluciones .link-soluciones {
  background: var(--yellow);
  border-right: 4px solid #fff;
  color: var(--black);
  padding: 0.3rem 1rem;
}

/************************************************************
                    ESTILOS GLOBALES
*************************************************************/
.btn {
  border-radius: 2rem;
  padding: 0.5rem 2rem;
}

.btn-primary {
  background: var(--green);
  border: none;
  outline: none;
}

.btn-primary:hover, .btn-primary:focus {
  background: #01542b;
}

.btn-yellow {
  background: var(--yellow);
  color: #716122;
  font-weight: bold;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath id='close' d='M.293.293a1,1,0,0,1,1.414,0L8,6.586,14.293.293a1,1,0,1,1,1.414,1.414L9.414,8l6.293,6.293a1,1,0,1,1-1.414,1.414L8,9.414,1.707,15.707A1,1,0,1,1,.293,14.293L6.586,8,.293,1.707a1,1,0,0,1,0-1.414Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  opacity: 1;
}

.menu-pg {
  position: relative;
  z-index: 10;
}

.menu-pg .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(1, 109, 57, 0.8);
  -webkit-transition: 300ms background-color ease-in-out;
  transition: 300ms background-color ease-in-out;
}

@media screen and (min-width: 1024px) {
  .menu-pg .navbar {
    background: none;
  }
}

.menu-pg .navbar-collapse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-pg .navbar-active {
  background: rgba(1, 109, 57, 0.8);
}

.menu-pg .navbar .nav-link {
  color: #fff;
}

.menu-pg .navbar .nav-link:hover {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .menu-pg .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu-pg .navbar .navbar-toggler {
  background: #fff;
}

.banner-header {
  background: url(../images/2022/banner-portal.jpg) top/cover;
  background-position: 75%;
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  border-bottom: 10px solid var(--yellow);
  position: relative;
}

@media screen and (min-width: 1024px) {
  .banner-header {
    background-position: top;
    height: 60vh;
  }
}

.banner-header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: rgba(1, 111, 58, 0.5);
}

@media screen and (min-width: 1024px) {
  .banner-header::before {
    display: none;
  }
}

.banner-header .container {
  position: relative;
  z-index: 1;
}

.banner-header .container h1,
.banner-header .container p {
  text-align: left;
}

.banner-header .container p {
  color: #fff;
}

.banner-header .container .title {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .banner-header .container .title {
    font-size: 5rem;
  }
}

.banner-header .container .title span {
  color: var(--yellow);
}

.banner-header .container .text {
  max-width: 600px;
  line-height: 1.6;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.header-c {
  background-size: cover;
  background-position: top;
  height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  padding: 2rem;
  border-bottom: 10px solid var(--text);
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .header-c {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-c h1 {
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
}

@media screen and (min-width: 1024px) {
  .header-c h1 {
    font-size: 4rem;
  }
}

.header-c h1 strong {
  color: var(--yellow);
}

.header-c p {
  color: #fff;
}

.footer {
  position: relative;
}

.footer .footer-row {
  background: url(../images/2022/bg-footer.jpg) center/cover;
  padding: 4rem 2rem;
}

@media screen and (min-width: 1024px) {
  .footer .footer-row {
    padding: 4rem;
  }
}

.footer .footer-row .text {
  color: #2b2b2b;
}

.footer .ec-stars-wrapper a {
  font-size: 32px;
}

@media screen and (min-width: 1024px) {
  .footer .ec-stars-wrapper a {
    font-size: 3rem;
  }
}

.footer .copy-foot {
  background: var(--grey);
  padding: 1rem;
  text-align: center;
  margin-bottom: 0;
}

.footer .legal-bottom img {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7px;
  width: 1rem;
}

@media screen and (min-width: 1024px) {
  .footer .legal-bottom img {
    width: 1.2rem;
    left: 15px;
  }
}

.legal-top {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .legal-top {
    right: 7px;
  }
}

.legal-top img {
  width: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .legal-top img {
    width: 1.6rem;
  }
}

.modal-content,
.modal-header {
  background: none;
  border: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video {
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 1024px) {
  .video {
    height: 600px;
  }
}

/************************************************************
                    ESTILOS LOGIN
*************************************************************/
.container-bg-login,
.register-form {
  background: #fff;
}

.row-login-container {
  padding: 0;
}

.row-login-container .container-fluid .row-login {
  background: url(../images/2022/bg-login.png) center/cover no-repeat;
  color: #fff;
  padding: 1.5rem;
}

.row-login-container .container-fluid .row-login p {
  color: #fff;
  margin-bottom: 0;
}

.row-login-container .container-fluid .row-login strong {
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
}

.row-login-container .container-fluid .row-login strong em {
  color: var(--yellow);
}

.row-login-container .container-fluid .form-login {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  padding: 1.5rem;
}

.row-login-container .container-fluid .form-login .lead {
  font-size: 1.4rem;
}

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

.register-form .wrap-register {
  max-width: 80%;
}

.register-form .wrap-register .lead {
  padding-top: 2rem;
}

.register-form .wrap-register .form-group {
  margin-bottom: 1rem;
}

.register-form .wrap-register .form-group label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.register-form .wrap-register .form-group a {
  color: var(--green);
  text-decoration: underline !important;
}

.register-form .wrap-register .form-group .yes {
  margin-right: 1rem;
}

.modal-loginExito h3 {
  color: var(--green);
}

/************************************************************
                    ESTILOS HOME
*************************************************************/
.bg-container {
  background: var(--grey);
}

.bg-container .container .row-grey .card {
  -webkit-box-shadow: 12px 9px 1rem #e3e3e326;
          box-shadow: 12px 9px 1rem #e3e3e326;
  overflow: hidden;
}

.bg-container .container .row-grey .card hr {
  border: 4px solid #F26D27;
  opacity: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200%;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .bg-container .container .row-grey .card hr {
    top: 0;
    bottom: initial;
  }
}

.bg-container .container .row-grey .card .row-img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (min-width: 1024px) {
  .bg-container .container .row-grey .card .row-img {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.bg-container .container .row-grey .card .row-img img {
  z-index: 1;
  position: relative;
}

.bg-container .container .row-grey .card .card-title {
  font-style: italic;
  color: var(--green);
}

.bg-container .container .row-grey .btn-yellow {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .bg-container .container .row-grey .btn-yellow {
    margin-bottom: 0;
  }
}

.bg-container .container .row-grey .card-1 hr {
  border-color: #f26d27;
}

.bg-container .container .row-grey .card-2 hr {
  border-color: #00a1a2;
}

.bg-container .container .row-grey .card-3 hr {
  border-color: #982c7a;
}

.bg-container .container .row-grey .card-4 hr {
  border-color: #014c94;
}

.bg-container .container .row-grey .card-body {
  font-size: 1.2rem;
}

.bg-container .container .row-white {
  background: #fff;
}

.bg-container .container .row-white .img {
  width: 10rem;
}

@media screen and (min-width: 1024px) {
  .bg-container .container .row-white .img {
    width: initial;
  }
}

.bg-container .container .item-2 hr {
  opacity: 1;
  background: #707070;
}

.bg-container .container .item-2 .modal-dialog {
  max-width: 100%;
}

@media screen and (min-width: 1024px) {
  .bg-container .container .item-2 .modal-dialog {
    max-width: 70%;
  }
}

.bg-container .container .item-2 .modal-dialog .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.bg-container .container .item-2 .modal-dialog .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-container .container h3 {
  color: var(--green);
}

/************************************************************
                    ESTILOS SEMINARIOS
*************************************************************/
#seminarios .header-c {
  background-image: url(../images/2022/banner-seminarios.jpg);
  border-bottom-color: #f26d27;
}

#seminarios .main-seminar {
  background: var(--grey);
}

#seminarios .main-seminar p {
  margin-bottom: 0;
}

#seminarios .main-seminar .col-link {
  background: #fff;
  position: relative;
  padding-top: 4rem;
}

#seminarios .main-seminar .col-link::before {
  content: "";
  top: 0;
  width: 500%;
  height: 100%;
  position: absolute;
  left: -500%;
  background: #fff;
}

#seminarios .main-seminar .col-link .menu-link {
  top: 7rem;
}

@media screen and (min-width: 1024px) {
  #seminarios .main-seminar .col-link .menu-link {
    position: -webkit-sticky;
    position: sticky;
  }
}

#seminarios .main-seminar .col-link .menu-link a {
  display: block;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

#seminarios .main-seminar .col-content {
  padding-top: 4rem;
}

@media screen and (min-width: 1024px) {
  #seminarios .main-seminar .col-content {
    padding-left: 3rem;
  }
}

#seminarios .main-seminar .col-content .year {
  color: var(--green);
  font-size: 2.3rem;
}

#seminarios .main-seminar .col-content .row-cards {
  gap: 2rem;
  margin-left: auto;
  padding-left: 0;
}

@media screen and (min-width: 1024px) {
  #seminarios .main-seminar .col-content .row-cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    width: 95%;
  }
}

#seminarios .main-seminar .col-content .row-cards .card {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
  border-bottom: 10px solid var(--yellow);
}

#seminarios .main-seminar .col-content .row-cards .card .img-card {
  position: relative;
}

#seminarios .main-seminar .col-content .row-cards .card .img-card span {
  position: absolute;
  top: 0;
  right: 0;
  background: #2b2b2b;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 1rem;
}

#seminarios .main-seminar .col-content .row-cards .card .card-date {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--textDark);
}

#seminarios .main-seminar .col-content .row-cards .card .card-title {
  font-size: 1.4rem;
  color: var(--green);
  line-height: 1.3;
}

#seminarios .main-seminar .col-content .row-cards .card .card-btn {
  color: var(--text);
  text-decoration: underline !important;
}

#seminarios .main-seminar .row-2022 {
  margin-bottom: 3rem;
  scroll-margin-top: 6rem;
}

#seminarios .main-seminar .row-2021 {
  margin-bottom: 4rem;
  scroll-margin-top: 6rem;
}

#seminarios .main-seminar .row-2021 .row-cards .card {
  border-bottom-color: var(--text);
  transition: all .5s ease-in-out;
}

#seminarios .main-seminar .row-2021 .row-cards .card .card-title {
  margin-bottom: 1rem;
  color: var(--textDark);
}

#seminarios .main-seminar .row-2021 .row-cards .card .card-btn {
  color: var(--textDark);
}

/************************************************************
                    ESTILOS GUIAS
*************************************************************/
#guias .header-c {
  background-image: url(../images/2022/banner-prevencion.jpg);
  border-bottom-color: #00a1a2;
}

#guias .col-text {
  padding-top: 4rem;
}

#guias .col-text .title {
  color: var(--green);
  font-style: italic;
}

#guias .col-text .row-icons {
  list-style: none;
  padding-left: 0;
}

#guias .col-text .row-icons .item {
  margin-bottom: 3rem;
}

#guias .col-text .row-icons .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#guias .col-text .row-icons .item a img {
  margin-right: 1rem;
}

#guias .col-text .row-icons .item a span {
  line-height: 1.2;
  color: #637070;
}

#guias .col-img {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--grey);
}

@media screen and (min-width: 1024px) {
  #guias .col-img {
    padding-bottom: 4rem;
  }
}

#guias .col-img .title {
  color: var(--green);
}

#guias .col-img img {
  width: 8rem;
}

@media screen and (min-width: 1024px) {
  #guias .col-img img {
    width: 70%;
  }
}

/************************************************************
                    ESTILOS CAPSULAS
*************************************************************/
#capsulas .header-c {
  background-image: url(../images/2022/banner-capsulas.jpg);
  border-bottom-color: #982c7a;
}

#capsulas .main-capsules {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

#capsulas .main-capsules .card_video_header .row-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
  -ms-grid-columns: 15% auto;
      grid-template-columns: 15% auto;
  align-items: center;
}

#capsulas .main-capsules .card_video_header .row-icon img {
  width: 4rem;
}

#capsulas .main-capsules .card_video_header .row-icon p {
  width: initial;
  margin-bottom: 0;
}

#capsulas .main-capsules .col-md-4 {
  margin-bottom: 2.5rem;
}

#capsulas .main-capsules .lead {
  color: #637070;
}

/************************************************************
                    ESTILOS SOLUCIONES
*************************************************************/
#soluciones .header-c {
  background-image: url(../images/2022/banner-solucones.jpg);
  border-bottom-color: #064c94;
  text-align: center;
}

#soluciones .main-solutions {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#soluciones .main-solutions .row {
  margin-bottom: 3rem;
}

#soluciones .main-solutions .row .title {
  color: var(--green);
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  #soluciones .main-solutions .row .title {
    font-size: 2.2rem;
  }
}

#soluciones .main-solutions .row img {
  margin-bottom: 2rem;
}

#soluciones .main-solutions .row .lead,
#soluciones .main-solutions .row ul {
  max-width: 600px;
  color: var(--text);
}

#soluciones .main-solutions .row .lead a,
#soluciones .main-solutions .row ul a {
  color: var(--green);
  margin-top: 1rem;
  display: block;
  text-decoration: underline !important;
}

#soluciones .main-solutions .row .lead li::marker,
#soluciones .main-solutions .row ul li::marker {
  color: var(--green);
}
/*# sourceMappingURL=style.css.map */



.go-top-header{
	position: fixed;
    z-index: 3;
    width: 40px;
    height: 40px;
    background-color: #016d38;
    border-radius: 25px;
    bottom: 10px;
    right: 20px;
    text-align: center;
    background-image: url(../images/2022/arrow-top.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
	transition: all .3s ease-in-out;
}
.go-top-header:hover {
    box-shadow: 0px 0px 9px 1px #9f9f9f;
    /* border: 1px solid #fff; */
}

#seminarios .main-seminar .col-content .row-cards .card:hover {
  opacity: .8;
  transform: scale(1.05);  
}

#seminarios .main-seminar .row-2021 .row-cards .card:hover .card-btn {
  color: #026d38;
}

#seminarios .main-seminar .col-link .menu-link a{
  transition: all ease-in-out .5s;
}

#seminarios .main-seminar .col-link .menu-link a:hover {
  color: #026d38;
  border-color:  #026d38;
}