* {
	margin: 0px;
	padding: 0px;
}

html,body {
	width: 100%;
	height: 100%;
}

/*BORDER*/

.border-large {
	border-radius: 250px;
}

.border-medium {
	border-radius: 150px;
}

.border-small {
	border-radius: 50px;
}

/*IMAGENES RESPONSIVE*/

.display {
	display: inline-block;
	vertical-align: middle;
}

.no-decoration {
	text-decoration: none;
}

.img-responsive {
	width: 100%;
	height: auto;
}

.img-opacity:hover {
	opacity: .5;
	transition: .2s;
}

/*TAMAÑOS DE CONTAINER*/

.container {
  max-width: 700px;
  width: 100%;
  padding: 45px 20px; 
}

.container-fluid-x-large {
	width: 100%;
	height: 100%;
}

.container-fluid-large  {
	width: 100%;
	height: 75%;
}

.container-fluid-medium {
	width: 100%;
	height: 50%;
}
.container-fluid-x-medium {
	width: 100%;
	height: 40%;
}

.container-fluid-small {
	width: 100%;
	height: 25%;
}

.container-fluid-x-small {
	width: 100%;
	height: 15%;
}

.container-fluid-footer {
	width: 100%;
	height: 30%;
}

/*_________________________*/

.container-x-large {
	width: 75%;
	margin: auto;
	height: 100%;
}

.container-large {
	width: 75%;
	margin: auto;
	height: 75%;
}

.container-medium {
	width: 75%;
	margin: auto;
	height: 50%;
}
.container-x-medium {
	width: 75%;
	margin: auto;
	height: 40%;
}

.container-small {
	width: 75%;
	margin: auto;
	height: 25%;
}

.container-x-small {
	width: 75%;
	margin: auto;
	height: 15%;
}

.container-footer {
	width: 75%;
	margin: auto;
	height: 30%;
}

.columna {
	float: left;
	margin-right: 2%;
	display: inline-block;
}

/*ALINEACIONES DE TEXTOS*/

@media screen and (min-width: 200px) and (max-width: 479px) {
	.text-right {
		text-align: center;
	}
	.text-left {
		text-align: center;
	}
	.text-center {
		text-align: center;
	}
	.text-justify {
		text-align: justify;
	}
}
@media screen and (min-width: 480px) and (max-width: 959px) {
	.text-right {
		text-align: right;
	}
	.text-left {
		text-align: left;
	}
	.text-center {
		text-align: center;
	}
	.text-justify {
		text-align: justify;
	}
}
@media screen and (min-width: 960px) {
	.text-right {
		text-align: right;
	}
	.text-left {
		text-align: left;
	}
	.text-center {
		text-align: center;
	}
	.text-justify {
		text-align: justify;
	}
}

/*DISEÑO Y DESARROLLO DE COLUMNAS*/


@media screen and (min-width: 200px) and (max-width: 479px) {
	.total .columna {
		width: 100%;
		height: 100%;
	}
	.dos-columnas .columna {
		width: 100%;
		height: 50%;
	}
	.dos-columnas .columna:nth-child(1n) {
		margin-right: 0;
	}
	.tres-columnas .columna {
		width: 100%;
		height: 100%;
	}
	.tres-columnas .columna:nth-child(1n) {
		margin-right: 0;
	}
	.cuatro-columnas .columna {
		width: 100%;
		height: 25%;
	}
	.cuatro-columnas .columna:nth-child(1n) {
		margin-right: 0;
	}
	.seis-columnas .columna {
		width: 100%;
		height: 16.66%;
	}
	.seis-columnas .columna:nth-child(1n) {
		margin-right: 0;
	}
}
@media screen and (min-width: 480px) and (max-width: 959px) {
	.total .columna {
		width: 100%;
		height: 100%;
	}
	.dos-columnas .columna {
		width: 49%;
		height: 100%;
	}
	.dos-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
	.tres-columnas .columna {
		width: 32%;
		height: 100%;
	}
	.tres-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
	.cuatro-columnas .columna {
		width: 49%;
		height: 50%;
	}
	.cuatro-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
	.seis-columnas .columna {
		width: 49%;
		height: 33.33%;
	}
	.seis-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
}
@media screen and (min-width: 960px) {
	.total .columna {
		width: 100%;
		height: 100%;
	}
	.dos-columnas .columna {
		width: 49%;
		height: 100%;
	}
	.dos-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
	.tres-columnas .columna {
		width: 32%;
		height: 100%;
	}
	.tres-columnas .columna:nth-child(2n) {
		margin-right: 0;
	}
	.cuatro-columnas .columna {
		width: 23.5%;
		height: 100%;
	}
	.cuatro-columnas .columna:nth-child(4n) {
		margin-right: 0;
	}
	.seis-columnas .columna {
		width: 15%;
		height: 100%;
	}
	.seis-columnas .columna:nth-child(6n) {
		margin-right: 0;
	}
}

/*tamaños de fuente y colores*/
@media screen and (min-width: 200px) and (max-width: 479px) {
	p {
		font-size: 70%;
		font-family: helvetica;
	}
}
@media screen and (min-width: 480px) and (max-width: 959px) {
	p {
		font-size: 90%;
		font-family: helvetica;
	}
}
@media screen and (min-width: 960px) {
	p {
		font-size: 100%;
		font-family: helvetica;
	}
}

.text-white {
	color: white
}
.text-black {
	color: black
}
.text-orange {
	color: orange
}
.text-fuchsia {
	color: fuchsia
}
.text-purple {
	color: purple
}
.text-olive {
	color: olive
}
.text-gray {
	color: gray
}
.text-blue {
	color: blue
}
.text-red {
	color: red
}
.text-yellow {
	color: yellow
}
.text-darkred {
	color: darkred
}
.text-darkblue {
	color: darkblue
}
.text-lightblue {
	color: lightblue
}
.text-tomato {
	color: tomato
}

/*FORMULARIOS*/

input {
	border:none;
	padding: 1%;
	box-sizing: border-box;
}

/*lista de padding*/

.padding-10 {
	padding: 10%;
	box-sizing: border-box;
}
.padding-9 {
	padding: 9%;
	box-sizing: border-box;
}
.padding-8 {
	padding: 8%;
	box-sizing: border-box;
}
.padding-7 {
	padding: 7%;
	box-sizing: border-box;
}
.padding-6 {
	padding: 6%;
	box-sizing: border-box;
}
.padding-5 {
	padding: 5%;
	box-sizing: border-box;
}
.padding-4 {
	padding: 4%;
	box-sizing: border-box;
}
.padding-3 {
	padding: 3%;
	box-sizing: border-box;
}
.padding-2 {
	padding: 2%;
	box-sizing: border-box;
}
.padding-1 {
	padding: 1%;
	box-sizing: border-box;
}
.padding-05 {
	padding: 0.5%;
	box-sizing: border-box;
}