@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,500,600,700');

:root {
    --main-color: #76061e;
    --second-color: #1e1e27;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 62.5%;
    position: relative;
    margin: 11vh 0 0 0;
    color: var(--second-color);
}

h1, h2, h3,
h4, h5, h6, p, a {
    margin: 0;
}

h1 {
    font-size: 4rem;
}
h2 {
    font-size: 3.5rem;
}
h3 {
    font-size: 3rem;
}
h4 {
    font-size: 2.5rem;
}
h5 {
    font-size: 2rem;
}
h6 {
    font-size: 1.5rem;
}
p, a {
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.6rem;
    }
    h3 {
        font-size: 2.2rem;
    }
    h4 {
        font-size: 1.8rem;
    }
    h5 {
        font-size: 1.4rem;
    }
    h6 {
        font-size: 1.2rem;
    }
    p, a {
        font-size: .8rem;
    }
}

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

a {
    text-decoration: none;
    transition: all .2s ease-in-out;
}

li {
    list-style: none;
}

.icon {
    border: 2px solid #fff;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    background-color: #fff;
    transition: all .2s ease-in-out;
    margin: 2px;
}

.icon:hover {
    background-color: var(--main-color);
}
    .icon:hover i {
        color: #fff;
    }
    .icon i {
        color: var(--main-color);
        font-size: 1.2rem;
        transition: all .2s ease-in-out;
    }

.title {
    font-weight: bold;
    text-transform: uppercase;
}

.white {
    color: #fff;
}

section {
    padding: 30px 0;
}

.divider {
    height: 1.2px;
    width: 80%;
    margin: 0 auto;
    background-color: #bebebe;
}

/* Preloader CSS */

#preloader {
    overflow: hidden;
    background: #76061e;
    background: -webkit-linear-gradient(to right, #76061e, #ffc107);
    background: -webkit-linear-gradient(left, #76061e, #ffc107);
    background: linear-gradient(to right, #76061e, #ffc107);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
}

.loader {
    width: 46px;
    position: relative;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -23px;
    z-index: 9;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: translateY(0%);
    }
    30% {
        -webkit-transform: translateY(-0.25em);
    }
    50% {
        -webkit-transform: translateY(0%);
    }
    70% {
        -webkit-transform: translateY(0.25em);
    }
}

.loader .inner1,
.loader .inner2,
.loader .inner3 {
    display: inline-block;
    margin: 0.125em;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #fff;
    border-radius: 1em;
    background-color: #fff;
    -webkit-transform-origin: 50%;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.loader .inner2 {
    -webkit-animation-delay: 0.1875s;
}

.loader .inner3 {
    -webkit-animation-delay: 0.375s;
}

/* Cart Styles */
    .sub-items-cart {
        border: 1px solid transparent;
        border-radius: 50%;
        background-color: orange;
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        font-family: sans-serif;
    }

    .cart-card {
        border: 1px solid rgba(172, 172, 172, 0.3);
        border-radius: 5px;
        padding: 10px;
    }

    .cart-icon {
        color: #fff;
        font-size: 20px;
    }
/* End Cart */

/* Icon Whatsapp */
    .icon-wa {
        color: #fff;
        font-size: 46px;
    }

    .contact-whatsapp {
        position: fixed;
        top: 50%;
        right: 20px;
        z-index: 2;
        border-radius: 50%;
        background-color: #0cb80c;
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media screen and (max-width: 768px){
        .icon-wa {
            font-size: 36px;
        }
        
        .contact-whatsapp {
            z-index: 2;
            height: 30px;
            width: 30px;
        } 
    }
/* End General */

#scrollUp {
    bottom: 10%;
    font-size: 18px;
    right: 5%;
    width: 40px;
    background-color: #5a5c68;
    color: #fff;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 2px 0 0 2px;
    border-radius: 50%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

#scrollUp:hover {
    background-color: #76061e;
}

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 55px;
}

.section-heading-line {
    width: 50px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
}

/* Overlay */
    .bg-overlay {
        position: relative;
        z-index: 1;
    }
    .bg-overlay:after {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(4, 8, 29, 0.5);
        content: '';
        z-index: -1;
        top: 0;
        left: 0;
    }
/* Fin Overlay */

/* Buttons */
    /* General */

    /* Fin General */

    /* Basic Button */
        .btn-fcm-light,
        .btn-fcm-dark,
        .btn-fcm-icon-dark,
        .btn-fcm-icon-light {
            text-transform: uppercase;
            font-weight: bold;
            font-size: .85rem;
            padding: 7px 12px;
            transition: all .3s ease-in-out;
        }
        .btn-fcm-light,
        .btn-fcm-icon-light {
            color: var(--main-color)!important;
            background: #fff;
            border: 2px solid var(--main-color);
        }
        .btn-fcm-dark,
        .btn-fcm-icon-dark {
            color: #fff!important;
            background-color: var(--main-color);
            border: 2px solid #fff;
        }
        .btn-fcm-light:hover {
            color: #fff!important;
            background-color: var(--main-color);
            border: 2px solid #fff;
        }
        .btn-fcm-dark:hover {
            color: var(--main-color)!important;
            background-color: #fff;
            border: 2px solid var(--main-color);
        }
        .btn-fcm-icon-dark,
        .btn-fcm-icon-light{
            border-radius: 50%;
        }
        
    /* Fin Basic Button */

    /* Fancy Button */
        .fancy-btn {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 44px;
            padding: 0 15px;
            border-left: 2px solid #76061e;
            border-right: 2px solid #ffc107;
            box-sizing: border-box;
            background-position: 0 0, 0 100%;
            background-repeat: no-repeat;
            background-size: 100% 2px;
            background-image: -webkit-linear-gradient(left, #76061e 0%, #ffc107 100%), -webkit-linear-gradient(left, #76061e 0%, #ffc107 100%);
            background-image: linear-gradient(to right, #76061e 0%, #ffc107 100%), linear-gradient(to right, #76061e 0%, #ffc107 100%);
            -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
            position: relative;
            z-index: 1;
        }

        .fancy-btn:after {
            color: #fff;
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            background: #76061e;
            background: -webkit-linear-gradient(to right, #76061e, #ffc107);
            background: -webkit-linear-gradient(left, #76061e, #ffc107);
            background: linear-gradient(to right, #76061e, #ffc107);
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            border-radius: 2px;
            opacity: 0;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
        }

        .fancy-btn:hover:after,
        .fancy-btn.fancy-active:after {
            opacity: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
        }

        .fancy-btn.fancy-dark {
            color: #232d37;
        }

        .fancy-btn:hover,
        .fancy-btn.fancy-dark:hover {
            color: #fff;
        }
    /* Fin Fancy Button */
/* Fin Buttons */

/* NavBar */
    #header-sticky-wrapper {
        position: absolute;
        width: 100%;
        height: auto!important;
    }

    .header_area {
        background-color: var(--main-color);
        position: fixed;
        width: 100%;
        z-index: 2!important;
        height: 11vh;
        top: 0;
        left: 0;
        padding: 0 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        -webkit-box-shadow: 0px 10px 8px -5px rgba(0,0,0,0.58);
        -moz-box-shadow: 0px 10px 8px -5px rgba(0,0,0,0.58);
        box-shadow: 0px 10px 8px -5px rgba(0,0,0,0.58);
    }

    .is-sticky .header_area {
        background-color: #fff;
        position: fixed;
        width: 100%;
        z-index: 2;
        top: 0;
        left: 0;
        border-bottom: 1px solid transparent;
    }

    .header_area .navbar-brand {
        padding: 0;
        margin-right: 0;
        font-size: 30px;
        color: #fff;
        font-weight: 700;
    }

    .header_area .navbar {
        padding: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 25px;
        padding-left: 25px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }
        .is-sticky .navbar-expand-lg .navbar-nav .nav-link,
        .is-sticky .navbar-brand,
        .is-sticky .bar-icon {
            color: var(--main-color);
        }

    .bar-icon {
        color: #fff;
        margin: 0 auto;
        font-size: 20px;
    }
/* Fin NavBar */

/* hero area css */
    .hero-area {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
    }
    @media screen and (max-width: 768px) {
        .hero-area {
            height: 50vh;
        }
    }

    .video-overview > a {
        color: #fff;
        position: relative;
        z-index: 1;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 60px;
        display: inline-block;
    }

    .video-overview > a:after {
        background-color: #fff;
        width: calc(100% - 45px);
        right: -1px;
        bottom: 0;
        position: absolute;
        z-index: -1;
        content: '';
        height: 2px;
    }

    .video-overview > a > i {
        width: 30px;
        height: 30px;
        text-align: center;
        background-color: #fff;
        line-height: 30px;
        margin-right: 15px;
        border-radius: 50%;
        color: #76061e;
    }

    .animated-img {
        -webkit-animation: animated-image 20s ease infinite;
        animation: animated-image 20s ease infinite;
    }

    @-webkit-keyframes animated-image {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 20%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    @keyframes animated-image {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 20%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .hero-area .info {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Carousel Home*/
        .header-carousel {
            position: absolute!important;
            z-index: -1!important;
            top: -20vh;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }
        @media screen and (max-width: 768px) {
            .header-carousel {
                top: 0;
            }
        }
    /* Fin Carousel Home */
/* Fin Header Area */

/* Top Features Area CSS */

.fancy-top-features-area {
    position: relative;
    z-index: 1;
}

.fancy-top-features-content {
    position: absolute;
    width: 100%;
    z-index: 99;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    left: 0;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.single-top-feature {
    padding: 45px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.single-top-feature * {
    color: #1e1e27;
}

.single-top-feature:after {
    width: 1px;
    height: calc(100% - 60px);
    position: absolute;
    top: 30px;
    right: 0;
    content: '';
    background-color: #e5e5e5;
}

.fancy-top-features-content .col-12:last-child .single-top-feature:after {
    display: none;
}

.single-top-feature p {
    margin-bottom: 0;
}

.single-top-feature h5 i {
    color: #76061e;
}

/* About Us Area CSS */

.fancy-about-us-area {
    padding-top: 200px;
    padding-bottom: 100px;
}

.about-us-text > h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.about-us-text > p {
    line-height: 1.8
}

.about-us-text > p:last-of-type {
    margin-bottom: 35px;
}

.about-us-thumb > img {
    border-radius: 5px;
}

/* Skills Area CSS */

.fancy-skills-area {
    position: relative;
    z-index: 1;
}

.skills-side-thumb {
    position: absolute;
    top: 50%;
    z-index: 99;
    left: 0;
    width: calc(50% - 15px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.barfiller {
    background: #e5e5e5;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 8px;
    position: relative;
    width: 100%;
}

.barfiller .fill {
    display: block;
    position: relative;
    height: 100%;
    background: #76061e;
    background: -webkit-linear-gradient(to right, #76061e, #ffc107);
    background: -webkit-linear-gradient(left, #76061e, #ffc107);
    background: linear-gradient(to right, #76061e, #ffc107);
    z-index: 1;
}

.barfiller .tipWrap {
    display: none;
}

.barfiller .tip {
    margin-top: -22px;
    font-size: 14px;
    color: #232d37;
    left: 0px;
    position: absolute;
    z-index: 2;
    background: transparent;
    font-weight: 600;
}

.barfiller .tip:after {
    display: none;
}

.single_progress_bar {
    margin-bottom: 35px;
}

.single_progress_bar:last-child {
    margin-bottom: 60px;
}

.single_progress_bar * {
    color: var(--second-color);
}

/* Service Area CSS */

.single-service-area {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single-service-area i {
    font-size: 40px;
    background: #76061e;
    background: -webkit-linear-gradient(to right, #76061e, #ffc107);
    background: -webkit-linear-gradient(left, #76061e, #ffc107);
    background: linear-gradient(to right, #76061e, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-service-area * {
    color: #fff;
}

.single-service-area:hover i {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

/* Testimonials Area CSS */

.testimonials-slides {
    position: relative;
    z-index: 1;
}

.testimonial-thumbnail {
    width: 170px;
    height: 170px;
    margin-right: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    margin-left: 5px;
}

.testimonial-thumbnail img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.testimonilas-content span.quote {
    font-size: 120px;
    line-height: 1;
    background: #76061e;
    background: -webkit-linear-gradient(to right, #76061e, #ffc107);
    background: -webkit-linear-gradient(left, #76061e, #ffc107);
    background: linear-gradient(to right, #76061e, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonilas-content h5 {
    color: #51545f;
    font-size: 18px;
    line-height: 30px;
    margin-top: -30px;
    margin-bottom: 0;
}

.testimonilas-content h6 {
    margin-top: 15px;
}

.testimonilas-content h6 span {
    font-size: 14px;
    color: #b5aec4;
}

.testimonials-slides .owl-prev,
.testimonials-slides .owl-next {
    width: 30px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: -4%;
    color: #c2c1ca;
    z-index: 9;
}

.testimonials-slides .owl-next {
    left: auto;
    right: -4%;
}

/* CTA Area CSS */

.cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    color: #fff;
    margin-bottom: 30px;
}

/* Blog Area CSS */

.single-blog-area {
    border: 1px solid #ebebeb;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-blog-area:hover {
    background-color: #fff;
    box-shadow: 2px 8px 40px rgba(0, 0, 0, 0.1)
}

.blog-content {
    padding: 30px;
}

.blog-content h5 a {
    font-size: 18px;
    color: #232d37;
}

.blog-content > a {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    color: #76061e;
    text-decoration: underline;
    font-weight: 400;
}

.blog-content > a:hover {
    color: #76061e;
}

/* Footer Area CSS */

.single-footer-widget {
    margin-bottom: 30px;
}

.single-footer-widget h6 {
    color: #76061e;
    margin-bottom: 30px;
    font-weight: 600;
}

.single-footer-widget > p {
    color: #b5aec4;
    font-weight: 300;
}

.single-footer-widget form {
    position: relative;
    z-index: 1;
}

.single-footer-widget form > input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #b5aec4;
    border: none;
    background-color: #2b2e3d;
    border-radius: 2px;
    font-size: 12px;
}

.single-footer-widget form > button {
    padding: 5px 15px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    z-index: 5;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    background: #76061e;
    background: -webkit-linear-gradient(to right, #76061e, #ffc107);
    background: -webkit-linear-gradient(left, #76061e, #ffc107);
    background: linear-gradient(to right, #76061e, #ffc107);
}

.footer-social-widegt {
    margin-top: 30px;
}

.footer-social-widegt > a {
    color: #76061e;
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer-social-widegt > a:hover {
    color: #76061e;
}

.single-tweet a {
    color: #b5aec4;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 1.9;
}

.single-tweet a > i {
    color: #76061e;
}

.single-tweet span {
    font-size: 12px;
    color: #b5aec4;
}

.single-footer-widget ul li {
    display: inline-block;
    width: 50%;
    float: left;
    overflow: hidden
}

.single-footer-widget ul li a {
    font-size: 14px;
    color: #b5aec4;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
    margin-left: -10px;
}

.single-footer-widget ul li a:hover {
    margin-left: 5px;
    color: #76061e;
}

.footer-copywrite-area {
    background-color: #04081d;
    height: 50px;
}

.copywrite-text p {
    margin: 0;
}

.copywrite-text p > a {
    font-weight: 300;
    color: #b5aec4;
}

.footer-nav ul li {
    display: inline-block;
}

.footer-nav ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #b5aec4;
    display: block;
    padding: 0 20px;
}

/* Breadcumb Area CSS */

.fancy-breadcumb-area {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.breadcumb-content {
    padding-top: 100px;
}

.breadcumb-content h2 {
    color: #fff;
    font-size: 48px;
}

.breadcumb-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

/* Google Map */

#googleMap {
    width: 100%;
    height: 525px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
}

.follow-us-area {
    margin-top: 40px;
}

.follow-us-area h2 {
    margin-bottom: 25px;
}

.follow-us-area > a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: #ddd;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}

.contact-details-area > p {
    font-size: 16px;
}

.follow-us-area > a.facebook {
    background-color: #3a61c9;
}

.follow-us-area > a.twitter {
    background-color: #41a1f6;
}

.follow-us-area > a.google-plus {
    background-color: #fb4343;
}

.follow-us-area > a.instagram {
    background-color: #8f6247;
}

.contact-form .form-control {
    width: 100%;
    height: 50px;
    border-radius: 2px;
    color: #b5aec4;
    border: 1px solid #ebebeb;
}

.contact-form .form-control:focus {
    border: 1px solid #7f7f7f;
}

.contact-form textarea.form-control {
    height: 80px;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    text-align: center;
}

.breadcrumb li a {
    color: #fff;
}

/* Blog Page CSS */

.single-post-share-info > a {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background-color: #ddd;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
}

.single-post-share-info > a.facebook {
    background-color: #4c65a8;
}

.single-post-share-info > a.twitter {
    background-color: #4c65a8;
}

.single-post-share-info > a.googleplus {
    background-color: #f43535;
}

.single-post-share-info > a.instagram {
    background-color: #8f6247;
}

.single-post-share-info > a.pinterest {
    background-color: #f0c605;
}

.post-thumb {
    margin-bottom: 30px;
}

.post-content > p {
    font-size: 16px;
}

.fancy-blockquote {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding-left: 70px;
}

.fancy-blockquote span.quote {
    font-size: 100px;
    position: absolute;
    line-height: 1;
    top: -15px;
    left: 0;
    color: #76061e
}

.fancy-blockquote h5 {
    line-height: 1.5;
    font-size: 18px;
    font-weight: 400;
}

.fancy-blockquote h6 {
    font-weight: 400;
}

.fancy-blockquote h6 span {
    color: #b5aec4;
    font-size: 14px;
}

.single-widget-area .widget-title h5 {
    font-size: 22px;
    margin-bottom: 25px;
}

.post-contents {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: block;
}

.post-contents a h6 {
    line-height: 1.5;
}

.post-contents > a.post-date {
    font-size: 14px;
    color: #b5aec4;
}

.categories-widget ul > li > a {
    color: #1e1e27;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.categories-widget ul > li > a > i {
    font-size: 8px;
    color: #76061e;
    margin-right: 10px;
}

.tags-widget > a {
    background-color: #ebebeb;
    padding: 10px 15px 7px;
    display: inline-block;
    font-size: 12px;
    color: #51545f;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
}

.tags-widget > a:hover {
    background-color: #76061e;
    color: #fff;
}

/* Responsive Styles */

.no-mobile {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .no-mobile {
        display: none;
    }

    .mobile {
        display: block;
    }
}

/* Own Styles */
    /* Register Form */
        .section-register {
            padding: 0;
        }
            .section-register .box {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .img-form {
                height: 89vh;
                background-size: cover;
                background-position: center center;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                transition: all .3s ease-in-out;
            }
                .img-form[data-method="login"] {
                    order: 1;
                }
                .img-form[data-method="register"] {
                    order: 0;
                }
            .img-form * {
                color: #fff;
            }

            @media screen and (max-width: 576px) {
                .img-form{
                    display: none;
                }
            }
            @media screen and (max-width: 992px) {
                .img-form {
                    background-image: url('../img/registro-img/reg-md.jpg');
                }
            }
            @media screen and (max-width: 1200px) {
                .img-form {
                    background-image: url('../img/registro-img/reg-lg.jpg');
                }
            }
            @media screen and (min-width: 1201px) {
                .img-form {
                    background-image: url('../img/registro-img/reg-xl.jpg');
                }
            }

                .img-form.reg_class,
                .form-box.log_class {
                    order: 0;
                }

                .img-form.log_class,
                .form-box.reg_class {
                    order: 1;
                }

            .form-box{
                height: 89vh;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #fff;
                transition: all .3s ease-in-out;
            }
                .form-box * {
                    color: var(--main-color);
                }

                .register-form,
                .login-form {
                    max-width: 400px;
                    text-align: center;
                }
                @media screen and (max-width: 768px) {
                    .register-form,
                    .login-form {
                        max-width: 300px;
                    }
                }
                .field {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin: 5px 0;
                    border-bottom: 1px solid grey;
                    border-radius: 5px;
                }
                    #hide_pass_btn {
                        cursor: pointer;
                        transition: all .2s ease-in-out;
                    }
                    #hide_pass_btn:hover {
                        opacity: .6;
                    }
                    
                    .field input {
                        text-align: center;
                        border: none;
                        background: none;;
                    }
                    .field input:focus {
                        box-shadow: none;
                        border: none;
                    }
                    .auth-icon {
                        font-size: 20px;
                        padding: 15px;
                    }

                .form-box .footer-info {
                    padding: 10px 0 0 0;
                    margin-top: 15px;
                }
    /* End Register Form */
/* End Own Styles */