.bookmark_link {
    position: relative;
    display: inline-block;
    margin-left: -20px;
    padding: 10px;
    background-color: #00A8BC;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.bookmark_link:after {
    position: absolute;
    top: 0;
    right: -22px;
    content: '';
    height: 0;
    width: 0;
    border-left: 22px solid #00A8BC;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

#customer_reivew_row {
    background-color: #006979;
    -webkit-box-shadow: inset 0 0 120px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 120px 10px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 120px 10px rgba(0, 0, 0, 0.3);
}

.home_card {
    margin: 0;
    height: 100%;
    width:100%;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.home_slide {
    width: 100vw;
    height: 40vw;
    object-fit: cover;
}

#home_popup {
    display: block;
    width: 400px;
    z-index: 1;
    height: auto;
    padding: 0.5em;
    margin-right: 10px;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo_container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 10%;
    margin: 20px;
    padding: 10px;
    display: inline-block;
    background: white;
}
.logo_container:after {
    content: attr(content);
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.logo_container:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 25px rgb(150, 150, 150);
}
.logo_img {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.logo_container:hover > .logo_img {
    opacity: 0.3;
}
.logo_container:hover:after {
    opacity: 1;
}

#news_ticker_row {
    background-color: darkcyan;
}
#news_ticker {
    height: 45px;
    padding: 10px 20px;
}
#news_ticker_label {
    color: white;
    height: 100%;
    width: 100px;
    border-right: thin solid white;
}
#news_ticker_content {
    height: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
#news_ticker_content_list {
    margin: 0;
}
.news_ticker_content_list_item {
    display: inline;
    position: relative;
    padding: 0 10px;
    border-left: 2px solid white;
}

.quote_img {
    width: 100%;
}

#right_quote_img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

#reviewer:before {
    display: inline-block;
    content: '';
    width: 100px;
    border-top: thin solid white;
    margin: 0 1rem 9px 0;
}

@media screen and (max-width: 991px) {
    .logo_container {
        padding: 3px;
        margin: 6px;
        width: 80px;
        height: 80px;
        border-radius: 10%;
    }
    .logo_container:hover {
        box-shadow: 0 0 5px rgb(150, 150, 150);
    }
}

@media screen and (max-width: 575px) {
    #home_popup {
        display: none;
    }

    .quote_img {
        max-width: 50px;
    }
}

