@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
b, strong {
  font-weight: bold;
}
h1 {
  font-size: 40px;
  margin-bottom: 30px;
  margin-top: 60px;
}
h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}
h1 a,
h2 a,
h3 a {
  color: #424242;
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover {
  color: #F73859;
}
p {
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 5px;
}
a {
  text-decoration: underline;
  color: #424242;
}
a:hover {
  color: #F73859;
}


html,
body {
  height: 100%;
  background: #eee;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  color: #424242;
  line-height: 1;
}

#logo {
  position: fixed;
  top: 10px;
  left: 32px;
  z-index: 100;
}
#logo svg {
  width: 83px;
  height: 40px;
  fill: #F73859;
  transition: fill 200ms ease;
}

#menu {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0);
}
#menu .burger-time {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
#menu .burger-time svg {
  width: 48px;
  height: 48px;
  stroke-width: 5;
  stroke-linecap: round;
  stroke: #8e929b;
}
#menu .burger-time svg line {
  transition: all 0.15s ease-out;
}
#menu ul {
  opacity: 0;
  width: 700px;
  margin: 64px auto 0 auto;
  list-style: none;
}
#menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}
#menu ul li a {
  display: block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  padding: 8px 0;
  transition: all 1s ease;
}
#menu ul li a:hover {
  color: #F73859;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 200ms ease;
}
.menu-active {
  overflow: hidden;
}
.menu-active #logo svg {
  fill: white;
  transition: fill 200ms ease 400ms;
}
.menu-active #menu {
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  animation: openmenu 350ms forwards;
}
.menu-active #menu .burger-time svg line {
  stroke: #fff;
}
.menu-active #menu .burger-time svg line:nth-child(1) {
  transform-origin: 20px 10px;
  animation: tocrosstop 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.menu-active #menu .burger-time svg line:nth-child(3) {
  transform-origin: 20px 30px;
  animation: tocrossbot 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.menu-active #menu .burger-time svg line:nth-child(2) {
  opacity: 0;
  transition: opacity 400ms ease;
}
.menu-active #menu ul {
  opacity: 1;
}
@keyframes openmenu {
  50% {
    height: 100%;
    width: 72px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes tocrosstop {
  0% {
    transform: none;
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes tocrossbot {
  0% {
    transform: none;
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

header {
  padding: 96px 0 48px 0;
  background-color: #f9f9f9;
  margin-bottom: 48px;
}

header .container {
  padding-left: 32px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: auto;
  align-items: flex-start;
}

header .container h1 {
  flex: 1 1 50%;
  max-width: 320px;
  min-width: 160px;
  text-align: left;
  margin: 0;
  padding: 0 32px 0 0;
  font-size: 64px;
  line-height: 60px;
}

header .container h1 span {
  display: block;
  font-weight: bold;
}

header .container article {
  flex: 1 1 50%;
  padding-right: 32px;
}

header .container article p {
  font-size: 24px;
}

section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto 64px auto;
  padding: 0 32px;
}
.thumb {
  flex: 1 1 50%;
  max-width: 320px;
  min-width: 160px;
  height: 240px;
  background-size: cover;
  background-position: center;
  order: 1;
}
.section-article {
  flex: 1 1 50%;
  padding-left: 20px;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}
section article h2 {
  margin-top: 0;
  margin-bottom: 8px;
}


.project {
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
    max-width: 1120px;
    width: calc(100% - 64px);
}

.media-container {
  width: 100%;
}

footer {
  width: 100%;
  color: #0f0f0f;
  padding: 5px 20px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  padding-left: 20px;
}

.footer-links {
  flex: 1;
  text-align: left;
}

.footer-links a {
  color: #0f0f0f;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-icons {
  flex: 1;
  text-align: right;
}

.footer-icons a svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.footer-icons a {
  margin-left: 10px;
}


@media (max-width: 720px) {
  #logo {
    left: 20px;
  }
  #menu {
    right: 20px;
  }

  footer {
    padding: 8px 8px;
  }

  .footer-links a {
    margin-right: 5px;
    font-size: 16px;
  }

  .footer-icons a {
    margin-left: 2px;
  }

  .project {
    margin-left: 20px;
    margin-right: 20px;

  }

  section {
    padding: 0 20px;
  }

  header {
    padding: 80px 0 36px 0;
  }

  header .container {
    margin: 0 auto;
    padding-left: 20px;
  }

  header .container article {
    padding: 0;
  }
  .section-article {
    padding-left: 0;
  }

  header .container h1, header .container article, .section-article {
    flex-basis: 100%;
  }

.project {
    padding: 0;
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
}


}
