@font-face {
  font-family: "Inter-Bold";
  src: url("Inter-Bold.woff2");
}
@font-face {
  font-family: "Inter-Italic";
  src: url("Inter-Italic.woff2");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("Inter-Regular.woff2");
}

body {
  font-family: sans-serif;
  background: #161920;
  margin: 0;
  padding: 0;
}
header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  text-align: center;
}
nav {
  background-color: #34495e;
  padding: 0.5rem 0;
}
nav .width-800{
  max-width: 800px;
  display: flex;
    align-items: center;
    justify-content: space-between;
  gap: 2rem;
  margin: 0.5rem auto;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
}
.header-title{
	color: #fff;
    font: 14px / 20px Inter-Regular;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}
.header-links{
	    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-links a{
	display: flex;
}
.header-links a img{
	height: 38px;
}
.header-link.tg a img{
	height: 44px;
	margin-top: 2px;
}
.header-link{
	margin-right: 10px;
}
.header-link:last-child{
	margin-right: 0;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section-title{
	color: #ddd;
    font: 14px / 20px Inter-Regular;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}
.section-title.contacts{
	margin-top: 35px;
}
.section-title.stickers{
	margin-top: 35px;
}
.project.contacts .proj-info{
	margin-top: 0;
	padding: 20px 15px;
}

.project.contacts .proj-info p{
	color: #fff;
    font-family: Inter-Regular;
    font-size: 20px;
	    display: flex;
    align-items: center;
	margin-bottom: 15px;
	margin-top: 0;
}
.project.contacts .proj-info p:last-child{
	margin-bottom: 0;
}
.project.contacts .proj-info p img{
	height: 25px;
    margin-right: 10px;
}

/* projects start */
.projects-list{
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 15px;
}
.projects-list.stickers{
	grid-template-columns: 1fr 1fr 1fr;
}
.project {
  border-radius: 10px;
  background-color: #1f2733;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease-out;
}
.project h3 {
  margin-top: 0;
}
.project .image-bg-wrapper{
	position: relative;
	height: 185px;
	overflow: hidden;
}
.project .image-bg{
	width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    height: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
	transition: all 0.4s ease-out;
}
.project .proj-title{
	color: #fff;
    font-family: Inter-Regular;
    font-size: 20px;
	margin-bottom: 15px;
}
.project .proj-info{
	padding: 10px 15px;
	margin-top: 10px;
}
.project .proj-desc{
	color: #fff;
    font-family: Inter-Regular;
    font-size: 16px;
	margin-bottom: 15px;
	font-style: italic;
}
.project .proj-count{
	color: #fff;
    font-family: Inter-Regular;
    font-size: 18px;
	margin-bottom: 15px;
}
.project a{
	font-family: Inter-Regular;
	text-decoration: none;
	color: #00aff4;
}
.project a:hover{
	cursor: pointer;
	text-decoration: underline;
}
.project .video-wrapper{
	    height: 200px;
}
.project .video-wrapper video{
	    width: 100%;
    height: 100%;
    object-fit: cover;
}
.projects-list.stickers .proj-info{
	    margin-top: 7px;
}
.projects-list.stickers .proj-info .proj-title{
	font-size: 20px;
    margin-top: 0;
}

.links{
	color: #fff;
}
.links a {
  font-style: italic;
  font-size: 18px;
  display: inline-block;
  margin-right: 5px;
}
.links a:last-child {
	margin-right: 0;
}
.project:hover .image-bg-wrapper .image-bg{
	transform: scale(1.05);
}
.project:hover{
	background-color: #2a3544;
}
/* projects end */


footer {
  text-align: center;
  padding: 1rem;
  background-color: #ecf0f1;
  margin-top: 2rem;
}
