.contactinput{
    width: 100%;
}
button.primarybtn{
    width: auto;
    min-height: 65px;
    min-width: 200px;
    padding: 6px;
}
.contacts{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
}
.contac-method{
    text-align: center;
}
.contac-method p{
    text-align: center;
}
.effect{
    position: relative;
}
.effect:before{
    content: '';
    position: absolute;
    top: -12rem;
    z-index: -1;
    left: -10rem;
    background: url(../imgaes/aftereffect.svg) no-repeat center / contain;
    width: 340px;
    height: 300px;
}
.effect:after{
    content: '';
    position: absolute;
    bottom: -22rem;
    z-index: -1;
    left: -10rem;
    background: url(../imgaes/aftereffect.svg) no-repeat center / contain;
    width: 340px;
    height: 300px;
}
@media(max-width: 767px){
    .effect:before, .effect:after{
        display: none;
    }
    body button.primarybtn{
        min-height: 50px;
    }
    body textarea.contactinput{
        margin-bottom: 0;
    }
    .contacts{
        flex-direction: column;
    }
    body footer.footer{
        margin: 0;
    }
    .contact-wrapper{
        background: #efefef;
        padding: 30px 16px;
    }
    .contac-method{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }   
    .contac-method img{
        width: 60px;
    }
    .contac-method p{
        text-align: left;
        margin: 0;
        font-weight: 700;
        font-size: 16px;
    }
}