* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

/* main style  */
main {

    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/city-night-construction-stockcake.webp);
    background-repeat: no-repeat;

    background-position: center center;
    background-size: 1400px 600px;
    padding: 150px;

}

/* 2 section width  */

/* form style  */
main .data {
    background-color: white;
    height: 600px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    margin-right: 50px;
    position: relative;
    top: -30px;
}

/* h2 style in form  */
main .data h2 {
    margin-bottom: 10px;
    font-weight: bold;
}


/* paragraph style in form  */
main .data p {
    white-space: nowrap;
    margin-bottom: 20px;
    color: #B8BABD;
}

main .data #fullname,
main .data #email,
main .data #phone {
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    padding: 8px;
}

main .data #text {
    width: 100%;
    height: 80px;

}

/* button style  */
main .data .send {
    width: 100px;
    background-color: red;
    height: 40px;
    border-radius: 20px;
    color: white;
    margin-top: 10px;
}

/* start secon section style  */
main .CONTACT span {

    color: red;
    margin-bottom: 20px;
    background-color: transparent;
}


/* H2 OF SECOND section */
main .CONTACT .us {
    color: white;
    margin: 20px;
    font-size: 30px;
    line-height: 35px;

}

/* first paragraph style */
main .CONTACT .reach {
    color: #B7B3B3;
    margin-bottom: 100px;
    text-wrap: wrap;
}

/* last main div */
main .CONTACT .Client {
    display: flex;
    color: rgb(25, 18, 114);
    column-gap: 50px;
}

main .CONTACT .Client .Centric {
    width: 50%;
}

main .CONTACT .Client .left,
main .CONTACT .Client .right {
    position: relative;
}

main .CONTACT .Client .left p,
main .CONTACT .Client .right p {
    font-size: 15px;
    color: #949499;
    line-height: 25px;
    text-wrap: wrap;

}

main .CONTACT .Client .left::before {
    content: "01";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: red;
    text-align: center;
    box-sizing: border-box;
    font-size: 20px;
    padding: 6px;
    top: -70px;
    box-shadow: 3px 3px 3px 4px red;
}

main .CONTACT .Client .right::before {
    content: "02";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: red;
    text-align: center;
    box-sizing: border-box;
    font-size: 20px;
    padding: 8px;
    top: -70px;
    box-shadow: 3px 3px 3px 4px red;
}