body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
}

.section {
    justify-content: center;
    display: flex;
    margin: 0 auto;
    align-items: start;
    flex-direction: column;
    padding: 75px 50px;
    max-width: 640px;
}

.instagram {
    background: url(./img/inst.png);
    display: block;
    width: 60px;
    height: 60px;
    background-size: cover;
    position: relative;
    margin: 40px 0 0 0;
}

.instagram > span {
    position: absolute;
    bottom: 20px;
    left: 70px;
    color: #000000;
    font-size: 25px;
    font-weight: 600;
}

#main {

}

.info {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.center {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.tel-icon {
    background-image: url("./img/phone.svg");
    width: 60px;
    height: 60px;
    margin-right: 35px;
    background-repeat: no-repeat;
}

p {
    margin: 20px 0;
}

.location-icon {
    background-image: url("./img/location.svg");
    width: 60px;
    height: 60px;
    margin-right: 35px;
    background-repeat: no-repeat;
}

.tel, .location {
    color: #000;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
}

#main > h1 {
    color: #000000;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

#main > h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.55;
}

#services, #about-me, #reviews {
    background-color: #fbf7eb;
}

.section > h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
}

.section h3 {
    font-size: 22px;
    line-height: 1.50;
    margin-bottom: 50px;
}

.service {
    margin-bottom: 40px;
    min-width: 100%;
}

li {
    list-style: disc;
    margin: 10px 0 10px 15px;
}

.service__line {
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    margin: 0 0 10px 0;
}

#services h4, #services .price {
    text-transform: uppercase;
    font-weight: 700;
}

.price {
    display: none;
}

#faq, #reviews {
    display: none;
}

.circle {
    width: 150px;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
    border: 2px solid #dddddd59;
    flex: 0 0 auto;
    height: 150px;
    display: block;
    margin-right: 20px;
}

.description {
    display: flex;
    margin-bottom: 20px;
}

.circle img {
    width: 150px;
}

@media screen and (max-width:  480px) {
    #main > h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    #main > h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .info {
        margin: 15px 0;
    }

    .tel-icon, .location-icon {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }

    .tel, .location {
        font-size: 20px;
    }

    .section {
        padding: 25px;
    }

    .section > h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section h3 {
        line-height: 1.3;
    }

    .description {
        display: block;
        margin-bottom: 0;
    }

    .circle {
        margin: 25px auto 25px;
    }

    .section h3 {
        margin-bottom: 20px;
    }
}