/********************** Typo ************************* *
 *  1. Fonts
 *  2. General
 *  3. Headlines
 *  4. Content Elements
*****************************************************/

/********************* 1. Fonts *********************/

@font-face {
    font-family: 'Impact';
    src: url('../../fonts/Impact.woff2') format('woff2'),
        url('../../fonts/Impact.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../../fonts/DMSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../../fonts/DMSans-Italic.woff2') format('woff2'),
        url('../../fonts/DMSans-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../../fonts/DMSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/******************** 2. General ********************/

a {}
a:hover,
a:focus {
    color: #DA3C57;
    text-decoration: none;
}
strong {
    font-weight: 700;
}

/******************** 3. Headline ********************/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact';
    text-transform: uppercase;
    letter-spacing: 0.75pt;
    font-weight: 400;
    line-height: 1;
}
h1 {
    font-size: 56px;
    margin: 0 0 40px;
    line-height: 0.85;
}
h1.smaller-h1 {
    font-size: 40px;
}
h2,
.uk-light h2 {
    font-size: 20px;
    color: #B0D8C9;
    margin: 0 0 10px;
}
h2.title-blue,
#main h2.title-blue {
    color: #7CBCC1;
}
h3 {
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
h5 {}

/**************** 4. Content Elements ****************/

.uk-link,
.uk-light .uk-link {
    font-size: 15px;
    color: #577BA4;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.uk-light .uk-link {
    color: #B0D8C9;
}
.uk-link:hover {
    color: #DA3C57;
    text-decoration: none;
}
.uk-link::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 130%;
    height: 3px;
    background: #B0D8C9;
    background: #577BA4;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.uk-link:hover::after {
    width: 50%;
    background: #DA3C57;
}
.uk-light .uk-link::after {
    background: #B0D8C9;
}
.uk-light .uk-link:hover::after {
    background: #fff;
}