*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "avenir";
    src: url(fonts/AvenirNext-forINTUIT-Web-Fonts/AvenirNext+forINTUIT+W05+Rg_web.woff2);
}

@font-face {
    font-family: "mvenir";
    src: url(fonts/AvenirNext-forINTUIT-Web-Fonts/AvenirNext+forINTUIT+W05+Mediu_web.woff2);
}

@font-face {
    font-family: "bvenir";
    src: url(fonts/AvenirNext-forINTUIT-Web-Fonts/AvenirNext+forINTUIT+W05+Demi_web.woff2);
}

body{
    width: 100%;
    background: #F4F5F8;
    font-family: "avenir";
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
}

.bottom{
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom p{
    font-weight: 100;
    cursor: pointer;
    font-size: 16px;
    color: #6b6c72;
}

.bottom svg{
    cursor: pointer;
}

.container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.box{
    background: #fff;
    padding: 15px 60px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 16px;
    width: 644px;
}

.box span:hover{
    cursor: pointer; 
    text-decoration: underline;
}

.box3{
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px 20px;
}

.details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.details button{
    width: 109px;
    padding: 5px 18px;
    font-size: 12px;
    color: #393a3d;
    background: #fff;
    border: solid 2px #6b6c72;
    cursor: pointer;
    border-radius: 3px;
}

.details button:hover{
    background: #BABEC5;
}

.details .icon{
    display: flex;
    gap: 10px;
}

.details .icon svg{
    cursor: pointer;
}

.details .icon svg:hover{
    background: #BABEC5;
}

.box4{
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px 20px;
    margin-top: 10px;
    line-height: 25px;
}

.box5{
    margin-top: 20px;
}

.conmobile{
    background-color: #fff;
    display: none;
    width: 100%;
}

.mobiledetails{
    width: 100%;
    margin-top: 30px;
    background: #F4F5F8;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mdetails{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    width: 300px;
}

.minvoice{
    padding: 20px;
}

@media (max-width: 760px) {
    .container{
        display: none;
    }
    body{
        padding-inline: 10px;
    }
    header{
        padding: 8px 1px;
    }
    .conmobile{
        display: flex;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-inline: 10px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .mobiledetails{
        width: 100%;
    }
}