@charset "UTF-8";
/*
* @package      Style
* @description  This package holds all common style declarations
*               of the site
*/
@-webkit-keyframes sprite-animation {
  from {
    background-position: 0 0;
  }
}

@keyframes sprite-animation {
  from {
    background-position: 0 0;
  }
}



/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/
.lt-ie11 input {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom-left-radius: 1px !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a,
a[href^="tel:"],
a[href^="callto:"] {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

a:focus,
a[href^="tel:"]:focus,
a[href^="callto:"]:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a, button, input {
  transition: .3s all ease;
}

/*
* @section      Page Layouts
* @description  This section holds style declarations of all
*               included page layouts
*/
.page {
  overflow: hidden;
}

/*
* @subsection Boxed Layout
*/
html.boxed body {
  background: #444;
}

html.boxed .page {
  background: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}



/*
* @section      Main Styles
* @description  This section holds template default elements style declarations
*/
html {
  font-size: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 70px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 80px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 100px;
  }
}

html .old-ie {
  display: none;
}

html.lt-ie11 .old-ie {
  display: block;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: none;
  color: #888888;
  background: #fff;
}

@media (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 30px;
  }
}

/*
* @subsection   Typography
* @description  Describes default font settings for basic html elements and
*               css classes
*/
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  display: block;
  color: #333333;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Open Sans Condensed', sans-serif;
  /*
  font-family: 'Montserrat', sans-serif;
  font-family: 'Roboto', sans-serif;
  */
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.heading-1 a:hover, .heading-2 a:hover, .heading-3 a:hover, .heading-4 a:hover, .heading-5 a:hover, .heading-6 a:hover {
  color: #953f40;
}

h1, .heading-1 {
  font-size: 45px;
  line-height: 1.33;
}

@media (min-width: 768px) {
  h1, .heading-1 {
    font-size: 60px;
    line-height: 1.16;
  }
}

h1 > .heading-2, .heading-1 > .heading-2 {
  margin-bottom: 0.33rem;
}

h2, .heading-2 {
  font-size: 32px;
  line-height: 1.5;
  color: #fff;
}

h2 mark, .heading-2 mark {
  padding: 5px 60px;
}

@media (min-width: 768px) {
  h2, .heading-2 {
    font-size: 52px;
    line-height: 1.25;
  }
}

h3, .heading-3 {
  font-size: 28px;
  line-height: 1.5;
  color: #953f40;
  font-weight: bold;
}

@media (min-width: 768px) {
  h3, .heading-3 {
    font-size: 36px;
    line-height: 1.37;
  }
}

h4, .heading-4 {
  font-size: 22px;
}

@media (min-width: 768px) {
  h4, .heading-4 {
    font-size: 30px;
    line-height: 1.47;
  }
}

h5, .heading-5 {
  font-size: 20px;
}

@media (min-width: 768px) {
  h5, .heading-5 {
    font-size: 24px;
    line-height: 1.5;
  }
}

h6, .heading-6 {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  h6, .heading-6 {
    font-size: 18px;
    line-height: 1.5;
  }
}

p, .list, .contact-info {
  font-weight: 300;
}

p a:hover, .list a:hover, .contact-info a:hover {
  color: #953f40;
}

mark {
  display: inline-block;
  padding: 5px;
  color: #FFF;
  background: #953f40;
}

em {
  color: #953f40;
}

small, .small {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.big {
  font-size: 1.2em;
}

time:before {
  padding-right: 8px;
}

hr {
  height: 1px;
  width: 100%;
  display: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.04);
}

/*
* @section      Main Layout
* @description  This section holds class declarations for elements indent creation
*/
/*
* @subsection   Offsets
* @description  Describes vertical indentation between the elements
*/
* + .btn-group {
  margin-top: 45px;
}

* + .container-fluid {
  margin-top: 66px;
}

* + .offset-1 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  * + .offset-1 {
    margin-top: 65px;
    margin-left: -9px;
  }
}

* + .offset-2 {
  margin-top: 40px;
}

@media (min-width: 768px) {
  * + .offset-2 {
    margin-top: 90px;
  }
}

* + .offset-3 {
  margin-top: 57px;
}

@media (min-width: 992px) {
  * + .offset-4 {
    margin-top: 127px;
  }
}

@media (max-width: 991px) {
  * + .offset-5 {
    margin-top: 20px !important;
  }
}

* + .offset-6 {
  margin-top: 30px;
}

h2 + .heading-6 {
  margin-top: 8px;
}

.heading-6 + p {
  margin-top: 35px;
}

h3 + .small {
  margin-top: 12px;
}

h1 + p {
  margin-top: 57px;
}

p + h6 {
  margin-top: 57px;
}

h6 + .small {
  margin-top: 59px;
}

.rd-mailform + .small {
  margin-top: 15px;
}

@media (min-width: 1200px) {
  .rd-mailform + .small {
    margin-top: 7px;
  }
}

h2 + iframe {
  margin-top: 55px;
}

.flow-offset-1 > * + * {
  margin-top: 30px;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n + 2), html:not(.lt-ie10) .flow-offset-1 > .col-xs-8.col-xs-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n + 2), html:not(.lt-ie10) .flow-offset-1 > .col-sm-8.col-sm-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n + 2), html:not(.lt-ie10) .flow-offset-1 > .col-md-8.col-md-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n + 2), html:not(.lt-ie10) .flow-offset-1 > .col-lg-8.col-lg-preffix-2 {
    margin-top: 30px;
  }
}

.container .rd-navbar-search-results .result-item + .result-item {
  margin-top: 30px;
}

/*
* @subsection   Postfix
* @description  Describes instant right margin classes
*/
/*
* @subsection   Prefix
* @description  Describes instant left margin classes
*/
/*
* @subsection   Insets
* @description  Describes instant padding classes
*/
@media (min-width: 992px) {
  .inset-1 {
    padding-right: 80px;
  }
}

/*
* @subsection   Well
* @description  Describes section inner indents
*/
.well-xs {
  padding-top: 62px;
  padding-bottom: 15px;
}

.well-xs-var-1 {
  padding-top: 31px;
  padding-bottom: 31px;
}

.well-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.well-md {
  padding-top: 0.93rem;
  padding-bottom: 0.93rem;
}

.well-md-var-1 {
  padding-top: 95px;
  padding-bottom: 1.15rem;
}

.well-lg {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.well-xl {
  padding-top: 1.25rem;
  padding-bottom: 1.7rem;
}

.well-xl-var-1 {
  padding-top: 1.6rem;
  padding-bottom: 1.4rem;
}

.well-xl-var-2 {
  padding-top: 1.55rem;
  padding-bottom: 1.7rem;
}

.well-xl-var-3 {
  padding-top: 1.34rem;
  padding-bottom: 2.15rem;
}

.well-xl-var-4 {
  padding-top: 1.34rem;
  padding-bottom: 1.9rem;
}

.well-xl-var-5 {
  padding-top: 1.55rem;
  padding-bottom: 1.35rem;
}

/*
* @section      Helpers
* @description  This section holds various helper classes for
*               conditional page styling
*/
.relative {
  position: relative;
}

.round {
  border-radius: 50%;
}

.letter-spacing {
  letter-spacing: 0.2em;
}

.letter-spacing-1 {
  letter-spacing: -1.4px;
}

.line-height {
  line-height: 40px;
}

/*
* @subsection   Colors
*/
html body .page .text-primary {
  color: #953f40;
}

/*
* @subsection   Backgrounds
*/
.bg-primary {
  background: #953f40;
}

.bg-primary, .bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6, .bg-primary .heading-1, .bg-primary .heading-2, .bg-primary .heading-3, .bg-primary .heading-4, .bg-primary .heading-5, .bg-primary .heading-6 {
  color: #fff;
}

.bg-primary .icon-primary {
  color: #fff;
  border-color: #fff;
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.bg-primary p a:hover, .bg-primary .list a:hover, .bg-primary .terms-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.text-white {
  color: #fff;
}

.text-davys-grey {
  color: #495A6B;
}

.text-matterhorn {
  color: #54423f;
}

.text-masala {
  color: #3C4045;
}

.bg-masala {
  background-color: #3C4045;
}

.bg-mine-shaft {
  background-color: #2e2e2e;
}

.bg-gallery {
  background-color: #eff0f0;
}

.bg-matterhorn {
  background-color: #54423f;
}

.bg-desert-storm {
  background-color: #faf9f5;
}

.bg-pearl-bush {
  background-color: #e9dfd9;
}

.bg-images {
  position: relative;
}

.bg-images:before {
  content: '';
  background: url("../images/home-04.jpg") no-repeat;
  position: absolute;
  background-size: cover;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}

@media (min-width: 992px) {
  .bg-images:before {
    background-position: 42%;
    background-image: url("../img/home-01.png");
  }
}

.bg-images-1 {
  position: relative;
  background-color: #3C4045;
}

.bg-images-1:before {
  content: '';
  position: absolute;
  background-size: cover;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}

.bg-images-2 {
  position: relative;
  background-color: #495A6B;
}

.bg-images-2-2 {
  position: relative;
  right: 45px;
  display: none;
}

@media (min-width: 992px) {
  .bg-images-2-2 {
    display: block;
  }
}

@media (min-width: 1200px) {
  .bg-images-2-2 {
    right: 162px;
  }
}

.bg-images-2-2:before {
  content: '';
  position: absolute;
  top: -50px;
  right: 0;
  left: -77vh;
  background: url("../img/excerpt.png") no-repeat;
  background-size: auto 100%;
  z-index: 5;
  min-height: 739px;
  background-position: right top;
}

.bg-images-3 {
  position: relative;
}

.bg-images-3:before {
  display: none;
  content: '';
  background: url("../images/video-03.png") repeat-x;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  opacity: .2;
  z-index: -1;
  background-position: bottom left;
}

@media (min-width: 1200px) {
  .bg-images-3:before {
    display: block;
  }
}

/*
* @subsection   Floating System
*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (min-width: 480px) {
  .pull-xs-left {
    float: left;
  }
  .pull-xs-none {
    float: none;
  }
  .pull-xs-right {
    float: right;
  }
}

@media (min-width: 768px) {
  .pull-sm-left {
    float: left;
  }
  .pull-sm-none {
    float: none;
  }
  .pull-sm-right {
    float: right;
  }
}

@media (min-width: 992px) {
  .pull-md-left {
    float: left;
  }
  .pull-md-none {
    float: none;
  }
  .pull-md-right {
    float: right;
  }
}

@media (min-width: 1200px) {
  .pull-lg-left {
    float: left;
  }
  .pull-lg-none {
    float: none;
  }
  .pull-lg-right {
    float: right;
  }
}

/*
* @subsection   Text Alignment
*/
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .text-xs-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-xs-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-xs-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .text-sm-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-sm-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-sm-right {
    text-align: right;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .text-md-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-md-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-md-right {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .text-lg-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-lg-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-lg-right {
    text-align: right;
  }
}

/*
* @subsection   Text Styling
*/
.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.text-strike {
  text-decoration: line-through;
}

.text-thin {
  font-weight: 100;
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-sbold {
  font-weight: 600;
}

.text-bold, strong {
  font-weight: 700;
}

.text-ubold {
  font-weight: 900;
}

.text-uppercase {
  text-transform: uppercase;
}

/*
* @subsection   Visibility System
*/
.visible-block {
  display: block;
}

.visible-inline-block {
  display: inline-block;
}

.visible-inline {
  display: inline;
}

.hidden {
  display: none;
}

@media (min-width: 480px) {
  .visible-xs-block {
    display: block;
  }
  .visible-xs-inline-block {
    display: inline-block;
  }
  .visible-xs-inline {
    display: inline;
  }
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 768px) {
  .visible-sm-block {
    display: block;
  }
  .visible-sm-inline-block {
    display: inline-block;
  }
  .visible-sm-inline {
    display: inline;
  }
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 992px) {
  .visible-md-block {
    display: block;
  }
  .visible-md-inline-block {
    display: inline-block;
  }
  .visible-md-inline {
    display: inline;
  }
  .hidden-md {
    display: none;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block;
  }
  .visible-lg-inline-block {
    display: inline-block;
  }
  .visible-lg-inline {
    display: inline;
  }
  .hidden-lg {
    display: none;
  }
}


/*
* @section      Components
* @description  This section holds all elements style declarations of template
*/
/*
* @subsection   Buttons
*/
.btn {
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
  border-style: solid;
  text-overflow: ellipsis;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.2em;
}

.btn:hover {
  color: inherit;
  text-decoration: none;
}

.btn .icon {
  float: left;
  vertical-align: middle;
}

.btn-xs {
  border-width: 2px;
  padding: 17px 38px;
  font-size: 12px;
}

.btn-xs .icon {
  font-size: 20.19898px;
  padding-right: 10px;
  line-height: 0.75188em;
}

.btn-sm {
  border-width: 2px;
  padding: 15px;
  font-size: 14px;
}

.btn-sm .icon {
  font-size: 19.59149px;
  padding-right: 10px;
  line-height: 0.77519em;
}

.btn-md {
  border-width: 2px;
  padding: 19px 35px;
  font-size: 16px;
}

.btn-md .icon {
  font-size: 21.56582px;
  padding-right: 10px;
  line-height: 0.70423em;
}

.btn-lg {
  border-width: 2px;
  padding: 29px 40px;
  font-size: 16px;
}

.btn-lg .icon {
  font-size: 37.51238px;
  padding-right: 20px;
  line-height: 0.40486em;
}

.btn-xl {
  border-width: 2px;
  padding: 34px;
  font-size: 20px;
}

.btn-xl .icon {
  font-size: 35.87976px;
  padding-right: 20px;
  line-height: 0.53333em;
}

.btn-default {
  color: #fff;
  background: #953f40;
  border-color: #953f40;
}

.btn-default:hover {
  background: transparent;
  color: #953f40;
}

.btn-default:active {
  background: #dedede;
  border-color: #dedede;
}

.btn-default-var-1 {
  color: #fff;
  opacity: .5;
  background: transparent;
  border-color: #fff;
}

.btn-default-var-1:hover {
  color: #953f40;
  opacity: 1;
}

.btn-default-var-1:active {
  opacity: 1;
}

.btn-primary {
  color: #fff;
  background: #953F40;
  border-color: #953F40;
}

.btn-primary:hover, .btn-primary:active {
  background: transparent;
  color: #953F40;
}

.btn-primary:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn-primary:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-facebook {
  color: #fff;
  background: #4569ae;
  border-color: #4569ae;
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.11);
}

.btn.fa-facebook:hover, .btn.fa-facebook:active {
  background: #3e5e9c;
  border-color: #3e5e9c;
}

.btn.fa-facebook:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-facebook:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-twitter {
  color: #fff;
  background: #5ea9dd;
  border-color: #5ea9dd;
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.11);
}

.btn.fa-twitter:hover, .btn.fa-twitter:active {
  background: #499ed9;
  border-color: #499ed9;
}

.btn.fa-twitter:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-twitter:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-pinterest {
  color: #fff;
  background: #cb2027;
  border-color: #cb2027;
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.11);
}

.btn.fa-pinterest:hover, .btn.fa-pinterest:active {
  background: #b51d23;
  border-color: #b51d23;
}

.btn.fa-pinterest:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn.fa-pinterest:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12);
}

.btn-group {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  margin-bottom: -30px;
  margin-left: -30px;
}

.btn-group .btn {
  margin-top: 30px;
  margin-left: 30px;
}

/*
* @subsection   Icons
*/
.icon {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border-style: solid;
}

.icon-xs {
  width: 46px;
  height: 46px;
  line-height: 42px;
  font-size: 17px;
  border-width: 2px;
}

.icon-sm {
  width: 70px;
  height: 70px;
  line-height: 66px;
  font-size: 30px;
  border-width: 2px;
}

.icon-md {
  width: 83px;
  height: 83px;
  line-height: 79px;
  font-size: 35px;
  border-width: 2px;
}

.icon-lg {
  width: 90px;
  height: 90px;
  line-height: 86px;
  font-size: 36px;
  border-width: 2px;
}

.icon-xl {
  width: 108px;
  height: 108px;
  line-height: 104px;
  font-size: 44px;
  border-width: 2px;
}

.icon-default {
  color: #fff;
  border-color: #fff;
  opacity: .3;
}

.icon-default:hover {
  opacity: 1;
}

.icon-default:active {
  opacity: 1;
}

.icon-primary {
  color: #FFF;
  background: #953f40;
  border-color: #953f40;
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.11);
}

a.icon-primary:hover {
  background: #f6330b;
}

/*
 * @subsection   Box
 */
/*
* @subsection Box
*/
.box__left {
  padding-bottom: 30px;
}

.box__right {
  padding-top: 30px;
}

.box-rtl {
  direction: rtl;
}

.box-rtl > .box__left {
  padding-right: 0;
  padding-left: 30px;
}

.box-rtl > .box__right {
  padding-right: 30px;
  padding-left: 0;
}

.box-ltr {
  direction: ltr;
}

.box-group, .box-group-outer > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.box > .box__left img, .box > .box__right img {
  max-width: none;
}

.box > .box__left,
.box > .box__right,
.box > .box__body {
  padding: 0;
  direction: ltr;
  display: table-cell;
  vertical-align: top;
}

.box > .box__left {
  padding-right: 30px;
  padding-bottom: 0;
}

.box > .box__right {
  padding-left: 30px;
  padding-top: 0;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .box-xs > .box__left img, html:not(.lt-ie10) .box-xs > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-xs > .box__left,
  html:not(.lt-ie10) .box-xs > .box__right,
  html:not(.lt-ie10) .box-xs > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-xs > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-xs > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left img, html:not(.lt-ie10) .box-xs-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left,
  html:not(.lt-ie10) .box-xs-clear > .box__right,
  html:not(.lt-ie10) .box-xs-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-xs-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-xs-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-xs-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-xs-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-xs-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-xs-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .box-sm > .box__left img, html:not(.lt-ie10) .box-sm > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-sm > .box__left,
  html:not(.lt-ie10) .box-sm > .box__right,
  html:not(.lt-ie10) .box-sm > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-sm > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-sm > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left img, html:not(.lt-ie10) .box-sm-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left,
  html:not(.lt-ie10) .box-sm-clear > .box__right,
  html:not(.lt-ie10) .box-sm-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-sm-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-sm-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-sm-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-sm-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-sm-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-sm-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .box-md > .box__left img, html:not(.lt-ie10) .box-md > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-md > .box__left,
  html:not(.lt-ie10) .box-md > .box__right,
  html:not(.lt-ie10) .box-md > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-md > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-md > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left img, html:not(.lt-ie10) .box-md-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left,
  html:not(.lt-ie10) .box-md-clear > .box__right,
  html:not(.lt-ie10) .box-md-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-md-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-md-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-md-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-md-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-md-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-md-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-md-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .box-lg > .box__left img, html:not(.lt-ie10) .box-lg > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-lg > .box__left,
  html:not(.lt-ie10) .box-lg > .box__right,
  html:not(.lt-ie10) .box-lg > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-lg > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-lg > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left img, html:not(.lt-ie10) .box-lg-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left,
  html:not(.lt-ie10) .box-lg-clear > .box__right,
  html:not(.lt-ie10) .box-lg-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-lg-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-lg-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-lg-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-lg-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-lg-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-lg-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

.box .box__middle, html:not(.lt-ie10) .box .box__middle, .box-xs .box__middle, html:not(.lt-ie10) .box-xs .box__middle, .box-sm .box__middle, html:not(.lt-ie10) .box-sm .box__middle, .box-md .box__middle, html:not(.lt-ie10) .box-md .box__middle, .box-lg .box__middle, html:not(.lt-ie10) .box-lg .box__middle {
  vertical-align: middle;
}

.box .box__bottom, html:not(.lt-ie10) .box .box__bottom, .box-xs .box__bottom, html:not(.lt-ie10) .box-xs .box__bottom, .box-sm .box__bottom, html:not(.lt-ie10) .box-sm .box__bottom, .box-md .box__bottom, html:not(.lt-ie10) .box-md .box__bottom, .box-lg .box__bottom, html:not(.lt-ie10) .box-lg .box__bottom {
  vertical-align: bottom;
}

/*
* @subsection   Quote
*/
.quote {
  color: #495A6B;
}

.quote h6 + h6 {
  opacity: .6;
  font-family: "Libre Baskerville", serif;
  color: #495A6B;
}

.quote p {
  margin-top: 13px;
  opacity: .7;
  line-height: 26px;
}

/*
* @subsection   Pricing Box
*/
/*
* @subsection   Breadcrumbs
*/
/*
* @subsection   Post
*/
/*
* @subsection   List
*/
.list li + li {
  margin-top: 10px;
}

/*
* @subsection   Inline List
*/
.inline-list {
  margin-top: 55px;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  margin-bottom: -30px;
  margin-left: -2px;
}

.inline-list > li {
  display: block;
  text-align: center;
  margin-top: 30px;
  line-height: 1;
}

@media (min-width: 768px) {
  .inline-list > li {
    display: inline-block;
    margin-left: 30px;
  }
}

.inline-list > li > span {
  color: #3C4045;
  position: relative;
  font-weight: bold;
  display: inline-block;
}

@media (min-width: 768px) {
  .inline-list > li > span {
    display: block;
  }
}

.inline-list > li > span:before {
  content: '';
  background: url("../images/home-02.png") no-repeat;
  position: absolute;
  left: -26px;
  top: -2px;
  background-size: cover;
  display: block;
  width: 22px;
  height: 59px;
}

.inline-list > li > span:after {
  content: '';
  background: url("../images/home-03.png") no-repeat;
  position: absolute;
  right: -29px;
  top: -2px;
  background-size: cover;
  display: block;
  width: 23px;
  height: 59px;
}

.inline-list > li > span .big {
  font-size: 20px;
  font-family: "Libre Baskerville", serif;
  opacity: .4;
}

.inline-list > li > span .small-1 {
  font-size: 12px;
  text-transform: uppercase;
  opacity: .4;
  font-family: "Libre Baskerville", serif;
}

.inline-list li:nth-child(2) span {
  top: 8px;
  position: relative;
}

.inline-list li:nth-child(2) span:before {
  top: -8px;
}

.inline-list li:nth-child(2) span:after {
  top: -8px;
}

.inline-list li:last-child {
  margin-top: 60px;
}

@media (min-width: 768px) {
  .inline-list li:last-child {
    margin-left: 40px;
    margin-top: 30px;
  }
}

.inline-list li:last-child span:before {
  left: -20px;
}

.inline-list li:last-child span:after {
  right: -24px;
}

@media (min-width: 768px) {
  .inline-list li + li {
    margin-left: 97px;
  }
}

.inline-list-1 {
  margin-top: 30px;
  display: inline-block;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  margin-bottom: -30px;
  margin-left: -30px;
}

.inline-list-1 > li {
  display: inline-block;
  margin-left: 28px;
}

@media (min-width: 1200px) {
  .inline-list-1 > li {
    margin-left: -70px;
  }
}

.inline-list-1 > li + li {
  margin-left: 15px;
}

/*
* @subsection   Marked List
*/
.marked-list {
  text-align: left;
  margin-top: 26px;
}

.marked-list > li {
  position: relative;
  padding-left: 30px;
  color: #a69e98;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .marked-list > li {
    padding-left: 75px;
  }
}

.marked-list > li:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  background: url("../images/minus.png") no-repeat;
  display: inline-block;
  width: 5px;
  height: 1px;
}

@media (min-width: 1200px) {
  .marked-list > li:before {
    left: 51px;
  }
}

.marked-list > li + li {
  margin-top: 20px;
}

.marked-list > a:hover {
  color: #953f40;
}

.marked-list > li.active {
  color: #3C4045;
}

.marked-list > li.active:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  background: url("../images/plus.png") no-repeat;
  display: inline-block;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (min-width: 1200px) {
  .marked-list > li.active:before {
    left: 51px;
  }
}

/*
* @subsection   Index List
*/
.index-list {
  counter-reset: li;
}

.index-list > li > .index-list__counter:before {
  content: counter(li, decimal-leading-zero) ".";
  counter-increment: li;
}

.index-list > * + * {
  margin-top: 30px;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .index-list > .col-xs-1:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-2:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-3:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-4:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-5:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-6:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-7:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-8:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-9:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-10:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-11:nth-child(n), html:not(.lt-ie10) .index-list > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .index-list > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) .index-list > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) .index-list > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) .index-list > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) .index-list > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) .index-list > .col-xs-12:nth-child(n + 2), html:not(.lt-ie10) .index-list > .col-xs-8.col-xs-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .index-list > .col-sm-1:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-2:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-3:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-4:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-5:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-6:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-7:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-8:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-9:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-10:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-11:nth-child(n), html:not(.lt-ie10) .index-list > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .index-list > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) .index-list > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) .index-list > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) .index-list > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) .index-list > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) .index-list > .col-sm-12:nth-child(n + 2), html:not(.lt-ie10) .index-list > .col-sm-8.col-sm-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .index-list > .col-md-1:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-2:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-3:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-4:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-5:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-6:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-7:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-8:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-9:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-10:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-11:nth-child(n), html:not(.lt-ie10) .index-list > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .index-list > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) .index-list > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) .index-list > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) .index-list > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) .index-list > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) .index-list > .col-md-12:nth-child(n + 2), html:not(.lt-ie10) .index-list > .col-md-8.col-md-preffix-2 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .index-list > .col-lg-1:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-2:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-3:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-4:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-5:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-6:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-7:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-8:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-9:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-10:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-11:nth-child(n), html:not(.lt-ie10) .index-list > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .index-list > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) .index-list > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) .index-list > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) .index-list > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) .index-list > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) .index-list > .col-lg-12:nth-child(n + 2), html:not(.lt-ie10) .index-list > .col-lg-8.col-lg-preffix-2 {
    margin-top: 30px;
  }
}

/*
* @subsection   Ordered List
*/
.ordered-list > li {
  padding-left: 20px;
  list-style-type: decimal;
}

/*
* @subsection   Terms  List
*/
.terms-list > dt + dd {
  margin-top: 10px;
}

.terms-list > dd + dt {
  margin-top: 20px;
}

/*
* @subsection   Contact Info
*/
.contact-info dl dt, .contact-info dl dd {
  display: inline-block;
}

.contact-info dl dt:after {
  content: ':';
}

.contact-info dl dt {
  min-width: 80px;
}

/*
* @subsection   Counter
*/
/*
* @subsection   Thumb
*/
.thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.thumb > img {
  width: 100%;
}

.thumb__overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  text-align: center;
  transition: .3s all ease;
}

.thumb__overlay > * {
  vertical-align: middle;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: .3s all ease;
}

.thumb__overlay:before {
  content: '';
  display: inline-block;
  height: 50%;
}

.thumb:hover .thumb__overlay {
  opacity: 1;
}

.thumb:hover .thumb__overlay > * {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*
* @subsection   Link
*/
.link {
  display: inline-block;
}

/*
* @subsection   Video
*/
.video {
  margin-top: 27px;
  position: relative;
  transition: .5s;
  -webkit-box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
  box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
}

.video > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video .video_sign {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(../images/video-01.png) 50% 50% no-repeat;
  transition: .4s all ease;
}

@media (max-width: 1199px) {
  .video .video_sign {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    background-size: contain;
  }
}

.video img {
  width: 100%;
}

.video:hover .video_sign {
  opacity: .5;
}

/*
* @subsection   Product
*/
.product {
  border: 2px solid rgba(85, 83, 88, 0.4);
  padding: 0 10px;
  margin: 0 20px;
}

@media (min-width: 992px) {
  .product {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0;
  }
}

.product .product-header {
  padding: 24px 0;
}

.product .product-header h6 {
  color: #3C4045;
  letter-spacing: 0.1em;
}

.product .product-header .big-1 {
  margin-top: 52px;
  font-size: 57px;
  line-height: 52px;
  color: #3C4045;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
  letter-spacing: -1.5px;
  display: inline-block;
}

.product .product-header .big-1 sup {
  font-size: 25px;
  opacity: .5;
  position: relative;
  left: -4px;
  top: -11px;
}

.product .product-content {
  padding-bottom: 52px;
}

.product .product-content .btn {
  margin-top: 45px;
  background-color: #b13d25;
  border-color: #b13d25;
}

.product .product-content .btn:hover {
  background: transparent;
  color: #b13d25;
}

.product-active {
  margin-left: 10px;
  margin-right: 10px;
  background-color: #ffefe3;
  border: 6px solid #b13d25;
  position: relative;
  z-index: 3;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .product-active {
    margin-top: -40px;
  }
}

.product-active .product-header {
  padding: 60px 0 24px 0;
}

.product-active .product-content {
  padding-bottom: 65px;
}

@media (min-width: 1200px) {
  .product-active .product-content .marked-list li {
    padding-left: 102px;
  }
}

.product-active .product-content .marked-list li:before {
  left: 15px;
}

@media (min-width: 1200px) {
  .product-active .product-content .marked-list li:before {
    left: 74px;
  }
}

.product-active .product-content .btn {
  margin-top: 65px;
  padding: 16px 62px;
  background-color: #953f40;
  border-color: #953f40;
}

.product-active .product-content .btn:hover {
  background: transparent;
  color: #953f40;
}

/*
* @subsection   books
*/
.books {
  margin-top: 50px;
  display: block;
}

@media (min-width: 992px) {
  .books {
    width: 242px;
    margin: 50px auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .books {
    display: inline-block;
    margin-top: 60px;
  }
  .books + .books {
    margin-left: 100px;
  }
}

@media (min-width: 1200px) {
  .books {
    display: inline-block;
    margin-top: 103px;
  }
  .books + .books {
    margin-left: 160px;
  }
}

.books h5 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 992px) {
  .books h5 {
    margin-top: 15px;
  }
}

.books p {
  text-align: left;
  margin-top: 23px;
}

.books .btn {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .books + .books {
    margin-top: 70px;
  }
}



/*
* @subsection   RD Mail Form
*
* @description  Describes style declarations for RD Mail Form extension
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
* @version      1.1.2
*/
.rd-mailform {
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.rd-mailform fieldset {
  border: none;
}

.rd-mailform fieldset > .row + .row {
  margin-top: 30px;
}

.rd-mailform label {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .rd-mailform label {
    max-width: 325px;
  }
}

.rd-mailform label:first-child {
  margin-top: 0;
}

.rd-mailform label input, .rd-mailform label select {
  height: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.rd-mailform label input, .rd-mailform label textarea {
  display: inline-block;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  font-size: 18px;
  padding: 6.5px 0;
  line-height: 27px;
  color: #fff;
  background: none;
}

.rd-mailform label input:-moz-placeholder, .rd-mailform label textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.rd-mailform label input::-webkit-input-placeholder, .rd-mailform label textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.rd-mailform label input::-moz-placeholder, .rd-mailform label textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.rd-mailform label input:-ms-input-placeholder, .rd-mailform label textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.rd-mailform label textarea {
  resize: vertical;
  overflow: auto;
  min-height: 40px;
  height: 191px;
  max-height: 286.5px;
}

@media (min-width: 768px) {
  .rd-mailform label {
    margin-top: 30px;
  }
}

/*
* MF Controls
*/
.mfControls {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .mfControls {
    display: inline-block;
    margin-left: 29px;
    position: relative;
    top: -12px;
    margin-top: 0;
  }
}

.mfControls .btn-xs {
  padding: 17px 28px;
}

@-webkit-keyframes fout {
  0% {
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }
  100% {
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

@keyframes fout {
  0% {
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }
  100% {
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

/*
* MF Placeholder
*/
.mfPlaceHolder {
  cursor: text;
  position: absolute;
  left: 0;
  top: 0;
  padding: 6.5px 0;
  font-weight: inherit;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  opacity: 1;
  transition: .2s all ease;
}

*:-webkit-autofill ~ .mfPlaceHolder {
  opacity: .4;
}

.mfPlaceHolder.state-1 {
  opacity: .0;
}

*:-webkit-autofill ~ .mfPlaceHolder {
  display: none;
}

.mfInput.filled .mfPlaceHolder.state-1 {
  display: none;
}

/*
* MF Validation
*/
.mfValidation {
  position: absolute;
  top: -10px;
  padding-left: 0;
  right: 7px;
  color: #953f40;
  font-weight: inherit;
  font-size: 11px;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  pointer-events: none;
  transition: .3s all ease;
}

.mfValidation.show {
  opacity: 1;
  visibility: visible;
}

.mfValidation.hide, .mfValidation.valid {
  opacity: 0;
  visibility: hidden;
}

/*
* MF Submit
*/
.mfInfo,
.mfProgress {
  position: fixed;
  left: 15px;
  bottom: 15px;
  padding: 17px;
  height: 54px;
  color: #FFF;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
  line-height: 20px;
  font-size: 13px;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(83px);
  transform: translateY(83px);
  z-index: 999;
}

.mfInfo .loader,
.mfProgress .loader {
  display: inline-block;
  position: relative;
  margin-right: 16px;
}

.mfInfo .loader, .mfInfo .loader:before, .mfInfo .loader:after,
.mfProgress .loader,
.mfProgress .loader:before,
.mfProgress .loader:after {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.mfInfo .loader:before, .mfInfo .loader:after,
.mfProgress .loader:before,
.mfProgress .loader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.mfInfo .loader:before,
.mfProgress .loader:before {
  -webkit-animation: mfLoader 1.1s infinite linear;
  animation: mfLoader 1.1s infinite linear;
  border: 2px solid #FFF;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
  transition: .3s all ease;
}

.mfInfo .loader:after,
.mfProgress .loader:after {
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  font-family: "FontAwesome";
  font-size: 20px;
  transition: .6s all ease;
  -webkit-transform: rotate(-90deg) scale(0);
  transform: rotate(-90deg) scale(0);
}

.mfInfo.fail,
.mfProgress.fail {
  background: #F34234;
}

.mfInfo.fail .loader:after,
.mfProgress.fail .loader:after {
  content: '\f00d';
}

.mfInfo.success,
.mfProgress.success {
  background: #2E7D32;
}

.mfInfo.success .loader:after,
.mfProgress.success .loader:after {
  content: '\f00c';
}

.mfInfo.fail .loader:before, .mfInfo.success .loader:before,
.mfProgress.fail .loader:before,
.mfProgress.success .loader:before {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.mfInfo.fail .loader:after, .mfInfo.success .loader:after,
.mfProgress.fail .loader:after,
.mfProgress.success .loader:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

.mfInfo.fail, .mfInfo.success, .mfInfo.sending,
.mfProgress.fail,
.mfProgress.success,
.mfProgress.sending {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mfInfo,
  .mfProgress {
    bottom: 24px;
    left: 50%;
    -webkit-transform: translate(-50%, 83px);
    transform: translate(-50%, 83px);
  }
  .mfInfo.fail, .mfInfo.success, .mfInfo.sending,
  .mfProgress.fail,
  .mfProgress.success,
  .mfProgress.sending {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes mfLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes mfLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
* MF Icon
*/
.mfInput[data-add-icon] input, .mfInput[data-add-icon] .mfPlaceHolder {
  padding-right: 44px;
}

.mfIcon {
  position: absolute;
  text-align: center;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #333333;
  font: 400 20px/24px "FontAwesome";
}

.mfIcon span:before, .mfIcon span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -12px;
  margin-left: -10px;
  transition: .4s all ease-in-out;
}

.mfIcon span:before {
  content: "";
}

.mfIcon span:after {
  content: "";
  -webkit-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg);
  -webkit-animation: zoom-out 0.4s ease-in-out 1 forwards;
  animation: zoom-out 0.4s ease-in-out 1 forwards;
}

.mfIcon.state-1:after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #333333;
  -webkit-animation: line 1.2s 0.4s infinite;
  animation: line 1.2s 0.4s infinite;
}

.mfIcon.state-1 span:before {
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}

.mfIcon.state-1 span:after {
  -webkit-transform: scale(1) rotate(-35deg);
  transform: scale(1) rotate(-35deg);
  -webkit-animation: zoom-in-state-1 .4s ease-in-out 1 forwards, anim-1 1.2s .3s infinite, anim-2 .6s .3s infinite;
  animation: zoom-in-state-1 .4s ease-in-out 1 forwards, anim-1 1.2s .3s infinite, anim-2 .6s .3s infinite;
}

.mfIcon.state-2 span:before {
  content: "";
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}

.mfIcon.state-2 span:after {
  -webkit-transform: scale(1) rotate(-210deg);
  transform: scale(1) rotate(-210deg);
  -webkit-animation: zoom-in-state-2 .4s ease-in-out 1 forwards, anim-3 .6s .4s infinite;
  animation: zoom-in-state-2 .4s ease-in-out 1 forwards, anim-3 .6s .4s infinite;
}

@-webkit-keyframes anim-1 {
  0% {
    left: 50%;
  }
  100% {
    left: 90%;
  }
}

@keyframes anim-1 {
  0% {
    left: 50%;
  }
  100% {
    left: 90%;
  }
}

@-webkit-keyframes anim-2 {
  0% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  25% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  75% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@keyframes anim-2 {
  0% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  25% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  75% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@-webkit-keyframes anim-3 {
  0% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
  50% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }
  100% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@keyframes anim-3 {
  0% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
  50% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }
  100% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
  100% {
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
  100% {
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@-webkit-keyframes zoom-in-state-1 {
  0% {
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@keyframes zoom-in-state-1 {
  0% {
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@-webkit-keyframes zoom-in-state-2 {
  0% {
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }
  100% {
    left: 50%;
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@keyframes zoom-in-state-2 {
  0% {
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }
  100% {
    left: 50%;
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@-webkit-keyframes line {
  0% {
    left: 40%;
  }
  100% {
    left: 40%;
    width: 40%;
  }
}

@keyframes line {
  0% {
    left: 40%;
  }
  100% {
    left: 40%;
    width: 40%;
  }
}

.mfInput input[name='phone'] ~ .mfIcon span:before,
.mfInput select[name='phone'] ~ .mfIcon span:before,
.mfInput textarea[name='phone'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='email'] ~ .mfIcon span:before,
.mfInput select[name='email'] ~ .mfIcon span:before,
.mfInput textarea[name='email'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='name'] ~ .mfIcon span:before,
.mfInput select[name='name'] ~ .mfIcon span:before,
.mfInput textarea[name='name'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='date'] ~ .mfIcon span:before,
.mfInput select[name='date'] ~ .mfIcon span:before,
.mfInput textarea[name='date'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='guests'] ~ .mfIcon span:before,
.mfInput select[name='guests'] ~ .mfIcon span:before,
.mfInput textarea[name='guests'] ~ .mfIcon span:before {
  content: "";
}

.mfInput input[name='message'] ~ .mfIcon,
.mfInput select[name='message'] ~ .mfIcon,
.mfInput textarea[name='message'] ~ .mfIcon {
  display: none;
}

.mfInput input:-webkit-autofill ~ .mfIcon span:before,
.mfInput textarea:-webkit-autofill ~ .mfIcon span:before {
  color: #2D2D2D;
}

/*
* MF Select
*/
.mfSelect {
  position: relative;
}

.mfSelect select {
  padding: 0px 1px 1px 0;
  z-index: -9999999;
  border: medium none;
}

.mfSelect .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 15px;
  max-height: 300px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #888;
  box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
  transition: .3s all ease-in-out;
  outline: none;
  -webkit-appearance: none;
  font-weight: inherit;
  line-height: 27px;
  border: none;
  background: #fff;
  color: #fff;
  border-radius: none;
  z-index: 1;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.mfSelect .dropdown .option {
  position: relative;
  z-index: 1;
  text-transform: none;
  cursor: pointer;
  padding: 10px 15px;
  overflow: hidden;
  transition: .4s all ease-in-out;
  transition-delay: .2s;
  font-size: 16px;
  line-height: 30px;
}

.mfSelect .dropdown .option.selected {
  background: #f2f2f2;
  color: #fff;
}

.mfSelect .dropdown .option:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #953f40;
  opacity: 0;
  z-index: -1;
  transition: .4s all ease-in-out;
  -webkit-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
}

.mfSelect .dropdown .option:before {
  content: '\f00c';
  position: absolute;
  display: inline-block;
  left: 15px;
  color: #fff;
  font: 400 20px "FontAwesome";
  line-height: inherit;
  transition: .4s all ease-in-out;
  -webkit-transform: scale(0) rotate(-60deg);
  transform: scale(0) rotate(-60deg);
}

.mfSelect .dropdown .option:hover {
  color: #fff;
  padding-left: 40px;
  transition-delay: 0s;
}

.mfSelect .dropdown .option:hover:before {
  transition-delay: .15s;
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.mfSelect .dropdown .option:hover:after {
  width: 1000px;
  height: 500px;
  opacity: 1;
}

.mfSelect .dropdown:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 7px;
  border-color: transparent transparent #ebebeb transparent;
}

.mfSelect .dropdown:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #FFF transparent;
}

.mfSelect .value {
  cursor: pointer;
  transition: .4s all ease-in-out;
  font-size: 18px;
  padding: 6.5px 0;
  line-height: 27px;
  color: #fff;
  background: none;
  border: none;
  border-radius: none;
}

.mfSelect .value:before, .mfSelect .value:after {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 24px;
  height: 24px;
  font: 400 20px "FontAwesome";
  line-height: 24px;
  color: #333333;
  text-align: center;
  transition: .4s all ease;
}

.mfSelect .value:before {
  content: '\f0c9';
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

.mfSelect .value:after {
  content: '\f107';
  font-size: 24px;
  -webkit-transform: rotate(-180deg) scale(0);
  transform: rotate(-180deg) scale(0);
}

.mfSelect.show .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mfSelect.show .value {
  background: #fff;
  color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
}

.mfSelect.show .value:before, .mfSelect.show .value:after {
  color: #fff;
}

.mfSelect.show .value:before {
  -webkit-transform: rotate(90deg) scale(0);
  transform: rotate(90deg) scale(0);
}

.mfSelect.show .value:after {
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

/*
* MF Datepicker
*/
.mfDatePicker {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 15px;
  padding: 10px 15px;
  opacity: 0;
  z-index: 1;
  width: 270px;
  visibility: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
  transition: .3s all ease-in-out;
  z-index: 99;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #333333;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #333333;
}

.mfDatePicker:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #333333 transparent;
}

.mfDatePicker table {
  text-align: center;
  border-collapse: separate;
  border-spacing: 3px;
  font-size: 12px;
}

.mfDatePicker table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.mfDatePicker table td {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: .3s all ease;
  border-radius: 50%;
}

.mfDatePicker table td:hover {
  color: #333333;
  background: #ebebeb;
}

.mfDatePicker table td.dp-offset {
  color: #c6bbba;
}

.mfDatePicker table td.dp-today {
  color: #333333;
  background: #fff;
}

.mfDatePicker table td.dp-selected {
  color: #fff;
  background: #953f40;
}

.mfDatePicker_title {
  font-size: 16px;
  line-height: 30px;
}

.mfDatePicker_next, .mfDatePicker_prev {
  font: 400 22px "FontAwesome";
  line-height: inherit;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.mfDatePicker_next:hover, .mfDatePicker_prev:hover {
  color: #953f40;
}

.mfDatePicker_panel {
  text-align: center;
  padding: 0 2px;
  line-height: 30px;
}

.mfDatePicker_next {
  float: right;
}

.mfDatePicker_next:before {
  content: '\f105';
}

.mfDatePicker_prev {
  float: left;
}

.mfDatePicker_prev:before {
  content: '\f104';
}

.mfDatePicker_panel + table {
  margin-top: 5px;
}

.mfDatePicker.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/*
* @subsection   RD Google Map
*
* @description  Describes style declarations for RD Google Map extension
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
* @version      1.0.0
*/
.rd-google-map {
  color: #333;
}

.rd-google-map__model {
  height: 250px;
}

.rd-google-map__model img {
  max-width: none !important;
}

@media (min-width: 480px) {
  .rd-google-map__model {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .rd-google-map__model {
    height: 550px;
  }
}

.rd-google-map__locations {
  display: none;
}

/*
* @subsection   RD Parallax
*
* @description  Describes style declarations for RD Parallax extension
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
* @version      3.5.0
*/
.rd-parallax-inner {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.rd-parallax-layer[data-type="media"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.rd-parallax-layer[data-type="media"] iframe {
  width: 100%;
  height: 100%;
}

.rd-parallax-layer[data-url] {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}

/*
* @subsection   ToTop
* @license      MIT license - http://opensource.org/licenses/MIT
* @version      1.0.0
*/
.ui-to-top {
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 46px;
  color: #FFF;
  background: #953f40;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 3px 4px 8px 0px rgba(0, 0, 0, 0.11);
  position: fixed;
  right: 15px;
  bottom: 15px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

.ui-to-top:hover {
  color: #FFF;
  background: #f6330b;
  text-decoration: none;
}

.ui-to-top.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mobile .ui-to-top,
.tablet .ui-to-top {
  display: none !important;
}

@media (min-width: 480px) {
  .ui-to-top {
    right: 40px;
    bottom: 40px;
  }
}

/*
* @subsection   Easy Responsive Tabs
*
* @description  Describes style declarations for Easy Responsive Tabs extension
*
* @author       Samson Onna
* @link         samson3d@gmail.com
* @version      1.0.0
*/
.resp-tabs-list li {
  cursor: pointer;
}

.resp-accordion {
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-tab-content-active {
  display: block;
}

.responsive-tabs-default .resp-tabs-list {
  display: none;
  word-spacing: -4px;
  margin-bottom: -1px;
}

.responsive-tabs-default .resp-accordion, .responsive-tabs-default .resp-tabs-list > li {
  display: inline-block;
  word-spacing: normal;
  padding: 10px 20px;
  background: #DDD;
  border: 1px solid #CCC;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: .3s all ease;
}

.responsive-tabs-default .resp-accordion:hover, .responsive-tabs-default .resp-accordion.resp-tab-active, .responsive-tabs-default .resp-tabs-list > li:hover, .responsive-tabs-default .resp-tabs-list > li.resp-tab-active {
  color: #333;
  background: #FFF;
}

.responsive-tabs-default .resp-accordion.resp-tab-active, .responsive-tabs-default .resp-tabs-list > li.resp-tab-active {
  border-bottom-color: transparent;
}

.responsive-tabs-default .resp-accordion {
  display: block;
  border-radius: 0;
}

.responsive-tabs-default .resp-tab-content {
  display: none;
  padding: 20px;
  background: #DDD;
  border: 1px solid #CCC;
  color: #333;
  background: #FFF;
}

.responsive-tabs-variant-2 {
  overflow: hidden;
}

.responsive-tabs-variant-2 .resp-tabs-list {
  display: none;
}

.responsive-tabs-variant-2 .resp-tabs-list > li {
  position: relative;
  display: inline-block;
}

.responsive-tabs-variant-2 .resp-tabs-list > li.resp-tab-active:before, .responsive-tabs-variant-2 .resp-tabs-list > li.resp-tab-active:after {
  display: block;
}

.responsive-tabs-variant-2 .resp-tabs-list > li.resp-tab-active > .btn {
  border-bottom-color: transparent;
}

.responsive-tabs-variant-2 .resp-tabs-list > li.resp-tab-active > .btn:hover {
  color: inherit;
  background: transparent;
}

.responsive-tabs-variant-2 .resp-tabs-list > li > .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: none;
}

.responsive-tabs-variant-2 .resp-tabs-list > li > .btn:hover {
  transition: .3s all ease;
}

.responsive-tabs-variant-2 .resp-tabs-list > li:before, .responsive-tabs-variant-2 .resp-tabs-list > li:after {
  content: '';
  display: none;
  position: absolute;
  width: 5000px;
  border-bottom: 2px solid;
  bottom: 0;
}

.responsive-tabs-variant-2 .resp-tabs-list > li:before {
  right: 100%;
  margin-right: -2px;
}

.responsive-tabs-variant-2 .resp-tabs-list > li:after {
  left: 100%;
  margin-left: -2px;
}

.responsive-tabs-variant-2 .btn-default {
  color: #fff;
}

.responsive-tabs-variant-2 .btn-default:hover {
  color: #333333;
}

.responsive-tabs-variant-2 .resp-accordion {
  display: block;
}

.responsive-tabs-variant-2 .resp-accordion.resp-tab-active .btn-default {
  background: #ebebeb;
  color: #333333;
}

.responsive-tabs-variant-2 .resp-accordion > .btn {
  display: block;
}

.responsive-tabs-variant-2 .resp-tab-content {
  display: none;
  padding-top: 50px;
}

.responsive-tabs-variant-2 .resp-tab-content + .resp-accordion {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .responsive-tabs:not(.resp-easy-accordion) .resp-accordion {
    display: none;
  }
  .responsive-tabs:not(.resp-easy-accordion) .resp-tabs-list {
    display: block;
  }
}

/*
* @subsection   Magnific Popup
*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-close:hover {
  cursor: pointer;
  color: #ECECEC;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0px;
  display: none;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  margin-top: 68px;
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  padding-bottom: 96px;
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item > .owl-item {
  width: 100%;
}

.owl-carousel .owl-item > .owl-item h4 {
  line-height: 1.25;
  color: #fff;
  opacity: .7;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  font: 400 40px/80px 'FontAwesome';
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:before {
  content: '\f144';
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/*
 * Owl Navigation
 */
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: 400 46px/50px "FontAwesome";
  opacity: .5;
}

.owl-prev:hover, .owl-next:hover {
  opacity: 1;
}

.owl-prev {
  left: 0;
}

.owl-prev:before {
  content: '\f104';
}

.owl-next {
  right: 0;
}

.owl-next:before {
  content: '\f105';
}

/*
 * Owl Pagination
 */
.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
  width: 10px;
  height: 10px;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #fff;
  transition: box-shadow 0.3s ease;
  opacity: .3;
}

.owl-dot:hover, .owl-dot:focus {
  box-shadow: inset 0 0 0 8px #953f40;
  opacity: 1;
}

.owl-dot.active {
  box-shadow: inset 0 0 0 8px #953f40;
  opacity: 1;
}

/*
* @section      Page Header
* @description  This section holds specific style redeclarations for some
*               of common elements in page header
*/
/*
* @section      Page Content
* @description  This section holds specific style redeclarations for some
*               of common elements in page content
*/
.desktop .page-content {
  min-height: 100vh;
}

.page-content #intro {
  background-color: #edecec;
}

.page-content #intro .heading-6 {
  color: #262423;
  opacity: .7;
}

.page-content #intro p {
  color: #3C4045;
}

.page-content #intro .big-1 {
  font-size: 57px;
  line-height: 52px;
  color: #3C4045;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
  letter-spacing: -1.5px;
  margin-top: 30px;
  display: inline-block;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-content #intro .big-1 {
    margin-left: 140px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .page-content #intro .big-1 {
    margin-left: 152px;
    margin-top: 0;
  }
}

.page-content #intro .big-1 sup {
  font-size: 25px;
  opacity: .5;
  position: relative;
  left: -4px;
  top: -11px;
}

.page-content #intro .small {
  margin-top: 20px;
  color: #262423;
  opacity: 0.3;
}

.page-content #about .shadow {
  -webkit-box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
  box-shadow: 6px 53px 32px -15px rgba(0, 0, 0, 0.5);
}

.page-content #about h5 {
  margin-top: 37px;
  color: #fff;
  opacity: .7;
}

@media (min-width: 992px) {
  .page-content #about h5 {
    padding: 0 20px 0 13px;
  }
}

.page-content #about p {
  color: #fff;
  opacity: .5;
  margin-top: 42px;
  line-height: 30px;
  font-size: 16px;
}

.page-content #free, .page-content #free h1, .page-content #free h2, .page-content #free h3, .page-content #free h4, .page-content #free h5, .page-content #free h6, .page-content #free .heading-1, .page-content #free .heading-2, .page-content #free .heading-3, .page-content #free .heading-4, .page-content #free .heading-5, .page-content #free .heading-6 {
  color: #fff;
}

.page-content #free h1 {
  color: #953f40;
}

.page-content #free p {
  opacity: .5;
}

.page-content #free h6 {
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-content #free .small {
  opacity: .5;
}

.page-content #books h2 {
  opacity: .7;
}

/*
* @section      Page Footer
* @description  This section holds specific style redeclarations for some
*               of common elements in page footer
*/
.page-footer {
  background-color: #000;
  padding: 50px 0 75px;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
}

.page-footer p {
  opacity: .7;
}

.page-footer address {
  margin-top: 17px;
  opacity: .7;
}

.page-footer .mail {
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  opacity: .7;
  margin-top: 18px;
  transition: .3s;
  display: inline-block;
}

.page-footer .mail:hover {
  color: #953f40;
}

.page-footer .copyright {
  color: #fff;
  opacity: .2;
  font-size: 14px;
  line-height: 15px;
  padding-left: 10px;
}

/*# sourceMappingURL=style.css.map */
