    body {
        background-image: url('../images/main2.png');
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
    }
    
    header {
        padding: 30px;
    }
    
    header>div {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    header>div img {
        width: 122px;
        height: 120px;
    }
    
    header>div .steps {
        display: flex;
        align-items: center;
        width: 60%;
        justify-content: space-around;
    }
    
    header>div .steps span {
        width: 34px;
        height: 34px;
        display: inline-block;
        border-radius: 50%;
        text-align: center;
        line-height: 34px;
        background: #DEE0E4;
        color: #FFFFFF;
        font: normal normal bold 20px/34px Poppins;
    }
    
    header>div .steps label {
        font-size: 20px;
        padding-bottom: 3px;
        color: #DEE0E4;
        font: normal normal 600 20px/30px Poppins;
    }
    
    header>div .steps .active span {
        background: #1B4D96;
    }
    
    header>div .steps .active label {
        color: #1B4D96;
        border-bottom: 2px solid #1b4d96;
    }
    
    section {
        padding: 10px 30px;
    }
    
    section>div {
        width: 60%;
        margin: auto;
    }
    
    section .p-contant h4 {
        font: normal normal bold 25px/34px poppins;
        letter-spacing: 0px;
        color: #1B4D96;
        text-transform: uppercase;
    }
    
    form .filed label {
        font: normal normal 400 25px/34px poppins;
        letter-spacing: 0px;
        color: #000000;
        text-transform: capitalize;
        display: block;
    }
    
    form .filed select {
        width: 100%;
        height: 53px;
        box-shadow: inset 0px 3px 6px #00000029;
        border: 1px solid #1B4D96;
        border-radius: 12px;
        background: transparent;
        padding: 0px 10px;
        margin-bottom: 15px;
        font-size: 18px;
        color: #1b4d96;
        margin-top: 5px;
    }
    
    .form {
        display: flex;
        justify-content: space-between;
    }
    
    .form .filed {
        flex-grow: 1;
        flex-basis: 0;
        margin-right: 40px;
    }
    
    .btns {
        display: flex;
        justify-content: center;
        margin-top: 60px;
        margin-bottom: 30px;
    }
    
    .btns button {
        width: 144px;
        height: 71px;
        font: normal normal 600 25px/34px poppins;
        color: #1B4D96;
        text-transform: capitalize;
        background: transparent;
        outline: none;
        border-radius: 15px;
        margin-right: 20px;
        border: 1px solid #1B4D96;
    }
    /* .btns button:nth-child(1) {} */
    
    .btns button:nth-child(2) {
        background: #1B4D96;
        color: #fff;
    }
    
    @media (max-width:1300px) {
        header>div .steps span {
            width: 25px;
            height: 25px;
            font: normal normal bold 18px/25px Poppins;
        }
        header>div .steps label {
            font-size: 15px;
        }
        .btns button {
            width: 100px;
            height: 50px;
        }
        .p-contant>img {
            width: 100%;
            object-fit: contain;
        }
        section>div {
            width: 80%;
            margin: auto;
        }
    }
    
    @media(max-width:992px) {
        header>div .steps {
            width: 90%;
        }
    }
    
    @media (max-width:800px) {
        header>div .steps {
            display: none;
        }
    }
    
    @media (max-width:767px) {
        .form {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        section>div {
            width: 90%;
            margin: auto;
        }
    }
    
    @media (max-width:586px) {
        header>div img {
            width: 98px;
            height: 96px;
        }
        header {
            padding: 15px;
        }
        section {
            padding: 10px 15px;
        }
        section>div {
            width: 98%;
            margin: auto;
        }
        .btns {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            margin-bottom: 30px;
        }
    }