/* ABOUT MEDIA DEVICE STYLING VERSION    */

@media only screen and (max-width: 768px){




body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: scroll;


}

.header {
    display: block;
    width: 100%;
    color: #fff;
    padding: 0px 0px;
    text-align: center;
    border: none;
    background: linear-gradient(180deg,#4d5363 0%,#313131 100%),linear-gradient(0deg,#ffffff,#ffffff);
}

.header .logo h1 {
    font-size: 25px;
}



.category{
    padding: 0px 20px;
}

.category ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.category ul li {
    margin-bottom: 10px;
}
.category ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0px 0px 3px #27ff00;
}

#menubtn {
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
}





#myForm{
    display: flex;
}

#search {
    height: 40px;
    width: 100%;
    padding: 0px 0px;
    outline: none;
    border: none;
}

.s-btn {
    background: none;
    border: none;
    margin-left: -12px;
    cursor: pointer;
    /* display: none; */
}
.collapsed {
    display: none;
}

nav {
    position: relative;
    background: #fff;
    width: 97%;
    margin: 0px auto;
    padding: 20px 3px;
    height: 550px;
    overflow: scroll;
    border-radius: 12px;
    scroll-behavior: smooth;
    box-shadow: 0px 0px 8px darkslategrey;
    scroll-behavior: smooth;
    z-index: 1;
}

.collapsed::-webkit-scrollbar {
    width: 0px;
}
.collapsed h3 {
    font-size: large;
    padding: 10px 0px;
    margin: 0px;
    text-align: center;
    color: #FFEB3B;
    background: darkslategrey;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

nav ul {
    display: flex;
    gap: 20px;
    position: relative;
    margin: 0px auto;
    flex-wrap: wrap;
    flex: 5;
    justify-content: center;
    align-items: center;
    background: #333333;
    padding: 13px 0px;
}

nav ul li {
    background: #f1f1f103;
    list-style: none;
    min-width: 250px;
    border-radius: 7px;
    border: 1px solid #eee;
    padding: 0px 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    width: 100%;
}


.category_list_widget {
    width: 100%;
    margin: 0px;
    box-shadow: 0px 0px 3px #8080806e;
    background: ghostwhite;
}
.nav-h-title {
    background: #FFEB3B;
    margin: 0px;
    padding: 20px 20px;
    border-right: 1px solid white;
    font-family: system-ui;
    font-size: x-large;
}


.category_list_widget div ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
}


.category_list_widget div ul a:hover {
    background: #333;
    color: #fff;
}

.category_list_widget div ul a {
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #4cafa1;
}
.about-container {
    width: 90%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.about-section {
    margin-bottom: 30px;
}
.about-section h2 {
    color: #333;
    margin-bottom: 15px;
}
.about-section p {
    margin-bottom: 20px;
}

.services-section {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.services-section h3 {
    color: #333;
}

.services-section ul {
    list-style-type: none;
    padding: 0;
}
.services-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.services-section ul li::before {
    content: '***';
    color: #5cb85c;
    margin-right: 10px;
}




footer {
    background-color: #2c3e50;
    color: white;
    padding: 0px 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin: 20px 0;
    flex: unset;
}


.footer-bottom {
    text-align: center;
    margin-top: 0px;
    font-size: 14px;
    border-top: 1px solid #bdc3c7;
    padding: 15px;
    color: #FFEB3B;
}





































































}