/* FONT FAMILY*/

/* CALIBRI*/
@font-face {
    font-family: 'CalibriLightItalic';
    src: url('../fonts/Calibri-LightItalic.eot');
    src: url('../fonts/Calibri-LightItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri-LightItalic.woff2') format('woff2'), url('../fonts/Calibri-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'CalibriBoldItalic';
    src: url('../fonts/Calibri-BoldItalic.eot');
    src: url('../fonts/Calibri-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri-BoldItalic.woff2') format('woff2'), url('../fonts/Calibri-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'CalibriLight';
    src: url('../fonts/Calibri-Light.eot');
    src: url('../fonts/Calibri-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri-Light.woff2') format('woff2'), url('../fonts/Calibri-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CalibriBold';
    src: url('../fonts/Calibri-Bold.eot');
    src: url('../fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri-Bold.woff2') format('woff2'), url('../fonts/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri.eot');
    src: url('../fonts/Calibri.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri.woff2') format('woff2'), url('../fonts/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CalibriItalic';
    src: url('../fonts/Calibri-Italic.eot');
    src: url('../fonts/Calibri-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/Calibri-Italic.woff2') format('woff2'), url('../fonts/Calibri-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

/* CENTURY GOTHIC*/
@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.eot');
    src: url('../fonts/CenturyGothic.eot?#iefix') format('embedded-opentype'), url('../fonts/CenturyGothic.woff2') format('woff2'), url('../fonts/CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic Bold Italic';
    src: url('../fonts/CenturyGothic-BoldItalic.eot');
    src: url('../fonts/CenturyGothic-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/CenturyGothic-BoldItalic.woff2') format('woff2'), url('../fonts/CenturyGothic-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Century Gothic Italic';
    src: url('../fonts/CenturyGothic-Italic.eot');
    src: url('../fonts/CenturyGothic-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/CenturyGothic-Italic.woff2') format('woff2'), url('../fonts/CenturyGothic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Century Gothic Bold';
    src: url('../fonts/CenturyGothic-Bold.eot');
    src: url('../fonts/CenturyGothic-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/CenturyGothic-Bold.woff2') format('woff2'), url('../fonts/CenturyGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* COLOR*/
.yellow {
    color: #FFD54B;
}

.yellow.bg {
    color: #FFFFFF;
    background-color: #FFD54B;
}

.sky-1 {
    color: #9FD5E2;
}

.sky-1.bg {
    color: #FFFFFF;
    background-color: #9FD5E2;
}

.sky-2 {
    color: #33B8CB;
}

.sky-2.bg {
    color: #FFFFFF;
    background-color: #33B8CB;
}

.sky-3 {
    color: #306B9E;
}

.sky-3.bg {
    color: #FFFFFF;
    background-color: #306B9E;
}

.purple {
    color: #937BD5;
}

.purple.bg {
    color: #FFFFFF;
    background-color: #937BD5;
}

.grey-1 {
    color: #FAFAFA;
}

.grey-1.bg {
    color: #333333;
    background-color: #FAFAFA;
}

.grey-2 {
    color: #DDDDDD;
}

.grey-2.bg {
    color: #333333;
    background-color: #DDDDDD;
}

.grey-3 {
    color: #333333;
}

.grey-3.bg {
    color: #FAFAFA;
    background-color: #333333;
}

.white {
    color: #FFFFFF;
}

.white.bg {
    color: #333333;
    background-color: #FFFFFF;
}

.red {
    color: #b50d0d;
}

/* GRADIENT */
.blue-purple.horizontal {
    background-image: -webkit-gradient(linear, right top, left top, from(#937bd5), to(#33b8cb));
    background-image: -webkit-linear-gradient(right, #937bd5, #33b8cb);
    background-image: -o-linear-gradient(right, #937bd5, #33b8cb);
    background-image: linear-gradient(to left, #937bd5, #33b8cb);
}

.blue-purple.vertical {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#937bd5), to(#33b8cb));
    background-image: -webkit-linear-gradient(top, #937bd5, #33b8cb);
    background-image: -o-linear-gradient(top, #937bd5, #33b8cb);
    background-image: linear-gradient(to bottom, #937bd5, #33b8cb);
}

.yellow-white.vertical {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ffd54b), to(#fffed8));
    background-image: -webkit-linear-gradient(bottom, #ffd54b, #fffed8);
    background-image: -o-linear-gradient(bottom, #ffd54b, #fffed8);
    background-image: linear-gradient(to top, #ffd54b, #fffed8);
}

/* BUTTONS*/
a.btn-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 20;
    background: #28c628;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 42px;
    font-size: 22px;
    color: white;
}

.btn {
    font-family: 'Century Gothic Bold';
    border: 0;
    border-radius: 50px;
    padding: 0 1.8rem;
    line-height: 40px;
    height: 40px;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-image: -webkit-gradient(linear, left top, right top, from(#417ba8), to(#3ab3cb));
    background-image: -webkit-linear-gradient(left, #417ba8, #3ab3cb);
    background-image: -o-linear-gradient(left, #417ba8, #3ab3cb);
    background-image: linear-gradient(to right, #417ba8, #3ab3cb);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #FAFAFA;
}

.btn-primary:hover {
    background-image: -webkit-gradient(linear, right top, left top, from(#417ba8), color-stop(31%, #3f8cb3), to(#3ab3cb));
    background-image: -webkit-linear-gradient(right, #417ba8, #3f8cb3 31%, #3ab3cb);
    background-image: -o-linear-gradient(right, #417ba8, #3f8cb3 31%, #3ab3cb);
    background-image: linear-gradient(to left, #417ba8, #3f8cb3 31%, #3ab3cb);
}

.btn-primary.bg-dk {
    background-image: unset;
    background: white;
    color: #33b8cb;
    border: 0;
}

.btn-primary.bg-dk:hover {
    background-image: unset;
    opacity: 0.8;
}

.btn-secondary {
    background-color: #33b8cb;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: #937bd5;
}

.btn-terciary {
    background-color: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid white;
    border-radius: 50px;
    line-height: 2.2rem;
    color: white;
}

.btn-terciary:hover {
    background-color: transparent;
    opacity: .8;
    color: white;
}

.btn-purple {
    background-color: #937BD5;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-small {
    line-height: 35px;
    height: 35px;
    padding: 0 15px;
}

.link {
    font-family: 'Century Gothic Bold';
    font-weight: bold;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 14px;
    transition: 0.3s;
}

.link:hover {
    color: white;
}

.link.w-icon span, .link.w-icon svg {
    display: inline-block;
    vertical-align: middle;
}

.link.bg-lg {
    color: #333;
}

.link.bg-lg:hover {
    color: #333;
    opacity: 0.8;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    background-color: transparent;
    background-image: -webkit-gradient(linear, right top, left top, from(#417ba8), color-stop(31%, #3f8cb3), to(#3ab3cb));
    background-image: -webkit-linear-gradient(right, #417ba8, #3f8cb3 31%, #3ab3cb);
    background-image: -o-linear-gradient(right, #417ba8, #3f8cb3 31%, #3ab3cb);
    background-image: linear-gradient(to left, #417ba8, #3f8cb3 31%, #3ab3cb);
    border-color: transparent;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary.disabled, .btn-secondary.disabled, .btn-terciary.disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.btn-social {
    text-align: left;
    transition: 0.3s;
}

.btn-social .icon-wrap {
    font-size: 17px;
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}

.btn-social, .btn-social:hover {
    color: #FFF;
}

.btn-social:hover {
    opacity: 0.8;
}

.btn-fb {
    background-color: #3B5998;
}

.btn-tw {
    background-color: #1DA1F2;
}

.btn-goo {
    background-color: #DB4437;
}

/* TEXT*/
p {
    font-family: 'Calibri';
    font-size: 16px;
    line-height: 150%;
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Century Gothic Bold';
    font-weight: normal;
}

/* GENERAL*/
html {
    font-size: 16px;
}

body {
    background: #FAFAFA;
    color: #333333;
    font-family: 'Calibri';
    font-size: 1rem;
    line-height: 150%;
    padding-bottom: 400px;
    position: relative;
    min-height: 100vh;
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

span.loading-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    background: url('../img/loading.gif') no-repeat center center white;
}

a {
    color: #937BD5;
}

.box {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
}

.box.w-padding {
    padding: 2rem;
}

.box .btn {
    min-width: 180px;
}

.bold {
    font-weight: bold;
}

.pre-title {
    font-family: 'Calibri';
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 80%;
    display: block;
    margin-top: 8vh;
}

.pre-title:after {
    content: '';
    height: 1px;
    background-color: #FFF;
    width: 48%;
    display: inline-block;
    margin-left: 3%;
    vertical-align: middle;
}

.pre-title.dk {
    color: #333;
}

.pre-title.dk:after {
    background-color: #333;
}

.no-home {
    padding-top: 9rem;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.load-media {
    padding: 2rem;
    margin: 0 -2rem;
    margin-bottom: 1rem;
    background-color: #f5f5f5;
}

ol {
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 45px;
}

ol li {
    margin: 0 0 1rem 0;
    counter-increment: my-awesome-counter;
    position: relative;
    font-size: 18px;
    padding-top: 0.3rem;
}

ol li::before {
    content: counter(my-awesome-counter);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: -45px;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
    top: 2px;
    background-image: -webkit-gradient(linear, right top, left top, from(#937bd5), to(#33b8cb));
    background-image: -webkit-linear-gradient(right, #937bd5, #33b8cb);
    background-image: -o-linear-gradient(right, #937bd5, #33b8cb);
    background-image: linear-gradient(to left, #937bd5, #33b8cb);
}

/* HEADER*/
header {
    transition: 0.3s;
}

header.fixed-header {
    background-color: transparent;
    padding: 40px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

header.white-header {
    background: #FFF;
    padding: 1rem 0;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

header .navbar {
    padding: 0;
}

.user-btn .dropdown-menu {
    right: 0;
    margin: 5px 15px;
}

.logo a {
    width: 140px;
    height: 80px;
    display: block;
    font-size: 0;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: 0.3s;
}

.light-logo a {
    background-image: url(../img/arg-faro-logo-light.png);
}

.dark-logo a {
    background-image: url(../img/arg-faro-logo-dark.png);
}

header li a {
    font-family: 'Century Gothic Bold';
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    transition: 0.3s;
}

header li a:hover {
    text-decoration: none;
    color: white;
}

header li {
    margin: 0 1rem;
}

header .social-icon {
    font-size: 18px;
}

header.fixed {
    background: #FFF;
    padding: 5px 0;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

header.fixed .logo a {
    background-image: url(../img/arg-faro-logo-simple-dark.png);
    width: 105px;
    height: 60px;
}

header.fixed li a, header.white-header li a {
    color: #008598;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #333333;
    background-color: transparent;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-item {
    text-transform: capitalize;
    font-weight: normal;
    font-family: 'Century Gothic';
    color: #333;
}

/* BREADCRUMBS */
.breadcrumb a, .breadcrumb span {
    font-family: 'Century Gothic Bold';
    font-size: 12px;
}

.breadcrumb a {
    color: #33B8CB;
}

.breadcrumb .icon-wrap {
    color: #33B8CB;
    font-size: 11px;
    margin: 0 1rem;
}

/* HOMEPAGE*/
.video-background {
    position: relative;
}

.video-background .video {
    overflow: hidden;
    max-height: 850px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.video-background video {
    min-height: 100%;
    min-width: 100%;
}

.video-background .video-content {
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.video-content h2 {
    color: #FFFFFF;
    font-size: 68px;
    line-height: 60px;
    text-transform: uppercase;
    margin: 10px 0 30px;
    max-width: 80%;
}

.video-content p {
    color: #FFFFFF;
    max-width: 80%;
    margin-bottom: 1.5rem;
}

.video-background .btn {
    margin-right: 2rem;
}

.video-background .map {
    position: relative;
}

.video-background .map, .video-background .map img {
    height: 600px;
    width: auto;
}

.mapa-wrap {
    position: absolute;
}

.sol-hover {
    background: #FFF;
    width: 12rem;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.15);
    font-family: 'Century Gothic';
    display: none;
    transition: 0.4s;
    position: absolute;
    z-index: 10;
    text-align: center;
    left: -4.5rem;
}

.sol-hover:before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    left: 50%;
    margin-left: -16px;
}

.sol-hover .h5 {
    font-family: 'Century Gothic Bold';
    color: #333333;
    display: block;
    margin: 0;
    font-size: 0.9rem;
}

.sol-hover .h5 + a {
    font-size: 0.8rem;
    color: #33B8CB;
}

.sol-hover .numero {
    font-family: 'Century Gothic Bold';
}

.sol-pin {
    cursor: pointer;
    display: block;
    width: 34px;
    height: 34px;
    background: rgba(255, 213, 75, 0.35);
    border-radius: 50%;
    position: relative;
}

.sol-pin:before {
    display: block;
    content: '';
    width: 14px;
    height: 14px;
    background: #FFD54B;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 10px;
}

.mapa-wrap:hover > .sol-hover {
    display: block;
}

/* Posicionamiento de provincias */
.ciudad-autonoma-de-buenos-aires {
    right: 32%;
    top: 37%;
}

.buenos-aires {
    right: 40%;
    top: 43%;
}

.cordoba {
    top: 29%;
    left: 40%;
}

.san-juan {
    left: 20%;
    top: 27%;
}

.santa-fe {
    right: 39%;
    top: 23%;
}

.chubut {
    bottom: 32%;
    left: 24%;
}

.neuquen {
    left: 18%;
    top: 48%;
}

.tierra-del-fuego {
    right: 60%;
    bottom: 4%;
}

.rio-negro {
    left: 30%;
    bottom: 42%;
}

.la-pampa {
    left: 35%;
    top: 42%;
}

.misiones {
    right: 11%;
    top: 14%;
}

.formosa {
    right: 30%;
    top: 10%;
}

.chaco {
    top: 15%;
    right: 38%;
}

.tucuman {
    top: 15%;
    left: 33%;
}

.santiago-del-estero {
    left: 41%;
    top: 20%;
}

.san-luis {
    left: 30%;
    top: 35%;
}

.salta {
    top: 7%;
    left: 42%;
}

.la-rioja {
    left: 27%;
    top: 22%;
}

.mendoza {
    left: 19%;
    top: 37%;
}

.jujuy {
    left: 27%;
    top: 2%;
}

.entre-rios {
    right: 30%;
    top: 30%;
}

.corrientes {
    right: 22%;
    top: 20%;
}

.catamarca {
    top: 13%;
    left: 22%;
}

.santa-cruz {
    left: 22%;
    bottom: 20%;
}

.otros-paises {
    display: none;
}

/* ABOUT US */
.about-us {
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.box-redes {
    margin-top: 1.8rem;
}

.box-redes p {
    color: #333333d6;
    opacity: 0.8;
    border-right: 1px solid #3333335e;
    padding-right: 1rem;
    margin-right: 1rem;
    text-align: right;
    margin-bottom: 0;
    max-width: 55%;
    line-height: 1rem;
}

.box-redes .st-custom-button {
    font-size: 20px;
    color: #937BD5;
    margin: 0 1rem;
    cursor: pointer;
}

/* LA PROPUESTA */
.la-propuesta {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.la-propuesta h2 {
    color: #FFFFFF;
    font-size: 65px;
    line-height: 60px;
    text-transform: uppercase;
    margin: 10px 0 30px;
}

.la-propuesta .btn {
    min-width: 180px;
}

.video-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
    background: url('../img/lapropuesta-video.jpg') no-repeat center center transparent;
    background-size: cover;
}

.video-wrapper.video-destacado {
    background: url('../img/encuentro-faro.jpg') no-repeat center center transparent;
    background-size: cover;
}

.video-wrapper .icon-wrap {
    background: #ffffff;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    font-size: 20px;
    padding-left: 4px;
    color: #525252;
    top: 50%;
    margin-top: -40px;
    left: 50%;
    margin-left: -40px;
    transition: 0.3s;
    z-index: 10;
    text-align: center;
    opacity: 0.9;
    cursor: pointer;
}


.video-wrapper iframe {
    border: 0;
    width: 100%;
    height: 355px;
}


/* ENCUENTRO FARO */
.encuentro-faro p {
    color: #333333;
    margin: 1rem auto;
    line-height: 150%;
    font-size: 16px;
    max-width: 520px;
}

.encuentro-faro h2 {
    color: #00add7;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 2.5rem;
    margin: 2rem auto;
    max-width: 520px;
}

.encuentro-faro .big {
    font-size: 20px;
}

/* ACCIONES */
.acciones {
    position: relative;
    margin-top: 4rem;
}

.acciones:before {
    content: '';
    display: block;
    position: absolute;
    background: #EBEBEB;
    left: 0;
    right: 0;
    top: 10rem;
    bottom: 10rem;
    z-index: -1;
}

.acciones h2 {
    color: #333333;
    font-size: 40px;
    font-family: 'Century Gothic Bold';
}

.acciones .nav-tabs .nav-link {
    font-family: 'Century Gothic Bold';
    text-transform: uppercase;
    font-size: 14px;
    padding: 0.5rem 1.5rem;
}

.acciones .nav-tabs .nav-item.show .nav-link, .acciones .nav-tabs .nav-link.active {
    background-color: #fafafa;
}

.accion {
    background: #4dadc1;
    margin-bottom: 1.5rem;
}

.accion .accion-imagen {
    position: relative;
    height: 230px;
    background-color: #333;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.accion .play-wrap {
    background: #FFD54B;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 85px;
    font-size: 20px;
    padding-left: 4px;
    color: white;
    top: 50%;
    margin-top: -40px;
    left: 50%;
    margin-left: -40px;
    transition: 0.3s;
    z-index: 10;
}

.accion .play-wrap:hover {
    background: #ffbe24;
}

.accion .accion-contenido {
    background: white;
    padding: 1rem;
}

.accion-contenido .badge {
    font-family: 'Century Gothic';
    font-weight: normal;
    border-radius: 0;
    padding: 0.3rem 0.5rem;
    display: inline-block;
    margin-bottom: 0.6em;
}

.accion .accion-contenido h3 {
    line-height: 100%;
    font-size: 0;
    min-height: 3rem;
}

.accion .accion-contenido h3 a {
    color: #333;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 1.3rem;
    line-height: normal;
    text-transform: uppercase;
}

.accion .accion-contenido h3 a:hover {
    opacity: 1;
    text-decoration: none;
}

.accion .accion-contenido .data {
    color: #33B8CB;
    font-size: 14px;
}

.accion .accion-contenido .data small {
    font-family: 'Century Gothic';
}

.accion .accion-contenido .data span {
    font-family: 'Century Gothic Bold';
}

.accion .accion-contenido p {
    min-height: 8rem;
    padding: 1rem 0 0 0;
    margin: 0;
    color: #333;
    opacity: 0.8;
}

.accion .accion-pie {
    color: white;
    background: #4DADC1;
    padding: 1rem;
}

.accion .accion-pie .counter {
    font-size: 30px;
    font-family: 'Century Gothic Bold';
    display: block;
}

.accion .accion-pie .counter + p {
    font-size: 14px;
    font-family: 'Century Gothic';
}

/* Acción - detalle */
.accion-detalle .autor-user {
    color: #33B8CB;
    font-size: 14px;
}

.accion-detalle .autor-user small {
    font-family: 'Century Gothic';
}

.accion-detalle .autor-user span {
    font-family: 'Century Gothic Bold';
}

.accion-detalle h2 {
    font-size: 35px;
    font-family: 'Century Gothic Bold';
    margin-bottom: 1rem;
}

.accion-detalle .accion-img {
    border: 1px solid #E4E4E4;
}

.accion-detalle .accion-img svg {
    display: none;
}

.accion-detalle .thumbs {
    margin-top: 1rem;
    height: 70px;
    overflow: hidden;
}

.accion-detalle .comentarios {
    margin-top: 2rem;
}

.accion-detalle .comentarios .media {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.accion-detalle .comentarios p {
    margin: 0.8rem 0 0 0;
}

.accion-detalle .comentarios .avatar-wrap {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.accion-detalle .comentarios h4 {
    font-size: 1rem;
    color: #4DADC1;
    margin-bottom: 0.2rem;
}

.accion-detalle .comentarios h4 + span {
    opacity: 0.5;
    font-size: 12px;
}

.accion-detalle .comentarios textarea {
    margin-top: 1rem;
    background: transparent;
    border: 2px solid #9FD5E2;
    resize: none;
    max-width: 40%;
    margin: 2rem auto 1rem;
    outline: none;
    background: white;
}

.accion-detalle .comentarios .avatar-wrap img {
    object-fit: cover;
    object-position: center;
    width: 55px;
    height: 55px;
}

.accion-detalle .autor h3 {
    font-size: 1rem;
}

.accion-detalle .autor .icon-wrap {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #937BD5;
}

.accion-detalle .counters {
    margin-left: 0.8rem;
}

.accion-detalle .counter span:first-of-type {
    font-weight: bold
}

.accion-detalle .autor-info {
    padding: 0;
    margin: 0 0 0 1.8rem;
    list-style: none;
}

.accion-detalle .video-wrapper {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 2rem;
    position: relative;
    background-position: center;
}

.accion-detalle .video-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.accion-detalle .video-wrapper h4 {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 15px;
    bottom: 1.3rem;
    margin: 0;
    color: white;
    z-index: 10;
}

.carousel-wrapper {
    position: relative;
}

.carousel-controls {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    margin: 0;
    list-style: none;
    font-size: 1.7rem;
    color: white;
}


.carousel-controls .slick-arrow {
    display: inline-block;
    cursor: pointer;
}

/* Valores Faro */
.valores {
    margin-top: 5rem;
}

.valores h2 {
    font-size: 57px;
    text-transform: uppercase;
    color: #333;
}

.valores article {
    margin-top: 2rem;
}

.valores .icon-wrap {
    font-size: 25px;
    color: #937BD5;
}

.valores h3 {
    font-family: 'Century Gothic Bold';
    font-size: 24px;
    text-transform: uppercase;
    margin-left: 1rem;
    color: #937BD5;
    margin-bottom: 0;
}

.valores p {
    font-family: 'Century Gothic';
    font-size: 14px;
    color: #333;
    opacity: 0.8;
    line-height: 170%;
    margin-top: 1rem;
}

/* FOOTER */

footer {
    margin-top: 5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
}

.footer img {
    width: 180px;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer li {
    margin: 0 1rem;
}

.footer nav a {
    font-family: 'Century Gothic Bold';
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    transition: 0.3s;
}

.footer nav a:hover {
    text-decoration: none;
}

.footer nav .social-list {
    -webkit-box-pack: justify-content-end;
    -ms-flex-pack: justify-content-end;
    justify-content: justify-content-end;
}

.footer nav .social-list a {
    font-size: 16px;
}

.post-footer {
    font-family: 'Century Gothic';
    background: #333;
    color: #9E9E9E;
    padding: 1rem;
    text-align: center;
    font-size: 14px;
}

/* FORM ELEMENTS */
.select select {
    border: 0;
    background: transparent;
    border-bottom: 2px solid #9FD5E2;
    padding: 0.8rem;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.select select:focus {
    border-bottom: 2px solid #3f8db3;
}

.select.w-icon select {
    width: 100%;
    padding-left: 2rem;
}

.input {
    border: 0;
    background: transparent;
    border-bottom: 2px solid #9FD5E2;
    padding: 0.8rem;
    padding-left: 2rem;
    outline: none;
    width: 100%;
}

.input:focus {
    border-bottom: 2px solid #3f8db3;
}

.input.is-invalid {
    border-bottom-color: #FF6D6D;
}

.form-wrapper {
    margin-bottom: 1rem;
}

.form-wrapper .icon-wrap {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 50px;
}

textarea {
    background: transparent;
    border: 2px solid #9FD5E2;
    resize: none;
    outline: none;
    width: 100%;
    min-height: 170px;
    padding: 1rem;
}

textarea:focus {
    border: 2px solid #3f8db3;
}

.custom-checkbox {
    cursor: pointer;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #3ab0c9;
}

.custom-control-input:active~.custom-control-label::before {
    background-color: transparent;
}

.custom-control-label::after, .custom-control-label::before {
    width: 1.5rem;
    height: 1.5rem;
}

.custom-control.custom-checkbox {
    padding-left: 2.5rem;
}

.custom-control.custom-checkbox label {
    font-family: 'Century Gothic';
    font-size: 0.95rem;
    line-height: normal;
    cursor: pointer;
}

label {
    font-family: 'Century Gothic Bold';
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 15px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .switch-slider {
    background-color: #3ab0c9;
}

input:focus + .switch-slider {
    box-shadow: 0 0 1px #3ab0c9;
}

input:checked + .switch-slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

/* Rounded sliders */
.switch-slider.round {
    border-radius: 35px;
}

.switch-slider.round:before {
    border-radius: 50%;
}

/* ALERTS */
.alert.error {
    background: #ffe4e4;
    color: #f54747;
}

.alert.exito {
    background: #eeffe4;
    color: #43b352;
}

.alert p {
    margin-bottom: 0;
}

.alert .icon-wrap {
    font-size: 20px;
    margin-right: 1rem;
    display: inline-block;
    padding-top: 0.1rem;
}

/* LOGIN */
.auth h2 {
    color: #FFF;
}

.auth h2 + p {
    color: #FFF;
    max-width: 35rem;
    width: 100%;
    margin: 1rem auto;
    text-align: center;
    font-size: 20px;
}

.auth .box {
    max-width: 460px;
    margin: 3rem auto;
}

.auth main {
    padding-top: 13rem;
}

.auth .btn-social {
    margin-bottom: 1rem;
}

.auth-footer {
    background: #e9ecef;
    padding: 1rem;
    margin: 2rem -2rem -2rem;
    border: 0;
}

.separator {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
}

.separator:before, .separator:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    top: 12px;
    background: #ddd;
}

.separator span {
    display: inline-block;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    background: white;
    font-size: 18px;
    color: #949494;
}

/* List groups */
.list-group {
    list-style: none;
}

.list-group-item.active {
    background-color: #3bb1ca;
    border-color: #3ab0c9;
}

.list-group-item:last-child {
    border-radius: 0;
}

/* Sidebar */
.sidebar .usuario-opciones {
    list-style: none;
    padding: 0;
}

.sidebar .usuario-opciones li {
    padding: 0.3rem 0;
}

.sidebar .usuario-opciones li a {
    display: block;
    transition: 0.3s;
    color: #333;
    padding: 0.6rem 0;
}

.sidebar .usuario-opciones li a:hover {
    text-decoration: none;
}

.sidebar .usuario-opciones li a.active {
    font-weight: bold;
}

.sidebar .icon-wrap {
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.sidebar .avatar-wrapper {
    width: 70px;
    height: 55px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    margin: 0;
}

.sidebar .avatar-wrapper img {
    object-fit: cover;
    object-position: center;
    height: 65px;
    width: 70px;
}

.sidebar h3 {
    font-size: 1.2rem;
}

.sidebar h4 {
    font-family: 'Century Gothic';
    font-size: 0.9rem;
    font-weight: 400;
}

.usuario-nombre {
    color: #616161;
    font-family: 'Century Gothic';
}

.progress-bar-primary {
    background-color: #FCBF49 !important;
}

.progress-bar-green {
    background-color: #72c02c !important;
}

.progress-bar-red {
    background-color: #ff7070 !important;
}

/* Edicion de perfil, acciones, etc (usuario logueado) */
.list-acciones .btn-small {
    width: auto;
    min-width: unset;
}

.list-acciones.table td, .list-acciones.table th {
    border-top: 0;
}

.table-responsive.custom {
    overflow-y: hidden;
    min-height: 290px;
}

.photo-list img {
    max-width: 100px;
    height: auto;
}

.btn-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-accion {
    min-width: 200px;
}

.action-icon {
    padding: 0 1rem;
}

/* Noticias */
.noticias {
    padding: 5rem 0;
    background: white;
}

.noticias .heading {
    margin-bottom: 1rem;
}

.noticias .post {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.noticias .post .date {
    font-size: 12px;    
}

.noticias .img-wrapper {
    max-height: 135px;
    display: block;
    margin-bottom: 1rem;
}

.noticias .img-wrapper img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    object-position: center;
}

.noticias h3 a {
    color: #333333;
}

.noticia-detalle img {
    margin-bottom: 1.5rem;
    width: 100%;
}

.noticia-detalle h2 {
    font-size: 3.25rem;
    line-height: 3.5rem;
    margin-bottom: .75rem;
}

.noticia-detalle h2 + p {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    width: 100%;
}

.noticia-detalle .subtitulo {
    padding-bottom: 1rem;
    margin-top: 1rem;    
    border-bottom: 1px solid #ddd;
}

.contenido-noticia {
    margin-top: 1rem;
}

.contenido-noticia p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 0;
    margin: 1rem 0;
    font-weight: 400;
}

.contenido-noticia iframe {
    width: 100%;
    height: 470px;
}

.otras-noticias .img-wrapper {
    max-height: 100px;
}

.otras-noticias .img-wrapper img {
    height: 100px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
}

.otras-noticias h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.otras-noticias h4 a {
    color: #333333;
}

.otras-noticias .post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.otras-noticias p {
    font-size: 14px;
    line-height: 150%;
}

.noticias-listado h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.noticias-listado .img-wrapper {
    max-height: 200px;
}

.noticias-listado .img-wrapper img {
    height: 200px;
}

/*  BANNERS  */
.banner {
    position: relative;
    padding: 1rem;
    background: #eaeaea;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
    text-align: center;
}

.banner span {
    font-size: 12px;
    text-transform: uppercase;
    color: #bdbdbd;
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: normal;
}

.banner.vertical {
    padding-top: 2rem;
}


/*  MOBILE  */
@media screen and (max-width:991px) {

    /* Header */
    header.white-header, header.fixed-header {
        padding: 15px;
    }

    .navbar-collapse {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 80px;
        background: white;
    }

    .navbar-collapse li {
        margin: 1rem 1rem;
    }

    .navbar-collapse li a {
        color: #008598;
        font-size: 1.1rem;
    }

    .navbar-collapse .navbar-nav {
        padding: 1rem;
        text-align: center;
    }

    /* Video Hero */
    .video-background {
        background: url('/assets/video/poster.png') no-repeat right center;
        background-size: cover;
    }

    .video-background .video-content {
        position: static;
        padding-top: 120px;
    }

    .video-content h2 {
        font-size: 50px;
        line-height: 45px;
        max-width: 100%;
    }

    .video-content p {
        max-width: 100%;
    }

    /* General */
    .pre-title {
        max-width: 100%;
        margin-top: 4vh;
    }

    .btn {
        padding: 0 1.4rem;
    }

    .box.w-padding {
        padding: 1.1rem;
    }

    /* About us */
    .about-us {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    /* Encuentro Faro */
    .encuentro-faro {
        margin-top: 1rem;
    }

    /* La Propuesta */
    .la-propuesta h2 {
        font-size: 50px;
        line-height: 50px;
    }

    .la-propuesta .video-wrapper {
        margin-top: 2rem;
    }

    /* Form elements */
    .select select {
        width: 100%;
    }

    /* Acciones */
    .accion-detalle .comentarios textarea {
        max-width: 100%;
    }

    .accion-data {
        margin-top: 1rem;
    }

    /* Colaborar */
    .economicamente {
        margin-top: 1rem;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .footer nav .social-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    /* Noticias */
    
    .noticias .img-wrapper {
        max-height: 200px;
    }

    .noticias .img-wrapper img {
        height: 200px;
    }
    
    .otras-noticias {
        margin-top: 2rem;
    }
    
    .otras-noticias .img-wrapper {
        max-height: 200px;
    }
    
    .otras-noticias .img-wrapper img {
        height: 200px;
    }

}

@media screen and (max-width:767px) {

    /* General */
    .box .btn {
        width: 100%;
    }

    .no-home {
        padding-top: 7rem;
    }

    /* Header*/
    .logo a {
        width: 100px;
        height: 45px;
    }

    /* Video Hero */
    .video-background .map {
        margin-top: 2rem;
    }

    .video-background .map, .video-background .map img {
        height: auto;
        width: 100%;
        background: white;
        overflow: hidden;
    }

    /* Tabs */
    .nav-tabs {
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .nav-tabs .nav-item {
        width: 100%;
    }

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        border: 0;
    }

    /* Listado Proyectos - admin */
    .titulo {
        margin-top: 1.5rem;
    }

    .titulo + .btn {
        margin: 1rem 0;
    }

}

/* TABLET */

@media screen and (min-width: 768px) and (max-width: 991px)  {
    .otras-noticias .post {
        width: 32%;
    }
}
