@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400i,700);
@import url(https://fonts.googleapis.com/css?family=Niconne);

body {
    min-height: 100vh;
    position: relative;
    color: #444444;
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-bottom: 60px;
}

body::-webkit-scrollbar {
    width: 0.8em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #676767;
    background-clip: padding-box;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 10px;
    bottom: 10px;
    z-index: 996;
    background: rgb(31, 70, 144);
    width: 40px;
    height: 40px;
    border-radius: 4px 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 18px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(0, 137, 231);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.main {
    margin-top: 50px;
}

.bg-header {
    background: rgb(9, 9, 121);
    background: linear-gradient(98deg, rgba(9, 9, 121, 1) 45%, rgb(0, 212, 255) 100%);
}

section .container {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--color-primary);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/

.contacto .info {
    padding: 30px;
    text-align: center;
    padding-bottom: 0px;
}

.contacto .info i {
    font-size: 20px;
    color: var(--color-primary);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contacto .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #454545;
}

.contacto .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-primary);
}

.facebook,
.twitter,
.linkedin {
    margin: auto;
}

.contacto .info .email:hover i,
.contacto .info .address:hover i,
.contacto .info .phone:hover i,
.contacto .info .facebook:hover i,
.contacto .info .twitter:hover i,
.contacto .info .linkedin:hover i {
    background: var(--color-primary);
    color: #fff;
}

.post {
    display: block;
    width: 100%;
    height: 495px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    background: rgb(9, 9, 121);
    background: linear-gradient(98deg, rgba(9, 9, 121, 1) 45%, rgb(0, 212, 255) 100%);
}

#footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
}

#footer .copyright {
    text-align: center;
}

@media (max-width: 1024px) {
    .main {
        margin-top: 50px;
    }

    .imagen_producto {
        height: 220px;
    }
}

@media (max-width: 768px) {

    .ind {
        width: 12px !important;
    }

    .imagen_producto {
        height: 200px;
    }

    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

@media (max-width: 520px) {
    .carousel-indicators {
        display: none;
    }

    .imagen_producto {
        height: 260px;
    }
}
