/* main banner section */
.page-banner {
    height: 80svh;
    min-height: 400px;
    max-height: 800px;
    background-color: black;
    /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--bg); */
    background-image: var(--bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* breadcrumbs */
.breadcrumbs {
    background-color: hsla(0, 0%, 0%, 0.3);
    padding-inline: 1.5em;
    padding-block: 0.5em;
    border-radius: 100vw;
    color: var(--clr-secondary);
    font-size: 12px;
    column-gap: 20px;
}

.breadcrumbs a {
    color: white;
    position: relative;
}

.breadcrumbs a::after {
    content: "";
    width: 1em;
    height: 1em;
    position: absolute;
    left: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://api.iconify.design/ic:round-keyboard-arrow-right.svg?color=white);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* services section */
.services .service-box {
    background-color: var(--clr-text-light);
    border-radius: 1rem;
    transition: 0.5s;
    position: relative;
    outline: 1.5px solid var(--clr-secondary);
}

.services .service-box:hover {
    background-color: var(--clr-secondary);
}

.services .service-box>* {
    transition: 0.3s;
}

.services .service-box .icon {
    font-size: 5rem;
    color: var(--clr-secondary);
}

.services .service-box:hover>* {
    color: var(--clr-text-light);
}

.services .service-box .km-btn {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%) scale(0);
    transition: .3s;
    padding: 1rem;
    border-radius: 100vw;
    font-size: 2rem;
}

.services .service-box:hover .km-btn {
    transform: translateX(-50%) translateY(50%) scale(1);
}

.services .service-box h6 {
    font-size: 1.5rem;
}

@media (width < 992px) {

    /* main banner section */
    .page-banner {
        background-image: var(--bg-mob);
        /* height: auto; */
        min-height: 400px;
        max-height: 100%;
        aspect-ratio: 1000/1500;

    }

    .services .service-box .icon {
        font-size: 3rem;
    }

    .services .service-box h6 {
        font-size: 1rem;
    }

    .services .service-box p {
        font-size: 12px;
    }

    .services .service-box:hover .km-btn {
        transform: translateX(-50%) translateY(50%) scale(0.75);
    }
}

/* box point */
.box-point>p {
    position: relative;
    padding-left: 30px;
}

.box-point>p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url(https://api.iconify.design/mdi:star-four-points.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask: url(https://api.iconify.design/mdi:star-four-points.svg);
    mask-size: contain;
    mask-position: center;

}

/* ethics */

.ethics-sec .ethics-box {
    background-color: white;
    transition: 0.3s;
    color: var(--clr-text-dark);
    border-radius: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.ethics-sec .ethics-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: circle(0% at 0 100%);
    transition: .5s;


    --s: 100px;
    /* control the size*/
    --c1: hsl(223, 49%, 40.5%);
    --c2: hsl(223, 49%, 39%);

    --_g: #0000 8%, var(--c1) 0 17%, #0000 0 58%;
    background:
        linear-gradient(135deg, #0000 20.5%, var(--c1) 0 29.5%, #0000 0) 0 calc(var(--s)/4),
        linear-gradient(45deg, var(--_g)) calc(var(--s)/2) 0,
        linear-gradient(135deg, var(--_g), var(--c1) 0 67%, #0000 0),
        linear-gradient(45deg, var(--_g), var(--c1) 0 67%, #0000 0 83%, var(--c1) 0 92%, #0000 0),
        var(--c2);
    background-size: var(--s) var(--s);
}


.ethics-sec .ethics-box:hover::before {
    clip-path: circle(150% at 0 100%);
}

.ethics-sec .ethics-box .icon {
    position: relative;
    isolation: isolate;
    font-size: 5rem;
}

.ethics-sec .ethics-box .icon::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.5em;
    height: 0.5em;
    background-color: var(--clr-primary);
    z-index: -1;
    border-radius: 100vw;
    transition: 0.3s;
}

.ethics-sec .ethics-box:hover {
    /* background-color: var(--clr-secondary); */
    color: var(--clr-text-light);
}

.ethics-sec .ethics-box:hover .icon {
    color: white;
}

.ethics-sec .ethics-box :is(h6, p, svg) {
    transition: 0.2s;
}

.ethics-sec .ethics-box:hover .icon::before {
    background-color: hsla(0, 0%, 100%, 0.3);
}

@media (width < 992px) {
    .ethics-sec .ethics-box .icon {
        font-size: 4rem;
    }
}


/* why choose us */
/* why choose us */
.wcu {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wcu .wcu-box {
    transition: 0.3s;
    background-color: white;
}

.wcu .wcu-box:hover {
    background-color: var(--clr-primary);
    background-image: linear-gradient(to right, hsl(295, 56%, 40%), hsl(345, 86%, 25%));
    color: var(--clr-text-light);
}

.wcu .wcu-box .icon {
    font-size: 5rem;
    transition: 0.3s;
    color: var(--clr-primary);
}

.wcu .wcu-box:hover .icon {
    color: var(--clr-text-light);
}

@media (width < 992px) {
    .wcu .wcu-box .icon {
        font-size: 3rem;
    }

    .wcu .wcu-box h6 {
        font-size: 1rem;
    }

    .wcu .wcu-box p {
        font-size: 12px;
    }
}



/* call to acton */
#call-to-action {
    background-image: linear-gradient(to right, hsl(295, 56%, 40%), hsl(345, 86%, 25%));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

@media (width > 1200px) {

    #call-to-action::before {
        /* content: ''; */
        position: absolute;
        right: 5%;
        bottom: 0;
        display: block;
        height: 140%;
        aspect-ratio: 1/1;
        background-image: url(/assets/images/cta/cta.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
}


#call-to-action .call-to-content .call-to-action-button {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 100vw;
    background-color: var(--clr-text-light);
    width: 70%;

}

@media (width < 768px) {
    #call-to-action .call-to-content .call-to-action-button {
        width: 100%;
    }
}

/* clip-hover */
.clip-hover-img {
    clip-path: inset(0rem round 1rem);
    transition: 0.5s;
}

.clip-hover-img:hover {
    clip-path: inset(1rem round 2rem);
}

/* faq */


.faq-sec .faq-head {
    padding: 1.5rem;
    position: relative;
}


.faq-sec .faq-head::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 30px;
    height: 30px;
    /* background-color: var(--clr-primary); */
    background-image: url(https://api.iconify.design/material-symbols:add-rounded.svg?color=%23a2116d);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s;
    border-radius: 50%;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.200); */

}

.faq-sec .faq-head[data-show="true"]::before {
    transform: translateY(-50%) rotate(45deg);
}

.faq-sec .faq-head h6 {
    transition: 0.3s;
}

.faq-sec .faq-head[data-show="true"] h6 {
    color: var(--clr-primary);
}

.faq-sec .faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms ease;
    padding: 0 1.5rem;
}

.faq-head[data-show="true"]+.faq-body {
    grid-template-rows: 1fr;
    padding: 0.4rem 1.5rem 1.5rem 1.5rem;
}

.faq-sec .faq-body p {
    overflow: hidden;
    max-width: 100%;
}

.faq-sec .faq-content {
    /* border: .5px var(--clr-primary) solid; */
    border-left: 0.3rem var(--clr-primary) solid;
    /* border-right: 2px var(--clr-primary) solid; */
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


.investor-img {
    width: 100%;
    aspect-ratio: 1/0.75;
    object-fit: cover;
}

.list-points p {
    position: relative;
    padding-left: 30px;
}

.list-points p::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100vw;
    background-color: var(--clr-primary);
    -webkit-mask-image: url(https://api.iconify.design/material-symbols:line-end-circle-rounded.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(https://api.iconify.design/material-symbols:line-end-circle-rounded.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-white.list-points p::before {
    background-color: white;

}