@font-face {
    font-family: 'Chalkduster';
    src: url('fonts/Chalkduster.woff2') format('woff2'),
    url('fonts/Chalkduster.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.special-spot {
    display: flex;
    flex-flow: row;
    width: 100%;
}

.special-spot .left {
    max-width: 100%;
}

.special-spot .right {
    max-width: 100%;
}

.special-spot img {
    height: 100px;
    width: auto;
}

.special-spot .text {
    color: #123c2e;
    text-align: center;
    font-size: 2.6em;
    font-family: 'Chalkduster', 'Playfair Display', serif;
    flex: 1 1 0;
}

@media screen and (max-width: 1190px) and (min-width: 942px) {
    .special-spot .text {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 941px) and (min-width: 781px) {
    .special-spot .text {
        font-size: 1.0em;
    }
}

@media screen and (max-width: 780px) {
    .special-spot {
        flex-flow: row;
        flex-wrap: wrap;
    }

    .special-spot .left, .special-spot .right {
        flex: 1;
        order: 1;
        width: 50%;
        text-align: center;
    }

    .special-spot .text {
        margin-top: 16px;
        order: 2;
        font-size: 1.4em;
        width: 100%;
        flex-basis: 100%;
    }

    .special-spot img {
        padding-top: 10px;
    }
}