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

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

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

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

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

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

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


body{
	margin: 0;
	padding: 0;
	color: #515251;
	font-family: 'Manrope';
	font-weight: normal;
}

.main-wrapper{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 1100px;
}

.innter-content{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.logo{
	width: 322px;
}
.content{
	width: 615px;
}
.content h2{
	font-size: 60px;
	line-height: 66px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	margin-bottom: 23px;
}
.content h4{
	font-size: 20px;
	line-height: 35px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	color: #424242;
}
.content .contact-details{
	margin-top: 80px;
}
.content .contact-details h3{
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	color: #999999;
	margin-bottom: 15px;
}
.content .contact-details ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.content .contact-details ul li{
	margin-right: 25px;
}
.content .contact-details ul li a{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #515251;
	text-decoration: none;
	font-weight: 600;
}
.content .contact-details ul li a img{
	margin-right: 8px;
}


@media screen and (max-width: 1024px) {
	.main-wrapper{
		position: relative;
		left: inherit;
		top: inherit;
		-webkit-transform: inherit;
		transform: inherit;
		width: 90%;
		margin: 0 auto;
	}
	.logo{
		padding: 20px 0;
	}
	.content{
		padding: 20px 0;
	}
}

@media screen and (max-width: 400px) {
	.logo{
		width: 100%;
	}
	.content .contact-details ul{
		justify-content: center;
	}
	.content .contact-details ul li{
		margin-bottom: 20px;
	}
}