*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
    min-width: 100%;
    height: 100%;
}

body.s main {
    background: url("img/bg.jpg") top center no-repeat;
    background-size: cover;
}

body main {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
}

.logo_style {
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo_style > img {
    width: 10%;
}

#content {
    display: grid;
    grid-template-columns: 78% auto;
    width:85%;
    justify-content: space-around;
    align-items: center;
}

.adv{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 0;
	margin: 0;
}

.adv > a {
	width: 26%;
}
.adv>a:hover{
	-moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);

	-webkit-transition: transform 0.5s ease-in-out;
    -moz-transition:transform 0.5s ease-in-out;
    -ms-transition:transform 0.5s ease-in-out;
}
.adv > a >img{
	width: 100%;
}

.char {
    position: relative;
    display: inline-block;
}

.char > img {
	width: 100%;
}

.char-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.5ch;
    text-wrap: nowrap;
    font-weight: bold;
    text-transform: uppercase;
	font-family: 'Carter One';
}

.text_style {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_style > span {
    font-size: 5ch;
    color: white;
    font-weight: bold;
	text-transform: uppercase;
	font-family: 'Carter One';
}
.show {
	display: block;
}

.hidden {
	display: none;
}

@media (max-width: 825px) {
	.text_style > span {
		font-size: 3ch;
	}

	.char-text {
		font-size: 1ch;
	}
}

