.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

/* .links {
    justify-content: flex-end !important;
} */

.download .container, .terms .container, .reviews-section .container, .doc .container {
    background: var(--bg-color-2);
    padding: 5rem;
    border-radius: 30px;
}
p.text {
    margin-bottom: 0px;
}

.intro .heading {
    margin-bottom: 30px;
}

.review-card {
    display: grid;
    grid-template-columns: 100px auto;
    gap: 20px;
    margin-bottom: 40px;
}

.review-card:last-child {
    margin-bottom: 0;
}
.reviews-section .heading {
    margin-bottom: 20px;
    /* line-height: 0.7; */
    border-bottom: 2px solid #c100bf;
    display: inline-block;
    position: relative;
    top: -25px;
}
/* .reviews-section .heading::before {
    content: "";
    width: 382px;
    background: #c100bf;
    height: 2px;
    border: none;
    position: absolute;
    bottom: -12px;
} */

.review-card .review-image {
    width: 100%;
    height: 100px;
    background: radial-gradient(#00ffffb3, #2d834c85);
    position: relative;
    border-radius: 5px;
}

.review-card .review-image h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 75px;
    color: hsl(0deg 0% 15.08%);
}

.review-card .review-name {
    color: var(--heading-color);
    border-bottom: 2px solid #c100bf;
    display: inline-block;
    line-height: 1.6;
}

.review-card p.text {
    margin: 1rem 0;
}

.review-card hr {
    grid-column: 1 / 3;
    border: 1px solid #008f8f;
}

.ytvideo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #00000024; */
}
/* 
.ytvideo img{
    height: 50px;
    transform: translateX(34%);
}
.ytvideo span {
    height: 52px;
    width: 73px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    border-radius: 25%;
    cursor: pointer;
} */

.section {
    padding-bottom: 1rem;
}

.download .btn {
    background: #ff00008f;
    font-size: 1.2rem;
}

.download .btn:hover {
    transform: scale(1.05);
    background-color: #ff0000ba;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.download-btn label {
    color: var(--heading-color);
    font-size: 12px;
    cursor: pointer;
}
.download-btn label a {
    color: var(--main-color-1);
}
.download-btn label a:hover {
    color: var(--main-color-dark-1);
}
.download-btn input {
    transform: scale(1.2);
    margin: 0 10px;
    cursor: pointer;
}
.download-btn p.text {
    margin: 0;
}

.download-btn div {
    margin-top: 2rem;
}

.box-desc {
    align-items: flex-start;
}

ul.text {
    list-style: disc;
}

.overlay-message {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -100;
    transition: 0.3s;
    height: 100vh;
    width: 100vw;
}

.response-message {
    position: absolute;
    height: 80px;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.768);
    border: 1.5px solid cyan;
    border-radius: 10px;
    top: -15%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;

}
.response-message p {
    color: rgb(218, 218, 218);
}

.overlay-message.active {
    /* background-color: rgba(0, 0, 0, 0.381); */
    z-index: 100;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
}
.overlay-message.active .response-message {
    top: 15%;
}

.empty .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.empty h1 {
    color: var(--heading-color);
    text-align: center;
}