/*-----------------------------
  innner page hero component
-----------------------------*/
.hero {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 100px 0;
  background-image: linear-gradient(270deg, rgba(33, 33, 33, 0.8) 0%, rgba(33, 33, 33, 0.95) 100%), url(/imageserver/UserMedia/pinnicle/project/2021/newroof004.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero .hero-panel {
  width: 950px;
  max-width: 90%;
  position: relative;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  -webkit-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}
.hero .hero-panel h1 {
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 15px;
}

@-webkit-keyframes fadeIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/*-------------
  css normalize
---------------*/
.maincontent {
  padding: 0;
  max-width: 100%;
  border: 0;
}

.maincontent_wrapper.special_bg:before {
  margin-bottom: 64px;
}

@media (max-width: 1080px) {
  .maincontent {
    display: initial;
  }
}
/*-----------------
  videos component
------------------*/
.videos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.videos .container {
  width: 1200px;
  max-width: 95vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 20px;
}
.videos .container .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.videos .container .wrapper > * {
  flex: 1 1 30rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.videos .container .wrapper .info p {
  max-width: 40ch;
  overflow-wrap: break-word;
}/*# sourceMappingURL=videos.css.map */