*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* section-2 */
.work{
    display: flex;
    margin-top: 2%;
    padding: 3%;
}
  
.work .contain{
    display: grid;
    padding: 5%;
    background: transparent;
    box-shadow: 0px 4px 6px rgba(26, 26, 26, 0.43);
    border-radius: 15px;
    font-weight: bold;
}

.work img{
    width: 20%;
}

.work span{
    color: rgba(74, 74, 74, 0.797);
}

/* contact */
.contact{
    padding: 3%;
}

.contact hr{
    width: 21%;
    border: 1px solid rgba(229, 97, 21, 0.928);
}

.contact label{
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-left: 10px;
}

.contact form{
    display: grid;
    padding: 6%;
    background: transparent;
    box-shadow: 0px 2px 6px rgba(26, 26, 26, 0.43);
    border-radius: 15px;
}

.contact form button{
    transition: 0.5s all;
    justify-self: center;
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgb(255, 119, 0);
    color: white;
    font-weight: bold;
    border: none;
    padding: 8px 13% 8px 13%;
    border-radius: 10px;
}
.contact form button:hover{
    background: rgb(255, 150, 0);
    filter: drop-shadow(0px 4px 6px rgba(243, 115, 3, 0.473));
}

.question{
    padding: 6%;
}

.question .popular{
    display: grid;
    margin-top: 30px;
    padding: 1%;
}

.question .popular .q{
    background: transparent;
    margin-top: 20px;
    padding: 5%;
    border-radius: 15px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.557);
}

.question .popular h4{
    color: rgb(255, 119, 0);
    margin-top: 10px;
    margin-bottom: 25px;
}

.question .popular p{
    text-align: center;
    color: rgba(74, 74, 74, 0.797);
}