/*
==============================================
CSS STYLES 
==============================================
*/
/*
==============================================
1.0 Global Styles & Variables
==============================================
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,600;1,300;1,600&display=swap");
html, body {
  height: 100%;
  width: 100%;
  background: url("../img/particle-bg.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: "Barlow", "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

html.uid, body.uid {
  height: 100%;
  width: 100%;
  background-color: #24292e;
  background: url("../img/particle-bg.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: "Barlow", "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #24292e;
  text-decoration: none;
}

/*
==============================================
2.0 Content Styles
==============================================
*/
.content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    height: auto;
    min-height: 100vh;
  }
}

.solid-logo {
  align-content: center;
  align-self: center;
  visibility: hidden;
  height: auto;
}
.solid-logo svg {
  height: 100%;
  display: block;
  width: 100%;
}
@media (max-width: 500px) {
  .solid-logo svg {
    height: 75%;
    width: 100%;
  }
}

.wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 80vh;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  position: relative;
}

a.button {
  display: flex;
  background: #24292e;
  color: #fff;
  text-decoration: none;
  border: 1px solid #f2aa4f;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  align-content: center;
  align-items: center;
  align-self: center;
  justify-content: center;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.25rem;
  width: auto;
  padding: 0.75rem;
  padding-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  margin: 0 0.25rem;
}
a.button:hover {
  background: #191c20;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.4);
}
a.button span.icon {
  margin-right: 0rem;
}
a.button span.icon img {
  max-width: 52%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
  opacity: 0.4;
}
@media screen and (max-width: tablet) {
  a.button {
    font-size: 1rem;
    padding: 0.5rem;
    max-width: 225px;
  }
  a.button span.icon img {
    max-width: 20px;
    width: 100%;
  }
}

footer {
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 1rem 0 1rem 0;
  align-items: center;
  position: fixed;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  background: rgba(35, 40, 45, 0.9);
}
@media screen and (max-width: 768px) {
  footer {
    justify-content: space-around;
    position: relative;
    flex-direction: column;
  }
}
footer .footer-logo {
  padding-left: 2rem;
  display: flex;
  align-content: center;
  color: #fff;
}
footer .footer-logo img {
  max-width: 60px;
  width: 100%;
  cursor: pointer;
}
footer .footer-logo a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  footer .footer-logo {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .contact {
  padding-right: 2rem;
}
@media (max-width: 500px) {
  footer .contact {
    padding-right: 0rem;
  }
}
footer .contact a {
  text-decoration: none;
  color: #fff;
  background: rgba(36, 41, 46, 0.075);
  border-radius: 2px;
  padding: 0.5rem;
  box-shadow: inset 0px -2px 0px 0px #2f363c;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
footer .contact a:hover {
  text-decoration: none;
  color: #f2aa4f;
  box-shadow: inset 0px -120px 0px 0px #2f363c, 0px 2px 0px 0px #f2aa4f;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

a.footer-link, a.info-link {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
a.footer-link:hover, a.info-link:hover {
  border-bottom: 1px solid #f2aa4f;
}

.wrapper {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: space-around;
}

.CTA-block {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .CTA-block {
    max-width: 100%;
  }
  .CTA-block a.button {
    margin: 0.5rem;
  }
}

.shape-trees-logo {
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1 {
  margin: 0;
  color: #fff;
  position: relative;
  top: -4rem;
  margin: -1rem;
}

svg.st-logo {
  display: flex;
  width: 500px;
  height: 500px;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  svg.st-logo {
    max-width: 500px;
    width: 100%;
    height: 400px;
    padding-top: 16rem;
  }
}

.info-block {
  display: flex;
  flex-direction: column;
  width: 75%;
  margin: 1rem auto;
  justify-content: center;
  text-align: center;
  /*border-top: 1px solid rgba(255,255,255,0.1);*/
  /* margin: 1rem 0; */
}
@media screen and (max-width: 768px) {
  .info-block {
    padding-bottom: 1rem;
  }
}
.info-block p {
  color: #fff;
}

.editors-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  /*border-top: 1px solid rgba(255,255,255,0.1);*/
  /* margin: 1rem 0; */
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .editors-block {
    padding-bottom: 1rem;
  }
}

h3, h4 {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0;
}

ul, ul.editors {
  list-style-type: none;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  justify-content: center;
}
ul li, ul.editors li {
  list-style: none;
  list-style-type: none;
  text-align: center;
  line-height: 1.5;
}
ul li.title, ul.editors li.title {
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem 0;
}
ul li p, ul.editors li p {
  margin: 0;
  padding: 0;
}
ul li p.title, ul.editors li p.title {
  font-weight: 600;
}
ul li p.sub-title, ul.editors li p.sub-title {
  font-weight: 300;
  font-stlye: italic;
}
ul li a, ul.editors li a {
  color: #fff;
}
ul li a:hover, ul.editors li a:hover {
  border-bottom: 1px solid #f2aa4f;
}

html.uid ul, html.uid ul.editors {
  display: flex;
  justify-content: center;
  align-items: center;
}
html.uid ul.card, html.uid ul.editors.card {
  display: flex;
  flex-direction: column;
  background: #32383e;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px 0, 0, 0, 0.4;
  padding: 0.75rem;
  margin: 1rem auto;
}
html.uid ul li.card, html.uid ul.editors li.card {
  display: flex;
  flex-direction: column;
  background: #32383e;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px 0, 0, 0, 0.4;
  padding: 0.75rem;
  margin: 0.5rem;
}
html.uid ul li p, html.uid ul.editors li p {
  color: #fff;
}
html.uid ul li p.name, html.uid ul.editors li p.name {
  font-weight: 600;
}
html.uid ul li span.sub-title, html.uid ul.editors li span.sub-title {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 768px) {
  html.uid ul, html.uid ul.editors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*
==============================================
3.0 Animations
==============================================
*/
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
==============================================
fadeInDelay
==============================================
*/
.fadeInDelay {
  animation-name: fadeInDelay;
  -webkit-animation-name: fadeInDelay;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDelay {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
