@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}
body{
    background: white;
}
.background_main{
    background: #04267A;
    width: 100%;
    height: 20vh;
    border-radius:none;
    margin-bottom: 30px;
}
.background_main h4{
  text-align:center;
}

/*NAVBAR*/

/*Contenido Importante*/
.menu {
    float: left;
    width: 15%;
    height: 55vh;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    background: transparent;
}
.menu h2{
    color: #04267A;
}
.menu p{
    margin-top: 15px;
    font-size: 20px;
}
.contenido{
    float: left;
    width: 70%;
    margin-bottom: 30px;
    background: rgb(255, 255, 255);
}

.contenido .principal {
    width: 100%;
    height: 400px;
   	background: transparent;
}
.contenido .principal .img{
    padding-top: 25px;
    text-align: center;
    justify-content: center;    
}

/*Search*/
#target {
  background:#0099cc;
  width:300px;
  height:300px;
  padding:5px;
  display:none;
}
.Hide
{
  display:none;
}
.Hide a{
  text-decoration: none;
  color: white;
}

/*MODAL*/
.modal-confirm {		
	color: #636363;
	width: 400px;
}
.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
	text-align: center;
	font-size: 14px;
}
.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -10px;
}
.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -2px;
}
.modal-confirm .modal-body {
	color: #999;
}
.modal-confirm .modal-body i{
  color:red;
}
.modal-confirm .modal-footer {
	border: none;
	text-align: center;		
	border-radius: 5px;
	font-size: 13px;
	padding: 10px 15px 25px;
}
.modal-confirm .modal-footer a {
	color: #999;
}		
.modal-confirm .btn-secondary {
	background: #c1c1c1;
}
.modal-confirm .btn-secondary:hover, .modal-confirm .btn-secondary:focus {
	background: #a8a8a8;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}

/*FOOTER*/
.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80vh;
  padding: 0 2rem;
  color: #fff;
  background: #007bff;
}

.contact-section-header > h2 {
  font-size: 6rem;
}

@media (max-width: 28.75em) {
  .contact-section-header > h2 {
    font-size: 4rem;
  }
}

.contact-section-header > p {
  font-style: italic;
}

.contact-links {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin-top: 4rem;
  flex-wrap: wrap;
  color: #fff;
}
.contact-links a{
  color: #fff;
}
.contact-details {
  font-size: 2.4rem;
  text-shadow: 2px 2px 1px #1f1f1f;
  transition: transform 0.3s ease-out;
}

.contact-details:hover {
  transform: translateY(8px);
}

/*FOOTER END*/
@media screen and (max-width: 800px) {
    .contenido {
      width: 100%; 
    }
    .menu{
        width: 80%; 
    }
    .directory-cont{
        text-align: center;
        justify-content: center;
    }
  }
