body {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #696969;
}
.main {
    background: #fff;
    background: linear-gradient(180deg, rgba(227,227,227,1) 0%, rgba(255,255,255,1) 25%);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
    color: #696969;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}
.address {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1;
    font-size: 18px;
}
.phone-number {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 26px;
}
.email-address {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    font-size: 20px;
}
.estendo-bar {
    background: rgb(114,47,90);
    background: linear-gradient(90deg, rgba(114,47,90,1) 0%, rgba(185,39,103,1) 25%, rgba(235,74,65,1) 50%, rgba(246,173,28,1) 75%, rgba(249,221,18,1) 100%);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.estendo-bar div {
    display: flex;
}
.estendo-bar div:not(:first-child) {
    margin-left: 25px;
}
.dr-image {
    border-radius: 50%;
    width: 50%;
    height: 50%;
    max-width: 200px;
    max-height: 200px;
}
.dr-name {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 26px;
    padding-left: 10px;
}
.dr-title {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1;
    font-size: 23px;
    padding-left: 10px;
}
.left-col {
    width: 50%;
    text-align: right;
    padding-right: 25px;
}
.right-col {
    width: 50%;
    padding-left: 25px;
}
.estendo-logo {
    margin: 10px 0;
}
@media (min-width: 600px) and (max-width: 800px) {
    .dr-name {
        font-size: 22px;
    }
    .dr-title {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .main {
        text-align: center;
        display: block;
        margin-top: 0;
    }
    .estendo-bar {
        height: 20vh;
    }
    .dr-image {
        margin: 0 auto;
        padding: 20px 0;
        width: 211px;
        height: 202px;
    }
    .left-col {
        text-align: center;
        width: 100%;
        padding: 0;
    }
    .right-col {
        text-align: center;
        margin-top: 25px;
        width: 100%;
        padding: 0;
    }
    .dr-name {
        padding: 0 10px;
        font-size: 24px;
    }
    .dr-title {
        padding: 0 10px;
        font-size: 20px;
        font-weight: 300;
    }
    .estendo-logo {
        width: 75%;
        margin: 20px auto;
    }
}