.agents .back {
    width: 80%;
    margin: 30px auto 0 auto;
    cursor: pointer;

}

.agents .back span {
    color: var(--secondary_color);
    font-family: Inter;
    font-weight: 500;
    line-height: 20.8px;
    font-size: 16px;

}

.agents h1 {
    color: black;
    font-family: Inter;
    font-weight: 700;
    line-height: 59.8px;
    font-size: 52px;
    width: 80%;
    margin: 49px auto 25px auto;
    padding-bottom: 31px;
    border-bottom: 1px solid var(--gray_l);
}


.agents-content {
    margin: 0 auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

@media screen and (max-width: 990px) {
    .agents-content {
        flex-wrap: wrap;
    }
}

.agents-content div.item {
    width: 300px;
    height: 287px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    margin: 10px 15px;
}

.agents-content div.delete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.agents-content div.delete p {
    text-align: center;
    margin-top: 10px;
    font-family: Inter;
    font-weight: 400;
    line-height: 18.2px;
    font-size: 14px;
}

@media screen and (width <=750px) {
    .agents-content div.item {
        width: 100%;
    }
}

.agents-content div.item div.caroussel {
    position: relative;
    border-radius: 15px;
}

.agents-content div.item div.caroussel img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
}

.agents-content div.item div.caroussel div.indicators {
    position: absolute;
    display: flex;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(0, 0, 0, 0.505); */
    padding: 0.125rem;
    border-radius: 10px;
}

.agents-content div.item div.caroussel div.indicators span {
    display: block;
    height: 7.5px;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.772);
    cursor: pointer;
    border-radius: 9999px;
    margin: auto 2px;
}

.agents-content div.item div.caroussel div.indicators span.active {
    height: 10px;
    background-color: white;
}

.agents-content div.item div.desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1rem;
}

.agents-content div.item div.desc div.texts p {
    margin: 0.125rem 0;
    font-family: Inter;
    font-size: 14px;
}

.agents-content div.item div.desc div.texts p:nth-child(1) {
    line-height: 21px;
    font-weight: 700;
    color: #cc6f02;
}

.agents-content div.item div.desc div.texts p:nth-child(2) {
    line-height: 18.2px;
    font-weight: 400;
}

.agents-content div.item div.desc div.texts div.icons {
    display: flex;
    justify-content: flex-start;
}

.agents-content div.item div.desc div.texts div.icons div.icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.125rem 0.325rem;
}

.agents-content div.item div.desc div.texts div.icons div.icon:nth-child(1) {
    margin: 0.125rem 0.325rem 0.125rem 0;
}

.agents-content div.item div.desc div.texts div.icons div.icon img {
    border-radius: 0;
    width: 17.5px;
}

.agents-content div.item div.desc div.texts div.icons div.icon span {
    font-size: 0.825rem;
    color: black;
}

.agents-content div.item div.desc div.menu {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray_l);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
}

.agents-content div.item div.desc div.menu .values {
    position: absolute;
    top: 110%;
    right: 0;
    z-index: 10;
    background-color: white;
    border: 1px solid var(--gray_l);
    border-radius: 20px;
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.agents-content div.item div.desc div.menu .values p,
.agents-content div.item div.desc div.menu .values a {
    text-align: center;
    border-bottom: 1px solid var(--gray_l);
    color: black;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20.8px;
}

.agents-content div.item div.desc button {
    background-color: white;
    border: 1px solid #9ca3af;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}


.items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    /* background-color: red; */
}

.items div.item {
    width: 300px;
    height: 287px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    margin: 0.5rem auto 0.5rem 0;
}

@media screen and (width <=750px) {
    .items div.item {
        width: 100%;
    }
}

.items div.item div.caroussel {
    position: relative;
    border-radius: 15px;
}

.items div.item div.caroussel img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
}

.items div.item div.caroussel div.indicators {
    position: absolute;
    display: flex;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(0, 0, 0, 0.505); */
    padding: 0.125rem;
    border-radius: 10px;
}

.items div.item div.caroussel span.new,
.items div.item div.caroussel span.heart {
    position: absolute;
    display: flex;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    color: black;
    font-family: Inter;
    font-weight: 500;
    line-height: 15.6px;
    font-size: 12px;
}

.items div.item div.caroussel span.new {
    top: 10px;
    right: 10px;
}

.items div.item div.caroussel span.heart {
    bottom: 10px;
    right: 10px;
    padding: 0.325rem;
    border-radius: 9999px;
}

.items div.item div.caroussel div.indicators span {
    display: block;
    height: 7.5px;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.772);
    cursor: pointer;
    border-radius: 9999px;
    margin: auto 2px;
}

.items div.item div.caroussel div.indicators span.active {
    height: 10px;
    background-color: white;
}

.items div.item div.desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1rem;
}

.items div.item div.desc div.texts p {
    margin: 0.125rem 0;
    font-family: Inter;
    font-size: 14px;
}

.items div.item div.desc div.texts p:nth-child(1) {
    line-height: 21px;
    font-weight: 700;
    color: #cc6f02;
}

.items div.item div.desc div.texts p:nth-child(2) {
    line-height: 18.2px;
    font-weight: 400;
}

.items div.item div.desc div.texts div.icons {
    display: flex;
    justify-content: flex-start;
}

.items div.item div.desc div.texts div.icons div.icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.125rem 0.325rem;
}

.items div.item div.desc div.texts div.icons div.icon:nth-child(1) {
    margin: 0.125rem 0.325rem 0.125rem 0;
}

.items div.item div.desc div.texts div.icons div.icon img {
    border-radius: 0;
    width: 17.5px;
}

.items div.item div.desc div.texts div.icons div.icon span {
    font-size: 0.825rem;
    color: black;
}

.items div.item div.desc button {
    background-color: white;
    border: 1px solid #9ca3af;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.items div.item div.desc img {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.items div.item div.desc img:hover {
    transform: scale(1.1);
}