﻿@charset "UTF-8";
/* =============================================================================
    o   FONTS
============================================================================= */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin-ext");
/* =============================================================================
    o   COLORS
============================================================================= */
/* =============================================================================
    o   MIXINS
============================================================================= */
/*!
* animate.css -http://daneden.me/animate
* Version - 3.5.2
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2017 Daniel Eden
*/
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

    .animated.infinite {
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        animation-duration: 2s;
    }

    .animated.flipOutX,
    .animated.flipOutY,
    .animated.bounceIn,
    .animated.bounceOut {
        animation-duration: .75s;
    }

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {
    from, to {
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    animation-name: shake;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        transform: translateX(0);
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
    from {
        transform: none;
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        transform: none;
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {
    from, 11.1%, to {
        transform: none;
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }

    88.8% {
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

.jello {
    animation-name: jello;
    transform-origin: center;
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }

    75% {
        transform: translate3d(0, -10px, 0);
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        transform: none;
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }

    75% {
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        transform: translate3d(5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        transform: translate3d(10px, 0, 0);
    }

    90% {
        transform: translate3d(-5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }

    75% {
        transform: translate3d(0, 10px, 0);
    }

    90% {
        transform: translate3d(0, -5px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        animation-timing-function: ease-in;
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@keyframes flipOutX {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1;
    }

    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }

    50% {
        transform: rotate(-10deg);
    }

    70% {
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackInTheBox {
    animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.rollIn {
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    animation-name: zoomOut;
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center;
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center;
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, fieldset, form, label,
legend, caption, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    vertical-align: baseline;
    font-size: 100%;
    font: inherit;
    padding: 0;
    border: 0;
    margin: 0;
}

    html:focus, body:focus, div:focus, span:focus, applet:focus, object:focus, iframe:focus,
    h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus, p:focus, blockquote:focus, pre:focus,
    a:focus, abbr:focus, acronym:focus, address:focus, big:focus, cite:focus, code:focus,
    del:focus, dfn:focus, em:focus, img:focus, ins:focus, kbd:focus, q:focus, s:focus, samp:focus,
    small:focus, strike:focus, strong:focus, sub:focus, sup:focus, tt:focus, var:focus,
    b:focus, u:focus, i:focus, dl:focus, dt:focus, dd:focus, ol:focus, fieldset:focus, form:focus, label:focus,
    legend:focus, caption:focus, article:focus, aside:focus, canvas:focus, details:focus,
    embed:focus, figure:focus, figcaption:focus, footer:focus, header:focus, hgroup:focus,
    menu:focus, nav:focus, output:focus, ruby:focus, section:focus, summary:focus,
    time:focus, mark:focus, audio:focus, video:focus {
        outline: none;
    }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: inline-block;
    width: 100%;
}

html, body {
    height: 100%;
}

*,
*::before,
*::after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix {
    display: inline-block;
    width: 100%;
    height: 75px;
    float: left;
}

body {
    background-color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-size: 12px;
    color: #787878;
    min-height: 100%;
    display: table;
    height: 100%;
    width: 100%;
}

    body.no-scroll {
        overflow: hidden;
    }

@media only screen and (max-height: 820px) {
    body.no-scroll {
        overflow: auto;
    }
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
    color: #0061af;
}

    a:hover {
        text-decoration: underline;
    }

button {
    transition: all 0.5s ease;
}

.container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    width: 90%;
}

.center-align {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 50px;
}

.bg-overlay {
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.5s ease;
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

    .bg-overlay.menu-overlay {
        top: 162px;
    }

    .bg-overlay.scrolled {
        position: fixed;
        top: 0;
    }

    .bg-overlay.cookie-overlay {
        top: 246px;
    }

.content h2 {
    font-family: Alpha Bank Sans, sans-serif;
    display: inline-block;
    line-height: 35px;
    font-size: 30px;
    margin: 15px 0;
    color: #0061af;
    width: 100%;
}

.content h3 {
    font-family: Alpha Bank Sans, sans-serif;
    display: inline-block;
    line-height: 30px;
    font-size: 25px;
    margin: 10px 0;
    color: #0061af;
    width: 100%;
}

.content h4 {
    font-family: Alpha Bank Sans, sans-serif;
    display: inline-block;
    font-size: 21px;
    color: #0061af;
    width: 100%;
}

.content p {
    color: #384050;
    font-size: 14px;
}

    .content p b, .content p strong {
        font-weight: bold;
    }

    .content p i, .content p em {
        font-style: italic;
    }

        .content p i.fa, .content p em.fa {
            font-style: normal;
        }

    .content p u {
        text-decoration: underline;
    }

.content b, .content strong {
    font-weight: bold;
}

.content ul, .content ol {
    display: inline-block;
    font-size: 14px;
    margin: 15px 0;
    color: #384050;
}

    .content ul b, .content ul strong, .content ol b, .content ol strong {
        font-weight: bold;
    }

    .content ul i, .content ul em, .content ol i, .content ol em {
        font-style: italic;
    }

        .content ul i.fa, .content ul em.fa, .content ol i.fa, .content ol em.fa {
            font-style: normal;
        }

    .content ul u, .content ol u {
        text-decoration: underline;
    }

    .content ul p, .content ol p {
        color: #384050;
    }

        .content ul p a, .content ol p a {
            text-decoration: underline;
        }

            .content ul p a:hover, .content ol p a:hover {
                text-decoration: none;
                color: #f99e49;
            }

        .content ul p img, .content ol p img {
            max-width: 100% !important;
        }

.content table {
    border: none;
    font-size: 14px;
}

    .content table tr {
        border: none;
    }

        .content table tr:nth-child(even) {
            background: #ebeced;
        }

        .content table tr td {
            border: none;
            padding: 10px 5px;
        }

/* =============================================================================
    o   DISCLAIMER
============================================================================= */
.cookie-hide {
    display: none !important;
}

.cookie_disclaimer {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideInDown;
    display: inline-block;
    background: #f4f4f4;
    padding: 15px 0;
    width: 100%;
}

@media only screen and (max-width: 820px) {
    .cookie_disclaimer {
        padding-bottom: 15px;
    }

        .cookie_disclaimer .container {
            text-align: center;
        }
}

@media only screen and (max-width: 780px) {
    .cookie_disclaimer {
        margin-top: 70px;
    }
}

.cookie_disclaimer p {
    display: inline-block;
    width: calc(100% - 250px);
    float: left;
}

@media only screen and (max-width: 820px) {
    .cookie_disclaimer p {
        text-align: left;
        width: 100%;
    }
}

@media only screen and (max-width: 360px) {
    .cookie_disclaimer p {
        font-size: 14px;
    }
}

.cookie_disclaimer a.accept_terms {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 15px;
    background: #0061af;
    float: right;
    color: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .cookie_disclaimer a.accept_terms:hover {
        text-decoration: none;
        background: #005396;
    }

@media only screen and (max-width: 820px) {
    .cookie_disclaimer a.accept_terms {
        margin-top: 15px;
        float: none;
    }
}

@media only screen and (max-width: 360px) {
    .cookie_disclaimer a.accept_terms {
        padding: 15px;
        width: 100%;
    }
}

@media only screen and (max-width: 810px) {
    .cookie_disclaimer {
        margin-top: 70px;
    }
}

/* =============================================================================
    o   CALCULATOR RATA | HOMEPAGE
============================================================================= */
.calculator_rata {
    display: inline-block;
    padding: 50px 0 75px;
    background: #f5f5f6;
    width: 100%;
}

    .calculator_rata .container {
        max-width: 770px;
    }

        .calculator_rata .container h3 {
            display: inline-block;
            font-family: Alpha Bank Sans, sans-serif;
            font-size: 24px;
            color: #000;
        }

        .calculator_rata .container p {
            display: inline-block;
            text-align: left;
            font-size: 16px;
            color: #000;
            width: 100%;
        }

        .calculator_rata .container .calc-form {
            display: inline-block;
            margin-top: 50px;
            width: calc(100% + 30px);
            margin-left: -15px;
        }

            .calculator_rata .container .calc-form label {
                display: inline-block;
                margin-bottom: 25px;
                text-align: center;
                padding: 0 15px;
                float: left;
                width: 50%;
            }

                .calculator_rata .container .calc-form label:nth-child(odd) {
                    clear: both;
                }

                .calculator_rata .container .calc-form label input, .calculator_rata .container .calc-form label select {
                    display: inline-block;
                    background: none;
                    padding: 10px 0;
                    font-size: 16px;
                    outline: none;
                    border: none;
                    width: 100%;
                    border-bottom: 1px solid #ababac;
                }

                    .calculator_rata .container .calc-form label input:focus, .calculator_rata .container .calc-form label select:focus {
                        border-color: #0061af;
                    }

                .calculator_rata .container .calc-form label input {
                    padding: 11px 0;
                }

                .calculator_rata .container .calc-form label span.error {
                    display: none;
                    text-align: left;
                    margin-top: 10px;
                    font-size: 13px;
                    width: 100%;
                    color: red;
                }

                .calculator_rata .container .calc-form label.error input, .calculator_rata .container .calc-form label.error select {
                    border-color: red;
                }

                .calculator_rata .container .calc-form label.error span.error {
                    display: inline-block;
                }

            .calculator_rata .container .calc-form button {
                display: inline-block;
                padding: 15px 25px;
                background: #0061af;
                margin-left: 15px;
                margin-top: 25px;
                cursor: pointer;
                font-size: 16px;
                outline: none;
                border: none;
                color: #fff;
                clear: both;
                float: left;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .calculator_rata .container .calc-form button:hover {
                    background: #003763;
                }

            .calculator_rata .container .calc-form b {
                display: inline-block;
                margin: 15px 0 25px 15px;
                font-weight: bold;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 710px) {
    .calculator_rata .container .calc-form {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

        .calculator_rata .container .calc-form label {
            padding: 0;
            width: 100%;
        }

        .calculator_rata .container .calc-form button, .calculator_rata .container .calc-form b {
            margin-left: 0;
        }
}

@media only screen and (max-width: 480px) {
    .calculator_rata {
        padding: 25px 0 35px;
    }

        .calculator_rata .container .calc-form button {
            text-align: center;
            padding: 25px 0;
            width: 100%;
        }
}
/* =============================================================================
    o   ULTIMELE STIRI
============================================================================= */
.latest_news {
    display: inline-block;
    padding: 50px 0;
    width: 100%;
}

    .latest_news ul {
        display: inline-block;
        border-top: 1px solid #d6d6d6;
        width: 100%;
        padding: 0;
        margin: 0;
        margin-top: 25px;
    }

        .latest_news ul li {
            border-bottom: 1px solid #d6d6d6;
            border-right: 1px solid #d6d6d6;
            display: inline-block;
            position: relative;
            padding: 25px;
            width: 33.3%;
            float: left;
            min-height: 420px;
        }

            .latest_news ul li:first-child {
                padding-left: 0;
            }

            .latest_news ul li:nth-child(3n) {
                border-right: none;
                padding-right: 0;
            }

            .latest_news ul li:nth-child(3n+1) {
                padding-left: 0;
                clear: both;
            }

            .latest_news ul li span {
                display: inline-block;
                text-transform: capitalize;
                font-style: italic;
                color: #000;
                width: 100%;
            }

            .latest_news ul li h4 {
                display: inline-block;
                font-family: Alpha Bank Sans, sans-serif;
                margin-right: 50px;
                line-height: 26px;
                text-align: left;
                font-size: 24px;
                margin: 15px 0;
                float: left;
                color: #0061af;
            }

            .latest_news ul li p {
                display: inline-block;
                text-align: left;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

            .latest_news ul li:hover a.read-more {
                text-decoration: none;
                background: #0061af;
                color: #fff;
            }

                .latest_news ul li:hover a.read-more:hover {
                    background: #00457c;
                }

            .latest_news ul li a.read-more {
                display: inline-block;
                border: 1px solid #0061af;
                padding: 10px 15px;
                margin-top: 25px;
                font-size: 16px;
                color: #0061af;
                float: left;
                clear: both;
                bottom: 25px;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1290px) {
    .latest_news ul li {
        min-height: 450px;
    }
}

@media only screen and (max-width: 1190px) {
    .latest_news ul li {
        min-height: 500px;
    }
}

@media only screen and (max-width: 1090px) {
    .latest_news ul li {
        min-height: 550px;
    }
}

@media only screen and (max-width: 960px) {
    .latest_news ul li {
        width: 100% !important;
        border-right: none !important;
        border-left: none !important;
        padding: 25px 0 !important;
        min-height: 0;
    }
}

@media only screen and (max-width: 480px) {
    .latest_news ul li a.read-more {
        text-align: center;
        padding: 15px 0;
        width: 100%;
    }
}
/* =============================================================================
    o   SECTION TITLE
============================================================================= */
.section_title {
    display: inline-block;
    margin-bottom: 15px;
    text-align: left;
    width: 100%;
}

    .section_title h3 {
        display: inline-block;
        font-family: Alpha Bank Sans, sans-serif;
        margin-right: 50px;
        line-height: 26px;
        font-size: 24px;
        float: left;
        color: #000;
    }

    .section_title h4 {
        display: inline-block;
        text-transform: uppercase;
        font-family: Alpha Bank Sans, sans-serif;
        font-weight: bold;
        line-height: 16px;
        font-size: 14px;
        color: #0061af;
        width: 100%;
        float: left;
    }

    .section_title a {
        display: inline-block;
        padding-right: 40px;
        position: relative;
        font-size: 16px;
        margin-top: 3px;
        float: left;
        color: #0061af;
    }

        .section_title a:hover {
            text-decoration: none;
            color: #f99e49;
        }

        .section_title a:after {
            background-image: url(../images/ui/arrow.png);
            background-repeat: no-repeat;
            background-size: 100% auto;
            display: inline-block;
            position: absolute;
            height: 24px;
            width: 24px;
            content: '';
            top: 0px;
            right: 0;
        }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   PROIECTE SOCIALE
============================================================================= */
.proiecte_sociale {
    display: inline-block;
    margin: 50px 0;
    width: 100%;
}

    .proiecte_sociale .container ul {
        display: inline-block;
        width: calc(100% + 30px);
        padding: 0;
        margin: 0;
        margin-left: -15px;
    }

        .proiecte_sociale .container ul li {
            display: inline-block;
            padding: 0 15px;
            float: left;
            width: 50%;
        }

            .proiecte_sociale .container ul li:hover a img {
                transform: scale(1.1);
            }

            .proiecte_sociale .container ul li a {
                display: inline-block;
                position: relative;
                overflow: hidden;
                width: 100%;
            }

                .proiecte_sociale .container ul li a img {
                    transition: all 0.5s ease;
                    display: inline-block;
                    float: left;
                    width: 100%;
                }

                .proiecte_sociale .container ul li a span {
                    background: rgba(0, 0, 0, 0.4);
                    transition: all 0.5s ease;
                    display: inline-block;
                    position: absolute;
                    z-index: 1;
                    bottom: 0;
                    right: 0;
                    left: 0;
                    top: 0;
                }

                    .proiecte_sociale .container ul li a span h4 {
                        display: inline-block;
                        font-family: Alpha Bank Sans, sans-serif;
                        margin-right: 50px;
                        position: absolute;
                        line-height: 26px;
                        font-size: 24px;
                        max-width: 300px;
                        width: 100%;
                        float: left;
                        color: #fff;
                        left: 25px;
                        bottom: 95px;
                    }

                    .proiecte_sociale .container ul li a span b {
                        transition: all 0.5s ease;
                        display: inline-block;
                        padding: 10px 15px;
                        margin-top: 25px;
                        background: #fff;
                        font-size: 16px;
                        color: #0061af;
                        position: absolute;
                        bottom: 15px;
                        left: 25px;
                        float: left;
                        clear: both;
                        bottom: 25px;
                        border-radius: 3px;
                        -moz-border-radius: 3px;
                        -webkit-border-radius: 3px;
                    }

                .proiecte_sociale .container ul li a:hover span b {
                    background: #0061af;
                    color: #fff;
                }

                    .proiecte_sociale .container ul li a:hover span b:hover {
                        background: #00457c;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 960px) {
    .proiecte_sociale .container ul {
        width: 100%;
        margin: 0;
    }

        .proiecte_sociale .container ul li {
            margin-bottom: 15px;
            width: 100%;
            padding: 0;
        }
}

@media only screen and (max-width: 420px) {
    .proiecte_sociale .container ul li a img {
        padding-top: 50px;
    }

    .proiecte_sociale .container ul li a span h4 {
        font-size: 21px;
        line-height: 23px;
        width: 200px;
        text-align: left;
    }
}
/* =============================================================================
    o   PRODUSE RECOMANDATE
============================================================================= */
.produse_recomandate {
    display: inline-block;
    padding: 50px 0 0;
    width: 100%;
}

    .produse_recomandate ul {
        display: inline-block;
        width: calc(100% + 30px);
        margin-left: -15px;
        padding: 0;
    }

        .produse_recomandate ul li {
            transition: all 0.5s ease;
            border: 1px solid #d9d9da;
            display: inline-block;
            background: #f5f5f6;
            margin: 0 15px;
            padding: 25px;
            float: left;
            width: calc(50% - 30px);
            margin-bottom: 30px;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

            .produse_recomandate ul li:nth-child(odd) {
                clear: both;
            }

            .produse_recomandate ul li:hover {
                transform: scale(1.02);
            }

            .produse_recomandate ul li a {
                display: inline-block;
                float: left;
                width: 100%;
            }

                .produse_recomandate ul li a img {
                    display: inline-block;
                    min-height: 177px;
                    width: 177px;
                    float: left;
                }

                .produse_recomandate ul li a .details {
                    display: inline-block;
                    width: calc(100% - 210px);
                    position: relative;
                    min-height: 177px;
                    float: right;
                }

                    .produse_recomandate ul li a .details h4 {
                        display: inline-block;
                        font-family: Alpha Bank Sans, sans-serif;
                        line-height: 24px;
                        font-size: 21px;
                        margin: 0;
                        width: 100%;
                        float: left;
                        color: #f99e49;
                    }

                    .produse_recomandate ul li a .details p {
                        display: inline-block;
                        text-align: left;
                        line-height: 18px;
                        font-size: 14px;
                        color: #000;
                        width: 100%;
                    }

                    .produse_recomandate ul li a .details ul {
                        display: inline-block;
                        width: 100%;
                        margin: 0;
                        margin-top: 15px;
                    }

                        .produse_recomandate ul li a .details ul li {
                            width: auto;
                            border: none;
                            padding: 0;
                            margin: 0;
                            font-family: Alpha Bank Sans, sans-serif;
                            position: relative;
                            margin-right: 15px;
                            font-size: 14px;
                            color: #384050;
                        }

                            .produse_recomandate ul li a .details ul li:before {
                                display: inline-block;
                                background: url(../images/ui/li-arrow.png) no-repeat;
                                margin-right: 5px;
                                width: 13px;
                                height: 10px;
                                content: '';
                            }

                    .produse_recomandate ul li a .details .bottom-details {
                        display: inline-block;
                        width: 100%;
                        bottom: 0;
                        left: 0;
                    }

                        .produse_recomandate ul li a .details .bottom-details b {
                            font-size: 16px;
                            color: #0061af;
                        }

                            .produse_recomandate ul li a .details .bottom-details b:after {
                                background-image: url(../images/ui/arrow.png);
                                background-repeat: no-repeat;
                                background-size: 100% auto;
                                display: inline-block;
                                position: relative;
                                margin-left: 10px;
                                height: 24px;
                                width: 24px;
                                content: '';
                                top: 7px;
                                right: 0;
                            }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1110px) {
    .produse_recomandate ul li a img {
        min-height: 125px;
        height: 125px;
        width: 125px;
    }

    .produse_recomandate ul li a .details {
        height: 200px;
        width: calc(100% - 150px);
    }

        .produse_recomandate ul li a .details p {
            font-size: 14px;
            line-height: 18px;
        }
}

@media only screen and (max-width: 1010px) {
    .produse_recomandate ul li img {
        height: auto !important;
        width: 100% !important;
        min-height: auto;
    }

    .produse_recomandate ul li a .details {
        padding-top: 15px;
        padding-bottom: 75px;
        height: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 760px) {
    .produse_recomandate ul li a .details {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 640px) {
    .produse_recomandate ul {
        width: 100%;
        margin: 0;
    }

        .produse_recomandate ul li {
            width: 100%;
            margin: 0;
            margin-bottom: 25px;
        }

            .produse_recomandate ul li a img {
                width: 177px !important;
            }

            .produse_recomandate ul li a .details {
                padding-top: 0;
                padding-bottom: 0px;
                height: auto;
                width: calc(100% - 210px);
            }

                .produse_recomandate ul li a .details .bottom-details {
                    position: relative;
                    bottom: 0;
                    margin-top: 15px;
                }
}

@media only screen and (max-width: 480px) {
    .produse_recomandate ul li {
        width: 100%;
        margin: 0;
        margin-bottom: 25px;
    }

        .produse_recomandate ul li:hover {
            transform: scale(1);
        }

        .produse_recomandate ul li a img {
            width: 100% !important;
        }

        .produse_recomandate ul li a .details {
            padding-top: 25px;
            height: auto;
            width: 100%;
        }
}
/* =============================================================================
    o   UNITATI & ATM-uri
============================================================================= */
.unitati_atm {
    display: inline-block;
    padding: 50px 0 0;
    width: 100%;
}

    .unitati_atm .container #map {
        display: inline-block;
        background-color: grey;
        height: 500px;
        width: 100%;
    }

        .unitati_atm .container #map .infowindow {
            display: inline-block;
            text-align: left;
            font-size: 16px;
            width: 250px;
        }

            .unitati_atm .container #map .infowindow p {
                margin: 10px 0;
                color: #000;
            }

                .unitati_atm .container #map .infowindow p span {
                    font-weight: bold;
                }

                .unitati_atm .container #map .infowindow p a {
                    display: inline-block;
                    font-weight: bold;
                    color: #f99e49;
                }

                    .unitati_atm .container #map .infowindow p a:hover {
                        text-decoration: none;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   LINKURI FAVORITE
============================================================================= */
.linkuri_favorite {
    display: inline-block;
    width: 100%;
}

    .linkuri_favorite h4 {
        display: inline-block;
        font-family: Alpha Bank Sans, sans-serif;
        line-height: 20px;
        font-size: 18px;
        color: #0061af;
        width: 100%;
    }

        .linkuri_favorite h4 a {
            color: inherit;
        }

        .linkuri_favorite h4:after {
            display: block;
            content: '\f178';
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
            font-size: 12px;
            color: #0061af;
        }

    .linkuri_favorite ul {
        display: inline-block;
        text-align: center;
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
        padding-bottom: 25px;
        border-bottom: 1px solid #d7d7d7;
    }

        .linkuri_favorite ul li {
            display: inline-block;
            width: calc(100% / 6.1);
            text-align: center;
            float: left;
        }

            .linkuri_favorite ul li a {
                display: inline-block;
                padding-top: 25px;
                width: 100%;
            }

                .linkuri_favorite ul li a span.icon {
                    display: inline-block;
                    height: 50px;
                    width: 100%;
                }

                .linkuri_favorite ul li a .linkuri_h4 {
                    display: inline-block;
                    font-family: Alpha Bank Sans, sans-serif;
                    line-height: 20px;
                    font-size: 18px;
                    color: #0061af;
                    width: 100%;
                }

                    .linkuri_favorite ul li a .linkuri_h4:after {
                        display: block;
                        content: '\f178';
                        font-family: FontAwesome;
                        font-style: normal;
                        font-weight: normal;
                        text-decoration: inherit;
                        font-size: 12px;
                        color: #0061af;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 670px) {
    .linkuri_favorite ul li {
        width: 33.3%;
    }

        .linkuri_favorite ul li:nth-child(4n+0) {
            clear: both;
        }
}

@media only screen and (max-width: 460px) {
    .linkuri_favorite ul li {
        width: 50%;
    }

        .linkuri_favorite ul li:nth-child(odd) {
            clear: both;
        }

        .linkuri_favorite ul li:nth-child(4n+0) {
            clear: none;
        }
}
/* =============================================================================
    o   SLIDER
============================================================================= */
.slider {
    display: inline-block;
    overflow: hidden;
    margin: 25px 0 0;
    width: 100%;
}

    .slider .container .wrapper {
        display: inline-block;
        position: relative;
        width: 100%;
    }

        .slider .container .wrapper ul.bxslider {
            margin: 0;
        }

            .slider .container .wrapper ul.bxslider li img.mobile {
                display: none;
            }

            .slider .container .wrapper ul.bxslider li .details {
                display: inline-block;
                position: absolute;
                max-width: 500px;
                bottom: 100px;
                width: 90%;
                left: 55px;
            }

                .slider .container .wrapper ul.bxslider li .details h2 {
                    font-family: Alpha Bank Sans, sans-serif;
                    display: inline-block;
                    font-weight: 300;
                    font-size: 40px;
                    width: 100%;
                    color: #fff;
                }

                .slider .container .wrapper ul.bxslider li .details p {
                    font-family: Alpha Bank Sans, sans-serif;
                    display: inline-block;
                    font-weight: 300;
                    line-height: 28px;
                    font-size: 24px;
                    width: 100%;
                    color: #fff;
                }

                .slider .container .wrapper ul.bxslider li .details a {
                    display: inline-block;
                    background: #f99e49;
                    padding: 10px 15px;
                    margin-top: 25px;
                    font-size: 16px;
                    color: #fff;
                    float: left;
                    clear: both;
                    bottom: 25px;
                    border-radius: 3px;
                    -moz-border-radius: 3px;
                    -webkit-border-radius: 3px;
                }

                    .slider .container .wrapper ul.bxslider li .details a:hover {
                        text-decoration: none;
                        background: #f78418;
                    }

        .slider .container .wrapper .quick-links {
            background: rgba(0, 0, 0, 0.5);
            display: inline-block;
            position: absolute;
            padding: 25px 35px;
            width: 400px;
            height: 100%;
            bottom: 0;
            right: 0;
            top: 0;
        }

            .slider .container .wrapper .quick-links ul.primary {
                display: inline-block;
                list-style: none;
                background: #fff;
                padding: 25px;
                width: 100%;
                margin: 0;
                margin-top: 15px;
            }

                .slider .container .wrapper .quick-links ul.primary li {
                    display: inline-block;
                    text-align: center;
                    font-size: 14px;
                    width: 100%;
                    color: #fff;
                }

                    .slider .container .wrapper .quick-links ul.primary li a {
                        display: inline-block;
                        padding: 10px 0;
                        width: 100%;
                        color: #fff;
                        border-radius: 3px;
                        -moz-border-radius: 3px;
                        -webkit-border-radius: 3px;
                    }

                        .slider .container .wrapper .quick-links ul.primary li a i {
                            margin-right: 5px;
                        }

                        .slider .container .wrapper .quick-links ul.primary li a:hover {
                            text-decoration: none;
                        }

                    .slider .container .wrapper .quick-links ul.primary li:first-child {
                        margin-bottom: 10px;
                    }

                        .slider .container .wrapper .quick-links ul.primary li:first-child a {
                            background: #539e1a;
                        }

                            .slider .container .wrapper .quick-links ul.primary li:first-child a:hover {
                                background: #3c7213;
                            }

                    .slider .container .wrapper .quick-links ul.primary li:last-child a {
                        background: #0061af;
                    }

                        .slider .container .wrapper .quick-links ul.primary li:last-child a:hover {
                            background: #00457c;
                        }

            .slider .container .wrapper .quick-links ul.secondary {
                display: inline-block;
                list-style: none;
                width: 100%;
                padding: 0;
                margin: 0;
                margin-top: 25px;
            }

                .slider .container .wrapper .quick-links ul.secondary li {
                    transition: all 0.5s ease;
                    display: inline-block;
                    background: #384050;
                    padding: 0 25px;
                    width: 100%;
                }

                    .slider .container .wrapper .quick-links ul.secondary li a {
                        display: inline-block;
                        border-bottom: 1px solid #2d3340;
                        padding: 15px 0;
                        font-size: 14px;
                        width: 100%;
                        color: #fff;
                    }

                        .slider .container .wrapper .quick-links ul.secondary li a:hover {
                            text-decoration: none;
                        }

                        .slider .container .wrapper .quick-links ul.secondary li a:after {
                            display: inline-block;
                            position: relative;
                            content: "\f178";
                            font-family: FontAwesome;
                            font-style: normal;
                            font-weight: normal;
                            text-decoration: inherit;
                            font-size: 12px;
                            color: #fff;
                            top: 2px;
                            float: right;
                        }

                    .slider .container .wrapper .quick-links ul.secondary li:last-child a {
                        border: none;
                    }

                    .slider .container .wrapper .quick-links ul.secondary li:hover {
                        background: #2e3441;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1230px) {
    .slider .container .wrapper .quick-links ul.primary {
        margin: 0;
    }
}

@media only screen and (max-width: 1180px) {
    .slider .container .wrapper ul.bxslider li .details {
        max-width: 350px;
    }

    .slider .container .wrapper .quick-links {
        padding: 15px 25px;
    }

        .slider .container .wrapper .quick-links ul.primary {
            padding: 15px;
        }

        .slider .container .wrapper .quick-links ul.secondary {
            margin-top: 15px;
        }

            .slider .container .wrapper .quick-links ul.secondary li a {
                padding: 10px 0;
            }
}

@media only screen and (max-width: 970px) {
    .slider .container .wrapper ul.bxslider li .details {
        max-width: 300px;
    }

        .slider .container .wrapper ul.bxslider li .details h2 {
            margin-bottom: 10px;
            line-height: 28px;
            font-size: 24px;
        }

        .slider .container .wrapper ul.bxslider li .details p {
            line-height: 19px;
            font-size: 16px;
        }

    .slider .container .wrapper .quick-links ul.primary {
        background: none;
        padding: 0;
    }

    .slider .container .wrapper .quick-links ul.secondary {
        margin-top: 15px;
    }

        .slider .container .wrapper .quick-links ul.secondary li a {
            padding: 10px 0;
        }
}

@media only screen and (max-width: 890px) {
    .slider {
        margin-top: 0px;
    }

        .slider .container {
            width: 100%;
        }

            .slider .container .wrapper ul.bxslider li .details {
                max-width: none;
                padding-right: 25px;
            }

                .slider .container .wrapper ul.bxslider li .details h2 {
                    margin-bottom: 10px;
                    line-height: 28px;
                    font-size: 24px;
                }

                .slider .container .wrapper ul.bxslider li .details p {
                    line-height: 19px;
                    font-size: 16px;
                }

            .slider .container .wrapper .quick-links {
                position: relative;
                background: none;
                top: -50px;
                padding: 0;
                bottom: 0;
                right: 0;
                margin: 25px;
                width: calc(100% - 50px);
            }

                .slider .container .wrapper .quick-links ul.primary {
                    background: #fff;
                    padding: 25px;
                }

                    .slider .container .wrapper .quick-links ul.primary li a {
                        padding: 15px 0;
                    }

                .slider .container .wrapper .quick-links ul.secondary {
                    margin-top: 15px;
                }

                    .slider .container .wrapper .quick-links ul.secondary li a {
                        padding: 15px 0;
                    }
}

@media only screen and (max-width: 780px) {
    .slider {
        margin-top: 70px;
    }

        .slider .wrapper .bx-wrapper img {
            min-height: 300px;
        }
}

@media only screen and (max-width: 580px) {
    .slider .wrapper .bx-wrapper img {
        min-height: 350px;
    }

    .slider .wrapper .bx-wrapper ul.bxslider li {
        overflow: hidden;
        background: #000;
    }

        .slider .wrapper .bx-wrapper ul.bxslider li img {
            display: none;
        }

            .slider .wrapper .bx-wrapper ul.bxslider li img.mobile {
                display: inline-block;
                opacity: 0.5;
                width: 100%;
            }

        .slider .wrapper .bx-wrapper ul.bxslider li .details {
            padding-right: 0;
            width: 90%;
            right: 5%;
            left: 5%;
        }

            .slider .wrapper .bx-wrapper ul.bxslider li .details h2 {
                font-size: 32px;
                line-height: 36px;
            }

            .slider .wrapper .bx-wrapper ul.bxslider li .details p {
                font-size: 21px;
                line-height: 24px;
            }
}
/* =============================================================================
    o   IE 10+ FIXES
============================================================================= */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .bx-wrapper .bx-loading {
        display: none !important;
    }
}
/* =============================================================================
    o   BREADCRUMBS NAVIGATION
============================================================================= */
.breadcrumbs {
    display: inline-block;
    margin: 25px 0;
    width: 100%;
    font-size: 14px;
}

    .breadcrumbs > .container > span > span > span {
        display: inline-block;
        vertical-align: middle;
        padding-left: 15px;
        color: #384050;
        font-weight: bold;
    }

        .breadcrumbs > .container > span > span > span:first-child {
            padding-left: 0;
        }

        .breadcrumbs > .container > span > span > span.breadcrumb-separator {
            padding-left: 0;
        }

        .breadcrumbs > .container > span > span > span:last-child {
            pointer-events: none;
        }

            .breadcrumbs > .container > span > span > span:last-child a {
                color: #384050;
            }

        .breadcrumbs > .container > span > span > span a {
            display: inline-block;
            color: #0061af;
        }

            .breadcrumbs > .container > span > span > span a:hover {
                color: #f99e49;
                text-decoration: none;
            }

    .breadcrumbs .breadcrumb-separator:after {
        background: url(../images/ui/nav-li.png) no-repeat;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin-left: 10px;
        float: right;
        width: 12px;
        height: 8px;
        content: '';
    }

@media only screen and (max-width: 780px) {
    .breadcrumbs {
        margin: 85px 0 25px;
    }
}

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   SIDEBAR
============================================================================= */
.sidebar {
    display: inline-block;
    width: 350px;
    margin-top: 25px;
    float: left;
    z-index: 1;
    position: relative;
}

    .sidebar.fixed {
        position: fixed;
        top: 25px;
        left: calc((100% - 1140px)/2);
        margin-top: 0;
    }

@media all and (orientation: portrait) {
    .sidebar.fixed {
        position: inherit;
        left: 0 !important;
        top: 0;
    }
}

.sidebar ul {
    display: inline-block;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .sidebar ul li {
        transition: all 0.5s ease;
        display: inline-block;
        background: #384050;
        padding: 0 25px;
        width: 100%;
    }

        .sidebar ul li a {
            display: inline-block;
            border-bottom: 1px solid #2d3340;
            padding: 20px 0;
            font-size: 14px;
            width: 100%;
            color: #fff;
        }

            .sidebar ul li a:hover {
                text-decoration: none;
            }

            .sidebar ul li a:after {
                display: inline-block;
                position: relative;
                content: "\f178";
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-decoration: inherit;
                font-size: 12px;
                color: #fff;
                top: 2px;
                float: right;
            }

        .sidebar ul li:last-child a {
            border: none;
        }

        .sidebar ul li.active, .sidebar ul li:hover {
            background: #2e3441;
        }

.sidebar .form {
    width: 100%;
    display: inline-block;
    /*margin-left: -15px;*/
    margin: 25px 0;
}

    .sidebar .form .group_range {
        display: inline-block;
        margin-top: 15px;
        width: 100%;
    }

        .sidebar .form .group_range label {
            float: left;
            width: 48%;
        }

            .sidebar .form .group_range label p b {
                font-size: 14px;
                width: auto;
                margin: 0;
            }

            .sidebar .form .group_range label:nth-child(even) {
                float: right;
            }

    .sidebar .form label {
        display: inline-block;
        text-align: center;
        float: left;
        width: 100%;
    }

        .sidebar .form label:nth-child(odd) {
            clear: both;
        }

        .sidebar .form label input, .sidebar .form label select {
            display: inline-block;
            background: none;
            padding: 10px 0;
            font-size: 16px;
            outline: none;
            border: none;
            width: 100%;
            border-bottom: 1px solid #ababac;
        }

            .sidebar .form label input:focus, .sidebar .form label select:focus {
                border-color: #0061af;
            }

        .sidebar .form label input {
            padding: 11px 0;
        }

        .sidebar .form label span.error {
            display: none;
            text-align: left;
            margin-top: 10px;
            font-size: 13px;
            width: 100%;
            color: red;
        }

        .sidebar .form label.error input, .sidebar .form label.error select {
            border-color: red;
        }

        .sidebar .form label.error span.error {
            display: inline-block;
        }

    .sidebar .form button {
        display: inline-block;
        padding: 15px 25px;
        background: #0061af;
        margin-left: 15px;
        margin-top: 25px;
        cursor: pointer;
        font-size: 16px;
        outline: none;
        border: none;
        color: #fff;
        clear: both;
        float: left;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .sidebar .form button:hover {
            background: #003763;
        }

        .sidebar .form button.aplica_filtre {
            width: 100%;
            margin: 0;
            margin-top: 15px;
        }

    .sidebar .form b {
        display: inline-block;
        margin: 15px 0 25px 15px;
        font-weight: bold;
        font-size: 16px;
        color: #000;
        width: 100%;
    }

.sidebar a.call-to-action {
    display: inline-block;
    background: #f99e49;
    text-align: center;
    margin-top: 15px;
    padding: 20px 0;
    font-size: 14px;
    width: 100%;
    color: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .sidebar a.call-to-action:hover {
        background: #f78418;
        text-decoration: none;
    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1270px) {
    .sidebar.fixed {
        left: 5%;
    }
}
/* =============================================================================
    o   PAGINATIONS
============================================================================= */
.pagination {
    display: inline-block;
    margin: 25px 0 50px;
    width: 100%;
}

    .pagination p {
        display: inline-block;
        text-transform: uppercase;
        width: auto !important;
        margin-right: 15px;
        font-weight: bold;
        margin-top: 6px;
        color: #6a6a6a;
        float: left;
        padding: 0;
    }

    .pagination ul {
        display: inline-block;
        list-style: none;
        float: left;
        padding: 0;
        margin: 0;
        width: auto !important;
    }

        .pagination ul li {
            display: inline-block;
            text-align: center;
            line-height: 35px;
            font-size: 14px;
            height: 35px;
            width: 35px;
            float: left;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
        }

            .pagination ul li a {
                display: inline-block;
                font-weight: bold;
                color: #0061af;
                width: 100%;
            }

                .pagination ul li a.active,
                .pagination ul li a.active:hover {
                    background: #0061af;
                    border-radius: 50%;
                    -moz-border-radius: 50%;
                    -webkit-border-radius: 50%;
                    text-decoration: none;
                    color: #fff;
                }

            .pagination ul li:hover {
                background: #f4f4f4;
            }

                .pagination ul li:hover a {
                    text-decoration: none;
                }

    .pagination a.read-more {
        display: inline-block;
        padding-right: 35px;
        position: relative;
        margin-left: 25px;
        margin-top: 7px;
        font-size: 14px;
        color: #0061af;
        float: left;
    }

        .pagination a.read-more:after {
            background-image: url(../images/ui/arrow.png);
            background-repeat: no-repeat;
            background-size: 100% auto;
            display: inline-block;
            margin-left: 10px;
            position: absolute;
            content: '';
            height: 25px;
            width: 25px;
            top: 0px;
            right: 0;
        }

        .pagination a.read-more:hover {
            text-decoration: none;
            color: #f99e49;
        }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
.ui_accordion {
    display: inline-block;
    overflow: hidden;
}

    .ui_accordion h3 {
        border-top: 1px solid #ccc;
        display: inline-block;
        position: relative;
        background: #fff;
        line-height: 49px !important;
        height: 50px !important;
        margin: 0 !important;
        cursor: pointer;
        width: 100%;
        float: left;
    }

        .ui_accordion h3:after {
            display: inline-block;
            pointer-events: none;
            position: absolute;
            font-weight: 300;
            font-size: 45px;
            content: "+";
            color: #0061af;
            right: 0;
            top: 0px;
        }

        .ui_accordion h3.ui-state-active:after {
            -ms-transform: rotate(45deg);
            /* IE 9 */
            -webkit-transform: rotate(45deg);
            /* Safari */
            transform: rotate(45deg);
        }

@media only screen and (max-width: 460px) {
    .ui_accordion h3 {
        line-height: normal !important;
        padding-top: 15px !important;
        font-size: 21px !important;
        height: auto !important;
        padding-right: 50px;
    }
}

.ui_accordion .ui-accordion-content-active {
    display: inline-block !important;
}

.ui_accordion > div {
    display: inline-block;
    background: #fff;
    width: 100%;
}

.ui-accordion .ui-accordion-content {
    overflow: visible !important;
}

/* =============================================================================
    o   SIDEBAR
============================================================================= */
.announcements {
    display: inline-block;
    text-align: center;
    margin-top: 15px;
    width: 100%;
    float: left;
}

    .announcements .container-ann {
        display: inline-block;
        background: #e5eff7;
        text-align: left;
        padding: 25px;
    }

        .announcements .container-ann > p:first-of-type {
            display: inline-block;
            margin-bottom: 15px;
            width: 100%;
        }

            .announcements .container-ann > p:first-of-type:before {
                display: inline-block;
                position: relative;
                content: "\f05a";
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-decoration: inherit;
                margin-right: 15px;
                font-size: 16px;
                color: #0061af;
            }

        .announcements .container-ann .column {
            display: inline-block;
            float: right;
            width: 49%;
        }

@media only screen and (max-width: 780px) {
    .announcements .container-ann .column {
        margin-bottom: 25px;
        width: 100%;
    }
}

.announcements .container-ann .column:first-of-type {
    float: left;
}

.announcements .container-ann .column ul {
    padding-left: 20px;
    margin: 0;
    margin-top: 10px;
}

.sitemap-title {
    margin-bottom: 15px !important;
}

ul.sitemap {
    display: inline-block;
    list-style: none;
    padding-left: 0;
    list-style-type: none !important;
    margin: 0 !important;
}

    ul.sitemap ul {
        list-style: none;
        margin-top: 0;
        list-style-type: none;
    }

    ul.sitemap li {
        margin: 5px 0;
    }

        ul.sitemap li.has-children:before {
            font-family: FontAwesome;
            text-decoration: inherit;
            pointer-events: none;
            font-weight: normal;
            font-style: normal;
            content: "\f196";
            margin-right: 5px;
        }

        ul.sitemap li.has-children ul {
            display: none;
        }

        ul.sitemap li.active:before {
            content: '\f147';
        }

        ul.sitemap li.active > ul {
            display: inline-block;
        }

        ul.sitemap li a {
            text-decoration: none;
        }

/* =============================================================================
    o   HEADER
============================================================================= */
.header {
    display: table-row;
    background: #fff;
    height: 160px;
}

    .header a.logo {
        display: inline-block;
        background-image: url(../images/ui/logo.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        text-indent: -9999px;
        margin: 30px 0;
        width: 190px;
        height: 40px;
        float: left;
    }

    .header a.menu_trigger {
        background-image: url(../images/ui/menu_trigger.png);
        background-position: left;
        background-size: cover;
        transition: initial;
        position: relative;
        margin-top: 19px;
        display: none;
        float: right;
        height: 32px;
        width: 32px;
    }

        .header a.menu_trigger:before {
            display: inline-block;
            position: absolute;
            content: 'Meniu';
            font-size: 16px;
            color: #0061af;
            left: -60px;
            top: 3px;
        }

        .header a.menu_trigger.active {
            background-position: right;
        }

            .header a.menu_trigger.active:before {
                content: 'Inchide';
            }

    .header .mobile-details {
        display: none;
    }

    .header .menu-details ul.top-menu {
        display: inline-block;
        float: right;
        padding: 0;
        margin: 0;
    }

        .header .menu-details ul.top-menu li {
            display: inline-block;
            position: relative;
            float: left;
        }

            .header .menu-details ul.top-menu li a {
                display: inline-block;
                color: #384050;
                font-size: 14px;
                padding: 39.5px 15px;
            }

                .header .menu-details ul.top-menu li a:hover {
                    text-decoration: none;
                    color: #0061af;
                }

                .header .menu-details ul.top-menu li a span {
                    display: inline-block;
                    text-align: center;
                    background: #0061af;
                    line-height: 20px;
                    height: 20px;
                    width: 20px;
                    color: #fff;
                    margin-left: 5px;
                    border-radius: 50px;
                    -moz-border-radius: 50px;
                    -webkit-border-radius: 50px;
                }

            .header .menu-details ul.top-menu li.has-submenu:after {
                display: inline-block;
                position: absolute;
                content: "\f078";
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-decoration: inherit;
                color: #384050;
                font-size: 8px;
                right: 0px;
                top: 44px;
            }

            .header .menu-details ul.top-menu li.has-submenu .submenu {
                display: none;
                position: absolute;
                background: #fff;
                padding: 20px;
                width: 200px;
                z-index: 5;
                top: 80px;
                left: 0px;
                -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                /*&:before{
        							display: inline-block;
        							position: absolute;
        							background: #fff;
        							content: '';
        
        							height: 10px;
        							width: 10px;
        							left: 45px;
        							top: -5px;
        
        							-ms-transform: rotate(-45deg); 
        							-webkit-transform: rotate(-45deg); 
        							transform: rotate(-45deg);
        						}*/
            }

                .header .menu-details ul.top-menu li.has-submenu .submenu ul {
                    display: inline-block;
                    float: left;
                    width: 100%;
                    padding: 0;
                    margin: 0;
                }

                    .header .menu-details ul.top-menu li.has-submenu .submenu ul li {
                        display: inline-block;
                        float: left;
                        width: 100%;
                    }

                        .header .menu-details ul.top-menu li.has-submenu .submenu ul li a {
                            display: inline-block;
                            font-size: 14px;
                            padding: 5px 0;
                            float: left;
                            width: 100%;
                            color: #000;
                            margin: 0;
                        }

                            .header .menu-details ul.top-menu li.has-submenu .submenu ul li a:hover {
                                color: #f99e49;
                            }

            .header .menu-details ul.top-menu li.has-submenu:hover .submenu {
                display: inline-block;
            }

    .header .menu-details ul.top-buttons {
        display: inline-block;
        margin: 0;
        padding: 0;
        margin-top: 30px;
        float: right;
    }

        .header .menu-details ul.top-buttons li {
            display: inline-block;
            margin-left: 10px;
            float: left;
        }

            .header .menu-details ul.top-buttons li a {
                display: inline-block;
                border: 1px solid #00b1eb;
                background: #00b1eb;
                padding: 10px 15px;
                font-weight: 500;
                font-size: 14px;
                color: #fff;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .header .menu-details ul.top-buttons li a.primary-btn {
                    border-color: #0061af;
                    background: #0061af;
                    color: #fff;
                }

                    .header .menu-details ul.top-buttons li a.primary-btn:hover {
                        background: #00457c;
                        border-color: #00457c;
                    }

                .header .menu-details ul.top-buttons li a.secondary-btn {
                    border-color: #539e1a;
                    background: #539e1a;
                    color: #fff;
                }

                    .header .menu-details ul.top-buttons li a.secondary-btn:hover {
                        background: #478816;
                        border-color: #478816;
                    }

                .header .menu-details ul.top-buttons li a:hover {
                    text-decoration: none;
                    background: #009ed2;
                    border-color: #009ed2;
                    color: #fff;
                }

    .header .main-menu {
        display: inline-block;
        text-align: center;
        background: #fff;
        height: 60px;
        width: 100%;
    }

        .header .main-menu .container {
            display: inline-block;
            position: initial;
            border-bottom: 1px solid #1c3a72;
            border-top: 1px solid #1c3a72;
        }

        .header .main-menu ul.tabs {
            display: none;
        }

        .header .main-menu ul.menu {
            display: inline-block;
            float: left;
            padding: 0;
            margin: 0;
            position: relative;
        }

            .header .main-menu ul.menu li {
                display: inline-block;
                float: left;
            }

                .header .main-menu ul.menu li a {
                    display: inline-block;
                    padding: 0 25px 0 15px;
                    color: #1c3a72;
                    line-height: 59px;
                    font-size: 14px;
                    float: left;
                }

                    .header .main-menu ul.menu li a:hover {
                        text-decoration: none;
                    }

                .header .main-menu ul.menu li.has-submenu a {
                    position: relative;
                }

                .header .main-menu ul.menu li.has-submenu.active {
                    /*&.has-submenu:before{
          							display: inline-block;
          							background: $dark_blue;
          							position: relative;
              						float: left;
          							content: '';
          
          							left: calc((100% - 10px)/2);
          							margin-right: -10px;
          							height: 10px;
          							width: 10px;
          							top: 55px;
          
          							-ms-transform: rotate(-45deg); 
          							-webkit-transform: rotate(-45deg); 
          							transform: rotate(-45deg);
          						}*/
                }

                    .header .main-menu ul.menu li.has-submenu.active a {
                        text-decoration: none;
                    }

                .header .main-menu ul.menu li.has-submenu .submenu {
                    display: none;
                    position: absolute;
                    background: #fff;
                    width: 100%;
                    z-index: 3;
                    top: 60px;
                    left: 0;
                    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
                    -moz-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
                    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
                    animation-duration: 300ms;
                    animation-fill-mode: both;
                    animation-name: fadeIn;
                    /*}*/
                }

                    .header .main-menu ul.menu li.has-submenu .submenu .container {
                        border: none;
                    }

                    .header .main-menu ul.menu li.has-submenu .submenu ul {
                        display: inline-block;
                        margin-bottom: 15px;
                        clear: both;
                        width: 100%;
                        padding: 0;
                        margin: 0;
                    }

                        .header .main-menu ul.menu li.has-submenu .submenu ul li {
                            display: inline-block;
                            width: 100%;
                        }

                            .header .main-menu ul.menu li.has-submenu .submenu ul li:first-child.primary {
                                text-transform: none;
                                margin-bottom: -15px;
                            }

                            .header .main-menu ul.menu li.has-submenu .submenu ul li a {
                                /*display: inline-block;
                line-height: normal;
                color: $dark_grey;
                background: none;
                font-size: 14px;
                padding: 5px 0;*/
                                /*&:after{
                											display: none;
                										}
                
                										&:hover{
                											color: $orange;
                											background: none;
                										}*/
                            }

                            .header .main-menu ul.menu li.has-submenu .submenu ul li ul {
                                display: inline-block;
                                width: 100%;
                                padding: 0;
                                margin: 0;
                                margin-top: 15px;
                            }

                                .header .main-menu ul.menu li.has-submenu .submenu ul li ul li {
                                    /*&:first-child{
                  	text-transform: uppercase;
                  	margin-bottom: 0;
                  	font-weight: 600;
                  	font-size: 12px;
                  	color: $blue;
                  }*/
                                }

                                    .header .main-menu ul.menu li.has-submenu .submenu ul li ul li a {
                                        /*text-transform: none;
                    display: inline-block;
                    font-weight: normal;
                    margin-left: 15px;
                    background: none;*/
                                    }

                                        .header .main-menu ul.menu li.has-submenu .submenu ul li ul li a:after {
                                            display: none;
                                        }

                .header .main-menu ul.menu li.has-submenu.smaller {
                    position: relative;
                }

                    .header .main-menu ul.menu li.has-submenu.smaller.has-submenu:before {
                        display: none;
                    }

                    .header .main-menu ul.menu li.has-submenu.smaller .submenu {
                        display: none;
                        position: absolute;
                        background: #fff;
                        padding: 20px;
                        width: 250px;
                        z-index: 5;
                        top: 60px;
                        -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                        -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
                    }

                        .header .main-menu ul.menu li.has-submenu.smaller .submenu:before {
                            display: inline-block;
                            position: absolute;
                            background: #fff;
                            content: '';
                            height: 10px;
                            width: 10px;
                            left: 45px;
                            top: -5px;
                            -ms-transform: rotate(-45deg);
                            /* IE 9 */
                            -webkit-transform: rotate(-45deg);
                            /* Safari */
                            transform: rotate(-45deg);
                        }

                        .header .main-menu ul.menu li.has-submenu.smaller .submenu ul {
                            display: inline-block;
                            float: left;
                            width: 100%;
                            padding: 0;
                            margin: 0;
                        }

                            .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li {
                                display: inline-block;
                                text-align: left;
                                float: left;
                                width: 100%;
                            }

                                .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li:last-child a {
                                    padding-bottom: 0;
                                }

                                .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li a {
                                    display: inline-block;
                                    text-transform: none;
                                    line-height: normal;
                                    font-weight: normal;
                                    background: none;
                                    font-size: 14px;
                                    padding: 5px 0;
                                    float: left;
                                    width: 100%;
                                    color: #000;
                                    margin: 0;
                                }

                                    .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li a:hover {
                                        background: none;
                                        color: #f99e49;
                                    }

                                    .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li a:after {
                                        display: none;
                                    }

                                .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li ul {
                                    margin: 10px 0;
                                }

                                    .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li ul li {
                                        padding-left: 10px;
                                    }

                                        .header .main-menu ul.menu li.has-submenu.smaller .submenu ul li ul li:first-child {
                                            text-transform: uppercase;
                                            padding-left: 0px;
                                            font-weight: 500;
                                            font-size: 12px;
                                            color: #0061af;
                                        }

        .header .main-menu a.search_trigger {
            background: url(../images/ui/search_ico2.png) center center no-repeat #e5eff7;
            text-indent: -9999px;
            position: absolute;
            display: none;
            float: right;
            height: 59px;
            width: 60px;
            right: 5vw;
        }

            .header .main-menu a.search_trigger.active {
                background: url(../images/ui/search_esc.png) center center no-repeat #1c3a72;
            }

        .header .main-menu .search-container {
            display: inline-block;
            position: relative;
            width: 350px;
            float: right;
            margin: 0;
        }

            .header .main-menu .search-container .search-elem-wrapper {
                display: inline-block;
                width: 100%;
                margin: 0;
            }

            .header .main-menu .search-container input {
                display: inline-block;
                background: #e5eff7;
                font-family: Open Sans, serif;
                padding: 0 15px 0 50px;
                outline: none;
                border: none;
                height: 58px;
                width: 100%;
                color: #0061af;
            }

                .header .main-menu .search-container input::-webkit-input-placeholder {
                    /* Chrome/Opera/Safari */
                    color: #0061af;
                }

                .header .main-menu .search-container input::-moz-placeholder {
                    /* Firefox 19+ */
                    color: #0061af;
                }

                .header .main-menu .search-container input:-ms-input-placeholder {
                    /* IE 10+ */
                    color: #0061af;
                }

                .header .main-menu .search-container input:-moz-placeholder {
                    /* Firefox 18- */
                    color: #0061af;
                }

            .header .main-menu .search-container .search-submit {
                background: url(../images/ui/search_ico2.png) center center no-repeat;
                display: inline-block;
                position: absolute;
                border: none;
                outline: none;
                cursor: pointer;
                height: 60px;
                width: 50px;
                left: 0;
                top: 0;
                font-size: 0;
            }

            .header .main-menu .search-container .search-clear {
                background: url(../images/ui/search_esc.png) center center no-repeat #cbdeec;
                top: 0;
                right: 0;
                height: 58px;
                margin: 0;
                width: 50px;
                z-index: 0;
            }

.no_mobile {
    display: inline-block;
}

.mobile_show {
    display: none !important;
}

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1150px) {
    .header .menu-details {
        float: right;
    }

        .header .menu-details ul.top-buttons {
            margin-top: 15px;
        }

            .header .menu-details ul.top-buttons li a {
                padding: 5px 10px;
            }

        .header .menu-details ul.top-menu {
            margin-top: 10px;
            clear: both;
        }

            .header .menu-details ul.top-menu li.has-submenu {
                padding-right: 15px;
            }

                .header .menu-details ul.top-menu li.has-submenu:after {
                    top: 10px;
                    right: 10px;
                }

                .header .menu-details ul.top-menu li.has-submenu .submenu {
                    top: 30px;
                }

            .header .menu-details ul.top-menu li a {
                padding: 5px 10px;
            }
}

@media only screen and (max-width: 1020px) {
    .header .main-menu ul.menu {
        width: 575px;
    }

    .header .main-menu .search-container {
        width: calc(100% - 600px);
    }
}

@media only screen and (max-width: 820px) {
    .header .main-menu a.search_trigger {
        display: inline-block;
    }

    .header .main-menu .search-container {
        background: #384050;
        display: none;
        width: 100%;
    }

        .header .main-menu .search-container .search-clear {
            display: none;
        }
}
/*@media only screen and (max-width: 720px) {
	.no_mobile{
		display: none !important;
	}

	.mobile_show{
		display: inline-block;
	}

	header.header{
		position: fixed;
		height: 70px;
		z-index: 2;
		right: 0;
		left: 0;
		top: 0;

		-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);

		a.logo{
			margin: 15px 0;
		}

		a.menu_trigger{
			display: inline-block;
		}

		.menu-details{
			display: none;
		}

		.main-menu#menu{
			padding-bottom: 150px;
            overflow: scroll;
			display: none;
			overflow: scroll;
			background: #fff;
			position: fixed;
			height: 100%;
			width: 100%;
			
			top: 70px;
			left: 0;

			animation-duration: 300ms;
			animation-fill-mode: both;
			animation-name: slideInLeft;
			
			.container{
                border-bottom: none;
				width: 100%;
			}
            ul.tabs{
				display: inline-block;
				background: $dark_grey;
				list-style: none;
				width: 100%;
				float: left;
				padding: 0;
				margin: 0;
				li{
					display: inline-block;
					width: 33.3%;
					float: left;
					a{
						display: inline-block;
						text-align: center;
						padding: 13px 0;
						font-size: 16px;
						float: left;
						width: 100%;
						color: #fff;
						&:hover{
							text-decoration: none;
						}
					}
					&:hover,
					&.active{
						background: darken($dark_grey, 5%);
						position: relative;
						&:before{
							display: inline-block;
							position: absolute;
							background: #fff;
							height: 15px;
							width: 15px;
							content: '';
							bottom: -13px;
							left: calc((100% - 25px)/2);
							transform: rotate(45deg);
							-ms-transform: rotate(45deg);
							-webkit-transform: rotate(45deg);
						}
					}
				}
			}
			ul.menu{
				width: 100%;

				li{
					position: relative;
					border-bottom: 1px solid #e6e6e6;
					width: 100%;
					float: left;

					a{
						text-align: left;
						padding-left: 5vw;
						font-size: 16px;
						color: #000;
						float: left;
						width: 100%;

						&:hover{
							background: #f4f4f4;
							color: #000;
						}
					}

					&.li-lvl-0.has-submenu{
						a.link-lvl-0{
							&:after{
								font-size: 12px;
								color: #000;
								right: 25px;
							}
						}
					}

					&.has-submenu{
						&.smaller{
							.submenu{
								width: 100%;

								&:before{
									display: none;
								}

								ul{
									li{
										border-bottom: none;

										a{
											font-size: 16px;
											padding: 10px 0;
										}
									}
								}
							}
						}

						// a{
						// 	&:after{
						// 		font-size: 12px;
						// 		color: #000;
						// 		right: 25px;
						// 	}
						// }

						&.active{
							a{
								color: $dark_blue;

								&:after{
									color: $dark_blue;
								}
							}

							&:before{
								display: none !important;
							}

							&:after{
								color: #fff;
							}

							.submenu{
								position: absolute;
								display: inline-block;
							    // overflow: scroll;
								height: 220vh;
								top: 60px;
								left: 0;

								box-shadow: none;
								-moz-box-shadow: none;
								-webkit-box-shadow: none;

								.container{
									width: 90%;
								}

								.column{
									width: 100%;
									padding-right: 0;

									ul{
										li{
											border-bottom: 0;
											display: none;

											&:first-child{
												border-bottom: 1px solid #e6e6e6;
												display: inline-block;
												padding-bottom: 15px;
												padding-left: 25px;
												position: relative;
												cursor: pointer;
												color: #000;

												&.primary{
													text-transform: none;
													margin-bottom: 10px;
												}

												a{
													font-size: 16px;
													color: #000;
												}

												&:after{
													display: inline-block;
													position: absolute;
													content: "\f078";

													font-family: FontAwesome;
													text-decoration: inherit;
													font-weight: normal;
													font-style: normal;

													font-size: 12px;
													color: #000;
													left: 0px;
													top: 3px;
												}
											}

											&.no_arrow{
												padding-left: 0;
												
												&:after{
													display: none !important;
												}
											}
										}

										&.active{
											display: inline-block !important;
											margin-bottom: 15px;

											li{
												display: inline-block !important;
												color: $orange;

												&:first-child:after{
													content: "\f077";
												}

												ul{
													li{
														border-bottom: none;
														padding-bottom: 5px;
														padding-left: 0;
														color: $blue;

														a{
															font-size: 14px;
														}

														&:after{
															display: none;
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
			}

			a.search_trigger{
				display: none;
			}

			.search-container{
				border-bottom: 1px solid #e6e6e6;
				display: inline-block;
				background: #f1f1f1;
				width: 100%;

				input{
					color: #000;
					font-size: 16px;
					padding-left: 75px;

					&::-webkit-input-placeholder { 
						color: rgba(0, 0, 0, .5);
					}

					&::-moz-placeholder { 
						color: rgba(0, 0, 0, .5);
					}

					&:-ms-input-placeholder {
						color: rgba(0, 0, 0, .5);
					}

					&:-moz-placeholder { 
						color: rgba(0, 0, 0, .5);
					}
				}

				.search-submit{
					background: url(../images/ui/search_ico2.png) left center no-repeat;
					left: 5vw;
				}
			}

			.mobile-details{
				display: inline-block;  
				width: 100%;

                a.button{
					display: inline-block;
					border: 1px solid #00b1eb;
					width: calc(100% - 30px);
					background: #00b1eb;
					margin: 25px 15px;
					font-weight: 500;
					font-size: 14px;
					padding: 15px 0;
					color: #fff;
					
					border-radius: 3px;
					-moz-border-radius: 3px;
					-webkit-border-radius: 3px;
					&:hover{
						background: darken(#00b1eb, 5%);
						text-decoration: none;
					}
				}


				ul.links{
					display: inline-block;
					text-align: center;
					width: 100%;
					padding: 0;
					margin: 0;

					display: none;
					margin-top: 30px;

					li{
    					transition: all 0.5s ease;
						display: inline-block;
						margin-bottom: 10px;
						width: 90%;

						border-radius: 2px;
						-moz-border-radius: 2px;
						-webkit-border-radius: 2px;

						a{
							display: inline-block;
							padding: 15px 0;
							font-size: 16px;
							width: 100%;
							color: #fff;

							i{
								margin-right: 5px;
							}

							&:hover{
								text-decoration: none;
							}
						}

						&:first-child{
							background: $green;

							&:hover{
								background: darken($green, 10%);
							}
						}

						&:last-child{
							background: $blue;

							&:hover{
								background: darken($blue, 10%);
							}
						}
					}
				}

				ul.list{
					display: inline-block;
					width: 100%;
					padding: 0;
					margin: 0;

					display: none;

					li{
						display: inline-block;
						width: 100%;

						a{
							display: inline-block;
							text-align: left;
							padding: 13px 0;

							width: calc(100% - 50px);
							font-size: 16px;
							color: #000;

							border-bottom: 1px solid #dfdfdf;

							i{
								text-align: center;
								margin-right: 5px;
								width: 15px;
							}

							&:hover{
								text-decoration: none;
								color: $orange;
							}
						}

						&.has-submenu{
							position: relative;

							&:after{
								display: inline-block;
								position: absolute;
								content: "\f078";

								font-family: FontAwesome;
								text-decoration: inherit;
								font-style: normal;
								font-weight: normal;

								color: #000;
								cursor: pointer;
								font-size: 12px;
								right: 25px;
								top: 16px;
							}

							&.opened{
								&:after{
									content: "\f077";
								}
							}

							ul{
								margin: 10px 0;
								display: none;

								li{
									a{
										padding: 10px 0;
										border-bottom: 0;
									}
								}
							}
						}
					}
				}
			}
		}
	}

	.content{
		.center-align{
			padding-top: 70px;
		}
	}
}*/
@media only screen and (max-width: 600px) {
    .header .main-menu form input {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 340px) {
    .header a.menu_trigger:before {
        display: none;
    }
}
/* =============================================================================
    o   IE 10+ FIXES
============================================================================= */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .header .main-menu ul.menu li.has-submenu .submenu {
        top: 60px;
    }
}
/* =============================================================================
    o   CONTENT
============================================================================= */
.content {
    display: table-row;
    text-align: justify;
    vertical-align: middle;
}

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   FOOTER
============================================================================= */
.footer {
    display: table-row;
    background: #384050;
    height: 50px;
    -webkit-box-shadow: inset 0px 10px 51px -23px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 10px 51px -23px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 10px 51px -23px rgba(0, 0, 0, 0.75);
}

    .footer .center-align {
        padding: 25px 0;
    }

    .footer .top-footer {
        display: inline-block;
        padding: 25px 0 50px;
        width: 100%;
    }

        .footer .top-footer .call-center {
            display: inline-block;
            float: left;
        }

            .footer .top-footer .call-center img {
                display: inline-block;
                margin-right: 25px;
                margin-top: 10px;
                float: left;
                height: 37px;
                width: 37px;
            }

            .footer .top-footer .call-center span {
                display: inline-block;
                float: left;
            }

                .footer .top-footer .call-center span a {
                    display: inline-block;
                    font-size: 24px;
                    float: left;
                    color: #fff;
                }

                    .footer .top-footer .call-center span a:hover {
                        text-decoration: none;
                    }

                .footer .top-footer .call-center span p {
                    color: rgba(255, 255, 255, 0.7);
                    display: inline-block;
                    font-size: 14px;
                    float: left;
                    clear: both;
                }

        .footer .top-footer .social-links-wrapper {
            display: inline-block;
            list-style: none;
            float: right;
            padding: 0;
            margin: 0;
        }

            .footer .top-footer .social-links-wrapper li {
                display: inline-block;
                float: left;
            }

                .footer .top-footer .social-links-wrapper li a {
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    color: rgba(255, 255, 255, 0.3);
                    display: inline-block;
                    text-align: center;
                    line-height: 50px;
                    margin-left: 15px;
                    font-size: 16px;
                    height: 50px;
                    width: 50px;
                    border-radius: 50%;
                    -moz-border-radius: 50%;
                    -webkit-border-radius: 50%;
                }

                    .footer .top-footer .social-links-wrapper li a:hover {
                        text-decoration: none;
                        border-color: #fff;
                        color: #fff;
                    }

                    .footer .top-footer .social-links-wrapper li a .fa {
                        line-height: 50px;
                    }

    .footer .footer-links {
        display: inline-block;
        width: 100%;
    }

        .footer .footer-links .sitemap {
            border-bottom: 1px solid #272d38;
            border-top: 1px solid #272d38;
            display: inline-block;
            padding: 35px 0 25px;
            margin-bottom: 25px;
            width: 100%;
            float: left;
        }

            .footer .footer-links .sitemap a.change_language {
                display: inline-block;
                padding-right: 25px;
                position: relative;
                font-size: 16px;
                color: #ffffff;
                float: left;
            }

                .footer .footer-links .sitemap a.change_language img {
                    display: inline-block;
                    border: 1px solid #fff;
                    margin-right: 10px;
                    height: 20px;
                    width: 20px;
                    float: left;
                    border-radius: 50%;
                    -moz-border-radius: 50%;
                    -webkit-border-radius: 50%;
                }

                .footer .footer-links .sitemap a.change_language:after {
                    display: inline-block;
                    position: absolute;
                    content: "\f178";
                    font-family: FontAwesome;
                    font-style: normal;
                    font-weight: normal;
                    text-decoration: inherit;
                    color: #fff;
                    font-size: 12px;
                    right: 0px;
                    top: 5px;
                }

                .footer .footer-links .sitemap a.change_language:hover {
                    text-decoration: none;
                    color: #f99e49;
                }

            .footer .footer-links .sitemap .footer-links-wrapper {
                padding: 0;
                margin: 0;
                display: inline-block;
                list-style: none;
                float: right;
            }

                .footer .footer-links .sitemap .footer-links-wrapper li {
                    display: inline-block;
                    margin-bottom: 10px;
                    margin-left: 20px;
                    float: left;
                }

                    .footer .footer-links .sitemap .footer-links-wrapper li a {
                        display: inline-block;
                        border-bottom: 1px solid #384050;
                        font-size: 14px;
                        color: #d7d9dc;
                        float: left;
                    }

                        .footer .footer-links .sitemap .footer-links-wrapper li a:hover {
                            text-decoration: none;
                            border-color: #fff;
                            color: #fff;
                        }

        .footer .footer-links .newsletter {
            display: inline-block;
            width: 375px;
            float: left;
        }

            .footer .footer-links .newsletter h4 {
                display: inline-block;
                font-family: Alpha Bank Sans, serif;
                font-weight: 100;
                font-size: 20px;
                width: 100%;
                color: #fff;
            }

            .footer .footer-links .newsletter p {
                color: #d7d9dc;
                display: inline-block;
                text-align: left;
                font-size: 14px;
                width: 100%;
            }

            .footer .footer-links .newsletter form {
                display: inline-block;
                margin-top: 25px;
                width: 100%;
            }

                .footer .footer-links .newsletter form label {
                    display: inline-block;
                    width: 100%;
                }

                    .footer .footer-links .newsletter form label input {
                        font-family: Alpha Bank Sans, serif;
                        transition: all 0.5s ease;
                        display: inline-block;
                        font-weight: 100;
                        background: none;
                        font-size: 14px;
                        outline: none;
                        border: none;
                        width: 100%;
                        padding: 0;
                        margin: 0;
                        border-bottom: 1px solid #747a85;
                        padding: 15px 0;
                        color: #fff;
                    }

                        .footer .footer-links .newsletter form label input:focus {
                            border-color: #fff;
                        }

                        .footer .footer-links .newsletter form label input::-webkit-input-placeholder {
                            /* Chrome/Opera/Safari */
                            color: rgba(255, 255, 255, 0.5);
                        }

                        .footer .footer-links .newsletter form label input::-moz-placeholder {
                            /* Firefox 19+ */
                            color: rgba(255, 255, 255, 0.5);
                        }

                        .footer .footer-links .newsletter form label input:-ms-input-placeholder {
                            /* IE 10+ */
                            color: rgba(255, 255, 255, 0.5);
                        }

                        .footer .footer-links .newsletter form label input:-moz-placeholder {
                            /* Firefox 18- */
                            color: rgba(255, 255, 255, 0.5);
                        }

                    .footer .footer-links .newsletter form label span {
                        display: none;
                        margin-top: 5px;
                        width: 100%;
                        color: red;
                    }

                    .footer .footer-links .newsletter form label.error input {
                        border-color: red;
                    }

                    .footer .footer-links .newsletter form label.error span {
                        display: inline-block;
                    }

                .footer .footer-links .newsletter form button {
                    font-family: Alpha Bank Sans, serif;
                    transition: all 0.5s ease;
                    display: inline-block;
                    border: 1px solid #fff;
                    padding: 10px 25px;
                    margin-top: 25px;
                    background: none;
                    font-size: 14px;
                    cursor: pointer;
                    color: #fff;
                    float: left;
                    border-radius: 3px;
                    -moz-border-radius: 3px;
                    -webkit-border-radius: 3px;
                }

                    .footer .footer-links .newsletter form button:hover {
                        background: #fff;
                        color: #384050;
                    }

        .footer .footer-links p.copyright {
            color: rgba(255, 255, 255, 0.3);
            display: inline-block;
            text-align: center;
            font-size: 14px;
            width: 100%;
            color: #000;
        }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1020px) {
    .footer .footer-links .sitemap ul li {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 980px) {
    .footer .footer-links .sitemap {
        width: 100%;
    }

        .footer .footer-links .sitemap ul {
            margin-top: 25px;
            width: 100%;
        }

    .footer .footer-links .newsletter {
        float: right;
        width: 50%;
    }

    .footer .footer-links p.copyright {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
}

@media only screen and (max-width: 670px) {
    .footer .footer-links .newsletter {
        margin: 15px 0 50px;
        text-align: center;
        width: 100%;
    }

        .footer .footer-links .newsletter p {
            text-align: center;
        }

    .footer .footer-links .sitemap {
        text-align: center;
        width: 100%;
    }

        .footer .footer-links .sitemap a.change_language {
            float: none;
            margin: 0;
            margin-bottom: 25px;
        }

        .footer .footer-links .sitemap ul {
            margin-bottom: 25px;
            text-align: center;
            width: 100%;
            padding-left: 0;
            margin-left: 0;
        }

            .footer .footer-links .sitemap ul li {
                width: auto;
                float: none !important;
                margin: 0 15px !important;
            }
}

@media only screen and (max-width: 580px) {
    .footer .top-footer {
        padding: 0 0 25px;
    }

        .footer .top-footer .call-center {
            text-align: center;
            width: 100%;
        }

            .footer .top-footer .call-center img {
                float: none;
                position: relative;
                top: -10px;
            }

            .footer .top-footer .call-center span {
                float: none;
                text-align: left;
            }

        .footer .top-footer ul.social-links {
            width: 100%;
            text-align: center;
            margin-top: 25px;
        }

            .footer .top-footer ul.social-links li {
                float: none;
            }

                .footer .top-footer ul.social-links li a {
                    margin: 0 7px;
                }
}

@media only screen and (max-width: 490px) {
    .footer .footer-links .newsletter form button {
        width: 100%;
        font-size: 16px;
        padding: 15px 0;
    }
}

@media only screen and (max-width: 310px) {
    .footer .top-footer .call-center img {
        margin: 0;
        margin-top: 10px;
    }

    .footer .top-footer .call-center span {
        text-align: center;
        width: 100%;
    }

        .footer .top-footer .call-center span a {
            float: none;
            font-size: 18px;
        }

        .footer .top-footer .call-center span p {
            float: none;
        }

    .footer .top-footer ul.social-links li a {
        margin-bottom: 15px;
    }
}
/* =============================================================================
    o   PROMO CAMPAIGN
============================================================================= */
.promo_campaign {
    display: inline-block;
    background: #f5f5f6;
    margin-bottom: 25px;
    position: relative;
    padding: 30px;
    width: 100%;
    float: left;
    z-index: 1;
}

    .promo_campaign .details {
        display: inline-block;
        width: calc(100% - 200px);
        position: relative;
        z-index: 2;
    }

@media only screen and (max-width: 1010px) {
    .promo_campaign .details {
        width: 100%;
    }
}

.promo_campaign .details h3 {
    padding-top: 0;
    margin-top: 0 !important;
}

.promo_campaign .details a.primary-btn {
    border: 1px solid #f99e49;
    display: inline-block;
    padding: 15px 25px;
    margin-right: 15px;
    background: #f99e49;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    float: left;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .promo_campaign .details a.primary-btn:hover {
        background: #f89130;
        text-decoration: none;
    }

.promo_campaign img {
    display: inline-block;
    width: 215px !important;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 1010px) {
    .promo_campaign img {
        display: none !important;
    }
}

/* =============================================================================
    o   PRODUCT PAGE
============================================================================= */
.product-details {
    transition: all 0.5s ease;
    border: 1px solid #d9d9da;
    display: inline-block;
    margin-bottom: 30px;
    background: #f5f5f6;
    padding: 25px;
    width: 100%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .product-details img {
        display: inline-block;
        width: 325px;
        float: left;
    }

    .product-details .details {
        display: inline-block;
        width: calc(100% - 375px);
        position: relative;
        float: right;
    }

        .product-details .details h1 {
            display: inline-block;
            font-family: Alpha Bank Sans, sans-serif;
            margin-bottom: 15px;
            margin-top: 25px;
            font-weight: 100;
            font-size: 40px;
            color: #0061af;
            width: 100%;
            float: left;
        }

        .product-details .details p {
            display: inline-block;
            text-align: left;
            font-size: 16px;
            color: #000;
            width: 100%;
        }

        .product-details .details ul.benefits {
            display: inline-block;
            list-style: none;
            width: 100%;
            padding: 0;
            margin: 0;
            margin-top: 25px;
        }

            .product-details .details ul.benefits li {
                font-family: Alpha Bank Sans, sans-serif;
                display: inline-block;
                position: relative;
                font-size: 16px;
                color: #384050;
                width: auto;
                border: none;
                padding: 0;
                margin: 0;
                margin-right: 25px;
            }

                .product-details .details ul.benefits li:before {
                    background: url(../images/ui/li-arrow.png) no-repeat;
                    display: inline-block;
                    margin-right: 10px;
                    height: 10px;
                    width: 13px;
                    content: '';
                }

        .product-details .details .buttons {
            display: inline-block;
            margin-top: 25px;
            width: 100%;
        }

            .product-details .details .buttons a {
                border: 1px solid #f5f5f6;
                display: inline-block;
                padding: 15px 25px;
                padding-right: 45px;
                margin-right: 15px;
                position: relative;
                font-weight: 500;
                font-size: 14px;
                color: #0061af;
                float: right;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .product-details .details .buttons a:hover {
                    text-decoration: none;
                    color: #f99e49;
                }

                .product-details .details .buttons a:after {
                    background-image: url(../images/ui/arrow.png);
                    background-repeat: no-repeat;
                    background-size: 100% auto;
                    display: inline-block;
                    margin-left: 10px;
                    position: absolute;
                    content: '';
                    height: 30px;
                    width: 30px;
                    top: 10px;
                    right: 0;
                }

                .product-details .details .buttons a.primary-btn {
                    padding: 15px 25px;
                    border-color: #f99e49;
                    background: #f99e49;
                    color: #fff;
                    float: left;
                }

                    .product-details .details .buttons a.primary-btn:hover {
                        border-color: #f89130;
                        background: #f89130;
                    }

                    .product-details .details .buttons a.primary-btn:after {
                        display: none;
                    }

                .product-details .details .buttons a.secondary-btn {
                    padding: 15px 25px;
                    border: 1px solid #0061af;
                    float: left;
                }

                    .product-details .details .buttons a.secondary-btn:hover {
                        border-color: #0061af;
                        background: #0061af;
                        color: #fff;
                    }

                    .product-details .details .buttons a.secondary-btn:after {
                        display: none;
                    }

.internal-content {
    display: inline-block;
    position: relative;
    width: 100%;
}

    .internal-content.with_sidebar .main-content {
        display: inline-block;
        width: calc(100% - 400px);
        padding-bottom: 50px;
        color: #384050;
        float: right;
    }

        .internal-content.with_sidebar .main-content iframe {
            width: 100%;
        }

        .internal-content.with_sidebar .main-content p.info-warning {
            display: inline-block;
            margin-bottom: 15px;
            background: #e5eff7;
            font-size: 14px;
            padding: 20px;
            width: 100%;
        }

            .internal-content.with_sidebar .main-content p.info-warning:before {
                display: inline-block;
                position: relative;
                content: "\f05a";
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-decoration: inherit;
                margin-right: 15px;
                font-size: 16px;
                color: #0061af;
            }

        .internal-content.with_sidebar .main-content h2 {
            display: inline-block;
            font-family: Alpha Bank Sans, sans-serif;
            margin-bottom: 15px;
            margin-top: 15px;
            font-size: 32px;
            width: 100%;
            float: left;
        }

        .internal-content.with_sidebar .main-content h3 {
            display: inline-block;
            font-family: Alpha Bank Sans, sans-serif;
            margin-bottom: 15px;
            margin-top: 15px;
            font-size: 24px;
            width: 100%;
            float: left;
        }

        .internal-content.with_sidebar .main-content p {
            display: inline-block;
            margin-bottom: 15px;
            font-size: 14px;
        }

            .internal-content.with_sidebar .main-content p b, .internal-content.with_sidebar .main-content p strong {
                font-weight: bold;
            }

            .internal-content.with_sidebar .main-content p i, .internal-content.with_sidebar .main-content p em {
                font-style: italic;
            }

        .internal-content.with_sidebar .main-content ul li {
            margin-bottom: 15px;
            font-size: 14px;
        }

        .internal-content.with_sidebar .main-content img {
            display: inline-block;
            width: 100%;
        }

        .internal-content.with_sidebar .main-content a.read-more {
            display: inline-block;
            margin-bottom: 25px;
            padding-right: 30px;
            position: relative;
            font-size: 14px;
            color: #0061af;
            float: left;
            clear: both;
        }

            .internal-content.with_sidebar .main-content a.read-more:after {
                background-image: url(../images/ui/arrow.png);
                background-repeat: no-repeat;
                background-size: 100% auto;
                display: inline-block;
                margin-left: 10px;
                position: absolute;
                content: '';
                height: 20px;
                width: 20px;
                top: 2px;
                right: 0;
            }

            .internal-content.with_sidebar .main-content a.read-more:hover {
                text-decoration: none;
                color: #f99e49;
            }

        .internal-content.with_sidebar .main-content .calculator_rata {
            background: none;
            padding: 0;
            padding-top: 50px;
        }

            .internal-content.with_sidebar .main-content .calculator_rata .container {
                width: 100%;
                max-width: 100%;
            }

        .internal-content.with_sidebar .main-content .aplica-online h3 {
            margin-bottom: 0;
        }

        .internal-content.with_sidebar .main-content .aplica-online .apply-form {
            display: inline-block;
            margin-top: 50px;
            width: calc(100% + 30px);
            margin-left: -15px;
        }

            .internal-content.with_sidebar .main-content .aplica-online .apply-form label {
                display: inline-block;
                margin-bottom: 25px;
                text-align: center;
                padding: 0 15px;
                float: left;
                width: 50%;
            }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label:nth-child(odd) {
                    clear: both;
                }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label input, .internal-content.with_sidebar .main-content .aplica-online .apply-form label select {
                    display: inline-block;
                    background: none;
                    padding: 10px 0;
                    font-size: 16px;
                    outline: none;
                    border: none;
                    width: 100%;
                    border-bottom: 1px solid #ababac;
                }

                    .internal-content.with_sidebar .main-content .aplica-online .apply-form label input:focus, .internal-content.with_sidebar .main-content .aplica-online .apply-form label select:focus {
                        border-color: #0061af;
                    }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label input {
                    padding: 11px 0;
                }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label span.error {
                    display: none;
                    text-align: left;
                    margin-top: 10px;
                    font-size: 13px;
                    width: 100%;
                    color: red;
                }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label.error input, .internal-content.with_sidebar .main-content .aplica-online .apply-form label.error select, .internal-content.with_sidebar .main-content .aplica-online .apply-form label.error .dx-checkbox-icon {
                    border-color: red;
                }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form label.error span.error {
                    display: inline-block;
                }

            .internal-content.with_sidebar .main-content .aplica-online .apply-form button {
                display: inline-block;
                padding: 15px 25px;
                background: #f99e49;
                margin-left: 15px;
                margin-top: 25px;
                cursor: pointer;
                font-size: 16px;
                outline: none;
                border: none;
                color: #fff;
                clear: both;
                float: left;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .internal-content.with_sidebar .main-content .aplica-online .apply-form button:hover {
                    background: #ee7708;
                }

            .internal-content.with_sidebar .main-content .aplica-online .apply-form b {
                display: inline-block;
                margin: 15px 0 25px 15px;
                font-weight: bold;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

    .internal-content.with_sidebar .grey_section {
        display: inline-block;
        background: #f5f5f6;
        padding: 75px 0 50px;
        margin: 50px 0;
        width: 100%;
    }

        .internal-content.with_sidebar .grey_section h3 {
            display: inline-block;
            font-family: Alpha Bank Sans, sans-serif;
            color: #1c3a72;
            font-size: 28px;
            width: 100%;
            float: left;
        }

        .internal-content.with_sidebar .grey_section p {
            font-size: 14px;
            color: #384050;
        }

        .internal-content.with_sidebar .grey_section.beneficii .wrapper {
            display: inline-block;
            width: calc(100% - 400px);
            float: right;
        }

            .internal-content.with_sidebar .grey_section.beneficii .wrapper ul {
                display: inline-block;
                width: calc(100% + 30px);
                list-style: none;
                float: right;
                padding: 0;
                margin: 0;
                margin: 25px 0 25px -15px;
            }

                .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li {
                    display: inline-block;
                    margin-bottom: 25px;
                    padding-left: 35px;
                    float: left;
                    width: 50%;
                }

                    .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li:nth-child(odd) {
                        clear: both;
                    }

                    .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li h4 {
                        margin: 0;
                        display: inline-block;
                        font-family: Alpha Bank Sans, sans-serif;
                        margin-bottom: 15px;
                        line-height: 30px;
                        color: #1c3a72;
                        font-size: 21px;
                        width: 100%;
                        float: left;
                        position: relative;
                        padding-left: 50px;
                    }

@media only screen and (max-width: 640px) {
    .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li h4 {
        font-size: 18px;
        line-height: 20px;
    }
}

.internal-content.with_sidebar .grey_section.beneficii .wrapper ul li h4 a {
    color: #1c3a72;
}

.internal-content.with_sidebar .grey_section.beneficii .wrapper ul li h4:before {
    display: inline-block;
    background: url(../images/ui/tick-li.png);
    position: absolute;
    height: 36px;
    width: 37px;
    content: '';
    top: -3px;
    left: 0;
    float: left;
    margin-right: 15px;
}

.internal-content.with_sidebar .grey_section.beneficii .wrapper ul li p {
    display: inline-block;
    color: #384050;
    font-size: 14px;
    width: 100%;
}

    .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li p a {
        text-decoration: underline;
        color: #0061af;
    }

        .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li p a:hover {
            text-decoration: none;
        }

.internal-content.with_sidebar .grey_section.beneficii a.read-more {
    display: inline-block;
    margin-bottom: 25px;
    padding-right: 30px;
    position: relative;
    font-size: 14px;
    color: #0061af;
    float: left;
    clear: both;
}

    .internal-content.with_sidebar .grey_section.beneficii a.read-more:after {
        background-image: url(../images/ui/arrow.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        display: inline-block;
        margin-left: 10px;
        position: absolute;
        content: '';
        height: 20px;
        width: 20px;
        top: 2px;
        right: 0;
    }

    .internal-content.with_sidebar .grey_section.beneficii a.read-more:hover {
        text-decoration: none;
        color: #f99e49;
    }

.internal-content.with_sidebar .grey_section.descarca_acte .wrapper {
    display: inline-block;
    width: calc(100% - 400px);
    float: right;
}

    .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul {
        display: inline-block;
        width: calc(100% + 30px);
        list-style: none;
        float: right;
        padding: 0;
        margin: 0;
        margin: 50px 0 25px -15px;
    }

        .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li {
            display: inline-block;
            margin-bottom: 25px;
            padding-left: 35px;
            float: left;
            width: 50%;
        }

            .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li:nth-child(odd) {
                clear: both;
            }

            .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li a {
                display: inline-block;
                padding-right: 15px;
                font-weight: bold;
                color: #1c3a72;
                text-align: left;
                font-size: 14px;
                width: 100%;
            }

                .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li a:before {
                    display: inline-block;
                    background: url(../images/ui/download.png);
                    position: relative;
                    height: 36px;
                    width: 36px;
                    content: '';
                    top: -3px;
                    float: left;
                    margin-right: 15px;
                }

                .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li a:hover {
                    text-decoration: none;
                    color: #00b1eb;
                }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1100px) {
    .product-details img {
        width: 275px;
        height: auto !important;
    }

    .product-details .details {
        width: calc(100% - 325px);
    }

        .product-details .details .buttons a {
            padding-left: 0;
        }

    .sidebar {
        width: 300px;
    }

    .internal-content.with_sidebar .main-content,
    .internal-content.with_sidebar .grey_section .wrapper {
        width: calc(100% - 350px);
    }
}

@media only screen and (max-width: 870px) {
    .product-details img {
        width: 225px !important;
    }

    .product-details .details {
        width: calc(100% - 275px);
    }

        .product-details .details .buttons a {
            padding-left: 0;
        }

    .sidebar {
        width: 250px;
    }

    .internal-content.with_sidebar .main-content,
    .internal-content.with_sidebar .grey_section .wrapper {
        width: calc(100% - 300px);
    }
}

@media only screen and (max-width: 800px) {
    .product-details img {
        width: 175px !important;
    }

    .product-details .details {
        width: calc(100% - 225px);
    }

    .sidebar {
        width: 100%;
        margin-bottom: 25px;
    }

    .internal-content.with_sidebar .main-content, .internal-content.with_sidebar .grey_section.beneficii .wrapper,
    .internal-content.with_sidebar .grey_section.descarca_acte .wrapper,
    .internal-content.with_sidebar .grey_section .wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 720px) {
    .product-details img {
        display: inline-block;
        width: 100% !important;
    }

    .product-details .details {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .internal-content.with_sidebar .main-content .aplica-online .apply-form {
        padding: 0 15px;
    }

        .internal-content.with_sidebar .main-content .aplica-online .apply-form label {
            width: 100%;
            padding: 0;
        }

        .internal-content.with_sidebar .main-content .aplica-online .apply-form button {
            width: 100%;
            margin: 0;
            padding: 25px 0;
        }

    .internal-content.with_sidebar .grey_section.beneficii .wrapper ul li, .internal-content.with_sidebar .grey_section.descarca_acte .wrapper ul li {
        width: 100%;
    }

    .internal-content.with_sidebar .main-content .calculator_rata {
        padding-top: 0;
    }
}

@media only screen and (max-width: 460px) {
    .product-details .details .buttons a {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .product-details .details h2 {
        margin-top: 0;
    }
}
/* =============================================================================
    o   INTERNAL PAGES
============================================================================= */
.content {
    text-align: left;
}

    .content h1 {
        font-family: Alpha Bank Sans, sans-serif;
        display: inline-block;
        text-transform: none;
        line-height: 35px;
        padding-bottom: 0;
        margin-bottom: 0;
        font-weight: 100;
        text-align: left;
        font-size: 40px;
        color: #1c3a72;
        width: 100%;
    }

    .content p {
        display: inline-block;
        color: #384050;
        text-align: left;
        font-size: 14px;
        width: 100%;
    }

        .content p a {
            text-decoration: underline;
            color: #0061af;
        }

            .content p a:hover {
                text-decoration: none;
            }

        .content p b, .content p strong {
            font-weight: bold;
        }

        .content p i, .content p em {
            font-style: italic;
        }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   PRODUCT LISTING
============================================================================= */
.product_listing .produse_recomandate ul {
    margin-top: 0;
}

.product_listing .linkuri_favorite {
    margin-bottom: 50px;
}

    .product_listing .linkuri_favorite ul {
        border: none;
    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   SEARCH RESULTS
============================================================================= */
.search_results {
    margin-bottom: 50px;
    text-align: center;
}

    .search_results h1 {
        margin-bottom: 15px;
    }

    .search_results .sidebar {
        margin-top: 0;
    }

    .search_results form.choose_country {
        display: inline-block;
        margin-top: 25px;
        width: 100%;
    }

        .search_results form.choose_country label {
            display: inline-block;
            margin-bottom: 25px;
            text-align: center;
            float: left;
            width: 100%;
        }

            .search_results form.choose_country label:nth-child(odd) {
                clear: both;
            }

            .search_results form.choose_country label input, .search_results form.choose_country label select {
                display: inline-block;
                background: none;
                padding: 10px 0;
                font-size: 16px;
                outline: none;
                border: none;
                width: 100%;
                border-bottom: 1px solid #ababac;
            }

                .search_results form.choose_country label input:focus, .search_results form.choose_country label select:focus {
                    border-color: #0061af;
                }

            .search_results form.choose_country label input {
                padding: 11px 0;
            }

            .search_results form.choose_country label span.error {
                display: none;
                text-align: left;
                margin-top: 10px;
                font-size: 13px;
                width: 100%;
                color: red;
            }

            .search_results form.choose_country label.error input, .search_results form.choose_country label.error select {
                border-color: red;
            }

            .search_results form.choose_country label.error span.error {
                display: inline-block;
            }

        .search_results form.choose_country button {
            display: inline-block;
            background: #f99e49;
            padding: 15px 25px;
            font-size: 16px;
            color: #fff;
            clear: both;
            float: left;
            border: none;
            outline: none;
            cursor: pointer;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

            .search_results form.choose_country button:hover {
                background: #f78418;
            }

    .search_results a.agree {
        display: inline-block;
        background: #f99e49;
        padding: 15px 25px;
        font-size: 16px;
        color: #fff;
        clear: both;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .search_results a.agree:hover {
            background: #f78418;
            text-decoration: none;
        }

    .search_results a.disagree {
        display: inline-block;
        background: #dcdcdc;
        padding: 15px 25px;
        font-size: 16px;
        color: #fff;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        margin-left: 10px;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .search_results a.disagree:hover {
            background: #c3c3c3;
            text-decoration: none;
        }

    .search_results form.search_form {
        display: inline-block;
        text-align: center;
        max-width: 720px;
        width: 100%;
        margin: 25px 0 50px;
    }

        .search_results form.search_form label {
            width: calc(100% - 110px);
            display: inline-block;
            position: relative;
            float: left;
        }

            .search_results form.search_form label input {
                display: inline-block;
                background: none;
                padding: 14px 0;
                font-size: 16px;
                outline: none;
                border: none;
                width: 100%;
                float: left;
                padding-left: 35px;
                border-bottom: 1px solid #ababac;
            }

            .search_results form.search_form label:before {
                background: url(../images/ui/search_ico2.png) center center no-repeat;
                display: inline-block;
                position: absolute;
                height: 25px;
                width: 25px;
                content: '';
                left: 0;
                top: 10px;
            }

        .search_results form.search_form button {
            display: inline-block;
            background: #f99e49;
            padding: 15px 25px;
            font-size: 16px;
            color: #fff;
            float: right;
            border: none;
            outline: none;
            cursor: pointer;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

            .search_results form.search_form button:hover {
                background: #f78418;
            }

.content .internal-content.search_results {
    margin-top: 35px;
    text-align: left;
}

    .content .internal-content.search_results .sidebar ul li {
        background: #384050;
    }

        .content .internal-content.search_results .sidebar ul li a {
            border-color: #232832;
        }

        .content .internal-content.search_results .sidebar ul li.active, .content .internal-content.search_results .sidebar ul li:hover {
            background: #2e3441;
        }

    .content .internal-content.search_results .main-content h4 {
        text-transform: uppercase;
        display: inline-block;
        padding-bottom: 15px;
        font-weight: bold;
        color: #0061af;
        width: 100%;
    }

    .content .internal-content.search_results .main-content ul {
        display: inline-block;
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .content .internal-content.search_results .main-content ul.in-produse li {
            transition: all 0.5s ease;
            border: 1px solid #d9d9da;
            display: inline-block;
            background: #f5f5f6;
            padding: 15px;
            float: left;
            width: 100%;
            margin-bottom: 30px;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

            .content .internal-content.search_results .main-content ul.in-produse li img {
                display: inline-block;
                margin-right: 15px;
                float: left;
                width: 64px;
            }

            .content .internal-content.search_results .main-content ul.in-produse li .details {
                display: inline-block;
                width: calc(100% - 80px);
                float: right;
            }

                .content .internal-content.search_results .main-content ul.in-produse li .details h3 {
                    margin-bottom: 0;
                    margin-top: 3px;
                    font-size: 21px;
                    color: #f99e49;
                }

                .content .internal-content.search_results .main-content ul.in-produse li .details a.read-more {
                    margin-bottom: 0;
                }

        .content .internal-content.search_results .main-content ul.in-media {
            border-top: 1px solid #ccc;
            margin-bottom: 25px;
        }

            .content .internal-content.search_results .main-content ul.in-media li {
                border-bottom: 1px solid #ccc;
                display: inline-block;
                margin-bottom: 0;
                padding: 25px 0;
            }

                .content .internal-content.search_results .main-content ul.in-media li h3 {
                    line-height: 30px;
                    font-size: 28px;
                    margin-top: 0;
                }

                .content .internal-content.search_results .main-content ul.in-media li p {
                    font-size: 16px;
                }

                    .content .internal-content.search_results .main-content ul.in-media li p b {
                        font-weight: bold;
                    }

                .content .internal-content.search_results .main-content ul.in-media li a.more {
                    display: inline-block;
                    border: 1px solid #0061af;
                    padding: 10px 15px;
                    font-size: 16px;
                    color: #0061af;
                    float: left;
                    clear: both;
                    bottom: 25px;
                    border-radius: 3px;
                    -moz-border-radius: 3px;
                    -webkit-border-radius: 3px;
                }

                    .content .internal-content.search_results .main-content ul.in-media li a.more:hover {
                        text-decoration: none;
                        background: #0061af;
                        color: #fff;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 460px) {
    .content .internal-content.search_results form.search-form {
        margin: 15px 0 25px;
    }

    .content .internal-content.search_results .main-content ul.in-media li h3 {
        line-height: 24px;
        font-size: 21px;
    }

    .content .internal-content.search_results .main-content ul.in-media li p {
        font-size: 14px;
    }

    .content .internal-content.search_results .main-content ul.in-media li a.more {
        text-align: center;
        padding: 15px 0;
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .search_results form.search_form {
        margin: 0 0 25px;
    }

        .search_results form.search_form label {
            width: 100%;
        }

        .search_results form.search_form button {
            margin-top: 15px;
            width: 100%;
        }
}
/* =============================================================================
    o   CENTRU MEDIA
============================================================================= */
.centru_media .latest_news {
    padding-top: 0;
}

    .centru_media .latest_news h3.subtitle {
        text-transform: uppercase;
        display: inline-block;
        padding-bottom: 15px;
        font-weight: bold;
        margin-top: 25px;
        font-size: 14px;
        color: #0061af;
        width: 100%;
    }

    .centru_media .latest_news ul {
        margin-top: 0;
    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   PAGINA ARTICOLULUI
============================================================================= */
.article_page {
    padding: 25px 0 50px;
    max-width: 720px;
    color: #384050;
}

    .article_page span.date {
        text-transform: capitalize;
        display: inline-block;
        margin-bottom: 25px;
        width: 100%;
    }

    .article_page img {
        display: inline-block;
        margin-bottom: 15px;
        width: 100%;
    }

    .article_page p {
        padding-bottom: 15px;
        line-height: 24px;
        font-size: 14px;
    }

        .article_page p b, .article_page p strong {
            font-weight: bold;
        }

        .article_page p i, .article_page p em {
            font-style: italic;
        }

        .article_page p u {
            text-decoration: underline;
        }

        .article_page p a {
            text-decoration: underline;
            color: #0061af;
        }

            .article_page p a:hover {
                text-decoration: none;
                color: #f99e49;
            }

    .article_page h2 {
        font-family: Alpha Bank Sans, sans-serif;
        display: inline-block;
        line-height: 35px;
        font-size: 30px;
        margin: 15px 0;
        color: #0061af;
        width: 100%;
    }

    .article_page h3 {
        font-family: Alpha Bank Sans, sans-serif;
        display: inline-block;
        line-height: 30px;
        font-size: 25px;
        margin: 10px 0;
        color: #0061af;
        width: 100%;
    }

    .article_page h4 {
        font-family: Alpha Bank Sans, sans-serif;
        display: inline-block;
        line-height: 25px;
        font-size: 21px;
        margin: 10px 0;
        color: #0061af;
        width: 100%;
    }

    .article_page ul {
        list-style-type: disc;
    }

    .article_page ul, .article_page ol {
        font-size: 14px;
        width: 100%;
    }

        .article_page ul b, .article_page ul strong, .article_page ol b, .article_page ol strong {
            font-weight: bold;
        }

        .article_page ul i, .article_page ul em, .article_page ol i, .article_page ol em {
            font-style: italic;
        }

        .article_page ul u, .article_page ol u {
            text-decoration: underline;
        }

        .article_page ul a, .article_page ol a {
            text-decoration: underline;
            color: #0061af;
        }

            .article_page ul a:hover, .article_page ol a:hover {
                text-decoration: none;
                color: #f99e49;
            }

        .article_page ul.media-gallery, .article_page ol.media-gallery {
            display: inline-block;
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .article_page ul.media-gallery li, .article_page ol.media-gallery li {
                display: inline-block;
                background: #f4f4f4;
                padding: 10px;
                float: left;
                width: 25%;
            }

                .article_page ul.media-gallery li a, .article_page ol.media-gallery li a {
                    transition: all 0.5s ease;
                    display: inline-block;
                    position: relative;
                    background: #0061af;
                    width: 100%;
                    float: left;
                }

                    .article_page ul.media-gallery li a img, .article_page ol.media-gallery li a img {
                        transition: all 0.5s ease;
                        display: inline-block;
                        width: 100%;
                        float: left;
                        padding: 0;
                        margin: 0;
                        opacity: 1;
                    }

                    .article_page ul.media-gallery li a:after, .article_page ol.media-gallery li a:after {
                        background: url(../images/ui/search_ico.png) no-repeat;
                        transition: all 0.5s ease;
                        display: inline-block;
                        position: absolute;
                        height: 17px;
                        width: 17px;
                        content: '';
                        z-index: 1;
                        opacity: 0;
                        top: calc((100% - 17px)/2);
                        left: calc((100% - 17px)/2);
                    }

                    .article_page ul.media-gallery li a:hover img, .article_page ol.media-gallery li a:hover img {
                        opacity: .7;
                    }

                    .article_page ul.media-gallery li a:hover:after, .article_page ol.media-gallery li a:hover:after {
                        opacity: 1;
                    }

        .article_page ul.bxslider li {
            position: relative;
        }

            .article_page ul.bxslider li img {
                margin-bottom: 0;
            }

            .article_page ul.bxslider li:after {
                background: -moz-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
                background: -webkit-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
                background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
                display: inline-block;
                position: absolute;
                height: 100%;
                width: 100%;
                content: '';
                z-index: 1;
                bottom: 0;
                right: 0;
                left: 0;
                top: 0;
            }

    .article_page .download_files {
        display: inline-block;
        margin-top: 25px;
        width: 100%;
    }

        .article_page .download_files ul {
            display: inline-block;
            width: calc(100% + 30px);
            list-style: none;
            float: right;
            padding: 0;
            margin: 0;
            margin: 15px 0 25px -15px;
        }

            .article_page .download_files ul li {
                display: inline-block;
                margin-bottom: 25px;
                padding-left: 35px;
                float: left;
                width: 50%;
            }

                .article_page .download_files ul li:nth-child(odd) {
                    clear: both;
                }

                .article_page .download_files ul li a {
                    text-decoration: none;
                    display: inline-block;
                    padding-right: 15px;
                    font-weight: bold;
                    color: #1c3a72;
                    text-align: left;
                    font-size: 14px;
                    width: 100%;
                }

                    .article_page .download_files ul li a:before {
                        display: inline-block;
                        background: url(../images/ui/download.png);
                        position: relative;
                        height: 36px;
                        width: 36px;
                        content: '';
                        top: -3px;
                        float: left;
                        margin-right: 15px;
                    }

                    .article_page .download_files ul li a:hover {
                        text-decoration: none;
                        color: #00b1eb;
                    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 640px) {
    .article_page ul.media-gallery li,
    .article_page ol.media-gallery li {
        width: 33.3%;
    }
}

@media only screen and (max-width: 520px) {
    .article_page .download_files ul li {
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .article_page ul.media-gallery li,
    .article_page ol.media-gallery li {
        width: 50%;
    }
}
/* =============================================================================
    o   CAREERS
============================================================================= */
.careers ul.bxslider li {
    position: relative;
}

    .careers ul.bxslider li img {
        margin-bottom: 0;
    }

    .careers ul.bxslider li:after {
        background: -moz-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
        background: -webkit-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
        background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
        display: inline-block;
        position: absolute;
        height: 100%;
        width: 100%;
        content: '';
        z-index: 1;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
    }

.careers ul.list-jobs {
    display: inline-block;
    border-top: 1px solid #ccc;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .careers ul.list-jobs li {
        border-bottom: 1px solid #ccc;
        display: inline-block;
        padding: 15px 0 25px;
        width: 100%;
    }

        .careers ul.list-jobs li h3 {
            font-family: Alpha Bank Sans, sans-serif;
            display: inline-block;
            line-height: 16px;
            font-size: 24px;
            color: #000;
        }

            .careers ul.list-jobs li h3 b {
                text-transform: uppercase;
                display: inline-block;
                font-weight: bold;
                font-size: 13px;
                color: #666;
            }

            .careers ul.list-jobs li h3 small {
                display: inline-block;
                font-size: 16px;
                width: 100%;
                color: #666;
            }

        .careers ul.list-jobs li p {
            display: inline-block;
            margin-bottom: 25px !important;
            font-size: 14px;
        }

        .careers ul.list-jobs li .form {
            display: none;
            width: calc(100% + 30px);
            margin-left: -15px;
        }

            .careers ul.list-jobs li .form h4 {
                font-family: Alpha Bank Sans, sans-serif;
                display: inline-block;
                font-size: 21px;
                color: #000;
                width: calc(100% - 15px);
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
            }

            .careers ul.list-jobs li .form label {
                display: inline-block;
                margin-bottom: 25px;
                text-align: center;
                padding: 0 15px;
                float: left;
                width: 50%;
            }

                .careers ul.list-jobs li .form label:nth-child(even) {
                    clear: both;
                }

                .careers ul.list-jobs li .form label input, .careers ul.list-jobs li .form label select, .careers ul.list-jobs li .form label textarea {
                    font-family: Arial, sans-serif;
                    display: inline-block;
                    line-height: 22px;
                    background: none;
                    padding: 10px 0;
                    font-size: 16px;
                    outline: none;
                    border: none;
                    width: 100%;
                    max-width: 100%;
                    border-bottom: 1px solid #ababac;
                }

                    .careers ul.list-jobs li .form label input:focus, .careers ul.list-jobs li .form label select:focus, .careers ul.list-jobs li .form label textarea:focus {
                        border-color: #0061af;
                    }

                .careers ul.list-jobs li .form label input {
                    padding: 11px 0;
                }

                .careers ul.list-jobs li .form label.textarea {
                    width: 100%;
                }

                .careers ul.list-jobs li .form label span.error {
                    display: none;
                    text-align: left;
                    margin-top: 10px;
                    font-size: 13px;
                    width: 100%;
                    color: red;
                }

                .careers ul.list-jobs li .form label.error input, .careers ul.list-jobs li .form label.error select {
                    border-color: red;
                }

                .careers ul.list-jobs li .form label.error span.error {
                    display: inline-block;
                }

                .careers ul.list-jobs li .form label.filupp {
                    transition: all 0.5s ease;
                    position: relative;
                    cursor: pointer;
                    display: block;
                    font-size: 1em;
                    height: 3.5em;
                    padding: 1em;
                    color: #0061af;
                    width: auto;
                    margin-bottom: 15px;
                    padding-right: 50px;
                    font-weight: bold;
                    font-size: 14px;
                }

                    .careers ul.list-jobs li .form label.filupp > input[type="file"] {
                        position: absolute;
                        width: 1px;
                        height: 1px;
                        padding: 0;
                        margin: -1px;
                        overflow: hidden;
                        clip: rect(0, 0, 0, 0);
                        border: 0;
                    }

                    .careers ul.list-jobs li .form label.filupp:after {
                        background-image: url(../images/ui/arrow.png);
                        background-repeat: no-repeat;
                        background-size: 100% auto;
                        display: inline-block;
                        margin-left: 10px;
                        position: absolute;
                        content: '';
                        height: 30px;
                        width: 30px;
                        top: 10px;
                        right: 0;
                    }

                    .careers ul.list-jobs li .form label.filupp:hover {
                        color: #f99e49;
                    }

            .careers ul.list-jobs li .form .g-recaptcha {
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
                clear: both;
                float: left;
            }

            .careers ul.list-jobs li .form button {
                display: inline-block;
                padding: 15px 25px;
                background: none;
                cursor: pointer;
                font-size: 16px;
                outline: none;
                border: none;
                float: left;
                border: 1px solid #f99e49;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .careers ul.list-jobs li .form button[type="reset"] {
                    border: 1px solid #0061af;
                    margin-right: 15px;
                    margin-left: 15px;
                    color: #0061af;
                    clear: both;
                }

                    .careers ul.list-jobs li .form button[type="reset"]:hover {
                        background: #0061af;
                        color: #fff;
                    }

                .careers ul.list-jobs li .form button[type="submit"] {
                    background: #f99e49;
                    color: #fff;
                }

                    .careers ul.list-jobs li .form button[type="submit"]:hover {
                        background: #f78418;
                        border-color: #f78418;
                    }

            .careers ul.list-jobs li .form b {
                display: inline-block;
                margin: 15px 0 25px 15px;
                font-weight: bold;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

        .careers ul.list-jobs li a {
            display: inline-block;
            padding: 15px 25px;
            float: left;
        }

            .careers ul.list-jobs li a.aplica-online {
                border: 1px solid #f99e49;
                font-weight: bold;
                font-size: 14px;
                color: #f99e49;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .careers ul.list-jobs li a.aplica-online:hover {
                    text-decoration: none;
                    background: #f99e49;
                    color: #fff;
                }

            .careers ul.list-jobs li a.download_pdf {
                padding-right: 45px;
                position: relative;
                font-size: 14px;
                color: #0061af;
                float: left;
            }

                .careers ul.list-jobs li a.download_pdf:after {
                    background-image: url(../images/ui/arrow.png);
                    background-repeat: no-repeat;
                    background-size: 100% auto;
                    display: inline-block;
                    margin-left: 10px;
                    position: absolute;
                    content: '';
                    height: 30px;
                    width: 30px;
                    top: 10px;
                    right: 0;
                }

                .careers ul.list-jobs li a.download_pdf:hover {
                    text-decoration: none;
                    color: #f99e49;
                }

.trimite_cv {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

    .trimite_cv .wrapper {
        display: inline-block;
        width: calc(100% - 400px);
        float: right;
    }

        .trimite_cv .wrapper .form {
            display: inline-block;
            width: calc(100% + 30px);
            margin-left: -15px;
            margin-top: 35px;
        }

            .trimite_cv .wrapper .form h4 {
                font-family: Alpha Bank Sans, sans-serif;
                display: inline-block;
                font-size: 21px;
                color: #000;
                width: calc(100% - 15px);
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
            }

            .trimite_cv .wrapper .form label {
                display: inline-block;
                margin-bottom: 25px;
                text-align: center;
                padding: 0 15px;
                float: left;
                width: 50%;
            }

                .trimite_cv .wrapper .form label:nth-child(even) {
                    clear: both;
                }

                .trimite_cv .wrapper .form label input, .trimite_cv .wrapper .form label select, .trimite_cv .wrapper .form label textarea {
                    font-family: Arial, sans-serif;
                    display: inline-block;
                    line-height: 22px;
                    background: none;
                    padding: 10px 0;
                    font-size: 16px;
                    outline: none;
                    border: none;
                    width: 100%;
                    max-width: 100%;
                    border-bottom: 1px solid #ababac;
                }

                    .trimite_cv .wrapper .form label input:focus, .trimite_cv .wrapper .form label select:focus, .trimite_cv .wrapper .form label textarea:focus {
                        border-color: #0061af;
                    }

                .trimite_cv .wrapper .form label input {
                    padding: 11px 0;
                }

                .trimite_cv .wrapper .form label.textarea {
                    width: 100%;
                }

                .trimite_cv .wrapper .form label span.error {
                    display: none;
                    text-align: left;
                    margin-top: 10px;
                    font-size: 13px;
                    width: 100%;
                    color: red;
                }

                .trimite_cv .wrapper .form label.error input, .trimite_cv .wrapper .form label.error select {
                    border-color: red;
                }

                .trimite_cv .wrapper .form label.error span.error {
                    display: inline-block;
                }

                .trimite_cv .wrapper .form label.filupp {
                    transition: all 0.5s ease;
                    position: relative;
                    cursor: pointer;
                    display: block;
                    font-size: 1em;
                    height: 3.5em;
                    padding: 1em;
                    color: #0061af;
                    width: auto;
                    margin-bottom: 15px;
                    padding-right: 50px;
                    font-weight: bold;
                    font-size: 14px;
                }

                    .trimite_cv .wrapper .form label.filupp > input[type="file"] {
                        position: absolute;
                        width: 1px;
                        height: 1px;
                        padding: 0;
                        margin: -1px;
                        overflow: hidden;
                        clip: rect(0, 0, 0, 0);
                        border: 0;
                    }

                    .trimite_cv .wrapper .form label.filupp:after {
                        background-image: url(../images/ui/arrow.png);
                        background-repeat: no-repeat;
                        background-size: 100% auto;
                        display: inline-block;
                        margin-left: 10px;
                        position: absolute;
                        content: '';
                        height: 30px;
                        width: 30px;
                        top: 10px;
                        right: 0;
                    }

                    .trimite_cv .wrapper .form label.filupp:hover {
                        color: #f99e49;
                    }

            .trimite_cv .wrapper .form .g-recaptcha {
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
                clear: both;
                float: left;
            }

            .trimite_cv .wrapper .form button {
                display: inline-block;
                padding: 15px 25px;
                background: none;
                cursor: pointer;
                font-size: 16px;
                outline: none;
                border: none;
                float: left;
                border: 1px solid #f99e49;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .trimite_cv .wrapper .form button[type="reset"] {
                    border: 1px solid #0061af;
                    margin-right: 15px;
                    margin-left: 15px;
                    color: #0061af;
                    clear: both;
                }

                    .trimite_cv .wrapper .form button[type="reset"]:hover {
                        background: #0061af;
                        color: #fff;
                    }

                .trimite_cv .wrapper .form button[type="submit"] {
                    background: #f99e49;
                    color: #fff;
                }

                    .trimite_cv .wrapper .form button[type="submit"]:hover {
                        background: #f78418;
                        border-color: #f78418;
                    }

            .trimite_cv .wrapper .form b {
                display: inline-block;
                margin: 15px 0 25px 15px;
                font-weight: bold;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 570px) {
    .trimite_cv .wrapper .form label,
    .careers ul.list-jobs li .form label {
        width: 100%;
    }

    .trimite_cv .wrapper .form button[type="reset"],
    .careers ul.list-jobs li .form button[type="reset"] {
        width: calc(100% - 30px);
        margin-bottom: 15px;
        padding: 20px 25px;
    }

    .trimite_cv .wrapper .form button[type="submit"],
    .careers ul.list-jobs li .form button[type="submit"] {
        width: calc(100% - 30px);
        margin-bottom: 15px;
        padding: 20px 25px;
        margin-left: 15px;
    }

    .trimite_cv .wrapper .form a.download_pdf,
    .careers ul.list-jobs li .form a.download_pdf {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 430px) {
    .careers ul.list-jobs li a.aplica-online {
        text-align: center;
        padding: 20px 0;
        width: 100%;
    }

    .careers ul.list-jobs li a.download_pdf {
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }

        .careers ul.list-jobs li a.download_pdf:before {
            right: 25px;
        }
}
/* =============================================================================
    o   ADS
============================================================================= */
.anunturi ul.lista-anunturi {
    display: inline-block;
    border-top: 1px solid #ccc;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .anunturi ul.lista-anunturi li {
        border-bottom: 1px solid #ccc;
        display: inline-block;
        padding: 15px 0 25px;
        width: 100%;
    }

        .anunturi ul.lista-anunturi li h3 {
            font-family: Alpha Bank Sans, sans-serif;
            display: inline-block;
            width: calc(100% - 370px) !important;
            line-height: 30px;
            font-size: 24px;
            color: #000;
            float: left;
        }

            .anunturi ul.lista-anunturi li h3 b {
                text-transform: uppercase;
                font-weight: bold;
                font-size: 13px;
                display: block;
                color: #666;
            }

        .anunturi ul.lista-anunturi li .buttons {
            display: inline-block;
            float: right;
            width: 50%;
        }

            .anunturi ul.lista-anunturi li .buttons a {
                float: right;
                border-color: #0061af !important;
                color: #0061af !important;
            }

                .anunturi ul.lista-anunturi li .buttons a:hover {
                    background: #0061af !important;
                    color: #fff !important;
                }

        .anunturi ul.lista-anunturi li p {
            display: inline-block;
            margin-bottom: 25px !important;
            font-size: 14px;
        }

        .anunturi ul.lista-anunturi li .form {
            display: none;
            width: calc(100% + 30px);
            margin-left: -15px;
        }

            .anunturi ul.lista-anunturi li .form h4 {
                font-family: Alpha Bank Sans, sans-serif;
                display: inline-block;
                font-size: 21px;
                color: #000;
                width: calc(100% - 15px);
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
            }

            .anunturi ul.lista-anunturi li .form label {
                display: inline-block;
                margin-bottom: 25px;
                text-align: center;
                padding: 0 15px;
                float: left;
                width: 50%;
            }

                .anunturi ul.lista-anunturi li .form label.euro {
                    position: relative;
                    /*&:after{
          	text-transform: uppercase;
          	display: inline-block;
          	position: absolute;
          	font-weight: bold;
          	content: 'eur';
          	font-size: 11px;
          	right: 15px;
          	top: 15px;
          }*/
                }

                .anunturi ul.lista-anunturi li .form label:nth-child(even) {
                    clear: both;
                }

                .anunturi ul.lista-anunturi li .form label input, .anunturi ul.lista-anunturi li .form label select, .anunturi ul.lista-anunturi li .form label textarea {
                    font-family: Arial, sans-serif;
                    display: inline-block;
                    line-height: 22px;
                    background: none;
                    padding: 10px 0;
                    font-size: 16px;
                    outline: none;
                    border: none;
                    width: 100%;
                    max-width: 100%;
                    border-bottom: 1px solid #ababac;
                }

                    .anunturi ul.lista-anunturi li .form label input:focus, .anunturi ul.lista-anunturi li .form label select:focus, .anunturi ul.lista-anunturi li .form label textarea:focus {
                        border-color: #0061af;
                    }

                .anunturi ul.lista-anunturi li .form label input {
                    padding: 11px 0;
                }

                .anunturi ul.lista-anunturi li .form label.textarea {
                    width: 100%;
                }

                .anunturi ul.lista-anunturi li .form label span.error {
                    display: none;
                    text-align: left;
                    margin-top: 10px;
                    font-size: 13px;
                    width: 100%;
                    color: red;
                }

                .anunturi ul.lista-anunturi li .form label.error input, .anunturi ul.lista-anunturi li .form label.error select {
                    border-color: red;
                }

                .anunturi ul.lista-anunturi li .form label.error span.error {
                    display: inline-block;
                }

                .anunturi ul.lista-anunturi li .form label.filupp {
                    transition: all 0.5s ease;
                    position: relative;
                    cursor: pointer;
                    display: block;
                    font-size: 1em;
                    height: 3.5em;
                    padding: 1em;
                    color: #0061af;
                    width: auto;
                    margin-bottom: 15px;
                    padding-right: 50px;
                    font-weight: bold;
                    font-size: 14px;
                }

                    .anunturi ul.lista-anunturi li .form label.filupp > input[type="file"] {
                        position: absolute;
                        width: 1px;
                        height: 1px;
                        padding: 0;
                        margin: -1px;
                        overflow: hidden;
                        clip: rect(0, 0, 0, 0);
                        border: 0;
                    }

                    .anunturi ul.lista-anunturi li .form label.filupp:after {
                        background-image: url(../images/ui/arrow.png);
                        background-repeat: no-repeat;
                        background-size: 100% auto;
                        display: inline-block;
                        margin-left: 10px;
                        position: absolute;
                        content: '';
                        height: 30px;
                        width: 30px;
                        top: 10px;
                        right: 0;
                    }

                    .anunturi ul.lista-anunturi li .form label.filupp:hover {
                        color: #f99e49;
                    }

            .anunturi ul.lista-anunturi li .form .g-recaptcha {
                display: inline-block;
                margin-bottom: 25px;
                margin-left: 15px;
                clear: both;
                float: left;
            }

            .anunturi ul.lista-anunturi li .form button {
                display: inline-block;
                padding: 15px 25px;
                background: none;
                cursor: pointer;
                font-size: 16px;
                outline: none;
                border: none;
                float: left;
                border: 1px solid #f99e49;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .anunturi ul.lista-anunturi li .form button[type="reset"] {
                    border: 1px solid #0061af;
                    margin-right: 15px;
                    margin-left: 15px;
                    color: #0061af;
                    clear: both;
                }

                    .anunturi ul.lista-anunturi li .form button[type="reset"]:hover {
                        background: #0061af;
                        color: #fff;
                    }

                .anunturi ul.lista-anunturi li .form button[type="submit"] {
                    background: #f99e49;
                    color: #fff;
                }

                    .anunturi ul.lista-anunturi li .form button[type="submit"]:hover {
                        background: #f78418;
                        border-color: #f78418;
                    }

            .anunturi ul.lista-anunturi li .form b {
                display: inline-block;
                margin: 15px 0 25px 15px;
                font-weight: bold;
                font-size: 16px;
                color: #000;
                width: 100%;
            }

        .anunturi ul.lista-anunturi li a {
            display: inline-block;
            padding: 15px 25px;
            float: left;
        }

            .anunturi ul.lista-anunturi li a.aplica-online {
                border: 1px solid #f99e49;
                font-weight: bold;
                font-size: 14px;
                color: #f99e49;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

                .anunturi ul.lista-anunturi li a.aplica-online:hover {
                    text-decoration: none;
                    background: #f99e49;
                    color: #fff;
                }

            .anunturi ul.lista-anunturi li a.download_pdf {
                padding-right: 45px;
                position: relative;
                font-size: 14px;
                color: #0061af;
                float: left;
            }

                .anunturi ul.lista-anunturi li a.download_pdf:after {
                    background-image: url(../images/ui/arrow.png);
                    background-repeat: no-repeat;
                    background-size: 100% auto;
                    display: inline-block;
                    margin-left: 10px;
                    position: absolute;
                    content: '';
                    height: 30px;
                    width: 30px;
                    top: 10px;
                    right: 0;
                }

                .anunturi ul.lista-anunturi li a.download_pdf:hover {
                    background: none !important;
                    text-decoration: none;
                    color: #f99e49 !important;
                }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1240px) {
    .anunturi ul.lista-anunturi li h3 {
        width: calc(100% - 180px) !important;
    }

    .anunturi ul.lista-anunturi li .buttons {
        width: auto;
    }

    .anunturi ul.lista-anunturi li a.download_pdf {
        clear: both;
        float: right;
    }

    .anunturi ul.lista-anunturi li .form a.download_pdf {
        clear: none;
        float: left;
    }
}

@media only screen and (max-width: 570px) {
    .anunturi ul.lista-anunturi li h3 {
        width: 100% !important;
    }

    .anunturi ul.lista-anunturi li .buttons {
        width: 100%;
    }

        .anunturi ul.lista-anunturi li .buttons a.download_pdf {
            clear: none;
            float: none;
        }

    .anunturi ul.lista-anunturi li .form label {
        width: 100%;
    }

    .anunturi ul.lista-anunturi li .form button[type="reset"] {
        width: calc(100% - 30px);
        margin-bottom: 15px;
        padding: 20px 25px;
    }

    .anunturi ul.lista-anunturi li .form button[type="submit"] {
        width: calc(100% - 30px);
        margin-bottom: 15px;
        padding: 20px 25px;
        margin-left: 15px;
    }

    .anunturi ul.lista-anunturi li .form a.download_pdf {
        width: calc(100% - 30px);
        float: none;
    }
}

@media only screen and (max-width: 430px) {
    .anunturi ul.lista-anunturi li a.aplica-online {
        text-align: center;
        padding: 20px 0;
        width: 100%;
    }

    .anunturi ul.lista-anunturi li a.download_pdf {
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }

        .anunturi ul.lista-anunturi li a.download_pdf:before {
            right: 25px;
        }
}
/* =============================================================================
    o   CINE SUNTEM
============================================================================= */
.internal-content.with_sidebar .main-content.cine_suntem h3 {
    font-size: 28px;
}

.internal-content.with_sidebar .main-content.cine_suntem p {
    font-size: 16px;
}

    .internal-content.with_sidebar .main-content.cine_suntem p b, .internal-content.with_sidebar .main-content.cine_suntem p strong {
        font-weight: bold;
    }

        .internal-content.with_sidebar .main-content.cine_suntem p b.blue, .internal-content.with_sidebar .main-content.cine_suntem p strong.blue {
            color: #0061af;
        }

    .internal-content.with_sidebar .main-content.cine_suntem p i, .internal-content.with_sidebar .main-content.cine_suntem p em {
        font-style: italic;
    }

    .internal-content.with_sidebar .main-content.cine_suntem p a {
        color: #0061af;
    }

.internal-content.with_sidebar .main-content.cine_suntem ul, .internal-content.with_sidebar .main-content.cine_suntem ol {
    font-size: 14px;
}

    .internal-content.with_sidebar .main-content.cine_suntem ul b, .internal-content.with_sidebar .main-content.cine_suntem ul strong, .internal-content.with_sidebar .main-content.cine_suntem ol b, .internal-content.with_sidebar .main-content.cine_suntem ol strong {
        font-weight: bold;
    }

    .internal-content.with_sidebar .main-content.cine_suntem ul i, .internal-content.with_sidebar .main-content.cine_suntem ul em, .internal-content.with_sidebar .main-content.cine_suntem ol i, .internal-content.with_sidebar .main-content.cine_suntem ol em {
        font-style: italic;
    }

    .internal-content.with_sidebar .main-content.cine_suntem ul u, .internal-content.with_sidebar .main-content.cine_suntem ol u {
        text-decoration: underline;
    }

    .internal-content.with_sidebar .main-content.cine_suntem ul p a, .internal-content.with_sidebar .main-content.cine_suntem ol p a {
        text-decoration: underline;
    }

        .internal-content.with_sidebar .main-content.cine_suntem ul p a:hover, .internal-content.with_sidebar .main-content.cine_suntem ol p a:hover {
            text-decoration: none;
            color: #f99e49;
        }

.internal-content.with_sidebar .main-content.cine_suntem h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: #0061af;
}

.internal-content.with_sidebar .main-content iframe {
    display: inline-block;
    min-height: 460px;
    margin: 15px 0;
    width: 100%;
}

@media only screen and (max-width: 460px) {
    .internal-content.with_sidebar .main-content iframe {
        min-height: 320px;
    }
}

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   LOCATII
============================================================================= */
.internal-content.with_sidebar .main-content.pagina-locatii .announcements {
    margin-bottom: 15px;
}

    .internal-content.with_sidebar .main-content.pagina-locatii .announcements .container {
        width: 100%;
    }

.internal-content.with_sidebar .main-content.pagina-locatii .toggle-view {
    display: inline-block;
    margin-bottom: 10px;
    float: right;
}

    .internal-content.with_sidebar .main-content.pagina-locatii .toggle-view a {
        display: inline-block;
        margin-left: 15px;
        color: #384050;
        font-weight: bold;
        font-size: 13px;
    }

        .internal-content.with_sidebar .main-content.pagina-locatii .toggle-view a i {
            margin-right: 5px;
        }

        .internal-content.with_sidebar .main-content.pagina-locatii .toggle-view a.active, .internal-content.with_sidebar .main-content.pagina-locatii .toggle-view a:hover {
            text-decoration: none;
            color: #0061af;
        }

.internal-content.with_sidebar .main-content.pagina-locatii #map {
    background-color: grey;
    height: 500px;
    width: 100%;
}

    .internal-content.with_sidebar .main-content.pagina-locatii #map .infowindow {
        display: inline-block;
        text-align: left;
        font-size: 16px;
        width: 250px;
    }

        .internal-content.with_sidebar .main-content.pagina-locatii #map .infowindow p {
            margin: 10px 0;
            color: #000;
        }

            .internal-content.with_sidebar .main-content.pagina-locatii #map .infowindow p span {
                font-weight: bold;
            }

            .internal-content.with_sidebar .main-content.pagina-locatii #map .infowindow p a {
                display: inline-block;
                font-weight: bold;
                color: #f99e49;
            }

                .internal-content.with_sidebar .main-content.pagina-locatii #map .infowindow p a:hover {
                    text-decoration: none;
                }

.internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii {
    display: none;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li {
        border-bottom: 1px solid #d6d6d6;
        border-top: 1px solid #d6d6d6;
        display: inline-block;
        margin-bottom: 25px;
        background: #f5f5f6;
        padding: 25px;
        width: 100%;
    }

        .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li h3 {
            display: inline-block;
            line-height: 28px;
            font-size: 25px;
            padding: 0;
            margin: 0;
        }

        .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li span.hours {
            text-transform: uppercase;
            display: inline-block;
            font-weight: bold;
            font-size: 12px;
            color: #13ac5e;
        }

            .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li span.hours:before {
                display: inline-block;
                background: #13ac5e;
                margin-right: 10px;
                position: relative;
                height: 7px;
                width: 7px;
                content: '';
                top: -1px;
                border-radius: 50%;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
            }

            .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li span.hours.closed {
                color: red;
            }

                .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li span.hours.closed:before {
                    background: red;
                }

        .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul {
            display: inline-block;
            list-style: none;
            padding: 0;
            margin: 0;
            margin: 25px 0;
            width: 100%;
            float: left;
        }

            .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul li {
                margin-bottom: 10px;
            }

                .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul li a {
                    font-weight: bold;
                    color: #0061af;
                }

                    .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul li a.read-more {
                        margin-left: 15px;
                        margin-bottom: 0;
                        float: none;
                        clear: none;
                    }

                .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul li i {
                    display: inline-block;
                    margin-top: 3px;
                    color: #0061af;
                    width: 25px;
                    float: left;
                }

                .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li ul li:last-child {
                    margin-bottom: 0;
                }

        .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii > li p {
            font-style: italic;
            margin-bottom: 0;
        }

    .internal-content.with_sidebar .main-content.pagina-locatii ul.lista-locatii + .pagination {
        display: none;
    }

.locatiiContainer .sidebar .form label {
    margin-bottom: 15px;
}

    .locatiiContainer .sidebar .form label select {
        padding: 15px 0;
    }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
/* =============================================================================
    o   RESPONSABILITATE SOCIALA
============================================================================= */
.internal-content.with_sidebar .main-content p img {
    width: 100% !important;
    height: auto !important;
}

    .internal-content.with_sidebar .main-content p img.autofit {
        width: auto !important;
    }

.internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate {
    display: inline-block;
    padding: 0;
    margin: 0;
    /*width: 100%;*/
    margin-top: 25px;
}

    .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li {
        display: inline-block;
        float: left;
        width: 100%;
    }

        .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li:hover a img {
            transform: scale(1.1);
        }

        .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a {
            display: inline-block;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

            .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a img {
                transition: all 0.5s ease;
                display: inline-block;
                float: left;
                width: 100%;
            }

            .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a span {
                background: rgba(0, 0, 0, 0.4);
                transition: all 0.5s ease;
                display: inline-block;
                position: absolute;
                z-index: 1;
                bottom: 0;
                right: 0;
                left: 0;
                top: 0;
            }

                .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a span h4 {
                    display: inline-block;
                    font-family: Alpha Bank Sans, sans-serif;
                    margin-right: 50px;
                    position: absolute;
                    line-height: 26px;
                    font-size: 24px;
                    max-width: 300px;
                    width: 100%;
                    float: left;
                    color: #fff;
                    left: 25px;
                    bottom: 95px;
                }

                .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a span b {
                    transition: all 0.5s ease;
                    display: inline-block;
                    padding: 10px 15px;
                    margin-top: 25px;
                    background: #fff;
                    font-size: 16px;
                    color: #0061af;
                    position: absolute;
                    bottom: 15px;
                    left: 25px;
                    float: left;
                    clear: both;
                    bottom: 25px;
                    border-radius: 3px;
                    -moz-border-radius: 3px;
                    -webkit-border-radius: 3px;
                }

            .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a:hover span b {
                background: #0061af;
                color: #fff;
            }

                .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a:hover span b:hover {
                    background: #00457c;
                }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 420px) {
    .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a img {
        padding-top: 50px;
    }

    .internal-content.with_sidebar .main-content.responsabilitate-sociala ul.lista_responsabilitate li a span h4 {
        font-size: 21px;
        line-height: 23px;
        width: 200px;
        text-align: left;
    }
}
/* =============================================================================
    o   CONTACT PAGE
============================================================================= */
.content .contact_page h3 {
    font-family: Alpha Bank Sans, sans-serif;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 21px;
    color: #000;
    width: 100%;
}

    .content .contact_page h3:first-of-type {
        margin-top: 25px;
    }

.content .contact_page .form {
    display: inline-block;
    width: calc(100% - 350px);
    padding-bottom: 50px;
}

    .content .contact_page .form label {
        display: inline-block;
        margin-bottom: 25px;
        text-align: center;
        float: left;
        width: 100%;
    }

        .content .contact_page .form label:nth-child(even) {
            clear: both;
        }

        .content .contact_page .form label input, .content .contact_page .form label select, .content .contact_page .form label textarea {
            font-family: Arial, sans-serif;
            display: inline-block;
            line-height: 22px;
            background: none;
            padding: 10px 0;
            font-size: 16px;
            outline: none;
            border: none;
            width: 100%;
            max-width: 100%;
            border-bottom: 1px solid #ababac;
        }

            .content .contact_page .form label input:focus, .content .contact_page .form label select:focus, .content .contact_page .form label textarea:focus {
                border-color: #0061af;
            }

        .content .contact_page .form label input {
            padding: 11px 0;
        }

        .content .contact_page .form label.textarea {
            width: 100%;
        }

        .content .contact_page .form label span.error {
            display: none;
            text-align: left;
            margin-top: 10px;
            font-size: 13px;
            width: 100%;
            color: red;
        }

        .content .contact_page .form label.error input, .content .contact_page .form label.error select {
            border-color: red;
        }

        .content .contact_page .form label.error span.error {
            display: inline-block;
        }

        .content .contact_page .form label.filupp {
            transition: all 0.5s ease;
            position: relative;
            cursor: pointer;
            display: block;
            font-size: 1em;
            height: 3.5em;
            padding: 1em;
            color: #0061af;
            width: auto;
            margin-bottom: 15px;
            padding-right: 50px;
            font-weight: bold;
            font-size: 14px;
        }

            .content .contact_page .form label.filupp > input[type="file"] {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                border: 0;
            }

            .content .contact_page .form label.filupp:after {
                background-image: url(../images/ui/arrow.png);
                background-repeat: no-repeat;
                background-size: 100% auto;
                display: inline-block;
                margin-left: 10px;
                position: absolute;
                content: '';
                height: 30px;
                width: 30px;
                top: 10px;
                right: 0;
            }

            .content .contact_page .form label.filupp:hover {
                color: #f99e49;
            }

    .content .contact_page .form .g-recaptcha {
        display: inline-block;
        margin-bottom: 25px;
        clear: both;
        float: left;
    }

    .content .contact_page .form button {
        display: inline-block;
        padding: 15px 25px;
        background: none;
        cursor: pointer;
        font-size: 16px;
        outline: none;
        border: none;
        float: left;
        clear: both;
        border: 1px solid #f99e49;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .content .contact_page .form button[type="reset"] {
            border: 1px solid #0061af;
            margin-right: 15px;
            margin-left: 15px;
            color: #0061af;
            clear: both;
        }

            .content .contact_page .form button[type="reset"]:hover {
                background: #0061af;
                color: #fff;
            }

        .content .contact_page .form button[type="submit"] {
            background: #f99e49;
            color: #fff;
        }

            .content .contact_page .form button[type="submit"]:hover {
                background: #f78418;
                border-color: #f78418;
            }

    .content .contact_page .form b {
        display: inline-block;
        margin: 15px 0 25px 15px;
        font-weight: bold;
        font-size: 16px;
        color: #000;
        width: 100%;
    }

.content .contact_page .contact-details {
    display: inline-block;
    width: 300px;
    float: right;
}

    .content .contact_page .contact-details h3 {
        margin-bottom: 10px;
    }

    .content .contact_page .contact-details p {
        display: inline-block;
        font-size: 14px;
        width: 100%;
    }

    .content .contact_page .contact-details ul {
        display: inline-block;
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
        margin: 15px 0;
    }

        .content .contact_page .contact-details ul li {
            width: calc(100% - 25px);
            display: inline-block;
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
            color: #384050;
        }

            .content .contact_page .contact-details ul li a {
                display: inline-block;
                color: #0061af;
            }

                .content .contact_page .contact-details ul li a.read-more {
                    padding-right: 25px;
                    position: relative;
                    font-size: 14px;
                    color: #0061af;
                    float: left;
                    clear: both;
                }

                    .content .contact_page .contact-details ul li a.read-more:after {
                        background-image: url(../images/ui/arrow.png);
                        background-repeat: no-repeat;
                        background-size: 100% auto;
                        display: inline-block;
                        position: absolute;
                        content: '';
                        height: 15px;
                        width: 15px;
                        top: 4px;
                        right: 0;
                    }

                    .content .contact_page .contact-details ul li a.read-more:hover {
                        color: #f99e49;
                    }

                .content .contact_page .contact-details ul li a:hover {
                    text-decoration: none;
                    color: #f99e49;
                }

            .content .contact_page .contact-details ul li i {
                display: inline-block;
                position: absolute;
                color: #0061af;
                left: 0;
                top: 4px;
            }

.DnnModule.DnnModule-EBSCoreFormPanel.DnnModule-2600 {
    width: calc(100% - 350px);
}

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 780px) {
    .content .contact_page .contact-details {
        width: 100%;
    }

    .content .contact_page .form {
        width: 100%;
    }

    .DnnModule.DnnModule-EBSCoreFormPanel.DnnModule-2600 {
        width: 100%;
    }
}

@media only screen and (max-width: 570px) {
    .content .contact_page .form button {
        text-align: center;
        padding: 20px 0;
        width: 100%;
    }
}
/* =============================================================================
    o   FAVORITE
============================================================================= */
.favorite-page .produse_recomandate {
    padding: 25px 0 75px;
}

.favorite-page .linkuri_favorite {
    text-align: center;
    margin-top: 50px;
}

    .favorite-page .linkuri_favorite h3 {
        font-family: Alpha Bank Sans, sans-serif;
        display: inline-block;
        font-size: 21px;
        color: #000;
        width: 100%;
    }

    .favorite-page .linkuri_favorite p {
        display: inline-block;
        text-align: center;
        font-size: 16px;
        width: 100%;
    }

    .favorite-page .linkuri_favorite ul {
        border-bottom: 0;
        max-width: 640px;
        margin: 50px 0;
    }

        .favorite-page .linkuri_favorite ul li {
            width: calc(100% / 4.1);
            float: none;
        }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 640px) {
    .favorite-page .linkuri_favorite ul li {
        width: 33.3%;
        float: left;
        clear: none;
    }

        .favorite-page .linkuri_favorite ul li:nth-child(3n+1) {
            clear: both;
        }
}

@media only screen and (max-width: 460px) {
    .favorite-page .linkuri_favorite ul li {
        width: 50%;
        clear: none;
    }

        .favorite-page .linkuri_favorite ul li:nth-child(3n+1) {
            clear: none;
        }

        .favorite-page .linkuri_favorite ul li:nth-child(odd) {
            clear: both;
        }
}
/* =============================================================================
    o   REDUCERI
============================================================================= */
.reduceri_page {
    margin-top: 50px;
}

    .reduceri_page .title_section {
        display: inline-block;
        margin-bottom: 50px;
        width: 100%;
    }

        .reduceri_page .title_section .details {
            display: inline-block;
            max-width: calc(100% - 200px);
            padding-right: 25px;
            width: 100%;
            float: left;
        }

            .reduceri_page .title_section .details p {
                margin-top: 15px;
            }

        .reduceri_page .title_section a.more {
            display: inline-block;
            padding: 15px 20px;
            background: #0061af;
            font-size: 14px;
            float: right;
            color: #fff;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

            .reduceri_page .title_section a.more:hover {
                text-decoration: none;
                background: #005396;
            }

    .reduceri_page .sidebar {
        padding: 0;
    }

        .reduceri_page .sidebar ul li {
            margin-bottom: 15px;
            background: none;
            padding: 0;
        }

            .reduceri_page .sidebar ul li .form {
                display: inline-block;
                position: relative;
                width: 100%;
                margin: 0;
            }

                .reduceri_page .sidebar ul li .form label {
                    display: inline-block;
                    width: 100%;
                    padding: 0;
                }

                    .reduceri_page .sidebar ul li .form label input {
                        border-color: #ccc;
                        text-indent: 41px;
                    }

                        .reduceri_page .sidebar ul li .form label input:focus {
                            border-color: #0061af;
                        }

                .reduceri_page .sidebar ul li .form button {
                    background: url(../images/ui/search_ico2.png) center center no-repeat;
                    display: inline-block;
                    position: absolute;
                    cursor: pointer;
                    outline: none;
                    border: none;
                    height: 41px;
                    width: 41px;
                    padding: 0;
                    margin: 0;
                    left: 0;
                    top: 0;
                }

            .reduceri_page .sidebar ul li select {
                display: inline-block;
                font-size: 14px;
                padding: 15px 0;
                outline: none;
                border: none;
                width: 100%;
                border-bottom: 1px solid #ccc;
            }

                .reduceri_page .sidebar ul li select:focus {
                    border-color: #0061af;
                }

    .reduceri_page .main-content {
        display: inline-block;
        width: calc(100% - 400px);
        padding-bottom: 50px;
        color: #384050;
        float: right;
    }

        .reduceri_page .main-content ul.list_comercianti {
            display: inline-block;
            border-top: 1px solid #ccc;
            margin-bottom: 25px;
            padding-top: 10px;
            list-style: none;
            width: 100%;
            padding: 0;
            margin: 0;
        }

            .reduceri_page .main-content ul.list_comercianti li {
                border-bottom: 1px solid #ccc;
                display: inline-block;
                padding: 25px 0;
                font-size: 14px;
                width: 100%;
            }

                .reduceri_page .main-content ul.list_comercianti li .logo_comerciant {
                    display: inline-block;
                    width: 120px;
                    float: left;
                }

                    .reduceri_page .main-content ul.list_comercianti li .logo_comerciant img {
                        display: inline-block;
                        width: 100%;
                    }

                .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant {
                    display: inline-block;
                    width: calc(100% - 150px);
                    float: right;
                }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant img {
                        display: none;
                        margin-bottom: 25px;
                        width: 100%;
                        float: left;
                    }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant h3 {
                        display: inline-block;
                        font-family: Alpha Bank Sans, sans-serif;
                        margin-bottom: 15px;
                        line-height: 28px;
                        font-size: 25px;
                        width: 100%;
                        float: left;
                        padding: 0;
                        margin: 0;
                    }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant h3 small {
                            text-transform: uppercase;
                            display: inline-block;
                            font-weight: bold;
                            font-size: 12px;
                            color: #13ac5e;
                        }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant span.category {
                        text-transform: uppercase;
                        display: inline-block;
                        margin-bottom: 25px;
                        font-weight: bold;
                        font-size: 12px;
                        width: 100%;
                        color: #666;
                    }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.read-more {
                        display: inline-block;
                        padding: 15px 20px;
                        margin-right: 25px;
                        background: #0061af;
                        font-size: 14px;
                        float: left;
                        clear: both;
                        color: #fff;
                        border-radius: 3px;
                        -moz-border-radius: 3px;
                        -webkit-border-radius: 3px;
                    }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.read-more:hover {
                            text-decoration: none;
                            background: #005396;
                        }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit {
                        display: inline-block;
                        padding-right: 40px;
                        position: relative;
                        margin-top: 13px;
                        font-size: 16px;
                        color: #0061af;
                        float: left;
                    }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit:after {
                            background-image: url(../images/ui/arrow.png);
                            background-repeat: no-repeat;
                            background-size: 100% auto;
                            display: inline-block;
                            position: absolute;
                            height: 24px;
                            width: 24px;
                            content: '';
                            top: 0px;
                            right: 0;
                        }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit:hover {
                            text-decoration: none;
                            color: #f99e49;
                        }

                    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant .specific_details {
                        margin-bottom: 35px;
                        display: none;
                    }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant .specific_details p {
                            margin-bottom: 10px;
                            font-size: 16px;
                            color: #384050;
                            border: none;
                        }

                            .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant .specific_details p i.fa {
                                display: inline-block;
                                font-style: normal;
                                margin-right: 15px;
                                width: 20px;
                                color: #0061af;
                            }

                            .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant .specific_details p a {
                                text-decoration: none;
                                font-weight: bold;
                            }

                        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant .specific_details hr {
                            border: none;
                            margin: 15px 0;
                            border-top: 1px solid #d6d6d6;
                        }

                .reduceri_page .main-content ul.list_comercianti li.active .detalii_comerciant img {
                    display: inline-block;
                }

                .reduceri_page .main-content ul.list_comercianti li.active .detalii_comerciant .specific_details {
                    display: inline-block;
                }

/* =============================================================================
    o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1140px) {
    .reduceri_page .main-content ul.list_comercianti li .logo_comerciant {
        width: 100%;
    }

        .reduceri_page .main-content ul.list_comercianti li .logo_comerciant img {
            width: auto;
        }

    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant {
        display: inline-block;
        margin-top: 25px;
        width: 100%;
    }
}

@media only screen and (max-width: 1100px) {
    .reduceri_page .main-content {
        width: calc(100% - 350px);
    }
}

@media only screen and (max-width: 870px) {
    .reduceri_page .main-content {
        width: calc(100% - 300px);
    }
}

@media only screen and (max-width: 800px) {
    .reduceri_page .title_section .details {
        max-width: unset;
        padding-right: 0;
        width: 100%;
    }

    .reduceri_page .title_section a.more {
        margin-top: 25px;
        clear: both;
        float: left;
    }

    .reduceri_page .main-content {
        width: 100%;
    }

        .reduceri_page .main-content ul.list_comercianti {
            border-top: none;
        }

            .reduceri_page .main-content ul.list_comercianti li .logo_comerciant {
                width: 120px;
            }

                .reduceri_page .main-content ul.list_comercianti li .logo_comerciant img {
                    width: 100%;
                }

            .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant {
                display: inline-block;
                width: calc(100% - 150px);
                margin-top: 0;
            }
}

@media only screen and (max-width: 540px) {
    .reduceri_page .main-content ul.list_comercianti li .logo_comerciant {
        width: 100%;
    }

        .reduceri_page .main-content ul.list_comercianti li .logo_comerciant img {
            width: auto;
        }

    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant {
        display: inline-block;
        margin-top: 25px;
        width: 100%;
    }
}

@media only screen and (max-width: 380px) {
    .reduceri_page .title_section a.more {
        text-align: center;
        margin-top: 25px;
        padding: 20px 0;
        width: 100%;
    }

    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.read-more {
        text-align: center;
        margin-top: 25px;
        padding: 20px 0;
        margin-right: 0;
        width: 100%;
    }

    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit {
        padding: 20px 0;
        width: 100%;
    }

        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit:after {
            top: 20px;
        }
}

@media only screen and (max-width: 290px) {
    .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit {
        text-align: center;
    }

        .reduceri_page .main-content ul.list_comercianti li .detalii_comerciant a.visit:after {
            display: none;
        }
}
/* =============================================================================
    o   CAMPAINGS
============================================================================= */
.content-columns {
    display: inline-block;
    margin-top: 25px;
    width: 100%;
}

    .content-columns .column {
        width: 50%;
        float: left;
    }

        .content-columns .column img {
            width: 100%;
            height: auto;
        }

@media only screen and (max-width: 720px) {
    .content-columns .column {
        margin-bottom: 15px;
        width: 100%;
    }
}

.campaing {
    max-width: 1140px;
    margin: 25px auto 0;
    width: 90%;
}

    .campaing.benefits-section {
        margin-top: 0;
    }

    .campaing #aplica_online {
        width: 100%;
    }

    .campaing .calculator_rata .form {
        margin-top: 25px;
    }

    .campaing .calculator_rata .container .calc-form {
        margin-top: 0;
    }

    .campaing .top-details {
        display: inline-block;
        width: 100%;
    }

        .campaing .top-details a.logo {
            display: inline-block;
            background-image: url(../images/ui/logo.png);
            background-repeat: no-repeat;
            background-size: 100% auto;
            text-indent: -9999px;
            margin: 0 0 15px;
            width: 190px;
            height: 40px;
            float: left;
        }

@media only screen and (max-width: 460px) {
    .campaing .top-details a.logo {
        background-size: auto 100%;
        min-height: 30px;
        margin: 0 0 30px;
    }
}

@media only screen and (max-width: 360px) {
    .campaing .top-details a.logo {
        min-height: 25px;
    }
}

.campaing .top-details a.secondary {
    display: inline-block;
    float: right;
}

    .campaing .top-details a.secondary img {
        display: inline-block;
        max-height: 53px;
        float: right;
        width: auto;
    }

@media only screen and (max-width: 460px) {
    .campaing .top-details a.secondary {
        margin-top: 0;
        float: left;
        width: 50%;
    }
}

.campaing .top-details a.go-back {
    display: inline-block;
    float: left;
    clear: both;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0061af;
}

    .campaing .top-details a.go-back:before {
        background: url(../images/ui/nav-li.png) no-repeat;
        display: inline-block;
        position: relative;
        margin-right: 10px;
        float: left;
        width: 12px;
        height: 8px;
        content: '';
        top: 5px;
        -ms-transform: rotate(180deg);
        /* IE 9 */
        -webkit-transform: rotate(180deg);
        /* Safari */
        transform: rotate(180deg);
    }

    .campaing .top-details a.go-back:hover {
        text-decoration: none;
        color: #f99e49;
    }

.campaing img.promo {
    display: inline-block;
    margin-bottom: 25px;
    float: left;
    width: 100%;
}

.campaing .grey_section {
    display: inline-block;
    max-width: unset;
    padding: 50px 0;
    width: 100%;
}

    .campaing .grey_section .apply-form {
        background: #f5f5f6;
        display: inline-block;
        width: 100%;
    }

        .campaing .grey_section .apply-form h4 {
            font-family: Alpha Bank Sans, sans-serif;
            display: inline-block;
            font-size: 21px;
            color: #000;
            width: calc(100% - 15px);
            display: inline-block;
            margin-bottom: 25px;
            margin-left: 15px;
        }

        .campaing .grey_section .apply-form label {
            display: inline-block;
            margin-bottom: 25px;
            text-align: center;
            padding: 0 15px;
            float: left;
            width: 50%;
        }

            .campaing .grey_section .apply-form label.euro {
                position: relative;
            }

                .campaing .grey_section .apply-form label.euro:after {
                    text-transform: uppercase;
                    display: inline-block;
                    position: absolute;
                    font-weight: bold;
                    content: 'eur';
                    font-size: 11px;
                    right: 15px;
                    top: 15px;
                }

            .campaing .grey_section .apply-form label:nth-child(odd) {
                clear: both;
            }

            .campaing .grey_section .apply-form label input, .campaing .grey_section .apply-form label select, .campaing .grey_section .apply-form label textarea {
                font-family: Arial, sans-serif;
                display: inline-block;
                line-height: 22px;
                background: none;
                padding: 10px 0;
                font-size: 16px;
                outline: none;
                border: none;
                width: 100%;
                max-width: 100%;
                border-bottom: 1px solid #ababac;
            }

                .campaing .grey_section .apply-form label input:focus, .campaing .grey_section .apply-form label select:focus, .campaing .grey_section .apply-form label textarea:focus {
                    border-color: #0061af;
                }

            .campaing .grey_section .apply-form label input {
                padding: 11px 0;
            }

            .campaing .grey_section .apply-form label.textarea {
                width: 100%;
            }

            .campaing .grey_section .apply-form label span.error {
                display: none;
                text-align: left;
                margin-top: 10px;
                font-size: 13px;
                width: 100%;
                color: red;
            }

            .campaing .grey_section .apply-form label.error input, .campaing .grey_section .apply-form label.error select {
                border-color: red;
            }

            .campaing .grey_section .apply-form label.error span.error {
                display: inline-block;
            }

            .campaing .grey_section .apply-form label.filupp {
                transition: all 0.5s ease;
                position: relative;
                cursor: pointer;
                display: block;
                font-size: 1em;
                height: 3.5em;
                padding: 1em;
                color: #0061af;
                width: auto;
                margin-bottom: 15px;
                padding-right: 50px;
                font-weight: bold;
                font-size: 14px;
            }

                .campaing .grey_section .apply-form label.filupp > input[type="file"] {
                    position: absolute;
                    width: 1px;
                    height: 1px;
                    padding: 0;
                    margin: -1px;
                    overflow: hidden;
                    clip: rect(0, 0, 0, 0);
                    border: 0;
                }

                .campaing .grey_section .apply-form label.filupp:after {
                    background-image: url(../images/ui/arrow.png);
                    background-repeat: no-repeat;
                    background-size: 100% auto;
                    display: inline-block;
                    margin-left: 10px;
                    position: absolute;
                    content: '';
                    height: 30px;
                    width: 30px;
                    top: 10px;
                    right: 0;
                }

                .campaing .grey_section .apply-form label.filupp:hover {
                    color: #f99e49;
                }

        .campaing .grey_section .apply-form .g-recaptcha {
            display: inline-block;
            margin-bottom: 25px;
            margin-left: 15px;
            width: 100%;
            clear: both;
            float: left;
        }

        .campaing .grey_section .apply-form p {
            display: inline-block;
            margin-left: 15px;
            max-width: 370px;
            float: left;
            width: 100%;
        }

        .campaing .grey_section .apply-form button {
            display: inline-block;
            padding: 15px 25px;
            background: none;
            cursor: pointer;
            font-size: 16px;
            outline: none;
            border: none;
            float: left;
            border: 1px solid #f99e49;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            background: #f99e49;
            margin-left: 15px;
            margin-top: 25px;
            clear: both;
            float: left;
            color: #fff;
        }

            .campaing .grey_section .apply-form button:hover {
                background: #f78418;
                border-color: #f78418;
            }

            .campaing .grey_section .apply-form button[type="reset"] {
                border: 1px solid #0061af;
                margin-right: 15px;
                margin-left: 15px;
                color: #0061af;
                clear: both;
            }

                .campaing .grey_section .apply-form button[type="reset"]:hover {
                    background: #0061af;
                    color: #fff;
                }

        .campaing .grey_section .apply-form b {
            display: inline-block;
            margin: 15px 0 25px 15px;
            font-weight: bold;
            font-size: 16px;
            color: #000;
            width: 100%;
        }

.campaing .container {
    max-width: 770px;
}

    .campaing .container h1 {
        margin-bottom: 15px;
    }

    .campaing .container h3 {
        display: inline-block;
        font-family: Alpha Bank Sans, sans-serif;
        margin-bottom: 15px;
        color: #1c3a72;
        font-size: 28px;
        width: 100%;
        float: left;
    }

    .campaing .container p {
        font-size: 14px;
        color: #384050;
    }

        .campaing .container p.disclaimer {
            font-size: 14px;
        }

        .campaing .container p.info-warning {
            display: inline-block;
            margin-bottom: 15px;
            background: #e5eff7;
            font-size: 16px;
            padding: 20px;
            width: 100%;
        }

            .campaing .container p.info-warning:before {
                display: inline-block;
                position: relative;
                content: "\f05a";
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-decoration: inherit;
                margin-right: 15px;
                font-size: 16px;
                color: #0061af;
            }

            .campaing .container p.info-warning a {
                text-decoration: none;
            }

                .campaing .container p.info-warning a:hover {
                    text-decoration: underline;
                }

                .campaing .container p.info-warning a.more {
                    display: inline-block;
                    padding-right: 40px;
                    margin-left: 28px;
                    position: relative;
                    margin-top: 13px;
                    font-size: 16px;
                    color: #0061af;
                }

                    .campaing .container p.info-warning a.more:after {
                        background-image: url(../images/ui/arrow.png);
                        background-repeat: no-repeat;
                        background-size: 100% auto;
                        display: inline-block;
                        position: absolute;
                        height: 24px;
                        width: 24px;
                        content: '';
                        top: 0px;
                        right: 0;
                    }

                    .campaing .container p.info-warning a.more:hover {
                        text-decoration: none;
                        color: #f99e49;
                    }

    .campaing .container .beneficii {
        display: inline-block;
        margin-top: 25px;
    }

        .campaing .container .beneficii h3 {
            margin-top: 0;
        }

        .campaing .container .beneficii ul {
            display: inline-block;
            width: calc(100% + 30px);
            list-style: none;
            float: right;
            padding: 0;
            margin: 0;
            margin: 35px 0 25px -15px;
        }

            .campaing .container .beneficii ul li {
                display: inline-block;
                margin-bottom: 25px;
                padding-left: 35px;
                float: left;
                width: 50%;
            }

                .campaing .container .beneficii ul li:nth-child(odd) {
                    clear: both;
                }

                .campaing .container .beneficii ul li:last-child, .campaing .container .beneficii ul li:nth-last-child(2) {
                    margin-bottom: 0;
                }

                .campaing .container .beneficii ul li h4 {
                    display: inline-block;
                    font-family: Alpha Bank Sans, sans-serif;
                    line-height: normal;
                    margin-bottom: 15px;
                    position: relative;
                    padding-left: 50px;
                    color: #1c3a72;
                    font-size: 21px;
                    width: 100%;
                    float: left;
                }

                    .campaing .container .beneficii ul li h4 a {
                        color: #1c3a72;
                    }

                    .campaing .container .beneficii ul li h4:before {
                        display: inline-block;
                        background: url(../images/ui/tick-li.png);
                        position: absolute;
                        height: 36px;
                        width: 37px;
                        content: '';
                        top: -3px;
                        left: 0;
                        float: left;
                        margin-right: 15px;
                    }

                .campaing .container .beneficii ul li p {
                    display: inline-block;
                    color: #384050;
                    font-size: 14px;
                    width: 100%;
                }

                    .campaing .container .beneficii ul li p a {
                        text-decoration: underline;
                        color: #0061af;
                    }

                        .campaing .container .beneficii ul li p a:hover {
                            text-decoration: none;
                        }

    .campaing .container .promo-img {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

        .campaing .container .promo-img.last {
            margin: 50px 0 25px;
        }

        .campaing .container .promo-img img {
            max-width: 100%;
        }

    .campaing .container .calculator_rata {
        background: none;
    }

.campaing.campaign_left_align .promo2-img {
    display: none;
}

.campaing.campaign_left_align .promo2 {
    background-image: url(../images/campanii/campaing_02.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: inline-block;
    max-width: 650px;
    position: fixed;
    height: 100vh;
    width: 90%;
    right: 0;
    top: 0;
}

.campaing.campaign_left_align p {
    margin-bottom: 15px;
    font-size: 16px;
}

    .campaing.campaign_left_align p b {
        color: #0061af;
    }

.campaing.campaign_left_align.grey_section {
    position: relative;
    background: none;
    z-index: 0;
    padding: 0;
    margin: 0;
}

    .campaing.campaign_left_align.grey_section .container {
        max-width: 1140px;
        float: none;
        width: 90%;
    }

        .campaing.campaign_left_align.grey_section .container .wrapper {
            display: inline-block;
            background: #f5f5f6;
            max-width: 570px;
            padding: 25px;
            float: left;
        }

            .campaing.campaign_left_align.grey_section .container .wrapper form {
                margin-bottom: 0;
            }

.campaing.campaign_left_align .container {
    width: 100%;
    clear: both;
    float: left;
}

    .campaing.campaign_left_align .container .wrapper {
        display: inline-block;
        max-width: 570px;
        float: left;
    }

        .campaing.campaign_left_align .container .wrapper .beneficii p {
            font-size: 16px;
        }

/* =============================================================================
	o   RESPONSIVE
============================================================================= */
@media only screen and (max-width: 1366px) {
    .campaing.campaign_left_align .promo2 {
        max-width: 550px;
    }
}

@media only screen and (max-width: 1230px) {
    .campaing.campaign_left_align .promo2 {
        max-width: 450px;
    }
}

@media only screen and (max-width: 1130px) {
    .campaing.campaign_left_align .promo2 {
        max-width: 400px;
    }
}

@media only screen and (max-width: 1070px) {
    .campaing.campaign_left_align .promo2 {
        max-width: 350px;
    }
}

@media only screen and (max-width: 1000px) {
    .campaing.campaign_left_align {
        text-align: center;
    }

        .campaing.campaign_left_align img.promo2-img {
            display: inline-block;
            margin-bottom: 50px;
            position: unset;
            max-width: 50%;
            width: 100%;
        }

        .campaing.campaign_left_align .promo2 {
            display: none;
        }

        .campaing.campaign_left_align .container {
            max-width: none;
            float: none;
            width: 100%;
        }

            .campaing.campaign_left_align .container .wrapper {
                text-align: left;
                max-width: unset;
                width: 100%;
            }

        .campaing.campaign_left_align.grey_section .container {
            max-width: none;
        }

            .campaing.campaign_left_align.grey_section .container .wrapper {
                max-width: unset;
                width: 100%;
            }

    .content .center-align {
        padding-top: 0 !important;
    }
}

@media only screen and (max-width: 880px) {
    .campaing .grey_section .apply-form {
        width: 100%;
        margin: 50px 0;
    }
}

@media only screen and (max-width: 720px) {
    .campaing .container .beneficii ul {
        width: 100%;
    }

        .campaing .container .beneficii ul li {
            padding-left: 0;
            width: 100%;
        }
}

@media only screen and (max-width: 640px) {
    .campaing .grey_section .apply-form label {
        width: 100%;
        padding: 0;
    }

    .campaing .grey_section .apply-form p {
        margin-left: 0;
    }

    .campaing .grey_section .apply-form button {
        margin-left: 0 !important;
    }

    .campaing .container p.info-warning a.more {
        margin-left: 0;
    }
}

@media only screen and (max-width: 460px) {
    .campaing .grey_section .apply-form button {
        padding: 25px 0;
        width: 100%;
    }

    .campaing .container p.info-warning a.more:after {
        display: none;
    }

    .campaing.campaign_left_align img.promo2 {
        max-width: 100%;
        width: 100%;
    }
}

.internal-content.with_sidebar.glosar_termeni .main-content ul.glosar {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .internal-content.with_sidebar.glosar_termeni .main-content ul.glosar li {
        display: inline-block;
        margin-bottom: 15px;
        float: left;
        clear: both;
    }

        .internal-content.with_sidebar.glosar_termeni .main-content ul.glosar li:not(:first-child) {
            margin-top: 25px;
        }

        .internal-content.with_sidebar.glosar_termeni .main-content ul.glosar li .letter {
            font-size: 21px;
            margin-bottom: 15px;
        }

        .internal-content.with_sidebar.glosar_termeni .main-content ul.glosar li p {
            font-size: 16px;
        }

            .internal-content.with_sidebar.glosar_termeni .main-content ul.glosar li p b {
                color: #0061af;
            }

.internal-content.with_sidebar.faqs .main-content ul.questions {
    display: inline-block;
    list-style: none;
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

    .internal-content.with_sidebar.faqs .main-content ul.questions li {
        display: inline-block;
        width: 100%;
        clear: both;
    }

        .internal-content.with_sidebar.faqs .main-content ul.questions li .question {
            font-weight: bold;
            cursor: pointer;
            color: #0061af;
        }

            .internal-content.with_sidebar.faqs .main-content ul.questions li .question:after {
                display: inline-block;
                margin-left: 10px;
                content: '+';
            }

        .internal-content.with_sidebar.faqs .main-content ul.questions li .answer {
            display: none;
        }

        .internal-content.with_sidebar.faqs .main-content ul.questions li.is-active .question:after {
            content: '-';
        }

        .internal-content.with_sidebar.faqs .main-content ul.questions li.is-active .answer {
            display: inline-block;
        }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: 0.14286em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before,
.fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before,
.fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before,
.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before,
.fa-users:before {
    content: "";
}

.fa-chain:before,
.fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before,
.fa-scissors:before {
    content: "";
}

.fa-copy:before,
.fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

.fa-legal:before,
.fa-gavel:before {
    content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before,
.fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before,
.fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before,
.fa-usd:before {
    content: "";
}

.fa-rupee:before,
.fa-inr:before {
    content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

.fa-won:before,
.fa-krw:before {
    content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before,
.fa-car:before {
    content: "";
}

.fa-cab:before,
.fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "";
}

.fa-ge:before,
.fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before,
.fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-tv:before,
.fa-television:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-credit-card-alt:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-pause-circle-o:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stop-circle-o:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-wheelchair-alt:before {
    content: "";
}

.fa-question-circle-o:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-volume-control-phone:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "";
}

.fa-handshake-o:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-o:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-book-o:before {
    content: "";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-circle-o:before {
    content: "";
}

.fa-user-o:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-eercast:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-snowflake-o:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
    position: relative;
    padding: 0;
    *zoom: 1;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

    .bx-wrapper img {
        max-width: 100%;
        display: block;
    }

.bxslider {
    margin: 0;
    padding: 0;
}

ul.bxslider {
    list-style: none;
}

.bx-viewport {
    /*fix other elements on the page moving (on Chrome)*/
    -webkit-transform: translatez(0);
}

/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 50px;
    width: calc(100% - 50px);
    left: 50px;
}

/* LOADER */
.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url("../images/ui/bx_loader.gif") center center no-repeat #ffffff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
    text-align: left;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px;
}

    .bx-wrapper .bx-pager.bx-default-pager a {
        background: rgba(255, 255, 255, 0.3);
        text-indent: -9999px;
        display: block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        outline: 0;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

        .bx-wrapper .bx-pager.bx-default-pager a:hover,
        .bx-wrapper .bx-pager.bx-default-pager a.active,
        .bx-wrapper .bx-pager.bx-default-pager a:focus {
            background: #fff;
        }

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    vertical-align: bottom;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager-item {
    font-size: 0;
    line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
    left: 10px;
    background: url("../images/ui/controls.png") no-repeat 0 -32px;
}

    .bx-wrapper .bx-prev:hover,
    .bx-wrapper .bx-prev:focus {
        background-position: 0 0;
    }

.bx-wrapper .bx-next {
    right: 10px;
    background: url("../images/ui/controls.png") no-repeat -43px -32px;
}

    .bx-wrapper .bx-next:hover,
    .bx-wrapper .bx-next:focus {
        background-position: -43px 0;
    }

.bx-wrapper .bx-controls-direction a {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
}

    .bx-wrapper .bx-controls-direction a.disabled {
        display: none;
    }

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
    text-align: center;
}

    .bx-wrapper .bx-controls-auto .bx-start {
        display: block;
        text-indent: -9999px;
        width: 10px;
        height: 11px;
        outline: 0;
        background: url("images/controls.png") -86px -11px no-repeat;
        margin: 0 3px;
    }

        .bx-wrapper .bx-controls-auto .bx-start:hover,
        .bx-wrapper .bx-controls-auto .bx-start.active,
        .bx-wrapper .bx-controls-auto .bx-start:focus {
            background-position: -86px 0;
        }

    .bx-wrapper .bx-controls-auto .bx-stop {
        display: block;
        text-indent: -9999px;
        width: 9px;
        height: 11px;
        outline: 0;
        background: url("../images/ui/controls.png") -86px -44px no-repeat;
        margin: 0 3px;
    }

        .bx-wrapper .bx-controls-auto .bx-stop:hover,
        .bx-wrapper .bx-controls-auto .bx-stop.active,
        .bx-wrapper .bx-controls-auto .bx-stop:focus {
            background-position: -86px -33px;
        }

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666;
    background: rgba(80, 80, 80, 0.75);
    width: 100%;
}

    .bx-wrapper .bx-caption span {
        color: #fff;
        font-family: Arial;
        display: block;
        font-size: .85em;
        padding: 10px;
    }

/* Preload images */
body:after {
    content: url(../images/ui/close.png) url(../images/ui/loading.gif) url(../images/ui/prev.png) url(../images/ui/next.png);
    display: none;
}

body.lb-disable-scrolling {
    overflow: hidden;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

    .lightbox .lb-image {
        display: block;
        height: auto;
        max-width: inherit;
        max-height: none;
        border-radius: 3px;
        /* Image border */
        border: 4px solid white;
    }

    .lightbox a img {
        border: none;
    }

.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    /* Background color behind image.
     This is visible during transitions. */
    background-color: white;
}

    .lb-outerContainer:after {
        content: "";
        display: table;
        clear: both;
    }

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/ui/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container > .nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../images/ui/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

    .lb-nav a.lb-prev:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../images/ui/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

    .lb-nav a.lb-next:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

    .lb-dataContainer:after {
        content: "";
        display: table;
        clear: both;
    }

.lb-data {
    padding: 0 4px;
    color: #ccc;
}

    .lb-data .lb-details {
        width: 85%;
        float: left;
        text-align: left;
        line-height: 1.1em;
    }

    .lb-data .lb-caption {
        font-size: 13px;
        font-weight: bold;
        line-height: 1em;
    }

        .lb-data .lb-caption a {
            color: #4ae;
        }

    .lb-data .lb-number {
        display: block;
        clear: left;
        padding-bottom: 1em;
        font-size: 12px;
        color: #999999;
    }

    .lb-data .lb-close {
        display: block;
        float: right;
        width: 30px;
        height: 30px;
        background: url(../images/ui/close.png) top right no-repeat;
        text-align: right;
        outline: none;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
        opacity: 0.7;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }

        .lb-data .lb-close:hover {
            cursor: pointer;
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
            opacity: 1;
        }

/* =============================================================================
    o 	ALPHA BANK SANS
============================================================================= */
@font-face {
    font-family: 'Alpha Bank Sans';
    src: url("../fonts/alpha-bank/AlphaBankSans-Light.eot");
    src: url("../fonts/alpha-bank/AlphaBankSans-Light.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Alpha Bank Sans';
    src: url("../fonts/alpha-bank/AlphaBankSans-Regular.eot");
    src: url("../fonts/alpha-bank/AlphaBankSans-Regular.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alpha Bank Sans';
    src: url("../fonts/alpha-bank/AlphaBankSans-Bold.eot");
    src: url("../fonts/alpha-bank/AlphaBankSans-Bold.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
/* =============================================================================
    o 	ALPHA BANK SANS CONDENSED
============================================================================= */
@font-face {
    font-family: 'Alpha Bank Sans Cond';
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Regular.eot");
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Regular.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSansCond-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alpha Bank Sans Cond';
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Bold.eot");
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Bold.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSansCond-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Alpha Bank Sans Cond';
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Light.eot");
    src: url("../fonts/alpha-bank/AlphaBankSansCond-Light.woff") format("woff"), url("../fonts/alpha-bank/AlphaBankSansCond-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Condensed';
    src: url("../fonts/helvetica-neue/HelveticaNeue-CondensedBlack.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-CondensedBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-CondensedBlack.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-CondensedBlack.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-Light.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-Light.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-UltraLight.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-UltraLight.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-UltraLight.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-Medium.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-Medium.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-ThinItalic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-ThinItalic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-Bold.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-Bold.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Condensed';
    src: url("../fonts/helvetica-neue/HelveticaNeue-CondensedBold.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-CondensedBold.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-CondensedBold.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-CondensedBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-LightItalic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-LightItalic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-Italic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-Italic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-BoldItalic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-BoldItalic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-UltraLightItalic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-UltraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-UltraLightItalic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-UltraLightItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-Thin.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-Thin.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url("../fonts/helvetica-neue/HelveticaNeue-MediumItalic.eot");
    src: url("../fonts/helvetica-neue/HelveticaNeue-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica-neue/HelveticaNeue-MediumItalic.woff") format("woff"), url("../fonts/helvetica-neue/HelveticaNeue-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 21px;
    color: #000;
}

    h1 i {
        margin-right: 10px;
    }
