﻿body{
    background: url(../images/fondo-gris.webp) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Manrope', sans-serif;
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
}
.chat img{
    width: 100%;
}

.blanco{
    background: white !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;

    box-shadow: 3px 3px 10px gray;
}
.blanco .menu{
    color: #457a96;
    text-shadow: 0 0 0 transparent;
}
.blanco .activo{
    color: white !important;
}

.efecto{
    position: relative;
    padding: 0;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(20%, rgba(255,255,255,0.8)), color-stop(40%, rgba(255,255,255,0.6)), color-stop(60%, rgba(255,255,255,0.4)), color-stop(80%, rgba(255,255,255,0.2)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );

    padding-top: 10px;
    padding-bottom: 100px;

    transition: all 1s;
}


.cabecera-fondo{
    height: 200px;
    padding: 0;
}
.fondo-productos{
    background: url(../images/fondo-productos.webp) no-repeat center center;
    background-size: 100% auto;
}
.fondo-nosotros{
    background: url(../images/fondo-nosotros.webp) no-repeat center center;
    background-size: 100% auto;
}
.fondo-contacto{
    background: url(../images/fondo-contacto.webp) no-repeat center center;
    background-size: 100% auto;
}


.logotipo{
    text-align: center;
}
.logotipo img{
    width: 100%;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}

.menu-r{
    display: none;
}
.menu, .menu-r{
    text-align: center;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px black;
    font-size: 20px;
    cursor: pointer;
}
.menu:hover, .activo, .menu-r:hover{
    background: rgb(244,134,48, 0.9);
}


.redes{
    text-align: center;
}
.redes img{
    width: 30px;

    border-radius: 4px;
}



.contenido{
    padding-top: 30px;
    padding-bottom: 40px;
}
.contenido .row{
    margin-bottom: 70px !important;
}

.titulo{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #407d93;
    margin-bottom: 30px;
}
.subtitulo{
    text-align: center;
    font-size: 20px;
    color: gray;
    margin-bottom: 30px;
}

.p{
    text-align: center;
}
.p img{
    height: 130px;
}


.seccion{
    background: rgb(39,91,125);
    background: linear-gradient(101deg, rgba(39,91,125,1) 0%, rgba(72,123,155,1) 46%, rgba(118,152,164,1) 100%);
    color: white;
    font-size: 22px;
    line-height: 32px;
    padding: 50px;
}
.seccion strong{
    width: 100%;
    font-size: 30px;
    text-shadow: 2px 2px 2px black;
    display: inline-block;
    margin-bottom: 20px;
}
.seccion a{
    color: white;
}

.img1{
    background: url(../images/empresa-farmaceutica.webp) no-repeat center center;
    background-size: cover;
}
.img2{
    background: url(../images/sobre-bioscmic.webp) no-repeat center center;
    background-size: cover;
}
.img3{
    background: url(../images/contacto-bioscmic.webp) no-repeat center center;
    background-size: cover;
}


.m{
    text-align: center;
    font-size: 20px;
}
.m strong{
    width: 100%;
    display: inline-block;
    padding: 12px 0;
}
.m img{
    height: 250px;
}


footer{
    background: #f7f7f7;
    font-size: 19px;
    line-height: 29px;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer iframe{
    width: 100%;
    height: 260px;
}

.form-group{
    margin-bottom: 5px;
}


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

}

@media screen and (max-width:1200px){
    .cabecera{
        position: relative;
        padding-bottom:5px !important;
        padding-top:5px !important;
    }
    .p{
        margin-bottom: 20px !important;
    }
    .menu, .menu-r{
        color: black;
        text-shadow: 2px 2px 2px transparent;
    }
    .menu:hover, .menu-r:hover, .activo{
        color: white;
    }
}

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

@media screen and (max-width:768px){
    .blanco .logotipo img, .logotipo img{
        width: 50%;
    }
    nav{
        margin: 12px 0 !important;
    }
}

@media screen and (max-width:576px){
    .blanco .logotipo img, .logotipo img{
        width: 80%;
    }
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
}