@charset "UTF-8";

* {
	padding: 0;
	margin: 0;
	border: 0;
}

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

:focus,
:active {
	outline: none;
}

a:focus,
a:focus-visible,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

a:hover {
	text-decoration: none;
}

ul, ol {
	margin: 0;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

html,
body {
	height: 100%;
	margin: 0 !important;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	font-style: normal;
	color: #010101;
	mix-blend-mode: normal;
	background-color: #fff;
	padding-right: 0;
}

body.lock {
	overflow: hidden;
}

[class*=-container] {
	max-width: 1374px;
	width: 100%;
	padding-inline: 15px;
	margin: 0 auto;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}

.wrapper>main {
	flex: 1 1 auto;
}

.wrapper>* {
	min-width: 0;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 48px;
}

.header-title {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.header-title span:first-child {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: "Roboto";
	font-weight: 700;
	font-size: 24px;
}

.header-title span.header-title-divider,
.header-title span:last-child {
	font-family: "Roboto";
	font-weight: 300;
	font-size: 20px;
}

.header .menu-top-menu-container {
	padding-inline: 0;
}

.header .menu {
	display: flex;
	align-items: center;
	margin: 0;
	margin-right: -15px;
}

.header .menu a {
	text-transform: uppercase;
	line-height: 1;
	color: #010101;
	padding-inline: 12px;
	transition: all 0.4s ease-in;
}

.header .menu a:hover,
.header .menu .current-menu-item a {
	color: #0055A4;
}

.header .menu .menu-item {
	position: relative;
}

.header .menu .menu-item:last-child a {
	padding-right: 0;
	vertical-align: middle;
}

.header .menu .menu-item img {
	width: 24px !important;
	height: 18px !important;
}

.header .menu .menu-item .sub-menu {
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 0;
	margin-left: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease-in;
}

.header .menu .menu-item:hover .sub-menu {
	max-height: 150px;
	padding-top: 2px;
}

.header .menu .menu-item .sub-menu li+li {
	margin-top: 2px;
}

.header .icon-menu {
	display: none;
}

#home {
	display: flex;
}

#home .hero {
	position: relative;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 24px;
	padding-inline: 15px;
}

#home .hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	width: 38.263889%;
	background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
}

#home .hero-content {
	display: flex;
	align-items: center;
	gap: 48px;
}

#home .hero-card {
	border-radius: 12px;
	overflow: hidden;
	filter: drop-shadow(0px 36px 22px rgba(21, 35, 35, 0.05)) drop-shadow(0px 16px 16px rgba(21, 35, 35, 0.09)) drop-shadow(0px 4px 9px rgba(21, 35, 35, 0.1));
}

#home .hero-card-presentation {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	background-color: #EDF5F2;
	padding: 48px;
}

#home .hero-card-presentation img {
	max-width: 200px;
	aspect-ratio: 1;
	object-fit: cover;
	-o-object-fit: cover;
	border-radius: 50%;
	overflow: hidden;
}

#home .hero-card-presentation h1 {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
}

#home .hero-card-divider {
	display: inline-block;
	width: 100px;
	height: 1px;
	background-color: #3B9754;
}

#home .hero-card-subtitle {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;
	font-size: 20px;
	text-align: center;
}

#home .hero-card-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	background-color: #fff;
	padding-block: 12px;
}

#home .hero-card-links img {
	width: 24px;
	aspect-ratio: 1;
}

#home .hero-info {
	flex: 1;
}

#home .hero-info-title {
	font-weight: 700;
	font-size: 96px;
	align-items: center;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

#home .hero-info-subtitle {
	font-size: 24px;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

#home .hero-info-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 48px;
}

#home .hero-info-btn a {
	box-sizing: border-box;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	align-items: center;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 50px;
	transition: all 0.3s ease-in;
}

#home .hero-info-btn a:first-child {
	color: #fff;
	background-color: rgb(0, 85, 164);
	border: 1px solid rgb(0, 85, 164);
}

#home .hero-info-btn a:first-child:hover {
	background-color: rgb(1, 81, 157);
	border: 1px solid rgb(1, 81, 157);
}

#home .hero-info-btn a:last-child {
	color: #010101;
	border: 1px solid #010101;
}

#home .hero-info-btn a:last-child:hover {
	color: rgb(0, 85, 164);
	background-color: transparent;
	border: 1px solid rgb(0, 85, 164);
}

#home .hero-info-text {
	max-width: 456px;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

#home .hero-info-list {
	max-width: 456px;
	letter-spacing: -0.02em;
	padding-left: 24px;
	margin-left: 0;
	margin-bottom: 48px;
}

#home .hero-info-list li {
	list-style: disc;
}

#home .hero-info-skills {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: 0;
}

.footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 48px;
}

.footer-title {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-title span:first-child {
	font-size: 14px;
	letter-spacing: -0.02em;
}

.footer-title span:last-child {
	font-size: 12px;
	letter-spacing: -0.02em;
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 48px;
}

.footer-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.footer-link .footer-link-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-link span {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -0.02em;
}

.footer-link a {
	font-size: 14px;
	letter-spacing: -0.02em;
	color: #010101;
}

.footer-link a img {
	width: 16px;
	aspect-ratio: 1;
}

#services {
	display: flex;
	flex-direction: column;
}

#services .services {
	flex: 1 1 auto;
	background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
}

#services .services-container {
	max-width: 690px;
	padding-block: 96px;
}

#services .services-container h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 700;
	font-size: 40px;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 48px;
}

#services .services-container h1 svg {
	width: 24px;
	aspect-ratio: 1;
}

#services .services-container ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	background: #FFFFFF;
	box-shadow: 0px 36px 22px rgba(21, 35, 35, 0.05), 0px 16px 16px rgba(21, 35, 35, 0.09), 0px 4px 9px rgba(21, 35, 35, 0.1);
	border-radius: 3px;
	padding: 48px 24px;
}

#services .services-container ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: -0.02em;
}

#services .services-container ul li svg {
	min-width: 12px;
	max-width: 12px;
	aspect-ratio: 1;
}

#projects .projects {
	background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
}

#projects .projects-container {
	max-width: 628px;
	padding-block: 96px;
}

#projects .projects-container h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 700;
	font-size: 40px;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 48px;
}

#projects .projects-container h1 svg {
	width: 24px;
	aspect-ratio: 1;
}

#projects .projects-container>p {
	text-align: center;
	letter-spacing: -0.02em;
	margin-bottom: 48px;
}

#projects .projects-container ul {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

#projects .projects-container ul li {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0px 36px 22px rgba(21, 35, 35, 0.05), 0px 16px 16px rgba(21, 35, 35, 0.09), 0px 4px 9px rgba(21, 35, 35, 0.1);
	border-radius: 3px;
}

#projects .projects-container ul li .item-descriptions {
	flex: 0 1 53.177258%;
}

#projects .projects-container ul li .item-descriptions p {
	letter-spacing: -0.02em;
	padding-inline: 24px;
}

#projects .projects-container ul li .item-title {
	border-left: 9px solid rgb(0, 85, 164);
	padding-left: 15px;
	margin-bottom: 48px;
}

#projects .projects-container ul li .item-title h2 {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 24px;
	color: #0055A4;
	margin-bottom: 12px;
}

#projects .projects-container ul li .item-title span {
	letter-spacing: -0.02em;
}

#projects .projects-container ul li .item-image {
	flex: 0 1 46.822742%;
}

#projects .projects-container ul li .item-image img {
	max-width: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#resume .resume {
	background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
}

#resume .resume-container {
	max-width: 690px;
	padding-block: 96px;
}

#resume .resume-container h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 700;
	font-size: 40px;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 48px;
}

#resume .resume-container h1 svg {
	width: 24px;
	aspect-ratio: 1;
}

#resume .resume-download {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#resume .resume-download a {
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #FFFFFF;
	background: #0055A4;
	border-radius: 50px;
	padding: 12px 24px;
}

#resume .resume .list-title {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 24px;
}

#resume .resume-list {
	margin-block: 48px;
}

#resume .resume-list li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 48px;
	background: #FFFFFF;
	box-shadow: 0px 36px 22px rgba(21, 35, 35, 0.05), 0px 16px 16px rgba(21, 35, 35, 0.09), 0px 4px 9px rgba(21, 35, 35, 0.1);
	border-radius: 3px;
	padding: 48px 24px;
}

#resume .resume-list li+li {
	margin-top: 48px;
}

#resume .resume-title {
	min-width: 28.557%;
	max-width: 28.557%;
}

#resume .resume-title h2 {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 24px;
	color: #0055A4;
	margin-bottom: 12px;
}

#resume .resume-title p {
	letter-spacing: -0.02em;
}

#resume .resume-title p+p {
	margin-top: 12px;
}

#resume .resume-descriptions p {
	letter-spacing: -0.02em;
}

#resume .resume-descriptions p+p {
	margin-top: 24px;
}

#resume .resume-descriptions p+p::before {
	content: "• ";
}

#resume .resume-skills {
	display: flex;
	flex-direction: column;
	gap: 48px;
	background: #FFFFFF;
	box-shadow: 0px 36px 22px rgba(21, 35, 35, 0.05), 0px 16px 16px rgba(21, 35, 35, 0.09), 0px 4px 9px rgba(21, 35, 35, 0.1);
	border-radius: 3px;
	padding: 48px 24px;
	margin-bottom: 48px;
}

#resume .resume-skills h2 {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 24px;
	color: #0055A4;
}

#resume .resume-skills ul {
	display: flex;
	align-items: center;
	-moz-column-gap: 48px;
	column-gap: 48px;
	row-gap: 24px;
	flex-wrap: wrap;
}

#resume .resume-skills ul li {
	flex: 0 1 calc(50% - 24px);
	display: flex;
	align-items: center;
	gap: 10px;
}

#resume .resume-skills ul li svg {
	max-width: 12px;
	min-width: 12px;
	aspect-ratio: 1;
}

#resume .resume-more {
	text-align: center;
}

#resume .resume-more span {
	letter-spacing: -0.02em;
	margin-right: 12px;
}

#resume .resume-more a {
	letter-spacing: -0.02em;
	text-decoration-line: underline;
	color: #0055A4;
}

#contacts {
	display: flex;
	flex-direction: column;
}

#contacts .contacts {
	flex: 1 1 auto;
	background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
}

#contacts .contacts-container {
	max-width: 690px;
	padding-block: 96px;
	padding-inline: 15px;
}

#contacts .contacts-container h1 {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		font-weight: 700;
		font-size: 40px;
		letter-spacing: -0.02em;
		margin-top: 0;
		margin-bottom: 48px;
}

#contacts .contacts-container h1 svg {
	width: 24px;
	aspect-ratio: 1;
}

#contacts .contacts-container .wpcf7 {
	padding: 48px;
	background: #FFFFFF;
}

#contacts .contacts-container form .names-inputs {
	display: flex;
	align-items: center;
	gap: 24px;
}

#contacts .contacts-container form p {
	margin-bottom: 48px;
}

#contacts .contacts-container form p label {
	letter-spacing: -0.02em;
}

#contacts .contacts-container form p label span:first-child {
	color: rgba(0, 85, 164, 1);
}

#contacts .contacts-container form input {
	max-width: 100%;
	width: 100%;
	color: rgba(1, 1, 1, 1);
	border-color: rgba(1, 1, 1, 1);
	border-top: none;
	border-left: none;
	border-right: none;
	border-radius: 0;
	padding-top: 0;
}

#contacts .contacts-container form textarea {
	max-width: 100%;
	width: 100%;
	max-height: 54px;
	color: rgba(1, 1, 1, 1);
	border-color: rgba(1, 1, 1, 1);
	border-top: none;
	border-left: none;
	border-right: none;
	border-radius: 0;
	resize: none;
}

#contacts .contacts-container form .contacts-btn p {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: end;
	margin-bottom: 0;
}

#contacts .contacts-container form .wpcf7-submit {
	max-width: fit-content;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 12px 24px;
	background: #0055A4;
	border-radius: 50px;
}

@media (max-width: 1100px) {
	.header .header-container {
		padding: 24px;
	}

	.header .header-title {
		flex-direction: column;
		align-items: start;
	}

	.header .header-title-divider {
		display: none;
	}
}

@media (max-width: 1024.5px) {
	.header .header-menu {
		position: absolute;
		top: 0;
		right: -100%;
		z-index: 2;
		height: 100%;
		width: 100%;
		background: linear-gradient(333.99deg, rgba(219, 228, 166, 0.2) 0%, rgba(255, 255, 255, 0) 99.52%), #E1EDE8;
		transition: right 0.3s ease-in;
		padding-top: 110px;
	}

	.header .menu {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		padding-left: 32px;
	}

	.header .menu a {
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -0.02em;
		text-transform: uppercase;
		color: #010101;
	}

	.header .menu a:hover,
	.header .menu .current-menu-item a {
		color: rgb(0, 85, 164);
	}

	.open-menu .header .header-menu {
		display: block;
		right: 0;
	}

	.header .icon-menu {
		display: block;
		position: relative;
		width: 24px;
		height: 21px;
		z-index: 15;
		background-color: inherit;
		border: none;
		border-radius: 0;
	}

	.header .icon-menu:focus-visible {
		outline: none;
	}
}

@media (max-width: 1024.5px) and (any-hover: none) {
	.header .icon-menu {
		cursor: default;
	}
}

@media (max-width: 1024.5px) {

	.header .icon-menu span,
	.header .icon-menu::before,
	.header .icon-menu::after {
		content: "";
		transition: all 0.3s ease 0s;
		right: 0;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #0055A4;
	}

	.header .icon-menu::before {
		top: 0;
	}

	.header .icon-menu::after {
		bottom: 0;
	}

	.header .icon-menu span {
		top: calc(50% - 1px);
	}

	.open-menu .header .icon-menu span {
		width: 0;
	}

	.open-menu .header .icon-menu::before {
		top: calc(50% - 1px);
		transform: rotate(-45deg);
	}

	.open-menu .header .icon-menu::after {
		bottom: calc(50% - 2px);
		transform: rotate(45deg);
	}
}

@media (max-width: 768.5px) {
	#home .hero {
		padding-top: 0;
		padding-bottom: 48px;
	}

	#home .hero::before {
		width: 100%;
		top: 25.254582%;
	}

	#home .hero-content {
		flex-direction: column;
	}

	#home .hero-info-title {
		font-weight: 700;
		font-size: 64px;
	}

	.footer-container {
		flex-direction: column;
		gap: 24px;
		padding-top: 48px;
		padding-bottom: 52px;
	}

	.footer-title {
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}

	#resume .resume-list li {
		flex-direction: column;
	}

	#resume .resume-title {
		min-width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.footer-container {
		flex-direction: column-reverse;
	}

	.footer-title {
		flex: 1;
		flex-direction: column;
		align-items: start;
		gap: 6px;
		order: 4;
	}

	.footer-links {
		flex-wrap: wrap;
		-moz-column-gap: 5px;
		column-gap: 5px;
		row-gap: 24px;
	}

	.footer-link {
		flex: 0 1 calc(50% - 22.5px);
		align-items: start;
	}

	.footer-link:nth-child(1) {
		order: 1;
	}

	.footer-link:nth-child(2) {
		order: 3;
	}

	.footer-link:nth-child(3) {
		order: 2;
	}

	#projects .projects-container ul li {
		flex-direction: column;
	}

	#projects .projects-container ul li .item-descriptions {
		padding-block: 48px;
	}

	#projects .projects-container ul li .item-image {
		width: 100%;
	}

	#resume .resume-container {
		padding-block: 48px;
		padding-inline: 24px;
	}

	#resume .resume-container h1 {
		margin-bottom: 24px;
	}

	#resume .resume-download {
		flex-direction: column-reverse;
		gap: 48px;
	}

	#resume .resume .list-title {
		width: 100%;
		display: inline-block;
		text-align: center;
	}

	#resume .resume-skills ul {
		flex-direction: column;
		align-items: start;
		gap: 12px;
	}
	
	#contacts .contacts-container {
		padding-block: 48px;
	}
	
	#contacts .contacts-container .wpcf7 {
		padding-inline: 24px;
	}
	
	#contacts .contacts-container form .names-inputs {
		flex-direction: column;
		gap: 0;
	}
	
	#contacts .contacts-container form .names-inputs p {
		width: 100%;
	}
	
	#contacts .contacts-container form textarea {
		max-height: 82px;
	}
}

