@import url('https://fonts.googleapis.com/css2?family=Spectral&display=swap');

@font-face {
	font-family: "Rutenia";
	src:
		url("font/Rutenia.woff") format("woff"),
		url("font/Rutenia.woff2") format("woff2"),
		url("font/Rutenia.ttf") format("truetype");
}

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

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

:active,
:focus {
	outline: none;
}

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

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

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

button,
input,
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:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

body {
	font-family: "Roboto", sans-serif;
}

body::-webkit-scrollbar-track {
	background: rgb(255, 255, 255);
}

body::-webkit-scrollbar-thumb {
	background: rgb(10, 0, 179);
	background: linear-gradient(180deg, rgba(10, 0, 179, 1) 0%, rgba(4, 4, 170, 1) 18%, rgba(255, 248, 0, 1) 100%);
}

body::-webkit-scrollbar {
	width: 10px;
}

.wrapper {
	overflow: hidden;
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}



.header {
	width: 100%;
	height: 300px;
	background-image: url(../img/main1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.title {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
	font-family: "Rutenia", sans-serif;
	color: #ffffff;
	font-size: 4em;
	font-weight: 600;
	text-shadow: 0px 5px 10px #000000;
}

.title a {
	color: #fff;
}

.work {
	margin-bottom: -100px;
}

.work .work__content {
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 130px;
}

.work .work__title {
	text-align: center;
	font-size: 2.6em;
	font-weight: 700;
	margin-top: 45px;
	color: #333361;
	font-family: 'Spectral', serif;
}

.work .work__content .work__card {
	position: relative;
	width: 250px;
	height: 320px;
	margin: 50px;
	transition: 0.5s;
	text-align: center;
	box-shadow: 0px 10px 25px -3px rgba(0, 0, 0, 0.6);
}

.work .work__content .work__card:hover {
	box-shadow: 0px 8px 20px 0px rgb(0, 0, 0);
}

.work .work__content .work__card .work__img img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.work .work__content .work__card .work__img,
.work .work__content .work__card .work__text {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.work .work__content .work__card .work__text {
	background-color: #000;
	height: 50px;
	opacity: 1;
	transition: 0.5s;
	cursor: pointer;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.work .work__content .work__card .work__text h3 {
	width: 100%;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition: 0.5s ease;
	padding: 16px 0px;
}

.work .work__content .work__card a:hover .work__text h3 {
	color: rgb(150, 150, 150);
}

.copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px
}

.copyright__content h2 {
	font-size: 1.8em;
	color: #333361;
	margin-bottom: 20px;
}

.copyright__content p {
	width: 920px;
	font-size: 1.2em;
	color: gray;
	padding: 6px 0px;
}

.footer {
	background: #111;
	text-align: center;
	padding: 10px;
}

.footer p {
	color: #ffffff;
	text-decoration: none;
	transition: 0.5s ease;
}

/* about */
.about {
	max-width: 880px;
	margin: 0 auto;
	margin-bottom: 180px;
	padding-top: 50px;
}

.about p {
	font-size: 1.2em;
	padding: 10px 0px;
	text-indent: 30px;
}

.sodia-title {
	text-align: center;
	font-size: 4em;
	font-weight: 700;
	margin-top: 200px;
	color: #333361;
	font-family: 'Spectral', serif;
}

@media(max-width:991px) {

	section {
		padding: 40px;
	}

	.copyright__content h2 {
		width: 100%;
	}

	.copyright__content p {
		width: 100%;
	}

	.about {
		width: 95%;
	}

	.about p {
		text-indent: 0px;
	}
}

@media screen and (max-width:500px) {

	section {
		padding: 30px;
	}

	.title {
		width: 90%;
		font-size: 12.5vw;
		text-align: center;
	}

	.copyright__content h2 {
		text-align: center;
	}

	.work .work__content .work__card {
		margin: 50px 20px;
	}

}

@media(max-width:380px) {

	.work .work__content .work__card {
		height: 10%;
		margin: 18px;
	}

}