* {
  margin: 0;
}
@font-face {
  font-family: 'SFPRODISPLAYBOLD';
  src: url('../fonts/sfpro/SFPRODISPLAYBOLD.OTF');
}
@font-face {
  font-family: 'SFPRODISPLAYMEDIUM';
  src: url('../fonts/sfpro/SFPRODISPLAYMEDIUM.OTF');
}
@font-face {
  font-family: 'SFPRODISPLAYREGULAR';
  src: url('../fonts/sfpro/SFPRODISPLAYREGULAR.OTF');
}
@font-face {
  font-family: 'OleoScriptSwashCaps-Regular';
  src: url('../fonts/OleoScriptSwashCaps-Regular.ttf');
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'SFPRODISPLAYREGULAR';
  overflow-x: hidden;
}
/************ HEADER **************/
header {
  background: url(../images/header-bg.png);
  height: 177px;
  background-size: cover;
  position: relative;
}
header .logo {
  background: #FFFFFF;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  width: 275px;
  height: 201px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 45px;
}
header .logo img {
  width: 255px;
  margin: 2% auto;
  display: block;
}
@media (max-width: 600px) {
  header {
    height: 115px;
  }
  header .logo img {
    width: 145px;
    margin: 4% auto;
  }
  header .logo {
    width: 156px;
    height: 118px;
  }
  .sectionCenter h4 {
    font-size: 30px;
    line-height: 43px;
  }
}
/***************** SECTION ************/
.sectionCenter {
  background: url(../images/bg-img.png);
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 50px;
}
.sectionCenter h4 {
  text-align: center;
  font-family: 'OleoScriptSwashCaps-Regular';
  font-size: 37px;
  line-height: 63px;
  letter-spacing: 0.03em;
  color: #363636;
  width: 33%;
  margin: auto;
  font-weight: 100;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.sectionCenter h4 span {
  opacity: 0;
  filter: blur(4px);
}
.sectionCenter h4 span:nth-child(1) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(2) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(3) {
  animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(4) {
  animation: fade-in 0.8s 1.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(5) {
  animation: fade-in 0.8s 2.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(6) {
  animation: fade-in 0.8s 2.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(7) {
  animation: fade-in 0.8s 2.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(8) {
  animation: fade-in 0.8s 2.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.sectionCenter h4 span:nth-child(9) {
  animation: fade-in 0.8s 2.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}
.project-list {
  margin-top: 30px;
}
.project-list .project-img {
  position: relative;
}
.project-list .project-img img {
  width: 100%;
  cursor: pointer;
}
.project-list .project-img a {
  position: absolute;
  left: 26px;
  bottom: 5%;
  cursor: pointer;
}
.project-list .project-img a img {
  width: 39px;
}
.project-list h5 {
  font-size: 22.2325px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000000;
  font-family: 'SFPRODISPLAYBOLD';
}
.project-list hr {
  border-style: dashed;
  border-color: #000;
  width: 340px;
  margin: 5px auto;
}
.project-list p {
  font-size: 18.2325px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #000000;
}
.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
@media (max-width: 600px) {
  .project-list .project-img a img {
    width: 30px;
  }
  .sectionCenter h4 {
    width: 100%;
    font-size: 30px;
    line-height: 42px;
  }
  .project-list h5 {
    font-size: 18px;
  }
  .project-list hr {
    width: 273px;
  }
  .project-list p {
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) and (max-width: 992px) {
  .sectionCenter h4 {
    width: 65%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .sectionCenter h4 {
    width: 48%;
  }
}
/************* FOOTER **************/
footer {
  background: #000;
  padding: 8px 0px;
}
footer p {
  margin-bottom: 0px;
  color: #f8f8f8ba !important;
  font-size: 13px;
  letter-spacing: 0.03em;
  margin-top: 3px;
}
footer a {
  color: #f8f8f8ba !important;
  font-size: 13px;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.f-12 {
  font-size: 12px;
}
@-webkit-keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.project-img {
  display: inline-block;
  background: #fff;
  padding: 8px;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}