.gmkteasers-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 74px;
}

.gmkteasers-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.gmkteasers-header .btn-primary {
    border-bottom: 0;
}

.gmkteasers-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 35px 0;
}

.gmkteasers-single.col-33 {
    flex: 0 1 calc(100% / 3 - 17.5px);
    max-width: calc(100% / 3 - 17.5px);
    position: relative;
}

.gmkteasers-single-overlay {
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
    width: 100%;
}

.gmkteasers-single-overlay.dark {
    background: linear-gradient(#0a1b3e 0%, rgba(6, 26, 65, 0) 50%, #0a1b3e 100%);
    opacity: 1;
}

.gmkteasers-single-overlay.bright {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(76,123,179,1) 100%);
    opacity: 0;
}

.gmkteasers-single h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: initial;
    text-transform: none;
    text-rendering: geometricPrecision;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.gmkteasers-single img {
    aspect-ratio: 1;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.gmkteasers-single-content {
    bottom: 0;
    padding: 30px;
    position: absolute;
    width: 100%;
}

.gmkteasers-single a .caption {
    display: none;
}

.gmkteasers-single a figure,
.gmkteasers-single a picture {
    height: 100%;
    width: 100%;
}

.gmkteasers-single-description {
    display: none;
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    -ms-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.gmkteasers-single-description p {
    font-family: 'Open Sans';
    font-size: 14px;
}

.gmkteasers-single:hover .gmkteasers-single-overlay.dark {
    opacity: 0;
}

.gmkteasers-single:hover .gmkteasers-single-overlay.bright {
    opacity: 1;
}

.gmkteasers-single:hover .gmkteasers-single-content h3 {
    color: #061A41;
}

.gmkteasers-single:hover .gmkteasers-single-description {
    display: block;
    opacity: 1;
}

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

    .gmkteasers-single.col-33 {

        flex: 0 1 calc(100% / 2 - 17.5px);
        max-width: calc(100% / 2 - 17.5px);

    }

}

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

    .gmkteasers-header,
    .gmkteasers-wrap {
        padding: 0!important;
    }

    .gmkteasers-inner {
        padding: 30px;
    }

    .gmkteasers-header {
        display: grid;
    }

    .gmkteasers-header .btn-primary {
        justify-self: flex-end;
    }

    .gmkteasers-wrap {
        flex-direction: column;
        margin-top: 15px;
    }

    .gmkteasers-single.col-33 {
        flex: initial;
        max-width: 100%;
    }

}
