.contacts-section {
    h2 {
        font-size: 23px;
    }
    .contacts-area {
        padding-left: 0px;
        list-style: none;
        .contact-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #E4E7EC;
            padding-bottom: 20px;
            .contact-item-name {
                font-weight: 600;
            }
            .contact-item-value {
                a {
                    font-weight: 400;
                    text-decoration: underline;
                    color: black;
                }
                
            }
        }
    }
    .read-more-items-holder {
        height: 0px;
        overflow: hidden;
        transition: all 0.5s;
    }
    #click-read-more {
        cursor: pointer;
    }
    .read-more-area {
        display: block;
        .read-more-text {
            font-weight: 600;
            display: inline-block;
            margin-right: 10px;
        }
        .read-more-carret {
            svg {
                margin-bottom: -4px;
                path {
                    fill: var(--wp--preset--color--base)!important;
                }
            }
        }
    }
    #click-read-less {
        cursor: pointer;
    }
    .read-less-area {
        display: none;
        .read-less-text {
            font-weight: 600;
            display: inline-block;
            margin-right: 10px;
        }
        .read-less-carret {
            svg {
                transform: rotate(180deg);
                margin-bottom: -4px;
                path {
                    fill: var(--wp--preset--color--base)!important;
                }
            }
        }
    }

}
