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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f1f7;
    color: #333;
}

/* Header Styling */
header {
    padding: 10px;
}
.logo {
	text-align: center;
    margin: 0 12px;
    box-shadow: 0px 3px 4px #ccc;
    background: #fff;
    border-radius: 12px;
    padding: 2px 0 0 0;
    border-bottom: 4px solid #e2e1ef;
}
.logo img {
  width:250px;
}

.breadcrumb {
    margin: 0px 1px 10px 40px;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.box {
    text-align: center;
    width: 100%;
    padding: 5px 2px 22px 2px;
}

input#word-input {
	width: 50%;
    padding: 15px 5px 15px 15px;
    border-radius: 8px;
    border: 1px solid #d3d9df;
    background: #ffffff;
    box-shadow: inset 0 0 4px #eee;
    min-width: 250px;
}

button {
    background: #2d47d1;
    border: 0px;
    padding: 14px 18px 11px 18px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    border-bottom: 4px solid #2239b1;
}

/* Content Wrapper */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Content Area Styling */
.content {
	flex: 0 1 100%;
    padding: 20px;
    text-align: center;
    line-height: 25px;
    box-shadow: 0px 3px 4px #ccc;
    border-radius: 20px;
    background: #fff;
    border-bottom: 4px solid #e2e1ef;
}

@media (max-width: 1040px) {
    .content {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .content {
        flex: 1 1 100%;
    }
}

.page-title {
	font-weight: bold;
	text-align: center;
	font-size: 28px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: #2d47d1;
    letter-spacing: 0.7px;
	text-transform:capitalize;
    border-bottom: 1px solid #2d47d1;
}

.list-head {
  font-weight: normal;
  font-size: 18px;
  margin: 7px;
}

.word {
list-style: none;
  min-width: 175px;
  padding: 10px 1px;
  border-radius: 7px;
  margin: 7px;
  display: inline-block;
  background: #eceffd;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #252525;
  font-size: 15px;
}

.word:hover {
  background: #d6e4ed;
}

.word a {
	font-size: 16px;
	text-decoration: none !important;
	color: #38416f !important;
}

h2 {
    margin: 12px 2px;
    font-weight: normal;
    font-size: 18px;
    border-bottom: 3px solid #2d47d1;
    display: inline-block;
    min-width: 250px;
	text-transform: capitalize;
}
p.des {
    margin: 12px 2px;
    letter-spacing: 0.5px;
}


/* Footer Styling */
footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,.1);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        padding: 10px 0;
    }
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
}

@media(max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    nav ul.mobile-menu-open {
        display: block;
        text-align: center;
    }

    nav ul.mobile-menu-open li {
        display: block;
        margin: 10px 0;
    }
}

.search-container {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

#search {
width: 220px;
    padding: 10px 5px 10px 10px;
    border-radius: 5px;
    border: 1px solid #97b0c7;
}

select#sortDropdown {
    border-radius: 5px;
    border: 1px solid #97b0c7;
    padding: 9px 4px;
    width: 100px;
    margin-left: 10px;
	background: #fff;
}

.filter {
    border-radius: 10px;
    padding: 15px 5px 0px 5px;
    width: 375px;
    display: inline-block;
    margin-bottom: 0.5%;
    margin-top: 0.7%;
}

.clear-search {
	position: absolute;
    right: 7px;
    top: 6px;
    cursor: pointer;
    display: none;
    background: #bf2f2f;
    color: #fff;
    width: 23px;
    border-radius: 50px;
    height: 23px;
    font-weight: normal;
    font-size: 12px;
}

.sort-container {
    margin-bottom: 20px;
	display: inline-block;
}

.sort-container button {
    margin-right: 10px;
    padding: 8px;
    cursor: pointer;
}
.des {
    font-size: 15px;
    letter-spacing: 0.3px;
    text-align: left;
	padding: 0 5px 0 10px;
}
a.hw {
	background: #fff;
    min-width: 150px;
    display: inline-block;
    margin: 7px;
    border-radius: 8px;
    text-decoration: none;
    color: #535f9f;
    text-transform: capitalize;
    padding: 12px 3px;
    box-shadow: 0px 1px 1px #ccc;
    border-bottom: 1px solid #e2e1ef;
}
a.hw:hover{
	border-bottom:1px solid #e2e1ef;
    box-shadow: none;	
	color: #3555ff;
}
.footer-menu {
    margin: 0 0 25px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.footer-menu a {
	margin:0 10px 0 10px;
}