/* General */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

textarea:focus, input:focus{
    outline: none;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 300;
    line-height: 1.2;
    background: #333;
    color: #efefef;
    text-align: center;
}


/* Utility */

.main-container {
    text-align: center;
}

.wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.small-wrapper {
    width: 400px;
    max-width: 90%;
}

.collapse {
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    opacity: 0;
    max-height: 0;
}
.collapse.open {
  opacity: 1;
  max-height: 1000px;
}


/* Buttons */

.btn {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    display: inline-block;
    padding: 15px 20px;
    margin: 0;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    border-radius: 5px;
    color: #FFF;
    border: 2px solid #FFF;
    background: transparent;
    cursor: pointer;
}
.btn:hover,
.btn:active {
    text-decoration: none;
    background: #0D6;
    border: 2px solid #0D6;
    color: #FFF;
}
.btn:focus {
    outline: none;
}


/* Headers */

h1, h2 {
    font-weight: 200;
    text-shadow: #666 1px 1px 1px;
    margin-bottom: 70px;
}

h1 {
    font-size: 46px;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

h2 {
    font-size: 28px;
    margin-top: 0;
}

h3 {
    font-size: 1.5em;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 0.7em;
}

h4 {
    font-size: 1.5em;
    font-weight: 300;
    margin: 0;
}


/* Navigation */

nav {
    position: fixed;
    height: 50px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

nav > ul {
    position: absolute;
    top: 0;
    right: 50px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

nav > ul > li {
    display: inline-block;
    min-width: 60px;
}

nav > ul > li > a {
    text-decoration: none;
    color: #efefef;
    height: 60px;
    line-height: 60px;
}

nav > ul > li > a.btn {
    font-size: 16px;
    padding: 10px;
    text-transform: none;
    display: inline;
}

@media (max-width: 480px) {
    nav {
      display: none;
    }
}

/* Header Element */

header {
    position: relative;
    background: radial-gradient(1300px 600px at 50% calc(100%), #36abb6,rgba(54,171,182,0)),linear-gradient(to bottom, #245C9D 0, #2FA1D0 1076px, #2FA1D0 100%);
    padding-top: 170px;
    padding-bottom: 80px;
    z-index: 0;
    min-height: 100%;
}

@media (max-width: 480px) {
    header {
      padding-top: 90px;
    }
}

header .scroll-down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 16px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

header .scroll-down span {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 2.0s infinite;
  animation: sdb05 2.0s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#about {
    background: #272822;
    padding: 50px 0;
}

.information {
    width: 400px;
    max-width: 90%;
    margin: 20px;
    text-align: center;
    font-size: 25px;
    display: inline-block;
}


/* Companies */

#companies {
  background: #F3F5F8;
  text-align: center;
  position: relative;
  padding: 30px;
  font-size: 18px;
  color: #A09D9D;
}

#companies > img {
  height: 50px;
}

/* Form */

#get-started {
    min-height: 100%;
    padding: 100px 0;
    color: #fff;
    background: radial-gradient(1300px 600px at 50% calc(100%), #36abb6,rgba(54,171,182,0)),linear-gradient(to bottom, #245C9D 0, #2FA1D0 1076px, #2FA1D0 100%);
    font-size: 22px;
    background-attachment: fixed;
    background-image: url(../images/bg1.jpeg);
}

.email-form {
    text-align: center;
}

.email-input {
    height: 40px;
    max-width: 90%;
    width: 400px;
    background: #fff;
    color: #272822;
    border: 1px solid #666;
    padding: 0 10px;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 0.7em;
    border-radius: 5px;
  }

.email-button {
    font-size: 14px;
}


/* Pricing */

#pricing {
    background: radial-gradient(1300px 600px at 50% calc(100%), #36abb6,rgba(54,171,182,0)),linear-gradient(to bottom, #245C9D 0, #2FA1D0 1076px, #2FA1D0 100%);
    padding: 100px 0;
}

#pricing a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

#pricing sup {
  font-size: 40px;
}

#pricing ul{
  list-style: none;
  font-size: 15px;
  color: #9095aa;
  padding: 0px;
  margin: 0px;
}


#pricing li {
border-bottom: 1px solid #494a5a;
padding: 0px;
margin: 0px;
text-align: center;
height: 52px;
line-height: 52px;
}


#container{
  width: 100%;
  text-align:center;
}

#pricing .whole{
  display: inline-block;
  
}



#pricing .type{
  width: 250px;
  border-radius: 5px 5px 0px 0px;
  background-color: #2b2937;
  height: 62px;
  border-bottom: 1px solid #494a5a;
}

#pricing .type p {
  font-size: 29px;
  color: white;
  text-align: center;
  padding-top: 10px;
}

#pricing .plan {
    width: 250px;
    background-color: #2b2937;
    border-radius: 0px 0px 5px 5px;
    font-style:condensed;
    font-size: 70px;
    line-height: 1.5;
    color: white;
    text-align: center;
}



#pricing .header{
  border-bottom: 1px solid #494a5a;
  padding-bottom: 25px;


}

#pricing .header span{
  font-size: 32px;
}

#pricing .month{
  font-size: 14px;
  color: #575757;
  padding: 0px;
  margin: -10px;
}

#pricing .price{
  height:80px;
}

#pricing .cart{
  
  color:white;
  position: relative;
  top: 16px;
  
}