@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  --orange-color: #F55A00;
  --orange-background: rgba(245, 90, 0, .6);
  --dark-grey: #2d2d2d;
}

* {
  box-sizing: border-box;
}

.container {
  width: 1000px;
  margin: auto;
}

ul {
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

h1 {
  color: #717171;
}

body {
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  background-color: #010101;
}

span {
  border: 1px solid var(--orange-color);
  background-color: var(--dark-grey);
  padding: .75rem;
  margin: .25rem 0;
  border-radius: 5px;
  color: whitesmoke;
}

.row {
  display: flex;
  max-width: 1000px;
  color: whitesmoke;
  padding: 1rem;
}

.justify-align-center {
  justify-content: center;
  align-items: center;
}

.big-orange-button {
  color: whitesmoke;
  background-color: rgba(245, 90, 0, .6);
  min-width: 291px;
  min-height: 51px;
  border-radius: 6px;
  border: 3px solid #F55A00;
  margin: .5rem 0;
  letter-spacing: .5rem;
  font-size: 18px;
  cursor: pointer;
}


.big-orange-button:hover {
  background-color: var(--orange-color);
}

.hidden {
  display: none;
}

.background-push {
  background-image: url(../images/pushbackground.png);
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  max-width: 100%;
  height: 150vh;
}

.background-pull {
  background-image: url(../images/pullbackground.png);
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  max-width: 100%;
  height: 150vh;

}
.background-legs {
  background-image: url(../images/legsbackground.png);
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  max-width: 100%;
  height: 150vh;
}

.column-full {
  flex-basis: 100%;
}

i {
  color: var(--orange-color);
}

.fa-angle-double-left {
  cursor: pointer;
}

.loader {
  background-color: rgba(0, 0, 0, 0.664);
  position: fixed;
  width: 100%;
  height: 100%;
}

#bars1 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  margin: -25px 0 0 -25px;
}

#bars1 span {
  position: absolute;
  display: block;
  bottom: 10px;
  width: 9px;
  height: 5px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-animation: bars1 1.5s  infinite ease-in-out;
          animation: bars1 1.5s  infinite ease-in-out;
}

#bars1 span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#bars1 span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#bars1 span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#bars1 span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@keyframes bars1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #000000;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
}
@-webkit-keyframes bars1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #000000;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
}
