
.game-callToAction-v5 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 4rem 0;
    border: 0.5rem solid var(--dark-clr);
    border-radius: 4rem 0rem;
    background: linear-gradient(94.51deg, rgba(0, 104, 199, 1) 0%, rgba(2, 12, 23, 1) 100%);
}

.game-image-v5 {
    position: absolute;
    top: var(--top);
    left: 0;
    height: 100%;
}

.game-cta-btn-v5 {
    border: 2px solid transparent;
    background-color: white;
    color: black;
    font-size: 0.95rem;
    padding: 0.4rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

.game-cta-btn-v5:hover {
    border: 2px solid white;
    color: white;
    background-color: var(--dark-clr);
    transform: scale(1.045);
}


.game-sticky-v5 {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .game-sticky-v5 {
        position: static;
        top: 0;
    }
}

.game-rightContCard-v5 {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-radius: .50rem;
    padding: 1rem;
    height: 100%;
    border: 2px solid var(--dark-clr);
}


.game-btn-desgin-v5 {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-align: start;
    white-space: wrap;
}

@media (max-width: 1200px) {

    .game-btn-desgin-v5 {
        white-space: nowrap;
    }
}

.game-btn-desgin-v5.active {
    background-image: linear-gradient(90deg,
            rgba(228, 240, 255, 1) 10%,
            rgba(228, 240, 255, 0) 110%);
    color: var(--dark-clr);
}

.game-side-content-v5 {
    background-color: var(--card-clr);
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}


.game-iconSection-v5 {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: black;
    border-radius: .5rem;
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    transition: .3s ease-in-out;
}

.gCSTV5-icon {
    display: inline-block;
    transform: scale(1);
    transition: .3s ease-in-out;
}

.game-iconSection-v5:hover .gCSTV5-icon {
    transform: scale(1.06);
}

.game-iconSection-v5:hover {
    color: var(--dark-clr);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.game-centeredImg-card-v5 {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border-radius: .5rem;
    height: 100%;
    transition: .3s ease-in-out;
}

.game-centeredImg-card-v5:hover {
    background-color: var(--card-clr);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.game-developmentProcCard-v5 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 2.5rem 2.5rem;
    background-color: var(--card-clr);
    height: 100%;
    border-radius: .5rem;
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    transition: .3s ease-in-out;
}

.gDPCV5-stepNo {
    position: absolute;
    top: -13%;
    left: -5%;
    background-color: var(--dark-clr);
    border: 10px solid white;
    border-radius: 100%;
    padding: .95rem 1.05rem;
    font-size: 1.10rem;
    font-weight: 600;
    color: white;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.game-developmentProcCard-v5:hover {
    border-left: 2px solid var(--dark-clr);
    border-top: 2px solid var(--dark-clr);
}

.game-cardSectionOne-v5{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: start;
    height: 100%;
    background-color: var(--card-clr);
    padding: 1rem;
    border-radius: 1rem;
    transition: 0.6s ease-in-out;
}

.gcsoV5-icon{
    transform: rotate(0deg);
    transition: transform .6s ease-in-out;
}

.game-cardSectionOne-v5:hover .gcsoV5-icon{
    transform: rotate(45deg);
}

.game-cardSectionOne-v5:hover{
    box-shadow: 0px 12px 26px 0px rgba(0, 0, 0, 0.1), 0px 48px 48px 0px rgba(0, 0, 0, 0.09), 0px 107px 64px 0px rgba(0, 0, 0, 0.05), 0px 190px 76px 0px rgba(0, 0, 0, 0.01), 0px 297px 83px 0px rgba(0, 0, 0, 0);
}

.game-table-container-v5 {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-top: 2rem;
}

.game-table-v5 {
    width: 100%;
    min-width: 600px;
    border-radius: .75rem;
}

.game-thead-v5 tr {
    background-color: var(--dark-clr);
    color: white;
}

.game-thead-v5 tr th:first-child {
    border-top-left-radius: .75rem;
}

.game-thead-v5 tr th:last-child {
    border-top-right-radius: .75rem;
}

.game-thead-v5 tr th {
    padding: .75rem 0;
    text-align: center;
}

.game-tbody-v5 tr {
    background-color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: .3s ease-in-out;
}

.game-tbody-v5 tr:hover {
    background-color: var(--card-clr);
}

.game-tbody-v5 tr td {
    padding: .75rem 1rem;
    border: 1px solid var(--card-clr);
}


#faq .faq-list {
    position: relative;
}

#faq .faq-list h2 {
    color: #1a73e8;
    margin-bottom: 20px;
}

#faq .faq-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    padding: 10px 10px 10px 30px;
    position: relative;
    transition: 0.3s ease-in-out;
}

#faq .faq-item.active {
    padding-left: 3.25rem;
    color: #1a73e8;
}

#faq .faq-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    /* background: url('https://img.icons8.com/ios-filled/50/1a73e8/arrow.png') no-repeat center center; */
    background: url('/img/devprog-img/ico/faqArrow.png') no-repeat center center;
    background-size: contain;
    /* transform: translateY(50%); */
    transition: top 0.3s ease;
}

#faq .faq-answer {
    background-color: #dceeff;
    padding: 30px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6rem;
    width: 100%;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

[id^="faq-answer-"]:empty {
    display: none !important;
    padding: 0 !important;
}