@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto !important;
}


html {
    font-size: 62.5%;
}

/* ONLY FOR PAGE 404 */
.page-404-section {
    background-color: #168bd8;
    padding: 140px 20px;
}

.page-404-section .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.page-404-section .wrap h1 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-family: Spectral;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.page-404-section .icon-wrap {
    display: flex;
    height: 60px;
    width: 138px;
}

.page-404-section .wrap p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.page-404-section .wrap a {
    color: #000 !important;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .page-404-section {
        padding: 80px 20px;
    }

    .page-404-section .wrap h1 {
        font-size: 42px;
        line-height: 54px;
        text-align: center;
    }

    .page-404-section .wrap p {
        font-size: 18px;
        line-height: 26px;
    }

    .page-404-section .wrap {
        gap: 24px;
    }

    .page-404-section .wrap a {
        display: block;
    }
}