    /* Custom Styles */

    body{
      background-color: #FAFAFA;
      font-family: 'Roboto', sans-serif;
    }

    .content{
      margin-top: 10px;
      min-height: 75vh;
      text-align: center;
    }
    .navbar {
        border: 2px solid #0b00fc;
        border-radius: 5px;
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
        position: sticky;
        z-index: 100;
        top: 5px;
        background-color: #FAFAFA;
      }

      .navbar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: flex;
      }
      .navbar li {
        float: left;
      }
      .navbar li a, .navbar li span {
        display: block;
        color: black;
        text-align: center;
        text-decoration: none;
      }
      
      .navbar li .item:hover , .navbar li .contact-item:hover {
        border: 0.5px solid #0b00fc;
      }
         /* Hamburger Icon */
    .hamburger {
      cursor: pointer;
      font-size: 24px;
      font-weight: 900;
      left: 0;
      margin-left: 20px;
      display: flex;
      align-items: center;
    }

    #mobile-menu img {
      height: 75px;
      margin-left: 20%;
    }

    #mobile-menu {
      display: none;
    }

    /* .logo and.item in line and horizontal match */
    .navbar .logo {
      right: 0;
      margin-left: 10px;
    }

    .navbar .item {
      margin-left: 50px;
      font-size: 20px;
      font-weight: 900;
      margin-top: -10px;
    }

    /* vertical middle */
    .item{
      display: flex;
      align-items: center;
    }

    .contact-header{
      float: right;
    }

    .contact-item{
      right: 20px;
      position: absolute;
      font-size: 10px;
      margin-top: 10px;   
    }

    .contact-item a{
      color: black;
      text-decoration: none;
      font-size: 18px;
    }

    .desktop{
      display: block;
    }

    .mobile{
      display: none;
    }

      @media screen and (max-width: 600px) {
        #desktop-menu {
          display: none;
          text-align: center;
          border: none;
          border-radius: 0;
          box-shadow: none;
          background-color: #0d00fcb4;
          margin-right: 5px;
          margin-left: 5px;
          top: 80px;
        }
        #mobile-menu {
          display: block;
        }

        .navbar .item{
          margin-left: 0;
          display: block;
          margin-top: 20px;
          font-size: 20px;
        }

        .navbar .logo {
          display: none;
        }
        /* ul on new line */
        .navbar ul {
          flex-direction: column;
          padding: 0;
          padding-bottom: 10px;
          color: white;
        }

        .navbar li a, .navbar li span {
          color: white;
        }
        .box{
          height: 70px;
        }
        .desktop{
          display: none;
        }
        .mobile{
          display: block;
        }
      }

      .container {
        overflow: auto; /* Clear the float */
    }
    .box {
        float: left;
    }

    .footer{
      text-align: center;
      margin-top: 10px;
    }

    li, a, span, .grid h5{
      cursor: pointer;
    }

    .grid{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; 
      margin-top: 20px;
      color: #080278;
    }
    

    @media screen and (max-width: 768px) {
      .grid{
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 1028px) {
      .contact-item {
        font-size: 12px;
      }

      .contact-item a {
        font-size: 12px;
      }

      .slide{
        width: 100%!important;
      }
    }

    @media screen and (max-width: 852px) {
      .contact-item {
        display: none;
      }
    }


    .alphabets{
      color: #080278a8;
      font-size: 20px;
      font-weight: 900;
    }

    .category{
      color: #080278;
      font-weight: 900;
    }

    .product-list{
      color: #02011a;
      font-weight: 600;
      font-size: 14px;
      line-height: 40px;
    }

    .slide{
      display: none;
      width:50%;
      height: 300px;
      object-fit: cover;
      text-align: center;
      margin: auto;
      box-shadow: 2px 5px 5px 3px #000000ba;  
      border-radius: 5px;    
    }

    .active {
      display: block;
    }

    .center{
      text-align: center;
      align-content: center;
    }

    .width-50{
      width: 75%;
    }


    .contact-container {
      max-width: 400px;
      margin: 50px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .contact-form-group {
      margin-bottom: 20px;
    }
    
    .contact-form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    
    .contact-form-group input[type="text"],
    .contact-form-group input[type="email"],
    .contact-form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }
    
    .contact-form-group textarea {
      height: 100px;
    }
    
    .contact-form-group button {
      padding: 10px 20px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    
    .contact-form-group button:hover {
      background-color: #0056b3;
    }

    .error{
      color: red;
      font-size: 12px;
    }

    .success{
      color: green;
    }



    /***** MODAL DIALOG ****/
#modal {
	/* Underlay covers entire screen. */
	position: fixed;
	top:0px;
	bottom: 0px;
	left:0px;
	right:0px;
	background-color:rgba(0,0,0,0.5);
	z-index:1000;

	/* Flexbox centers the .modal-content vertically and horizontally */
	display:flex;
	flex-direction:column;
	align-items:center;

	/* Animate when opening */
	animation-name: fadeIn;
	animation-duration:150ms;
	animation-timing-function: ease;
}

#modal > .modal-underlay {
	/* underlay takes up the entire viewport. This is only
	required if you want to click to dismiss the popup */
	position: absolute;
	z-index: -1;
	top:0px;
	bottom:0px;
	left: 0px;
	right: 0px;
}

#modal > .modal-content {
	/* Position visible dialog near the top of the window */
	margin-top:10vh;

	/* Sizing for visible dialog */
	width:80%;
	max-width:600px;

	/* Display properties for visible dialog*/
	border:solid 1px #999;
	border-radius:8px;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
	background-color:white;
	padding:20px;

	/* Animate when opening */
	animation-name:zoomIn;
	animation-duration:150ms;
	animation-timing-function: ease;
}

#modal.closing {
	/* Animate when closing */
	animation-name: fadeOut;
	animation-duration:150ms;
	animation-timing-function: ease;
}

#modal.closing > .modal-content {
	/* Animate when closing */
	animation-name: zoomOut;
	animation-duration:150ms;
	animation-timing-function: ease;
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
} 

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
} 

@keyframes zoomIn {
	0% {transform: scale(0.9);}
	100% {transform: scale(1);}
} 

@keyframes zoomOut {
	0% {transform: scale(1);}
	100% {transform: scale(0.9);}
} 