html {
  /* font-family: "MuseoSans-500"; */
  background-color: #000;
  background-image: url(bg/header.jpg), url(bg/footer.jpg);
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
body {
  margin: 0;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
h2 {
  margin-top: 62px;
  font-size: 42px;
}
h3 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 18px;
}
p {
  font-size: 24px;
}
a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.text-links {
  margin: 16px 0;
}
a.text-link {
  padding: 4px;
  display: inline-block;
  border-bottom: 1px dotted transparent;
  margin: 0 8px;
}
a.text-link:hover {
  border-bottom-color: #fff;
  /* text-decoration-line: underline;
  text-decoration-style: dotted; */
}
.wa:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(l2.png);
  vertical-align: middle;
  margin-right: 8px;
}
.li:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(wa2.png);
  vertical-align: middle;
  margin-right: 8px;
}

header,
footer,
section {
  max-width: 960px;
  margin: 0 auto;
}
section {
  border-top: 1px solid transparent;
}
#section-hello {
  height: 319px;
  padding: 0 8px;
}
#section-what-we-do {
  background: url(bg/projects.jpg) center bottom no-repeat;
  padding-bottom: 180px;
}
#section-projects {
  margin-top: -180px;
  background: url(bg/slider.jpg) center bottom no-repeat;
  padding-bottom: 370px;
}
#section-other-works {
  margin-top: -370px;
}
header {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}
footer {
  padding-bottom: 63px;
}
.underlogo {
  font-size: 11px;
  opacity: 0.7;
  padding-left: 1px;
  padding-top: 2px;
  text-align: left;
}
hr {
  border-bottom: 1px solid #18e591;
  width: 55px;
  margin: 30px auto;
}
.quattro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.quattro-item {
  flex: 0 0 calc(50% - 32px);
}
.quattro p {
  font-size: 20px;
}
.quattro hr {
  margin: 22px auto;
}

/* PROJECTS */
.projects {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.project {
  width: 301px;
  height: 236px;
  background: rgba(2, 153, 207, 0.2);
  position: relative;
  flex: 0 0 301px;
}
.project:hover {
  background: rgba(2, 153, 207, 1);
}
.project:before {
  content: "";
  background: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.project-inner {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* SLIDER */
.slider {
}
.slider-inner {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
}
.slider-train {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all ease 0.4s;
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider > .project {
  width: 960px;
  height: 517px;
}
.slider-nav {
  height: 40px;
  display: flex;
  justify-content: space-between;
  user-select: none;
}
.slider-nav-arrow {
  font-size: 36px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
.slider-nav-arrow.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.slider-nav-arrow:hover {
  background-color: rgba(2, 153, 207, 0.2);
}
.slider-nav-dots {
  display: flex;
  align-items: center;
}
.slider-nav-dot {
  background: linear-gradient(to bottom, #323232 0%, #000000 100%);
  border: 1px solid #3b3b3b;
  width: 11px;
  height: 11px;
  margin: 2px;
  cursor: pointer;
}
.slider-nav-dot.active {
  border: 1px solid #f5e46d;
  background: linear-gradient(to bottom, #f4e159 0%, #c2b23b 100%);
}

@media only screen and (max-width: 960px) {
  .slider > .project {
    margin: 0 auto;
    width: 320px;
    height: 172px;
  }
  a.text-link {
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .quattro {
    justify-content: center;
  }
  .quattro p {
    font-size: 16px;
    height: auto;
  }
  .quattro-item {
    flex-basis: calc(100% - 16px);
  }
  .projects {
    justify-content: center;
  }
  .projects > .project {
    margin: 8px;
  }
  p {
    font-size: 16px;
  }
  h2 {
    margin-top: 22px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 24px;
  }
  hr {
    margin: 16px auto;
  }
}
