﻿body {
	margin: 0;
	padding: 0;
	background: #faf1e3;
}

.plug__header {
	display: block;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	height: 7.3%;
}

.plug {
	position: relative;
	font-size: 0;
	overflow: hidden;
}

.plug .plug__desktop, .plug .plug__mobile {
	max-width: 100%;
	margin: 0 auto;
}

.plug__desktop {
	display: block;
}

.plug__mobile {
	display: none;
}

.plug__button {
	display: block;
	font-size: 0;
	position: absolute;
	width: 22%;
	top: 63%;
    left: 56%;
}

.plug__button img {
	max-width: 100%;
}

@media (max-width: 575px) {
	.plug__desktop {
		display: none;
	}

	.plug__mobile {
		display: block;
	}
	.plug__header {
	    height: 9.4%;
	}
	.plug__button {
		width: 51%;
	    top: 37%;
	    left: 0;
	    right: 0;
	    margin: auto;
	}
}