@font-face {
    font-family: 'URW Light';
    src: url('./fonts/URWGeometricLight.otf');
    display: swap;
}

@font-face {
    font-family: 'URW Medium';
    src: url('./fonts/URWGeometricMedium.otf');
    display: swap;
}

@font-face {
    font-family: 'URW Regular';
    src: url('./fonts/URWGeometricRegular.otf');
    display: swap;
}

@font-face {
    font-family: 'URW Thin';
    src: url('./fonts/URWGeometricThin.otf');
    display: swap;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 940px;
    padding: 0 40px;
    margin: 0 auto;
}

h1 {
    font-size: 72px;
    color: #0082C2;
    font-family: 'URW Thin', sans-serif;
}

h2 {
    color: #0082C2;
    font-family: 'URW Light', sans-serif;
    text-transform: uppercase;
}

p {
    color: #49494A;
    font-family: 'URW Regular', sans-serif;
    font-size: 18px;
}

span.green {
    color: #AFC909;
    display: block;
}

.hero {
    background-image: url('./images/fish.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 120px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hero img {
    position: absolute;
    right: 0;
    top: 25px;
    aspect-ratio: 144/206;
}

.hero p, .hero h1 {
    max-width: 424px;
    color: #0082C2;
}

.hero p {
    font-size: 20px;
}

.hero h1 {
    margin-bottom: 40px;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.col {
    width: calc(33% - 13.3px);
}

.col img {
    width: 100%;
    height: auto;
}

.footer {
    background-color: #EAF7FF;
    padding-bottom: 80px;
}

.footer img {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);

}

.footer p {
    color: #014C7E;
}

.footer .col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media screen and (max-width: 991px) {
    .col {
        width: calc(50% - 10px);
    }

    .row {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .col {
        width: 100%;
    }
    
    .row {
        flex-wrap: wrap;
    }

    .hero {
        background-size: 100%;
        background-position-x: center;
        background-position-y: 10%;
        padding: 120px 0 60px;
    }

    .hero img {
        width: 25%;
        height: auto;
    }
}