@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#topBtn{
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  margin: 0 8px;
  opacity: 0.55;
}

#topBtn:hover {
    background-color: #555;
    opacity: 0.75;
}

.wrapper {
    display: flex;
    min-height:100vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;    
    background:#fff;
}

.container{
    width:100%;
    margin: 20px 0px;
}

.paragraph{
    padding:30px 50px;
}

.paragraph p{
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;    
    letter-spacing:1px;
}

h1{    
    color:#000;    
    text-decoration: none;      
}

h2{
    padding:20px 0px;    
}

#menuBtn{
    display: none;
}

#sidenav{        
    width:120px;
    height:25vh;
    position:absolute;
    left: -250px;
    top: 60px;
    background:red;
    z-index: 2;
    transition: 0.5s;
}

#sidenav ul li{
    list-style: none;
    margin: 20px 20px;
}

#sidenav ul li a{
    text-decoration: none;
    color:#fff;
}

.nav_links li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;    
    text-decoration: none;
    color:#000;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 10%;
    background-color:red;    
}

#hamnav label, #hamburger { display: none; }
#hamcontact {display: none;}

.footer {
    padding: 40px 0;
    background-color:black;
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: #fff;
}

.footer .social a{
    font-size: 24px;
    color: inherit;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.65;
    background-color: inherit;
}

.footer .social a:hover{
    opacity: 0.9;
}

.footer ul{
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color:inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li{
    display: inline-block;
    background-color: inherit;
    padding: 0 16px;
    color:#FFF;
}

.footer ul li a:hover{
    opacity: 1;
    color:red;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.nav_links{
    list-style: none;   
    background-color: red;         
}

.nav_links li{
    display: inline-block;
    padding: 5px 5px;    
}

.nav_links li a{
    color: #FFF;
    text-decoration: none;
    font: 20px Raleway;    
    padding: 5px 10px;
    position: relative;
    z-index: 0;
    cursor: pointer;     
}

.nav_links li a:hover{
    color: #fff;
}

button{
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgba(246, 255, 77,1);
    border: none;
    border-radius: 50px;
    cursor:pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(246, 255, 77, 0.8);
}

.product-sub-menu{
    display: none;
    position: absolute;    
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin: 10px 0px;
    height: 50px;         
}

.product-sub-menu ul li{
    float: none;
    color: black;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    text-align: left;  
    background-color: red;    
}

.products:hover .product-sub-menu{
    display: block;
    animation-name: fade;
    animation-duration: 0.7s;    
}

.media{
    display: flex;      
}

.media-item{
    width: 280px;
    height: 270px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;        
    margin-left:40px;
    margin-right:30px;    
}
  
.media-item img{
    max-width: 100%;
    height: auto;
    padding:30px 20px;    
}

.layer {
    opacity: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 90%;
    background: #FFF;
    color: #151E3F;
    transition: all 0.9s ease;
}

.layer p{
    transition: all 0.9s ease;
    transform: scale(0.1);
}
  
.media-item:hover .layer {
    opacity: 0.8;
    width: 90%;
    transition: all 0.5s ease;    
}

.media-item:hover .layer p{
    transform: scale(1);
    transition: all 0.9s ease;
}

.topBotomBordersIn a:before, .topBotomBordersIn a:after
{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #FFF;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.topBotomBordersIn a:before
{
    top: 0px;
    transform: translateY(-10px);
}

.topBotomBordersIn a:after
{
    bottom: 0px;
    transform: translateY(10px);
}

.topBotomBordersIn a:hover:before, .topBotomBordersIn a:hover:after
{
    opacity: 1;
    transform: translateY(0px);
}

.header_logo{
    margin: auto;    
    padding: 10px;
    justify-content: center;
    display:flex;    
}

.logo{
    width:10%;
}

#title_header{
    background-color:#fff;
    justify-content: center;
    padding: 20px 0;
    position: relative;
}

.contact__details{
    display:inline-block;    
    padding: 0 20px;    
    border: #000;
    border-style: solid;
    width: 100%;    
}

.info__panel{
    width: 50%;    
    font-size: 10px;
}

.info__content{
    max-width:50%;
    display:flex;
    flex-direction: column;
    justify-content: left;
    padding:10px 10px;
    border:#000;
    border-style: solid;
}

.info__content i{
    padding:10px 10px;
    size:50px;
}

.info__content span{
    font-family: "Times New Roman", Times, serif;
    font-variant: normal;
    font-size: 25px;
    margin-left:20px;   
}
.gmaps{    
    padding: 10px 10px;
    width:100%;    
}

.items_wrapper{
    padding: 10px 20px;  
    margin: 20px 20px;       
}

.item__cat{  
    padding:20px 20px;
    margin:30px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.item__cat h3{
    text-decoration: underline;    
}

.itemcontainer{
    padding: 20px 40px;
    display: inline-flex;
    border: #000;
    border-radius: 20%;
    border-style: solid;
    width:100%;
    margin: 10px 10px;
}

.itemrow{
    display: flex; 
    flex-flow: row wrap;
    justify-content:space-around left;           
    margin:auto;
    padding: 10px 10px;    
}

.itemcol{
    display:flex;
    flex-direction: column;
    flex: 1 0 auto;                  
    max-height:100%;
    width: 300px;      
    max-width: 300px;
    margin: 10px 10px;
    padding: 25px 25px;    
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.itemcol_dis{
    display:flex;
    flex-direction: column;
    flex: 1 0 auto;    
    align-items: center;
    max-height:100%;
    width: 420px;      
    max-width: 420px;
    margin: 10px 10px;
    padding: 25px 25px;    
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.itemimg{
    max-width:100%;
    height:150px;    
}

.itemcol_dis .itemimg{
    max-width:70%;
}
.itemimg img{
    max-width:100%;
    max-height:100%;
}

.itemname{
    text-align: center;    
    padding: 10px 5px;
}

.itemdescr{
    padding: 10px 10px; 
    list-style-image: url("/dist/img/health-care.jpg");   
}

#desr_bullets li{
    margin-left: 20px;
    font-size: 15px;    
}

.bulkorder{
    background-color: transparent;
    margin: 0px 10px;
    color:red;   
}

.slideshow-container {
    max-width: 80%;    
    max-height: 500px;
    position: relative;
    margin: auto;      
}

.mySlides {
    display: none;    
}

.mySlides img{
    width: 100%;   
    max-height:480px;      
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -20px;
    padding: 16px;
    color: red;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

.active, .dot:hover {
    background-color:black;
}

.fade {
    animation-name: fade;
    animation-duration: 2.0s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

#company_content{
    padding: 0px 40px;    
}

#about_text{    
    padding: 10px 10px;
}

#about_text p{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    padding: 10px 0;
}

#about_text ul{
    font-size: 20px;
    padding: 10px 0;
    margin: 0 20px;    
}

#about_text li{
    padding:3px 0;
}

.bullets{
    display: inline-block;
    width: 100%;
    margin: 10px 10px;
}


.bullets ul{
    width: 20%;
    float: left;
    margin:0 20px;
}

#service {
    margin: 34px;
    display: flex;
    width:100%;
}
 
#service .box {
    padding: 45px;
    margin: 3px 6px;
    border-radius: 28px;    
}

#service .box i {    
    height: 100px;
    width:100px;
    padding: 22px 22px;    
    margin: auto;
    display: block;
    border-radius: 300px;
    border-style: solid;
}

#service .box img {
    margin-top: 20px;
    height: 100px;
    margin: auto;
    display: block;
    border-radius: 200px;
}

.contact-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
}

.contact-row h1{
    font-size: 20px;
    margin:10px 0;
}

.contact-row p{
    line-height: 35px;
}

.contact-left, .contact-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}

.contact-left .fa, .contact-left .fa-solid, .contact-right .fa, .contact-right .fa-solid{
    font-size: 15px;
    color: #009688;
    margin: 10px;
}

.contact-right{
    text-align: right !important;
}

.title-logo{
    max-width:250px;
    max-height: 120px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 770px){
    .contact { display: none; }
    .nav_links { display: none;}    

    header {
        height: 80px;   
    }

    .logo{
        width: 150px;
        height:100px;
        margin: 10px 0;
    }

   #menuBtn{
        display: inline-block;
        width: 50px;
        height: 40px;
        background: red;
        text-align: center;
        position: absolute;
        left: 30px;
        top: 20px;
        border-radius: 3px;
        z-index: 3;
        cursor: pointer;
        border: #FFF;
        border-style: solid;
   }

   #menuBtn img{
    width:25px;
    height:30px;
    margin-top:5px;
   }

    .nav_links a {
        display: block;
        width:100%;
        box-sizing: border-box;
        border-top: 1px solid #333;
    }

    .bullets{
        display: flex;
        flex-direction: column;                        
    }

    .contact-left, .contact-right{
        flex-basis: 100%;
        font-size: 14px;
    }    

    #topBtn{        
        font-size: 10px;        
      }

      .media{
        flex-wrap: wrap;
        justify-content: center;
      }

      .itemcol_dis{
        width: 300px;      
        max-width: 300px;     
      }

      .paragraph p{
        font-size: 18px;
      }

      .itemrow{
        padding: 0 0;
      }
}