@font-face {
    font-family: 'HurmeGeometricSans Regular';
    src: url('fonts/HurmeGeometricSans4-Regular.woff2') format('woff2')
}

@font-face {
    font-family: 'HurmeGeometricSans Semibold';
    src: url('fonts/HurmeGeometricSans4-SemiBold.woff2') format('woff2')
}

*, :before, :after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #001e43;
    font-family: 'HurmeGeometricSans Regular';
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.text-center {
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.close.close1 {
    position: absolute;
    top: 8px;
    right: 16px;
    text-decoration: none;
    height: 30px;
    width: 30px;
}

.close.close1:before, .close.close1:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: gray;
    width: 15px;
    height: 1px;
}

.close.close1:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close.close1:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close.close1:hover::before, .close.close1:hover::after {
    background: #001e43;
}

header {
    background: #001e43;
    padding: 1rem 0;
}

h1, p.lead {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-family: 'HurmeGeometricSans Semibold';
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
    margin-top: 2rem;
    text-transform: uppercase;
    line-height: 1.15;
}

p.lead {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.2;
}

.text-bottom {
    font-family: 'HurmeGeometricSans Semibold';
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.cta-wrapper {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cta-wrapper .cta-single {
    flex-basis: calc(50% - 1rem);
    width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    min-width: calc(50% - 1rem);
    border: 1px solid gray;
    margin: 1rem 0.5rem;
    padding: 1rem;
}

.cta-wrapper .cta-single img {
    display: block;
    margin: 0 auto;
}

.cta-wrapper .cta-single .cta-btn {
    position: relative;
    font-family: 'HurmeGeometricSans Regular';
    text-decoration: none;
    color: #001e43;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    margin-top: 16px;
    padding: 0 1.5em;
    line-height: 2.5;
    height: 2.5em;
    padding-left: 2em;
    padding-right: 2em;
    background-color: transparent;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-wrapper .cta-single .cta-btn:hover {
    background-color: transparent;
    background-position: 0 2px;
}

.cta-wrapper .cta-single .cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    left: 10px;
    height: 100%;
    z-index: -1;
    transform-origin: 50%;
    transform: skewX(-25deg);
    transition: all .3s cubic-bezier(.77,0,.175,1);
    background-color: #fc3;
    background-image: linear-gradient(180deg,#fc3 50%,#ffbf00 0);
    background-size: 4px 4px;
}

.cta-wrapper .cta-single .cta-btn:hover::before {
    transform: skewX(25deg);
}

/* .cta-wrapper .cta-single .cta-btn:hover {
    background: #fff;
    color: #001e43;
} */

@media (max-width: 600px) {
    .logo {
        max-height: 50px;
    }
    header {
        padding: 0.5rem 0;
    }
    h1 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    p.lead {
        font-size: 1rem;
    }
    .text-bottom {
        margin-top: 1rem;
        font-size: 1rem;
    }
    main {
        padding: 0 15px;
    }
    .cta-wrapper .cta-single {
        flex-basis: calc(100% - 1rem);
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
    .cta-wrapper .cta-single img {
        max-height: 45px;
    }
}