*,
*:before,
*:after,
input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased !important;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    min-width: 320px;
    max-width: 100%;
    position: relative;
	background: #000;
}

a, img {
    outline: none;
}

img, svg {
    max-width: 100%;
    vertical-align: top;
	border: none;
}

iframe {
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

a:hover {
    text-decoration: none
}

a:focus,
a:active {
    text-decoration: none
}

.grid {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 960px;
}

.grid__item {
	display: block;
	position: relative;
	width: 50%;
}

.item {
	display: block;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	width: 100%;
}

.item:after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 56.25%;
}

.item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

