* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	color: #000000;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px 0 15px;
}

.header {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

	position: relative;
}

.header-title {
	margin: 0;
	margin-bottom: 25px;
	font-weight: 700;
	font-size: 56px;
	line-height: 130%;
	color: #fff;
	text-align: center;
}

.header-subtitle {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 383px;
}

.header-arrow {
	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%);
}

.portfolio {
	padding-top: 80px;
	padding-bottom: 115px;
}

.portfolio-header {
	font-weight: 700;
	font-size: 46px;
	line-height: 130%;
	text-align: center;
	margin: 0 0 70px 0;
}

.portfolio-cards-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.card {
	margin-bottom: 30px;
	background-color: #fff;
	max-width: 540px;
	box-shadow: 0px 10px 40px rgba(126, 155, 189, 0.35);
	transition: transform 0.2s ease-in;
}

.card:hover {
	transform: translateY(-15px);
}

.card-link {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 20px;
	transition: color 0.2s ease-in;
}

.card-link:hover {
	color: rgb(39, 91, 236);
}

.card:nth-last-child(2),
.card:last-child  {
	margin-bottom: 0;
}

.card-img {
	margin-bottom: 20px;
}

.card-title {
	margin: 0 0 13px 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
}

.card p {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin: 0;
}

.footer {
	padding: 45px 0 130px 0;
	background: #1E4776;
	color: #fff;
}

.footer-col {
	max-width: 350px;
	flex-grow: 1;
}

.footer-row {
	display: flex;
	justify-content: space-between;
}

.footer-copyright {
	color: #7E9EC9;
	line-height: 1.3;
}

.footer-copyright-name {
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 15px;
}

.footer-copyright p {
	font-weight: 600;
	font-size: 16px;
	margin: 0;
	margin-bottom: 15px;
}


.footer-icons p {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
	
}

.footer-icons-row  {
	display: flex;
	align-items: center;
}

.footer-icons-row > * + * {
	margin-left: 30px;
}

.footer-button {
	display: inline-block;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	border: 3px solid #FFFFFF;
	border-radius: 50px;
	height: 50px;
	padding-left: 30px;
	padding-right: 30px;
	line-height: 44px;

	transition: all 0.2s ease-in;
}

.footer-button:hover {
	background-color: #fff;
	color: #1E4776;
}

.footer-contacts p {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: #7E9EC9;
	margin: 15px 0;
}


