/**
Parte Noticias
 */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.card {
  width: 300px;
  margin: 10px;
  background-color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.card figure {
  margin: 0px;
}
.card:hover .card__caption {
  top: 50%;
  transform: translateY(-50%);
}
.card:hover .card__image {
  transform: translateY(-10px);
}
.card:hover .card__thumb::after {
  top: 0;
}
.card:hover .card__snippet {
  margin: 20px 0;
}
.card__thumb {
  position: relative;
  max-height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .card__thumb {
    max-height: 500px;
  }
}
.card__thumb::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__thumb::after {
    top: calc(100% - 140px);
  }
}
.card__image {
  transition: 0.5s ease-in-out;
}
.card__caption {
  position: absolute;
  top: 50%;
  z-index: 1;
  padding: 0 20px;
  color: white;
  transform: translateY(-50%);
  text-align: center;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__caption {
    top: calc(100% - 110px);
    transform: unset;
  }
}
.card__title {
  display: -webkit-box;
  max-height: 85px;
  overflow: hidden;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 28px;
  text-shadow: 0px 1px 5px black;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card__snippet {
  display: -webkit-box;
  max-height: 150px;
  margin: 20px 0;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  transition: 0.5s ease-in-out;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (min-width: 1024px) {
  .card__snippet {
    margin: 60px 0;
  }
}
.card__button {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 1px solid white;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.card__button:hover {
  color: black;
  background-color: white;
}

@font-face {
  font-family: "Ethnocentric";
  src: url("../../fonts/ethnocentric/ethnocentric rg.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Ethnocentric";
  src: url("../../fonts/ethnocentric/ethnocentric rg it.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "poppins";
  src: url("../../fonts/ethnocentric/Poppins-Regular.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "poppins";
  src: url("../../fonts/ethnocentric/Poppins-Bold.ttf") format("ttf");
  font-weight: bold;
}
h1,
h2,
h3 {
  font-family: "Ethnocentric";
}

body {
  font-family: "poppins", sans-serif;
  color: #101010;
  background-color: #ffffff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.denuncia-page {
  background: #eef5f4;
}

.denuncia-hero {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.denuncia-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 34, 43, 0.82),
    rgba(0, 122, 112, 0.58)
  );
}

.denuncia-shell {
  position: relative;
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0;
}

.denuncia-card {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(8, 38, 49, 0.28);
  padding: 38px;
}

.denuncia-heading {
  margin-bottom: 24px;
  text-align: left;
  width: 100%;
}

.denuncia-heading span {
  color: #007a70;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.denuncia-heading h3 {
  color: #0d2933;
  font-family: "poppins", sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 12px;
  text-transform: none !important;
}

.denuncia-heading p {
  color: #557079;
  font-size: 16px;
  margin: 0;
  max-width: 760px;
}

.denuncia-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.denuncia-page #denuncia_form label {
  color: #173b45;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.denuncia-page #denuncia_form input,
.denuncia-page #denuncia_form textarea {
  background: #f7fbfb;
  border: 1px solid #c9dfde;
  border-radius: 16px;
  color: #173b45;
  font-size: 16px;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.denuncia-page #denuncia_form textarea {
  min-height: 170px;
  resize: vertical;
}

.denuncia-page #denuncia_form input:focus,
.denuncia-page #denuncia_form textarea:focus {
  background: #ffffff;
  border-color: #00a896;
  box-shadow: 0 0 0 4px rgba(0, 168, 150, 0.16);
  outline: none;
}

.denuncia-page #denuncia_form .btn-primary {
  background: linear-gradient(135deg, #007a70, #00a896);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 122, 112, 0.28);
  font-weight: 700;
  padding: 13px 34px;
}

@media (max-width: 767px) {
  .denuncia-card {
    border-radius: 20px;
    padding: 24px 18px;
  }

  .denuncia-grid {
    grid-template-columns: 1fr;
  }
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.custom_heading {
  position: relative;
  margin-left: 45px;
}
.custom_heading::before {
  position: absolute;
  content: "";
  left: -45px;
  width: 37px;
  height: 40px;
  background-image: url(../../../pr/logo2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*header section*/
.hero_area {
  height: 98vh;
  background-image: url(../../images/hero.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.sub_page .hero_area {
  height: auto;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.public-header-plain {
  background: linear-gradient(135deg, #123846, #007a70);
  box-shadow: 0 14px 32px rgba(18, 56, 70, 0.18);
  position: relative;
  z-index: 10;
}

.public-header-plain .custom_nav-container {
  padding-bottom: 18px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 30px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.navbar-brand,
.navbar-brand:hover {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  color: #fafcfd;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 0;
  max-width: min(760px, 100%);
}

.navbar-brand img {
  width: 45px;
}

.navbar-brand img.brand-letterhead {
  height: auto;
  max-height: 92px;
  object-fit: contain;
  width: min(760px, 88vw);
}

.navbar-brand span {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Ethnocentric";
}

.custom_nav-container {
  z-index: 99999;
  padding: 18px 0;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .navbar-brand img.brand-letterhead {
    max-height: none;
    width: 340px;
    max-width: calc(100vw - 28px);
  }

  .custom_heading {
    margin-left: 0;
    padding-left: 42px;
  }

  .custom_heading::before {
    left: 0;
  }
}
.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../../images/menu.png);
  background-size: 35px;
}

/*end header section*/
.hero_section {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75%;
}
.hero_section h1 {
  font-size: 85px;
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: 0 auto;
}
.hero_section .hero_btn-box a {
  display: inline-block;
  padding: 12px 55px;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  margin-top: 55px;
  text-transform: uppercase;
}
.hero_section .hero_btn-box a:hover {
  background-color: #ffffff;
  color: #0022ff;
}

.sub_page .about_section .about_container {
  margin-top: 0;
}

.about_section .about_container {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 45px;
  margin-top: -150px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.21);
}
.about_section .about_container .container {
  display: flex;
  justify-content: space-between;
}
.about_section .about_container .container > div {
  width: 46%;
}

.about_section .detail a {
  display: inline-block;
  padding: 14px 35px;
  background-color: transparent;
  border: 1.5px solid #0022ff;
  color: #0022ff;
  color: #3c63ff;
  margin-top: 75%;
}
.about_section .detail a:hover {
  background-color: #0022ff;
  color: #ffffff;
}
.about_section .detail-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product_section .container {
  display: flex;
  flex-wrap: wrap;
}
.product_section .img-box {
  margin: 1%;
  display: flex;
}
.product_section .img-box img {
  width: 100%;
}
.product_section .img-box.box-1,
.product_section .img-box.box-3 {
  width: 43%;
}
.product_section .img-box.box-2,
.product_section .img-box.box-4 {
  width: 53%;
}
.product_section a {
  display: inline-block;
  padding: 14px 35px;
  background-color: transparent;
  border: 1.5px solid #0022ff;
  color: #0022ff;
  color: #3c4cff;
}
.product_section a:hover {
  background-color: #0022ff;
  color: #ffffff;
}

.why_section .why_container .img_box {
  width: 85%;
  margin: 0 auto;
}
.why_section .why_container .img_box img {
  width: 100%;
}
.why_section a {
  display: inline-block;
  padding: 14px 35px;
  background-color: transparent;
  border: 1.5px solid #0022ff;
  color: #0022ff;
  color: #3c4cff;
}
.why_section a:hover {
  background-color: #0022ff;
  color: #ffffff;
}

.contact_section {
  color: #fff;
  background: url(../../images/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.contact_section input {
  width: 100%;
  border: 0;
  height: 50px;
  border-radius: 30px;
  margin: 20px 0;
  padding-left: 25px;
  background-color: #ffffff;
  outline: none;
  color: #101010;
}
.contact_section input::placeholder {
  color: #131313;
}
.contact_section input.message-box {
  height: 150px;
}
.contact_section button {
  background-color: #e92c06;
  padding: 15px 55px;
  outline: none;
  border: none;
  border-radius: 30px;
  border: 1px solid #e92c06;
  color: #fff;
  font-weight: bold;
}
.contact_section button:hover {
  color: #e92c06;
  background-color: transparent;
}

.client_section .client_container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.client_section .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  min-height: 225px;
  border-radius: 100%;
  background: linear-gradient(to bottom, #04af9b, #025da8);
  --background: linear-gradient(to right, #afad04, #5da802);
  margin-right: 15px;
}
.client_section .img_box img {
  width: 75%;
}
.client_section .detail_box {
  padding: 25px;
  background: linear-gradient(to bottom, #04af9b, #025da8);
  color: #ffffff;
  display: flex;
  align-items: center;
}
.client_section .detail_box h5 {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 35px;
}
.client_section .carousel-indicators {
  justify-content: flex-end;
  width: 90%;
  margin: 0 auto;
  bottom: 30px;
}
.client_section .carousel-indicators li {
  background-color: #0f0f0f;
  margin: 0;
  height: 15px;
  width: 35px;
  opacity: 1;
}
.client_section .carousel-indicators li.active {
  background-color: #0261a1;
}

.info_section {
  background-image: url(../../images/info-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.info_section .logo-box {
  width: 200px;
  margin: 0 auto 75px auto;
}
.info_section .logo-box img {
  width: 100%;
}

.info_items {
  width: 65%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.info_items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}
.info_items .item .img-box {
  width: 50px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}
.info_items .item .img-box img {
  width: 100%;
}
.info_items .item .detail-box {
  margin-top: 10px;
  color: #fff;
}

.info_items {
  position: relative;
}
.info_items a {
  position: relative;
}

/* footer section*/
.footer_section {
  background-color: #ffffff;
  padding: 20px;
  font-weight: 500;
}

.footer_section p {
  color: #292929;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #292929;
}

/* end footer section*/
.backdrop {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.21);
  background: none;
}

.rounded_white {
  border-radius: 50px;
  border: white solid 1px;
}

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