/* line 1, ../sass/demo.scss */
html, body {
  padding: 0;
  letter-spacing:1px;
  margin: 0;
  color:#202020;
  background: #ffffff;
}

/* line 8, ../sass/demo.scss */
* {
  box-sizing: border-box;
}

/* line 12, ../sass/demo.scss */
a {
  color: #1167fa;
}

/* line 16, ../sass/demo.scss */
.clear {
  clear: both;
  float: none;
  width: 100%;
}

/* line 22, ../sass/demo.scss */
.container {
  max-width: 1170px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 32, ../sass/demo.scss */
.container .gallery a img {
  float: left;
  width: 20%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}
/* line 46, ../sass/demo.scss */
.container .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}
/* line 57, ../sass/demo.scss */
.container .gallery a.big img {
  width: 40%;
}

/* line 65, ../sass/demo.scss */
.align-center {
  text-align: center;
}




.demo{ background: #ffffff;    box-shadow: 1px 4px 9px #ddd; }
.pricingTable{
    background: linear-gradient(to bottom,transparent 24%,#fff 25%);
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    padding: 0 0 40px;
    margin: 0 15px;
   -webkit-clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
}
.pricingTable .pricingTable-header{
    color: #fff;
    padding: 45px 15px 35px;
    position: relative;
}
.pricingTable .pricingTable-header:before,
.pricingTable .pricingTable-header:after{
    content: '';
    background: #36474f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-clip-path: polygon(100% 20%, 100% 100%, 50% 90%, 0 100%, 0 0);
    clip-path: polygon(100% 20%, 100% 100%, 50% 90%, 0 100%, 0 0);
}
.pricingTable .pricingTable-header:after{
    background: #35c2ff;
    height: 95%;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 90%, 0 100%, 0 20%);
    clip-path: polygon(100% 0, 100% 100%, 50% 90%, 0 100%, 0 20%);
}
.pricingTable .title{
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.pricingTable .currency{
    font-size: 60px;
    line-height: 60px;
}
.pricingTable .amount{
    font-size: 60px;
    line-height: 70px;
}
.pricingTable .amount-sm{
    font-size: 22px;
    line-height: 35px;
    vertical-align: top;
}
.pricingTable .pricing-content{
    padding: 10px 0;
    margin: 0 30px;
    list-style: none;
}
.pricingTable .pricing-content li{
    color: #505050;
    font-size: 18px;
    line-height: 40px;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}
.pricingTable .pricing-content li:last-child{ border-bottom: none; }
.pricingTable .pricingTable-signup{
    color: #35c2ff;
    background-color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 30px;
    border: 2px solid #35c2ff ;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.pricingTable .pricingTable-signup:hover{ color: #fff; }
.pricingTable .pricingTable-signup:before{
    content: "";
    background-color: #35c2ff;
    height: 150px;
    width: 220px;
    border-radius: 50%;
    position: absolute;
    bottom: 100%;
    left: -15px;
    z-index: -1;
    transition: all 0.7s ease 0s;
}
.pricingTable .pricingTable-signup:hover:before{ bottom: -50px; }
.pricingTable.orange .pricingTable-header:after{ background-color: #FF9F00; }
.pricingTable.orange .pricingTable-signup{
    color: #FF9F00;
    border-color: #FF9F00;
}
.pricingTable.orange .pricingTable-signup:hover{ color: #fff; }
.pricingTable.orange .pricingTable-signup:before{ background-color: #FF9F00; }
.pricingTable.magenta .pricingTable-header:after{ background-color: #35c2ff;  }
.pricingTable.magenta .pricingTable-signup{
    color: #35c2ff;
    border-color: #35c2ff;
}
.pricingTable.magenta .pricingTable-signup:hover{ color: #fff; }
.pricingTable.magenta .pricingTable-signup:before{ background-color: #35c2ff; }
@media only screen and (max-width: 990px){
    .pricingTable{ margin: 0 0 30px; }
}