html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: rgb(7, 39, 48)
}
header {
    background-color: rgb(7, 39, 48);
}
.logos {
    color:white
}
.logo {
    width: 250px;
    height: 80px;
    position: relative;
    left: -100px;
}
.button {

}

.customer-info {
    position: relative;
    display: inline-block;
    color: white;
}

    .customer-info img {
        display: block;
        width: 150px; 
        height: 150px
    }

.customer-details {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
}

.customer-info:hover .customer-details {
    display: block;
}

.container .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 7rem;
    
}

    .container .products-container .product {
        text-align: center;
        padding: 3rem 2rem;
        background: #fff;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        outline: .2rem solid #ccc;
        outline-offset: -1.5rem;
        cursor: pointer;
        border-radius:30px;
    }

        .container .products-container .product:hover {
            outline: .2rem solid #222;
            outline-offset: 0;
        }

        .container .products-container .product img {
            height: 20rem;
        }

        .container .products-container .product:hover img {
            transform: scale(.9);
        }

        .container .products-container .product h3 {
            padding: .5rem 0;
            font-size: 2rem;
            color: #444;
        }

        .container .products-container .product:hover h3 {
            color: #27ae60;
        }


.products-preview {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: rgba(118,118,118,.9);
    display: none;
    align-items: center;
    justify-content: center;
}


.products-preview .preview{
   display: none;
   padding:0 3rem ;  
   background: #fff;
   position: relative;
   margin:0.7rem;
   width: 28rem;
}

.products-preview .preview.active{
   display: inline-block;
}
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-image {
    max-width: 100%; 
    height: auto;
    margin: 0 auto; 
}
    .products-preview .preview img {
        max-width: 100%;
        height: 20rem;
        margin: 0 auto;
    }

.products-preview .preview .fa-times{
   position: absolute;
   top:1rem; right:1.5rem;
   cursor: pointer;
   color:#444;
   font-size: 3rem;
}

.products-preview .preview .fa-times:hover{
  
   transform:rotate(90deg)
}

.products-preview .preview h3 {
        color: #ff4242;
        padding: .5rem 0;
        font-size: 2.5rem;
        text-align: center;
    }
    .products-preview .preview h4{
        color: #091094;
    }
.inline-text {
    display: inline;
}

.inline-block-text {
    display: inline-block;
}
.products-preview .preview p{
   font-size: 1.3rem;
   color:#777;
}

    .products-preview .preview .buttons {
        width: 200px;
        margin-bottom: 1.5rem;
        margin-left: 5rem;
        padding: 0.6rem;
        color: #444;
        font-size: 1.8rem;
    }


    .products-preview .preview .buttons:hover {
        background: rgb(7, 39, 48);
        color: #fff;
    }
/*

@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   .products-preview .preview img{
      height: 25rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

} */