*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.main{
    height: 100vh;
    width: 100vw;
    /* border: 3px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}
.content{
    height: 80%;
    width: 85%;
    /* border: 3px solid green; */
    background-color: white;
    display: flex;
}
.part-1{
    height: 100%;
    width: 60%;
    /* border: 3px solid blue; */
    padding:50px 80px 50px 80px;
}
.a1{
    height: 10%;
    width: 30%;
    /* border: 3px solid green; */
    display: flex;
}
.icon{
    height: 100%;
    width: 30%;
    /* border: 3px solid red; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.part-2{
    height: 100%;
    width: 40%;
    /* border: 3px solid blue; */
    background-image: url(Perfocal_17-11-2019_TYWFAQ_100_standard-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.a2{
    height: 40%;
    width: 80%;
    margin-top: 60px;
    font-size: 40px;
    text-align: justify;
    /* border: 3px solid red; */
}
.a2>span:nth-child(1)
{
    color:brown;
}
.a3{
    height: 15%;
    width: 80%;
    margin-top: 10px;
    /* border: 3px solid green; */
}
.text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid tomato;   
    border-radius: 50px;
    /* padding:10px; */
    height: 10%;
    width: 300px; 
}
.text1{
    /* border: 2px solid red; */
    height: auto;
    width: 80%;
    padding: 10px;
}
.text2{
    /* border: 2px solid green; */
    width: 20%;
    height: 100%;
    border-radius: 50px;
    border:none;
    outline: none;
}
.text2 button{
   height: 100%;
   width: 100%;
   border:none;
    outline: none;
   border-radius: 50px; 
   background-color: tomato;
   color: white;
}
.text input{
    border:none;
    outline: none;
    width: 80%;
}


