body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Franklin Gothic Medium", Tahoma, sans-serif;
    background-color: #eff3f5;
}

.btn {
    border: 0;
    border-radius: 4px;
}

.btn:hover {
    cursor: pointer;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
}

.btn i {
    margin-right: 10px;
}

.top-banner {
    display: flex;
    width: 100%;
    background-color: #eff3f5;
}

.top-banner .logo-block {
    flex-grow: 1;
    padding: 10px;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-weight: bold;
    color: #000;
}

.top-banner .button-block {
    padding: 30px;
}

.top-banner .button-block .btn {
    padding: 15px;
    font-size: 20px;
    background-color: #026540;
    color: #fff;
    font-weight: 900;
    border: 0;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
}

.top-banner .button-block .btn:hover {
    background-color: #004e31 !important;
}

.logo-text {
    display: inline-block;
}

.logo-block img {
    float: left;
    height: 100px;
    margin-right: 20px;
}

.logo-block h1 {
    font-size: 25px;
    display: inline-block;
    padding: 10px 3px;
    margin: 0;
    border-bottom: 2px solid #000;
}
.logo-block h2 {
    font-size: 20px;
    display: block;
    padding: 10px 0;
    margin: 0;
}

.hero {
    display: flex;
    background-color: #1e5399;
}

.hero-text {
    flex-grow: 1;
    font-family: "Roboto", "Franklin Gothic Medium", Tahoma, sans-serif;
    color: #fff;
    padding: 100px;
}

.hero-text .service-intro {
    font-size: 36px;
    font-weight: 500;
    margin-top: 0;
}

.hero-text .service-title {
    font-size: 70px;
    font-weight: 900;
}

.hero-image {
    width: 40%;
    background-image: url("../images/drinkingtea.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.interact-buttons {
    padding: 0 100px;
    position: relative;
    top: -25px;
}

.interact-buttons .btn {
    padding: 15px;
    font-size: 20px;
    background-color: #fff;
    color: #000;
    font-weight: 900;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
}

.interact-buttons .btn:hover, .interact-buttons .btn-active {
    color: #fff;
    background-color: #143866;
}

.btn-favourite:hover, .btn-favourite.btn-active {
    background-color: #99392E;
}

.cards {
    padding: 20px 100px;
    display: flex;
}

.cards .card {
    flex: 1 1 0px;
    border: 1px solid #eee;
    padding: 0 20px;
    margin: 0 30px 30px 30px;
    border-radius: 4px;
    color: #666;
    font-size: 18px;
    font-weight: 300;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
}

.cards .card h3 {
    color: #000;
    font-size: 22px;
    font-weight: 400;
}

.cards .card .wide-card {
    width: 100%;
}

.ad-unit {
    margin-top: 6px;
    text-align: center;
}

.ad-text {
    font-size: 10px;
    margin-bottom: 6px;
}

.footer {
    display: flex;
    padding: 20px 100px;
}

.footer .footer-logo img {
    height: 50px;
}

.footer .footer-logo {
    padding: 10px 20px;
    border-right: 2px solid #ccc;
}

.footer .footer-text {
    flex-grow: 1;
    padding: 10px 30px 0 30px;
}

.footer .footer-small {
    color: #666;
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    
    .logo-block img {
        display: none
    }
    
    .hero-text {
        padding: 100px 40px;
    }
    
    .hero-image {
        display: none;
    }

    .interact-buttons {
        padding: 0 40px;
    }
    
    .cards {
        padding: 20px 40px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer {
        padding: 20px 40px;
    }
    
}

@media only screen and (max-width: 480px) {

    .hero-text {
        padding: 100px 15px;
    }
    
    .hero-text .service-intro {
        font-size: 22px;
    }

    .hero-text .service-title {
        font-size: 50px;
    }

    .hero-image {
        display: none;
    }

    .interact-buttons {
        padding: 0 15px;
    }

    .btn-favourite .btn-text {
        display: none;
    }

    .btn-favourite i {
        margin-right: 0;
    }

    .cards {
        padding: 20px 0px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .cards .card {
        margin: 0 15px 15px 15px;
    }

    .footer {
        padding: 20px 0px;
    }
}
