@font-face {
	font-family: 'Graphik';
	src: url('font/Graphik-Regular.woff2') format('woff2'),
	url('font/Graphik-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphik';
	src: url('font/Graphik-Medium.woff2') format('woff2'),
	url('font/Graphik-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphik';
	src: url('font/Graphik-Semibold.woff2') format('woff2'),
	url('font/Graphik-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}


*, *:before, *:after {
	box-sizing: border-box;
}

html, body{
	display: block;
	font-family: 'Graphik';
	margin: 0;
	padding: 0;	
}

html {
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}

header .global-container{
	padding-top: 20px;
}

.global-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 7.292vw;
	width: 100%;
}


.main-content {
	display: flex;
	padding-bottom: 30px;
	padding-top: 30px;
	justify-content: flex-start;
}


.main-content .new-left-side {
	margin-right: 30px;
	max-width: 640px;
	width: 40%;
}

.main-content .new-right-side {
	max-width: 968px;
	position: relative;
	width: 60%;
}

.main-content .new-left-side img,
.main-content .new-right-side img{
	height: auto;
	width: 100%;
	z-index: 1;
}


.main-content .btn-mail{
	background: #AB0534;
	border-radius: 36px;
	color: #FFFFFF;
	display: inline-block;
	font-size: 1.354vw;
	font-weight: 400;
	line-height: 1.771vw;
	padding: 1.042vw 3.750vw 0.990vw;
	text-align: center;
	text-decoration: none;
	z-index: 2;

	position: absolute;
	bottom: 13%;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.3s;
}

.main-content .btn-mail:hover{
	background: #4D4D4D;
}


.main-content .description {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.main-content .description h1,
.main-content .description p{
	display: none;
}

footer{
	background: #AB0534;
	min-height: 70px;
}

footer .global-container{
	padding-bottom: 16px;
	padding-top: 17px;
	text-align: center;
}

footer span{
	display: block;
}

footer span b {
	font-weight: 600;
}

footer span, footer a{
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
}


@media (min-width: 1920px){
	.global-container {
		padding: 0 140px;	
	}

	.main-content .new-right-side .btn-mail{
		font-size: 26px;
		font-weight: 400;
		line-height: 34px;
		padding: 20px 72px 19px;
	}	
}

@media (max-width: 991px) {
	.global-container {
		padding: 0 36px;	
	}

}

@media (min-width: 768px){
	.main-content .mobile-img{
		display: none;
	}
}

@media (max-width: 767px) {

	header img{
		display: block;
		margin: 0 auto;
		position: relative;
		max-width: 169px;
	}

	.main-content {
		flex-direction: column-reverse;
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.main-content .new-left-side,
	.main-content .new-right-side {
		max-width: 100%;
		margin: 0 auto;
		width: 80%;
	}

	.main-content .desktop-img{
		display: none;
	}

	.main-content .description p{
		display: block;
		margin: 22px 0 14px;
	}

	.main-content .btn-mail{
		position: relative;
		top: 0;
	}

	.main-content .btn-mail{
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 35px;
		padding: 16px 25px;
	}

	footer .global-container{
		padding-bottom: 30px;
		padding-top: 31px;
	}

	footer span:first-child{
		margin-bottom: 30px;
	}

	footer span, footer a{
		font-size: 14px;
		line-height: 24px;
	}
}

@media (max-width: 520px){
	.main-content .new-left-side,
	.main-content .new-right-side {
		width: 100%;
	}
}









