/*variables*/
/*colors*/
/*other vars*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 48px;
  font-weight: 100;
  line-height: 60px;
}

p {
  font-size: 18px;
  font-weight: 200;
  padding: 15px;
}

a {
  text-decoration: none;
  color: #4192d6;
}

a:hover {
  color: #2878bc;
}

code {
  background-color: #f9f9f9;
  border-radius: 3px;
  border: 1px solid #dddddd;
  font-family: Consolas, courier, monospace;
  padding: 0 5px;
}

.top-part {
  background-color: #222222;
  color: white;
}

.top-part a {
  color: #d1d1d1;
  text-decoration: underline;
}

.top-part a:hover {
  text-decoration: none;
}

.top-part p {
  color: #a6a6a6;
}

.top-part header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.top-part header h2 {
  font-family: 'Source Sans Pro', sans-serif;
  margin: -105px 0;
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.top-part header p {
  position: absolute;
  background-color: #333333;
  right: 0;
  margin: 20px;
  padding: 7px;
  font-weight: 700;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-part header p:hover {
  color: white;
}

.top-part header a {
  text-decoration: none;
}

.intro {
  text-align: center;
  margin-top: 10px;
}

.carousel {
  margin-top: 40px;
  background-image: url(/images/jekyllrb.png);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  width: 880px;
  height: 400px;
  margin: 40px 345px 0px 345px;
  -webkit-animation-name: turning;
          animation-name: turning;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-transition: all 2s;
  transition: all 2s;
}

@-webkit-keyframes turning {
  2% {
    background-image: url(/images/bootstrap.png);
  }
  20% {
    background-image: url(/images/bootstrap.png);
  }
  22% {
    background-image: url(/images/corefx.png);
  }
  40% {
    background-image: url(/images/corefx.png);
  }
  42% {
    background-image: url(/images/facebookdesign.png);
  }
  60% {
    background-image: url(/images/facebookdesign.png);
  }
  62% {
    background-image: url(/images/yeoman.png);
  }
  80% {
    background-image: url(/images/yeoman.png);
  }
  82% {
    background-image: url(/images/jekyllrb.png);
  }
  100% {
    background-image: url(/images/jekyllrb.png);
  }
}

@keyframes turning {
  2% {
    background-image: url(/images/bootstrap.png);
  }
  20% {
    background-image: url(/images/bootstrap.png);
  }
  22% {
    background-image: url(/images/corefx.png);
  }
  40% {
    background-image: url(/images/corefx.png);
  }
  42% {
    background-image: url(/images/facebookdesign.png);
  }
  60% {
    background-image: url(/images/facebookdesign.png);
  }
  62% {
    background-image: url(/images/yeoman.png);
  }
  80% {
    background-image: url(/images/yeoman.png);
  }
  82% {
    background-image: url(/images/jekyllrb.png);
  }
  100% {
    background-image: url(/images/jekyllrb.png);
  }
}

.waitload {
  -webkit-transform: none !important;
          transform: none !important;
}

main {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #333333;
}

.about h1 {
  margin-top: 90px;
  margin-bottom: 45px;
}

.project-path {
  margin-top: 90px;
}

.project-path p {
  margin: 25px;
  font-size: 21px;
  line-height: 38px;
}

/*switching buttons*/
.choices {
  font-size: 0;
}

.choices button {
  font-size: 15px;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
}

.first-choice {
  margin: 30px 0 95px 0;
}

.active {
  background-color: #327fc7;
  color: white;
  border: 1px solid #dddddd;
}

.not-active {
  -webkit-box-shadow: 0 0 1px 1px #dddddd inset;
          box-shadow: 0 0 1px 1px #dddddd inset;
  background-color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.not-active:hover {
  color: #327fc7;
  -webkit-box-shadow: 0 0 1px 1px #327fc7 inset;
          box-shadow: 0 0 1px 1px #327fc7 inset;
}

.user-organization-site,
.terminal,
.choose-theme {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.project-site,
.unknown,
.scratch {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*adding step by step lists*/
.hidden {
  display: none;
}

.block {
  border: 1px solid #dddddd;
  background-color: white;
  width: 980px;
  margin: 70px 0;
  position: relative;
  list-style-type: none;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.block h2 {
  font-size: 30px;
  font-weight: 300;
}

.block p {
  font-size: 18px;
  line-height: 30.6px;
  padding: 0;
}

.block img {
  max-width: 700px;
}

.block .small {
  font-size: 14px;
}

.block .repo {
  max-width: 450px;
  padding: 10px 20px;
  border-left: 1px solid #dddddd;
}

.block .clone-repo-head {
  max-width: 440px;
}

.block .choices {
  padding-top: 15px;
}

.block .demo-gif {
  -webkit-box-shadow: 0px 30px 90px -3px rgba(0, 0, 0, 0.63);
          box-shadow: 0px 30px 90px -3px rgba(0, 0, 0, 0.63);
  max-width: 850px;
  margin-bottom: 10px;
}

.block .download-github {
  max-width: 900px;
  margin-bottom: 0;
  margin-top: -30px;
}

/*sliding up blocks*/
.slide-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.create-repo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #327fc7;
  color: white;
  padding-top: 12px;
  font-size: 30px;
}

.repo-text {
  padding-top: 40px;
}

.small {
  padding-bottom: 0;
  padding-top: 10px;
  font-size: 14px;
}

.padding {
  padding: 30px 10px 50px 10px;
}

.padding h2 {
  padding: 10px;
}

.no-padding-img {
  padding-bottom: 0;
}

.no-margin-img {
  margin-bottom: -3px;
}

.fas {
  font-size: 35px;
  font-weight: bolder;
  text-align: center;
  color: #327fc7;
  border: solid 0.01em #dddddd;
  border-radius: 50%;
  padding: 32px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fas:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*section*/
section {
  text-align: center;
  margin: 100px 300px 30px 300px;
  color: #333333;
}

.extra-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 100px 0;
  border-bottom: 1px solid #dddddd;
}

.extra-options h2 {
  font-size: 30px;
  font-weight: 300;
}

.extra-options p {
  line-height: 23.8px;
}

.extra-options .small {
  padding: 10px 0;
}

.extra-options li:nth-of-type(2) {
  padding: 0 20px;
}

/*footer*/
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 300px 20px 300px;
}

nav p {
  font-size: 12px;
  padding: 15px 0;
  color: #777777;
}

nav .right-links {
  position: absolute;
  right: 0;
}

nav i {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 24px;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  color: #cccccc;
}

nav span {
  padding: 0 5px;
}

nav span:first-of-type {
  padding-left: 0;
}

nav span:last-of-type {
  padding-right: 0;
}
/*# sourceMappingURL=style.css.map */