﻿

.finix-text h6 {
    color: #e73c3e;
    font-weight: 400;
    font-size: 17px;
}

.finix-text h2 {
    font-weight: 400;
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.finix-text p {
    color: #606060;
    font-size: 15px;
    line-height: 1.8rem;
}

.why-choose-us {
    margin-top: 90px;
}

    .why-choose-us .finix-text h2 {
        font-weight: 500;
    }

    .why-choose-us .ct-btn {
        display: inline-block;
        width: 85px;
        height: 85px;
        line-height: 85px;
        text-align: center;
        border-radius: 50%;
        font-size: 60px;
        background: #fff;
        position: absolute;
        top: 77%;
        right: 43%;
    }

        .why-choose-us .ct-btn::before {
            content: "";
            height: 85px;
            width: 85px;
            position: absolute;
            top: 0;
            left: 0;
            background: #06A3DA;
            /*background: transparent;*/
            border-radius: 50%;
            animation: choose 2.6s ease-out infinite;
        }

@keyframes choose {
    0%, 30% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .7;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.why-choose-us .ct-btn a {
    color: #06A3DA;
}

.why-choose-us .feature-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

    .why-choose-us .feature-box:hover {
        transform: translateY(-10px);
    }

        .why-choose-us .feature-box:hover .fbc-btn {
            background: #06A3DA;
            color: #fff;
        }

    .why-choose-us .feature-box::before {
        content: "";
        position: absolute;
        top: -115px;
        left: 0;
        right: 0;
        margin: auto;
        width: 90%;
        height: 70%;
        background: #fdebeb;
        border-radius: 50%;
    }

.why-choose-us .fbc-btn {
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    color: #e73a3e;
    position: relative;
    transition: .4s;
}

.active-feature {
    margin-top: -30px;
}

.why-choose-us .finix-text {
    position: relative;
}

.fbc-btn > i {
    padding-top: 35%;
}

/* Modal background */
.modal-bg_1 {
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-bg_1.active {
        opacity: 1;
        pointer-events: auto;
    }
/* Modal content */
.modal-content_1 {
    position: relative;
    width: 50vw;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
/* Close button */
.modal-close-btn_1 {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

    .modal-close-btn_1:hover {
        background: rgba(255,255,255,1);
    }



@media (max-width:480px) {

    .modal-bg_1 {
        width: 70%;
        height: 50%;
    }

    .modal-content_1 {
        max-width: 500px;
        width: 50%;
        aspect-ratio: 5/ 5;
    }

   
}
        