@font-face {
  font-family: United Sans-Black;
  src: url("../fonts/UnitedSansReg-Black.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Bold;
  src: url("../fonts/UnitedSansReg-Bold.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Heavy;
  src: url("../fonts/UnitedSansReg-Heavy.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Light;
  src: url("../fonts/UnitedSansReg-Light.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Medium;
  src: url("../fonts/UnitedSansReg-Medium.otf") format("opentype");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content {
  background: #ecf0f1;
}

.content__container {
  display: -ms-grid;
  display: grid;
  position: relative;
}

.content__container--slide {
  display: none;
}

.content__container--slide-img {
  width: 100%;
}

.content__container--slide.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.content__container--dots {
  width: 100%;
  position: absolute;
  bottom: 10px;
  z-index: 2;
  text-align: center;
}

.content__container--dot {
  bottom: 10px;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.content__container--dot.active {
  background-color: #717171;
}

.content__container > * {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}

@-webkit-keyframes fade {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=home.css.map */