:root {
    --white: #FFFFFF;
    --main: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    --liner-bg: linear-gradient(157.73deg, #FFFBFB 0%, #F9CAB8 100%);
    --liner-elements: linear-gradient(157.73deg, #F9CAB8 0%, #FFFBFB 100%);
    --black: #2F2F2F;
    --bg-elements: #FFD1C0;
    --font-main: 'Comfortaa', sans-serif;
    --font-secondary: 'Comfortaa Bold', sans-serif;
    --nav-w: 365px;
    --subnav-w: 300px;
    --bg: #111;
    --bg-2: #181818;
    --txt: rgba(47, 47, 47, 1);
    --muted: #9aa0a6;
    --accent: #FFD56F;
    --overlay: rgba(47, 47, 47, 84%);
    --tr: .25s ease;
    --bg-elements-white: rgba(255, 255, 255, 0.34);
}
.contacts-list{
    margin: 0 auto 70px auto;
    background: var(--bg-elements-white);
    border-radius: 30px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 30px 20px;
}
.contacts-list__item{
    flex: 0 0 auto;
    width: max-content;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.contacts-list__item-content{

font-family: var(--font-main);
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 22px;
color: var(--black);
}
.contacts-list__item.work-time .contacts-list__item-content{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}
.contacts-list__item:hover .contacts-list__item-content, 
.contacts-list__item.work-time .contacts-list__item-content span{
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.contacts-list__item-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--liner-bg);
}
.contacts-list__item-icon img{
    width: 30px;
    height: auto;
}
.contacts-list__item-content{
font-family: var(--font-main);
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 22px;
color: #2F2F2F;
}
@media screen and (max-width: 1200px) {
    .contacts-list{
        justify-content: space-around;
    }
}
@media screen and (max-width: 1024px) {
    .contacts-list{
        padding: 30px 20px;
    }
}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 768px) {
    .contacts-list{
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 560px) {
    .contacts-list{
        padding: 20px 15px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 475px) {
.contacts-list__item-content{
    font-size: 16px;
}
}