.single-prod{
    padding: 4.93rem 0 10px;
}

.single-prod .text.main{
    width: 880px;
    max-width: 100%;
    margin-bottom: 4rem;
}

.single-prod .row{
    grid-gap: 2rem 0;
}

.single-prod .row>*:last-child{
    border-left: 1px solid var(--line);
}

.single-prod .prods{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    grid-gap: 10px;
    max-width: 350px;
}

.single-prod .prods>*{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.16;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.single-prod .prods>*:hover,
.single-prod .prods>*.active{
    color: var(--white);
    font-weight: 700;
    border-color: transparent;
    background: var(--linear);
}

.single-prod .prods>*:hover::before,
.single-prod .prods>*.active::before{
    content: url('data:image/svg+xml;utf8,<svg width="11" height="13" viewBox="0 0 11 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6.50002L0 0.150024V12.85L11 6.50002Z" fill="white"/></svg>');
}

.single-prod .content{
    max-width: 599px;
}

@media(min-width:992px){.single-prod .content{margin-left:auto}}

.single-prod .sectitle{
    margin-bottom: 10px;
}

.single-prod .type{
    width: fit-content;
    color: var(--text);
    font-size: 18px;
    line-height: 1.27;
    border-radius: 5px;
    background-color: #EFEFEF;
    margin-bottom: 3.33rem;
    padding: 8px 10px;
}

.single-prod .type strong{
    color: #0068B3;
    font-weight: 700;
}

.single-prod .items,
.single-prod .items>*{
    display: flex;
    display: -webkit-flex;
    grid-gap: 20px;
}

.single-prod .items{
    flex-direction: column;
    -ms-flex-direction: column;
}

.single-prod .items>*{
    align-items: flex-start;
}

.single-prod .items>* img{
    min-width: 30px;
    max-width: 30px;
    aspect-ratio: 1/1;
    object-fit: contain;
    -o-object-fit: contain;
}

.single-prod .items>* .title,
.single-prod .items>* .text{
    font-size: 19px;
}

.single-prod .items>* .title{
    color: #164596;
    font-weight: 700;
    margin-bottom: 5px;
}

.message .text{
    width: 780px;
    max-width: 100%;
    margin: 0 auto;
}

.contact{
    padding: 70px 0;
}

.contact .box{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 1rem;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    background: url(../../assets/img/contactbg.png) no-repeat center/cover;
    border-radius: 20px;
    padding: 2rem 4rem;
}

.contact .box .title{
    width: 604px;
    max-width: 100%;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.contact .box .dbtn{
    font-family: var(--roboto);
    color: var(--main);
    font-size: 16px;
    background: var(--white);
}

@media(max-width:992px){
    .single-prod,
    .contact{
        padding: 2rem 0;
    }
    .single-prod .text.main{
        width: 100%;
        margin-bottom: 2rem;
    }
    .single-prod .row>*:last-child{
        border: none;
    }
    .single-prod .prods{
        max-width: 100%;
        flex-direction: row;
        -ms-flex-direction: row;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        justify-content: center;
        -webkit-justify-content: center;
    }
    .single-prod .prods>*{
        width: fit-content;
    }
    .single-prod .content{
        max-width: 100%;
    }
    .contact .box{
        padding: 2rem 20px;
    }
}

@media(max-width:475px){
    .single-prod .prods>*{
        width: 100%;
    }
    .single-prod .items>*{
        flex-direction: column;
        -ms-flex-direction: column;
    }
}