main{
    margin: 5% 0 0 12%;
    width: 85%;
    display: flex;
    height: 75vh;
    animation: showContent 1.5s;
}
.info-block{
    width: 45%;
}
.title{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-size: 31px;
    line-height: 33px;

    color: #272B38;
}
.contacts{
    margin-top: 10%;
    margin-bottom: 10%;
}
.contacts img{
    width: 3.5%;
    margin-right: 2.5%;
}
.contacts p{
    margin: 3% 0;
    display: flex;
    align-items: center;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;


    color: #7E8189;
}
.social-networks{
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    padding-right: 30px;
    gap: 10px;
}

.icon-network{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    margin: 0 0.5%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.icon-network.whatsapp{
    background: rgba(37, 211, 102, 1);
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
}

.icon-network.instagram{
    background: #FF49A1;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
}

.icon-network.telegram{
    background: #0088CC;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
}

.icon-network.vk{
    background: #0077FF;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
}

.icon-network.avito{
    background: #FDFDFD;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
}

.icon-network svg , .icon-network img{
    width: 30px;
    height: 30px;
}

.input-block{
    width: 55%;
    height: 100%;
}

.input-block-box{
    width: 85%;
    height: 50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #FFFFFF;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
    border-radius: 10px;
    padding: 3.5% 0;
    font-family: 'Nunito Sans';
}
.input-block-box div{
    width: 85%;
    height: 100%;

}
.input-block-box div p{
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    margin: 2% 0;
    color: #272B38;
}
.input-block-box div input{
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    padding: 8px 14px;
    line-height: 110%;
    margin: 1% 0;
    color: #272B38;
    width: 100%;
    height: 18%;
}
.input-block-box div button{
    background: #FF284C;
    border-radius: 8px;
    width: 100%;
    height: 19%;
    border: none;
    margin-top: 3.5%;
    color: #fff;
    cursor: pointer;
}
@keyframes showContent {
    0% {opacity: 0.5; width: 70%; margin-left: 15%; margin-top: 10%;}
    100% {opacity: 1; width: 85%; margin-left: 12%; margin-top: 5%;}
}
@media only screen and (max-width: 600px) {
    main{
        display: block;
        width: 90%;
        margin: 5% 0 0 5%;
        height: auto;
        animation: none;
    }
    .info-block , .input-block{
        width: 100%;
        margin-bottom: 80px;
    }
    .social-networks{
        width: 100%;
    }
    .icon-network{
        width: 50px;
        height: 50px;
    }
    .icon-network svg{
        width: 51px;
        padding: 3px;
        height: 22px;
    }
    .input-block-box{
        width: 95%;
    }
    .input-block-box div p{
        text-align: center;
    }
    .input-block-box div button{
        height: 35px;
    }
    .contacts, .title{
        margin-left: 7%;
    }
}