@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'),
        url('fonts/open-sans-300.woff2') format('woff2'),
        url('fonts/open-sans-300.woff') format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'),
        url('fonts/open-sans-regular.woff2') format('woff2'),
        url('fonts/open-sans-regular.woff') format('woff');
}

:root {
    --container-w: 1140px;
    --ibe-w: 992px;
    --primary-color: #006500;
    --secondary-color: #D5B373;
    --footer-bg: #E6E6E6;
    --footer-color: #757575;
    --text-color: #02100C;

    --airline-primary: #00803e;
}

a,
body,
div,
footer,
h1,
h2,
h3,
header,
html,
img,
span {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
footer,
header,
nav,
section {
    display: block
}

html {
    font-size: 62.5%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000B1E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 992px) {
    
    body {
        align-items: center;
        justify-content: space-between;
    }
    
}

h1,
h2 {
    margin: 1em 0;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.25em;
    color: #000B1E;
}

a {
    color: var(--primary-color);
}


/* Page Header */
.header {
    width: 100%;
    background-color: #fff;
    border-top: 4px solid var(--primary-color);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.header__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    max-width: var(--container-w);
    margin: auto;
    padding: 1em;
}

.header__col-content {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.header__col-content--align-left {
    align-items: flex-start;
}

.header__col-content--inline {
    flex-direction: row;
    gap: 1em;
}

.header__col-content--align-right {
    align-items: flex-start;
}

@media (min-width: 768px) {

    .header__col-content--align-right {
        align-items: flex-end;
    }

}

.logo-primary {
    margin: auto auto;
    max-width: 120px;
    max-height: 75px;
}

.logo-secondary {
    max-width: 208px;
}

.logo-secondary-text {
    font-weight: 700;
    color: var(--airline-primary);
    font-size: 0.8em;
}

.header-url-text {
    font-weight: 700;
    color: var(--airline-primary);
    font-size: 1.25em;
}

.logo-iata,
.logo-atol {
    max-height: 52px;
    width: 100%;
}

.site-url {
    font-weight: 700;
    color: var(--footer-color);
    font-size: 1.1em;
}

.site-tel {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.8em;
}

.site-tel-link {
    color: var(--airline-primary);
}

/* Page Content */
.container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {

    .container {
        min-height: calc(100vh - 175px);
    }

}

.container--align-btm {
    justify-content: flex-end;
}

.container--bg-img {
    background: url(images/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.container--bg-img:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(38, 116, 92, 0), #26745C);
}

.container__content {
    position: relative;
    z-index: 2;
}

.container__content--padded {
    padding: 30px 1em;
}

.container__section--slim {
    max-width: 800px;
    margin: auto;
}

.container__title {
    text-align: center;
}

.container__title--left {
    text-align: left;
}

.container__title h1 {
    font-size: 31px;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 30px 1em 99px;
    color: var(--text-color);
}

@media (min-width: 784px) {

    .container__title h1 {
        margin: 30px 1em 70px;
    }

}

.container__content h3 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 30px 0;
    color: var(--text-color);
}

.container__title--left h1 {
    margin: 30px 0;
}

.container--bg-img .container__title h1 {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.96);
}

.container__ibe {
    margin-bottom: -8px;
    min-height: 299px;
    background-color: #fff;
}

.container__ibe iframe {
    margin-top: -69px;
}

@media (min-width: 784px) {

    .container__ibe iframe {
        margin-top: -40px;
    }

}

/* Page Footer */
.footer {
    width: 100%;
    background: var(--footer-bg);
}

.footer__col--left {
    display: flex;
    align-items: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    margin: auto;
    padding: 30px 1em;
    max-width: var(--container-w);
    text-align: center;
    color: var(--footer-color);
    font-size: 12px;
    font-weight: 300;
}

.footer .logo {
    height: 50px;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.footer .site-url--footer {
    font-style: italic;
    font-weight: 700;
}

.footer__menu .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 1em;
    padding: 0;
}

.footer__menu .menu-link {
    padding: 1em;
    font-weight: 400;
    color: var(--footer-color);
    text-decoration: none;
}

.footer__menu .menu-link:hover {
    color: var(--primary-color);
}


/* Other */
.timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 auto;
    font-size: 50px;
    line-height: 1;
}

.timer__type {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    color: rgba(255, 255, 255, .5);
}

.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto auto 50px;
}

.social-links__link {
    margin: 50px 24px 0 0;
}

.icon {
    display: block;
    width: 32px;
    height: 32px;
    opacity: .7;
}

.social-links__link:hover .icon {
    opacity: 1;
}

.icon>img {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 500px) {

    .timer {
        font-size: 80px;
    }

    .social-links {
        margin-bottom: 110px;
    }

}

@media (min-width: 600px) {

    .timer {
        font-size: 100px;
    }

}

@media (min-width: 740px) {

    .timer {
        font-size: 120px;
    }

}