/* .featured-div {
    margin-top: 100px;
} */

.new-added-div {
    margin-top: 50px;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    /* position: relative; */
}

.header-box-text {
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.header-box-text h1 {

    /* text-transform: uppercase; */
}

.header-box-text h2 {
    line-height: 1.5em;
}

#header-ai-search {
    position: relative;
    max-width: 500px;
    margin-bottom: 20px;
    width: 90%;
}

#header-ai-search .header-search {
    height: 48px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 0 60px 0 20px;
    font-size: 16px;
    background-color: var(--color-box);
    color: var(--color-white);
    font-weight: 600;
}

#header-ai-search .search-icon {
    height: 50px;
    width: 50px;
    background: var(--color-primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translate(0px, -50%);
    font-size: 20px;
    border: none;
}

.header-category {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-btn {
    max-width: 230px;
}

.browse-btn {
    max-width: 250px;
}

.gradient-round-btn {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.browse-btn:hover,
.category-btn:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.arrow-right {
    position: relative;
    display: block;
    /* width: 25px;
    height: 25px; */
    /* border: 2px solid var(--color-white); */
    background-size: 14px auto;
    border-radius: 50%;
}

.arrow-right:before {
    position: absolute;
    top: calc(51% - 4px);
    left: calc(51% - 5px);
    transform: rotate(-135deg);
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    border: 2px solid var(--color-white);
    border-width: 0px 0 2px 2px;
}

.header-ai-img {
    -webkit-animation: bounce-robot 3s infinite;
    animation: bounce-robot 3s infinite;
    width: 100%;
}

@keyframes bounce-robot {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    /* 
    100% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    } */
}

@media (max-width: 1000px) {
    .header-ai-img {
        display: none;
    }

    .header-box-text {
        text-align: center;
    }

    #header-ai-search {
        margin: auto;
        margin-bottom: 20px;
    }

    a.category-btn {
        margin: auto;
    }

    /* .header-box {
        height: 65vh;
    } */
    .header-category {
        flex-flow: column;
    }
}