* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
}

b {
  font-weight: 700;
}

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

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
  position: relative;
}
header .logo-img {
  content: url("../images/logo-las-argentinas.svg");
  max-height: 68px;
}
@media (min-width: 1921px) {
  header {
    padding: 35px 60px;
  }
}
header .logo {
  width: 40%;
}
@media (min-width: 480px) {
  header .logo {
    width: 270px;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Button styling */
.menu-toggle {
  position: absolute;
  right: 30px;
  line-height: 1em;
  font-size: 3em;
  color: #062263;
}
@media (max-width: 480px) {
  .menu-toggle {
    right: 20px;
    font-size: 2em;
  }
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #1FAFA1;
}

/*
 Default styles + Mobile first
 Offscreen menu style
*/
.main-menu {
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  width: 100%;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #07256d;
}

.main-menu ul li {
  text-align: center;
}

.main-menu a {
  display: block;
  padding: 0.75em 15px;
  line-height: 1em;
  font-size: 1.2em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #383838;
}

.main-menu li:first-child a {
  border-top: 1px solid #383838;
}

.main-menu a:hover,
.main-menu a:focus {
  background: #00b18d;
}

.main-menu .menu-close {
  background: #00b18d;
}

@media (min-width: 1024px) {
  .main-menu {
    position: absolute;
    display: none;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 999;
    width: 25%;
  }

  .main-menu ul li {
    text-align: left;
  }
}
.main-menu:target,
.main-menu[aria-expanded=true] {
  display: block;
  right: 0;
  outline: none;
}

.main-menu:target .menu-close,
.main-menu[aria-expanded=true] .menu-close {
  z-index: 998;
}

.main-menu:target ul,
.main-menu[aria-expanded=true] ul {
  position: relative;
  z-index: 1000;
}

/*
 We could us `.main-menu:target:after`, but
 it wouldn't be clickable.
*/
.main-menu:target + .backdrop,
.main-menu[aria-expanded=true] + .backdrop {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  /*  background: #000;
    background: rgba(0,0,0,.85);*/
  cursor: default;
}

@supports (position: fixed) {
  .main-menu,
.main-menu:target + .backdrop,
.main-menu[aria-expanded=true] + .backdrop {
    position: fixed;
  }
}
/*
 Larger screen styling
 Horizontal menu
*/
.home header {
  background-color: #acd6f9;
}
.home header .logo-img {
  content: url("../images/logo-las-argentinas.svg");
  max-width: 100%;
}
.home header .menu-container ul li a,
.home header .menu-container ul li a i {
  color: #2359d9;
}
.home header .menu-container ul li a svg path {
  fill: #fff !important;
}
.home header .menu-container .menu-icon a,
.home header .menu-container .close-menu a,
.home header .menu-container .menu-icon a i,
.home header .menu-container .close-menu a i {
  color: #a7beec !important;
}
.home header .menu-container .menu-icon svg path,
.home header .menu-container .close-menu svg path {
  fill: #a7beec !important;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 50px;
}
@media (max-width: 480px) {
  .menu-container {
    margin-right: 20px;
  }
}
.menu-container ul {
  display: flex;
}
.menu-container ul li {
  padding-right: 23px;
}
@media (max-width: 480px) {
  .menu-container ul li {
    padding-right: 12px;
  }
}
.menu-container ul li a {
  font-size: 18px;
  color: #2359D9;
}
@media (min-width: 480px) {
  .menu-container ul li a {
    font-size: 27px;
  }
}
.menu-container ul li a svg path {
  fill: #2359D9 !important;
}
.menu-container ul li a:hover {
  color: #1FAFA1;
}
.menu-container ul li a:hover svg path {
  fill: #1FAFA1 !important;
}
.menu-container .menu-icon {
  font-size: 40px;
  padding-left: 0;
  cursor: pointer;
}
@media (min-width: 480px) {
  .menu-container .menu-icon {
    padding-left: 22px;
  }
}
.menu-container .menu-icon a, .menu-container .menu-icon a i {
  color: #2359D9;
}
.menu-container .menu-icon svg path {
  fill: #2359D9 !important;
}
.menu-container .menu-icon:hover a, .menu-container .menu-icon:hover a i {
  color: #1FAFA1;
}
.menu-container .menu-icon:hover svg path {
  fill: #1FAFA1 !important;
}
.menu-container .close-menu {
  display: none;
}

.full-sidebar {
  display: flex;
}

.dropdown-menu {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 13px;
  color: #0315bd;
}
.dropdown-menu .dropdown-item {
  margin-left: 10px;
}
@media (min-width: 480px) {
  .dropdown-menu {
    right: 30px;
  }
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1;
  max-width: 1920px;
  margin: 0 auto;
}

.content h1 {
  font-size: 76px;
  font-weight: 700;
  color: #2359D9;
  text-align: left;
}
.content h3 {
  font-size: 36px;
  color: #2359D9;
  font-style: italic;
  padding-bottom: 40px;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
}
.portfolio .portfolio-item {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 22px;
}
@media (min-width: 670px) {
  .portfolio .portfolio-item {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .portfolio .portfolio-item {
    width: 33.3%;
  }
}
@media (min-width: 1280px) {
  .portfolio .portfolio-item {
    width: 25%;
  }
}
.portfolio .portfolio-item:hover {
  background: #2359D9;
}
.portfolio .portfolio-item:hover .caption {
  color: white;
}
.portfolio .portfolio-item:hover .caption h2:after {
  background: white;
}
.portfolio .portfolio-item .img {
  overflow: hidden;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
.portfolio .portfolio-item:nth-child(1), .portfolio .portfolio-item:nth-child(5n+1) {
  background: #ACD6F9;
}
.portfolio .portfolio-item:nth-child(1):hover, .portfolio .portfolio-item:nth-child(5n+1):hover {
  background: #2359D9;
}
.portfolio .portfolio-item:nth-child(2), .portfolio .portfolio-item:nth-child(5n+2), .portfolio .portfolio-item:nth-child(4), .portfolio .portfolio-item:nth-child(5n+4) {
  background: #ECECEC;
}
.portfolio .portfolio-item:nth-child(2):hover, .portfolio .portfolio-item:nth-child(5n+2):hover, .portfolio .portfolio-item:nth-child(4):hover, .portfolio .portfolio-item:nth-child(5n+4):hover {
  background: #2359D9;
}
.portfolio .portfolio-item:nth-child(3), .portfolio .portfolio-item:nth-child(5n+3) {
  background: #9BDFCF;
}
.portfolio .portfolio-item:nth-child(3):hover, .portfolio .portfolio-item:nth-child(5n+3):hover {
  background: #2359D9;
}
.portfolio .portfolio-item:nth-child(5) {
  background: #ffffff;
}
.portfolio .portfolio-item:nth-child(5):hover {
  background: #2359D9;
}
.portfolio .portfolio-item .caption {
  color: #2359D9;
  text-align: center;
  padding: 15px 0 0;
}
.portfolio .portfolio-item .caption h2 {
  font-size: 21px;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
.portfolio .portfolio-item .caption h2:after {
  content: "";
  position: absolute;
  background: #2359D9;
  bottom: 0;
  width: 130px;
  height: 2px;
  right: 30%;
  left: 30%;
}
.portfolio .portfolio-item .caption p {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  padding-top: 8px;
}
.portfolio .bigleft {
  width: 100%;
  min-height: 380px;
  background: #99ddcf;
  background: linear-gradient(90deg, #99ddcf 0%, #3773ea 62%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.portfolio .bigleft h1 {
  color: white;
  text-align: center;
  font-style: italic;
}
@media (min-width: 1025px) {
  .portfolio .bigleft {
    width: 50%;
    min-height: 480px;
  }
}
.portfolio .bigright {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #f4f4f4;
  padding: 30px 30px;
}
.portfolio .bigright h1 {
  color: white;
  text-align: center;
}
@media (min-width: 1025px) {
  .portfolio .bigright {
    width: 50%;
    padding: 50px 50px;
  }
}
.portfolio .portfolio-tags {
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.portfolio .portfolio-tags .img {
  overflow: hidden;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
.portfolio .portfolio-tags:nth-child(odd) {
  color: #2359D9;
  background: #ACD6F9;
}
.portfolio .portfolio-tags:nth-child(odd):hover {
  color: white;
  background: #2359D9;
}
.portfolio .portfolio-tags:nth-child(even) {
  color: #1fafa1;
  background: #c7e9e1;
}
.portfolio .portfolio-tags:nth-child(even):hover {
  background: #2359D9;
  color: white;
}
.portfolio .portfolio-tags .caption {
  text-align: center;
  padding: 4px;
}
.portfolio .portfolio-tags .caption h2 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  font-style: italic;
}
.portfolio .portfolio-tags .caption p {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.portfolio .bighero {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.portfolio .bighero .ficha-tags {
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.portfolio .bighero .ficha-tags .img {
  overflow: hidden;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
.portfolio .bighero .ficha-tags:nth-child(odd) {
  color: #2359D9;
  background: #ACD6F9;
}
.portfolio .bighero .ficha-tags:nth-child(odd):hover {
  color: white;
  background: #2359D9;
}
.portfolio .bighero .ficha-tags:nth-child(even) {
  color: #1fafa1;
  background: #c7e9e1;
}
.portfolio .bighero .ficha-tags:nth-child(even):hover {
  background: #2359D9;
  color: white;
}
.portfolio .bighero .ficha-tags .caption {
  text-align: center;
  padding: 4px;
}
.portfolio .bighero .ficha-tags .caption h2 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  font-style: italic;
}
.portfolio .bighero .ficha-tags .caption p {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.portfolio .formar ul {
  margin-bottom: 20px;
}
.portfolio .formar ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.portfolio .formar a, .portfolio .formar span {
  color: #1fafa1;
}
.portfolio .formar p {
  font-size: 18px;
  line-height: 23px;
}

.feature-image {
  width: 100%;
  margin-bottom: 40px;
}

.single.content {
  padding: 0 35px;
}
.single h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .single h1 {
    font-size: 76px;
  }
}
.single h3 {
  font-size: 20px;
}
@media (min-width: 1025px) {
  .single h3 {
    font-size: 26px;
  }
}
.single .quote {
  font-size: 1.6em;
  font-style: italic;
  color: #575756;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .single .quote {
    font-size: 36px;
    width: 70%;
  }
}
.single #description {
  font-size: 16px;
  line-height: 21px;
  color: #575756;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 1025px) {
  .single #description {
    width: 80%;
    font-size: 18px;
    line-height: 26px;
  }
}
.single #description p {
  margin-bottom: 20px;
}
.single .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single .gallery > a {
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 480px) {
  .single .gallery > a {
    width: 33.3%;
  }
}
.single .rm-link {
  font-size: 16px;
  color: #1FAFA1;
  text-transform: uppercase;
  margin: 38px 0 60px;
  display: block;
  font-weight: bold;
}
.single .author {
  font-size: 12px;
  margin: 10px 0;
}

body,
input,
select,
textarea,
body * {
  box-sizing: border-box;
}

body::after, body::before,
input::after,
input::before,
select::after,
select::before,
textarea::after,
textarea::before,
body *::after,
body *::before {
  box-sizing: border-box;
}

/*body {
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: linear-gradient(top, #f2f2f2, #e6e6e6);
}*/
/*h1 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2em;
}*/
.container {
  position: relative;
  max-width: 40rem;
  margin: 5rem auto;
  background: #fff;
  width: 100%;
  padding: 3rem 5rem 0;
  border-radius: 1px;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);
  transition: transform 0.28s ease-in-out;
  z-index: -1;
}

.container:hover::before {
  transform: scale(1);
}

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

fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}

.form-radio,
.form-group {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}

.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}

.checkbox .form-help, .form-radio .form-help, .form-group .form-help {
  position: absolute;
  width: 100%;
}

.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}

.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.form-group input {
  height: 1.9rem;
}

.form-group textarea {
  resize: none;
}

.form-group select {
  width: 100%;
  font-size: 1rem;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
}

.form-group .control-label {
  position: absolute;
  top: -0.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #2359d9;
  font-size: 1rem;
  font-weight: normal;
  transition: all 0.28s ease;
  left: 0;
}

.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}

.form-group .bar::before {
  content: "";
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #337ab7;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  transition: all 0.28s ease;
  box-shadow: none;
}

.form-group input[type=file] {
  line-height: 1;
}

.form-group input[type=file] ~ .bar {
  display: none;
}

.form-group select,
.form-group select:focus,
.form-group select:valid,
.form-group select.has-value,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}

.form-group select:focus ~ .control-label,
.form-group select:valid ~ .control-label,
.form-group select.form-file ~ .control-label,
.form-group select.has-value ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1rem;
  left: 0;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #2359d9;
}

.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}

.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}

.checkbox input,
.form-radio input {
  width: auto;
  opacity: 1e-8;
  position: absolute;
  left: 0;
}

.radio {
  margin-bottom: 1rem;
}

.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #999;
}

.radio .helper::before, .radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}

.radio .helper::after {
  transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}

.radio label:hover .helper {
  color: #337ab7;
}

.radio input:checked ~ .helper::after {
  transform: scale(0.5);
}

.radio input:checked ~ .helper::before {
  color: #337ab7;
}

.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: border-color 0.28s ease;
}

.checkbox .helper::before, .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #fff;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}

.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}

.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}

.checkbox label:hover .helper {
  color: #337ab7;
}

.checkbox input:checked ~ .helper {
  color: #337ab7;
}

.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
  opacity: 1;
  transition: height 0.28s ease;
}

.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}

.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  transition-delay: 0.28s;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}

.has-error .legend.legend, .has-error.form-group .control-label.control-label {
  color: #d9534f;
}

.has-error.form-group .form-help,
.has-error.form-group .helper, .has-error.checkbox .form-help,
.has-error.checkbox .helper, .has-error.radio .form-help,
.has-error.radio .helper, .has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #d9534f;
}

.has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}

.button {
  position: relative;
  background: currentColor;
  border: 1px solid currentColor;
  font-size: 1.1rem;
  color: #4f93ce;
  margin: 3rem 0;
  padding: 0.75rem 3rem;
  cursor: pointer;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.button span {
  color: #fff;
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  background: #071017;
  border: 50vh solid #1d4567;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
}

.button:hover {
  color: #337ab7;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.button:active::before, .button:focus::before {
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.button:focus {
  outline: none;
}

#sumate {
  background: #acd6f9;
  padding: 30px 20px;
  width: 100%;
  min-height: 300px;
  color: #2359d9;
}
#sumate h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
#sumate p {
  font-size: 1em;
  line-height: 1.4em;
}
#sumate form {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
#sumate form input[type=submit] {
  background: #fff;
  color: #000;
  height: 40px;
}
#sumate label {
  color: #2359d9;
}
#sumate .call-to-action {
  background: white;
  text-align: center;
  font-size: 1em;
  line-height: 1em;
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px 10px 20px;
  border-radius: 35px;
  font-style: italic;
  font-weight: 600;
  color: #00b18d;
}
@media only screen and (min-width: 1024px) {
  #sumate {
    padding: 30px 50px;
  }
  #sumate p {
    font-size: 1em;
    line-height: 1.2em;
  }
}

/*Perfiles sumate*/
.sumate-container {
  display: inline;
  width: 100%;
}

.perfiles-sumate {
  width: 100%;
}

.perfiles-sumate .portfolio .portfolio-item {
  background: white;
}
.perfiles-sumate .portfolio .portfolio-item:nth-child(4n+1) {
  border: 25px solid #a5e2d3;
}
.perfiles-sumate .portfolio .portfolio-item:nth-child(2n) {
  border: 25px solid #c1c1c1;
}
.perfiles-sumate .portfolio .portfolio-item:nth-child(3n) {
  border: 25px solid #4f7ae1;
}
.perfiles-sumate .portfolio .portfolio-item:nth-child(3n+4) {
  border: 25px solid #c1c1c1;
}
.perfiles-sumate .portfolio .portfolio-item .img {
  overflow: hidden;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

@media (max-width: 779px) {
  .hiddeable {
    display: none;
  }

  #muestra_form {
    display: block;
  }
}
@media (min-width: 780px) {
  .sumate-container {
    display: flex;
  }

  #sumate {
    width: 40%;
  }
  #sumate .call-to-action {
    display: none;
  }

  .hiddeable {
    display: block;
  }

  .perfiles-sumate {
    width: 60%;
    background: #acd6f9;
  }
  .perfiles-sumate .portfolio .portfolio-item {
    width: 50%;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(4n+1) {
    border: 25px solid #69cbb2;
    background: #afe5d9;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(4n+1):hover {
    background: #3e72df;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(2n) {
    border: 25px solid #c1c1c1;
    background: #f4f4f4;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(2n):hover {
    background: #3e72df;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(3n) {
    border: 25px solid #c1c1c1;
    background: #f4f4f4;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(3n):hover {
    background: #3e72df;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(3n+4) {
    border: 25px solid #3e72df;
    background: #acd6f9;
  }
  .perfiles-sumate .portfolio .portfolio-item:nth-child(3n+4):hover {
    background: #3e72df;
  }
}
.perfilsumate .feature-image {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.perfilsumate .feature-image img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
}

.perfilsumate .gallery img {
  margin-bottom: 10px;
}

.perfilsumate .portfolio-item .caption h2:after {
  width: unset;
  right: 20%;
  left: 20%;
}

.perfilsumate .content h3 {
  padding-bottom: 20px;
}

.perfiles-sumate .portfolio-item .caption h2:after {
  width: unset;
  right: 20%;
  left: 20%;
}

@media (min-width: 768px) {
  .perfilsumate {
    display: flex;
    align-items: flex-start;
  }

  .perfilsumate .gallery {
    width: 90%;
  }
  .perfilsumate .gallery img a {
    width: 30%;
    margin-right: 10px;
  }
  .perfilsumate .gallery img a:last-child {
    margin-right: 0;
  }

  .perfilsumate .feature-image {
    margin-left: 35px;
    width: 300px;
  }

  .perfilsumate .single h1 {
    font-size: 36px;
    margin-bottom: 0;
  }

  .perfilsumate .single h3 {
    color: #3c75e5;
  }
}
@media (min-width: 1578px) {
  .perfiles-sumate .portfolio-item {
    min-height: 500px;
  }

  .perfiles-sumate .portfolio-item .caption {
    min-width: 600px;
  }

  .perfiles-sumate .portfolio-item .caption h2:after {
    width: unset;
    right: 40%;
    left: 40%;
  }
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 35px;
  position: relative;
  width: 100%;
}
footer ul {
  display: flex;
  margin-bottom: 30px;
  flex: auto;
  justify-content: center;
}
footer ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1FAFA1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin: 0 6px;
  /*
  @media (min-width: 480px) {
    width: 135px;
    height: 135px;
  }
  */
}
footer ul li a svg path {
  fill: white !important;
}
footer ul li a:hover {
  background: #2359D9;
}
footer p {
  font-size: 14px;
  line-height: 20px;
  color: #575756;
  text-align: center;
}
@media (min-width: 480px) {
  footer p {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 780px) {
  footer p {
    text-align: left;
    font-size: 13px;
    position: absolute;
    right: 0;
    padding: 10px 20px 0 0;
    line-height: 14px;
  }
}
@media (min-width: 780px) {
  footer ul {
    display: flex;
    margin-bottom: 30px;
    flex: unset;
  }
  footer ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1FAFA1;
    color: white;
    font-size: 16px;
    margin-right: 10px;
  }
}

#hero {
  background: #acd6f9;
}
#hero .hero-content {
  padding: 2% 5% 4% 5%;
  display: flex;
  flex-wrap: wrap;
}
#hero .hero-content .call-sumate {
  display: none;
  width: 20%;
  text-align: left;
  position: relative;
}
#hero .hero-content .call-sumate span {
  position: absolute;
  bottom: 42px;
  left: 20%;
  right: 20%;
  font-weight: 900;
  font-style: italic;
  font-size: 0.9em;
  color: #2359d9;
}
@media (min-width: 1270px) {
  #hero .hero-content .call-sumate span {
    font-size: 1.2em;
  }
}
@media (min-width: 1600px) {
  #hero .hero-content .call-sumate span {
    font-size: 1.4em;
  }
}
#hero .hero-content .hero-right {
  width: 100%;
  padding: 10px 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#hero .hero-content .quote {
  display: block;
  color: #2359d9;
  font-size: 1.2em;
  line-height: 1.2em;
  width: 100%;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  #hero .hero-content .quote {
    font-size: 1.8em;
    line-height: 1.4em;
    text-align: left;
    width: 70;
  }
}
#hero .hero-content .call-to-action {
  background: white;
  text-align: center;
  font-size: 0.8em;
  line-height: 1em;
  display: inline-block;
  margin-top: 30px;
  margin-right: 10px;
  padding: 10px 20px 10px 20px;
  border-radius: 35px;
  font-style: italic;
  font-weight: 600;
  color: #00b18d;
}
@media only screen and (min-width: 1024px) {
  #hero .hero-content .call-to-action {
    font-size: 1.4em;
  }
  #hero .hero-content .call-sumate {
    display: block;
  }
  #hero .hero-content .hero-right {
    width: 75%;
    padding: 40px 0 0 40px;
    display: inline;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1600px) {
  #hero .hero-content {
    padding: 5% 15% 4% 15%;
  }
  #hero .hero-content .hero-right {
    padding: 90px 0 0 70px;
  }
}
#hero .hero-content .gallery {
  margin-left: 0;
  background: #1fafa1;
  color: #fff;
}

.call-sumate-mobile {
  width: 100%;
  text-align: center;
  position: relative;
  display: inline-block;
  background: #a5e2d3;
}
.call-sumate-mobile span {
  position: absolute;
  bottom: 22px;
  left: 20%;
  right: 20%;
  font-weight: 900;
  font-style: italic;
  font-size: 1.2em;
  color: #2359d9;
}
.call-sumate-mobile img {
  width: 50%;
}
@media (min-width: 1024px) {
  .call-sumate-mobile {
    display: none;
  }
}

.swiper-container {
  width: 100%;
  min-height: 100px;
}
.swiper-container img {
  display: block;
}

#axys {
  padding: 10px;
}
#axys > h1 {
  text-align: center;
  margin: 20px 0;
  color: #878786;
  font-style: italic;
  font-size: 1.4em;
  font-weight: 600;
  text-transform: uppercase;
}
#axys .axys-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
  font-style: italic;
}
#axys .axys-container article:nth-child(1) header {
  background: #a5e2d3;
}
#axys .axys-container article:nth-child(1) header h1 {
  color: #1fafa1;
}
#axys .axys-container article:nth-child(2) header {
  background: #acd6f9;
}
#axys .axys-container article:nth-child(2) header h1 {
  color: #2359d9;
}
#axys .axys-container article:nth-child(3) header {
  background: #a5e2d3;
}
#axys .axys-container article:nth-child(3) header h1 {
  color: #1fafa1;
}
#axys .axys-container article:nth-child(4) header {
  background: #acd6f9;
}
#axys .axys-container article:nth-child(4) header h1 {
  color: #2359d9;
}
#axys .axys-container article:nth-child(5) header {
  background: #a5e2d3;
}
#axys .axys-container article:nth-child(5) header h1 {
  color: #1fafa1;
}
#axys .axys-container article {
  width: 100%;
  padding: 10px;
}
#axys .axys-container article header {
  text-align: center;
  padding: 10px;
}
#axys .axys-container article header h1 {
  font-weight: 600;
  width: 100%;
  text-align: center;
  font-size: 1.4em;
  text-transform: uppercase;
}
#axys .axys-container article p {
  font-size: 1em;
  line-height: 1.1em;
  padding: 10px;
  font-weight: 600;
  color: #3c3c3b;
}
#axys .axys-container article:hover header {
  background: blue;
}
#axys .axys-container article:hover header h1 {
  color: white;
}
@media only screen and (min-width: 768px) {
  #axys .axys-container {
    padding: 10px 50px;
  }
  #axys .axys-container article header {
    text-align: center;
  }
  #axys .axys-container article header h1 {
    font-weight: 600;
    width: 100%;
  }
  #axys .axys-container article p {
    font-size: 1.6em;
    line-height: 1.2em;
    padding: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #axys .axys-container {
    padding: 10px 30px;
  }
  #axys .axys-container article {
    width: 20%;
  }
  #axys .axys-container article header {
    text-align: center;
    padding: 10px;
  }
  #axys .axys-container article header h1 {
    font-weight: 600;
    width: 100%;
    font-size: 1.2em;
  }
  #axys .axys-container article p {
    font-size: 1em;
    line-height: 1.2em;
    padding: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  #axys .axys-container {
    padding: 10px 30px;
  }
  #axys .axys-container article {
    width: 20%;
  }
  #axys .axys-container article header {
    text-align: center;
  }
  #axys .axys-container article header h1 {
    font-weight: 600;
    width: 100%;
    font-size: 1.4em;
  }
  #axys .axys-container article p {
    font-size: 1em;
    line-height: 1.2em;
    padding: 10px;
  }
}

#sponsors {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
#sponsors .left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ECECEC;
  padding-bottom: 20px;
}
#sponsors .left h1 {
  text-align: center;
  color: #2359d9;
  font-style: italic;
  font-weight: normal;
  width: 100%;
  padding: 20px 0 20px 0;
}
#sponsors .left .images {
  padding: 10px;
  text-align: center;
  width: 100%;
}
#sponsors .left .images img {
  max-width: 60%;
}
#sponsors .right {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: white;
  padding-bottom: 20px;
}
#sponsors .right h1 {
  text-align: center;
  color: #2359d9;
  font-style: italic;
  font-weight: normal;
  width: 100%;
  padding-top: 20px;
}
#sponsors .right .images {
  padding: 10px 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
#sponsors .right .images img {
  width: 100%;
}
#sponsors .right .images div:nth-child(1) {
  width: 100%;
  max-width: 90%;
  padding: 0 5% 2% 5%;
}
#sponsors .right .images div:nth-child(2) {
  max-width: 25%;
}
#sponsors .right .images div:nth-child(3) {
  max-width: 25%;
}
#sponsors .right .images div:nth-child(4) {
  max-width: 25%;
}
@media only screen and (min-width: 1024px) {
  #sponsors {
    padding: 70px;
  }
  #sponsors .left {
    width: 40%;
  }
  #sponsors .left .images {
    width: 70%;
    text-align: left;
  }
  #sponsors .left h1 {
    width: 20%;
    font-size: 18px;
  }
  #sponsors .right {
    flex-wrap: wrap;
    width: 60%;
    background: #ECECEC;
  }
  #sponsors .right .images {
    padding: 10px;
    text-align: right;
    width: 90%;
    flex-wrap: nowrap;
  }
  #sponsors .right .images img {
    max-width: 90%;
  }
  #sponsors .right .images div:nth-child(1) {
    max-width: 90%;
    padding-bottom: 6px;
    padding-left: 0;
  }
  #sponsors .right .images div:nth-child(2) {
    min-width: 15%;
  }
  #sponsors .right .images div:nth-child(3) {
    min-width: 15%;
  }
  #sponsors .right .images div:nth-child(4) {
    min-width: 15%;
  }
  #sponsors .right h1 {
    font-size: 18px;
    width: 10%;
  }
}
@media only screen and (min-width: 1024px) {
  #sponsors {
    flex-direction: unset;
    background: #ECECEC;
    padding: 30px;
  }
}

.publicaciones {
  display: inline;
  width: 100%;
}

.titulo_top {
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #1fafa1;
  margin-bottom: 20px;
  font-style: italic;
}

.publicaciones .portfolio .portfolio-item {
  background: white;
  height: 350px;
  position: relative;
  padding: 0;
  text-align: center;
}
.publicaciones .portfolio .portfolio-item:first-child {
  border: 25px solid #cccccc;
}
.publicaciones .portfolio .portfolio-item:first-child h2 {
  color: #666666;
}
.publicaciones .portfolio .portfolio-item:first-child h3:before {
  background: #666666;
}
.publicaciones .portfolio .portfolio-item:first-child .descarga {
  display: none;
  margin-top: 30px;
}
.publicaciones .portfolio .portfolio-item:first-child .descarga .descarga_in {
  color: #5E2750;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-style: italic;
}
.publicaciones .portfolio .portfolio-item:first-child .descarga .form-group input, .publicaciones .portfolio .portfolio-item:first-child .descarga .form-group label {
  color: #1fafa1;
  padding: 0;
}
.publicaciones .portfolio .portfolio-item:first-child .bot_leer {
  background: #666666;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) {
  border: 25px solid #5E2750;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) h2 {
  color: #5E2750;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) h3:before {
  background: #5E2750;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) .descarga2 {
  display: none;
  margin-top: 30px;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) .descarga2 .descarga_in {
  color: #1fafa1;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-style: italic;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) .descarga2 .form-group input, .publicaciones .portfolio .portfolio-item:nth-child(2) .descarga2 .form-group label {
  color: #1fafa1;
  padding: 0;
}
.publicaciones .portfolio .portfolio-item:nth-child(2) .bot_leer {
  background: #5E2750;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) {
  border: 25px solid #a5e2d3;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) .descarga3 {
  display: none;
  margin-top: 30px;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) .descarga3 .descarga_in {
  color: #1fafa1;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-style: italic;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) .descarga3 .form-group input, .publicaciones .portfolio .portfolio-item:nth-child(3) .descarga3 .form-group label {
  color: #1fafa1;
  padding: 0;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) .bot_leer {
  background: #1fafa1;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) h2 {
  color: #1fafa1;
}
.publicaciones .portfolio .portfolio-item:nth-child(3) h3:before {
  background: #1fafa1;
}
.publicaciones .portfolio .portfolio-item:nth-child(4) {
  border: 25px solid #f9b04e;
}
.publicaciones .portfolio .portfolio-item:nth-child(4) h2 {
  color: #f9b04e;
}
.publicaciones .portfolio .portfolio-item:nth-child(4) h3:before {
  background: #f9b04e;
}
.publicaciones .portfolio .portfolio-item:nth-child(4) .bot_leer {
  background: #f9b04e;
}
.publicaciones .portfolio .portfolio-item:nth-child(5) {
  border: 25px solid #4f7ae1;
}
.publicaciones .portfolio .portfolio-item:nth-child(5) h2 {
  color: #4f7ae1;
}
.publicaciones .portfolio .portfolio-item:nth-child(5) h3:before {
  background: #4f7ae1;
}
.publicaciones .portfolio .portfolio-item:nth-child(5) .bot_leer {
  background: #4f7ae1;
}
.publicaciones .portfolio .portfolio-item h2 {
  display: inline;
  text-transform: none;
  font-size: 22px;
  font-style: italic;
}
.publicaciones .portfolio .portfolio-item h2 i {
  font-size: 20px;
}
.publicaciones .portfolio .portfolio-item h2:after {
  display: none;
}
.publicaciones .portfolio .portfolio-item h3 {
  padding-top: 30px;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 0;
  font-style: normal;
  color: #6f6f79;
}
.publicaciones .portfolio .portfolio-item h3:before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 4px;
  right: 45%;
  left: 45%;
}
.publicaciones .portfolio .portfolio-item p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6f6f79;
  padding: 0 10px;
}
.publicaciones .portfolio .portfolio-item .caption, .publicaciones .portfolio .portfolio-item .caption2, .publicaciones .portfolio .portfolio-item .caption3 {
  padding: 0;
}
.publicaciones .portfolio .portfolio-item .caption .seccion1, .publicaciones .portfolio .portfolio-item .caption2 .seccion1, .publicaciones .portfolio .portfolio-item .caption3 .seccion1 {
  height: 135px;
  padding-top: 40px;
}
.publicaciones .portfolio .portfolio-item .caption .seccion2, .publicaciones .portfolio .portfolio-item .caption2 .seccion2, .publicaciones .portfolio .portfolio-item .caption3 .seccion2 {
  height: 175px;
  position: relative;
}
.publicaciones .portfolio .portfolio-item .bot_leer {
  padding: 10px;
  background: grey;
  color: white;
  width: 100px;
  border-radius: 35px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}
.publicaciones .portfolio .portfolio-item:hover {
  background: white;
}

@media (min-width: 780px) {
  .publicaciones .portfolio .portfolio-item {
    width: 50%;
    min-width: 350px;
  }
}
@media (min-width: 1024px) {
  .publicaciones .portfolio .portfolio-item {
    width: 33.3%;
    min-width: 400px;
  }
}
.acciones h2 {
  color: #2359D9;
}
@media (min-width: 768px) {
  .acciones h2 {
    font-size: 1.8em;
  }
}
@media (min-width: 768px) {
  .acciones {
    background: url("../img/bk-acciones1.png") top right no-repeat;
  }
}

#prensa {
  padding: 10px;
}
#prensa > h1 {
  text-align: center;
  margin: 20px 0;
  color: #2359d9;
  font-style: italic;
  font-size: 2.5em;
  font-weight: 600;
}
#prensa .prensa-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
#prensa .prensa-container .mes-container {
  width: 100%;
  margin-bottom: 20px;
}
#prensa .prensa-container .mes-container .mes {
  margin-bottom: 20px;
}
#prensa .prensa-container .mes-container h1 {
  width: 100%;
  background: #bde1f9;
  padding: 10px;
  color: #2359d9;
  font-size: 1.2em;
}
#prensa .prensa-container article {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #2359d9;
}
#prensa .prensa-container article p {
  font-size: 1.1em;
  line-height: 1.3em;
  color: #3c3c3b;
  margin-bottom: 20px;
}
#prensa .prensa-container article .link_prensa {
  display: flex;
  color: #2359d9;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}
#prensa .prensa-container article .link_prensa > li {
  margin-right: 10px;
}
#prensa .prensa-container article .link_prensa > li a {
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  #prensa .prensa-container article .link_prensa {
    margin-left: 10px;
  }
}
#prensa .prensa-container article figure {
  width: 100%;
}
#prensa .prensa-container article figure img {
  padding: 0 15%;
}
@media screen and (min-width: 480px) {
  #prensa .prensa-container article figure img {
    margin-bottom: 0;
  }
}
#prensa .prensa-container article:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 680px) {
  #prensa .prensa-container {
    padding: 10px 50px;
  }
  #prensa .prensa-container .mes-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #prensa .prensa-container .mes-container .mes {
    width: 100%;
  }
  #prensa .prensa-container .mes-container h1 {
    width: 50%;
  }
  #prensa .prensa-container article {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    min-height: 150px;
    justify-content: space-between;
    border-bottom: none;
    border-right: 1px solid #2359d9;
    padding: 0 20px;
  }
  #prensa .prensa-container article p {
    display: flex;
    font-size: 1em;
    line-height: 1.2em;
    padding: 10px;
    min-height: 120px;
  }
  #prensa .prensa-container article p b {
    width: 100%;
    display: contents;
  }
  #prensa .prensa-container article:nth-child(2n+1) {
    border-right: none;
  }
}
@media only screen and (min-width: 1024px) {
  #prensa .prensa-container {
    padding: 10px 30px;
  }
  #prensa .prensa-container .mes-container h1 {
    width: 33.3%;
  }
  #prensa .prensa-container article {
    width: 33.3%;
  }
  #prensa .prensa-container article p {
    font-size: 1em;
    line-height: 1.2em;
    padding: 10px;
  }
  #prensa .prensa-container article:nth-child(2n+1) {
    border-right: 1px solid #2359d9;
  }
  #prensa .prensa-container article:nth-child(3n+1) {
    border-right: none;
  }
}
@media only screen and (min-width: 1200px) {
  #prensa .prensa-container {
    padding: 10px 30px;
  }
  #prensa .prensa-container .mes-container h1 {
    width: 25%;
  }
  #prensa .prensa-container article {
    width: 25%;
  }
  #prensa .prensa-container article p {
    font-size: 1em;
    line-height: 1.2em;
    padding: 10px;
  }
  #prensa .prensa-container article:nth-child(3n+1) {
    border-right: 1px solid #2359d9;
  }
  #prensa .prensa-container article:nth-child(4n+1) {
    border-right: none;
  }
}

a {
  text-decoration: none;
}