*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    list-style: none;
    text-decoration: none;
}
:root{
--Blue-950: hsl(213, 96%, 18%);
--Purple-600: hsl(243, 100%, 62%);
--Blue-300: hsl(228, 100%, 84%);
--Blue-200: hsl(206, 94%, 87%);
--Red-500: hsl(354, 84%, 57%);
--Grey-500: hsl(231, 11%, 63%);
--Purple-200: hsl(229, 24%, 87%);
--Blue-100: hsl(218, 100%, 97%);
--Blue-50: hsl(231, 100%, 99%);
--White: hsl(0, 100%, 100%);
}
body{
    background: var(--Blue-300);
}
.container{
    width: 64%;
    margin:50px auto;
    background: var(--White);
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 0.5rem;
}
.container .img{
    background-image: url(images/bg-sidebar-desktop.svg);
    width: 274px;
    height: 568px;
    flex-direction: column;
    padding: 10px;
}
.container .img .box{
    z-index: 100;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    /* text-align: center; */
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    margin-bottom: 2rem;
}
.box a{
    width: 30px;
    height: 30px;
    padding: 5px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.box a:hover,
.box a:focus,
.box a:checked{
    background: var(--Blue-300);
    color: var(--Blue-950);
}
.text h5{
    font-size: 10px;
    font-weight: 400;
    color:var(--White);
}
.text h3{
    font-size: 13px;
    font-weight: 500;
    color: var(--White);
}
.form{
    width: 500px;
    position: relative;
}
.form h1{
    color: var(--Blue-950);
}
.form p{
    margin-bottom: 3rem;
    color: var(--Grey-500);
}
.form div input{
    width: 80%;
    height: 40px;
    border-radius: 0.5rem;
    padding: 5px;
    outline: none;
    border-color: var(--Grey-500);
}
.form div{
    margin-bottom: 2rem;
}
.form div h3{
    font-weight: 400;
    font-size: 15px;
}
.btn{
    background: var(--Blue-950);
    color: var(--White);
    outline: none;
    border: none;
    border-radius: 0.5rem;
    padding: 8px 12px;
    font-size: 20px;
    position: absolute;
    right:50px;
    margin-top: 4rem;
    cursor: pointer;
    bottom: 33px;
}

/* cards */
.form-cards{
    width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-cards h1{
    color: var(--Blue-950);
}
.form-cards p{
    margin-bottom: 3rem;
    color: var(--Grey-500);
}
.cards{
    display: flex;
    column-gap: 1rem;
}
.card{
    padding:2px 10px;
    border: 2px solid var(--Grey-500);
    border-radius: 0.5rem;
    width: 150px;
}
.card img{
    margin-bottom: 30px;
}
.card p{
    margin-bottom: 8px;
}
.card:hover,
.card:focus{
    border-color: var(--Blue-950);
}
.back{
    font-size: 20px;
    position: absolute;
    left:20px;
    margin-top: 4rem;
    cursor: pointer;
    color: var(--Blue-950);
    bottom: 30px;
    padding: 8px 12px;
}

/* 333333333333333333333333333333*/

.form-check{
    width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-check h1{
    color: var(--Blue-950);
}
.form-check p{
    margin-bottom: 3rem;
    color: var(--Grey-500);
}
.form-check .all {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.form-check .all .check{
    padding: 10px;
    border: 2px solid var(--Blue-950);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-check .all .check:hover{
    background: var(--Blue-100);
}
.form-check .all .check div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}
.form-check .all .check div .txt{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.form-check .all .check div .txt p{
    margin-bottom: 6px;
    color: var(--Grey-500);
}
.form-check .all .check div .txt h4{
    color:var(--Blue-950);
}
.check h4{
    color: var(--Purple-600);
}
.next{
    background: var(--Blue-950);
    color: var(--White);
    outline: none;
    border: none;
    border-radius: 0.5rem;
    padding: 5px 10px;
    font-size: 20px;
    position: absolute;
    right:50px;
    margin-top: 4rem;
    cursor: pointer;
    bottom: -45px;       
}

/*4444444444444444444444444444444*/








/*responsive*/
@media (max-width:475px) {
    .container .img{
        background-image: url(images/bg-sidebar-mobile.svg);
        width: 100%;
        flex-direction: row;
        background-repeat: no-repeat;
        width: 375px;
        height: 172px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .container .img .box a{
        width: 20px;
        height: 20px;
        padding: 10px;
    }
    .container{
        flex-wrap: wrap;
        width: 100%;
        margin:auto;
        padding: 0;
        background: var(--Blue-300);
    }
    .box .text{
        display: none;
    }
    .form,
    .form-cards,
    .form-check,
    .finish{
        width: 330px;
        margin: 0 auto;
        background: var(--White);
        border: 2px solid #000;
        padding: 10px;;margin:-50px 0 0px 15px;
        align-items: center;
        border-radius: 0.5rem;
    }
    body{
        background: var(--Blue-300);
    }
    .btn,.btns{
        padding: 5px;
        font-size: medium;
        /* bottom: -45px; */
    }
    .cards{
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        width: 100%;
    }
    .card{
        width: 100%;
        margin: 0 auto;
        display: flex;
        column-gap: 1rem;
        align-items: center;
        /* justify-content: space-between; */
    }
    .btns{
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .phone{
        margin-bottom: 20px;
    }
    .next{
        background: var(--Blue-950);
        color: var(--White);
        outline: none;
        border: none;
        border-radius: 0.5rem;
        padding: 5px 10px;
        font-size: 20px;
        position: absolute;
        right:50px;
        margin-top: 4rem;
        cursor: pointer;
        bottom: -45px;       
    }
}