    /* @import url(style/main.css); */
    
    body>main .sectionInsurance {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        padding: 128px 64px 140px 64px;
        font-family: IRANSansWeb_Bold;
        isolation: isolate;
        position: relative;
        z-index: 1;
    }
    
    body>main .sectionInsurance:target .box {
        animation-name: PopSection;
        animation-duration: .5s;
        background-color: #ffffffb3;
        backdrop-filter: blur(10px);

    }
    
    body>main .sectionInsurance .box {
        width: 100%;
        height: 100%;
        max-width: 100%;
        overflow: hidden;
        background-color: #ffffff2e;
        border-radius: 16px;
        border: 2px solid #fff;
        box-shadow: 0 0 16px #0003, inset 0 0 16px #0003;
        display: grid;
        grid-template-rows: 64px 1fr;
        grid-template-columns: 100%;
    }
    
    body>main .sectionInsurance .box>header {
        padding: 16px;
        padding-bottom: 0;
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 16px;
        text-align: center;
    }
    
    body>main .sectionInsurance .box>header .close {
        position: relative;
    }
    
    body>main .sectionInsurance .box>header .close .border {
        width: 6px;
        height: 48px;
        background-color: red;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 5px;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    
    body>main .sectionInsurance .box>header .close .border:nth-child(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    body>main .sectionInsurance .box>header .titleInsurance {
        border-bottom: 2px solid var(--menuItmeBlueMid);
        width: calc(100% - 48px);
        margin: 0;
        font-size: 18px;
    }
    
    body>main .sectionInsurance .box>main {
        max-width: 100%;
        max-height: 100%;
        display: flex;
    }
    
    body>main .sectionInsurance .box>main .cardHolder {
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: auto;
        position: relative;
    }
    
    body>main .sectionInsurance .box main .cardHolder button.navCard {
        position: absolute;
        top: 50%;
        right: 16px;
        width: 48px;
        height: 48px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #fff;
        border: none;
        box-shadow: 0 0 10px #0003, inset 0 0 6px #0003;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    body>main .sectionInsurance .box main .cardHolder button.navCard::after{
        /* content: url(assets/); */
    }
    
    body>main .sectionInsurance .box main .cardHolder button.navCard.forward {
        right: unset;
        left: 16px;
    }
    
    .cardList {
        width: 100%;
        max-width: 100%;
        height: fit-content;
        height: -moz-fit-content;
        overflow: auto;
        gap: 16px;
        white-space: nowrap;
        display: grid;
        grid-auto-flow: column;
        /* justify-content: center; */
    }
    
    body>main .sectionInsurance .box main .cardList::-webkit-scrollbar {
        display: none;
    }
    
    @media (min-width:980px) {
        body>main .sectionInsurance .box>main .cardHolder {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .cardList {
            width: fit-content !important;
            width: -moz-fit-content !important;
            max-width: 100%;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
        }
        /* From card.css */
        .cardList>.card:nth-child(1) {
            margin-right: 80px;
        }
        .cardList>.card:last-child {
            margin-left: 80px;
        }
    }
    
    @media (max-width:980px) {
        body>main .sectionInsurance {
            padding: 96px 24px 54px 24px;
            height: calc(100vh - 80px);
        }
        body>main .sectionInsurance .box {
            grid-template-rows: 48px calc(100% - 48px);
        }
        body>main .sectionInsurance .box>header {
            grid-template-columns: 48px 1fr;
            padding: 8px;
            border-bottom: 2px solid var(--menuItmeBlueMid);
            font-family: IRANSansWeb_Medium;
            justify-content: center;
            align-items: center;
        }
        body>main .sectionInsurance .box>header .titleInsurance {
            border: none;
        }
        body>main .sectionInsurance .box>header .close .border {
            width: 4px;
            height: 24px;
        }
        body>main .sectionInsurance .box>header .titleInsurance {
            font-size: 14px;
        }
        body>main .sectionInsurance .box main .cardHolder button.navCard {
            display: none;
        }
        .cardList {
            height: 100%;
            gap: 16px;
            white-space: normal;
            grid-auto-flow: inherit;
            grid-template-columns: 1fr 1fr;
            padding: 16px;
        }
        .cardList>.card:nth-child(1) {
            margin-right: 0;
        }
    }
    /* animation */
    
    @keyframes PopSection {
        0% {
            transform: translateY(100%);
        }
        100% {
            transform: translateY(0%);
        }
    }
    
    @media (max-height:800px) and (min-width:980px) {
        body>main .sectionInsurance {
            padding-bottom: 124px;
            padding-top: 88px;
        }
        .card main a {
            font-size: 14px !important;
        }
    }

    /* @media (max-height:700px) and (min-width:980px) {


        .sectionInsurance {
           
        }
    } */