.navdown {
    background: #1B5E7E;
    position: relative;
}

.foot{
    background: #195876;
}

.foot2 {
  background: hsl(0, 2%, 91%);
  padding: 10px 30px 3px 0px;
  font-size: 1;
  margin-top: 0.5px;
}

 /*GALERIA DE IMAGENES*/

  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 33.3%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s linear;
  }
  .column img:hover {
    filter: grayscale(0);
  }
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
    .column img {
      filter: grayscale(0) brightness(1);
    }
  }

  /*GALERIA DE IMAGENES*/

  /*CONTACTO*/

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* .mycontact{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.contact {
  position: relative;
  min-height: 100vh;
  padding: 15px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url('../img/Contacto.jpg');
  background-size: cover;
  mask-image: linear-gradient(to top right, transparent 49.5%, rgba(0, 0, 0, 0.274) 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white);
  mask-size: 75% 25%, 25% 25%, 100% 75%;
  mask-position: bottom left, bottom right, top left;
  mask-repeat: no-repeat;
}

.contact:before {
	content:'';
	position: absolute;
        top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.6);
}

.contact .content {
  max-width: 800px;
  text-align: center;
}

.contact .content h1{
display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  flex-direction: column;
  font-weight: 300;
}

.contact .content h2 {
  font-size: 40px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.contact .content p {
  font-weight: 300;
  color: rgb(255, 255, 255);
}

.container2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.container2 .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.container2 .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.container2 .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.container2 .contactInfo .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  flex-direction: column;
  font-weight: 300;
}

.container2 .contactInfo .box .text h3 {
  font-weight: 500;
  color: #ffffff;
}

.container2 .contactInfo .box2{
  position: relative;
}

.container2 .contactInfo .box2 h1 {
  color: rgb(255, 255, 255);
  text-align: center;
}

.map {
  width: 40%;
  padding: 40px;
  background: hsla(199, 65%, 28%, 0.363);
  position: relative;
}

@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .container2 {
    flex-direction: column;
  }
  .container2 .contactInfo {
    margin-bottom: 40px;
  }
  .container2 .contactInfo, .map{
    width: 100%;
  }
}

.form-group {
  position: relative;
}

.textarea {
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

/*CONTACTO END*/

/* NAVBAR */

body{
    margin:0px;
    padding:0px;
    overflow-X:hidden;
    overflow-Y:scroll;
}

.menu{
    position:relative;
    width:90%;
    z-index:9999;
    }

.my-navbar{
    width:100%;
    padding: 6px 50px;
    position: relative;
    top:0px;
    left:0;
    z-index:999;
}

.nav-item .nav-link{
    font-family:'Oswald', sans-serif;
    font-size:14px;
    font-weight:300;
    text-transform:uppercase;
    margin:0px 10px;
    position:relative;
    color:rgb(255, 255, 255);
}

.navbar-brand{
	font-size:22px;
}
    
.nav-item .nav-link:before{
    position:absolute;
    left:0;
    content:"";
    bottom:0;
    width:100%;
    height:2px;
    transform:scaleX(0);
    transform-origin:left;
    background-color:#195876;
    transition:0.5s;
}

.nav-item .nav-link:hover:before{
    transform:scaleX(1);
    transform-origin:right;
}

.navbar-scroll{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background-color:rgba(12, 9, 56, 0.7);
	padding:5px 20px;
	transition:0.5s;
	animation:scroll 0.6s 1;
}
	
@keyframes scroll{
	0%{transform:translateY(-100%);}
	100%{transform:translateY(0%);}
}

/*NOTICIAS ANTERIORES*/

.notant {
  background: #195876;
  color: #fff;
}