@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;900&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
}

:root {
  --black: #4d4d4f;
  --white: #fff;
  --light-color: #87878786;
  --light-bg: #ded7d2;
  --google-color: #4285f4;
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
  --linkedin-color: #0e76a8;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: var(--white);
}

html::-webkit-scrollbar-thumb {
  background: var(--black);
}

section {
  padding: 5rem 4%;
}
 
.btn {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.7rem;
  border: 0.1rem solid #ffffff;
  border-radius: 10rem;
  padding: 1.5rem 4rem;
}

.btn:hover {
  background: #005ca9;
  color: var(--white);
}

/*
.boton {
  color: #005ca9;
  font-weight: 600;
  font-size: 1.7rem;
  border: 0.1rem solid #32a7ca;
  border-radius: 10rem;
  padding: 1.5rem 4rem;
}

.boton:hover {
  background: #005ca9;
  color: var(--white); 
} */

.go-top-btn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  border-radius: 50%;
  cursor: pointer;
  /* height: 100px;
  width: 100px; */
  /* background: #fff;
  border: 3px solid #333;
  display: none;
  justify-content: center;
  align-items: center; */
  z-index: 1000;
}

.go-top-btn img {
  width: 50px;
  height: 50px;
}

.heading {
  font-size: 3.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* home start*/

.home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/industria2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

.home h1 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--white);
}

.home p {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-transform: none;
  color: var(--white);
}

/* home end*/

/* header start */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100px;
  background: #005ca9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /*background: red;*/
  padding: 0px 50px;
}

nav .navbar .nav-links {
  line-height: 100px;
  /*height: 100%;*/
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 20px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 100px;
  left: 0;
  line-height: 40px;
  background: #005ca9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  line-height: 40px;
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 30px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #005ca9;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #005ca9;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #005ca9;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  /*padding: 5rem 9%;*/
  display: flex;
  align-items: center;
  z-index: 100;
}

.header.active {
  background: #005ca9;
  padding: 3rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header.active .logo,
.header.active .navbar a,
.header.active .menu {
  color: var(--white);
}

/* header end */

/* acerca start*/
.acerca .box-container .box .image {
  height: 100%;
}

.acerca .box-container .box .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.acerca .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.acerca .box-container .box p {
  font-size: 1.7rem;
  line-height: 1.5;
  margin: 1.5rem;
  color: var(--black);
  text-transform: none;
  text-align: justify;
}

hr {
  border: 0;
  height: 5px;
  background: #005ca9;
  background-image: linear-gradient(to right, #005ca9 , #4285f4, #ccc);
}
/* acerca end */

/* about start*/
.about .box-container .box .image {
  height: 100%;
}

.about .box-container .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.about .box-container .box p {
  font-size: 1.7rem;
  line-height: 1.5;
  margin: 1.5rem;
  color: var(--black);
  text-transform: none;
  text-align: justify;
}

hr {
  border: 0;
  height: 5px;
  background: #005ca9;
  background-image: linear-gradient(to right, #005ca9 , #4285f4, #ccc);
}
/* about end */

/* services */
.services {
  background: var(--white);
  /* margin: 10px; */
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 5rem;
}

.services .box-container .box {
  background: #5c88ad;
  text-align: center;
  border-radius: 3rem;
  padding: 3rem;
}

.services .box-container .box img {
  margin-bottom: 2rem;
}

.services .box-container .box h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.services .box-container .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--white);
}

.services .box-container .box:hover {
  background: var(--black);
}

.services .box-container .box:hover h3,
.services .box-container .box:hover p {
  color: var(--white);
}

.services .box-container .box:hover img {
  filter: invert(100%);
}

#cuyo{
  background-color: #c21725;
}

#nea{
  background-color: #904560;
}

#noa{
  background-color: #c54711;
}

#pampeana{
  background-color: #008380;
}

#patagonica{
  background-color: rgb(130, 76, 134);
}

#laboral{
  background-color: #69abe5;
}

#establecimientos{
  background-color: #5182ab;
}

/* carrousel start*/
/* 
.carrousel{
  width: auto;
}

.conteCarrousel{
  width: 800px;
  height: 500px;
  overflow: hidden;
}

.itemCarrousel{
  position: relative;
  width: 100%;
  height: 100%;
}

.itemCarrouselTarjeta{
  width: 100%;
  height: 100%;
}

.itemCarrouselArrows{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px; 
}

.itemCarrouselArrows > i:hover {
  cursor: pointer;
}

#itemCarrousel-1{
  background-color: rgb(226, 50, 50);
}

#itemCarrousel-2{
  background-color: rgb(50, 200, 226);
}

#itemCarrousel-3{
  background-color: rgb(200, 226, 50);
}

#itemCarrousel-4{
  background-color: rgb(216, 35, 192);
}

.conteCarrouselController{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.conteCarrouselController > a{
  text-decoration: none;
  font-size: 10em;
  color: var(--black);
}

.itemCarrouselArrows > a > i{
  color: var(--black);
} */

/* carrousel end*/


/**********************************/
/******* Category News CSS ********/
/**********************************/
.cat-news {
  position: relative;
  width: 100%;
  padding: 0;
}

.cat-news .col-md-6 {
  margin-bottom: 30px;
}

.cat-news h2 {
  color: #005ca9;
  font-size: 35px;
  font-weight: 700;
  margin-left: 40px;
}

.cat-news h2 i {
  position: absolute;
  top: 8px;
  left: 15px;
  font-size: 28px;
}

.cat-news .cn-img {
  position: relative;
  overflow: hidden;
}

.cat-news .cn-img img {
  width: 100%;
}

/* .cat-news .cn-img:hover img {
  filter: blur(5px);
  -webkit-filter: blur(5px);
} */

.cat-news .cn-content {
  position: absolute;
  top: 0; 
  right: 0;
  bottom: 0; 
  left: 0;
  padding: 15px 10px 15px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
  display: flex;
  align-items: flex-end;
}

.cat-news .cn-content a.cn-date {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  transition: .3s;
  letter-spacing: 1px;
}

.cat-news .cn-content a.cn-date i {
  margin-right: 5px;
}

.cat-news .cn-content a.cn-date:hover {
  text-decoration: underline;
}

.cat-news .cn-content a.cn-title {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  transition: .3s;
}

.cat-news .cn-content a.cn-title:hover {
  color: #005ca9;
}

.cat-news .slick-prev,
.cat-news .slick-next {
  top: -35px;
  width: 28px;
  height: 28px;
  z-index: 1;
  transition: .5s;
  color: #ffffff;
  background: #005ca9;
}

.cat-news .slick-prev {
  left: calc(100% - 85px);
}

.cat-news .slick-next {
  right: 14px;
}

.cat-news .slick-prev:hover,
.cat-news .slick-prev:focus,
.cat-news .slick-next:hover,
.cat-news .slick-next:focus {
  color: #ffffff;
  background: #857e7e;
}

.cat-news .slick-prev::before,
.cat-news .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.cat-news .slick-prev::before {
  content: "\f104";
}

.cat-news .slick-next::before {
  content: "\f105";
}


/* services end*/


/* mapa powerbi start*/

.contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contenedor .caja-contenedora .caja p {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 1.5rem;
  padding-inline: 20px;
  color: var(--black);
  text-transform: none;
}

.contenedor .caja-contenedora .caja .imagen {
  height: 45rem;
}

.contenedor .caja-contenedora .caja .imagen img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  
} 


.contenedor .caja-contenedora .caja .imagen iframe {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  
} 


/* footer*/
.footer {
  PADDING: 20px;
  margin-top: 40px;
  text-align: center;
  background-color: #005ca9;
}

.footer .logo {
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.footer .logo span {
  font-weight: normal;
}

.footer p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  color: #fff;
}

.footer .socials {
  background: #262626 ;
  border-radius: 20px;
  cursor: pointer;
}

/* footer */

/* media queries */
@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav {
    position: absolute;
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #005ca9;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 2rem;
  }

  .header.active {
    padding: 1.5rem;
  }

  .section {
    padding: 3rem 2rem;
  }

  .home h1 {
    font-size: 5rem;
  }

  .about .box-container .box .image {
    height: 40rem;
  }

  .itemCarrouselTarjeta{
    width: 50%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}
 
/* @media (min-width: 600px) {
  .wide {
    grid-column: span 2;
  }

  .tall {
    grid-row: span 2;
  }
}  */

@media screen and (max-width:800px) {
  .content-modal{
      width: 90%;
  }
}
