/* =========== Index of CSS ===========
:: 1.0 Import Fonts
:: 2.0 Import All CSS
:: 3.0 Base CSS
    :: 3.1.0 Spacing
    :: 3.2.0 Height
    :: 3.3.0 Section Padding
    :: 3.4.0 Section Heading
    :: 3.5.0 Preloader
    :: 3.6.0 Miscellaneous
    :: 3.7.0 ScrollUp
    :: 3.8.0 science Button
:: 4.0 Header Area CSS
:: 5.0 Hero Slides Area
:: 6.0 About Us Area CSS
:: 7.0 Featured Post Sildes CSS
:: 8.0 Instagram Area CSS
:: 9.0 Footer Area CSS
:: 10.0 Breadcumb Area CSS
:: 11.0 Blog Area CSS
:: 12.0 Comment Area
:: 13.0 Leave A Reply Area CSS
:: 14.0 Pager CSS
:: 15.0 Sidebar Area CSS
:: 16.0 Contact Area CSS
:: 17.0 Typography CSS
*/
/* :: 1.0 Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
/* CSS rules to specify families // font-family: 'Work Sans', sans-serif; */
/* :: 2.0 Import All CSS */
@import url(bootstrap.min.css);
@import url(classy-nav.css);
@import url(owl.carousel.min.css);
@import url(animate.css);
@import url(magnific-popup.css);
@import url(font-awesome.min.css);
/* :: 3.0 Base CSS */
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Work Sans';
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
    color: #191919;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Work Sans';
}
p {
    color: #3b3b3b;
    font-size: 17px;
    font-family: 'Work Sans';
    line-height: 1.4em;
    font-weight: 400;
}
a, a:hover, a:focus {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: 0 solid transparent;
    color: #191919;
    font-weight: 600;
    font-size: 14px;
}
ul, ol {
    margin: 0;
}
ul li, ol li {
    list-style: none;
}
.Medium {
    font-family: 'Work Sans';
    font-weight: 500 !important;
}
.Bold-blau {
    font-family: 'Work Sans';
    font-weight: bold !important;
    color: #0068a2;
}
img {
    height: auto;
    max-width: 100%;
}
/* :: 3.1.0 Spacing */
.mt-15 {
    margin-top: 15px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mt-70 {
    margin-top: 70px !important;
}
.mt-100 {
    margin-top: 100px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mb-70 {
    margin-bottom: 70px !important;
}
.mb-100 {
    margin-bottom: 100px !important;
}
.ml-15 {
    margin-left: 15px !important;
}
.ml-30 {
    margin-left: 30px !important;
}
.ml-50 {
    margin-left: 50px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-30 {
    margin-right: 30px !important;
}
.mr-50 {
    margin-right: 50px !important;
}
/* :: 3.2.0 Height */
.height-400 {
    height: 400px;
}
.height-500 {
    height: 500px;
}
.height-600 {
    height: 600px;
}
.height-700 {
    height: 700px;
}
.height-800 {
    height: 800px;
}
/* :: 3.3.0 Section Padding */
.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-padding-100-0 {
    padding-top: 100px;
    padding-bottom: 0;
}
.section-padding-0-100 {
    padding-top: 0;
    padding-bottom: 100px;
}
.section-padding-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}
/* :: 3.4.0 Section Heading */
.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.section-heading h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .section-heading h2 {
        font-size: 24px;
    }
}
.section-heading p {
    font-size: 18px;
    font-weight: 500;
    color: #595959;
    margin-bottom: 0;
}
/* :: 3.5.0 Preloader */
.preloader {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    overflow: hidden;
}
.preloader .circle-preloader .dot {
    background: #0068a2;
}
.preloader .circle-preloader .dot, .preloader .circle-preloader .dot:after {
    display: inline-block;
    width: 2em;
    height: 2em;
    border-radius: 2%;
    animation: a 1.5s calc(((var(--i) + var(--o, 0))/var(--n) - 1)*1.1s) infinite;
}
.preloader .circle-preloader .dot:after {
    --o: 1;
    background: #ffffff;
    content: "";
}
@-webkit-keyframes a {
    0%, 50% {
        transform: scale(0);
    }
}
@keyframes a {
    0%, 50% {
        transform: scale(0);
    }
}
@-webkit-keyframes line {
    0% {
        left: -80px;
    }
    100% {
        left: 160px;
    }
}
@keyframes line {
    0% {
        left: -80px;
    }
    100% {
        left: 160px;
    }
}
/* :: 3.6.0 Miscellaneous */
.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-white {
    background-color: #ffffff !important;
}
.bg-dark {
    background-color: #000000 !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.font-bold {
    font-weight: 700;
}
.font-light {
    font-weight: 300;
}
.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}
.bg-overlay::after {
    background-color: rgba(21, 4, 48, 0.89);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.bg-fixed {
    background-attachment: fixed !important;
}
/* :: 3.7.0 ScrollUp */
#scrollUp {
    background-color: #232323;
    border-radius: 0;
    bottom: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 50px;
    text-align: center;
    width: 40px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
#scrollUp:hover {
    background-color: #191919;
}
/* :: 3.8.0 nikki Button */
.nikki-btn {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 180px;
    height: 50px;
    color: #191919;
    background-color: #ffffff;
    border: 1px solid #191919;
    border-radius: 2px;
    padding: 0 30px;
    font-size: 14px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: 400;
}
.nikki-btn.active, .nikki-btn:hover, .nikki-btn:focus {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    background-color: #0068a2;
    border-color: #0068a2;
}
.nikki-btn.btn-sm {
    min-width: 80px;
    height: 30px;
    line-height: 28px;
}
/* :: 4.0 Header Area CSS */
.navi {
    display: block;
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    padding: 11px 0;
    background-color: #fff;
}
.navi img {
    float: left;
    width: 200px;
    height: 18px;
}
.blocke {
    background-color: #ea3c61;
    padding: 13px;
}
.fa-white {
    color: white;
}
.blocke:hover {
    background-color: #232323;
}
.single-mega {
    color: #232323;
}
.single-mega a {
    list-style-type: none;
    margin-left: 0;
}
.single-mega a:before {
    content: "-";
    padding-right: 0;
}
.single-mega a:first-child:before {
    content: "-";
    padding-right: 5px;
}
@media only screen and (max-width: 991px) {
    .blocke {
        background-color: #f2f4f8;
        padding: 0;
    }
    .fa-white {
        color: #232323;
    }
    .line {
        display: none;
    }
    .top-social-info a {
        display: inline-block;
        font-size: 18px;
        color: white;
        margin: 12px 10px;
    }
    .top-social-info {
        background-color: #232323;
        margin: 0px !important;
    }
    .minus-hide {
        display: none;
    }
    .plus-hide {
        color: #0068a2;
        font-weight: bold;
    }
    .megamenu {
        display: block !important;
    }
    .logo-seccion {
        max-width: 140px;
    }
}
@media only screen and (min-width: 992px) {
    .plus-hide {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1151px) {
    .header-area .nikki-main-menu .classynav ul li ul li a {
        padding: 0 0px;
        letter-spacing: 0;
    }
}
@media (min-width: 500px) {
    .hidden {
        display: none;
    }
}
/* :: 9.0 Footer Area CSS */
.footer-area {
    position: relative;
    z-index: 1;
    background-color: #101010;
}
.footer-area .footer-social-info {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-area .footer-social-info a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #a6a6a6;
}
.footer-area .footer-social-info a span {
    margin-left: 10px;
}
@media only screen and (max-width: 767px) {
    .footer-area .footer-social-info a span {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-social-info a span {
        display: none;
    }
}
.footer-area .footer-social-info a:hover, .footer-area .footer-social-info a:focus {
    color: #ffffff;
}
.footer-area .copywrite-text {
    position: relative;
    z-index: 1;
    padding: 15px 0;
    text-align: center;
}
.footer-area .copywrite-text p {
    font-size: 14px;
    color: #595959;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .footer-area .copywrite-text p {
        font-size: 12px;
    }
}
.footer-area .copywrite-text p a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}
.footer-area .copywrite-text p a:hover, .footer-area .copywrite-text p a:focus {
    color: #d1bb95;
}
@media only screen and (max-width: 767px) {
    .footer-area .copywrite-text p a {
        font-size: 12px;
    }
}
/* :: 17.0 Typography CSS */
.nikki-list-area, .type-face, .nikki-image, .nikki-blockquote {
    position: relative;
    z-index: 1;
}
.nikki-list {
    position: relative;
    z-index: 1;
}
.nikki-list li {
    font-size: 16px;
    color: #595959;
    margin-bottom: 15px;
    display: block;
}
.nikki-list li:last-child {
    margin-bottom: 0;
}
blockquote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 15px 0 0 0;
}
blockquote .blockquote-icon {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    max-width: 40px;
    width: 40px;
}
@media only screen and (max-width: 767px) {
    blockquote .blockquote-icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
        flex: 0 0 35px;
        max-width: 35px;
        width: 35px;
        margin-right: 0;
    }
}
blockquote .blockquote-icon img {
    width: 30px;
    height: auto;
}
@media only screen and (max-width: 767px) {
    blockquote .blockquote-icon img {
        width: 25px;
    }
}
blockquote .blockquote-text h5 {
    font-weight: 400;
    line-height: 1.5;
}
blockquote .blockquote-text h5:first-child {
    font-style: italic;
}
@media only screen and (max-width: 767px) {
    blockquote .blockquote-text h5 {
        font-size: 16px;
    }
}
blockquote .blockquote-text h6 {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}
blockquote .blockquote-text h6 span {
    color: #d1bb95;
}
@media only screen and (max-width: 767px) {
    blockquote .blockquote-text h6 {
        font-size: 12px;
    }
}
blockquote.shortcodes {
    padding: 30px 50px;
    background-color: #f2f4f5;
}
@media only screen and (max-width: 767px) {
    blockquote.shortcodes {
        padding: 30px 15px;
    }
}
.contact-form-area .form-control {
    position: relative;
    z-index: 2;
    height: 50px;
    width: 100%;
    background-color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 15px 30px;
    color: #a6a6a6;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
.contact-form-area .form-control:focus {
    box-shadow: none;
    border-color: #d1bb95;
}
.contact-form-area textarea.form-control {
    height: 120px;
}
/* ======= The End ======= */
.box-interior {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.hr-interior {
    border: 0.5px solid #fff;
    margin: 0 auto 40px;
    max-width: 900px;
    width: 90%;
}
.no-mar-pad {
    margin: 0;
    padding: 20px 0 0 0;
}
.indicadores {
    display: flex;
    width: 100%;
    padding: 0px 50px;
}
.block {
    display: flex;
    width: 25%;
}
.txt {
    color: #fff;
    margin-bottom: 5px;
}
.minus-bot {
    margin-bottom: 5px !important;
}
@media (min-width:1401px) {}
@media (min-width:1200px) {
    .codrops-header {
        padding: 4em 2em 0 !important;
    }
}
@media (min-width:992px) and (max-width:1400px) {}
@media (max-width:1199px) {}
@media (min-width:700px) {
    .ficha-interior-intro {
        height: 50vh;
    }
}
@media (max-width:991px) {
    .ajuste-container {
        max-width: 100% !important;
    }
    .ajuste-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media (max-width:599px) {
    .no-mar-pad {
        padding: 0;
    }
    .no-mar-pad-dev {
        margin: 0 !important;
        padding: 0 !important;
    }
    .indicadores {
        padding: 0px 30px;
    }
}
@media (max-width:499px) {
    .box-interior {
        width: 80%;
    }
}
@media (max-width:399px) {
    .contenido-interior h3 {
        padding: 30px 0;
        line-height: 1.2em;
        font-size: 1.3rem;
    }
    .hr-interior {
        margin: 0 auto 40px;
    }
    .block {
        width: 27%;
    }
    .block-mob {
        width: 19%;
    }
    .txt {
        font-size: 13px;
    }
}