.bg{
	background-image: url("../img/11.png");
	background-repeat: no-repeat;
  	background-attachment: fixed;
  	background-size: cover;
}
.bg{
	background-color: #959595;
	color: #fff;
}
.login-form-container{
	background-color: #382e2e85;
	border-radius: 10px;
	border: 5px solid #89c74a;
	box-shadow: 0px 0px 10px 10px #424040;
}
.text-white{
	color: #fff !important;
}
.about-box-1, .about-box-2{
	border: 8px solid #f8debe;
    border-radius: 10px;
	padding: 40px 30px;
	text-align: center;
	transition: 0.8s;
}
.about-box-3{
	padding: 20px 30px;
	border: 8px solid #f8debe;
    border-radius: 10px;
	text-align: center;
	transition: 0.8s;
}
.cms__content:hover{
	box-shadow: 1px 0px 15px 0px #6a481f;
    border: 8px solid #fd9c23;
    border-radius: 30px;
}
.btn--green {
    background: #1c6108 !important;
}

/***************************Legal***********************************/

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/**************************slider****************************/
#slidy-container { 
  width: 100%; overflow: hidden; margin: 0 auto;
 /* height: 550px;*/
 object-fit: cover;
}

/*****************************Gallery*******************************/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}*/

.contenedor {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}

.subtitulo {
    text-align: center;
    font-weight: 700;
    color: #9f8ad0;
    margin-bottom: 40px;
    font-size: 40px;
}

.gallery {
    background: #ffffff;
}

.contenedor-galeria{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.img-galeria {
    object-fit: cover;
    width: 98%;
    height: 250px;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgb(0, 0, 0, 0.5);
    cursor: pointer;
}

.img-galeria:hover{
    transition: all 0.3s ease-in-out;
    transform: scale(1.1);
}

.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform .2s ease-in-out;
    overflow-y: scroll;
}

.show{
    transform: translate(0);
}

.agregar-imagen {
    object-fit: cover;
    width: 50%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
    overflow-y: scroll;
}

.showImage{
    transform: scale(1);
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
    color:#fff;
    font-size: 25px;

}