@import url(https://fonts.googleapis.com/css?family=Merriweather:400,700,900);

h2,
h3 {
    font-family: "Merriweather", sans-serif;
    font-weight: 900;
}

#things-to-do {
    background-image: url("../img/textured_bg_tinted.webp");
    background-position: center;
    background-size: cover;
    background-repeat: repeat-x;
    padding: 80px 0;
}

#things-to-do .section-color-overlay {
    background-color: rgba(38, 35, 35, 0.6);
    mix-blend-mode: multiply;
    padding: 60px;
    border-radius: 10px;
}

#things-to-do h2 {
    font-size: 3em;
    text-align: center;
    color: white;
    font-family: "Merriweather", sans-serif;
    font-weight: 900;
}

#things-to-do h3 {
    font-size: 1.8em;
    color: #fff;
    font-family: "Merriweather", sans-serif;
    margin-bottom: 20px;
}

#things-to-do ul {
    list-style: none;
    padding: 0;
}

#things-to-do ul li {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

#things-to-do ul li a {
    text-decoration: none;
    color: #ffd902;
    font-size: 1.3em;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* Adding text shadow */
}

#things-to-do ul li:hover {
    background: rgba(255, 255, 255, 0.4);
}

#things-to-do ul li a:hover {
    color: #fff;
}

.referred-item-logo {
    height: 100px;
    border-radius: 15px;
    margin-right: 15px;
}

.text-col {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    #things-to-do ul li a {
        font-size: 14px;
    }

    .referred-item-logo {
        margin-right: 0;
    }

    .text-col {
        height: 50px;
    }
}