﻿@font-face {
    font-family: 'CodeNext';
    src: url('/fonts/CodeNext-Trial-Regular.woff2') format('woff2'), url('/fonts/CodeNext-Trial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CodeNext';
    src: url('/fonts/CodeNext-Trial-ExtraBold.woff2') format('woff2'), url('/fonts/CodeNext-Trial-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Campton';
    src: url('/fonts/CamptonBold.otf') format('otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Campton';
    src: url('/fonts/CamptonMedium.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'CodeNext', sans-serif;
    letter-spacing: 0px !important;
    line-height: 1.5;
    overflow-x: hidden;
}

.main {
    overflow-x: hidden;
}

.icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: inline-block;
    vertical-align: middle;
}

.text-highlighted {
    color: #2BC767;
    font-weight: 700;
}

.sticky-top {
    top: 0;
    position: sticky;
    z-index: 1020;
}

.btn {
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.icon-facebook {
    background-image: url(../images/facebook.svg);
}

.icon-instagram {
    background-image: url(../images/instagram.svg);
}

.icon-linkedin {
    background-image: url(../images/linkedin.svg);
}

.error-page {
    background: #e6fff3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
    text-align: center;
    padding: 40px 20px;
}

    .error-page .digits {
        font-size: 120px;
        font-weight: 800;
        color: #2BC767;
        margin: 0;
    }

    .error-page h1 {
        font-size: 26px;
        font-weight: 600;
        margin: 20px 0;
    }

    .error-page p {
        font-size: 16px;
        line-height: 1.6;
        margin: 10px 0;
    }

    .error-page .button {
        font-size: 16px;
        text-decoration: none;
        background-color: #1b1f27;
        color: white;
        padding: 14px 30px;
        font-weight: 700;
        border-radius: 0;
        z-index: 1;
    }

        .error-page .button:hover {
            background-color: #2BC767;
        }

@media (max-width: 480px) {
    .error-page .digits {
        font-size: 80px;
    }

    .error-page h1 {
        font-size: 22px;
    }
}

.navbar > .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1);
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

button, select {
    text-transform: none;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-left: auto !important;
}

.collapse:not(.show) {
    display: none;
}

.navbar-collapse {
    align-items: center;
    flex-basis: 100%;
    flex-grow: 1;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-lg .navbar-nav {
            flex-direction: row;
        }

        .navbar-expand-lg .navbar-toggler {
            display: none;
        }
}

