.select {
    position: fixed !important;
    top: 0%;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.selectc {
    width: 500px;
    padding: 10px;
    border: 2px solid #000000;
    box-shadow: 2px 2px 10px rgb(63, 63, 63);
    border-radius: 4px;
    font-size: 16px;
    appearance: none;
    color: #000;
    font-family: "square1";
    background-color: #adff00;
    transition: 0.3s ease;
    outline: none;
}

.select option {
    padding: 10px;
    text-align: center;
    color: #000;
}

.select option:hover {
    background-color: #adff00;
}

.projects {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    margin-top: 160px;
}

.store-main {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    row-gap: 60px;
}

.s-m-item {
    width: 400px;
    border: 2px solid #adff00;
    background-color: #ffffff;
    overflow: hidden;
}

.s-m-item img {
    width: 104%;
    height: 260px;
    background-position: center;
    background-size: cover;
}

.s-m-item-detail {
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s-m-item-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px;
}

.s-m-item-name-1 {
    color: #000000;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.s-m-item-name-2 {
    color: rgb(255, 145, 0);
    font-family: Impact, sans-serif;
    font-size: 20px;
    font-family: "Franklin Gothic Medium", sans-serif;
}

.s-m-item-p {
    color: #000;
    font-family: sans-serif;
    font-size: 14px;
    padding: 6px 14px;
}

.s-m-item-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-m-item-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.s-m-item-icon a .s-m-item-i-r-t {
    width: 100%;
    height: 100%;
    border-right: 40px solid #adff00;
    border-bottom: 40px solid transparent;
}

.s-m-item-icon a i {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #adff00;
    color: #000;
    font-size: 24px;
    height: 100%;
    padding-right: 14px;
}

.s-m-item-icon a span {
    padding-left: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #adff00;
    height: 100%;
}

.s-m-item-i-r {
    display: flex;
    height: 40px;
    width: 50%;
}

.s-m-item-i-r-i {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    background-color: #adff00;
    padding: 0px 10%;
}

.s-m-item-i-r i {
    cursor: pointer;
    color: black;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.s-m-item-i-r .s-m-item-i-r-t {
    width: 100%;
    height: 100%;
    border-left: 40px solid #adff00;
    border-top: 40px solid transparent;
}