:root {
    --primaryColor: #484646;
    --redColor: #A82B2D;
    --greyColor: #837F7F;
    --darkGreyColor: #241c51;
    --whiteColor: #ffffff;
    --brownColor: #d86001;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-weight: 500;
    overflow-x: hidden;
    color: var(--primaryColor);
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
a {
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.services {
    margin: 0;
    padding: 0;
    list-style: disc;
}
h1 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    line-height: normal;
}
p {
    margin: 0;
}
address {
    font-style: normal;
}

@media (min-width: 767px) {
    .business__card {
        width: 375px;
        margin: 2rem auto;
        display: flex;
        border: 1px solid var(--greyColor);
    }
}
.logo img {
    width: 150px;
}
.business__card {
    display: flex;
}
.business__card__share {
    background-color: var(--brownColor);
    border-left: 5px solid var(--darkGreyColor);
    padding: 20px;
}
.business__card__share ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.business__card__share ul li:not(:last-child) {
    margin-bottom: 40px;
}
.business__card__share ul li a {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 2px solid var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
}
.business__card__share ul li svg {
    width: 24px;
    height: 24px;
}
.business__card__share ul li svg path {
    fill: var(--whiteColor);
}

.business__card__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.business__card__details {
    padding: 50px 20px;
    text-align: center;
}
.business__card__name,
.business__card__products,
.business__card__address {
    margin-top: 15px;
}
.business__card__name h4 {
    margin: 5px 0 3px;
}
.business__card__des {
    display: none;
}
.business__description__item {
    border-top: 1px solid #CECBC5;
    padding: 15px 25px;
}
.business__card__description .link {
    color: var(--primaryColor);
}
.business__card__description .link svg {
    margin-right: 5px;
}
.business__card__des {
    margin-top: 15px;
}
@media (max-width: 767px) {
    .business__card { height: 100vh; }
    .business__card__share {
        position: fixed;
        width: 105px;
        top: 0;
        right: 0;
        height: 100%;
    }
    .business__card__main {
        width: calc(100% - 105px);
    }
    .business__card__details {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: calc(100% - 120px);
    }
    .business__card__share ul li:not(:last-child) {
        margin-bottom: 30px;
    }
    .business__card__share ul {
        overflow: auto;
    }
    .business__card__share ul li a {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    .business__card__share ul li svg {
        width: 22px;
        height: 22px;
    }
    .business__card__description {
        position: fixed;
        bottom: 0;
        left: 0;
        width: calc(100% - 105px);
        height: 54px;
        overflow: hidden;
        background-color: #ffffff;
    }
    .business__card__description.open {
        height: 100%;
    }
}