/*settings*/
	* {margin: 0; padding: 0; outline: none; transition: .3s; font-family: "Segoe UI", sans-serif; color: #070226; box-sizing: border-box;}
	input, textarea, button, select, label {border: none; cursor: pointer; box-sizing: border-box;}
	button {position: relative; overflow: hidden; cursor: pointer; font-size: 16px;}
	button:after {content: ''; position: absolute; width: 20px; height: 200%; background: rgba(255,255,255,.2); top: -30px; left: -100%; transform: rotateZ(35deg); transition: 1.2s;}
	button:hover:after {left: 120%; transition: 1.2s;}
	a {text-decoration: none; cursor: pointer;}
	li {list-style-type: none;}
	img {max-width: 100%; height: auto; width: 100%;}
	.container {width: 1180px; max-width: 100%; margin: 0 auto;}
/*settings*/
/*animations*/
	@keyframes play{
		0% {transform: scale(0);}
		100% {transform: scale(1);}
	}
/*animations*/