.ticker  {
    h4, i {
        font-size: 1.4em !important;
    }
}
.approach {
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 50px;
        @media (max-width: 768px) {
            flex-direction: column;
        }
        .card {
            width: calc(100% / 3 - 30px);
            padding: 40px;
            backdrop-filter: blur(100px);
            border-radius: 30px;
            border: 1px solid #FFFFFF1A;
            &:hover {
                img {
                    transform: scale(1.1);
                }
            }
            .img {
                margin-bottom: 30px;
                img {
                    width: 100%;
                    transition: .3s;
                }
                i {
                    position: absolute;
                    font-size: 1.5em;
                    color: var(--main-color);
                    bottom: 30px;
                    left: 20px;
                    z-index: 3;
                }
            }
            h5 {
                font-size: 1.5em;
                color: #fff;
            }
            p {
                color: #eee;
                font-size: 14px;
                margin: 15px 0;
                line-height: 1.7;
            }
        }
    }
}


section.team {
    position: relative;
    &::before {
        content: '';
        display: block;
        position: absolute;
        left: -90px;
        top: -25%;
        background: url(../imgs/why-bg.png) no-repeat;
        background-position: left center;
        background-size: contain;
        opacity: 50%;
        width: 310px;
        height: 325px;
        animation: circlerotate 10s infinite linear;
        animation-direction: alternate;
        z-index: -1;
    }
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 50px;
        @media (max-width: 768px) {
            flex-direction: column;
        }
        .card {
            width: calc(100% / 4 - 30px);
            position: relative;
            cursor: pointer;
            .img {
                width: 100%;
                position: relative;
                &::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: linear-gradient(181.78deg, rgba(0, 0, 0, 0) 47.87%, rgba(0, 0, 0, 0.8) 81.02%);
                    z-index: 1;
                }
                &:hover {
                    img {
                        transform: scale(1.1);
                    }
                }
                img {
                    object-fit: cover;
                    max-width: 100%;
                    transition: 1s;
                }
                .text {
                    position: absolute;
                    bottom: 0px;
                    left: 50%;
                    transform: translate(-50%);
                    font-weight: bold;
                    text-align: center;
                    z-index: 2;
                    transition: .3s;
                    h4 {
                        font-size: 1.5em;
                        color: #fff;
                    }
                    h5 {
                        font-size: 1em;
                        color: #eee;
                        margin: 5px 0;
                    }
                    .social {
                        display: flex;
                        gap: 10px;
                        justify-content: center;
                        margin-top: 35px;
                        opacity: 0;
                        transition: .3s ease-in-out;
                        a i {
                            padding: 10px ;
                            border-radius: 50%;
                            border: 1px solid var(--main-color);
                            color: var(--main-color);
                            font-size: 17px;
                            transition:.3s;
                            &:hover {
                                color: #000;
                                background-color: var(--main-color);
                            }
                        }
                    }
                }
                &:hover .text{
                    transform: translate(-50% , -20px);
                    .social {
                        opacity: 1;
                        transform: translateY(-20px);
                    }
                }
                    

            }
        }
    }
}


section.faqSection {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    .imgs {
        min-width: 50%;
        position: relative;
        padding: 100px 20px 0 0;
        height: 100%;
        img {
            border-radius: 20px;
            object-fit: cover;
            &.firstImg {
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                max-width: 330px;
                z-index: 2;
            }
        }
        a {
            position: absolute;
            bottom: 20%;
            right: 50%;
            padding: 10px 18px 10px 18px;
            background-color: #3b3f40;
            border-radius: 10px;
            border: 1px solid #FFFFFF1A;
            animation: moveLeftRight 10s linear infinite;
            i {
                font-size: 1em;
                color: var(--main-color);
                margin-right: 5px;
            }
            span {
                color: #fff;
                font-size: .9em;
                font-weight: bold;
            }
        }
    }
}

@keyframes moveLeftRight {
    0%,100% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(60%);
    }
}