* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #073f49;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 680px;
    margin-bottom: 40px;
}

.section-heading .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #0a9aaa;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-heading h2 {
    margin: 0;

    color: #064d59;

    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading p {
    max-width: 600px;

    margin-top: 15px;

    color: #71868a;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.7;
}


/* Centered heading */

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.section-container {
    width: min(1500px, calc(100% - 48px));
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}


.error-page {
    min-height: 65vh;

    display: flex;

    align-items: center;

    text-align: center;

    background: #F7FCFC;
}

.error-content {
    width: 100%;

    max-width: 650px;

    margin: auto;
}

.error-number {
    color: #0BA2B2;

    font-size: 80px;

    font-weight: 800;

    line-height: 1;
}

.error-content h1 {
    margin-top: 15px;

    color: #064D59;

    font-size: 32px;
}

.error-content p {
    margin-top: 10px;

    color: #788C90;

    font-size: 12px;
}

.error-buttons {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 25px;
}

.error-primary,
.error-secondary {
    padding: 13px 20px;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;
}

.error-primary {
    background: #075763;

    color: #FFFFFF;
}

.error-secondary {
    border: 1px solid #0BA2B2;

    color: #075763;

    background: #FFFFFF;
}


/* Responsive */

@media (max-width: 600px) {

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 13px;
    }
}


/* =========================================================
   GLOBAL RESPONSIVE FIX
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow-x: hidden;
}


/* Prevent elements from forcing the page wider */

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


img {
    max-width: 100%;
}


section,
header,
footer,
main,
div {
    max-width: 100%;
}

