@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
nav{
    border-bottom: 1px solid #ECECEC;
    padding: 0.8rem;
}

.search-form input{
    width: 100%;
    font-size: 0.8rem;
    padding: 5px 5px;
    background-color: #ECECEC;
    border: none;
    outline: none;
}
.contact-button{
    background-color: black;
    color: white;
    width: 100%;
    border: none;
     padding: 3px 5px;
}

.blog-section h4{
        text-transform: capitalize;
        font-size: 24px;
    font-weight: 800 !important;
}

.blog-section h4 span{
    color: #db202a;
}

.enquiry_form input{
    width: 100%;
    font-size: 0.8rem;
    padding: 10px 5px;
    background-color: #ECECEC;
    border: none;
    outline: none;
    margin-top: 10px;
}

.enquiry_form button{
    background-color: black;
    color: white;
    width: 100%;
    border: none;
     padding: 10px 5px;
     margin-top: 10px;
}
.blog-section a{
    text-decoration: none;
    font-size: 18px;
    color: black;
}

.blog_storage h5{
    font-weight: 700 !important;
}

.blog-section i{
    color: gray;
    text-align: justify;
    display: inline-block;
}

.blog_storage button{
    background: none;
    border: 1px solid black;
    font-size: 0.8rem;
    width: 100%;
    padding: 5px 15px;
    margin-top: 10px;
    transition: 0.4s;
}
.blog-section button:hover{
    background-color: black;
    color: white;
}

.blog-detail h1{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-detail p{
    text-align: justify;
}

h2{
    font-size: 20px;
    font-weight: bolder;
     margin-bottom:14px;
}

h3{
    font-size: 18px;
    font-weight: bolder;
}

h4{
    font-size: 14px;
    font-weight: bolder;
}
p{
    text-align:justify !important;
}

footer{
    background-color: #4a4a4a;
    color: white;
}

@media (max-width: 768px){
    .brand-logo{
        width: 100% !important;
    }
}

