/* font-family: "hello","open-sans","arial","sans-serif"; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nerko+One&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* @font-face {
    font-family: hello;
    src: url("/fonts/hello-headline.woff2");
  } */



* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    font-size: 18px;
    /* border: 1px solid green; */
}

li {
    color: #E5E7EB;
    text-align:center;
    /* border: 1px solid red; */
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Open Sans', sans-serif;}

h1{
    font-size: 48px;
    font-weight: bold;
    color: #f9faf8;
    margin-bottom: 6px;
}

.hero {
    background-color: #2b2837;
}

.section {
    display: flex;
    justify-content: center;
}
.container {
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    /* border: 1px solid orange; */
    flex-grow: 1;
}

.hero .container {
    margin: 16px 16px 0px 16px;
}
.hero-content{
    display: flex;
    gap: 32px;
    align-items: center;
    color: #E5E7EB;
    margin-top: 100px;
    margin-bottom: 100px;
    font-family: 'Open Sans', sans-serif;    
    font-size: 18px;
}

.hero-text {
    margin-bottom: 10px;
}
/* .hero-image {
    max-width: 500px;
    flex: 1;
} */

.hero-video {
    max-width: 500px;
    border-radius: 16px;
}

.button {
    display: block;
    max-width: 128px;
    text-align: center;
    font-family: inherit;
    background-color: #008deb;
    padding: 8px 16px;
    color: #f9faf8;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}

.button:hover {
    background-color:#f9faf8;
    color: #008deb;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    /* border: 1px solid yellow; */
}

.nav a:hover {
    color: #8dc6ec;
}

.nav-image {
    width: 100px;
}

.info {
    color: #2b2837;
    background-color:#f9faf8
}

.info-cards {
    display: flex;
    gap: 48px;
    justify-content:center;
    /* border: 1px solid green; */
    flex-wrap: wrap;
}

.info .container {
    margin: 80px 16px 112px 16px;
}

.info-image {
    height: 160px;
    width:160px;
    /* border: 4px solid #3882F6; */
    border-radius: 16px;
    margin-bottom: 8px;
}

.info-card {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
    font-family: 'Nerko One', 'Open Sans', 'sans-serif';
    font-size: 30px;
}

.info h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 32px;
}

.quote {
    background-color: #E5E7EB;
    color: #2b2837;
}

.quote .container {
    max-width: 600px;
    margin: 128px 16px;
}

.quote-text {
    font-size: 36px;
    font-weight: light;
    font-style: italic;
}

.quote-auth {
    font-family: 'Nerko One', 'Open Sans', 'sans-serif';
    text-align: right;
    font-weight: bold;
    margin-right: 32px;
    font-size: 28px;
}

.call-to-action .container {
    padding: 0px 16px;
    /* border: 2px solid red; */
}
.cta-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 32px;
    background-color:#008deb;
    padding: 48px 32px;
    margin: 96px 0px;
    border-radius: 8px;
    color: #f9faf8;
    /* border:3px solid purple; */
}

.cta-button {
    border: 2px solid #f9faf8;
    flex-basis: 128px;
    /* padding: 8px 32px; */
}

.cta-header {
    font-size: 20px;
    font-weight: bold;
}

.footer {
    background-color: #2b2837;
    color: #f9faf8;
    padding: 32px 0px;
}

.bluey {
    background-image: url("/images/bluey-info.png");
    background-size: 100%;
}

.bingo {
    background-image: url("/images/bingo-info.png");
    background-size: 100%;
}

.bandit {
    background-image: url("/images/bandit-info.png");
    background-size: 100%;
}

.chilli {
    background-image: url("/images/chilli-info.png");
    background-size: 100%;
}

