/*------------------------------------------------------------------
* Vivid - Unique Multipurpose Template For Creative Portfolio & Businesses
* Version: 1.0
* Last change:  15/10/16
* http://www.energeticthemes.com/templates/vivid/index.html
* DATE: 15/10/16

1 - BASE 
  - Basic elements 
  - Titles
  - Coming Soon 
2 - Header
  - Brand logo
  - Main Nav Menu 
  -- Sideheader Menu
  -- Center header Menu
  - Top Header
  - Header and nav Mobile style
3 - Portfolio 
  - Single Portfolio
  - Work Filter
  - Portfolio col layouts
  - slider portfolio
4 - Shop
5 - Blog - posts
  - Post Author
  - Comments Box
6 - Contact Form
7 - Sidebar and widget
8 - Elements
   - Team Person Box
   - Testimonials
   - Clients list box style
   - Service Boxs
   - Video story box
   - Counter OR Fun Fact Box 
   - icon list
   - Google map
   - Parallax bg
   - Buttons
   - Price Plan
   - Countdown
   - Video background panel
   - Instagram Feed
9 - Plugins CSS 
   - owl
   - Magnific Popup CSS
   - Hover Effects 
   - SmoothState styling
10 - Important and custom css
11 - Extra CSS

------------------------------------------------------------------*/


/*=================================================
1 - BASE 
=================================================*/

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
	font-weight: bold;
    letter-spacing: 0px;
    background-color: #E7EAED;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* -------------------------------- 

Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #2b3e51;
  background-color: #ffffff;
}

a {
  color: #2c97de;
  text-decoration: none;
}

.vimeo-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   pointer-events: none;
   overflow: hidden;
}
.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

/* -------------------------------- 

Form

-------------------------------- */
.cd-form {
  width: 90%;
  max-width: 600px;
  margin: 4em auto;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2b3e51;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #2c97de;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("../img/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("../img/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #42a2e1;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}
@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 

Custom icons

-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 54px !important;
}
.cd-form .user {
  background: url("../img/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("../img/cd-icon-user.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../img/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../img/cd-icon-company.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../img/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("../img/cd-icon-email.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("../img/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("../img/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../img/cd-icon-message.svg") no-repeat 16px 16px, url("../img/cd-required.svg") no-repeat top right;
}

/* -------------------------------- 

FLoating labels 

-------------------------------- */
.js .floating-labels div {
  margin: 28px 0;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}


h1 {
    font-size: 36px;
    line-height: 1.3125em;
    letter-spacing: 3px;
    font-weight: 900;
}

h2 {
    font-size: 28px;
    line-height: 1.2em;
    letter-spacing: 2px;
    font-weight: 800;
}

h3 {
    font-size: 21px;
    line-height: 1.285714285714286em;
    font-weight: 700;
    letter-spacing: 2px;
}

h4 {
    font-size: 18px;
    line-height: 1.538461538461538em;
    letter-spacing: 2px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    line-height: 1.444444444444444em;
    letter-spacing: 1px;
    font-weight: 600;
}

h6 {
    font-size: 14px;
    line-height: 1.571428571428571em;
    font-weight: 400;
}

h1,
h1 a,
h3,
h3 a {
    color: #333
}

h2,
h2 a,
h5,
h5 a {
    color: #333;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

a,
p a {
    color: #393939;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
}

ul {
    padding: 0;
    margin: 5px;
}

select {
    padding: 10px;
    border: 1px solid #ebebeb;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 15px;
    font-size: 13px;
    width: 162px;
    margin-bottom: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

a:hover,
a:focus {
    color: #5d5d5d;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

blockquote {
    padding: 2px 0 2px 24px;
    border-left: 4px solid #505d1f;
    margin: 35px 0;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
    color: #666;
    line-height: 26px;
}

address {
    margin: 20px 0;
}

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

.full_wrapper {
    padding-right: 5%;
    padding-left: 5%;
}

.relative {
    position: relative;
}

.before_footer {
    background: #fafafa;
    margin-top: 40px;
    margin: 0;
    padding: 50px 0 75px 0;
}

.before_footer_title {
    letter-spacing: 1px;
    margin-bottom: 33px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #404040;
}

.footer_container {}

footer {}

.copyright {
    padding: 30px 0 20px 0;
    letter-spacing: 3px;
}

.copyright p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
}

.footer_nav {
    list-style: none;
}

.footer_nav li {
    display: inline-block;
    padding-right: 8px;
}

.footer_nav li:last-child {
    padding-right: 0;
}

.footer_nav li a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    color: #7d7d7d;
}

.footer_nav li a:hover {
    color: #3d3d3d;
}

.footer_nav li:last-child:after {
    content: "";
}

@media only screen and (max-width: 420px) {
    .copyright,
    .footer_nav {
        text-align: center;
    }
}

.bg_grey {
    background: #fafafa;
}

.align-table {
    display: table;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.align-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.med-image {
    text-align: center;
    margin: 40px auto;
}

.med-image img {
    text-align: center;
    margin: 10px auto;
}

.full_height {}

.thirdhalf_height {
    min-height: 400px;
}

.special_title {
    position: relative;
}

.special_title h1,
.special_title h2,
.special_title h3,
.special_title h4,
.special_title h5,
.special_title h6 {
    margin-bottom: 18px;
}

.under_line_title h1,
.under_line_title h2,
.under_line_title h3,
.under_line_title h4,
.under_line_title h5,
.under_line_title h6 {
    position: relative;
    margin-bottom: 40px;
}

.under_line_title h1:after,
.under_line_title h2:after,
.under_line_title h3:after,
.under_line_title h4:after,
.under_line_title h5:after,
.under_line_title h6:after {
    background-color: #eeeeee;
    content: "";
    display: block;
    width: 50px;
    position: absolute;
    bottom: -5px;
    left: 0;
    bottom: -21px;
    margin: 0 auto;
    height: 3px;
}

.side_line_title h3 {
    font-weight: 800;
}

.side_line_title h1,
.side_line_title h2,
.side_line_title h3,
.side_line_title h4,
.side_line_title h5,
.side_line_title h6 {
    position: relative;
    margin-bottom: 18px;
    color: #333;
    margin-left: 65px;
}

.side_line_title h4,
.side_line_title h5,
.side_line_title h6 {
    font-weight: 800;
}

.side_line_title h1:after,
.side_line_title h2:after,
.side_line_title h3:after,
.side_line_title h4:after,
.side_line_title h5:after,
.side_line_title h6:after {
    background-color: #333;
    content: "";
    display: block;
    width: 50px;
    position: absolute;
    left: -65px;
    top: 12px;
    margin: 0 auto;
    height: 3px;
}

.side_line_title h1:after {
    top: 22px;
}

.side_line_title h2:after {
    top: 16px;
}

.side_line_title h3:after {
    top: 13px;
}

.special_title.side_line_title h3:after {
    top: 11px;
}

.side_line_title.aling-right h1,
.side_line_title.aling-right h2,
.side_line_title.aling-right h3,
.side_line_title.aling-right h4,
.side_line_title.aling-right h5,
.side_line_title.aling-right h6 {
    margin-left: 0;
    margin-right: 65px;
}

.side_line_title.aling-right h1:after,
.side_line_title.aling-right h2:after,
.side_line_title.aling-right h3:after,
.side_line_title.aling-right h4:after,
.side_line_title.aling-right h5:after,
.side_line_title.aling-right h6:after {
    right: -65px;
    left: inherit;
}

.white_title h2,
.white_title {
    color: #fff;
}

.special_title.under_line_title.aling-center h1:after,
.special_title.under_line_title.aling-center h2:after,
.special_title.under_line_title.aling-center h3:after,
.special_title.under_line_title.aling-center h4:after,
.special_title.under_line_title.aling-center h5:after {
    right: 0;
}

.special_title.aling-center {
    padding-left: 5%;
    padding-right: 5%;
}

.special_title.under_line_title.aling-right h1:after,
.special_title.under_line_title.aling-right h2:after,
.special_title.under_line_title.aling-right h3:after,
.special_title.under_line_title.aling-right h4:after,
.special_title.under_line_title.aling-right h5:after {
    right: 0;
    left: inherit;
}

.line_title_left .under_line_decs {
    margin: 0;
    width: 58%;
}

.hero_title_container {
    background-image: url(../images/p1.jpg);
    background-color: #000;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: table;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    padding: 0 5%;
}

.hero_title_container2 {
    background-image: url(../images/p1.jpg);
    background-color: #000;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: table;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    padding: 0 5%;
}

.hero_title {
    text-transform: uppercase;
    display: table-cell;
    vertical-align: bottom;
    z-index: 1;
    padding: 20px 0 50px;
}

.hero_title h5 {
    letter-spacing: 10px;
    position: relative;
}

.hero_title h1 {
    margin-top: 30px;
    margin-bottom: 25px;
    letter-spacing: 10px;
    position: relative;
    color: #fff;
}

.hero_title p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    text-transform: none;
    position: relative;
    width: 50%;
}

@media only screen and (max-width: 950px) {
    .hero_title_container {
        min-height: 380px;
    }
    .hero_title h1 {
        font-size: 24px;
        letter-spacing: 8px;
        margin-bottom: 15px;
    }
    .hero_title p {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .hero_title_container {
        min-height: 450px;
    }
}

.aling-center .hero_title {
    padding: 50px 0 20px;
    vertical-align: middle;
}

.aling-center .hero_title p {
    margin: 0 auto 10px auto;
}


/* Coming Soon */

.coming_soon_container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/comingsoon.jpeg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.coming_soon_container_bg_2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/comingsoon2.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/*=================================================
2 - Header 
=================================================*/

header {
    display: table;
    width: 100%;
    table-layout: fixed;
}


/**** Logo ****/

.logo {
    width: 210px;
}

.main-nav {}

.logo h1 {
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 10px;
	border-style: solid;
    border-width: 4px;
	padding: 5px 6px 3px 10px;
	text-align: center;
}

.logo,
.main-nav,
.searbar {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}


/**** Main Nav Menu ****/

.menu-content-wrap {
    display: table;
    width: 100%;
    height: 100%;
}

.menu-content ul.menu-nav {
    width: 100%;
    list-style: none;
}

.menu-nav li a {
    font-size: 14px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    color: #393939;
    position: relative;
}

.menu-nav li.nav_logo {
    margin-top: 20px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.menu-nav li.nav_logo a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.3125em;
    color: #5d5d5d;
}

.menu-nav li.close_menu {
    margin-top: 20px;
    position: relative;
}

.close_menu i {
    font-size: 36px;
    cursor: pointer;
    color: #555;
}


/* classic nav  menu */

.classic_nav {
    overflow: visible;
}

.classic_nav .menu-content {
    display: block;
    background: transparent;
    position: relative;
    border: none;
}

.classic_nav .menu-content ul.menu-nav {
    text-align: left;
    margin-left: 1%;
    position: relative;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
    padding-left: 0.5%;
}

.menu-mobile-holder {
    display: none;
    vertical-align: middle;
    position: relative;
    width: 100%;
    text-align: right;
}

.menu-mobile {
    position: relative;
    border: solid 12px #fff;
    background: #fff;
    padding: 6px 15px;
}

.menu-mobile span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    margin-top: -2px;
    background-color: #393939;
    font-size: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.menu-mobile span:before,
.menu-mobile span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #393939;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.menu-mobile span:before {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
}

.menu-mobile span:after {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
}

.menu-mobile.menu-open span {
    background-color: transparent;
}

.menu-mobile.menu-open span:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}

.menu-mobile.menu-open span:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}

.menu-dropdown-icon:before {
    content: "\f20d";
    font-family: "ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
    right: 0;
    position: absolute;
    font-size: 16px;
}

.menu-dropdown-icon-open:before {
    content: "\f129";
}

.menu-dropdown-arrow-icon:before {
    content: "\f3d3";
    font-family: "ionicons";
    display: block;
    cursor: pointer;
    float: right;
    padding: 3px 18px 0px 0;
    color: #fff;
    right: 0;
    position: absolute;
}

.mega_menu .menu-dropdown-arrow-icon:before {
    display: none;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    display: inline-block;
    padding: 0px 22px;
    margin: 0;
    text-align: left;
}

.menu > ul > li a {
    display: block;
    font-size: 13px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #404040;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.menu > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 29%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #404040;
    -webkit-transition: .4s width;
    transition: .4s width;
}

.menu > ul > li.current > a:after,
.menu > ul > li:hover > a:after {
    width: 100%;
}

.menu > ul > li:hover > a:after {
    background: #a2a2a2;
}

.menu > ul > li:hover {}

.menu > ul > li ul {
    min-width: 225px;
    background: #1d2120;
    padding: 18px 0;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    max-width: 1200px;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .25s cubic-bezier(0, .57, .58, 1);
    transition: all .25s cubic-bezier(0, .57, .58, 1);
}

.menu > ul > li > ul li a:after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: .4s width;
    transition: .4s width;
    opacity: 0.7;
}

.menu > ul > li > ul li.current > a:after,
.menu > ul > li > ul li:hover > a:after {
    width: 20%;
}

.menu > ul > li:hover > ul {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul:hover {
    overflow: visible;
}

.menu > ul > li > ul > li > ul {
    position: absolute;
    left: 100%;
    width: 100%;
    background: #1d2120;
    margin: 0px 0 0 0;
    padding: 20px 27px;
    border: 1px solid #000;
}

.menu > ul > li > ul > li:hover > ul {
    margin-top: -34px;
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 2px 0;
    margin: 0;
    font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
    font-size: 13px;
    font-weight: 500;
    color: #d3d3d3;
    display: block;
    padding: 6px 0;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: unset;
}

.menu > ul > li > ul {
    left: auto;
}

.menu > ul > li > ul > li {
    width: 100%;
    padding: 0 27px;
}

.menu > ul > li > ul > li a {
    border: 0;
    padding: 3px 0;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: none;
}

.menu > ul > li > ul > li.current a {
    color: #fff;
}

.menu > ul > li > ul.mega_menu {
    width: 100%;
    padding: 30px 10px 28px;
}

.menu > ul > li > ul.mega_menu > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    padding: 0 25px;
    background: none;
    position: relative;
    float: left;
    border-left: solid 1px #afafaf;
}

.menu > ul > li > ul.mega_menu > li:first-child {
    border-left: none;
}

.menu > ul > li > ul.mega_menu > li > a {
    color: #fff;
    padding: .2em 0;
    width: 95%;
    display: block;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: unset;
}

.menu > ul > li > ul.mega_menu > li > ul {
    padding: 0;
    margin: 5px 0 0;
    list-style: none;
    position: relative;
    box-sizing: border-box;
    left: inherit;
    background: transparent;
    border: none;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    opacity: 0;
}

.menu > ul > li:hover > ul.mega_menu > li > ul {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.sideheader {
    display: inline-block;
    width: 89px;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    overflow: visible;
    padding: 60px 15px;
    border: none;
    box-shadow: none;
    background-color: #ffffff;
    margin: 0;
    border-right: 1px solid rgba(0, 0, 0, .04);
}

.sideheader .logo {
    text-align: center;
    width: auto;
}

.sideheader .logo,
.sideheader .main-nav {
    display: block;
}

.sideheader .main-nav {}

.sideheader .menu-content ul.menu-nav {
    display: table-cell;
    vertical-align: middle;
}

.sideheader .menu-mobile-holder {
    display: block;
    top: 100%;
    right: 0;
    left: 0;
    margin: -55px auto 0 auto;
}

.sideheaderbody {
    padding-left: 89px;
}

.sideheader .menu-content-wrap {
    padding: 70px 70px 70px 40px;
    width: 550px;
    background: #fff;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.19, 1, .22, 1);
    transition: -webkit-transform .6s cubic-bezier(.19, 1, .22, 1);
    transition: transform .6s cubic-bezier(.19, 1, .22, 1);
    transition: transform .6s cubic-bezier(.19, 1, .22, 1), -webkit-transform .6s cubic-bezier(.19, 1, .22, 1);
}

.sideheader .menu-content-wrap.open-menu-wrap {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.sideheader .menu-content {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    left: 89px;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 0;
}

.sideheader .menu-nav li {
    display: block;
    width: 100%;
    padding: 2px 22px;
}

.sideheader .menu-nav li a {
    font-size: 21px;
    font-weight: 800;
    padding: 0px 0 10px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: inherit;
    color: #222;
}

.sideheader .menu-nav > li > ul > li a {
    color: #444;
}

.sideheader .menu-nav > li > ul > li.current a {
    color: #222;
}

.sideheader #search-label {
    display: none;
}

.sideheader .search-bar {
    display: block;
    position: static;
}

.sideheader .menu-nav input[type="text"] {
    padding: 18px 40px;
    width: 100%;
}

.sideheader .menu > ul > li > ul {
    display: none;
    position: relative;
    background: #f5f5f5;
    margin-bottom: 22px;
    width: 100%;
    padding: 25px 5px;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
}

.sideheader .menu > ul > li > ul > li a {
    font-size: 14px;
    font-weight: 600;
    padding: 0px 0 5px;
}

.sideheader .menu > ul > li > ul > li > a {
    font-weight: 800;
}

.sideheader .menu > ul > li > ul > li > ul {
    margin: 5px 0 20px;
    margin: 5px 0 20px;
    position: relative;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    left: 0;
    background: transparent;
    border: none;
    padding: 0;
}

.sideheader .menu > ul > li > ul > li > ul > li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 0;
}

.sideheader .menu-dropdown-icon:before {
    display: block;
    padding: 6px 15px;
    background: transparent;
}

.open_sideheaderbody {
    padding-left: 270px;
}

.open_sideheader {
    width: 270px;
    padding: 40px 30px 30px;
}

.open_sideheader .menu-content-wrap {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: auto;
    padding: 0;
}

.open_sideheader .main-nav {
    display: table;
    margin-left: 0;
    margin-right: 0;
    text-align: inherit;
    width: 100%;
    height: 70%;
}

.open_sideheader ul.menu-nav {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.open_sideheader .menu-content {
    position: relative;
    left: 0;
    overflow-y: inherit;
    overflow-x: inherit;
    display: table-cell;
    height: auto;
    min-height: 0;
    vertical-align: middle;
    position: relative;
    z-index: 101;
    margin: 0;
    text-align: inherit;
}

.open_sideheader .menu-mobile-holder {
    display: none;
}

.open_sideheader .logo {
    z-index: 100;
    display: block;
    position: relative;
    text-align: inherit;
    overflow: hidden;
    height: 15%;
    padding: 0 12px;
}

.open_sideheader .logo img {}

.open_sideheader .menu-content-wrap {}

.open_sideheader .menu-nav li {}

.open_sideheader .menu-dropdown-icon:before {
    position: relative;
}

.open_sideheader .menu-nav li a {
    font-size: 16px;
    font-weight: 700;
    padding: 0px 0 8px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: inherit;
}

.open_sideheader .menu-nav input[type="text"] {
    padding: 12px 40px;
    width: 100%;
}

.open_sideheader .menu > ul > li ul {
    min-width: 157px;
}

.open_sideheader .menu-nav li {
    display: block;
    width: 100%;
    padding: 2px 12px;
}

.open_sideheader .menu > ul > li > ul > li > a {
    font-weight: 700;
    font-size: 13px;
    padding: 0;
    color: #333;
}

.open_sideheader .menu > ul > li > ul > li > ul > li a {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    padding: 0;
}

.open_sideheader .menu-search-bar {
    margin-top: 10px;
}

.header_widget {
    display: none;
}

.open_sideheader .header_widget {
    display: block;
    z-index: 100;
    position: relative;
    height: 15%;
    overflow: hidden;
}

.open_sideheader .header_widget .widget_cont {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 12px;
}


/*center header*/

.center_header {
    padding-top: 10px;
}

.center_header .menu-content {
    padding-left: 0;
}

.center_header .logo,
.center_header .logo img,
.center_header .main-nav,
.center_header .menu-content ul.menu-nav {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.center_header .menu > ul > li > ul {
    left: 0;
    right: 0;
    margin-right: 0 auto;
    margin-left: 0 auto;
}

.center_header .menu > ul > li > ul {
    left: inherit;
    right: inherit;
}

.center_header .menu > ul > li > a {
    padding-bottom: 40px;
}

.center_header .menu > ul > li.current > a:after,
.center_header .menu > ul > li > a:after {
    bottom: 40%;
}

.center_header .logo h1 {
    font-size: 30px;
}

.center_header .logo {
    padding: 35px 0 10px 0;
}

.absolute_header {
    position: absolute;
    z-index: 9999;
    padding-top: 30px;
    padding-bottom: 12px;
}

.white_color_nav .menu-content .menu-nav li a,
.white_color_nav .logo h1 a,
.white_color_nav .menu-content .menu-nav li {
    color: #fff;
}

.white_color_nav .menu > ul > li.current > a:after,
.white_color_nav .menu > ul > li:hover > a:after {
    background-color: #fff;
}

.menu-search-bar {
    position: relative;
}

.menu-search-bar.search-bar-right {
    float: right;
}


/* Top Header */

.top_header {
    background: #000;
    padding: 10px 5%;
}


}
.top_header .top_header_nav {}
.top_header .top_header_nav li {
    display: inline-block;
    list-style: none;
    padding-right: 20px;
}
.top_header .top_header_nav li:last-child {
    padding-right: 0;
}
.top_header .top_header_nav li a {
    color: #fff;
    font-size: 13px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
}
.top_header .top_header_nav li a i {
    font-size: 16px;
    line-height: 1;
}
#search-label {
    cursor: pointer;
    display: block;
    padding-top: 30px;
    padding-bottom: 25px;
    font-size: 20px;
}
.search-bar {
    position: absolute;
    right: 8px;
    margin-top: 5px;
    display: none;
    z-index: 999;
}
.menu-nav input[type="text"] {
    background: rgba(0, 0, 0, 0.86);
    padding: 23px 40px;
    width: 350px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
  Header and nav Mobile style
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
    header {
        width: 100%;
        display: block;
        padding: 12px 0;
    }
    
    .classic_nav {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .classic_nav .menu-content ul.menu-nav {
        position: absolute;
    }
    
    .absolute_header {
        padding-top: 30px;
        padding-bottom: 12px;
    }
    
    .logo,
    .searbar {}
    
    .main-nav {
        display: block;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .menu-container {
        width: 100%;
        padding-left: 0;
    }
    
    .menu-mobile-holder {
        display: table-cell;
    }
    
    .menu-dropdown-icon:before {
        display: block;
    }
    
    .menu > ul {
        display: none;
    }
    
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
        position: relative;
        float: left;
    }
    
    .menu > ul > li a {
        padding: 14px 0;
        display: inline-block;
        font-size: 14px;
    }
    
    .menu > ul > li > ul {
        display: none;
        background: #f5f5f5;
        padding: 20px 0px;
        width: 100%;
        position: relative;
        left: inherit;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        -webkit-transition: none;
        transition: none;
    }
    
    .menu > ul > li > ul > li > a {
        border: 0;
        padding: 3px 0;
        font-size: 14px;
        font-weight: 700;
        color: #404040;
    }
    
    .menu > ul > li > ul > li.current a {
        color: #404040;
    }

    .menu > ul > li > ul > li > ul > li a {
        color: #404040;
    }
    
    .menu > ul > li > ul > li > ul {
        display: block;
        position: static;
        border: none;
        margin: 5px 0 0 0;
        padding: 0;
        background-color: transparent;
        position: relative;
        left: inherit;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }
    
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 5px;
    }
    
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    
    .menu > ul > li > ul.mega_menu {}
    
    .menu > ul > li > ul.mega_menu > li {
        width: 100%;
        border: none;
    }
    
    .menu > ul > li > ul.mega_menu > li > ul {
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }
    
    .white_color_nav .menu-content .menu-nav li a,
    .white_color_nav .menu-content .menu-nav li {
        color: #404040;
    }
    
    .menu-content ul.menu-nav {
        position: absolute;
        background-color: #fff;
        margin-top: 16px;
        padding: 30px 20px;
        margin-left: 0;
        -webkit-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        -moz-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        z-index: 99999;
    }
    
    .menu .show-on-mobile {
        position: absolute;
        background-color: #fff;
        margin-top: 16px;
        padding: 30px 20px;
        margin-left: 0;
        -webkit-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        -moz-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
        z-index: 99999;
    }
    
    .show-on-mobile .search-bar {
        display: block;
        position: static;
        margin-top: 15px;
        right: 0;
    }
    
    .show-on-mobile #search-label {
        display: none;
    }
    
    .menu-nav input[type="text"] {
        width: 100%;
        padding: 15px 40px;
    }
    
    .sideheader {
        display: block;
        width: 100%;
        position: relative;
        overflow: visible;
        padding: 10px 15px;
        border: none;
        box-shadow: none;
        background-color: #ffffff;
    }
    
    .sideheader .menu-content {
        position: static;
        display: block;
    }
    
    .sideheader .logo {
        display: table-cell;
        width: 100%;
    }
    
    .sideheader .menu-content-wrap {
        padding: 0;
        width: 100%;
        -webkit-transform: none;
        transform: none;
    }
    
    .sideheader .menu-mobile-holder {
        width: 100%;
        display: table-cell;
        right: 0;
        left: 0;
        margin: -15px auto 0 auto;
    }
    
    .sideheader .menu-content .menu > ul {
        display: none;
    }
    
    .sideheader .menu-nav li a {
        padding: 14px 0;
        font-size: 14px;
    }
    
    .sideheaderbody,
    .open_sideheaderbody {
        padding-left: 0;
    }
    
    .center_header {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .center_header .logo {
        display: table-cell;
        padding: 10px 0 10px 0;
        width: 100%;
    }
    
    .center_header .logo img {
        margin: 0;
    }
    
    .center_header .logo h1 {
        font-size: 24px;
    }
    
    .center_header .menu-content ul.menu-nav {
        display: none;
    }
    
    .center_header .menu > ul > li > a {
        padding: 14px 0;
    }
    
    .center_header .menu > ul > li.current > a:after,
    .center_header .menu > ul > li > a:after {
        bottom: 23%;
    }
}

/*=================================================
3 -Portfolio 
=================================================*/
.single_work_header {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.single_work_header .single_work-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single_work_header .single_work_title {
    text-align: center;
    z-index: 1;
    position: absolute;
    bottom: 35%;
    width: 100%;
}
.single_work_header .single_work_title h1 {
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    letter-spacing: 6px;
    line-height: 1.4em;
    text-transform: uppercase;
}
.single_work_header .single_work_title h1 a {
    color: #fff;
}
.single_work_header .single_work_title h5 {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 3px;
}
.single_work_header .single_work_scroll {
    position: absolute;
    width: 100%;
    bottom: 3.5%;
    margin: 0 auto;
    text-align: center;
}
.single_work_header .scroll_line {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}
.single_work_header .scroll_line:before {
    background-color: #fff;
    content: "";
    display: block;
    width: 3px;
    height: 50px;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    top: -75px;
    margin: 0 auto;
}
.single_work_info {
    padding: 60px 0 40px;
}
.single_work_content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}
.single_work_wide_box {
    padding: 0 5%;
}
.work_grey_container {
    background: #fafafa;
    padding: 5% 6%;
}
.details_list {
    background: #fafafa;
    font-size: 14px;
    line-height: 1.8;
    color: #6d6d6d;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 40px 40px;
}
.details_list strong {}
.work_nav {
    margin: 60px 5% 0;
    padding: 10px 40px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    border-top: solid 1px #eeeeee;
}
.work_nav i {
    padding: 0 4px;
}
.nav-btn {
    margin: 0;
    padding: 0;
    padding: 20px 0;
}
.nav-btn .pre-btn {
    text-align: left;
}
.nav-btn .next-post {
    text-align: right;
    float: right;
    text-align: right;
}
@media only screen and (max-width: 950px) {
    .single_work_header .single_work_title h1 {
        font-size: 18px;
        letter-spacing: 5px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .single_work_header .single_work_title h5 {
        letter-spacing: 3px;
        font-size: 12px;
    }
    
    .single_work_header .single_work_title p {
        font-size: 14px;
        line-height: 25px;
        padding: 0 1%;
    }
    
    .nav-btn .pre-btn,
    .nav-btn .next-post {
        text-align: center;
        float: none;
        display: block;
    }
    
    .single_work_header {
        padding-top: 0;
    }
}

/* Work Filter */
.work_filter {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 35px;
}
.work_filter li {
    display: inline-block;
    position: relative;
    margin-left: 35px;
    padding: 0 15px;
}
.work_filter li:first-child {
    padding-left: 0;
    margin-left: 0;
}
.work_filter li:after {
    display: inline-block;
    content: "";
    position: absolute;
    background: #444;
    height: 2px;
    width: 20px;
    right: -10px;
    bottom: 12px;
}
.work_filter li span {
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 700;
    color: #444;
}
.filter_left {
    text-align: left;
}
.button_filter {
    margin: 12px 0 30px;
}
.button_filter:after {
    clear: both;
    content: '';
    display: table;
}
.filter_button {
    background: #333;
    color: #fff;
    padding: 10px 18px;
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 2px;
    margin-right: 5px;
}
.button_filter .filter_button {
    float: left;
}
.button_filter .work_filter {
    display: none;
    margin-bottom: 0;
}
.button_filter .work_filter li {
    background: #EEE;
    padding: 10px 20px;
    text-transform: none;
    cursor: pointer;
    margin-left: 5px;
}
.button_filter .work_filter li:after {
    background: transparent;
}
.button_filter .work_filter li span {
    font-size: 13px;
    letter-spacing: 2px;
}
@media only screen and (max-width: 450px) {
    .work_filter {
        margin-bottom: 20px;
    }
    
    .work_filter li {
        display: block;
        position: relative;
        margin-left: 0;
        padding: 6px 0;
    }
    
    .work_filter li:after {
        background: transparent;
    }
}

/* Portfolio col layouts */
.work_item {
    position: relative;
}
.work_item .work_img {
    position: relative;
    overflow: hidden;
}
.work_item .work_item_title {
    margin-bottom: 5px;
}
.work_item .work_item_title h2 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.et_three_col .work_item .work_item_title h2 {
    font-size: 18px;
}
.et_four_col .work_item .work_item_title h2 {
    font-size: 16px;
    margin-bottom: 5px;
}
.work_item .work_item_title h5 {
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 6px;
}
.et_four_col .work_item .work_item_title h5 {
    margin-top: 5px;
}
.work_item .work_title .work_categories {
    list-style: none;
}
.work_item .work_title .work_categories li {
    display: inline-block;
    letter-spacing: 2px;
}
.work_item .work_title .work_categories li:after {
    content: ',';
}
.work_item .work_title .work_categories li:last-child:after {
    content: '';
}

/* slider portfolio */
.work-carousel {}
.work-carousel .work-item {
    background: #fff;
    overflow: hidden;
    position: relative;
}
.work-carousel .work-item:before {
    content: '';
    background: rgba(245, 245, 245, 0.90);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.work-item-content {
    position: absolute;
    width: 100%;
    bottom: 12%;
    left: 0;
    padding: 0 5%;
    z-index: 999;
    color: #fff;
}
.work-item-info {
    width: 20%;
    float: left;
}
.work-title {
    width: 32%;
    float: left;
    padding-left: 20px;
}
.work-item-desc {
    width: 38%;
    float: left;
    margin-top: 18px;
    padding-left: 5%;
    font-size: 16px;
    line-height: 28px;
}
.work-date {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
}
.work-title h2 {
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    letter-spacing: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.4em;
}
.work-title h2 a {
    color: #fff;
}
.work-title h2 a:hover:after {
    background: transparent;
    height: 0;
    width: 0;
    transition: none;
}
.work-activities {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.work-count {
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 1.2;
    z-index: 2;
    margin-bottom: 5px;
    color: #fff;
}
.work_load {
    bottom: -7%;
    left: 41%;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.work_load a {
    color: #fff;
}
.work-carousel .work-item .work-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-carousel .work-item .work-img:after {
    content: '';
    height: 130%;
    width: 105%;
    border: solid 23px #fff;
    top: -18%;
    position: absolute;
    z-index: -1;
}
@media only screen and (max-height: 901px) {}
@media only screen and (max-height: 770px) {}
@media only screen and (max-width: 1400px) {}
@media only screen and (max-width: 1250px) {}
@media only screen and (max-width: 1030px) {
    .work-count {
        font-size: 52px;
    }
    
    .work-title h2 {
        font-size: 42px;
        letter-spacing: 6px;
    }
    
    .work-item-desc {
        font-size: 14px;
        width: 46%;
    }
}
@media only screen and (max-width: 950px) {
    .work-item-content {
        bottom: 19%;
    }
    
    .work-item-info {
        width: 100%;
        float: none;
    }
    
    .work-count {
        letter-spacing: 2px;
        font-weight: 700;
        font-size: 30px;
    }
    
    .work-date {
        font-size: 14px;
        margin-bottom: 0px;
    }
    
    .work-activities {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .work-title {
        width: 100%;
        padding-left: 0;
    }
    
    .work-title h2 {
        font-weight: 800;
        color: #fff;
        font-size: 32px;
        letter-spacing: 3px;
        line-height: 1.3em;
    }
    
    .work-item-desc {
        width: 100%;
        padding-left: 0;
        margin-top: 8px;
    }
    
    .work-carousel .owl-nav {
        display: none;
    }
}
@media only screen and (max-width: 750px) {
    .work-item-desc {
        width: 100%;
        display: none;
    }
}
.boxed_work_carousel .work-img {
    width: 50%;
    float: left;
}
.boxed_work_carousel .work-item .work-img img {
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
}
.boxed_work_carousel .work-item .work-item-content {
    width: 50%;
    bottom: 50%;
    transform: translateY(50%);
    right: 0;
    padding: 0 8% 0 5%;
    left: 50%;
    float: right;
    color: #404040;
}
.boxed_work_carousel .work-item-info {
    width: 100%;
    display: block;
    float: none;
}
.boxed_work_carousel .work-title {
    width: 100%;
    display: block;
    float: none;
    padding-left: 0;
    margin-top: 25px;
}
.boxed_work_carousel .work-item-desc {
    width: 100%;
    display: block;
    float: none;
    margin-top: 10px;
    padding-left: 0;
    font-size: 14px;
    line-height: 28px;
}
.boxed_work_carousel .work-date {
    font-size: 14px;
    margin-bottom: 5px;
}
.boxed_work_carousel .work-activities {
    font-size: 13px;
}
.boxed_work_carousel .work-title h2 {
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.4em;
}
.boxed_work_carousel .work-count {
    font-size: 46px;
}
.boxed_work_carousel .work-title h2 a,
.boxed_work_carousel .work-count {
    color: #404040;
}
.boxed_work_carousel .work-item:before {
    background: #fff;
}
.boxed_work_carousel .owl-dots {
    left: 5%;
}
.boxed_work_carousel .owl-nav {
    display: none;
}
@media only screen and (max-width: 750px) {
    .boxed_work_carousel .work-item .work-img,
    .boxed_work_carousel .work-item .work-item-content {
        width: 100%;
        float: none;
    }
    
    .boxed_work_carousel .work-item .work-img img {
        position: absolute;
        width: 100%;
        height: 50%;
    }
    
    .boxed_work_carousel .work-item .work-item-content {
        transform: inherit;
        left: 0;
        top: 54%;
    }
    
    .boxed_work_carousel .work-item-content p,
    .boxed_work_carousel .work-item-content .button {
        display: none;
    }
    
    .boxed_work_carousel .work-title {
        margin-top: 10px;
    }
    
    .boxed_work_carousel .work-count {
        font-size: 36px;
    }
    
    .boxed_work_carousel .work-date {
        font-size: 13px;
        margin-bottom: 0;
    }
    
    .boxed_work_carousel .work-title h2 {
        font-size: 28px;
    }
}

/*=================================================
4 - Shop
=================================================*/
.products {
    margin-right: -15px;
    margin-left: -15px;
    padding: 0;
    list-style: none;
    clear: both;
}
.products li {
    float: left;
    width: 33.33333333%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 0 40px 0;
    position: relative;
}
.products li a.product_link:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    width: 80%;
    height: 90%;
    top: 0;
    bottom: 0;
    right: 15px;
    left: 15px;
    margin: auto;
    z-index: 8;
    -webkit-transition: opacity .2s ease-out, top .2s ease-out;
    transition: opacity .2s ease-out, top .2s ease-out;
    opacity: 0;
    transform: scale(.95, .95);
}
.products li h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: normal;
    margin-bottom: 6px;
    position: absolute;
    top: 10%;
    left: 18%;
    z-index: 10;
    -webkit-transition: opacity .2s ease-out, top .2s ease-out;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 10px, 0);
}
.products li .price {
    display: block;
    font-size: 16px;
    font-weight: 800;
    padding-top: 4px;
    margin-bottom: 10px;
    position: absolute;
    left: 18%;
    top: 20.4%;
    z-index: 10;
    transition: opacity .2s ease-out, top .2s ease-out;
    opacity: 0;
    transition: transform 0.35s;
    transform: translate3d(0, 10px, 0);
}
.products li:hover a.product_link:after {
    opacity: 1;
    transform: scale(1, 1);
}
.products li:hover h3,
.products li:hover .price {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.products li .button {
    padding: 10px;
}
.products li .add_to_cart_button {
    z-index: 10;
    min-width: auto;
    padding: 6px 9px;
    height: 23px;
    line-height: 13px;
    font-size: 9px;
    width: initial;
    background-color: #393939;
    color: #fff;
    margin-top: 1em;
    position: absolute;
    bottom: 11%;
    right: 27%;
    visibility: hidden;
    border-radius: 2px;
}
.products li .add_to_cart_button:after {
    content: '';
    position: absolute;
    top: 1px;
    width: 0;
    right: -6px;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 11px solid #393939;
}
.products li .add_to_cart_button:before {
    font-family: ionicons;
    content: "\f110";
    color: #393939;
    font-size: 28px;
    line-height: 37px;
    font-weight: 400;
    visibility: visible;
    position: absolute;
    top: -7px;
    right: -44px;
    opacity: 1;
}
.products li .add_to_cart_button:hover {
    visibility: visible;
}
.products li:hover a.add_to_cart_button {
    opacity: 1;
}

/* Rating */
.products .rating {
    position: absolute;
    left: 18%;
    top: 28%;
    z-index: 10;
    transition: opacity .2s ease-out, top .2s ease-out;
    opacity: 0;
    transition: transform 0.35s;
    transform: translate3d(0, 10px, 0);
}
.products li:hover .rating {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    font-size: 20px;
}
.rating span.star {
    font-family: ionicons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    cursor: pointer;
}
.rating span.star:before {
    content: "\f3ae";
    padding-right: 0px;
    color: #444444;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
    content: "\f2fc";
    padding-right: 0px;
    color: #444444;
}
@media only screen and (max-width: 959px) {
    .products li {
        float: left;
        width: 50%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 40px 0;
        position: relative;
    }
}
@media only screen and (max-width: 450px) {
    .products {
        margin-right: 0;
        margin-left: 0;
    }
    
    .products li {
        float: left;
        width: 100%;
        margin: 0 0 40px 0;
    }
}

/*=================================================
9 - Blog - posts
=================================================*/
.blog_posts {
    width: 100%;
    margin: 60px 0;
}
.blog_posts li {
    width: 33.3333333%;
    float: left;
    padding: 0 1% 40px;
    list-style: none;
}
@media only screen and (max-width: 900px) {
    .blog_posts {
        width: 100%;
    }
    
    .blog_posts li {
        width: 100%;
        float: left;
        padding: 0 0 40px;
        list-style: none;
    }
}
.blog_posts .single_post {
    margin: 0;
}
.single_post .post_img {
    position: relative;
    margin-bottom: 20px;
    background: #8d8d8d;
    overflow: hidden;
}
.post_info {
    padding-right: 10px;
    text-align: center;
}
.blog_posts .single_post .post_info {
    text-align: center;
}
.blog_posts .single_post .post_info a {
    color: #404040;
}
.blog_posts .single_post .post_info .post_category {
    display: block;
    text-transform: uppercase;
}
.post_meta {
    margin-bottom: 15px;
}
.post_meta li {
    list-style: none;
    display: inline-block;
    padding-right: 15px;
}
.post_info .post_category span,
.post_meta {
    font-weight: 600;
    font-size: 12px;
}
.post_info .post_category span:after {
    content: ","
}
.post_info .post_category span:last-child:after {
    content: ""
}
.single_blog_post {
    margin: 60px 0 50px 0;
}
.single_blog_post .post_title {
    font-weight: 700;
    font-size: 28px;
    margin-top: 50px;
    line-height: 1.5em;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 1px;
}
.single_blog_post .post_title {
    color: #404040;
}
.single_post .post_info {
    text-align: center;
}
.single_blog_post .post_meta,
.single_blog_post .post_meta a {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: #555;
}
.blog_posts .single_post .post_title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: capitalize;
}
.blog_posts .single_post .post_title a {
    color: #404040;
}
.single_post .post_content {
    margin-top: 20px;
}
.blog_posts .single_post .post_content {
    margin-top: 0;
    margin-bottom: 15px;
}
.single_post_image {}
.single_post_image img {}
.blog-post-tags {
    list-style: none;
    width: 60%;
    float: left;
}
.blog-post-tags li {
    display: inline-block;
    margin: 0 5px 20px 0;
}
.blog-post-tags li a {
    margin: 0 2px 0 0;
    padding: 10px 10px;
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 1px;
}
.blog_item_quote {
    text-align: center;
}
.blog_item_quote blockquote {
    padding: 26px 25% 0;
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 800;
    border-left: 0;
    position: relative;
    font-style: normal;
}
.blog_item_quote blockquote a {
    color: #6d6d6d;
}
.blog_item_quote blockquote:before {
    content: '';
    height: 3px;
    width: 50px;
    background: #f5f5f5;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
}
.drop-caps {
    float: left;
    position: relative;
    top: 4px;
    margin-right: .3em;
    margin-bottom: .1em;
    padding-bottom: .1em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: .8em;
    font-family: Arial, sans-serif;
    padding: 8px 12px;
    font-size: 440%;
    color: #FFF;
    background: #252525;
}

/**** Post Author ****/
.post-author {
    padding-bottom: 35px;
    margin-top: 25px;
}
.post-author img {
    margin: 0 25px 10px 0;
    float: left;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
}
.post-author h5 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
}
.post-author p {
    color: #666;
}

/**** Comments Box ****/
.comment-wrap {
    margin: 40px 0 50px;
}
.comment-wrap .comment-title,
.comment-form-warp .comment-title {
    font-size: 17px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #5d5d5d;
    margin-bottom: 21px;
    padding-bottom: 12px;
    letter-spacing: 2px;
    border: none;
    border-bottom: 2px solid #f4f4f4;
}
.comment-form-warp .comment-title {
    border-bottom: none;
}
.comment-wrap .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.comment-wrap .comment-list li {
    padding: 30px 0;
    margin-bottom: 9px;
    position: relative;
    list-style: none;
    border-bottom: solid 1px #f4f4f4;
}
.comment-wrap .comment-list li .avatar {
    width: 64px;
    height: 64px;
    float: left;
    margin-right: 26px;
}
.comment-wrap .comment-list li .avatar img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
}
.comment-wrap .comment-list li .comment-text {
    overflow: hidden;
}
.comment-wrap .comment-list li .comment-text .comment-head {
    margin-bottom: 9px;
}
.comment-wrap .comment-list li .comment-text .name-n-time {
    float: left;
    display: block;
    text-transform: uppercase;
}
.comment-wrap .comment-list ul {
    padding: 20px 0 15px 55px;
}
.comment-wrap .comment-list ul li {
    border: none;
    padding-bottom: 0;
    margin-bottom: 3px;
}
.comment-wrap .comment-form-warp {
    margin-top: 42px;
}
.comment-wrap .comment-form-warp .btline-title {
    margin-bottom: 37px;
}
.comment-wrap .comment-author {
    font-weight: 600;
}
.comment-form-warp .button {
    font-size: 14px;
    letter-spacing: 1px;
}

/*=================================================
10 - Contact Form
=================================================*/
.contact_form {
    padding-top: 4px;
}
.contact_form input[type="text"],
.contact_form textarea,
.comment-form-warp input[type="text"],
.comment-form-warp textarea {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    border: 0;
    border: 1px solid #f1f1f1;
    padding: 12px 22px;
    font-family: inherit;
    letter-spacing: 2px;
    font-size: 12px;
}
.contact_form textarea {
    margin-bottom: 18px;
    height: 180px;
    max-width: 100%;
}
.contact_form textarea:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}
input[type="submit"] {
    width: inherit;
}
input,
select,
textarea {}
form .send_button {
    margin-top: 10px;
    border: none;
    background: #37474f;
    color: #fff;
    border: solid 2px #37474f;
}
form .send_button:hover {
    background: transparent;
    color: #37474f;
}
.contact_form .alert.alert-danger {
    margin-top: 20px;
    background: rgba(228, 25, 25, .75);
    color: #fff;
}
.contact_form .alert.alert-success {
    margin-top: 20px;
    background: rgba(50, 178, 95, .75);
    color: #fff;
}
.contact_form .has-error input[type="text"],
.contact_form .has-error textarea {
    border-color: rgba(228, 25, 25, .75);
}
.contact_form .form-group {
    margin-bottom: 0;
}

/*=================================================
10 - Sidebar and widget
=================================================*/
.sidebar {
    margin-top: 60px;
}
.widget {
    margin-bottom: 35px;
}
.widget h4 {
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    color: #404040;
}

/*news feed and search box*/
.news_feed,
.search_box {
    margin-bottom: 20px;
}
.news_feed input[type="text"],
.search_box input[type="search"] {
    width: 70%;
    display: inline-block;
    margin: 0;
    border: 0;
    border-bottom: 0px solid #dfdfdf;
    padding: 14px 15px;
    font-family: inherit;
    letter-spacing: 2.5px;
    font-size: 12px;
    float: left;
}
.news_feed .send_button,
.search_box .send_button {
    width: 30%;
    margin: 0;
    float: left;
    color: #fff;
    background: #37474f;
    border: solid 2px #37474f;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.news_feed .send_button:hover,
.search_box .send_button:hover {
    background: #fafafa;
    color: #3d3d3d;
    border: solid 2px #37474f;
}
.news_feed:after,
.search_box:after {
    content: '';
    display: block;
    clear: both;
}
.search_box input[type="search"] {
    background: #fafafa;
}
.search_page_box {
    width: 400px;
    margin: 40px auto 0 auto;
}
.search_page_box input[type="search"],
.search_page_box .send_button {
    background: #fff;
}

/****  Entries and categories widget ****/
.widget_recent_entries ul,
.widget_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget_recent_entries ul li,
.widget_categories ul li {
    padding: 4px 0;
}
.widget_recent_entries ul li:after,
.widget_categories ul li:after {
    content: "\f125";
    font-size: 14px;
    font-family: 'ionicons';
    float: right;
    color: #444;
}
.widget_recent_entries ul li a,
.widget_categories ul li a {
    color: #444;
    font-weight: 600;
    font-size: 13px;
}
.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover {
    color: #a67c52;
}
.widget_nav_menu ul {
    margin: 0;
    padding: 0;
}
.widget_nav_menu ul li {
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    padding: 1px 0;
}

/*=================================================
12 - Elements 
=================================================*/

/*=================================================
 Team person Box
=================================================*/
.team-person-container {
    margin-left: 10%;
}
.team-person-container:after {
    content: '';
    clear: both;
    display: block;
}
.team-person-container li {
    list-style: none;
    float: left;
    width: 30%;
    margin-left: -10%;
    border: solid 5px #fff;
    -webkit-transition: opacity .3s cubic-bezier(.215, .61, .355, 1);
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1);
}
.team-person-container li:nth-child(even) {
    margin-top: 16%;
    z-index: 999;
}
.team-person-container li:hover {
    z-index: 9999;
}
.team-person {
    position: relative;
}
.team-person .team-photo {
    position: relative;
    overflow: hidden;
}
.team-person .team-photo img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.team-person .team-info {
    padding: 50% 10%;
    position: absolute;
    top: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.90);
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .3s cubic-bezier(.215, .61, .355, 1);
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1);
}
.team-person:hover .team-info {
    opacity: 1;
}
.team-person .team-info .team-name {
    font-size: 16px;
    margin-bottom: 4px;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
}
.team-person .team-info .team-role {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}
.team-person .et-icon {
    font-size: 16px;
    color: #7d7d7d;
    margin: 0 6px;
    padding: 0 6px;
    display: inline-block;
}
.team-person .et-icon:hover {
    color: #8a8f6a;
}
.team-person .team-photo .overlay {
    background: #fff;
}
.team-person .team-photo:hover .overlay {
    opacity: 0.9;
    filter: alpha(opacity=90);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.team-person .overlay .content-wrap h3 {
    font-family: 'Raleway', sans-serif;
}
.simple-team-person {
    position: relative;
}
.simple-team-person .team-info {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}
.simple-team-person .team-info:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.90) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.90) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.90) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d6000000', GradientType=0);
}
.simple-team-person .team-info .team-name {
    position: absolute;
    bottom: 40px;
    color: #fff;
    z-index: 999;
    font-size: 21px;
    font-weight: 600;
}
.simple-team-person .team-info .team-role {
    position: absolute;
    bottom: 23px;
    color: #fff;
    z-index: 999;
    font-size: 14px;
}
.simple_text_team_person {}
.simple_text_team_person .team-info {
    margin-top: 20px;
}
.simple_text_team_person .team-name {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 6px;
}
.simple_text_team_person .team-role {
    margin-bottom: 10px;
    font-weight: 700;
}
.simple_text_team_person .team-person-desc {}
@media only screen and (max-width: 740px) {
    .team-person-container {
        margin-left: 0;
    }
    
    .team-person-container li {
        width: 50%;
        margin-left: 0;
    }
    
    .team-person-container li:nth-child(even) {
        margin-top: 0;
        z-index: 999;
    }
    
    .simple-team-person {
        margin-bottom: 20px;
    }
}

/*=================================================
 Testimonials 
=================================================*/
.testimonials_title h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.testimonials {
    margin: 20px 0;
}
.testimonials .testimonial {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 8%;
    text-align: center;
    color: #333;
}
.testimonials .testimonial .client {
    margin-top: 12px;
}
.testimonials .testimonial .client .client-info,
.testimonials .testimonial .client .client-pic {
    display: inline-block;
    vertical-align: middle;
}
.testimonials .testimonial .client .client-pic img {
    width: 75px;
    height: 75px -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
}
.testimonials .testimonial .client .client-info {
    letter-spacing: 1px;
    font-weight: 500;
}
.testimonials .testimonial .client .client-info a {
    color: #333;
}
.testimonials .testimonial .client .client-name {}
.testimonial-style-two {
    text-align: center;
}
.testimonial-style-two img {
    border-radius: 50%;
    max-width: 120px;
    margin: 0 auto 30px auto;
}
.testimonials .owl-controls .owl-dots {
    position: absolute;
    left: inherit;
    transform: translate(0, 0);
    bottom: 107%;
    right: 0;
}
.testimonials .owl-controls .owl-dots .owl-dot span {
    border-radius: 0;
    background-color: #e7e6ec;
    border: 1px solid #e7e6ec;
}
.testimonials .owl-controls .owl-dots .owl-dot.active span {
    background: #707072;
    border-color: #707072;
}

/*=================================================
 Clients list box style
=================================================*/
.clients-box {
    margin: 0;
    padding: 0;
    text-align: center;
}
.clients-box li {
    list-style: none;
    width: 19.5%;
    display: inline-block;
}
.clients-box li img {}
@media only screen and (max-width: 950px) {
    .clients-box li {
        list-style: none;
        width: 50%;
        float: left;
        position: relative;
    }
}

/*=================================================
 Service Boxs
=================================================*/
.service_box {
    text-align: center;
}
.service_box_align_left {
    text-align: left;
}
.service_box .service_number {
    font-size: 18px;
}
.service_box .service_icon {
    font-size: 90px;
    margin-bottom: 25px;
}
.service_box .service_icon .fa {
    font-size: 30px;
}
.service_img {
    margin-bottom: 30px;
}
.service_box_align_left .service_icon {
    float: left;
}
.service_box_align_left .service_info {
    margin-left: 65px;
}
.service_box_align_right {
    text-align: right;
}
.service_box_align_right .service_icon {
    float: right;
}
.service_box_align_right .service_info {
    margin-left: 0;
    margin-right: 65px;
}
.service_box h3 {
    text-transform: uppercase;
    font-size: 18px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 800;
}
.service_info .read_more {
    font-weight: 600;
}
.text_half_overlay,
.service_shadow_text_box,
.service_shadow_text_box_center {
    margin-bottom: 40px;
}
.text_half_overlay .service_img,
.service_shadow_text_box .service_img {
    position: relative;
    z-index: 1;
}
.text_half_overlay .service_info,
.service_shadow_text_box .service_info,
.service_shadow_text_box_center .service_info {
    margin: -115px 50px 0;
    background-color: #fff;
    position: relative;
    z-index: 99;
    padding: 40px;
    -webkit-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
    box-shadow: -5px 2px 39px 5px rgba(0, 0, 0, 0.12);
}
.service_shadow_text_box {
    display: table;
    table-layout: fixed;
}
.service_shadow_text_box .service_img {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.service_shadow_text_box .service_info {
    width: 50%;
    margin: 40px 0 0 -100px;
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.service_shadow_text_box_center .service_info,
.service_shadow_text_box_center .service_img {
    margin: 0;
}
@media only screen and (max-width: 950px) {
    .service_box {
        margin-bottom: 30px;
    }
    
    .service_shadow_text_box .service_img,
    .service_shadow_text_box .service_info {
        display: block;
        width: 100%;
        margin: 0;
    }
    
    .text_half_overlay .service_info {
        margin: -115px 15px 0;
    }
}

/*=================================================
 Video story box
=================================================*/
.story-container {
    min-height: 700px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0 5%;
}
.long-story {
    height: 700px;
}
.story-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.story-wrapper:before {
    clear: both;
    display: block;
    content: '';
}
.story-wrapper .story-details,
.story-wrapper .storu-img {}
.story-wrapper .story-info {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 30px;
}
.small-font-title {}
.small-font-title h3 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.big-font-title {
    margin-bottom: 25px;
}
.big-font-title h1 {
    color: #fff;
    font-size: 42px;
    letter-spacing: 5px;
    text-align: center;
    text-transform: uppercase;
}
.story-bio {
    width: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin: 0 auto 40px auto;
}
.video-play-trigger {
    display: inline-block;
    width: 60px;
    height: 60px;
    text-indent: 4px;
    background: none;
    border: 2px solid white;
    box-shadow: none;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.video-play-trigger .icon-play {
    text-align: center;
    cursor: pointer;
    line-height: 57px;
    font-size: 28px;
    color: white;
    text-shadow: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.video-play-trigger:hover {
    background: #fff;
}
.video-play-trigger:hover .icon-play {
    color: #393939;
}
@media only screen and (max-width: 950px) {
    .big-font-title h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .story-bio {
        width: 100%;
        font-size: 16px;
    }
}
.container-services-sc {
    padding: 80px 0 40px 0;
}

/*=================================================
 Counter OR Fun Fact Box 
=================================================*/
.counter_box {
    text-align: center;
    color: #333;
}
.counter_box_icon {
    font-size: 40px;
    line-height: 110px;
    margin: 0 auto 20px;
    width: 110px;
    height: 110px;
    border: solid 3px;
    border-radius: 100%;
    text-align: center;
}
.counter_box_number {
    font-size: 48px;
    line-height: 62px;
    font-weight: 600;
    margin-bottom: 20px;
}
.counter_box_title h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media only screen and (max-width: 950px) {
    .counter_box {
        margin-bottom: 40px;
    }
}

/*=================================================
 icon list
=================================================*/
.icons_list {
    margin: 0;
    padding: 0;
}
.icons_list li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    padding: 0 7px;
}
.icons_list.circle li {
    background-color: transparent;
    border: 2px solid #dbdbdb;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    -webkit-transition: background-color .15s ease-out, border-color .15s ease-out;
    -moz-transition: background-color .15s ease-out, border-color .15s ease-out;
    transition: background-color .15s ease-out, border-color .15s ease-out;
    margin: 0px 6px 0px 0px;
    width: 32px;
    height: 32px;
    line-height: 29px;
    background-color: rgb(68, 68, 68);
    border-color: rgb(68, 68, 68);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.icons_list.circle li a {
    color: #fff;
}
.icons_list.circle li:hover {
    background-color: #333333;
    border-color: #333333;
}

/* Row with equal height columns */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width:768px) {
    .row-eq-height {
        display: block;
    }
}

/*=================================================
 Google map
=================================================*/
.google_map {
    width: 100%;
    height: 536px;
}
#gmap_canvas {
    width: 100%;
    height: 536px;
}
.full_page_height_map.google_map {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
}
.full_page_height_map #gmap_canvas {
    height: 100%;
}
@media only screen and (max-width:768px) {
    .full_page_height_map.google_map {
        position: relative;
    }
}
#gmap_canvas img {
    max-width: none;
    background: none
}

/*=================================================
 Parallax bg
=================================================*/
.parallax_bg {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.parallax_bg .parallax_bg_img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: -30px;
    left: 0;
}
.parallax_bg .parallax_bg_content {
    height: 100%;
}

/*=================================================
 Button
=================================================*/
.button {
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    min-width: 150px;
    max-width: 250px;
    display: inline-block;
    padding: 1em 2em;
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
.button:focus {
    outline: none;
}
.button > span {
    vertical-align: middle;
}
.eg_button_container {
    padding: 2em 0 5em;
    text-align: center;
}
.eg_button_container h2 {
    margin: 0 0 2em;
}
.eg_box_button {
    padding: 4.5em 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.eg_box_button .button {
    margin: 1em;
}

/* Box colors */
.bg-1 {
    background: #fafafa;
    color: #37474f;
}
.bg-2 {
    background: #b3c2bf;
    color: #ECEFF1;
}
.bg-3 {
    background: #283018;
    color: #fff;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.button.bg-1 {
    color: #37474f;
    border-color: #37474f;
}
.button.bg-2 {
    color: #ECEFF1;
    border-color: #ECEFF1;
}
.button.bg-3 {
    color: #fff;
    border-color: #fff;
}

/* Sizes */
.button--size-s {
    font-size: 14px;
}
.button--size-m {
    font-size: 16px;
}
.button--size-l {
    font-size: 18px;
}

/* Typography and Roundedness */
.button--text-upper {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.button--text-thin {
    font-weight: 300;
}
.button--text-medium {
    font-weight: 500;
}
.button--text-thick {
    font-weight: 600;
}
.button--round-xs {
    border-radius: 3px;
}
.button--round-s {
    border-radius: 5px;
}
.button--round-m {
    border-radius: 15px;
}
.button--round-l {
    border-radius: 40px;
}

/* Borders */
.button--border-thin {
    border: 1px solid;
}
.button--border-medium {
    border: 2px solid;
}
.button--border-thick {
    border: 3px solid;
}

/* Individual button styles */

/* Winona */
.button--winona {
    overflow: hidden;
    padding: 0;
    -webkit-transition: border-color 0.3s, background-color 0.3s;
    transition: border-color 0.3s, background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
}
.button--winona > span {
    display: block;
}
.button--winona.button--inverted {
    color: #fff;
}
.button--winona.button--inverted:after {
    color: #fff;
}
.button--winona::after,
.button--winona > span {
    padding: 1em 2em;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona:hover {
    border-color: #37474f;
    background-color: rgba(40, 48, 24, 0.1);
}
.button--winona.button--inverted:hover {
    border-color: #37474f;
    background-color: #37474f;
}
.button--winona:hover::after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--winona:hover > span {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
}

/* Ujarak */
.button--ujarak {
    -webkit-transition: border-color 0.4s, color 0.4s;
    transition: border-color 0.4s, color 0.4s;
}
.button--ujarak::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #37474f;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--ujarak.button--round-s::before {
    border-radius: 2px;
}
.button--ujarak.button--inverted::before {
    background: #37474f;
}
.button--ujarak,
.button--ujarak::before {
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--ujarak:hover {
    color: #fff;
    border-color: #37474f;
}
.button--ujarak.button--inverted:hover {
    color: #fff;
    border-color: #fff;
}
.button--ujarak:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Wayra */
.button--wayra {
    overflow: hidden;
    width: 245px;
    -webkit-transition: border-color 0.3s, color 0.3s;
    transition: border-color 0.3s, color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--wayra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #37474f;
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.button--wayra:hover {
    color: #fff;
    border-color: #37474f;
}
.button--wayra.button--inverted:hover {
    color: #37474f;
    border-color: #fff;
}
.button--wayra:hover::before {
    opacity: 1;
    background-color: #37474f;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--wayra.button--inverted:hover::before {
    background-color: #fff;
}

/* Tamaya */
.button--tamaya {
    overflow: hidden;
    color: #fff;
    min-width: 180px;
}
.button--tamaya.button--inverted {
    color: #37474f;
    border-color: #37474f;
}
.button--tamaya::before,
.button--tamaya::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: #37474f;
    color: #fff;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--tamaya.button--inverted::before,
.button--tamaya.button--inverted::after {
    background: #fff;
    color: #37474f;
}
.button--tamaya::before {
    top: 0;
    padding-top: 1em;
}
.button--tamaya::after {
    bottom: 0;
    line-height: 0;
}
.button--tamaya > span {
    display: block;
    -webkit-transform: scale3d(0.2, 0.2, 1);
    transform: scale3d(0.2, 0.2, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--tamaya:hover::before {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.button--tamaya:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.button--tamaya:hover > span {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* Rayen */
.button--rayen {
    overflow: hidden;
    padding: 0;
    width: 230px;
}
.button--rayen.button--inverted {
    color: #fff;
}
.button--rayen::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #37474f;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.button--rayen.button--inverted::before {
    background: #fff;
    color: #37474f;
}
.button--rayen > span {
    display: block;
}
.button--rayen::before,
.button--rayen > span {
    padding: 1em 2em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--rayen:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--rayen:hover > span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

/* Pipaluk */
.button--pipaluk {
    width: 240px;
    padding: 1.5em 3em;
    color: #fff;
}
.button--pipaluk.button--inverted {
    color: #37474f;
}
.button--pipaluk::before,
.button--pipaluk::after {
    content: '';
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}
.button--pipaluk::before {
    border: 2px solid #37474f;
}
.button--pipaluk.button--inverted::before {
    border-color: #fff;
}
.button--pipaluk::after {
    background: #37474f;
}
.button--pipaluk.button--inverted::after {
    background: #fff;
}
.button--pipaluk:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.button--pipaluk::before,
.button--pipaluk:hover::after {
    -webkit-transform: scale3d(0.7, 0.7, 1);
    transform: scale3d(0.7, 0.7, 1);
}
.button--pipaluk:hover::after {
    background-color: #37474f;
}
.button--pipaluk.button--inverted:hover::after {
    background-color: #fff;
}

/* Nuka */
.button--nuka {
    margin: 1em 2em;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    color: #fff;
}
.button--nuka.button--inverted {
    color: #37474f;
}
.button--nuka::before,
.button--nuka::after {
    content: '';
    position: absolute;
    border-radius: inherit;
    background: #37474f;
    z-index: -1;
}
.button--nuka::before {
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    opacity: 0.2;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
}
.button--nuka::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(1.1, 1, 1);
    transform: scale3d(1.1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
}
.button--nuka::before,
.button--nuka::after {
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--nuka.button--inverted::before,
.button--nuka.button--inverted::after {
    background: #fff;
}
.button--nuka:hover {
    color: #fff;
}
.button--nuka:hover::before {
    opacity: 1;
}
.button--nuka:hover::after {
    background-color: #37474f;
}
.button--nuka.button--inverted:hover::after {
    background-color: #37474f;
}
.button--nuka:hover::after,
.button--nuka:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* Moema */
.button--moema {
    padding: 1.5em 3em;
    border-radius: 50px;
    background: #37474f;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}
.button--moema.button--inverted {
    background: #ECEFF1;
    color: #37474f;
}
.button--moema::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    -webkit-transform: scale3d(0.8, 0.5, 1);
    transform: scale3d(0.8, 0.5, 1);
}
.button--moema:hover {
    -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    color: #ECEFF1;
    background-color: #37474f;
    -webkit-animation: anim-moema-1 0.3s forwards;
    animation: anim-moema-1 0.3s forwards;
}
.button--moema.button--inverted:hover {
    color: #ECEFF1;
    background-color: #37474f;
}
.button--moema:hover::before {
    -webkit-animation: anim-moema-2 0.3s 0.3s forwards;
    animation: anim-moema-2 0.3s 0.3s forwards;
}
@-webkit-keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }
    
    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
    
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }
    
    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
    
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@-webkit-keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* Isi */
.button--isi {
    padding: 1.2em 2em;
    color: #fff;
    background: #37474f;
    overflow: hidden;
}
.button--isi::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.button--isi .button__icon {
    vertical-align: middle;
}
.button--isi > span {
    vertical-align: middle;
    padding-left: 0.75em;
}
.button--isi:hover {
    color: #37474f;
}
.button--isi:hover::before {
    -webkit-transform: scale3d(9, 9, 1);
    transform: scale3d(9, 9, 1);
}

/* Aylen */
.button.button--aylen {
    background: #fff;
    color: #37474f;
    overflow: hidden;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.button--aylen.button--inverted {
    background: none;
    color: #fff;
}
.button--aylen::before,
.button--aylen::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--aylen::before {
    background: #37474f;
}
.button--aylen::after {
    background: #37474f;
}
.button--aylen:hover {
    color: #fff;
}
.button--aylen:hover::before,
.button--aylen:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.button--aylen:hover::after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}

/* Saqui */
.button.button--saqui {
    overflow: hidden;
    color: #fff;
    background: #37474f;
    -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
    transition: background-color 0.3s ease-in, color 0.3s ease-in;
}
.button--saqui.button--inverted {
    background: #fff;
    color: #37474f;
}
.button--saqui::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1em 2em;
    color: #37474f;
    -webkit-transform-origin: -25% 50%;
    transform-origin: -25% 50%;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
}
.button--saqui.button--inverted::after {
    color: #fff;
}
.button--saqui:hover::after,
.button--saqui:hover {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.button--saqui:hover {
    background-color: #fff;
    color: #37474f;
}
.button--saqui.button--inverted:hover {
    background-color: #37474f;
    color: #37474f;
}
.button--saqui:hover::after {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
}

/* Wapasha */
.button.button--wapasha {
    background: #37474f;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}
.button--wapasha.button--inverted {
    background: #fff;
    color: #37474f;
}
.button--wapasha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #37474f;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--wapasha.button--inverted::before {
    border-color: #37474f;
}
.button--wapasha:hover {
    background-color: #fff;
    color: #37474f;
}
.button--wapasha.button--inverted:hover {
    background-color: #37474f;
    color: #fff;
}
.button--wapasha:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

/* Nina */
.button--nina {
    padding: 0 2em;
    background: #37474f;
    color: #fff;
    overflow: hidden;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.button--nina.button--inverted {
    background: #fff;
    color: #37474f;
}
.button--nina > span {
    display: inline-block;
    padding: 1em 0;
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--nina::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1em 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--nina:hover {
    background-color: #37474f;
}
.button--nina:hover::before {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.button--nina:hover > span {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--nina:hover > span:nth-child(1) {
    -webkit-transition-delay: 0.045s;
    transition-delay: 0.045s;
}
.button--nina:hover > span:nth-child(2) {
    -webkit-transition-delay: 0.09s;
    transition-delay: 0.09s;
}
.button--nina:hover > span:nth-child(3) {
    -webkit-transition-delay: 0.135s;
    transition-delay: 0.135s;
}
.button--nina:hover > span:nth-child(4) {
    -webkit-transition-delay: 0.18s;
    transition-delay: 0.18s;
}
.button--nina:hover > span:nth-child(5) {
    -webkit-transition-delay: 0.225s;
    transition-delay: 0.225s;
}
.button--nina:hover > span:nth-child(6) {
    -webkit-transition-delay: 0.27s;
    transition-delay: 0.27s;
}
.button--nina:hover > span:nth-child(7) {
    -webkit-transition-delay: 0.315s;
    transition-delay: 0.315s;
}
.button--nina:hover > span:nth-child(8) {
    -webkit-transition-delay: 0.36s;
    transition-delay: 0.36s;
}
.button--nina:hover > span:nth-child(9) {
    -webkit-transition-delay: 0.405s;
    transition-delay: 0.405s;
}
.button--nina:hover > span:nth-child(10) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

/* Nanuk */
.button--nanuk {
    padding: 0 2em;
    overflow: hidden;
    background: #37474f;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    color: #fff;
}
.button--nanuk.button--inverted {
    background: #fff;
    color: #37474f;
}
.button--nanuk > span {
    display: inline-block;
    padding: 1em 0;
}
.button--nanuk:hover {
    background-color: #37474f;
}
.button--nanuk:hover > span:nth-child(odd) {
    -webkit-animation: anim-nanuk-1 0.5s forwards;
    animation: anim-nanuk-1 0.5s forwards;
}
.button--nanuk:hover > span:nth-child(even) {
    -webkit-animation: anim-nanuk-2 0.5s forwards;
    animation: anim-nanuk-2 0.5s forwards;
}
.button--nanuk:hover > span:nth-child(odd),
.button--nanuk:hover > span:nth-child(even) {
    -webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-animation-function: cubic-bezier(0.75, 0, 0.125, 1);
}
@-webkit-keyframes anim-nanuk-1 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: inherit;
    }
    
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: #fff;
    }
    
    100% {
        color: #fff;
    }
}
@keyframes anim-nanuk-1 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: inherit;
    }
    
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: #fff;
    }
    
    100% {
        color: #fff;
    }
}
@-webkit-keyframes anim-nanuk-2 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: inherit;
    }
    
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: #fff;
    }
    
    100% {
        color: #fff;
    }
}
@keyframes anim-nanuk-2 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: inherit;
    }
    
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: #fff;
    }
    
    100% {
        color: #fff;
    }
}
.button--nanuk:hover > span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.button--nanuk:hover > span:nth-child(2) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}
.button--nanuk:hover > span:nth-child(3) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.button--nanuk:hover > span:nth-child(4) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.button--nanuk:hover > span:nth-child(5) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.button--nanuk:hover > span:nth-child(6) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.button--nanuk:hover > span:nth-child(7) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.button--nanuk:hover > span:nth-child(8) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}
.button--nanuk:hover > span:nth-child(9) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.button--nanuk:hover > span:nth-child(10) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
.button--nanuk:hover > span:nth-child(11) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/* Antiman */
.button--antiman {
    background: none;
    border: none;
    height: 60px;
}
.button--antiman.button--inverted,
.button--antiman.button--inverted-alt {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--antiman > span {
    padding-left: 0.35em;
}
.button--antiman::before,
.button--antiman::after {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--antiman::before {
    border: 2px solid #37474f;
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}
.button--antiman.button--border-thin::before {
    border-width: 1px;
}
.button--antiman.button--border-medium::before {
    border-width: 2px;
}
.button--antiman.button--border-thick::before {
    border-width: 3px;
}
.button--antiman.button--inverted::before {
    border-color: #37474f;
}
.button--antiman.button--inverted-alt::before {
    border-color: #37474f;
}
.button--antiman::after {
    background: #fff;
}
.button--antiman.button--inverted::after {
    background: #37474f;
}
.button--antiman.button--inverted-alt::after {
    background: #37474f;
}
.button--antiman.button--inverted:hover {
    color: #fff;
}
.button--antiman.button--inverted-alt:hover {
    color: #fff;
}
.button--antiman:hover::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.button--antiman:hover::after {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}

/* Itzel */
.button--itzel {
    border: none;
    padding: 0px;
    overflow: hidden;
    width: 255px;
}
.button--itzel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: inherit;
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 35% 100%, 35% 60%, 65% 60%, 65% 100%, 100% 100%, 100% 0%);
    clip-path: url(../index.html#clipBox);
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
    transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
.button--itzel.button--border-thin::before {
    border: 1px solid;
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, -1px, 0);
    transform: translate3d(0, 100%, 0) translate3d(0, -1px, 0);
}
.button--itzel.button--border-thick::before {
    border: 3px solid;
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
    transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
}
.button--itzel::before,
.button--itzel .button__icon {
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--itzel .button__icon {
    position: absolute;
    top: 100%;
    left: 50%;
    padding: 20px;
    font-size: 20px;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}
.button--itzel > span {
    display: block;
    padding: 20px;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.button--itzel:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--itzel:hover .button__icon {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate3d(-50%, -100%, 0);
    transform: translate3d(-50%, -100%, 0);
}
.button--itzel:hover > span {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

/* Naira */
.button--naira {
    padding: 0;
    overflow: hidden;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.button--naira::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    background: #37474f;
    top: -50%;
    z-index: -1;
    -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}
.button--naira.button--inverted::before {
    background: #37474f;
}
.button--naira-up::before {
    -webkit-transform: translate3d(0, 100%, 0) rotate3d(0, 0, 1, 10deg);
    transform: translate3d(0, 100%, 0) rotate3d(0, 0, 1, 10deg);
}
.button--naira > span {
    display: block;
}
.button--naira .button__icon {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    color: #fff;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.button--naira-up .button__icon {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.button--naira > span,
.button--naira .button__icon {
    padding: 1em 2em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--naira:hover::before {
    -webkit-animation: anim-naira-1 0.3s forwards ease-in;
    animation: anim-naira-1 0.3s forwards ease-in;
}
.button--naira-up:hover::before {
    -webkit-animation: anim-naira-2 0.3s forwards ease-in;
    animation: anim-naira-2 0.3s forwards ease-in;
}
@-webkit-keyframes anim-naira-1 {
    50% {
        -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes anim-naira-1 {
    50% {
        -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}
@-webkit-keyframes anim-naira-2 {
    50% {
        -webkit-transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
        transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes anim-naira-2 {
    50% {
        -webkit-transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
        transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    
    100% {
        -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
        transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    }
}
.button--naira:hover {
    background-color: #37474f;
    -webkit-transition: background-color 0s 0.3s;
    transition: background-color 0s 0.3s;
}
.button--naira.button--inverted:hover {
    background-color: #37474f;
}
.button--naira:hover .button__icon {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--naira:hover > span {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.button--naira-up:hover > span {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

/* Quidel */
.button--quidel {
    background: #37474f;
    color: #37474f;
    overflow: hidden;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--quidel.button--inverted {
    background: #fff;
    color: #fff;
}
.button--quidel::before,
.button--quidel::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: inherit;
}
.button--quidel::after {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #fff;
}
.button--quidel.button--inverted::after {
    background: #37474f;
}
.button--quidel::before {
    background: #37474f;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--quidel.button--inverted::before {
    background: #37474f;
}
.button--round-s.button--quidel::after {
    border-radius: 3px;
}
.button--round-m.button--quidel::after {
    border-radius: 13px;
}
.button--round-l.button--quidel::after {
    border-radius: 40px;
}
.button--quidel > span {
    padding-left: 0.35em;
}
.button--quidel:hover {
    color: #37474f;
}
.button--quidel.button--inverted:hover {
    color: #37474f;
}
.button--quidel:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Sacnite */
.button.button--sacnite {
    width: 70px;
    height: 70px;
    min-width: 0;
    padding: 0 0 0 3px;
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.button--scanite.button--round-l {
    border-radius: 50%;
}
.button--sacnite.button--inverted {
    color: #37474f;
}
.button--sacnite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: -1;
    box-shadow: inset 0 0 0 35px #37474f;
    -webkit-transform: scale3d(0.9, 0.9, 1);
    transform: scale3d(0.9, 0.9, 1);
    -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
    transition: box-shadow 0.3s, transform 0.3s;
}
.button--sacnite.button--inverted::before {
    box-shadow: inset 0 0 0 35px #fff;
}
.button--sacnite .button__icon {
    font-size: 22px;
    width: 22px;
    line-height: 70px;
}
.button--sacnite > span {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.button--sacnite:hover {
    color: #37474f;
}
.button--sacnite.button--inverted:hover {
    color: #fff;
}
.button--sacnite:hover::before {
    box-shadow: inset 0 0 0 2px #37474f;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.button--sacnite.button--inverted:hover::before {
    box-shadow: inset 0 0 0 2px #fff;
}

/* Shikoba */
.button.button--shikoba {
    padding: 1em 30px 1em 50px;
    overflow: hidden;
    background: #fff;
    color: #37474f;
    border-color: #37474f;
    -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.button--shikoba.button--inverted {
    color: #fff;
    background: #37474f;
}
.button--shikoba > span {
    display: inline-block;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--shikoba .button__icon {
    position: absolute;
    left: 20px;
    font-size: 18px;
    -webkit-transform: translate3d(-40px, 2.5em, 0);
    transform: translate3d(-40px, 2.5em, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--shikoba:hover .button__icon,
.button--shikoba:hover > span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--shikoba:hover {
    background: #37474f;
    border-color: #37474f;
    color: #fff;
}

/*Instagram feed*/
.instagram_feed {
    list-style: none;
}
.instagram_feed li {
    width: 25%;
    padding: 0 5px;
    display: inline-block;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.instagram_feed li:hover {
    opacity: 0.4;
}

/* Price Panel */
.price_plan {
    text-align: center;
}
.price_of_plan {
    padding: 40px 20px;
    background: #fafafa;
}
.price_of_plan h3 {
    text-transform: uppercase;
    font-weight: 800;
}
.price_tagline {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
}
.price_plan .price {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #3b3a36;
    margin-bottom: 5px;
}
.price_plan_feature {
    background: #fff;
    padding: 40px 40px 30px 40px;
    text-align: left;
    color: #444;
    font-weight: 400;
    letter-spacing: 1px;
}
.price_plan_feature li {
    list-style: none;
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}
.price_plan_feature li:before {
    content: "\f122";
    font: normal normal normal 14px/1 ionicons;
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
}
.price_panel_order_btn {
    background: #fafafa;
    padding-bottom: 40px;
    text-transform: uppercase;
}
.price_panel_order_btn .button {
    background: #fff;
    font-size: 13px;
}
@media only screen and (max-width: 950px) {
    .price_plan {
        margin-bottom: 20px;
    }
}

/* countdown */
.countdown {}
.countdown .countdown_value {
    display: inline-block;
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding-right: 50px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.countdown .countdown_lable {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

/* Client logo */
.client-logo-list {
    margin: 0;
    padding: 0;
}
.client-logo-list li {
    list-style: none;
}

/* Video background panel */
#video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/Busy-People.jpg) no-repeat;
    background-size: cover;
    z-index: -100;
}
.bgvid {
    position: absolute;
    background: linear-gradient( rgba(245, 245, 245, 0.85), rgba(245, 245, 245, 0.85));
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
}
.fit iframe {
    border: none;
}

/*=================================================
   2 - Plugins CSS 
  =================================================*/
.owl-carousel .img_as_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-carousel .slide_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    width: 55%;
    text-align: center;
    margin: 0 auto;
}
.owl-carousel .slide_content.content_at_bottom {
    top: inherit;
    transform: translateY(0);
    bottom: 12%;
}
.owl-carousel .slide_content.aling-right {
    right: 10%;
    left: inherit;
}
.owl-carousel .slide_content.aling-left {
    left: 10%;
    right: inherit;
}
.owl-carousel .slide_content .big_title {
    font-size: 40px;
    line-height: 1.3125em;
    letter-spacing: 3px;
	text-shadow: 2px 2px #00000;
    font-weight: 500;
}
.owl-carousel .slide_content .title_uppercase {
    text-transform: uppercase;
}
.owl-carousel .slide_content .title_bold {
    font-weight: 800;
}
.owl-carousel .slide_content .big_description {
    font-size: 20px;
    line-height: 36px;
}
.owl-carousel .item {
    position: relative;
}
@media only screen and (max-width: 1370px) {
    .owl-carousel .slide_content .big_title {
        font-size: 40px;
		text-shadow: 2px 2px #000000;
        line-height: 1.3125em;
        letter-spacing: 2px;
    }
    
    .owl-carousel .slide_content .big_description {
        font-size: 40px;
        line-height: 30px;
		font-weight: bold;
		text-shadow: 2px 2px #000000;
    }
}
@media only screen and (max-width: 959px) {
    .owl-carousel .slide_content {
        width: 75%;
    }
    
    .owl-carousel .slide_content .big_title {
        font-size: 36px;
		text-shadow: 2px 2px #000000;
        letter-spacing: 2px;
    }
    
    .owl-carousel .slide_content .big_description {
        font-size: 16px;
        line-height: 28px;
    }
    
    .simple_slider .owl-nav {
        display: none;
    }
}
@media only screen and (max-width: 450px) {
    .owl-carousel .slide_content {
        width: 93%;
    }
    
    .owl-carousel .slide_content .big_title {
        font-size: 30px;
		text-shadow: 2px 2px #000000;
        letter-spacing: 2px;
        font-weight: 600;
    }
    
    .owl-carousel .slide_content .big_description {
        font-size: 16px;
        line-height: 30px;
    }
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    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);
}
.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;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item img {
    display: block;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-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 .owl-item img {
    transform-style: preserve-3d;
}

/* 
 *  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;
    background: url("owl.video.play.png") no-repeat;
    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:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 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;
}

/* Custom CSS For OWL */
.owl-controls {
    font-size: 50px;
    font-weight: 800;
    width: 100%;
    text-transform: uppercase;
}
.owl-controls .owl-nav div {
    color: #fff;
    opacity: 0.9;
    cursor: pointer;
}
.owl-controls .owl-nav div:after {
    content: '';
    height: 0px;
    width: 0px;
    background: #000;
    top: 50%;
    margin-right: 6px;
    margin-top: -2px;
    position: absolute;
    z-index: 1;
}
.owl-controls .owl-nav div.owl-prev {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    left: 5%;
}
.owl-controls .owl-nav div.owl-prev:after {
    left: 50px;
}
.owl-controls .owl-nav div.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    right: 5%;
}
.owl-controls .owl-nav div.owl-next:after {
    right: 50px;
}
.work-carousel:hover .owl-controls .owl-nav div {
    opacity: 1;
}
.owl-dots {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 10px;
    z-index: 9999;
}
.owl-dots .owl-dot {
    display: inline-block;
}
.owl-dots .owl-dot span {
    display: inline-block;
    margin: 0 5px 0 0;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .6);
    width: 10px;
    height: 10px;
    float: left;
    border-radius: 50%;
}
.owl-dots .owl-dot span:hover r {
    background: rgba(255, 255, 255, .6);
}
.owl-dots .owl-dot.active span {
    background: #FFF;
    border-color: #FFF;
}
.owl-bg-img {
    background-size: cover;
}
.min_height_750 {
    min-height: 750px;
}
.bg_transparent {
    background: transparent;
}
.light_color h5,
.light_color h1,
.light_color p {
    color: #fff;
}

/* Magnific Popup CSS */
.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;
    -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 .mfp-close {
    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-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;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}
.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;
}
.image-source-link {
    color: #98C3D1;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-content-popup-block {
    background: #1d2120;
    color: #fff;
    text-align: left;
    max-width: 630px;
    margin: 40px auto;
    position: relative;
}
.mfp-content-popup-block h1 {
    color: #fff;
    margin: 0;
    padding: 20px 40px;
    font-size: 24px;
    letter-spacing: 0;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px 3px 0 0;
}
.mfp-content-popup-block a {
    color: #fff;
}
.mfp-content-popup-block .news_feed .send_button,
.mfp-content-popup-block .news_feed {
    color: #1d2120;
    background: #f1f1f1;
}
.mfp_content {
    padding: 40px 40px 40px 40px;
    margin: 0;
}
.mfp_content .button {
    padding: 0.7em 2em;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* --------------------------------  
 Hover Effects 
-------------------------------- */

/* *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; } // required */
.hover_effect {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}

/* Common style */
.hover_effect figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0;
    width: 100%;
    background: #1d2120;
    text-align: center;
    cursor: pointer;
}
.hover_effect figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}
.hover_effect figure img {
    opacity: 1;
}
.hover_effect figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.hover_effect figure figcaption::before,
.hover_effect figure figcaption::after {
    pointer-events: none;
}
.hover_effect figure figcaption,
.hover_effect figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
.hover_effect figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}
.hover_effect figure h2 {
    word-spacing: -0.05em;
    font-weight: 800;
    color: #fff;
    font-size: 26px;
}
.hover_effect figure h2 span {
    font-weight: 300;
}
.hover_effect figure h2,
.hover_effect figure p {
    margin: 0;
}
.hover_effect figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}
.hover_effect figure h2,
.hover_effect figure .view_more_icon {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
.hover_effect figure .view_more_icon {
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}
.hover_effect figure:hover h2,
.hover_effect figure:hover .view_more_icon {
    opacity: 1;
}
.hover_effect .figure_caption_container {
    display: table;
    height: 100%;
    width: 100%;
}
.hover_effect .figure_caption {
    display: table-cell;
    vertical-align: middle;
}

/* Individual effects */

/*---------------*/

/***** Lily *****/

/*---------------*/
figure.effect-lily img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
figure.effect-lily figcaption {
    text-align: left;
}
figure.effect-lily figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 50%;
}
figure.effect-lily h2,
figure.effect-lily p {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}
figure.effect-lily h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-lily p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img {
    opacity: 0.7;
}
figure.effect-lily:hover p {
    opacity: 1;
}
figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-lily:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

/*---------------*/

/***** Sadie *****/

/*---------------*/
figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
    background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
}
figure.effect-sadie h2 {
    -webkit-transform: translate3d(0, 40px, 0) translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0) translate3d(0, 40px, 0);
}
figure.effect-sadie figcaption::before,
figure.effect-sadie p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}
figure.effect-sadie:hover h2 {
    color: #fff;
    -webkit-transform: translate3d(0, 0, 0) translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) translate3d(0, 0, 0);
}
figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Roxy *****/

/*---------------*/
figure.effect-roxy {
    background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
    background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}
figure.effect-roxy img {
    max-width: none;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}
figure.effect-roxy figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
}
figure.effect-roxy figcaption {
    padding: 3em;
    text-align: left;
}
figure.effect-roxy h2 {}
figure.effect-roxy p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}
figure.effect-roxy:hover img {
    opacity: 0.7;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Bubba *****/

/*---------------*/
figure.effect-bubba {}
figure.effect-bubba img {
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-bubba:hover img {
    opacity: 0.6;
}
figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-bubba figcaption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}
figure.effect-bubba figcaption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}
figure.effect-bubba h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}
figure.effect-bubba p {
    padding: 10px 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}
figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Romeo *****/

/*---------------*/
figure.effect-romeo img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1);
}
figure.effect-romeo:hover img {
    opacity: 0.6;
    -webkit-transform: scale3d(1, 1, 1);
    transform: translate3d(1, 1, 1);
}
figure.effect-romeo figcaption::before,
figure.effect-romeo figcaption::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #fff;
    content: '';
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
figure.effect-romeo:hover figcaption::before {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
figure.effect-romeo:hover figcaption::after {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
figure.effect-romeo h2,
figure.effect-romeo p {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-romeo h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}
figure.effect-romeo p {
    padding: 0.25em 2em;
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}
figure.effect-romeo:hover h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}
figure.effect-romeo:hover p {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}
.et_three_col figure.effect-romeo h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -110%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -110%, 0);
}
.et_three_col figure.effect-romeo p {
    padding: 0.25em 2em;
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 110%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 110%, 0);
}
.et_four_col figure.effect-romeo h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 0, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 0, 0);
}

/*---------------*/

/***** Layla *****/

/*---------------*/
figure.effect-layla {
    background: #18a367;
}
figure.effect-layla img {
    opacity: 0.95;
}
figure.effect-layla figcaption {
    padding: 3em;
}
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
    position: absolute;
    content: '';
    opacity: 0;
}
figure.effect-layla figcaption::before {
    top: 50px;
    right: 30px;
    bottom: 50px;
    left: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
    top: 30px;
    right: 50px;
    bottom: 30px;
    left: 50px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
figure.effect-layla h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-layla p {
    padding: 0.5em 2em;
    text-transform: none;
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}
figure.effect-layla h2 {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}
figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
    opacity: 0.7;
}
figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-layla:hover h2,
figure.effect-layla:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

/*---------------*/

/***** Honey *****/

/*---------------*/
figure.effect-honey {
    background: #4a3753;
}
figure.effect-honey img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-honey:hover img {
    opacity: 0.5;
}
figure.effect-honey figcaption::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #fff;
    content: '';
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}
figure.effect-honey h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em 1.5em;
    width: 100%;
    text-align: left;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}
figure.effect-honey h2 i {
    font-style: normal;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}
figure.effect-honey figcaption::before,
figure.effect-honey h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-honey p {
    display: none;
}

/*---------------*/

/***** Oscar *****/

/*---------------*/
figure.effect-oscar {
    background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
    background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}
figure.effect-oscar img {
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-oscar figcaption {
    padding: 3em;
    background-color: rgba(58, 52, 42, 0.7);
    -webkit-transition: background-color 0.35s;
    transition: background-color 0.35s;
}
figure.effect-oscar figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: '';
}
figure.effect-oscar h2 {
    margin: 0 0 10px 0;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
figure.effect-oscar figcaption::before,
figure.effect-oscar p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0);
    transform: scale(0);
}
figure.effect-oscar:hover h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-oscar:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}
figure.effect-oscar:hover img {
    opacity: 0.4;
}

/*---------------*/

/***** Marley *****/

/*---------------*/
figure.effect-marley figcaption {
    text-align: right;
}
figure.effect-marley img {
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-marley:hover img {
    opacity: 0.8;
}
figure.effect-marley h2,
figure.effect-marley p {
    position: absolute;
    right: 30px;
    left: 30px;
    padding: 10px 0;
}
figure.effect-marley p {
    bottom: 30px;
    line-height: 1.5;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
figure.effect-marley h2 {
    top: 30px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}
figure.effect-marley:hover h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-marley h2::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    content: '';
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}
figure.effect-marley h2::after,
figure.effect-marley p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-marley:hover h2::after,
figure.effect-marley:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Milo *****/

/*---------------*/
figure.effect-milo {
    background: #2e5d5a;
}
figure.effect-milo img {
    max-width: none;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
    transform: translate3d(-30px, 0, 0) scale(1.12);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-milo:hover img {
    opacity: 0.5;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}
figure.effect-milo h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1em 1.2em;
}
figure.effect-milo p {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 5%;
    padding: 1em 1.2em;
    width: 50%;
    border-right: 1px solid #fff;
    text-align: right;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
figure.effect-milo:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Sarah *****/

/*---------------*/
figure.effect-sarah {
    background: #42b078;
}
figure.effect-sarah img {
    max-width: none;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-sarah:hover img {
    opacity: 0.4;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-sarah figcaption {
    text-align: left;
}
figure.effect-sarah h2 {
    position: relative;
    overflow: hidden;
    padding: 0.5em 0;
}
figure.effect-sarah h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
figure.effect-sarah:hover h2::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-sarah p {
    padding: 1em 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
figure.effect-sarah:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*---------------*/

/***** Zoe *****/

/*---------------*/
figure.effect-zoe figcaption {
    top: auto;
    bottom: 0;
    padding: 1.2em 1em;
    height: inherit;
    background: rgba(29, 33, 32, 0.8);
    color: #3c4a50;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
figure.effect-zoe h2 {
    color: #fff;
    float: left;
}
figure.effect-zoe img {
    opacity: 1;
    transition: opacity 0.35s;
}
figure.effect-zoe:hover img {
    opacity: 0.7;
}
figure.effect-zoe p {
    display: none;
}
figure.effect-zoe h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
}
figure.effect-zoe h2 {
    display: inline-block;
}
figure.effect-zoe:hover p.description {
    opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-zoe:hover h2 {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.et_three_col figure.effect-zoe h2 {
    font-size: 21px;
}
.et_four_col figure.effect-zoe h2 {
    font-size: 18px;
}

/*---------------*/

/***** Chico *****/

/*---------------*/
figure.effect-chico img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}
figure.effect-chico:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-chico figcaption {
    padding: 3em;
}
figure.effect-chico figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: '';
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
figure.effect-chico figcaption::before,
figure.effect-chico p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico h2 {
    padding: 0 0 18px 0;
}
figure.effect-chico p {
    margin: 0 auto;
    max-width: 90%;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.et_three_col figure.effect-chico h2 {
    padding-bottom: 10px;
}
.et_four_col figure.effect-chico h2 {
    font-size: 21px;
}

/* Individual effects */

/*---------------*/

/***** Julia *****/

/*---------------*/
figure.effect-julia {
    background: #2f3238;
}
figure.effect-julia img {
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-julia figcaption {
    text-align: left;
}
figure.effect-julia .figure_caption {
    vertical-align: top;
}
figure.effect-julia h2 {
    position: relative;
    padding: 0.5em 0;
}
figure.effect-julia p {
    display: inline-block;
    margin: 0 0 0.25em;
    padding: 0.4em 1em;
    background: rgba(255, 255, 255, 0.9);
    color: #2f3238;
    text-transform: none;
    font-weight: 500;
    font-size: 75%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0);
}
figure.effect-julia p:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
figure.effect-julia p:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.effect-julia p:nth-of-type(3) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.effect-julia:hover p:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
figure.effect-julia:hover p:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.effect-julia:hover p:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.effect-julia:hover img {
    opacity: 0.4;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
figure.effect-julia:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*-----------------*/

/***** Goliath *****/

/*-----------------*/
figure.effect-goliath {
    background: rgba(29, 33, 32, 0.8);
}
figure.effect-goliath img,
figure.effect-goliath h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-goliath img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-goliath img {
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-goliath:hover img {
    opacity: 0.7;
}
figure.effect-goliath h2,
figure.effect-goliath p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
}
figure.effect-goliath h2 {
    padding-bottom: 5px;
}
figure.effect-goliath p {
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}
figure.effect-goliath:hover img {
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
}
figure.effect-goliath:hover h2 {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
}
figure.effect-goliath:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.et_four_col figure.effect-goliath:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.et_four_col figure.effect-goliath:hover h2 {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/***** Winston *****/

/*-----------------*/
figure.effect-winston {
    background: #162633;
    text-align: left;
}
figure.effect-winston img {
    -webkit-transition: opacity 0.45s;
    transition: opacity 0.45s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-winston figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/triangle.svg) no-repeat center center;
    background-size: 100% 100%;
    content: '';
    -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
    transition: opacity 0.45s, transform 0.45s;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
figure.effect-winston h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}
figure.effect-winston p {
    opacity: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 1.5em 7% 0;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-winston a:hover,
figure.effect-winston a:focus {
    color: #cc6055;
}
figure.effect-winston:hover img {
    opacity: 0.6;
}
figure.effect-winston:hover h2,
figure.effect-winston:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-winston:hover figcaption::before {
    opacity: 0.7;
    -webkit-transform: rotate3d(0, 0, 1, 20deg);
    transform: rotate3d(0, 0, 1, 20deg);
}

/*-----------------*/

/***** Selena *****/

/*-----------------*/
figure.effect-selena {}
figure.effect-selena img {
    opacity: 0.95;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
figure.effect-selena:hover img {
    opacity: 0.6;
    -webkit-transform: scale3d(0.95, 0.95, 1);
    transform: scale3d(0.95, 0.95, 1);
}
figure.effect-selena h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}
figure.effect-selena p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}
figure.effect-selena:hover h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-selena:hover p {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0);
}

/*-----------------*/

/***** Apollo *****/

/*-----------------*/
figure.effect-apollo {
    background: #3498db;
}
figure.effect-apollo img {
    opacity: 0.95;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}
figure.effect-apollo figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
figure.effect-apollo p {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 3em;
    padding: 0 1em;
    max-width: 150px;
    border-right: 4px solid #fff;
    text-align: right;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-apollo h2 {
    text-align: left;
}
figure.effect-apollo:hover img {
    opacity: 0.6;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
figure.effect-apollo:hover figcaption::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
figure.effect-apollo:hover p {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/*---------------*/

/***** Jazz *****/

/*---------------*/
figure.effect-jazz {
    background: -webkit-linear-gradient(-45deg, #f3cf3f 0%, #f33f58 100%);
    background: linear-gradient(-45deg, #f3cf3f 0%, #f33f58 100%);
}
figure.effect-jazz img {
    opacity: 0.9;
}
figure.effect-jazz figcaption::after,
figure.effect-jazz img,
figure.effect-jazz p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-jazz figcaption::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
figure.effect-jazz .figure_caption {
    vertical-align: top;
}
figure.effect-jazz h2,
figure.effect-jazz p {
    opacity: 1;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}
figure.effect-jazz h2 {
    padding-top: 15%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-jazz p {
    padding: 0.5em 2em;
    text-transform: none;
    font-size: 0.85em;
    opacity: 0;
}
figure.effect-jazz:hover img {
    opacity: 0.7;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}
figure.effect-jazz:hover figcaption::after {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}
figure.effect-jazz:hover h2,
figure.effect-jazz:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/*---------------*/

/***** Ming *****/

/*---------------*/
figure.effect-ming {
    background: #030c17;
}
figure.effect-ming img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-ming figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1);
}
figure.effect-ming h2 {
    margin: 0 0 10px 0;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
figure.effect-ming p {
    padding: 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
figure.effect-ming:hover h2 {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
figure.effect-ming:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}
figure.effect-ming:hover img {
    opacity: 0.4;
}

/*---------------*/

/***** Lexi *****/

/*---------------*/
figure.effect-lexi {
    background: -webkit-linear-gradient(-45deg, #000 0%, #fff 100%);
    background: linear-gradient(-45deg, #000 0%, #fff 100%);
}
figure.effect-lexi img {
    margin: -10px 0 0 -10px;
    max-width: none;
    width: -webkit-calc(100% + 10px);
    width: calc(100% + 10px);
    opacity: 0.9;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(10px, 10px, 0);
    transform: translate3d(10px, 10px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-lexi figcaption::before,
figure.effect-lexi p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-lexi figcaption::before {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.2);
    content: '';
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
figure.effect-lexi:hover img {
    opacity: 0.6;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.effect-lexi h2 {
    text-align: left;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(5px, 5px, 0);
    transform: translate3d(5px, 5px, 0);
}
figure.effect-lexi p {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 1.5em 1.5em 0;
    width: 140px;
    text-align: right;
    opacity: 0;
    -webkit-transform: translate3d(20px, 20px, 0);
    transform: translate3d(20px, 20px, 0);
}
figure.effect-lexi:hover figcaption::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
figure.effect-lexi:hover h2,
figure.effect-lexi:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Media queries */
@media screen and (max-width: 50em) {
    .hover_effect figure {
        display: inline-block;
        float: none;
        margin: 0 auto;
        width: 100%;
    }
}
.et_four_col .hover_effect figure p {
    display: none;
}

/* ===========================================
   SmoothState styling
   =========================================== */
.page-container {
    -webkit-transition: 0.3s width ease-in-out;
    transition: 0.3s width ease-in-out;
}
.m-scene .scene-main {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.m-scene.is-exiting .scene-main {
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
}
.m-scene .scene-nav {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: width;
    animation-name: width;
}
.m-scene.is-exiting .scene-nav {
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
}
@keyframes width {
    0% {
        width: 300px;
    }
    
    100% {
        width: 50vw;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}
.m-scene .scene-main--fadein {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.6s;
    -moz-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.m-scene .scene-main--fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
    }
}
.m-scene .scene-main--fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.is-loading,
.is-loading a {
    cursor: progress;
}

/* important and custom css*/
.aling-left {
    text-align: left !important;
}
.aling-center {
    text-align: center !important;
    margin-right: auto;
    margin-left: auto;
}
.aling-right {
    text-align: right !important;
}
.vertical_center {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.vertical_center_block {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
@media only screen and (max-width: 959px) {
    .vertical_center {
        display: block;
    }
    .vertical_center_block {
        display: block;
        vertical-align: middle;
        float: none;
    }
}

/* Gallery */
.et_gallery {}
.et_gallery li {
    position: relative;
    list-style: none;
    float: left;
}

/* Et columns */
.et_one_col li,
.et_one_col .work_item {
    width: 100%;
}
.et_two_col li,
.et_two_col .work_item {
    width: 50%;
}
.et_three_col li,
.et_three_col .work_item {
    width: 33.3333333333%;
}
.et_four_col li,
.et_four_col .work_item {
    width: 25%;
}
.et_five_col li,
.et_five_col .work_item {
    width: 20%;
}
.et_six_col li,
.et_six_col .work_item {
    width: 16.6666667%;
}
.et_padding_8 {
    margin: 0 -8px;
}
.et_padding_8 li,
.et_padding_8 .work_item {
    padding: 8px;
}
.et_padding_10 {
    margin: 0 -10px;
}
.et_padding_10 li,
.et_padding_10 .work_item {
    padding: 10px;
}
.et_padding_15 {
    margin: 0 -15px;
}
.et_padding_15 li,
.et_padding_15 .work_item {
    padding: 15px;
}
.et_padding_b_30 li {
    padding-bottom: 30px;
}

/* Clear fix*/
.et_gallery:after,
.menu-search-bar:after {
    content: '';
    display: block;
    clear: both;
}
@media only screen and (max-width: 900px) {
    .et_two_col li,
    .et_two_col .work_item {
        width: 50%;
    }
    
    .et_three_col li,
    .et_three_col .work_item {
        width: 50%;
    }
    
    .et_four_col li,
    .et_four_col .work_item {
        width: 50%;
    }
    
    .et_five_col li,
    .et_five_col .work_item {
        width: 50%;
    }
    
    .et_six_col li,
    .et_six_col .work_item {
        width: 50%;
    }
}
@media only screen and (max-width: 450px) {
    .et_two_col li,
    .et_two_col .work_item {
        width: 100%;
    }
    
    .et_three_col li,
    .et_three_col .work_item {
        width: 100%;
    }
    
    .et_four_col li,
    .et_four_col .work_item {
        width: 100%;
    }
    
    .et_five_col li,
    .et_five_col .work_item {
        width: 100%;
    }
    
    .et_six_col li,
    .et_six_col .work_item {
        width: 100%;
    }
}
.wide_box_container {
    background: #fafafa;
    margin: 0 5%;
    padding: 5% 6%;
}

/* 
Extra CSS */
.wide_box_with_padding {
    padding-right: 5%;
    padding-left: 5%
}
.home_1_about_container {
    padding: 60px 0 60px;
}
.home_7_about_container {
    padding: 10px 0 0;
}
.home_3_about_container {
    padding: 60px 0 80px;
}
.home_1_service_cont {
    padding: 0 0 60px 0;
}
.home_1_team_cont {
    padding: 70px 0 90px 0;
    background: #fafafa;
}
.home_1_testimonials_cont {
    padding: 100px 0 90px;
    background: #d5ddcd;
}
.home_3_testimonials_cont {
    padding: 100px 0 90px;
}
.home_1_clients_cont {
    padding: 100px 0 90px;
    background: #1d2120;
}
.about_us_container {
    padding: 60px 0 40px;
}
.about_us_page_2_container {
    padding: 60px 0 30px;
}
.about_us_service_cont {
    padding: 90px 0 90px 0;
    background: #fafafa;
}
.about_us_team_cont {
    padding: 70px 0 90px 0;
}
.fun_counter_box_cont {
    padding: 105px 0 95px;
    background: #1d2120;
}
.office_info_container {
    padding: 60px 40px;
    background: #1d2120;
}
.contact_form_cont {
    padding: 60px 40px;
    background: #d5ddcd;
}
.contact_form_cont3 {
    background: #fafafa;
}
.portfolio_1_container {
    padding: 60px 0 0px;
}
.home_2_container {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fafafa;
}
.home_2_service_cont {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
}
.home_4_section_padding {
    padding-bottom: 5px;
}
.call_to_action_cont {
    padding: 70px 0 70px;
    background: #3b3a36;
}
.home_3_call_to_action_cont {
    padding: 70px 0 70px;
    background: #383433;
}
.price_plan_cont {
    padding: 80px 0 80px;
}
.happy_couples_cont {
    background: #fff;
    background: #ffd3d3;
    padding: 80px 0 80px;
    background: #ffe3dd;
}
.couple_gallery_cont {
    background: #fff;
    padding: 80px 0 80px;
}
.getting_married_cont {
    padding: 100px 0 80px;
    background: url(../images/home3/27.jpg);
    background-size: cover;
}
.couples_timeline_cont {
    padding: 80px 0 80px;
}
.home_4_contact_form_cont {
    padding: 70px 0 70px;
    background: #fafafa;
}
.home_5_service_cont {
    padding: 80px 0 100px;
    background: #004ecc;
    background: #1976D2;
    background: #2196f3;
}
.home_7_service_main_cont {
    margin: 0 -30px;
    background: url(../images/home7/5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home_7_service_cont {
    padding: 10% 10%;
    background: #37474f;
}
.home_7_download {
    padding: 70px 0 70px;
    background: #37474f;
}
.home7_product_cont {
    padding: 70px 0 70px;
}
.home7_clients_carousel_cont {
    padding: 10px 0 10px;
    background: #fafafa;
}
.home_8_about_container {
    background: #fafafa;
    padding-top: 110px;
    padding-bottom: 100px;
}
.home_8_service_cont {
    padding: 100px 0 100px;
}
.home_8_fun_counter_box_cont {
    padding: 100px 0 105px;
    background: #1d2120;
}
.home_8_testimonials_cont {
    padding: 100px 0 90px;
}
.home_5_testimonials_cont {
    padding: 100px 0 90px;
    background: #FCFCFD;
}
.home_5_call_to_action_cont {
    padding: 70px 0 70px;
    background: #2196f3;
}
.work_process_cont {
    padding: 80px 0 80px;
}
.clients_carousel_cont {
    padding: 10px 0 10px;
}
.service_page_cont {
    padding: 70px 0 70px;
}
.services_2_call_to_action_cont {
    padding: 70px 0 70px;
    background: #2196f3;
}
.content_boxs_block_cont {
    padding: 100px 0 70px;
    background: #fafafa;
}
.dark_before_footer {
    background: #232323;
    color: #f5f5f5;
}
.dark_before_footer .before_footer_title {
    color: #f5f5f5;
}
.dark_before_footer a {
    color: #fff;
}
.dark_before_footer .news_feed {
    color: #333;
}
.dark_footer {
    background: #1e1e1e;
    color: #f5f5f5;
}
.dark_footer a {
    color: #fff;
}
.dark_footer .footer_nav li a {
    color: #fff;
}
.no_bg {
    background: transparent;
}
.white_color,
.white_color a,
.white_color h1,
.white_color h2,
.white_color h3,
.white_color h4,
.white_color h5,
.white_color h6,
.white_color i {
    color: #fff;
}
.white_color h1:after,
.white_color h2:after,
.white_color h3:after,
.white_color h4:after,
.white_color h5:after,
.white_color h6:after {
    background-color: #fff;
}
.p_right_left_10 {
    padding-right: 10%;
    padding-left: 10%;
}
.padding_right_left_5 {
    padding-right: 5%;
    padding-left: 5%;
}
.mt_10 {
    margin-top: 10px;
}
.mt_15 {
    margin-top: 15px;
}
.mt_20 {
    margin-top: 20px;
}
.mt_25 {
    margin-top: 25px;
}
.mt_30 {
    margin-top: 30px;
}
.mt_35 {
    margin-top: 35px;
}
.mt_40 {
    margin-top: 40px;
}
.mt_60 {
    margin-top: 60px;
}
.mt_70 {
    margin-top: 70px;
}
.mt_80 {
    margin-top: 80px;
}
.mt_100 {
    margin-top: 100px;
}
.mt_150 {
    margin-top: 150px;
}
.mt_180 {
    margin-top: 160px;
}
.mt_200 {
    margin-top: 200px;
}
.mb_5 {
    margin-bottom: 5px;
}
.mb_10 {
    margin-bottom: 10px;
}
.mb_15 {
    margin-bottom: 15px;
}
.mb_25 {
    margin-bottom: 25px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_35 {
    margin-bottom: 35px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_55 {
    margin-bottom: 55px;
}
.mb_60 {
    margin-bottom: 60px;
}
.mb_70 {
    margin-bottom: 70px;
}
.mb_80 {
    margin-bottom: 80px;
}
.mb_90 {
    margin-bottom: 90px;
}
.mb_100 {
    margin-bottom: 100px;
}
.mb_120 {
    margin-bottom: 120px;
}
.mb_200 {
    margin-bottom: 200px;
}
.white_bg {
    background: #fff;
}
.white_bg .news_feed input[type="text"] {
    background: #fafafa;
}
.dark_grey_bg {
    background: #3b3a36;
}
.light_color {}
.scheme_color_green .service_box .service_icon {
    color: #7a8437;
}
.scheme_color_rose_quartz .top_header {
    background: #f4b3ad;
}
.scheme_color_rose_quartz,
.rose_quartz_gradient_bg {
    background-image: -webkit-linear-gradient(240deg, #ffdfb6 0, rgba(255, 223, 182, 0) 600px), linear-gradient(-45deg, #ffdfb6 0%, #ffc1c1 49%, #ffd0d0 73%, rgba(255, 186, 198, 0) 100%);
    background-image: linear-gradient(-150deg, #ffdfb6 0, rgba(255, 223, 182, 0) 600px), linear-gradient(-45deg, #ffdfb6 0%, #ffc1c1 49%, #ffd0d0 73%, rgba(255, 186, 198, 0) 100%);
    will-change: background-image;
    background-image: -webkit-linear-gradient(240deg, #ffdfb6 0, rgba(255, 223, 182, 0) 600px), linear-gradient(-45deg, #ffdfb6 0%, #ffc1c1 49%, #ffd0d0 73%, rgba(255, 186, 198, 0) 100%);
    background-image: linear-gradient(-150deg, #ffdfb6 0, rgba(255, 223, 182, 0) 600px), linear-gradient(-45deg, #ffdfb6 0%, #ffe4e4 49%, #ffd0d0 73%, rgba(255, 186, 198, 0) 100%);
    will-change: background-image;
}
.scheme_color_rose_quartz .read_more {
    color: #e48080;
}
.scheme_color_rose_quartz .menu > ul > li > a:after {
    background: #f4b3ad;
}
.rose_quartz_block {
    background: #ffe3dd;
}
.rose_quartz_color,
.special_title .rose_quartz_color {
    color: #be7f7f;
    color: #e48080;
}
.rose_quartz_color:after,
.special_title .rose_quartz_color:after {
    background: #be7f7f;
    background: #e48080;
}
a.rose_quartz_color:hover {
    color: #be7f7f;
}
.scheme_color_rodeo_dust .service_box .service_icon {
    color: #FFF;
}
.scheme_color_rodeo_dust .send_button {
    background: #ccb39b;
    border-color: #ccb39b;
}
.scheme_color_rodeo_dust blockquote {
    border-left: 4px solid #FFF;
}
.rodeo_dust_color {
    color: #FFF;
}
