
/*
===================
Demo page style
===================
*/

body {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  background-color: #fff;
}

/*
=============================
Using the box-sizing property
=============================*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/*
============================
For a single horizontal line
============================*/

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #D44646;
}

/*
======================
element start here
======================
*/

h1 {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
  margin: 0 0 30px; 
  color: #0AABE1
}

.preview-item {
    padding: 40px 0;
}
.preview-item .row {
  margin-top: 50px;
  margin-bottom: 55px;
}
.preview-item h1 {
  color: #D44646;
}
.preview-item a {
    text-decoration: none;
    display: inline-block;
}
.preview-item .logo {
    font-family: "Lobster",cursive;
    display: block;
    background: url(../../images/icon/footer_logo.png) no-repeat center center;
    width: 151px;
    height: 122px;
    display: inline-block;
    padding: 40px 0;
    font-size: 24px;
    margin-bottom: 30px;
    color: #D44646;
}
.preview-item h3 {
  margin-bottom: 30px;
}

.preview-item .demo-thumb {
  width: 530px;
  height: auto;
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 2px;
  margin: 0 auto;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
}

.preview-item .demo-thumb:hover {
  border: 1px solid #5B5F61;
  box-shadow: 0px 0px 15px 5px #D44646;
  -webkit-box-shadow:0px 0px 15px 5px #D44646;
  -moz-box-shadow:0px 0px 15px 5px #D44646;

}

.preview-item .btn-default {
    color: #fff;
    background-color: #D44646;
    padding: 10px 18px;
    margin: 0 5px;
    border: 1px solid #D44646;
    border-radius: 2px;
    text-transform: capitalize;
}
.preview-item .btn-default:hover {
  background: #C82D2D; 
  color: #fff;
}

.preview-item .red {
    color: #fff;
    background-color: #fff;
    padding: 20px;
    margin: 0 5px;
    border: 3px solid #D44646;
    border-radius: 50%;
    text-transform: capitalize;
}
.preview-item .red:hover {
  background: #C82D2D; 
  color: #fff;
}

.preview-item .pink {
    color: #fff;
    background-color: #fff;
    padding: 20px;
    margin: 0 5px;
    border: 3px solid #fa4b74;
    border-radius: 50%;
    text-transform: capitalize;
}
.preview-item .pink:hover {
  background: #fa4b74; 
  color: #fff;
}

.preview-item .greyscale {
    color: #fff;
    background-color: #fff;
    padding: 20px;
    margin: 0 5px;
    border: 3px solid #454545;
    border-radius: 50%;
    text-transform: capitalize;
}
.preview-item .greyscale:hover {
  background: #454545; 
  color: #fff;
}
.square {
    border-radius: 2px !important;
}
footer {
  padding: 40px 0;
  background: #e4e4e4;
}



