@import "fonts.css";

@import "fontello.css";

@import "royalslider.css";
.progress-bar-filled {
  -webkit-animation: progressBar 1.3s;
  animation: progressBar 1.3s;
}
@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.scale-In {
  -webkit-animation: scaleIn 1s;
  animation: scaleIn 1s;
}
@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.scale-InOut {
  -webkit-animation: scaleInOut 1s;
  animation: scaleIn 1s;
}
@-webkit-keyframes scaleInOut {
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes scaleInOut {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.rotate-LR {
  -webkit-animation: rotateLR 1s;
  animation: rotateLR 1s;
}
@-webkit-keyframes rotateLR {
  25% {
    -webkit-transform: rotate(45deg);
  }
  75% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes rotateLR {
  25% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.rotate-In {
  -webkit-animation: rotateIn 1s;
  animation: rotateIn 1s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotateY(-90deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}
@keyframes rotateIn {
  0% {
    transform: rotateY(-90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.rotate-InX {
  -webkit-animation: rotateInX 1s;
  animation: rotateInX 1s;
}
@-webkit-keyframes rotateInX {
  0% {
    -webkit-transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes rotateInX {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.fadeIn {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeUp {
  -webkit-animation: fadeUp 1s;
  animation: fadeUp 1s;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation: fadeDown .6s;
  animation: fadeDown .6s;
}
.fadeDown.delay-2 {
  -webkit-animation: fadeDown .9s;
  animation: fadeDown .9s;
}
.fadeDown.delay-3 {
  -webkit-animation: fadeDown 1.2s;
  animation: fadeDown 1.2s;
}
.fadeDown.delay-4 {
  -webkit-animation: fadeDown 1.5s;
  animation: fadeDown 1.5s;
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeL {
  -webkit-animation: fadeL 1s;
  animation: fadeL 1s;
}
@-webkit-keyframes fadeL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeL {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeR {
  -webkit-animation: fadeR 1s;
  animation: fadeR 1s;
}
@-webkit-keyframes fadeR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeR {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=====================================
=            Big Animation            =
=====================================*/
.fadeIn-Big {
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut-Big {
  -webkit-animation: fadeOut 2s;
  animation: fadeOut 2s;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeUp-Big {
  -webkit-animation: fadeUp 2s;
  animation: fadeUp 2s;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown-Big {
  -webkit-animation: fadeDown 2s;
  animation: fadeDown 2s;
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeL-Big {
  -webkit-animation: fadeL 2s;
  animation: fadeL 2s;
}
@-webkit-keyframes fadeL {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes fadeL {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeR-Big {
  -webkit-animation: fadeR 2s;
  animation: fadeR 2s;
}
@-webkit-keyframes fadeR {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes fadeR {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=====================================
=            Isotope 	              =
=====================================*/
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*======= Animations 2 =======*/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
/*======= Typography =======*/
.lr {
  font-family: 'Lato';
  font-weight: 400;
}
.lb {
  font-family: 'Lato';
  font-weight: 700;
}
/*======= Colors =======*/
/*======= Unique Colors =======*/
/*======================*/
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
body {
  min-height: 100%;
}
.container {
  -webkit-backface-visibility: hidden;
}
/*===== Space blocks =====*/
.spacing-block {
  display: block;
  width: 100%;
  height: 100px;
}
.line-block {
  height: 100px;
  position: relative;
  overflow: hidden;
}
.line-block .wrapper {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}
.line-block .wrapper .line {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  background: #eeeeee;
}
.line-block .wrapper .icon {
  display: block;
  width: 46px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -23px;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  color: #dedede;
  background: #fff;
}
/*===== Line Separator =====*/
.line-separator {
  height: 1px;
  background: #eeeeee;
}
/*======= Back to top button ======*/
.back-to-top {
  display: block;
  position: fixed;
  height: 30px;
  bottom: -80px;
  right: 50px;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-radius: 3px;
  z-index: 9999;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.back-to-top:hover {
  background: #fa511a;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
/*======= Buttons =======*/
.btn {
  font-size: 13px;
  line-height: 20px;
  font-family: 'Lato';
  font-weight: 400;
  border: none;
  border-radius: 5px;
  border-bottom: 2px solid #d5d5d5;
  padding: 6px 20px 5px;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn i {
  font-size: 13px;
  line-height: 18px;
}
.btn:focus {
  outline: none;
}
.btn:hover {
  color: #fff;
}
.btn.btn-lg {
  font-size: 17px;
  line-height: 20px;
  padding: 10px 25px;
  border-radius: 10px;
}
.btn.btn-sm {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 15px 1px;
  border-radius: 5px;
}
.btn.btn-sm i {
  font-size: 12px;
  line-height: 16px;
}
.btn.btn-xs {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  padding: 2px 10px;
  border-radius: 4px;
}
.btn.btn-default {
  color: #fff;
  background-color: #bbbbbb;
  border-color: #a2a2a2;
}
.btn.btn-default:hover {
  background-color: #aeaeae;
  border-color: #959595;
}
.btn.btn-primary {
  background-color: #fa511a;
  border-color: #dc3a05;
}
.btn.btn-primary:hover {
  background-color: #f54005;
  border-color: #c33304;
}
.btn.btn-primary:focus,
.btn .btn-primary:active {
  background-color: #dc3a05;
  border-color: #aa2d04;
}
.btn.btn-success {
  background-color: #58b25e;
  border-color: #449349;
}
.btn.btn-success:hover {
  background-color: #4ca552;
  border-color: #3c8240;
}
.btn.btn-info {
  background-color: #3498db;
  border-color: #217dbb;
}
.btn.btn-info:hover {
  background-color: #258cd1;
  border-color: #1d6fa5;
}
.btn.btn-warning {
  background-color: #fbad2f;
  border-color: #f29705;
}
.btn.btn-warning:hover {
  background-color: #fba316;
  border-color: #d98804;
}
.btn.btn-danger {
  background-color: #f45252;
  border-color: #f12222;
}
.btn.btn-danger:hover {
  background-color: #f23a3a;
  border-color: #d30d0d;
}
.btn.btn-link {
  color: #fa511a;
  border: none;
}
.btn.btn-link:hover {
  color: #676767;
  border: none;
}
.btn.btn-grey {
  background-color: #686868;
  border-color: #4f4f4f;
}
.btn.btn-grey:hover {
  background-color: #5b5b5b;
  border-color: #424242;
}
.btn.btn-orange {
  background-color: #ef7b45;
  border-color: #eb5a16;
}
.btn.btn-orange:hover {
  background-color: #ed6a2e;
  border-color: #d55012;
}
.btn.btn-purple {
  background-color: #a085c6;
  border-color: #8562b6;
}
.btn.btn-purple:hover {
  background-color: #9274be;
  border-color: #7751ad;
}
.btn.btn-brown {
  background-color: #aa9570;
  border-color: #917c56;
}
.btn.btn-brown:hover {
  background-color: #a08960;
  border-color: #816e4d;
}
.btn.btn-gradient-blue {
  font-size: 14px;
  line-height: 20px;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
  /* drop shadow */

  padding: 10px 15px;
  border-radius: 9px;
  border-bottom: 3px solid #199fca;
  background-color: #4cc3e9;
  background-image: -moz-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
}
.btn.btn-gradient-blue:hover {
  background-color: #35bbe6;
  background-image: -moz-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  border-color: #168db3;
}
.btn.btn-gradient-green {
  font-size: 14px;
  line-height: 20px;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
  /* drop shadow */

  padding: 10px 22px;
  border-radius: 9px;
  border-bottom: 3px solid #769e1a;
  background-color: #9dc90b;
  background-image: -moz-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
}
.btn.btn-gradient-green:hover {
  background-color: #8ab10a;
  background-image: -moz-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  border-color: #658817;
}
.btn.square {
  border-radius: 0;
}
/*======= Page Header =======*/
.page-header {
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 0;
  display: block;
  width: 100%;
  background:#9A1F3B;
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (min-width: 768px) {
  .page-header {
    margin-top: 96px;
  }
}
.page-header h3 {
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  font-size: 32px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 0;
  float: left;
  text-transform:uppercase;
}
.page-header ul.breadcrumbs-custom {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  float: right;
  list-style: none;
  list-style-type: none;
}
.page-header ul.breadcrumbs-custom li {
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #1b1c20;
  cursor: default;
  letter-spacing: .1px;
  padding-left: 1px;
}
.page-header ul.breadcrumbs-custom li a {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  color: #1b1c20;
  letter-spacing: .1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page-header ul.breadcrumbs-custom li a:hover {
  color: #fa511a;
}
/*======= Navigation =======*/
.nav-container {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 20001;
}
@media only screen and (min-width: 768px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.nav-container nav.navbar {
  background: #fff;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}
.nav-container nav.navbar .navbar-header a.navbar-brand {
  padding: 0;
  
    margin: 12px 0;
  text-decoration: none;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-icon {
  display: inline-block;
  width: 42px;
  height: 33px;
  margin-top: 31px;
  margin-bottom: 30px;
  float: left;
  background: url(../img/home/logo-icon.png) center center no-repeat;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text {
  display: inline-block;
  margin-left: 9px;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text h3 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  margin-top: 26px;
  margin-bottom: -6px;
  color: #1b1c20;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text span {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: #cacaca;
  margin-top: 0;
}
.nav-container nav.navbar .navbar-header a.navbar-brand:hover .logo-text h3 {
  color: #f27c5a;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-header a.navbar-brand {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-header button {
  border-color: #dddddd;
  background-color: #fff;
  margin-top: 30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-header button span {
  background: #676767;
  height: 3px;
}
.nav-container nav.navbar .navbar-header button:hover {
  border-color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li {
  overflow: visible;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a {
  font-family: 'Lato';
  font-weight: 400;
  color: #858786;
  font-size: 15px;
  line-height: 22px;
  padding: 36px 15px 36px 15px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.more {
  font-size: 14px;
  line-height: 22px;
  color: #858786;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a.selected {
  color: #9A1F3B;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a.selected i {
  color: #858786;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a:hover {
  color: #9A1F3B;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a:hover i {
  color: #858786;
}
@media only screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > a {
    padding: 36px 15px 36px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > a {
    margin-bottom: 0 ;
    padding: 0 15px;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > a:before {
    content: "";
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li:last-child > a {
  padding-right: 0;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul {
  position: absolute;
  display: none;
  list-style: none;
  list-style-type: none;
  padding: 0;
  border: 1px solid #f1f1f1;
  border-top: none;
  box-shadow: none;
  left: 50%;
  margin-left: -80px;
  width: 100%;
  min-width: 160px;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li {
  width: 100%;
  background: #fff;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: flipInX;
  -webkit-animation-name: flipInX;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
  font-family: 'Lato';
  font-weight: 400;
  display: block;
  width: 158px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #a3a3a3;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
    width: 100%;
    max-width: 200px;
    text-transform: none;
    padding-left: 20px !important;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a:before {
    content: "-";
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a i {
    display: none;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a i {
  color: #a3a3a3;
  padding-right: 5px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a i.more {
  padding-right: 0;
  padding-left: 5px;
  color: #a3a3a3;
  float: right;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover {
  background: #fafafa;
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover i {
  color: #fa511a;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li:first-child a {
  border-top: none;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul {
  position: absolute;
  display: none;
  list-style: none;
  list-style-type: none;
  padding: 0;
  border: 1px solid #f1f1f1;
  border-top: none;
  box-shadow: none;
  left: 100%;
  top: 0;
  width: 100%;
  min-width: 160px;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul.left {
  left: 0;
  margin-left: -160px;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li {
  width: 100%;
  background: #fff;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: flipInX;
  -webkit-animation-name: flipInX;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a {
  font-family: 'Lato';
  font-weight: 400;
  display: block;
  width: 158px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #a3a3a3;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a i {
  color: #a3a3a3;
  padding-right: 5px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover {
  background: #fafafa;
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover i {
  color: #fa511a;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul {
    position: relative;
    display: block;
    padding-top: 0;
    padding-left: 15px;
    border: none;
    box-shadow: none;
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul.left {
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none ;
    background: #fff;
    color: #676767;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li:hover > ul {
  display: block;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul {
    position: relative;
    display: block;
    padding-top: 0;
    border: none;
    box-shadow: none;
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none ;
    background: #fff;
    color: #676767;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li:hover > ul {
  display: block;
}
/*======= Revolution Slider ======*/
.tp-banner-container {
  max-height: 879px !important;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .tp-banner-container {
    margin-top: 96px;
  }
}
.tp-banner-container .tp-banner {
  max-height: 879px !important;
}
.tp-banner-container .tp-banner ul {
  width: auto !important;
  overflow: hidden !important;
}
.tp-banner-container .tp-banner ul li .custom-cap {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(238, 238, 238, 0.8);
  border-radius: 1px;
}
.tp-banner-container .tp-banner ul li .custom-cap span.colored {
  color: rgba(250, 81, 26, 0.8);
}
.tp-banner-container .tp-banner ul li .custom-cap.cap-1 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  padding: 20px 30px;
}
.tp-banner-container .tp-banner ul li .custom-cap.cap-2 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  padding: 10px 30px;
}
.tp-banner-container .tparrows {
  width: 28px !important;
  height: 46px !important;
}
.tp-banner-container .tparrows.tp-leftarrow {
  left: 0 !important;
}
.tp-banner-container .tparrows.tp-rightarrow {
  right: 0 !important;
}
.tp-banner-container .tp-bannertimer {
  visibility: hidden !important;
}
/*======= Boxes =======*/
.boxes .row .media {
    display: block;
    margin-top: 50px;
    text-align: -webkit-center;
	 text-align: -moz-center;
}
.boxes .row .media .boxes-icon {
  display: block;
  width: 67px;
  height: 67px;
  background: #9A1F3B;
  border-radius: 50%;
  text-align: center;
  
  margin-top: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .boxes .row .media .boxes-icon {
    float: none;
    margin-bottom: 20px;
    margin-left: 20px;
  }
}
.boxes .row .media .boxes-icon i {
  font-size: 25px;
  line-height: 67px;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.boxes .row .media .media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  color: #1b1c20;
  margin-bottom: 0;
}
.boxes .row .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
}
.boxes .row .media:hover .boxes-icon {
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #9A1F3B;
  -moz-box-shadow: inset 0 0 0 2px #9A1F3B;
  box-shadow: inset 0 0 0 2px #9A1F3B;
}
.boxes .row .media:hover .boxes-icon i {
  color:#9A1F3B;
}
/*======= Portfolio Home =======*/
.portfolio-home .heading-category p {
  margin-bottom: 55px;
}
.portfolio-home .categories-portfolio ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.portfolio-home .categories-portfolio ul li {
  display: inline-block;
  padding: 2px 1px;
}
.portfolio-home .categories-portfolio ul li a {
  display: block;
  text-decoration: none;
  outline: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #989fa5;
  padding: 7px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 1px;
  cursor: default;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.portfolio-home .categories-portfolio ul li a.selected {
  background: #fa511a;
  color: #fff;
  border-color: #fff;
}
.portfolio-home .categories-portfolio ul li a:hover {
  background: #fa511a;
  color: #fff;
  border-color: #fff;
}
.portfolio-home .posts-list {
  margin-top: 60px;
}
.portfolio-home .posts-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}
.portfolio-home .posts-list ul .element {
  display: block !important;
  padding: 2px 3px;
  margin: 0 -1px;
}
@media only screen and (max-width: 767px) {
  .portfolio-home .posts-list ul .element {
    max-width: 360px;
    margin: 0 -1px;
  }
}
.portfolio-home .posts-list ul .element .wrapper {
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
.portfolio-home .posts-list ul .element .wrapper .info {
  position: absolute;
  display: block;
  bottom: 0;
  margin-bottom: -50px;
  height: 50px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.portfolio-home .posts-list ul .element .wrapper .info .title {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  line-height: 50px;
}
.portfolio-home .posts-list ul .element .wrapper .info .title i {
  font-size: 18px;
  line-height: 50px;
  color: #fa511a;
  padding-right: 10px;
}
.portfolio-home .posts-list ul .element .wrapper .info:hover {
  background: #fa511a;
}
.portfolio-home .posts-list ul .element .wrapper .info:hover .title {
  color: #fff;
}
.portfolio-home .posts-list ul .element .wrapper .info:hover i {
  color: #fff;
}
.portfolio-home .posts-list ul .element .wrapper:hover .info {
  margin-bottom: 0;
}
/*======= Portfolio Single zoveren =======*/
@media screen and (max-width: 991px) {
  .portfolio-single .content {
    margin-top: 20px;
  }
}
.portfolio-single .content h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #717171;
  margin: 0;
}
.portfolio-single .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
  margin-bottom: 0;
}
.portfolio-single .content .info ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-single .content .info ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}
.portfolio-single .content .info ul li:last-child {
  border: none;
}
.portfolio-single .content .info ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6a6a6a;
  text-transform: uppercase;
  padding-top: 20px;
}
.portfolio-single .content .info ul li span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 16px;
  padding-top: 5px;
}
.portfolio-single .content .client {
  display: block;
}
.portfolio-single .content .client .inner {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid #eeeeee;
  background: #fcfcfc;
}
.portfolio-single .content .client .inner .client-container {
  width: 100%;
  max-width: 110px;
  float: left;
}
.portfolio-single .content .client .inner .client-container span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #717171;
  margin-top: 10px;
  margin-bottom: 8px;
}
.portfolio-single .content .client .inner .client-container span.job {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #fa511a;
}
.portfolio-single .content .client .inner .testimonial {
  overflow: hidden;
}
.portfolio-single .content .client .inner .testimonial p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #b4b4b4;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 15px;
}
.portfolio-single .content .client .inner .testimonial p span.rating {
  white-space: nowrap;
}
.portfolio-single .content .client .inner .testimonial p span.rating i {
  font-size: 15px;
  color: #ffc80b;
  margin-right: -3px;
}
@media screen and (min-width: 1200px) {
  .portfolio-single-secoo .description {
    padding-left: 50px;
  }
}
@media screen and (max-width: 991px) {
  .portfolio-single-secoo .description {
    margin-top: 30px;
  }
}
.portfolio-single-secoo .description h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  color: #1b1c20;
  margin: 0;
}
.portfolio-single-secoo .description p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #afafaf;
  margin: 24px 0 0 0;
}
.portfolio-single-secoo .description .info ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-single-secoo .description .info ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}
.portfolio-single-secoo .description .info ul li:last-child {
  border: none;
}
.portfolio-single-secoo .description .info ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6a6a6a;
  text-transform: uppercase;
  padding-top: 20px;
}
.portfolio-single-secoo .description .info ul li span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 16px;
  padding-top: 5px;
}
.portfolio-single-secoo .description .social-media ul {
  padding: 0;
  margin: 0;
  padding-top: 24px;
  list-style: none;
  list-style-type: none;
}
.portfolio-single-secoo .description .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
}
.portfolio-single-secoo .description .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bbbbbb;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.portfolio-single-secoo .description .social-media ul li a i {
  display: block;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  height: 20px;
  width: 20px;
  margin: 0;
  text-align: center;
  padding: 0;
}
.portfolio-single-secoo .description .social-media ul li a:hover {
  background: #676767;
}
/*======= Product Presentation Home =======*/
@media screen and (min-width: 1200px) {
  .product-presentation-home .post-media {
    padding-left: 50px;
  }
}
.product-presentation-home .post-media h3 {
  margin-top: 0;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 26px;
  color: #1b1c20;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .product-presentation-home .post-media h3 {
    margin-top: 30px;
  }
}
.product-presentation-home .post-media p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #afafaf;
  margin-top: 30px;
  margin-bottom: 0;
}
.product-presentation-home .post-media a {
  display: inline-block;
  text-decoration: none;
  margin-top: 15px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fa511a;
  padding: 15px 30px;
  border: 1px solid #ededed;
  border-radius: 8px;
  background-image: -moz-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.product-presentation-home .post-media a:hover {
  background-image: -moz-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

}
.product-presentation-home .post-media a.clasic {
  margin-right: 5px;
}
.product-presentation-home .post-media a.colored {
  color: #fff;
  background-image: -moz-linear-gradient(bottom, #f95119, #ff845d);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #f95119, #ff845d);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #f95119, #ff845d);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #f95119, #ff845d);
  /* gradient overlay */
}
.product-presentation-home .post-media a.colored:hover {
  background-image: -moz-linear-gradient(bottom, #f9460a, #ff784e);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #f9460a, #ff784e);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #f9460a, #ff784e);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #f9460a, #ff784e);
  /* gradient overlay */
}
/*======= Testimonials =======*/
.testimonials {
  background: url(../img/home/testimonials-bg.jpg) repeat center top;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.testimonials .container {
  padding-top: 95px;
}
.testimonials .container ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}
.testimonials .container ul li {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 25px;
  padding-bottom: 40px;
  display: inline-block;
  position: relative;
}
.testimonials .container ul li a {
  text-decoration: none;
}
.testimonials .container ul li a img {
  border: 3px solid rgba(103, 103, 103, 0.3);
  background: rgba(103, 103, 103, 0.3);
  border-radius: 50%;
  opacity: .8;
}
.testimonials .container ul li a:focus {
  outline: none;
}
.testimonials .container ul li span.arrow {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid #dedede;
}
.testimonials .container ul li.testimonial-selected a img {
  opacity: 1;
  border-color: rgba(103, 103, 103, 0.6);
  background: rgba(103, 103, 103, 0.3);
}
.testimonials .container ul li.testimonial-selected span.arrow {
  display: block;
}
@media only screen and (max-width: 767px) {
  .testimonials .container ul li.testimonial-selected span.arrow {
    display: none;
  }
}
.testimonials .container .box-testimonial {
  margin-bottom: 120px;
  padding: 30px;
  background: #fff;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #dedede;
}
.testimonials .container .box-testimonial .testimonial {
  padding: 0;
}
.testimonials .container .box-testimonial .testimonial p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #a3a3a3;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #fa511a;
  text-decoration: none;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.site {
  text-decoration: underline;
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.rating {
  white-space: nowrap;
  float: right;
  padding-right: 10px;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.rating i {
  font-size: 15px;
  color: #ffc80b;
  margin-right: -8px;
}
/*======= Testimonials SECOO =======*/
.testimonials-clients {
  background: #f5f6f8;
  width: 100%;
  padding: 115px 0 145px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}
.testimonials-clients h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 26px;
  color: #1b1c20;
  text-transform: uppercase;
  margin: 0;
}
.testimonials-clients .carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: -40px;
}
.testimonials-clients .carousel .carousel-indicators li {
  border: 2px solid #a3a3a3 !important;
  background: #f5f6f8 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
}
.testimonials-clients .carousel .carousel-indicators li.active {
  border: 2px solid #a3a3a3 !important;
  background: #a3a3a3 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
  background: #a0a0a0;
}
.testimonials-clients .carousel .carousel-inner .item {
  text-align: center;
}
.testimonials-clients .carousel .carousel-inner .item p.testimonial {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a3a3a3;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 9px;
  padding: 30px 50px 60px;
  margin: 40px auto -35px;
}
@media screen and (min-width: 1200px) {
  .testimonials-clients .carousel .carousel-inner .item p.testimonial {
    max-width: 975px;
    margin: 40px auto -36px;
  }
}
.testimonials-clients .carousel .carousel-inner .item .author {
  display: block;
  max-width: 150px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-clients .carousel .carousel-inner .item .author img {
  border-radius: 50%;
  margin: 0 auto 12px;
}
.testimonials-clients .carousel .carousel-inner .item .author span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #1b1c20;
}
.testimonials-clients .carousel .carousel-inner .item .author p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #a3a3a3;
  margin: 8px 0 5px 0;
}
.testimonials-clients .carousel .carousel-inner .item .author p span.colored {
  color: #fa511a;
}
/*======= Skills =======*/
.team-skills-container .skills-members {
  padding-bottom: 30px;
}
.team-skills-container .skills-members h3 {
  font-family: 'Lato';
  font-weight: 400;
  color: #676767;
  margin-bottom: 20px;
  margin-top: 0;
}
.team-skills-container .skills-members p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
}
.team-skills-container .skills-bars ul.skills-ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg {
  display: block;
  width: 100%;
  height: 23px;
  margin-bottom: 14px;
  background: #fb774c;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max {
  display: block;
  position: relative;
  height: 23px;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fa511a;
  top: 0;
  left: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max p {
  font-family: 'Lato';
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 23px;
  color: #fff;
  font-size: 14px;
}
/*======= Team =======*/
.team-2 .heading-category h2 {
  margin-top: 0;
}
.team-2 .members .member {
  margin-top: 45px;
  max-width: 293px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.team-2 .members .member .info {
  padding: 15px 0;
  max-width: 263px;
}
.team-2 .members .member .info h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 12px;
  margin-top: 0;
  margin-bottom: 0;
}
.team-2 .members .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #a3a3a3;
  margin-top: 10px;
}
.team-2 .members .member .info p span.website {
  color: #fa511a;
}
.team-2 .members .member:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* --- SECOO team --- */
.team-3 .heading-category h3 {
  text-transform: uppercase;
}
.team-3 #team-carousel {
  margin-top: 65px;
  padding-bottom: 60px;
}
.team-3 #team-carousel .carousel-control {
  background: none;
  background-image: none;
  position: absolute;
  opacity: 1;
  width: 32px;
  height: 32px;
  top: 100%;
  border: 2px solid #b8b8b9;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.team-3 #team-carousel .carousel-control span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 1;
  text-shadow: none;
  color: #b8b8b9;
  font-size: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.team-3 #team-carousel .carousel-control:focus {
  outline: none;
}
.team-3 #team-carousel .carousel-control.right {
  right: 50%;
  margin-right: -38px;
}
.team-3 #team-carousel .carousel-control.left {
  left: 50%;
  margin-left: -38px;
}
.team-3 #team-carousel .carousel-control:hover {
  border-color: #fa511a;
}
.team-3 #team-carousel .carousel-control:hover span {
  color: #fa511a;
}
.team-container {
  background: #f5f6f8;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 115px 0;
}
/*======= About Us Secoo =======*/
@media screen and (min-width: 1200px) {
  .about-us .content {
    padding-left: 50px;
  }
}
.about-us .content h3 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  color: #1b1c20;
  margin-top: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .about-us .content h3 {
    margin-top: 30px;
  }
}
.about-us .content .paragraph p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #afafaf;
  line-height: 17px;
  padding-top: 24px;
  padding-bottom: 12px;
}
.about-us .content .progress-bars .progress-container {
  margin-top: 20px;
}
.about-us .content .progress-bars .progress-container .info span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #45555f;
  float: left;
}
.about-us .content .progress-bars .progress-container .info span.percent {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #45555f;
  float: right;
}
.about-us .content .progress-bars .progress-container .progress-bg {
  display: block;
  width: 100%;
  height: 11px;
  margin-top: 5px;
  background: #efefef;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max {
  display: block;
  height: 11px;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  background: #fa511a;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner.green {
  background: #83c129;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner.red {
  background: #f35958;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner.yellow {
  background: #ffda3a;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner.purple {
  background: #a085c6;
}
.about-us .content .progress-bars .progress-container .progress-bg .progress-max .progress-inner.orange {
  background: #ff6b24;
}
/*======= Pricing Tables =======*/
.pricing-tables .wrapper {
  padding: 0 1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pricing-tables .wrapper ul {
  list-style-type: none;
  list-style: none;
  padding: 30px 15px;
  background: #fa511a;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pricing-tables .wrapper ul {
    margin-top: 50px;
  }
}
.pricing-tables .wrapper ul.starter {
  background: #fb774c;
}
.pricing-tables .wrapper ul.premium {
  background: #dc3a05;
}
.pricing-tables .wrapper ul.developer {
  background: #aa2d04;
}
.pricing-tables .wrapper ul li {
  text-align: center;
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
}
.pricing-tables .wrapper ul li i.icon {
  display: block;
  font-size: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  color: #fff;
  background: #80d28c;
  margin: 0 auto;
}
.pricing-tables .wrapper ul li h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
}
.pricing-tables .wrapper ul li span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.pricing-tables .wrapper ul li:nth-child(3) {
  margin-top: 15px;
}
.pricing-tables .wrapper ul li a {
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 11px;
  padding: 8px 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.pricing-tables .wrapper ul li a:hover {
  text-decoration: underline;
}
.pricing-tables .wrapper:hover {
  opacity: .9;
}
/*======= Pricing tables Seco ======*/
.pricing-row .pricing-container ul.list-group {
  margin-top: 115px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pricing-row .pricing-container ul.list-group li {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 16px;
  border-color: #ebebeb;
  text-align: center;
}
.pricing-row .pricing-container ul.list-group li:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.pricing-row .pricing-container ul.list-group li:first-child .icon {
  width: 85px;
  height: 85px;
  background: #bbbbbb;
  border-radius: 50%;
  margin: -55px auto auto;
  border: 10px solid #fff;
}
.pricing-row .pricing-container ul.list-group li:first-child .icon i {
  line-height: 65px;
  text-align: center;
  color: #fff;
  font-size: 31px;
}
.pricing-row .pricing-container ul.list-group li:first-child .icon.standard {
  background: #fa511a;
}
.pricing-row .pricing-container ul.list-group li:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pricing-row .pricing-container ul.list-group li span.bold {
  color: #848383;
}
.pricing-row .pricing-container ul.list-group li.heading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  color: #a3a3a3;
}
.pricing-row .pricing-container ul.list-group li.pricing {
  font-size: 18px;
  color: #a3a3a3;
  line-height: 18px;
  padding-top: 0;
}
.pricing-row .pricing-container ul.list-group li.pricing span.curency {
  font-size: 25px;
  color: #a3a3a3;
  font-weight: 400;
  line-height: 35px;
}
.pricing-row .pricing-container ul.list-group li.pricing span.value {
  font-size: 50px;
  color: #fa511a;
  font-weight: 400;
  line-height: 50px;
}
.pricing-row .pricing-container ul.list-group li a.btn {
  border-radius: 8px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.pricing-row .pricing-container ul.list-group li a.btn.btn-default {
  color: #b4b4b4;
  background-color: #eaeaea;
  border-color: #d1d1d1;
}
.pricing-row .pricing-container ul.list-group li a.btn.btn-default:hover {
  background-color: #dddddd;
  border-color: #c4c4c4;
}
.pricing-row .pricing-container ul.list-group li a.btn.btn-default:focus {
  background-color: #969696;
  color: #fff;
}
.pricing-row .pricing-container ul.list-group:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
/*======== Simple slider =========*/
.simple-carousel {
  padding: 0;
}
.simple-carousel .carousel-control {
  background: none;
  background-image: none;
  opacity: 1;
  width: 18px;
  height: 100%;
}
.simple-carousel .carousel-control span {
  position: absolute !important;
  display: block;
  top: 50%;
  margin-top: -17.5px;
  height: 35px;
  width: 18px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 1;
  text-shadow: none;
}
.simple-carousel .carousel-control:focus {
  outline: none;
}
.simple-carousel .carousel-control.right {
  right: 15px;
}
.simple-carousel .carousel-control.right span {
  background: url(../img/elements/right-arrow.png) -18px 0 no-repeat;
}
.simple-carousel .carousel-control.right span:hover {
  background-position: 0 0;
}
.simple-carousel .carousel-control.left {
  left: 15px;
}
.simple-carousel .carousel-control.left span {
  background: url(../img/elements/left-arrow.png) 0 0 no-repeat;
}
.simple-carousel .carousel-control.left span:hover {
  background-position: -18px 0;
}
/*======= Bullets carousel*/
.bullets-carousel {
  margin-top: 20px;
}
.bullets-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: -40px;
}
.bullets-carousel .carousel-indicators li {
  border: none;
  background: #d9d9d9;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
}
.bullets-carousel .carousel-indicators li.active {
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
  background: #a0a0a0;
}
/*====== Blog ======*/
.blog .row {
  /*=== Sidebar ===*/

}
.blog .row .blog-article {
  /*=== Blog Single ===*/

}
@media screen and (min-width: 1200px) {
  .blog .row .blog-article {
    padding-right: 50px;
  }
}
.blog .row .blog-article .article .blog-article-content a {
  text-decoration: none;
}
.blog .row .blog-article .article .blog-article-content a h3 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #1b1c20;
  margin: 30px 0 0 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-article .article .blog-article-content a h3:hover {
  color: #fa511a;
}
.blog .row .blog-article .article .blog-article-content ul.article-info {
  list-style: none;
  list-style-type: none;
  padding: 20px 0 0 0;
  margin: 0;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li {
  display: inline-block;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a {
  text-decoration: none;
  color: #afafaf;
  font-size: 12px;
  padding-right: 15px;
  padding-left: 15px;
  border-right: 1px solid #dbdbdb;
  font-family: 'Lato';
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 500px) {
  .blog .row .blog-article .article .blog-article-content ul.article-info li a {
    border: none;
  }
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a i {
  color: #afafaf;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a:hover {
  color: #fa511a;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li:first-child a {
  padding-left: 0;
}
.blog .row .blog-article .article .blog-article-content p {
  font-family: 'Lato';
  font-weight: 400;
  color: #afafaf;
  font-size: 15px;
  line-height: 20px;
  margin-top: 20px;
}
.blog .row .blog-article .article .blog-article-content a.continue-reading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #f27c5a;
}
.blog .row .blog-article .article-pagination {
  margin-top: 0;
}
.blog .row .blog-article .article-pagination ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
}
.blog .row .blog-article .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}
.blog .row .blog-article .article-pagination ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  width: 30px;
  height: 30px;
  border: 1px solid #d9d9d9;
  color: #fa511a;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-article .article-pagination ul li a.selected {
  background: #fa511a;
  color: #fff;
  border-color: #fa511a;
}
.blog .row .blog-article .article-pagination ul li a:hover {
  background: #fa511a;
  color: #fff;
  border-color: #fa511a;
}
.blog .row .blog-article.single .article {
  /* Comment form */

}
.blog .row .blog-article.single .article .blog-article-content p {
  font-size: 14px;
  line-height: 20px;
}
.blog .row .blog-article.single .article .blog-article-content p span.highlight {
  color: #717171;
}
.blog .row .blog-article.single .article .blog-article-content ul.list {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.blog .row .blog-article.single .article .blog-article-content ul.list li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 25px;
}
.blog .row .blog-article.single .article .blog-article-content ul.list li i {
  color: #f27c5a;
  margin-right: 10px;
}
.blog .row .blog-article.single .article ul.tags {
  padding: 10px 0 20px 0;
  margin: 40px 0 0 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (min-width: 992px) {
  .blog .row .blog-article.single .article ul.tags {
    padding-right: 50px;
  }
}
.blog .row .blog-article.single .article ul.tags li {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  padding: 10px 20px;
  margin-right: 10px;
  margin-top: 10px;
  background: #f27c5a;
  color: #fff;
}
.blog .row .blog-article.single .article ul.tags li:first-child {
  font-size: 14px;
  color: #717171;
  padding-left: 0;
  background: none;
}
.blog .row .blog-article.single .article .comments .comment {
  border: 1px solid #f5f5f5;
  padding: 20px;
  margin-top: 30px;
}
.blog .row .blog-article.single .article .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}
.blog .row .blog-article.single .article .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}
.blog .row .blog-article.single .article .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  line-height: 16px;
}
.blog .row .blog-article.single .article .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #808080;
}
.blog .row .blog-article.single .article .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
}
.blog .row .blog-article.single .article .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #808080;
}
.blog .row .blog-article.single .article .contact-form form .form-group .form-control:focus,
.blog .row .blog-article.single .article .contact-form form .form-group .form-control:hover {
  border-color: #fa511a;
  -webkit-box-shadow: 0 0 5px rgba(250, 81, 26, 0.5);
  box-shadow: 0 0 5px rgba(250, 81, 26, 0.5);
}
.blog .row .blog-article.single .article .contact-form form .form-group textarea,
.blog .row .blog-article.single .article .contact-form form .form-group input {
  border-radius: 1px;
}
.blog .row .blog-article.single .article .contact-form form button {
  background-color: #f27c5a;
  border-color: #ee562b;
}
.blog .row .blog-article.single .article .contact-form form button:hover {
  background-color: #f06942;
  border-color: #ec4413;
}
.blog .row .blog-sidebar {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  padding: 50px 15px;
}
@media screen and (min-width: 1200px) {
  .blog .row .blog-sidebar {
    padding: 50px;
  }
}
.blog .row .blog-sidebar .search-widget {
  position: relative;
  height: 46px;
  width: 100%;
  border-bottom: 2px solid #f2f2f2;
  overflow: hidden;
}
.blog .row .blog-sidebar .search-widget form.search {
  position: relative;
  width: 100%;
  border-radius: 0;
  height: 46px;
  overflow: hidden;
  padding-right: 46px;
}
.blog .row .blog-sidebar .search-widget form.search input[type="text"] {
  position: relative;
  border: none;
  background: none;
  width: 100%;
  color: #a3a3a3;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 5px 12px 10px;
}
.blog .row .blog-sidebar .search-widget form.search input[type="text"]:focus {
  outline: none;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #f2f2f2;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"] i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #676767;
  border-radius: 50%;
  color: #676767;
  font-size: 13px;
  line-height: 24px;
  margin: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"]:hover i {
  color: #fa511a;
  border-color: #fa511a;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"]:focus {
  outline: none;
}
.blog .row .blog-sidebar .categories .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .categories .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #f27c5a;
  border: 1px solid #f27c5a;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .categories .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .categories ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.blog .row .blog-sidebar .categories ul li {
  border-bottom: 1px solid #f2f2f2;
}
.blog .row .blog-sidebar .categories ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-top: 10px;
}
.blog .row .blog-sidebar .categories ul li a span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 34px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .categories ul li a span.value {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 34px;
  float: right;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .categories ul li a:hover span.value,
.blog .row .blog-sidebar .categories ul li a:hover span.name {
  color: #fa511a;
}
.blog .row .blog-sidebar .featured-posts .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .featured-posts .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #f27c5a;
  border: 1px solid #f27c5a;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .featured-posts .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .featured-posts ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.blog .row .blog-sidebar .featured-posts ul li {
  border-bottom: 1px solid #f2f2f2;
  padding: 25px 0 15px 0;
}
.blog .row .blog-sidebar .featured-posts ul li img {
  float: left;
  padding-right: 10px;
}
.blog .row .blog-sidebar .featured-posts ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #7b7b7b;
}
.blog .row .blog-sidebar .featured-posts ul li span.date {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: #a3a3a3;
  margin-bottom: 10px;
}
.blog .row .blog-sidebar .about .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .about .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #f27c5a;
  border: 1px solid #f27c5a;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .about .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .about .content {
  margin-top: 20px;
}
.blog .row .blog-sidebar .about .content .autor {
  float: right;
  width: 80px;
  text-align: center;
  margin-left: 5px;
}
.blog .row .blog-sidebar .about .content .autor img {
  margin: 0 auto;
}
.blog .row .blog-sidebar .about .content .autor span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #a3a3a3;
  margin-top: 6px;
}
.blog .row .blog-sidebar .about .content .autor span.function {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 9px;
  line-height: 12px;
  color: #f27c5a;
}
.blog .row .blog-sidebar .about .content .autor .rating {
  position: relative;
  display: block;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
}
.blog .row .blog-sidebar .about .content .autor .rating i {
  display: block;
  float: left;
  font-size: 15px;
  color: #ffc80b;
  width: 14px;
  margin-top: 10px;
}
.blog .row .blog-sidebar .about .content p {
  overflow: hidden;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #a3a3a3;
  margin-top: 5px;
}
.blog .row .blog-sidebar .about .content p a {
  text-decoration: none;
  color: #a3a3a3;
  white-space: nowrap;
}
.blog .row .blog-sidebar .about .content p a:hover {
  color: #f27c5a;
}
/*====== Contact ======*/
@media screen and (max-width: 767px) {
  .contact .contact-form {
    margin-top: 50px;
  }
}
.contact .contact-form form .form-group .form-control {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:-moz-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:focus {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.contact .contact-form form .form-group .form-control:hover {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.contact .contact-form form .form-group textarea,
.contact .contact-form form .form-group input {
  border-radius: 1px;
  border-color: #efefef;
  background: #f8f8f8;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  color: #676767;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.contact .contact-form form button {
  border: 1px solid #efefef;
  border-radius: 1px;
  background: #f8f8f8;
  color: #676767;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.contact .contact-form form button:hover {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.contact .content h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  color: #1b1c20;
  margin: 0;
}
.contact .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #afafaf;
  margin-top: 20px;
  margin-bottom: 0;
}
.contact .content ul.informations {
  list-style-type: none;
  list-style: none;
  margin: 23px 0 0 0;
  padding: 0;
}
.contact .content ul.informations li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #a3a3a3;
  margin-top: 10px;
}
.contact .content ul.informations li i {
  display: block;
  float: left;
  font-size: 17px;
  line-height: 16px;
  color:#9A1F3B;
  padding-top: 1px;
}
.contact .content .social-media {
  margin-top: 25px;
}
.contact .content .social-media ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}
.contact .content .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14px;
  color: #1b1c20;
}
.contact .content .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bbbbbb;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.contact .content .social-media ul li a i {
  display: block;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  height: 20px;
  width: 20px;
  margin: 0;
  text-align: center;
  padding: 0;
}
.contact .content .social-media ul li a:hover {
  background: #676767;
}
/*======= Heading category =======*/
.heading-category h3 {
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #1b1c20;
}
.heading-category p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin: 20px auto 0;
  text-align: center;
  color: #a3a3a3;
  clear: both;
}
@media only screen and (min-width: 992px) {
  .heading-category p {
    max-width: 900px;
  }
}
.heading-category p span.colored {
  color: #fa511a;
}
/*======= Accordions ======*/
.accordions .panel-group .panel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  margin-top: 10px;
}
.accordions .panel-group .panel .panel-heading {
  padding: 0;
  border-radius: 0;
}
.accordions .panel-group .panel .panel-heading h4.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid #e7e7e7;
  color: #444444;
}
.accordions .panel-group .panel .panel-heading h4.panel-title > a {
  outline: none;
  text-decoration: none;
  border: none;
  display: block;
  padding: 8px 20px 8px 35px;
  color: #444444;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  background: #f9f9f9 url('../img/elements/minus.png') no-repeat 10px center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.accordions .panel-group .panel .panel-heading h4.panel-title > a.collapsed {
  color: #444444;
  display: block;
  padding: 8px 20px 8px 35px;
  background: #f9f9f9 url('../img/elements/plus.png') no-repeat 10px center;
}
.accordions .panel-group .panel .panel-heading h4.panel-title.faq > a {
  background: #f9f9f9 url('../img/elements/faq.html') no-repeat 10px center;
}
.accordions .panel-group .panel .panel-collapse .panel-body {
  border: 1px solid #e7e7e7;
  border-top: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
}
.accordions .panel-group .panel .panel-collapse .panel-body img {
  float: left;
  padding-right: 15px;
}
/*======= Tabs ======*/
.nav-tabs {
  border: none;
}
.nav-tabs > li {
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  border-radius: 0;
  margin-right: 10px;
  background-color: #f9f9f9;
  color: #444444;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 20px;
  border: none;
  border: 1px solid #e6e6e6;
  outline: none;
}
.nav-tabs > li.active > a {
  background-color: #f9f9f9;
  color: #444444;
}
.nav-tabs > li:hover > a {
  background-color: #f9f9f9;
  border-color: #e6e6e6;
}
.tab-content {
  border: 1px solid #e6e6e6;
  padding: 15px 15px 5px 15px;
}
.tab-content .tab-pane {
  padding: 13px 0;
}
.tab-content .tab-pane .tab-icon-inner {
  margin: 10px 15px 15px 5px;
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  background: #f27c5a;
  border-radius: 50%;
  text-align: center;
}
.tab-content .tab-pane .tab-icon-inner i {
  font-size: 30px;
  line-height: 60px;
  color: #fff;
}
.tab-content .tab-pane p {
  color: #848484;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Lato';
  font-weight: 400;
}
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #444444;
  background-color: #f9f9f9;
  cursor: default;
}
/*======= Features =======*/
.elements-heading h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  color: #1b1c20;
  margin-top: 0;
  margin-bottom: 0;
}
.elements-heading hr {
  margin: 10px 0;
}
/*======= Services =======*/
.services-secoo .heading-category {
  margin-bottom: 40px;
}
.services-secoo .heading-category h3 {
  font-size: 26px;
}
.services-secoo .service {
  margin-top: 60px;
}
.services-secoo .service i {
  display: block;
  width: 30px;
  font-size: 30px;
  color: #f64b21;
  float: left;
  margin-right: 20px;
  line-height: 30px;
}
.services-secoo .service h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #1b1c20;
  margin: 0;
}
.services-secoo .service p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #afafaf;
  margin-left: 50px;
  margin-top: 10px;
}
/*======= Footer =======*/
.footer {
  position: relative;
  background: #9A1F3B url(../../assets/img/slide1-bg.png)center no-repeat;
  bottom: 0;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #eeeeee;
  padding-bottom: 40px;
}
.footer .container .contact {
  margin-top: 40px;
}
.footer .container .contact h5 {
  font-family: 'Lato';
  font-weight: 400;
 font-size: 21px;
    color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .contact p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}
.footer .container .contact ul {
  padding: 0;
  list-style: none;
}
.footer .container .contact ul li {
  margin-top: 25px;
  border-bottom: 1px solid #ededed;
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 13px;
  line-height: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .contact ul li span.heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-bottom: 5px;
}
.footer .container .contact ul li:last-child {
  border-bottom: none;
}
.footer .container .contact ul li:hover {
  color: #fa511a;
}
.footer .container .contact .social-media ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}
.footer .container .contact .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
}
.footer .container .contact .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bbbbbb;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .contact .social-media ul li a i {
  display: block;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  height: 20px;
  width: 20px;
  margin: 0;
  text-align: center;
  padding: 0;
}
.footer .container .contact .social-media ul li a:hover {
  background: #676767;
}
.footer .container .latest-works {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .footer .container .latest-works {
    padding-left: 80px;
  }
}
.footer .container .latest-works h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .latest-works ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}
.footer .container .latest-works ul li {
  margin-top: 23px;
}
.footer .container .latest-works ul li a {
  text-decoration: none;
}
.footer .container .latest-works ul li a i {
  display: block;
  width: 28px;
  height: 25px;
  background: #fa511a;
  font-size: 13px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  margin-right: 10px;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .latest-works ul li a span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #a3a3a3;
  margin-bottom: -3px;
}
.footer .container .latest-works ul li a span.date {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  color: #a3a3a3;
}
.footer .container .latest-works ul li a:hover i {
  background: #dc3a05;
}
.footer .container .tag-cloud {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .footer .container .tag-cloud {
    padding-right: 50px;
  }
}
.footer .container .tag-cloud h5 {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 21px;
    color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .tag-cloud p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}
.footer .container .tag-cloud ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  list-style: none;
  list-style-type: none;
}
.footer .container .tag-cloud ul li {
	margin-bottom:9px;
}
.footer .container .tag-cloud ul li a {
  text-transform: uppercase;
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  text-decoration: none;
  color: #fff;
  background: trasparent;
  padding: 5px;
  margin: 0 3px 3px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .tag-cloud ul li a:hover {
  background: #fa511a;
}
.footer .container .about-footer {
  margin-top: 40px;
}
.footer .container .about-footer .about-footer-container h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .about-footer .about-footer-container p {
  font-family: 'Lato';
  font-weight: 400;
  line-height: 20px;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 20px;
}
.footer .container .about-footer .about-footer-container p span.highlight {
  color: #6a6a6a;
}
.footer .container .about-footer .about-footer-container img {
  margin-top: 10px;
  padding-left: 10px;
}
@media only screen and (min-width: 768px) {
  .footer .container .about-footer .about-footer-container img {
    float: right;
  }
}
.footer .container .about-footer .about-footer-container .services p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 15px;
}
.footer .container .about-footer .about-footer-container .services p span.title {
  color: #6a6a6a;
}
.footer .container .about-footer .about-footer-container .services p a {
  text-decoration: none;
  color: #fa511a;
}
.footer .container .about-footer .about-footer-container .services p a:hover {
  color: #676767;
}
.copyright {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #fff;
    padding-top: 52px;
	color:#fff;
}
.img-position{
	text-align:-webkit-center;
	text-align:-moz-center;
	}
.gambling{
	color: #fff;
    font-size: 20px;
	margin-bottom:29px;
}
.light-wrapper{
	padding:60px 0px;
	background:#fff;
}
.casino-1{
	padding: 27px;
    text-align: justify;
    border: 1px solid #9A1F3B;
}
.casino-2 li{
	list-style:none;
	margin:0;
	padding:0px;
	margin-bottom:20px;
}
.casino-2 li i {
    float: left;
    padding: 20px;
    font-size: 25px;
    color: #fff;
    background: #9A1F3B;
    border-radius: 50%;
    border: 5px double #9A1F3B;
    margin: 5px;
    margin-right: 29px;
}
.casino-2 li p{
	text-align:justify;
}
.heading-title{
	text-align:center;
	font-size:25px;
}
.heading-title h3 {
    font-size: 29px;
    text-transform: capitalize;
    margin-bottom: 55px;
}
.proin{
	width:200px;
	height:200px;
	border-radius:50%;
}
.proin-1{
	text-align:justify;
	padding:20px;
}
.proin-2 {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    float: left;
    margin-right: 25px;
}
.lets{
	padding-top: 32px;
	text-align:justify;
	}
.ligula{
	text-align:left;
}
.est{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.gntv{
	    background: #9A1F3B;
    padding: 6px;
    padding-left: 16px;
    margin-right: -30px;
}
.proud a {
    color: #fff;
}
.proud{
	color: #fff;
    text-align: justify;
    padding: 5px;
    padding-bottom: 0;
}
.lets-1{
	font-size: 24px;
    text-align: center;
    padding: 50px;
}








