@font-face {
    font-family: LatoRegular;
    src: url('../fonts/Lato-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: LatoBold;
    src: url('../fonts/Lato-Bold.ttf');
    font-display: swap;
}

/**Header**/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: white;
}

header .top {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    color: white;
    font-family: LatoBold;
    background: #1fa434;
}

header .top .container {
    display: flex; 
    flex-direction: row; 
    justify-content: flex-end;
}

header .top ul {
    margin: 0;
}

header .top li {
    display:inline;
    list-style: none;
    margin-right: 20px;
}

header .top li:last-child {
    margin-right: 0px;
}

header .top li a {
    color: white;
}

header .top li a:hover {
    text-decoration: none;
    color: rgba(255,255,255,.7); 
    padding-bottom: 3px;
    border-bottom: 2px solid white;
}

header .bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

header .bottom .container {
    display: flex; 
    flex-direction: row; 
    align-items: center;
}

header .bottom .logo{
    flex: 1;
    text-decoration: none;
}

header .bottom .logo:hover {
    text-decoration: none;
}

header .bottom .logo img {
    width: 120px;
}

header .bottom .logo .title {
    font-size: 13px; 
    margin-top: 3px; 
    margin-left: 6px;
    color: #1fa434;
    font-family: LatoBold;
}

header .bottom .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}

header .bottom .menu li {
    list-style: none;
    position: relative;
    margin-right: 7px;
}

header .bottom .menu a,
header .bottom .menu span {
    color: #1fa434;
    text-decoration: none;
    padding: 0 10px;
    font-size: 15px;
    font-family: LatoBold;
    cursor: pointer;
}

header .bottom .menu a.active {
    padding-bottom: 5px;
    border-bottom: 2px solid #1fa434;
}

header .bottom .menu a:hover {
    padding-bottom: 5px; 
    border-bottom: 2px solid #1fa434;
}

header .bottom .menu span:hover {
    padding-bottom: 5px;
}

header .bottom .show-menu-btn,.hide-menu-btn{
    transition: 0.4s;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

header .bottom .show-menu-btn{
    float: right;
}

header .bottom .menu a:hover,
header .bottom .show-menu-btn:hover,
header .bottom .hide-menu-btn:hover{

}

header .bottom #chk {
    position: absolute;
    visibility: hidden;
    z-index: -1111;
}

header .bottom .menu .search-container {
    margin-right: 20px;
}
  
header .bottom .menu .search-container input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 13px;
    width: 180px;
    font-family: LatoRegular;
    border: 2px solid #1fa434;
}

header .bottom .menu .search-container button {
    float: right;
    padding: 8px 10px;
    margin-top: 8px;
    background: #1fa434;
    color: white;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

header .bottom .menu li .dropdown-container {
    /* Size & position */
    position: absolute;
    right: 0;
    top: 120%;
    width: 200px;
    max-height: 500px;

    /* Styles */
    background: white;
    border-radius: inherit;
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-weight: normal;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    list-style: none;
    padding: 10px;
    z-index: 1000;

    /* Hiding */
    display: none;
}
  
header .bottom .menu li .dropdown-container:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}
  
header .bottom .menu li .dropdown-container:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}

header .bottom .menu li .dropdown {
    overflow: auto;
    list-style: none;
    max-height: 450px;
    padding: 0px;
}
  
header .bottom .menu li .dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #8aa8bd;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .bottom .menu li .dropdown li a:hover {
    color: grey;
}
  
header .bottom .menu li .dropdown li:first-of-type a {
    border-radius: 7px 7px 0 0;
}

header .bottom .menu li .dropdown li:last-of-type a {
    border: none;
    border-radius: 0 0 7px 7px;
}

header .bottom .menu li:hover .dropdown-container {
    display: block;
}

/**End Header**/

/**Content Wrapper**/

.content-wrapper {
    margin-top: 128px;
}

/**End Content Wrapper**/

/**Footer**/

footer {
    background-color: #1fa434;
    font-family: LatoRegular;
    padding: 25px 0px;
}

footer .title {
    font-size: 18px; 
    margin-top: 3px; 
    color: white; 
    font-family: LatoBold;
}

footer ul {
    list-style: none; 
    padding-left: 0; 
    margin-top: 10px; 
    color: white; 
    margin-bottom: 20px;
}

footer ul a {
    color: white; 
}

footer ul a:hover {
    color: white; 
}

footer .about-company .description {
    color: rgba(255,255,255,.8); 
    font-family: LatoRegular; 
    margin-top: 13px; 
    line-height: 1.8;
    margin-bottom: 25px;
}

footer .quick-links ul li {
    margin-bottom: 8px;
}

footer .quick-links ul li a {
    color: rgba(255,255,255,.8);
}

footer .quick-links ul li a:hover {
    text-decoration: none;
    color: rgba(255,255,255,.7); 
    padding-bottom: 5px;
    border-bottom: 2px solid white;
}

footer .contact-us .phone-container,
footer .contact-us .email-container {
    margin-top: 10px;
    color: rgba(255,255,255,.7);
}

footer .contact-us .phone-container ul li,
footer .contact-us .email-container ul li {
    margin-bottom: 8px;
    color: rgba(255,255,255,.7);
}

footer .contact-us .phone-container ul li a,
footer .contact-us .email-container ul li a {
    color: rgba(255,255,255,.7);
}

footer .contact-us .location-container a:hover,
footer .contact-us .phone-container ul li a:hover,
footer .contact-us .email-container ul li a:hover {
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid white;
}

footer .contact-us .location-container {
    margin-top: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.7);
}

footer .address {
    margin-top: 15px; 
    line-height: 1.8;
    color: rgba(255,255,255,.7);
}

/**End Footer**/

/**Product**/

.product-container {
    cursor: pointer;
    font-family: LatoRegular;
    position: relative;
    height: 380px;
    margin-bottom: 20px;
}

.product-container .thumbnail {
    height: 100%;
    border-width: 2px;
}

.product-container .thumbnail:hover {
    border: 2px solid #305942;
    text-decoration: none;
}

.product-container .thumbnail img {
    width: 200px; 
    height: 200px;
}

.product-container .thumbnail a {
    text-decoration: none;
}

.product-container .name {
    font-size: 15px; 
    color: #305942; 
    font-family: LatoBold;
    margin-top: 0;
    margin-bottom: 10px;
    white-space: nowrap; 
    width: 100%; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-container .description-container {
    height: 80px;
    width: '100%';
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px; 
}

.product-container .description {
    color: #a5a5a5; 
    margin-bottom: 15px;
}

.product-container .buttons {
    position: absolute;
    bottom: 5px;
    width: 100%;
    padding: 3px;
}

.product-container .buttons .btn{
    font-size: 12px;
}

.product-container .buttons button {
    margin-top: 10px;
}

.product-gallery {
    font-family: LatoRegular;    
}

.product-gallery-container .thumbnail img {
    width: 80px; 
    height: 80px;
}

.product-gallery-container .thumbnail img.first-gallery {
    width: 250px; 
    height: 250px;
}

.product-info-container {
    font-family: LatoRegular;    
}

.product-info-container .name {
    font-size: 25px;
    color: #305942;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: LatoBold;    
}

.product-info-container .description-title {
    font-size: 16px;
    color: #1fa434;
    margin-top: 10px;
    line-height: 2;
}

.product-info-container .description {
    color: #666666;
    margin-top: 10px;
    margin-bottom: 20px; 
    line-height: 2;
}

/**End Product**/

.featured-product-container {
    margin-bottom: 30px;
}

.featured-product-container .title-container {
    height: 120px; 
    display: flex; 
    align-items: center;
}

.featured-product-container .title {
    flex: 1;
    justify-content: center; 
    align-items: center; 
    font-size: 22px; 
    font-family: LatoBold;
    color: #305942;
    margin-top: 0;
    margin-left: 15px;
}

.related-product-container .title-container {
    margin-bottom: 10px;
}

.related-product-container .title-container h2 {
    font-size: 19px; 
    font-family: LatoBold;
}

.related-product-container .title-container h2 a {
    color: #305942;
    text-decoration: none;
}

.related-product-container .title-container h2 a:hover {
    border-bottom: 2px solid #305942;
}

.btn-view-more {
    font-family: LatoBold;
}

.content-header {
    height: 40px;
    background-color: #f5f5f5;
}

.breadcrumb {
    padding: 0; 
    margin-bottom: 0;
    font-family: LatoBold;
}

.breadcrumb a {
    color: #305942;
}

.homepage-banner-container {
    height: 242px;
    position: relative;
}

.homepage-banner {
    height: 100%;
    background-size: cover; 
    background-image: url('/img/medical-supply-store.jpg');
    background-color: #FFFFFF;
    border-bottom: 2px solid #e0e0e0;
}

.homepage-banner .overlay {
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
}

.homepage-banner-container .title {
    color: #1fa434;
    font-size: 25px; 
    font-family: LatoBold;
    margin-top: 0px;
}

.homepage-banner-container .about-us {
    color: #305942; 
    font-size: 14px; 
    margin-top: 15px; 
    width: 500px; 
    line-height: 1.6;
    font-family: LatoRegular;
}

.homepage-banner-container .text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb>li+li:before {
    color: #777;
    content: ">" !important;
}

.modal-header {
    background: #1fa434 !important;
}

.modal-title, .modal-header .close {
    color: white;
}

.search-container {
    font-family: LatoRegular;
}

.products-list-container {
    font-family: LatoRegular;
}

#modal-enquiry {
    font-family: LatoRegular;    
}

/**Contact Us**/

#frm-enquiry {
    margin-top: 20px;
    font-family: LatoRegular;    
}

.contact-us-container h1 {
    color: #1fa434;
    font-size: 25px;
    font-family: LatoBold;
}

.contact-info-container {
    font-family: LatoRegular;    
}

.contact-info-container ul {
    list-style: none; 
    padding-left: 0; 
    margin-top: 10px; 
    color: #a5a5a5; 
    margin-bottom: 20px;
}

/**End Contact Us**/

/**About Us**/

.about-us-container {
    font-family: LatoRegular;
}

.about-us-container h1 {
    color: #1fa434;
    font-size: 25px;
    font-family: LatoBold;
}

.about-us-container p {
    margin-top: 20px;
    color: #969696;
    font-size: 15px;
    line-height: 2;
}

.about-us-banner {
    height: 300px;
    background-size: cover; 
    background-image: url('/img/medical-supply-store.jpg');
    background-color: rgb(44, 45, 51);
}

.about-us-banner .overlay {
    background-color: rgba(28, 28, 28, 0.2);
    height: 100%;
}

/**End About Us**/

.category-title-container {
    margin-bottom: 10px;
}

.category-title-container .description-container {
}

.category-title-container .description-container h2 {
    font-family: LatoRegular;
    font-size: 15px; 
    color: #a5a5a5;
    margin-top: 0;
}

#modal-whatsapp {
    font-family: LatoRegular;    
}

#modal-whatsapp .whatapp-number-display {
    font-size: 15px;
}

/**Media Rules**/
@media screen and (max-width:1000px) {
    header .bottom .show-menu-btn,.hide-menu-btn{
        display: block;
    }

    header .bottom header .logo .title {
        display: none;
    }

    header .bottom .menu {
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #1fa434;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 80px 0;
        line-height: normal;
        transition: 0.7s;
        overflow: scroll;
        align-items: initial;
        z-index: 999;
    }

    header .bottom .menu a,
    header .bottom .menu span {
        display: block;
        padding: 20px;
        margin: 0;
        color: white;
    }

    header .bottom .menu li {
        margin-right: 0px;
    }

    header .bottom .menu a.active {
        padding-bottom: 20px;
        border-bottom: none;
    }

    header .bottom .menu li .dropdown-container {
        width: 100%;
        max-height: initial;
    }

    header .bottom .menu li .dropdown-container .dropdown {
        max-height: initial;
        overflow: initial;
    }
    
    header .bottom .menu a:hover,
    header .bottom .menu span:hover {
        padding-bottom: 20px;
        border-bottom: none;
    }

    header .bottom .hide-menu-btn{
        position: absolute;
        top: 25px;
        right: 25px;
    }

    #chk:checked ~ .menu{
        right: 0;
    }

    header .bottom .menu .search-container {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    header .bottom .menu .search-container button {
        float: none;
        background: white;
        padding: 6px 10px;
        color: #1fa434;
    }

    .homepage-banner .about-us {
        width: 350px;
    }

    .featured-product-container .title {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .featured-product-container .title-container {
        height: 80px;
    }

    .featured-product-container .title-container .btn-view-more {
        font-size: 10px;
    }
}

@media screen and (max-width:1000px) {
    .homepage-banner-container {
        height: 400px; 
    }

    .homepage-banner-container .about-us {
        width: 250px;
    }
}

@media screen and (max-width:500px) {
    header .top .container {
        justify-content: flex-start;
    }

    header .top .container ul {
        padding-inline-start: 0px;
        text-align: center;
    }

    header .top .container ul li {
        display: inline-block;
    }

    header .bottom .logo img {
        width: 100px;
    }

    .content-wrapper {
        margin-top: 116px;
    }

    .product-container .buttons .btn{
        font-size: 14px;
    }
}

@media screen and (max-width:437px) {
    .content-wrapper {
        margin-top: 133px;
    }
}

/**End Media Rules**/