.contacts__title{
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: left;

    color: #121313;

    margin-top: 60px;
}


.navpage__container{
    padding-left: 0;
    padding-right: 0;
}

.contacts__container{
    display: flex;
}

.contacts__left{
    padding-left: 40px;
}

.contacts__side{
    width: 50%;

    padding-bottom: 120px;
}

.contacts__cols{
    margin-top: 60px;

    display: flex;
}

.contacts__cols .contacts__col:last-child{
    margin-left: 60px;
}

.contacts__col-title{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;

    color: #BEBEBE;
}

.contacts__group{
    display: flex;
    align-items: center;

    padding-bottom: 10px;

    border-bottom: 1px solid  #121313;
}

.contacts__group-text{
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
}

.contacts__group-icon{
    margin-right: 14px;
}

.contacts__group-icon--time{
    margin-right: 10px;
}

.contacts__col-links{
    margin-top: 21px;

    display: flex;
}

.contacts__col-link-circle{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: #F2F3F4;

    border-radius: 50%;

    margin-right: 10px;
}

.contacts__col-link-circle--last{
    margin-right: 0;
}

.contacts__group-text--adress{
    margin-top: 14px;
}

.contacts__group{
    margin-top: 22px;
}

.contacts__group:not(.contacts__group:first-child){
    margin-top: 19px;
}


/* .contacts__right */


.contacts__right{
    background: #F2F3F4;

    padding-left: 40px;
    padding-right: 40px;
}

.contacts__right-title{

    margin-top: 111px;

    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: left;
}

.contacts__form{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.contacts__form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 24px;
}



.contacts__form-input{
    padding: 18px 21px 19px 21px;
    color: #121313;

    border: 1px solid #121313;

    font-family: "Inter";

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    border-radius: 3px;

    background-color: #F2F3F4;
}

.contacts__form-input::placeholder{
    color: #AFAFAF;
}

.contacts__form-row{
    margin-bottom: 24px;
}

.contacts__form-submit{
    padding-top: 18px;
    padding-bottom: 19px;

    font-family: "Inter";
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: center;

    background-color: #121313;

    border: 1px solid #121313;

    transition: .3s linear;

    color: #FFFFFF;

    margin-top: 24px;

    cursor: pointer;
}

.contacts__form-submit:hover{
    background-color: #fff;

    color: #121313;
}

.contacts__text{
    margin-top: 81px;

    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;

    color: #121313;
}

.contacts__row{
    display: flex;
    align-items: center;

    margin-top: 25px;
}

.contacts__row-text{
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;

    color: #121313;

    margin-left: 14px;

    text-decoration: underline;
}

@media screen and (max-width: 1280px){
    .contacts__container{
        flex-direction: column;
    }

    .contacts__side{
        width: 100%;
    }

    .contacts__left{
        padding-bottom: 40px;
    }

    .contacts__right-title{
        margin-top: 40px;
    }

    .contacts__cols .contacts__col:last-child{
        margin-left: 200px;
    }
}

@media screen and (max-width: 800px){
    .contacts__cols .contacts__col:last-child{
        margin-left: 60px;
    }

    .contacts__left{
        padding-left: 20px;
    }

    .contacts__right{
        padding-left: 20px;
        padding-right: 20px;

        padding-bottom: 40px;
    }
}

@media screen and (max-width: 650px){

    .contacts__title{
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

    }

    .contacts__cols{
        flex-direction: column;

        margin-top: 40px;
    }

    .contacts__group:not(.contacts__group:first-child){
        margin-top: 14px;
    }

    .contacts__group{
        max-width: max-content;
    }

    .contacts__group-text{
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: left;
    }

    .contacts__group-text br{
        display: none;
    }

    .contacts__group-icon{
        max-width: 8px;
    }

    .contacts__group-icon--time{
        max-width: 14px;
    }

    .contacts__cols .contacts__col:last-child{
        margin-left: 0;
        margin-top: 40px;
    }

    .contacts__col-title{
        font-size: 12px;
        font-weight: 500;
        line-height: 14.52px;
        text-align: left;
    }

    .contacts__group{
        padding-bottom: 14px;
    }

    .contacts__group-text--adress{
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }

    .contacts__right-title{
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .contacts__form{
        margin-top: 40px;
    }

    .contacts__form-row{
        grid-template-columns: 1fr ;
        row-gap: 14px;

        margin-bottom: 14px;
    }

    .contacts__form-input{
        padding: 14px;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
    }

    .contacts__form-submit{
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        padding-top: 14px;
        padding-bottom: 14px;
    }

    .contacts__text{
        margin-top: 60px;

        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }

    .contacts__row{
        margin-top: 20px;
    }

    .contacts__row img{
        max-width: 20px;
    }

    .contacts__row-text{
        margin-left: 14px;

        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

    }
}

