.contact-body{
    background: #1896fc;
}

.contact{
    padding-top: 200px;
    padding-bottom: 200px;
    width: 100%;
    background: #3aa6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contac-content{
    width: 80%;
    background: #fff;
    border-radius: 6px;
    padding: 30px 60px 40px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contac-content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.contac-content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}
.contac-content .left-side .details{
    margin: 14px;
    text-align: center;
}
.contac-content .left-side .details i{
    font-size: 35px;
    color: red;
    padding-bottom: 5px;
}
.contac-content .left-side .details img{
    font-size: 20px;
}
.contac-content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
}
.contac-content .left-side .details .text-one,
.contac-content .left-side .details .text-two{
    font-size: 14px;
    color: #75757a;
}
.contac-content .right-side{
    width: 75%;
    margin-left: 75px;
    
}
.contac-content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: red;
}
.contac-content .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
}
.contac-content .right-side .input-box input,
.contac-content .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}
.contac-content .right-side .input-box textarea{
    padding-top: 10px;
}
.contac-content .right-side .message-box{
    min-height: 110px;
}
/*.contac-content .right-side .button{
    display: inline-block;
    margin-top: 6px;
}
.contac-content .right-side .button input[type="button"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: red;
    cursor: pointer;
    transition: all 0.3s ease;
}
.right-side .button input[type="button"]:hover{
    background: rgba(255, 30, 30, 0.945);
}*/
.button{
    position: relative;
    width: 80px;
    height: 30px;
    font-size: 12px;
    background-color: #202233;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: width .5s;
    border-radius: .5s;
}
.button *{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .25s;
}
.icon{
    opacity: 0;
    font-size: 16px;
}
.button:focus{
    width: 30px;
    background-color: #44c08a;
    border-radius: 50%;
}
.button:focus .text{
    opacity: 0;
}
.button:focus .icon{
    opacity: 1;
    transition-delay: .5s;
}
/*                       Responsive                             */

@media (max-width:950px) {
    .contac-content{
        width: 90%;
        padding: 30px 35px 40px 35px;
    }       
}
@media (max-width:820px) {
    .contac-content{
        margin: 40px 0;
        height: 100%;
        flex-direction: column-reverse;
    }
    .contac-content .left-side{
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .contac-content .left-side::before{
        display: none;
    }
    .contac-content .right-side{
        width: 100%;
        margin-left: 0;
    }

}