* {
    box-sizing: border-box;
}
.row {
    display: -ms-flexbox;
   /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap;
   /* IE 10 */
    flex-wrap: wrap;
    padding: 0 4px;
}
/* Create two equal columns that sits next to each other */
.column {
    -ms-flex: 14.2%;
   /* IE 10 */
    flex: 14.2%;
    padding: 0 4px;
}
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
   }
}
.column img {
    margin-top: 8px;
    vertical-align: middle;
}
.font-bold {
    font-weight: 900;
}
.font-semi-bold {
    font-weight: 700;
}
.font-regular {
    font-weight: 400;
}
.font-light {
    font-weight: 200;
}
.text-gray {
    color:rgb(17 24 39);
}
.text-white {
    color: white;
}
.text-lime {
    color:rgb(209 255 25);
}
.text-pink {
    color:rgb(255 36 125);
}
body {
    background-color: rgba(230, 230, 230, 255);
}
#navbar {
    width: 100%;
    background-color: #212121;
    position: fixed;
    z-index: 10;
    top: 0;
}
#navbar i {
    padding-right: 10px;
}
#navbar p {
    color: white;
    float: right;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
#navbar p:hover
{
    cursor: pointer;
    background-color: #ED254E;
}
#footer {
    margin-top: 80px;
    width: 100%;
    background-color: #212121;
    bottom: 0;
    z-index: 10;
}
#footer nav {
    padding: 100px;
    text-align: center;
}
#footer nav a {
    padding: 10px;
    color: white;
}
#footer nav p {
    margin-top: 10px;
    padding: 10px;
    color: white;
}
#footer nav a:hover {
    color: #ED254E;
}

#sold-homes-caption {
    font-style: italic;
    font-size: 1.2em;
    position: relative;
    right: 0;
    padding-top: 20px;
    font-weight: 500;
}
.inter {
    font-family: 'Inter', sans-serif;
}
.small-font {
    font-size: 0.9em;
}
.centered80 {
    width: 80%;
    margin: 0 auto;
}
#about-wrapper {
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    justify-content: center;
}
#about-photo {
    background-image: url("images/portrait/2.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 270px;
    height: 350px;
}
#about-text {
    display: flex;
    align-items: center;
    background-color: white;
}
#about-inner-text {
    padding: 20px;
}
#about-inner-text h2 {
    font-size: 20px;
}
#about-inner-text h3 {
    padding-top: 10px;
}
#about-inner-text p {
    padding-bottom: 20px;
    padding-top: 10px;
    max-width: 700px;
}
.reviews-wrapper {
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
}
.reviews-box {
    border-radius: 2px;
    box-shadow: 0 15px 30px 1px rgba(69, 69, 69, 0.3);
    margin: 0;
    width: 100%;
    transition: all .1s ease-in-out;
}
.reviews-box:hover {
    transform: scale(1.02);
}
.reviews-inner {
    padding: 10px;
    background-color: white;
}
.reviews-inner p {
    display: inline;
    width: 80%;
}
.reviews-inner h2 {
    padding-top: 20px;
    font-size: 15px;
}
#reviews-section {
    padding-top: 50px;
}
.big-quote {
    padding: 5px;
    font-size: 20px;
    display: inline;
}
.review-stars {
    padding-bottom: 20px;
}
.image-container {
    position: relative;
}
.image-container p {
    font-style: italic;
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1px;
    bottom: 3px;
    right: 3px;
}
.image-container h5 {
    font-size: 1.3em;
    transform: rotate(-45deg);
    position: absolute;
    background-color: #ED254E;
    color: white;
    padding: 1px;
    top: 20px;
    left: 5px;
}
@media only screen and (max-width: 800px) {
    .centered80 {
        width: 90%;
        margin: 0 auto;
   }
    .reviews-wrapper {
        width: 100%;
   }
    .hidden-on-mobile {
        display: none;
   }
}
#awards-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#awards-parent {
    margin: auto;
    display: block;
}
#awards-parent-two {
    display: flex;
    align-items: center;
    justify-content: center;
}
#awards-parent img {
    max-width: 25%;
    padding: 5px;
    transition: all .1s ease-in-out;
}
#awards-parent img:hover {
    transform: scale(1.02);
}
@media only screen and (max-width: 800px) {
    #awards-parent img {
        max-width: 100%;
   }
}
