.enews-flyout {
    margin-bottom: 30px;
    position: fixed;
    top: 175px;
    left: 50%;
    z-index: 12;
    animation: flyin 1.5s ease-in-out forwards;
    width: 100%;
}

.enews-flyout.hide {
    display: none;
}

.enews-flyout .slides {
    padding: 0 15px;
}

.enews-flyout .inner {
    padding: 0;
    border: 2px solid #008c98;
    min-width: 375px;
    max-width: 550px;
    background-color: #fff;
    position: relative;
}

.enews-flyout .logo-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #008c98;
    margin: 28px 0;
    width: 100%;
    justify-content: flex-start;
    position: relative;
    padding: 0 10px;
}

.enews-flyout .logo-cont {
    flex: 1 0 20%;
    position: absolute;
}

.enews-flyout .logo-bar h2 {
    flex: 1 0 80%;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.08em;
    padding-left: 110px;
    line-height: 1em;
    display: flex;
    flex-wrap: wrap;
}

.enews-flyout .logo-bar h2 > * {
    display: inline;
}

.enews-flyout .logo-bar h2 .logo-skinny-text {
    margin: 0;
    padding: 0;
    font-weight: 200;
}

.enews-flyout .img-cont {
    display: none;
    padding-bottom: calc(100% * 415 / 260);
    height: 0;
    background-color: #333;
    position: relative;
}

.enews-flyout .content-section {
    padding: 5px 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    /* position: relative; */
}

.enews-flyout .close-flyout {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 14px;
    color: #008c98;
    height:  20px;
    width: 20px;
    padding: 1px;
    background: #fff;
    border: 1px solid #008c98;
    z-index: 9;
}

.enews-flyout .close-flyout:hover {
    cursor: pointer;
}

.enews-flyout h4 {
    color: #008c98;
    font-family: sans-serif;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.enews-flyout p {
    margin-bottom: 30px;
    font-family: futura-pt, sans-serif;
    font-size: 12px;
    color: #000;
    line-height: 1.5em;
}

.enews-flyout .more-caption {
    border: 1px solid #008c98;
    padding: 7px 10px;
    background-color: #fff;
    display: inline-block;
    max-width: fit-content;
    box-shadow: 0px 0px 0px transparent;
    transition: box-shadow .4s ease;
}

.enews-flyout .more-caption-text {
    display: inline-block;
    background-color: #fff;
    color: #008c98;
    transform: translateX(23px);
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    line-height: 1.2em;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.enews-flyout .more-caption:hover {
    box-shadow: 2px 4px 12px #008c98;
    transition: box-shadow .4s ease;
}

.enews-flyout .more-caption:hover .more-caption-text {
    box-shadow: 2px 4px 12px #fff;
}

.mfp-content {
    height: 90%;
}

@media (min-width: 33em) {
    .enews-flyout .inner {
        display: grid;
        grid-template-columns: 1fr .65fr;
        position: relative;
        margin: 0 auto;
    }

    .enews-flyout .logo-bar {
        position: absolute;
        z-index: 2;
        margin: 30px 0;
    }

    .enews-flyout .logo-bar h2 {
        font-size: 36px;
        padding-left: 130px;
    }

    .enews-flyout .img-cont {
        display: inline-block;
        order: 1;
        padding-bottom: calc(100% * 396 / 194);
    }

    .enews-flyout .img-cont img {
        display: block;
        width: 100%;
        object-fit: cover;
    }

    .enews-flyout .content-section {
        padding: 115px 34px 25px;
    }

    .enews-flyout p {
        font-size: 14px;
    }
}

@media (min-width: 40em) {
    .enews-flyout .img-cont {
        padding-bottom: calc(100% * 375 / 215);
    }
}

@keyframes flyin {
    to {
        filter: blur(0);
        transform: translateX(calc(-50% - 15px));
    }
}