
/* CSS */
@import url(pro-bars.css);

/* Icons */
@import url(icons/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css);
@import url(icons/fonts/pe-icon-7-stroke/css/helper.css);
@import url(icons/font-awesome.min.css);

/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:600,700);
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(http://fonts.googleapis.com/css?family=Crimson+Text:400,400italic);

/*==========================================================
    2.   MAIN
==========================================================*/

html {
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    height: 100%;
    transition: all 1.3s ease-out 0s;
    background-color: #fff;
    color: #696969;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 23px;
    overflow-x: hidden !important;
    overflow-y: scroll;
}

p {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding: 0 0 10px;
}

h1 {
    color: #fff !important;
    font-size: 65px;
    font-weight: 600;
    letter-spacing: 28px;
    line-height: 1.250em;
    text-transform: uppercase;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 12px;
    line-height: 1.250em;
    text-transform: uppercase;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 12px;
    line-height: 1.28571em;
}

h4 {
    color: #fff !important;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 9px;
    line-height: 1.53846em;
    text-transform: uppercase;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.44444em;
    text-transform: uppercase;
}

h6 {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 26px;
}

h1, h1 a, h3, h3 a {
    color: #5d5d5d;
}

h2, h2 a, h4, h4 a, h5, h5 a {
    color: #000;
}

h6, h6 a {
    color: #777;
}

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

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease-in-out 0s;
}

a, p a {
    color: #696969;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease-in-out 0s;
}

a, a:hover, a:focus, a:active, button::-moz-focus-inner,input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, select::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: 0;
    text-decoration: none;
    -moz-outline: none;
    outline: none;
}

ul {
    list-style: none outside none;
}

ul li {
    margin: 0;
    line-height: 30px;
    position: relative;
}

/* Selection */
::selection {
    color: #fff;
    background: #ccc;
}

::-moz-selection {
    color: #fff;
    background: #ccc;
}

/* Buttons */
.btn:focus,.btn:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
}

.color-btn, .color-btn:focus {
    background: #425cbb;
    display: inline-block;
    padding: 10px 22px 8px;
    color: #fff;
    border: 1px solid #425cbb;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.color-btn:hover {
    background: #547cc3;
    color: #ececec;
    border: 1px solid #547cc3;
    text-decoration: none;
}

.dark-btn, .dark-btn:focus {
    background: #111;
    display: inline-block;
    padding: 10px 22px 8px;
    color: #fff;
    border: 1px solid #111;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.dark-btn:hover {
    background: #3f3f3f;
    color: #ececec;
    border: 1px solid #3f3f3f;
    text-decoration: none;
}

.light-btn, .light-btn:focus {
    background: #fcfcfc;
    display: inline-block;
    padding: 9px 30px 7px;
    color: #3f3f3f;
    border: 1px solid #fcfcfc;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.light-btn:hover {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    text-decoration: none;
}

.border-btn, .border-btn:focus {
    background: transparent;
    display: inline-block;
    padding: 10px 22px 8px;
    color: #111;
    border: 1px solid #111;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.border-btn:hover {
    background: #111;
    color: #f5f5f5;
    border: 1px solid #111;
    text-decoration: none;
}

.border-blue-btn, .border-blue-btn:focus {
    background: transparent;
    display: inline-block;
    padding: 10px 22px 8px;
    color: #425cbb;
    border: 1px solid #425cbb;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.border-blue-btn:hover {
    background: #547cc3;
    color: #f2f2f2;
    border: 1px solid #547cc3;
    text-decoration: none;
}

.border-white-btn, .border-white-btn:focus {
    background: transparent;
    display: inline-block;
    padding: 7px 35px;
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.border-white-btn:hover {
    background: #bd9f86;
    color: #fff;
    border: 1px solid #bd9f86;
    text-decoration: none;
}

.link-btn{
    display: block;
    width: 150px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
}

.call-action-btn, .call-action-btn:focus, .call-action-btn:active {
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    display: inline-block;
    padding: 11px 0;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    width: 180px;
    height: 50px;
    -webkit-transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
    transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
}

.call-action-btn:hover {
    background-color: yellow;
    border: 2px solid yellow;
    color: #222;
}

.call-action-border-btn, .call-action-border-btn:focus, .call-action-border-btn:active {
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    display: inline-block;
    padding: 11px 0;
    color: #3f3f3f;
    border: 2px solid #3f3f3f;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    width: 180px;
    height: 50px;
    -webkit-transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
    transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
}

.call-action-border-btn:hover {
    background-color: #3f3f3f;
    border: 2px solid #3f3f3f;
    color: #ececec;
}

.call-action-blue-btn, .call-action-blue-btn:focus, .call-action-blue-btn:active {
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    display: inline-block;
    padding: 11px 0;
    color: #425cbb;
    border: 2px solid #425cbb;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    width: 180px;
    height: 50px;
    -webkit-transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
    transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
}

.call-action-blue-btn:hover {
    background-color: #425cbb;
    border: 2px solid #425cbb;
    color: #fff;
}

.call-action-ciel-btn, .call-action-ciel-btn:focus, .call-action-ciel-btn:active {
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    display: inline-block;
    padding: 11px 0;
    color: #b2f8f5;
    border: 2px solid #b2f8f5;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    width: 180px;
    height: 50px;
    -webkit-transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
    transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
}

.call-action-ciel-btn:hover {
    background-color: #b2f8f5;
    border: 2px solid #b2f8f5;
    color: #373737;
}

.shadow-box .shadow-btn {
    border: 1px solid #e7e7e7;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shadow-box .shadow-btn:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px 2px rgba(0, 0, 0, 0.12);
}

.shadow-btn, .shadow-btn:focus {
    background: #fcfcfc;
    display: inline-block;
    padding: 9px 30px 7px;
    color: #3f3f3f;
    border: 1px solid #fcfcfc;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: color 0.2s ease-in-out 0s,
        background-color 0.2s ease-in-out 0s,
        border-color 0.2s ease-in-out 0s;
}

.more-bt, .more-bt:focus {
    color: #383838;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 3px;
}

.more-bt:hover {
    color: #383838;
}

.icon-more-bt::before {
    background: url("../img/arrow-right.svg");
    content: "";
    display: inline-block;
    width: 30px;
    height: 20px;
    vertical-align: middle;
}

a.more-bt > span.icon-more-bt {
    font-size: 19px;
    margin: 1px 4px 1px 0;
    opacity: 0;
    padding-left: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a.more-bt:hover > span.icon-more-bt {
    float: none;
    margin: 1px -1px 1px 0;
    opacity: 1;
    padding-left: 7px;
}

/* Blinking Animation */
.blinking-type {
    color: blue;
    font-size: 32px;
    font-style: normal !important;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
}

@keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: blue;
    }
}

@-moz-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: blue;
    }
}

@-webkit-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: blue;
    }
}

@-ms-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: blue;
    }
}

@-o-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: blue;
    }
}

/* General */
hr {
    border-width: 1px 0 0;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #eee -moz-use-text-color -moz-use-text-color;
    border-image: none;
    border-style: solid none none;
}

span {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none !important;
}

blockquote {
    color: #fff;
    text-align: justify;
    line-height: 30px;
    text-justify: inter-word;
    font-size: 15px;
    margin: -12px 0px 0px -10px;
    opacity: 0.9;
}

.divider {
    text-align: center;
    width: 270px;
    border-bottom: 1px solid #e7e7e7;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.divider-15 {
    background-color: #d7d7d7;
    height: 1px;
    margin: 10% auto 0;
    width: 15px;
}

.heading-line {
    text-align: left;
    margin-bottom: 40px;
    width: 20px;
    border-bottom: 3px solid #bd9f86;
}

.heading-line-lg {
    text-align: center;
    margin-bottom: 40px;
    width: 130px;
    border-bottom: 5px solid #bd9f86;
}

.heading-line-w {
    text-align: left;
    margin-bottom: 40px;
    width: 20px;
    border-bottom: 3px solid #fff;
}

.heading-line-b {
    width: 130px;
    border-bottom: 2px solid #425cbb;
    margin-top: 25px;
}

.heading-line-w-lg {
    text-align: center;
    margin-bottom: 40px;
    width: 130px;
    border-bottom: 5px solid #fff;
}

.heading-line-center {
    text-align: center;
    width: 140px;
    border-bottom: 2px solid #000;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.heading-line-left {
    width: 140px;
    border-bottom: 2px solid #000;
    margin: 50px 0 50px;
    margin-left: -12%;
    float: left;
}

.heading-line-right {
    width: 140px;
    border-bottom: 2px solid #000;
    margin: 50px 0 50px;
    margin-right: -12%;
    float: right;
}

.heading-line-left-c {
    width: 140px;
    border-bottom: 2px solid #425cbb;
    margin: 50px 0 50px;
    margin-left: -12%;
    float: left;
}

.heading-line-right-c {
    width: 140px;
    border-bottom: 2px solid #425cbb;
    margin: 50px 0 50px;
    margin-right: -12%;
    float: right;
}

.heading-line-blue-left {
    width: 140px;
    border-bottom: 2px solid #425cbb;
    margin-top: 22px;
    margin-right: 33px;
    margin-left: -12%;
    float: left;
}

.heading-line-xs {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -42px;
    margin-left: auto;
    margin-right: auto;
    width: 130px;
    border-bottom: 3px solid #e95353;
}

.bottom-right {
    right: 20px;
    position: absolute;
}

.bottom-left {
    left: 20px;
    position: absolute;
}

.icon a {
    font-size: 50px;
    color: #fff;
}

.icon a:hover {
    color: #e95353;
    text-decoration: none;
}

.icon-black span {
    background: transparent;
    font-size: 42px;
    color: #5d5d5d;
    transition: color 0.3s ease-in-out 0s;
}

.icon-black span:hover {
    color: #e95353;
    text-decoration: none;
}

.opacity-hover, .opacity-hover:focus {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

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

.opacity-item, .opacity-item:focus {
    cursor: default;
    z-index: 2;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.opacity-item:hover {
    color: #111;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.opacity-item:hover .icon-left,
.opacity-item:hover .icon-left-alt,
.opacity-item:hover .icon-circle-social {
    color: #fff;
    background: #33af60;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.opacity-item:hover .icon-left-blue {
    color: #fff;
    background: #547cc3;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.opacity-item:hover .icon-center-blue {
    color: #fff;
    background: #547cc3;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.opacity-item:hover .divider {
    border-bottom: 1px solid #111;
    text-align: center;
    width: 270px;
    -webkit-transform: translate(20px,0);
    -moz-transform: translate(20px,0);
    -o-transform: translate(20px,0);
    transform: translate(20px,0);
}

.bg-opacity, .bg-opacity:focus {
    opacity: 0.3;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.bg-opacity:hover {
    opacity: 1;
}

.padding-top {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 100px;
}

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

.padding-left {
    text-align: left;
}

.section-padding {
    background-color: #fff;
    padding: 120px 0 120px;
    position: relative;
}

.section-padding-200 {
    background-color: #fff;
    padding: 120px 0 200px;
    position: relative;
}

.section-alt-right {
    padding: 50px 100px 150px 300px;
    position: relative;
}

.section-alt-left {
    padding: 180px 300px 50px 100px;
    position: relative;
}

.section-padding-bottom {
    padding-bottom: 270px;
    position: relative;
}

.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}

.vcenter {
    display: inline-block;
    margin: 10px 0 50px;
}

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

.section-title-wrapper {
    position: relative;
    margin: 0 auto;
    width: 320px;
}

.section-title-shape {
    stroke-dasharray: 130 540;
    stroke-dashoffset: -474;
    stroke-width: 8px;
    fill: transparent;
    stroke: #bd9f86;
    border-bottom: 2px solid black;
    transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
}

.section-title-wrapper:hover .section-title-shape {
    stroke-width: 3px;
    stroke-dashoffset: 0;
    stroke-dasharray: 760;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 8px;
    color: #393939;
    top: -52px;
    position: relative;
    text-transform: uppercase;
}

.section-subtitle {
    color: #111;
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-subtitle-w {
    color: #fff;
    font-family: 'Georgia',sans-serif;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 80px;
}

.section-subtitle-bg {
    color: rgba(227, 244, 233, 0.5);
    font-family: 'Montserrat',sans-serif;
    font-size: 130px;
    font-weight: 400;
    letter-spacing: 1px;
    top: -55px;
    text-transform: uppercase;
    position: relative;
    z-index: -1;
}

.section-subtitle-bg-w {
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-size: 130px;
    font-weight: 400;
    letter-spacing: 1px;
    top: -55px;
    text-transform: uppercase;
    position: relative;
    z-index: -1;
}

@media (max-width: 1200px) {
    .section-alt-right, .section-alt-left {
        padding: 100px 20px;
    }
}

@media(max-width: 992px) {
    .vertical-center {
        display: block;
        vertical-align: none;
        float: none;
    }

    .section-subtitle-bg {
        display: none;
    }

    .section-subtitle-bg-w {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-alt-right h2, .section-alt-right .section-subtitle,
    .section-alt-left h2, .section-alt-left .section-subtitle {
        text-align: center !important;
    }
}

.section-subtitle-header {
    color: #000;
    font-family: 'Georgia',sans-serif;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 80px;
}

.section-subtitle-header-w {
    color: #fff;
    font-family: 'Georgia',sans-serif;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 80px;
}

.section-subtitle i {
    color: #111;
    font-size: 25px;
    margin-right: 10px;
}

.section-subtitle-w i {
    color: #fff;
    font-size: 25px;
    margin-right: 10px;
}

.tagline-title {
    color: #111;
    font-style: italic;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.8em;
    text-transform: none;
    margin-bottom: 0;
}

.tagline p {
    border: 20px solid transparent;
}

.section-overlay {
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-overlay-dark {
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-overlay-w {
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-overlay-w-70 {
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-overlay-color {
    background: rgba(67, 92, 87, 0.1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-overlay-gradient {
    background: rgba(0, 0, 0, 0) linear-gradient(to left, #825aa3, #293177) repeat scroll 0 0;
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-vertical-line {
    height: 140px;
    width: 1px;
    border-right: 2px solid #373737;
    position: absolute;
    left: 50%;
    top: 40px;
}

.vertical-line-gray {
    height: 330px;
    width: 1px;
    border-right: 1px solid #d7d7d7;
    position: absolute;
    left: 50%;
}

.vertical-line-white {
    height: 100px;
    width: 2px;
    border-right: 1px solid #fff;
    position: absolute;
    left: 50%;
}

.parallax-section {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 50px 0;
    position: relative;
}

/* Parallax Header */
.parallax-page-img img {
    background-image: url("../img/bg-parallax.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: absolute;
}

.parallax-page-img-agency img {
    background-image: url("../img/bg-parallax-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: absolute;
}

@media (max-width: 1200px) {
    .parallax-page-img img {
        top: 20%;
    }
}

@media (max-width: 900px) {
    .parallax-page-img-agency img {
        display: none;
    }
}

/* Parallax BG */
.block-parallax {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.block-parallax-80 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.img-parallax {
    width: 100vmax;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    pointer-events: none
}

@media (max-width: 768px) {
    .block-parallax, .block-parallax-80 {
        background: #e3f4e9;
        padding: 25px 0;
    }

    .img-parallax {
        display: none;
    }
}

/* Text Colors */
.text-black {
    color: #000 !important;
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: #373737 !important;
}

.text-light * {
    color: #f2f2f2 !important;
}

.text-gray {
    color: #abadac !important;
}

.text-color-alt {
    color: #c7fbf8 !important;
}

.gold {
    color: #bd9f86 !important;
}

.yellow {
    color: #f5ec3a !important;
}

/* Background Colors */
.background {
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.bg-gray {
    background: #e3f4e9 !important;
}

.bg-white {
    background: #fff !important;
}

/* Margins */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-200 {
    margin-top: 200px;
}

.mt-300 {
    margin-top: 300px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.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;
}

.mb-300 {
    margin-bottom: 300px;
}

.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.m-70 {
    margin: 70px;
}

.mt-10-n {
    margin-top: -10px !important;
}

.mt-20-n {
    margin-top: -20px !important;
}

.mt-30-n {
    margin-top: -30px !important;
}

.mt-40-n {
    margin-top: -40px !important;
}

.mt-50-n {
    margin-top: -50px !important;
}

.mt-60-n {
    margin-top: -60px !important;
}

.mt-70-n {
    margin-top: -70px !important;
}

.mt-200-n {
    position: relative !important;
    top: -200px !important;
    z-index: 0 !important;
}

.mt-300-n {
    position: relative !important;
    top: -300px !important;
    z-index: 1 !important;
}

.mt-300-z {
    position: relative !important;
    top: -300px !important;
    z-index: 0 !important;
}

.mb-10-n {
    margin-bottom: -10px !important;
    position: relative;
}

.mb-20-n {
    margin-bottom: -20px !important;
    position: relative;
}

.mb-30-n {
    margin-bottom: -30px !important;
    position: relative;
}

.mb-40-n {
    margin-bottom: -40px !important;
    position: relative;
}

.mb-50-n {
    margin-bottom: -50px !important;
    position: relative;
}

.mb-60-n {
    margin-bottom: -60px !important;
    position: relative;
}

.mb-70-n {
    margin-bottom: -70px !important;
    position: relative;
}

.mb-200-n {
    position: relative !important;
    margin-bottom: -200px !important;
}

.mb-200-z {
    position: relative !important;
    margin-bottom: -200px !important;
}

.mb-300-n {
    position: relative !important;
    margin-bottom: -300px;
}

@media (max-width: 992px) {
    .xs-mb-30 {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 1800px) {
    .mt-30-n {
        margin-top: -30px;
    }

    .mt-200-n {
        top: 0px !important;
    }

    .mb-200-n {
        margin-bottom: 0px !important;
    }

    .mb-200-z {
        margin-bottom: -300px !important;
    }
}

.dl-wrapper {
    margin-top: 80px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters [class^="col-"], .row.no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* Preloader */
#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}

#preloader-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

#preloader-wrapper-square {
    position: absolute;
    left: 50%;
    top: 50%;
}

.preloader-animation {
    background: url("../img/preloader.gif") no-repeat center;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    opacity: .2;
}

/*==========================================================
    3.   NAVIGATION / HEADER
==========================================================*/

/* Navigation Default */
.navbar-main {
    color: #f5f5f5;
    background-color: rgba(31, 31, 31, 1);
    margin-bottom: 0;
    font-family: 'Montserrat',sans-serif;
    text-transform: uppercase;
}

.navbar-main .navbar-brand {
    color: #f5f5f5;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 10px;
    border: 2px solid #f5f5f5;
    padding: 15px 18px 0px 26px;
}

.navbar-main .navbar-brand:focus {
    outline: 0;
}

.navbar-main .navbar-toggle {
    color: #fff;
    font-size: 16px;
    padding: 4px 6px;
}

.navbar-main .navbar-brand .navbar-toggle:focus, .navbar-main .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-main a {
    color: #f5f5f5;
    font-size: 12px;
}

.navbar-main .nav li a, .nav i {
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color 0.3s ease-in-out 0s;
}

.navbar-main .nav li a.active {
    outline: 0;
}

.navbar-main .nav li a:hover, .nav i:hover {
    outline: 0;
    background: none;
    color: #adacac;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color 0.3s ease-in-out 0s;
}

.navbar-main .nav li a:focus, .nav i:focus {
    outline: 0;
    background: none;
}

.navbar-main i {
    outline: 0;
    font-size: 14px;
    margin: 4px -18px 0 4px;
}

.dropdown li a {
    display: block;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    height: 100%;
    padding-top: 15px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    word-wrap: break-word;
}

.underline {
    position: relative;
}

.underline:hover:after, .underline:focus:after, .underline:active:after {
    width: 30px;
    cursor: pointer;
}

.underline:hover {
    color: #000;
}

.underline:after {
    content: '';
    position: absolute;
    left: -7px;
    bottom: -7px;
    height: 2px;
    background-color: #000;
    width: 0;
    -webkit-transition: width .4s;
    -moz-transition: width .4s;
    -o-transition: width .4s;
    transition: width .4s;
}

/* Underline White */
.underline-w {
    position: relative;
}

.underline-w:hover:after, .underline-w:focus:after, .underline-w:active:after {
    width: 30px;
    cursor: pointer;
}

.underline-w:hover {
    color: #fff;
}

.underline-w:after {
    content: '';
    position: absolute;
    left: -7px;
    bottom: -7px;
    height: 2px;
    background-color: #fff;
    width: 0;
    -webkit-transition: width .4s;
    -moz-transition: width .4s;
    -o-transition: width .4s;
    transition: width .4s;
}

/* Navigation White */
.navbar-main-white {
    background-color: rgba(255, 255, 255, 1);
    margin-bottom: 0;
    font-family: 'Montserrat',sans-serif;
    text-transform: uppercase;
}

.navbar-main-white .navbar-brand {
    color: #393939;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 10px;
    border: 2px solid #393939;
    padding: 15px 18px 0px 26px;
}

.navbar-main-white .navbar-brand:focus {
    outline: 0;
}

.navbar-main-white .navbar-toggle {
    color: #393939;
    font-size: 16px;
    padding: 4px 6px;
}

.navbar-main-white .navbar-brand .navbar-toggle:focus, .navbar-main-white .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-main-white a {
    color: #373737;
    font-size: 12px;
}

.navbar-main-white .nav li a, .nav i {
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color 0.3s ease-in-out 0s;
}

.navbar-main-white .nav li a.active {
    outline: 0;
}

.navbar-main-white .nav li a:hover, .nav i:hover {
    outline: 0;
    background: none;
    color: #adacac;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color 0.3s ease-in-out 0s;
}

.navbar-main-white .nav li a:focus, .nav i:focus {
    outline: 0;
    background: none;
}

.navbar-main-white i {
    outline: 0;
    font-size: 14px;
    margin: 4px -18px 0 4px;
}

.navbar-fixed-top-white .dropdown li a {
    background-color: rgba(255, 255, 255, 1);
    color: #393939;
}

.navbar-fixed-top-white .dropdown-menu {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
}

.top-nav-collapse-white .dropdown li a {
    background-color: rgba(255, 255, 255, 1);
    color: #393939;
}

.top-nav-collapse-white .dropdown-menu {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
}

.top-nav-border {
    border-bottom: 0 !important;
}

@media (max-width: 1100px) {
    .navbar-header {
        float: none;
    }

    .navbar-left,.navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-fixed-top-white {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none!important;
    }

    .navbar-nav {
        margin: 0 !important;
        float: none !important;
        margin-top: 7.5px 15px;
    }

    .navbar-nav>li {
        float: none;
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .collapse.in{
        display: block !important;
        overflow-x: hidden !important;
    }
}

@media(min-width: 767px) {
    .navbar {
        padding: 20px 10px;
        letter-spacing: 1px;
        background: none;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        background-color: rgba(31, 31, 31, 1);
        padding: 10px 10px;
        z-index: 999;
    }

    .navbar-main .top-nav-collapse {
        background-color: rgba(31, 31, 31, 1);
        border-bottom: 0;
    }

    .top-nav-collapse-white {
        background-color: rgba(255, 255, 255, 1);
        padding: 12px 0 20px;
        border-bottom: 1px solid #ccc;
        z-index: 999;
    }

    .top-nav-border {
        border-bottom: 0 !important;
    }

    .navbar-main-white .top-nav-collapse-white {
        background-color: rgba(255, 255, 255, 1);
    }

    .navbar-toggle i {
        font-size: 18px;
        padding-right: 20px;
    }
}

@media(max-width: 767px) {
    .navbar-main .navbar-brand {
        border: 0;
        padding: 0;
    }

    .navbar-main-white .navbar-brand {
        border: 0;
        padding: 0;
    }
}

.navbar-logo {
    margin-top: 8px;
    display: inline-block;
    max-height: 2.500em;
}

.icon-logo {
    height: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

/* Header */
.header-bg {
    width: 100%;
    height: auto;
    text-align: center;
    color: #fff;
    position: relative;
}

.header-bg .header-body {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Josefin Sans',sans-serif;
    text-align: center;
}

.header-bg .header-body span {
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-style: italic;
    text-transform: lowercase;
    text-align: center;
}

.header-title {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 10px;
    line-height: 1.750em;
    text-transform: uppercase;
}

.header-title-black {
    color: #000;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 10px;
    line-height: 1.750em;
    text-transform: uppercase;
}

.header-main-text-w h1 {
    font-family: 'Montserrat',sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: center;
}

.header-main-text-w span {
    color: #c7fbf8;
    font-family: "Georgia",sans-serif !important;
    font-style: italic;
    letter-spacing: 1px;
}

.header-main-text-w h2 {
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

.header-animation h1 {
    color: #fff;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.header-animation h2 {
    color: #fff;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;
}

#header-parallax {
    width: 100vw;
    background: #fff;
    overflow: hidden;
    position: relative;
}

#header-parallax.home {
    height: 100vh;
}

#header-parallax .header-parallax-bg {
    background: url("../img/bg-header-2.jpg") center;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.texthd {
    display: none;
}

.fixed {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.fixed-top {
    position: fixed;
    top: 30%;
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
}

.fixed-top-35 {
    position: fixed;
    top: 35%;
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
}

.z-index {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 998;
}

.z-index-100 {
    z-index: 100;
    position: relative;
}

@media screen and (max-width: 850px) {
    .header-bg {
        height: 100%;
    }

    .header-bg .header-body h1 {
        font-size: 32px;
        letter-spacing: 9px;
        line-height: 1.53846em;
    }

    .header-bg .header-body h4 {
        font-size: 18px;
    }

    .header-bg .header-body span {
        font-size: 32px;
    }

    .header-title {
        font-size: 20px;
        line-height: 0.750em;
    }

    .header-title-black {
        font-size: 20px;
        line-height: 0.750em;
    }
}

@media screen and (max-width: 600px) {
    .header-title {
        margin-top: 150px;
    }
}

.icon-scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.icon-scroll p {
    color: #373737;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.icon-scroll img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -10.5px;
    margin-left: -9.5px;
}

.icon-scroll .icon-scroll-main {
    height: 75px;
    position: relative;
    left: 50%;
    bottom: 0;
}

.icon-scroll .icon-scroll-center {
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
    width: 0px;
    height: 75px;
    position: relative;
    left: 50%;
    bottom: 0;
}

.icon-scroll .icon-scroll-center:after {
    content: '';
    background-color: rgba(255, 255, 255, 1);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0px;
    left: -2px;
}

.icon-scroll-alt {
    position: absolute;
    bottom: 20px;
    left: 48%;
}

.mouse {
    position:absolute;
    top:320px;
    height:35px;
    left:0;
    display: block;
    text-align: center;
    z-index: 500;
    -webkit-animation: vertical 3s ease infinite;
    animation: vertical 3s ease infinite;
}

@keyframes vertical { 
    0%, 60%, 80%, 100% {-webkit-transform: translateY(0);} 
    20% {-webkit-transform: translateY(-5px);}
    40% {-webkit-transform: translateY(20px);}
} 

@-webkit-keyframes vertical { 
    0%, 60%, 80%, 100% {-webkit-transform: translateY(0);} 
    20% {-webkit-transform: translateY(-5px);}
    40% {-webkit-transform: translateY(20px);}
}

@-moz-keyframes vertical{
    0%, 60%, 80%, 100% { -moz-transform: translateY(0);} 
    20% { -moz-transform: translateY(-5px);}
    40% { -moz-transform: translateY(20px);}
}

@-ms-keyframes vertical{
    0%, 60%, 80%, 100% { -ms-transform: translateY(0);} 
    20% { -ms-transform: translateY(-5px);}
    40% { -ms-transform: translateY(20px);}
}

.mouse a:hover {
    opacity: 0.5;
    transition: all 0.5s ease-in-out 0s;
}

@media(min-width: 767px) {
    .header-bg {
        height: 100%;
        padding: 0;
    }
}

/*==========================================================
    4.   WELCOME / PROCESS / ABOUT SECTION
==========================================================*/

.welcome-section {
    padding: 200px 0 50px;
    position: relative;
}

.welcome-section p {
    margin-bottom: 40px;
    padding: 0 20px 0;
}

.welcome-section p.entradilla{
    font-size: 20px;
    border: 2px solid green;
    padding: 30px;
    background: #e3f4e9;
}

.welcome-section p.entradilla::after{
    width: 200px;
    position: absolute;
    top: 20px;
    height: 2px;
    left: 50%;
    right: 50%;
    margin-left: -100px;
}

.welcome-section h5 {
    margin-bottom: 20px;
}

.welcome-section a{
    text-decoration: underline;
    font-weight: 700;
    font-style: italic;
}

.about-section {
    padding: 150px 80px 100px;
}

.about-section-bg {
    background: url("../img/bg-about-alt.jpg") no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 180px 100px 150px 300px;
    position: relative;
}

.scroll-down { 
    background: url("../img/scroll-triangle.png") no-repeat center;
    background-size: contain;
    color: #000;
    width: 86px;
    height: 72px;
    font-size: 16px;
    cursor: pointer;
    margin: auto;
    -webkit-transition: .5s all ease-out;
    transition: .5s all ease-out;
    position: relative;
    opacity: 0.7;
}

.scroll-down-wrapper {
    padding: 17px;
}

.plus, .minus {
    color: #000 !important;
    -webkit-transition: .5s all ease-out;
    transition: .5s all ease-out;
    display: block;
}

.plus { 
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 40% 0;
    transform-origin: 50% 40% 0;
    position: relative;
}

.scroll-down:hover .plus {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
}

.minus {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 40% 0;
    transform-origin: 50% 40% 0;
    top: -23px;
    position: relative;
    opacity: 0;
}

.scroll-down:hover .minus {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
}

.scroll-down:hover  { 
    opacity: 1;
}

@media (max-width: 1200px) {
    .about-section-bg {
        background: #f3f3f3;
        padding: 100px 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 100px 20px;
    }

    .about-section h2, .about-section .section-subtitle,
    .about-section-bg h2, .about-section-bg .section-subtitle {
        text-align: center !important;
    }
}

.about-description p {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 17px;
    line-height: 27px;
    text-align: justify;
    text-justify: inter-word;
}

.about-media-box {
    background: #425cbb none repeat scroll 0 0;
    display: inline-block;
    position: relative;
}
.about-media-box img {
    right: 25px;
    bottom: 25px;
    position: relative;
}

/* Parallax Elements */
.frame-img {
    margin-top: 5px;
    background-image: url("../img/bg-trees.jpg");
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
}

.frame-img img {
    width: 100%;
    height: auto;
}

.frame-img-colors {
    margin-top: 5px;
    background-image: url("../img/bg-colors.jpg");
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
}

.frame-img-colors img {
    width: 100%;
    height: auto;
}

.frame-img-light {
    margin-top: 5px;
    background-image: url("../img/bg-mountains.jpg");
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
}

.frame-img-light img {
    width: 100%;
    height: auto;
}

.frame-img-gradient {
    margin-top: 5px;
    background-image: url("../img/bg-gradient.jpg");
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
}

.frame-img-gradient img {
    width: 100%;
    height: auto;
}

/* Fix BG safari */
@media only screen and (orientation: portrait) and (device-width: 320px), (device-width: 768px) {
    .frame-img, .frame-img-colors, .frame-img-light, .frame-img-gradient {
        -webkit-background-size: auto 100% !important;
        background-attachment: scroll !important;
    }
}
@media only screen and (orientation: landscape) and (device-width: 320px), (device-width: 768px) {
    .frame-img, .frame-img-colors, .frame-img-light, .frame-img-gradient {
        -webkit-background-size: 100% auto !important;
        background-attachment: scroll !important;
    }
}

.carousel.carousel-fade .item {
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.carousel.carousel-fade .active.item {
    opacity: 1;
}

.carousel.carousel-fade .active.left, .carousel.carousel-fade .active.right {
    left: 0;
    z-index: 2;
    opacity: 0;
    filter: alpha(opacity=0);
}

.carousel.carousel-fade .next, .carousel.carousel-fade .prev {
    left: 0;
    z-index: 1;
}

.carousel.carousel-fade .carousel-control {
    z-index: 3;
}

/* Carousel Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next, .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.prev, .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.next.left, .carousel-fade .carousel-inner > .item.prev.right, .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.panel-heading {
    padding: 0;
}

.panel-heading a {
    display: block;
    padding: 20px 10px;
}

.panel-heading a.collapsed {
    background: #fff;
}

.panel-heading a {
    background: #fff;
    border-radius: none !important;
    padding: 25px;
}

/*==========================================================
    5.   SKILLS SECTION
==========================================================*/

.skills-section {
    padding: 50px 0 0;
}

.skills-section-dots {
    background: url("../img/bg-dots.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 0 0 50px;
}

.skills-section-dots-alt {
    background: url("../img/bg-dots.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 0 0 50px;
    margin: 200px 0;
}

.counter {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 42px;
}

.counter-skills, .counter-num {
    color: #000;
    text-align: center;
    padding: 40px 0 30px;
}

.counter-skills p {
    color: #000;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.counter-skills h5, .counter-num h5 {
    margin-top: 20px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.counter-skills h6 {
    color: #000;
}

/*==========================================================
    6.   SERVICES SECTION
==========================================================*/

.services-section {
    padding: 200px 0 80px;
    position: relative;
}

.services-section-alt {
    background: #fff;
    padding: 200px 0 0;
    position: relative;
}

.services-section p {
    margin-bottom: 40px;
    padding: 0 20px 0;
}

.services-section h5 {
    margin-bottom: 20px;
}

.services-section-gray {
    background: #e3f4e9;
    padding: 200px 0 80px;
    position: relative;
    z-index: 0;
}

.icon-left {
    background: #e3f4e9;
    color: #0e0e0e;
    height: 80px;
    width: 80px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    font-size: 42px;
    text-align: center;
    padding: 17px 0 0 4px;
    margin: 13px 20px 150px;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
    float: left;
}

.icon-left-blue {
    background: #eff1f0;
    color: #0e0e0e;
    height: 80px;
    width: 80px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    font-size: 42px;
    text-align: center;
    padding: 17px 0 0 4px;
    margin: 13px 20px 150px;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
    float: left;
}

.icon-center-blue {
    background: #eff1f0;
    color: #0e0e0e;
    height: 80px;
    width: 80px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    font-size: 42px;
    text-align: center;
    padding: 17px 0 0 1px;
    margin: auto;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
}

.icon-left-alt {
    background: #eff1f0;
    color: #0e0e0e;
    height: 80px;
    width: 80px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    font-size: 42px;
    text-align: center;
    padding: 17px 0 0 4px;
    margin: 13px 20px 80px 18%;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
    float: left;
}

.icon-content-left {
    text-align: left;
}

.icon-content-center {
    text-align: center;
    margin-top: 40px;
}

.icon-center {
    color: #bd9f86;
    font-size: 42px;
    padding-bottom: 10px;
}

.icon-service-provide {
    font-size: 28px;
    padding: 10px 20px;
}

.icon-service-page {
    color: #bd9f86;
    font-size: 28px;
    padding: 10px 20px;
}

.iphone-1 {
    left: 17%;
    margin-top: 13% !important;
    position: absolute;
    z-index: 2;
}

.iphone-1 img {
    max-width: 275px;
}

.iphone-2 {
    top: 0;
    left: 56%;
    position: absolute;
    z-index: 1;
}

.iphone-2 img {
    max-width: 360px;
}

@media (max-width: 480px) {
    .icon-left, .icon-left-blue, .icon-center-blue, .icon-left-alt {
        margin: auto;
        float: none !important;
        text-align: center;
    }

    .icon-content-left h5, .icon-content-left p {
        text-align: center;
        margin-top: 40px;
    }
}

/*==========================================================
    7.   FEATURES SECTION
==========================================================*/

.features-section {
    background: #e3f4e9;
    width: 100%;
    padding: 120px 0 80px;
    position: relative;
}

.features-section p {
    margin-bottom: 40px;
    padding: 0 20px;
}

.features-section h5 {
    margin-bottom: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    background: #ccc none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 0;
    height: 3px;
    width: 35px;
}

.carousel-indicators .active {
    background: #bd9f86 none repeat scroll 0 0;
    border: 1px solid #bd9f86;
    height: 3px;
    width: 35px;
}

.awesome-features-section {
    background: url("../img/bg-awesome.jpg") no-repeat top left;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0 100px;
    position: relative;
    color: #000;
}

/*==========================================================
    8.   WORKS / PORTFOLIO SECTION
==========================================================*/

.works-section {
    padding: 200px 0 0;
    margin-bottom: -12px;
    position: relative;
}

.works-section img {
    width: 100%;
}

.view-more {
    padding: 80px 0 60px;
    text-align: center;
}

.view-more h5 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;
}

.view-more span {
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

/* Portfolio */
.portfolio-section {
    background: #fff;
    padding: 200px 0 100px;
    position: relative;
}

/* Portfolio Items */
.portfolio-sorting {
    font-size: 17px;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.portfolio-sorting li a {
    padding: 10px 15px 0 2px;
}

.portfolio-sorting li a.active {
    color: #000;
}

.num-item {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    bottom: 7px;
    right: 15px;
    position: relative;
}

/* BG Black */
.item-zoom {
    position: relative;
    overflow: hidden;
}

.item-zoom img {
    max-width: 100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.item-zoom:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

figure.item-zoom figcaption {
    text-align: center;
    top: 50%;
    right: 50%;
    position: absolute;
    opacity: 0;
    z-index: 1;
}

figure.item-zoom figcaption h5 {
    color: #fff;
    font-size: 16px;
}

figure.item-zoom figcaption p {
    padding: 0px;
    margin: 0px
}


figure.item-zoom figcaption span {
    color: #fff;
    font-size: 16px;
}

figure.item-zoom:after {
    background-color: #000;
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

figure.item-zoom:hover figcaption {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
}

figure.item-zoom:hover:after, figure.item-zoom.hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
}

/* Default BG Blue */
.item-zoom-blue {
    position: relative;
    overflow: hidden;
}

.item-zoom-blue img {
    max-width: 100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.item-zoom-blue:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

figure.item-zoom-blue figcaption {
    text-align: center;
    top: 50%;
    right: 50%;
    position: absolute;
    opacity: 0;
    z-index: 1;
}

figure.item-zoom-blue figcaption h5 {
    color: #fff;
}

figure.item-zoom-blue figcaption span {
    color: #fff;
    font-size: 16px;
}

figure.item-zoom-blue:after {
    background-color: mediumblue;
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

figure.item-zoom-blue:hover figcaption {
    top: 40%;
    left: 0;
    right: 0;
    opacity: 1;
}

figure.item-zoom-blue:hover:after, figure.item-zoom-blue.hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.68;
}

.arrow-item {
    background: url("../img/arrow-item.svg");
    content: "";
    width: 38px;
    height: 14px;
    margin-top: 3%;
    right: 10%;
    position: absolute;
}

/*==========================================================
    9.   TEAM SECTION
==========================================================*/

.team-section {
    background: #e3f4e9;
    width: 100%;
    padding: 200px 0 170px;
}

.team-section-alt {
    position: relative;
}

.team-section h5 {
    text-transform: none;
    padding-top: 50px;
    margin-bottom: -15px;
}

.team-section h6 {
    color: #abadac;
    font-size: 17px;
}

.team-section-alt h5 {
    text-transform: none;
    padding-top: 50px;
    margin-bottom: -15px;
}

.team-section-bg {
    background: url("../img/bg-team.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: inline-block;
    width: 100%;
    height: auto;
    padding-bottom: 120px;
}

.shadow-box .team-box {
    border: 1px solid #e7e7e7;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shadow-box .team-box:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px 2px rgba(0, 0, 0, 0.2);
}

.shadow-box .team-box h5 {
    text-align: left;
    padding: 18px 0 0 33px;
}

.shadow-box .team-box h6 {
    text-align: left;
    margin: 12px 30px 0 33px;
    padding-bottom: 55px;
    border-bottom: 1px solid #e7e7e7;
}

.shadow-box .team-box img {
    padding: 0;
    width: 100%;
}

.shadow-box .team-box p {
    text-align: center;
    padding: 38px 40px 56px;
    margin-right: 40px;
    margin-left: 40px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

@media (max-width: 992px) {
    .shadow-box .team-box {
        margin-bottom: 100px;
    }

    .shadow-box .team-box:last-child {
        margin-bottom: 0;
    }
}

/*==========================================================
    10.  VIDEO SECTION
==========================================================*/

.video-section {
    padding: 0;
}

.video-section h5 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;
}

.video-section span {
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.full-video-bg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.full-video-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .full-video-wrapper {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .full-video-wrapper {
        width: auto;
        height: 100%;
    }
}

/* POPUP FADE EFFECT */
/* 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 {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

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

/*==========================================================
    11.  BLOG
==========================================================*/

.blog-section {
    background: #e3f4e9;
    width: 100%;
    padding: 200px 0 170px;
    position: relative;
    z-index: 0;
}

.blog-section-alt {
    background: #fff;
    position: relative;
    padding-bottom: 40px;
    z-index: 0;
}

.blog-section h5, .blog-section-alt h5 {
    font-size: 24px;
    line-height: 0.625em;
    text-transform: none;
    margin-left: 10px;
}

.blog-section h6 span, .blog-section-alt h6 span {
    color: #abadac;
    font-size: 18px;
    margin-left: 10px;
}

.shadow-box .blog-box {
    border: 1px solid #e7e7e7;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shadow-box .blog-box:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px 2px rgba(0, 0, 0, 0.2);
}

.shadow-box .blog-box p {
    text-align: justify;
    text-justify: inter-word;
    padding: 30px 10px 30px;
    border-top: 1px solid #e7e7e7;
}

.blog-img-left {
    float: left;
    padding: 0;
    height: auto;
    overflow: hidden;
}

.blog-img-right {
    float: right;
    padding: 0;
    height: auto;
    overflow: hidden;
}

.blog-content-left {
    float: left;
    padding: 60px 30px 0;
}

.blog-content-right {
    float: right;
    padding: 60px 30px 0;
}

@media (max-width: 1200px) {
    .shadow-box .blog-box p {
        text-align: justify;
        text-justify: inter-word;
        padding: 30px 5px 10px;
        border-top: 1px solid #e7e7e7;
    }

    .blog-img-left {
        float: left;
    }

    .blog-img-right {
        float: none;
    }

    .blog-content-left {
        text-align: center;
        padding: 50px 15px 0;
    }

    .blog-content-right {
        float: right;
        text-align: center;
        padding: 50px 15px 0;
    }
}

@media (max-width: 480px) {
    .blog-section h5 {
        line-height: 1.44444em;
    }

    .blog-section-alt h5 {
        line-height: 1.44444em;
    }
}

/*==========================================================
    12.  TESTIMONIAL SECTION
==========================================================*/

.testimonial-section {
    background: #e3f4e9;
    width: 100%;
    padding: 200px 0 170px;
}

.testimonial-section-alt {
    background: #fff;
    width: 100%;
    padding: 200px 0 170px;
    position: relative;
    z-index: 1;
}

.shadow-box .testimonial-box {
    padding: 10px 30px 0;
    border: 1px solid #e7e7e7;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shadow-box .testimonial-box:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px 2px rgba(0, 0, 0, 0.2);
}

.shadow-box .testimonial-box p {
    text-align: center;
    padding: 28px 10px 56px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.image-circle-120 {
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 7px solid rgba(204, 204, 204, 1);
    display: block;
    height: auto;
    width: 114px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 26px;
    margin-bottom: 35px;
    transition: all 0.55s ease 0s;
}

.icon-circle-50 {
    background: #fff;
    height: 56px;
    width: 56px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #e7e7e7;
    display: block;
    font-size: 32px;
    text-align: center;
    padding: 11px;
    margin: 13px 20px 150px;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
    margin-left: auto;
    margin-right: auto;
}

.icon-circle-small {
    background: #fff;
    height: 52px;
    width: 52px;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #e7e7e7;
    display: block;
    font-size: 32px;
    text-align: center;
    padding: 11px;
    margin: 13px 20px 150px;
    transition: color 0.5s ease-in-out 0s,
        background-color 0.5s ease-in-out 0s,
        border-color 0.5s ease-in-out 0s;
    margin-left: auto;
    margin-right: auto;
}

.icon-circle-small:hover {
    border: 1px solid #111;
}

.icon-circle-wrapper {
    transform: translate(0%, -74%);
    margin-bottom: -6px;
}

.icon-circle-social {
    font-size: 20px;
    transform: translate(0%, -74%);
    margin-bottom: -6px;
    padding: 12px 0 0 1px;
}

.testimonial-section h5 {
    text-transform: none;
    padding-top: 50px;
    margin-bottom: -15px;
}

.testimonial-section h6 {
    color: #abadac;
    font-size: 17px;
}

.testimonial-section-alt h5 {
    text-transform: none;
    padding-top: 50px;
    margin-bottom: -15px;
}

.img-left {
    float: left;
}

.content-right {
    float: right;
}

@media (max-width: 992px) {
    .shadow-box .testimonial-box {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .shadow-box .testimonial-box:last-child {
        margin-bottom: 0;
    }

    .img-left {
        float: none;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        margin-bottom: 80px;
        position: absolute;
    }

    .content-right {
        float: none;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

/*==========================================================
    13.  BRANDS SECTION
==========================================================*/

.brand-section {
    text-align: center;
    padding-bottom: 50px;
    position: relative;
}

.brand-section-alt {
    background-color: #e3f4e9;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.brand-slider {
    margin-left: 32px;
}

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

@media (max-width: 1200px) {
    .brand-section {
        padding-top: 50px;
    }

    .brand-slider {
        margin-left: 0;
    }
}

/*==========================================================
    14.  PRICING SECTION
==========================================================*/

.pricing-section {
    background: #e3f4e9;
    position: relative;
    padding-bottom: 100px;
}

.pricing-section-bg {
    background: url("../img/bg-abstract.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 150px;
}

.pricing-box {
    background-color: #fff;
    text-align: center;
    padding: 44px 32px 72px;
    margin: 10px 10px;
    border: 1px solid #e7e7e7;
}

.pricing-box p {
    line-height: 15px;
}

.pricing-box h2 {
    font-family: 'Montserrat',sans-serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 0 28px;
}

.pricing-box h4 {
    color: #000 !important;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 0.750em;
    text-transform: none;
}

.pricing-box h6 {
    border-bottom: 1px solid #d7d7d7 !important;
    padding-bottom: 34px;
}

.pricing-box span {
    color: #abadac;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal !important;
    vertical-align: 30%;
    padding: 5px;
}

.pricing-box span:first-child {
    color: #000;
}

.pricing-content {
    margin-bottom: 50px;
}

.disable-item {
    color: #c7c7c7;
    text-decoration: line-through;
}

.pricing-bg {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.pricing-bg:hover, .pricing-bg:focus {
    -webkit-transform: translate(0, -15px);
    -ms-transform: translate(0, -15px);
    transform: translate(0, -15px);
}

.gradient-border {
    border-top: 14px solid #3acfd5;
    border-bottom: 14px solid #425cbb;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    -webkit-background-size: 14px 100%;
    -moz-background-size: 14px 100%;
    background-size: 14px 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=),url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
    background-image: -webkit-linear-gradient(top, #3acfd5 0%, #425cbb 100%), -webkit-linear-gradient(top, #3acfd5 0%, #425cbb 100%);
    background-image: -moz-linear-gradient(top, #3acfd5 0%, #425cbb 100%), -moz-linear-gradient(top, #3acfd5 0%, #425cbb 100%);
    background-image: -o-linear-gradient(top, #3acfd5 0%, #425cbb 100%), -o-linear-gradient(top, #3acfd5 0%, #425cbb 100%);
    background-image: linear-gradient(to bottom, #3acfd5 0%, #425cbb 100%), linear-gradient(to bottom, #3acfd5 0%, #425cbb 100%);
}

/*==========================================================
    15.  SUPPORT SECTION
==========================================================*/

.support-section {
    background: url("../img/bg-support.jpg") no-repeat top center;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    position: relative;
}

.support-alt h5 {
    text-transform: none;
    padding-top: 50px;
    margin-bottom: -15px;
}

.support-alt h6 {
    color: #abadac;
    font-size: 17px;
}

.shadow-box .support-box {
    padding: 10px 0;
}

.shadow-box .support-box p {
    text-align: left;
    padding: 28px 10px 56px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.img-left-alt {
    float: left;
    padding-right: 37px;
}

@media (max-width: 992px) {
    .shadow-box .shadow-box {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .img-left-alt {
        float: none;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        margin-bottom: 80px;
        padding-right: 37px;
        position: absolute;
    }
}

.screen-scroll {
    position: absolute;
    right: 0;
    bottom: 0;
}

/*==========================================================
    16.  CONTACT / CONTACT INFO SECTION
==========================================================*/

.contact-section {
    padding: 150px 80px 0 80px;
    position: relative;
}

/* Contact Form */
.contact-form {
    margin-left: -30px;
}

.form-control {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    color: #000;
    background-color: transparent;
    background-image: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: 0;
    display: block;
    height: 45px;
    line-height: 1;
    width: 100%;
    margin-bottom: 20px;
}

form ul li {
    color: red;
    line-height: 30px;
    left: -25px;
    top: -10px;
    position: relative;
}

textarea.form-control {
    height: 130px;
    padding-top: 90px;
}

.form-control-contact-page {
    background-color: #f2f2f2;
    background-image: none;
    border-radius: 0;
    box-shadow: 0;
    font-family: 'Georgia',sans-serif;
    font-style: italic;
    display: block;
    font-size: 15px;
    height: 45px;
    line-height: 1;
    padding: 14px;
    width: 100%;
}

.form-control-contact * {
    color: #393939;
}

textarea {
    min-height: 150px;
}

.well {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 20px;
    min-height: 20px;
    padding: 19px;
}

.alert-success {
    background-color: #dff0d8;
    color: #373737;
    border-color: #fff;
    border-radius: 0;
}

@media (max-width: 480px) {
    .contact-section h2 {
        text-align: center;
    }

    .contact-section .section-subtitle {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-form {
        margin: 0 -90px;
    }
}

/* Contact Info */
.contact-info-section {
    background: url("../img/bg-contact-info.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 50px 0;
}

.contact-info-section p {
    font-family: 'Josefin Sans',sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info-wrapper {
    margin: 14px 10px 0 -10px;
}

.contact-info-wrapper a {
    margin-bottom: -12px;
}

.contact-info-section span {
    font-size: 30px;
    margin-right: 4px;
}

.contact-info-section h4 {
    color: #000 !important;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.250em;
    text-transform: none;
    margin-top: 50px;
}

.contact-info-section h5 {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    border-bottom: 1px solid #777;
    padding-bottom: 30px;
}

.twitter-widget p {
    margin-bottom: 20px;
}

.twitter-widget p {
    line-height: 20px;
}

.twitter-widget p:first-child {
    margin-bottom: 2px;
}

.twitter-widget a * {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.twitter-widget a:hover * {
    color: #000;
    transition: all 0.2s ease-out;
}

.contact-info-section i {
    margin-right: 7px;
}

.contact-info-section ul li {
    text-align: left;
    padding-top: 5px;
    line-height: 26px;
}

.contact-icons {
    margin-left: -16px;
}

.contact-icons a * {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.contact-icons i {
    font-size: 24px;
    margin-right: 5px;
}

.contact-icons i:hover {
    color: #000;
}

@media (max-width: 768px) {
    .contact-info-section {
        text-align: center;
    }

    .contact-icons, .contact-icons i {
        margin-right: 0;
        text-align: center;
    }
}

/*==========================================================
    17.  GUIDE SECTION
==========================================================*/

.guide-section {
    background: #e3f4e9;
    border-top: 2px solid #e3f4e9;
}

.guide-section p {
    color: #696969;
    text-align: left;
}

.guide-section p {
    margin-bottom: 40px;
}

.guide-section h5 {
    padding: 5px 0;
}

.guide-num {
    color: #abadac;
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 80px;
    font-style: normal;
    letter-spacing: 2px;
    text-align: left;
    display: inline-block;
    margin-right: 65px;
    margin-left: -30px;
}

.guide-title {
    display: inline-block;
    text-align: left;
}

.nav-pills > li a {
    background-color: #fff;
    border-left: 10px solid #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 35%;
    margin-top: -2px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
    color: #000;
    background-color: #e3f4e9;
    border-left: 10px solid #414141;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 35%;
}

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
    border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: none;
}

.tab-content > .active,
.pill-content > .active {
    display: block;
}

.guide-content {
    margin-top: 60px;
    margin-bottom: -135px;
}

.guide-content h5 {
    padding-bottom: 20px;
}

.guide-content p {
    padding-bottom: 0;
    padding-right: 20px;
}

.tabs-below > .nav-tabs {
    border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
    margin-top: -1px;
    margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
    border-top-color: #ddd;
    border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
    border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
    float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
    min-width: 74px;
    margin-right: 0;
    margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
    margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
    border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
    border-color: #ddd transparent #ddd #ddd;
    border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
    float: right;
    margin-left: 19px;
    border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
    margin-left: -1px;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
    border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
    border-color: #ddd #ddd #ddd transparent;
    border-left-color: #ffffff;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

@media (max-width: 1900px) {
    .guide-num {
        margin-top: 50px;
    }

    .nav-pills > li a {
        padding-left: 15%;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:focus,
    .nav-pills > li.active > a:hover {
        padding-left: 15%;
    }
}

@media (max-width: 1600px) {
    .guide-num {
        margin-left: -50px;
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .guide-content {
        margin-top: 60px;
        margin-bottom: -100px;
    }

    .guide-content p, .guide-content h5 {
        padding: 30px;
        margin-bottom: 0;
    }

    .guide-content:first-child p {
        padding-top: 20px;
        margin-bottom: -40px;
    }

    .guide-content img {
        margin-top: 100px !important;
        display: table-caption;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-pills > li a {
        padding-left: 15%;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:focus,
    .nav-pills > li.active > a:hover {
        padding-left: 15%;
    }
}

@media (max-width: 480px) {
    .guide-num {
        font-size: 40px;
        margin-top: 20px;
        margin-left: 0;
    }

    .nav-pills > li a {
        padding-left: 50px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:focus,
    .nav-pills > li.active > a:hover {
        padding-left: 50px;
    }
}

/*==========================================================
    18.   PAGES
==========================================================*/

/* Header Page */
.header-page {
    background: #f2f2f2 none repeat scroll 0 0;
    padding: 200px 0 100px;
    position: relative;
}

.header-page h1 {
    color: #000;
}

.header-page p {
    font-size: 14px;
    margin: 40px 0;
    border: 12px solid transparent;
    text-align: right;
}

.header-page-title h1 {
    color: #f2f2f2;
    font-family: 'Montserrat',sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
}

.header-page-title span {
    color: yellow;
    font-family: 'Montserrat',sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: none;
    display: none;
}

.header-page-title h2 {
    color: #f2f2f2;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
}

.breadcrumb {
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
    list-style: outside none none;
    padding: 0;
    text-transform: uppercase;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    content: "—\00a0"
}

.breadcrumb>.active {
    color: #fff;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover{
    color: yellow;
}

@media screen and (max-width: 768px) {
    .header-page {
        padding: 90px 0 10px;
    }
}

/* Portfolio Page */
.portfolio-header-text h1 {
    color: #373737 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 72px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: -20px;
}

.portfolio-header-text span {
    color: blue !important;
    font-family: 'Montserrat',sans-serif !important;
    font-style: normal !important;
    font-weight: 700;
    letter-spacing: 2px !important;
    text-transform: none !important;
}

.portfolio-header-alt h1 {
    color: #373737 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 72px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: center;
}

.portfolio-header-alt span {
    color: blue !important;
    font-family: 'Montserrat',sans-serif !important;
    font-style: normal !important;
    font-weight: 700;
    letter-spacing: 2px !important;
    text-transform: none !important;
}

.portfolio-header-alt h2 {
    color: #373737 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.portfolio-header-main h1 {
    color: #373737 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
}

.portfolio-header-main span {
    color: blue !important;
    font-family: 'Montserrat',sans-serif !important;
    font-style: normal !important;
    font-weight: 700;
    letter-spacing: 2px !important;
    text-transform: none !important;
}

.portfolio-header-main h2 {
    color: #777 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
}

.portfolio-header-text-w h1 {
    color: #f2f2f2 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
}

.portfolio-header-text-w span {
    color: yellow !important;
    font-family: 'Montserrat',sans-serif !important;
    font-style: normal !important;
    font-weight: 700;
    letter-spacing: 2px !important;
    text-transform: none !important;
}

.portfolio-header-text-w h2 {
    color: #f2f2f2 !important;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
}

.portfolio-description {
    padding: 120px 0 80px;
    position: relative;
}

.portfolio-single h3 {
    color: #373737 !important;
    font-size: 42px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-single .blue {
    color: #425cbb;
    font-size: 52px;
    font-style: normal;
}

.underline-dotted {
    color: #777;
    font-size: 42px;
    font-style: normal;
    border-bottom: 1px dotted #777;
}

.underline-dotted:hover {
    cursor: e-resize;
    color: #373737;
    border-bottom: 1px dotted #373737;
}

@media screen and (max-width: 850px) {
    .portfolio-single h3, .portfolio-single .blue, .underline-dotted {
        font-size: 24px !important;
        letter-spacing: 9px;
        line-height: 1.53846em;
    }
}

.portfolio-header {
    background: #fff none repeat scroll 0 0;
    padding: 200px 0 40px;
    position: relative;
}

.portfolio-header p {
    font-size: 14px;
    margin: 40px 0;
    border: 12px solid transparent;
}

@media screen and (max-width: 768px) {
    .portfolio-header {
        padding: 140px 0;
    }
}

.portfolio-wrapper {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.portfolio-wrapper:hover, .portfolio-wrapper:focus {
    -webkit-transform: translate(20px, 0);
    -ms-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.portfolio-wrapper img {
    display: block;
    width: 100%;
}

.portfolio-wrapper-nogutter img {
    display: block;
    width: 100%;
}

.portfolio-content-align-right {
    background-color: rgba(255, 255, 255, 1);
    text-align: right;
    padding: 70px;
    margin-top: 10%;
    z-index: 1;
    right: 45%;
}

.portfolio-content-align-left {
    background-color: rgba(255, 255, 255, 1);
    text-align: left;
    padding: 70px;
    margin-top: 10%;
    z-index: 1;
    left: -5%;
}

.portfolio-content-align-right h5,
.portfolio-content-align-left h5 {
    font-size: 24px;
    text-transform: none;
}

.portfolio-content-align-left {
    background-color: rgba(255, 255, 255, 1);
    text-align: left;
    padding: 70px;
    margin-top: 10%;
    z-index: 1;
    left: -5%;
}

@media (max-width: 992px) {
    .portfolio-content-align-right {
        background: transparent;
        padding-top: 10px;
        right: 0;
    }

    .portfolio-content-align-left {
        background: transparent;
        padding-top: 10px;
        left: 0;
    }
}

.text-rotate {
    color: #dedede;
    font-size: 40px;
    margin-top: 85px;
    width: 300px;
    letter-spacing: 3px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    opacity: 0.5;
}

.vertical-text-left {
    color: #dedede;
    font-size: 42px;
    letter-spacing: 3px;  
    float: left;
    -moz-transform: rotate(270deg);
    -moz-rotation-point: 0 0;
    -webkit-transform: rotate(270deg);
    -webkit-rotation-point: 0 0;
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    margin: -48px 44px;
    width: auto;
    height: auto;
}

.vertical-text-right {
    color: #425cbb;
    font-size: 42px;
    letter-spacing: 3px;  
    float: right;
    -moz-transform: rotate(270deg);
    -moz-rotation-point: 0 0;
    -webkit-transform: rotate(270deg);
    -webkit-rotation-point: 0 0;
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    margin: -48px 48px;
    width: auto;
    height: auto;
}

@media screen and (max-width: 768px) {
    .vertical-text-right {
        font-size: 24px;
    }
}

/* Posts Page */
.post-content h4 {
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    margin-top: 0;
    margin-left: 20px;
    border-bottom: 1px dotted #777;
}

/* Google Maps */
.map-section {
    position: relative;
}

#googleMap {
    right: 25px;
    bottom: 25px;
    min-height: 500px;
}

.map-box {
    background: #f4e0ec none repeat scroll 0 0;
    position: relative;
}

.map-box:before {
    display: inline-block;
    position: relative;
}

.map-box-blue {
    background: #425cbb none repeat scroll 0 0;
    position: relative;
}

.map-box-blue:before {
    display: inline-block;
    position: relative;
}

.map-box-gray {
    background: #7f7f7f none repeat scroll 0 0;
    position: relative;
}

.map-box-gray:before {
    display: inline-block;
    position: relative;
}

/* CV Resume Page */
.header-resume h1 {
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 50px;
}

.header-resume span {
    color: blue !important;
    font-family: 'Montserrat',sans-serif;
    font-style: normal !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: none;
}

.header-resume h2 {
    color: #9c9c9c;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 80px;
}

.header-resume p {
    color: #373737;
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
}

.services-resume {
    background: #425cbb;
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.services-resume i {
    color: #fff;
    font-size: 42px;
}

.services-resume p {
    color: #fff;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.services-resume h5 {
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: none;
}

.services-resume h6 {
    color: #fff;
}

.about-resume {
    background: #e3f4e9;
    width: 100%;
    padding: 200px 0 170px;
    position: relative;
    z-index: 0;
}

.about-resume h5 {
    font-size: 24px;
    text-transform: none;
}

.about-resume h6 span {
    color: #abadac;
    font-size: 18px;
    margin-left: 10px;
}

.video-resume {
    background: #425cbb;
    padding: 80px 0;
}

.video-resume h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;
}

.video-resume span {
    color: #fff;
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.education-resume {
    padding: 150px 0 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.experience-resume {
    padding: 150px 0 50px;
}

/* Skills Box */
.skills-wrapper img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
}

figure.skills {
    color: #fff;
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

figure.skills * {
    -webkit-box-sizing: padding-box;
    box-sizing: padding-box;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

figure.skills img {
    max-width: 100%;
    vertical-align: top;
}

figure.skills figcaption {
    top: 45%;
    left: 20px;
    right: 20px;
    position: absolute;
    opacity: 0;
    z-index: 1;
}

figure.skills:after {
    background-color: #fff;
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 30px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
}

figure.skills a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

figure.skills:hover figcaption {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}

figure.skills:hover:after, figure.skills.hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
}

.skills-box img {
    background: #fff;
    padding: 10px;
}

.skills-box strong {
    background: yellow;
    color: #212121;
    padding: 4px;
}

.skills-content-align-left {
    background-color: rgba(255, 255, 255, 1);
    text-align: left;
    padding: 60px 40px 60px;
    margin-top: 10%;
    z-index: 1;
    left: -5%;
}

@media (max-width: 768px) {
    .skills-content-align-left {
        background: transparent;
        padding-top: 10px;
        left: 0;
    }
}

/* Animation Page */
.title-left h5 {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 32px;
}

.title-left h6 {
    color: #373737;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 26px;
    margin-left: 20px;
}

.title-left h6 span {
    color: #696969;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 26px;
}

.title-left span {
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.title-left-wrapper {
    padding: 40px;
}

.anim-triangle {
    right: 30%;
    width: 100%;
    height: auto;
    margin-top: 5%;
    position: absolute !important;
}

.anim-shape {
    left: 34%;
    width: 100%;
    height: auto;
    margin-top: 12%;
    position: absolute !important;
}

.anim-square {
    right: 18%;
    width: 100%;
    height: auto;
    margin-top: 37%;
    position: absolute !important;
}

.anim-triangle-2 {
    left: 18%;
    width: 100%;
    height: auto;
    margin-top: 37%;
    position: absolute !important;
}

@media (max-width: 1400px) {
    .anim-triangle, .anim-shape {
        margin-top: 15%;
    }

    .anim-square, .anim-triangle-2 {
        margin-top: 40%;
    }
}

@media(max-width: 992px) {
    .anim-square, .anim-triangle-2 {
        margin-top: 60%;
    }
}

@media (max-width: 480px) {
    .anim-triangle, .anim-shape, .anim-square, .anim-triangle-2 {
        display: none !important;
    }
}

.anim-spin {
    -webkit-animation-name: spin;
    -moz-animation-name: spin;
    -ms-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 9000ms;
    -moz-animation-duration: 9000ms;
    -ms-animation-duration: 9000ms;
    animation-duration: 9000ms;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}

/* Services Page */
.services-section-page-bg {
    background: url("../img/bg-services.jpg") no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 180px 300px 50px 100px;
    position: relative;
}

@media (max-width: 1200px) {
    .services-section-page-bg {
        padding: 100px 20px;
    }
}

@media (max-width: 480px) {
    .services-section-page-bg h2, .services-section-page-bg .section-subtitle {
        text-align: center !important;
    }
}

/* Contact Page */
.information-section {
    background: #fff;
    padding: 200px 0 0;
    position: relative;
}

/*==========================================================
    19.  FOOTER
==========================================================*/

.footer-section {
    background: #212121;
    color: #abadac;
    font-size: 15px;
    padding: 30px 0 10px;
    position: relative;
}

.footer-section i {
    font-size: 14px;
    padding: 0 10px;
    margin: 7px;
}

.footer-section-alt {
    background: url("../img/bg-footer.jpg") no-repeat top center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
    width: 100%;
    height: auto;
    padding: 40px 0 20px;
    position: relative;
}

.footer-section-alt h4 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 0.750em;
    text-transform: none;
}

.footer-links a {
    font-size: 15px;
    letter-spacing: 1px;
    padding-right: 20px;
}

.footer-networks li {
    border-left: 1px solid #3c3c3c;
}

.footer-networks li:first-child {
    border-left: none;
}

.footer-networks li a {
    display: block;
    line-height: 17px;
}

footer a {
    color: #abadac;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease-in-out 0s;
}

footer a:hover {
    color: #fff;
}

.footer-section-alt a {
    color: #696969;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease-in-out 0s;
}

.footer-section-alt a:hover {
    color: #000;
}

/* Back to Top Button */
.backtop {
    background-color: transparent;
    width: 80px;
    height: 80px;
    bottom: 5px;
    right: 20px;
    display: none;
    position: fixed;
    text-decoration: none;
    z-index: 1000;
}

.backtop:hover {
    opacity:1;
}

.backtop-border-line {
    color: #777;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-transform: uppercase;
    display: none;
    position: fixed;
    text-decoration: none;
    z-index: 9998;
}

@font-face {
    font-family: 'glutoniana-sin';
    src:  url('icons/fonts/glutoniana-sin.eot?nvo1ha');
    src:  url('icons/fonts/glutoniana-sin.eot?nvo1ha#iefix') format('embedded-opentype'),
        url('icons/fonts/glutoniana-sin.ttf?nvo1ha') format('truetype'),
        url('icons/fonts/glutoniana-sin.woff?nvo1ha') format('woff'),
        url('icons/fonts/glutoniana-sin.svg?nvo1ha#glutoniana-sin') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="celi-"], [class*=" celi-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'glutoniana-sin' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.celi-curso:before {
    content: "\e900";
}
.celi-restaurante:before {
    content: "\e901";
}
.celi-charla:before {
    content: "\e902";
}
.celi-dias:before {
    content: "\e903";
}

/*==========================================================
    POLITICA DE COOKIES
==========================================================*/
/* Página política de cookies */
#politicas .welcome-section h3{letter-spacing: 6px !important;}
#politicas .welcome-section p{padding: 0px 20px 0px;}

/* Mensaje política de cookies*/
.cookiesms{	
    width:100%;
    height:auto;
    margin:0 auto;
    padding: 10px 30px;
    font-size: 1em;
    clear:both;
    font-weight: strong;
    color: #333;
    bottom:0px;
    position:fixed;
    left: 0px;
    background-color: #FFF;
    opacity:0.9;
    filter:alpha(opacity=70); /* For IE8 and earlier */
    transition: bottom 1s;
    -webkit-transition:bottom 1s; /* Safari */
    -webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
    -moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
    box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
    z-index:999999999;
}
.cookiesms p{
    padding: 0px;
    padding-right: 100px;
}
.cookiesms:hover{
    bottom:0px;
}
.cookiesms button{
    position: absolute;
    right: 15px;
    bottom: 30px;
    color: #FFF;
    float: right;
    border: 1px solid;
    background-color: #33af60;
    padding: 4px 15px;
    text-transform: uppercase;
    margin-top: -4px;
}

/* Fin del CSS para cookies */


