@import "https://unpkg.com/open-props/easings.min.css";
@import "https://unpkg.com/open-props/animations.min.css";

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    width: 90%;
    max-width: 1300px;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.hero-text-main {
    color: var(--cool-black);
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}

.hero-sub-text {
    color: var(--cool-black);
    text-align: center;
    margin-top: 1rem;
    font-size: 17px;
    font-weight: normal;
}

.hero-spin-text {
    color: #1E90FF;
    width: 200px;
    display: inline-block;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-spin-text.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-spin-text.hide {
    opacity: 0;
    transform: translateY(-30px);
}

.search {
    display: inline-block;
    background-color: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: absolute;
    text-wrap: nowrap;
}

#search-1 {
    left: 0;
}

.searches-prompt {
    width: 100%;
    position: absolute;
}

.search {
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 40px;

}

.search-icon {
    padding-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#search-1 {
    top: -200px;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

#search-2 {
    right: 0;
    top: 200px;
    transform: translatey(-20px);
    animation: float 3s ease-in-out infinite;
}

#search-3 {
    transform: translatey(0px);
    left: 50px;
    top: 150px;
    animation: float 9s ease-in-out infinite;
}

#search-4 {
    transform: translatey(0px);
    right: 90px;
    top: -270px;
    animation: float 7s ease-in-out infinite;
}

.search-text {
    color: var(--cool-black);
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.scroll-wrap {
    position: absolute;
    bottom: 5rem;
    color: #4a5568;
    font-size: 13px;
}

.c-header h2 {
    color: var(--cool-black);
    font-size: 30px;
}

.c-wrapper {
    padding-bottom: 5rem;
}

#c-spedc1 {
    color: #1E90FF;
    font-size: 50px;
}

.video-wrapper {
    margin-top: 2rem;
    width: 100%;
    background-color: transparent;
    object-fit: fill;
    position: relative;
}

#video-wrapper-video {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.video-play-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cool-black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-wrapper {
    user-select: none;
    position: absolute;
    z-index: 5;
    left: 70px;
    bottom: 30px;
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 1rem;
    transition: opacity .4s ease;
}

.video-play-wrapper.hide {
    opacity: 0;
    pointer-events: none;
}
.video-play-wrapper.hide .video-play-icon #gsfdfg5yeyn {
    display: none;
}
#sfgsdfgsdfgsdf4 {
    display: none;
}
.video-play-wrapper.hide .video-play-icon #sfgsdfgsdfgsdf4{
    display: block;
}
.video-play-text {
    color: var(--cool-black);
    font-weight: bold;
}
.learn-text {
    color: var(--cool-black);
    font-size: 45px;
    margin-bottom: 5rem;
    overflow: hidden;
    padding: 0 5px;
}
.learn-text-highlight {
    position: relative;
    overflow: hidden;
    transition: color .4s ease;
    text-wrap: nowrap;
}
.learn-text-highlight::after {
    content: '';
    position: absolute;
    background-color: #1E90FF;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 50%;
    padding: 0 5px;
    transform: translateX(-50%);
    top: -200px;
    transition: top .4s ease;
}
.learn-text-highlight.active::after {
    top: 0px;
}
.learn-text-highlight.active {
    color: white;
}
.product {
    display: flex;
    gap: 4rem;
    width: 100%;
}
.product-info h3 {
    color: var(--cool-black);
}
.product-info p {
    color: var(--cool-black);
    max-width: 400px;
    line-height: 27px;
    font-size: 17px;
}
.product-link {
    border-bottom: 1px solid var(--gray-border);
    padding: 2rem 0;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.product-link:first-child {
    margin-top: 2rem;
    border-top: 1px solid var( --gray-border);
}
.product-showcase {
    width: 70%;
    border-radius: 3px;
    background-color: rgb(204, 203, 203);
}
.products {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem;
}


.secondary-button-2 {
    padding: 0.40rem .7rem;
    border-radius: 4px;
    background-color: transparent;
    border: 2px solid #1E90FF;
    color: #1E90FF;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color .4s ease, color .4s ease;
}
.secondary-button-2:hover {
    background-color: #1E90FF;
    color: white;
}
.c-header.price {
    text-align: center;
}