/* global */

html {
    --primary-color: #3209f3;
    --secondary-color: #ffffff;
    --accent-color: #fbff46;
    --font-color: #444444;
    --off-color: #e5e8f4;
}

@keyframes slightPulsate {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* end of global */

@media(min-width: 1366px) {
    nav.navbar {
        position: fixed;
        z-index: 4;
        background-color: var(--font-color);
        top: 0;
        left: 0;
        margin: 0;
        padding: 10px 5%;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-logo {
        line-height: 0;
    }
    .nav-logo img {
        height: 55px;
        transition: 0.2s ease-out;
    }
    .nav-buttons {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .nav-buttons a {
        animation: slightPulsate 1.7s infinite ease-out;
        display: inline-block;
        border-radius: 2px;
        text-decoration: none;
        line-height: 0;
        margin: 0;
        padding: 25px;
        font-family: "Audiowide", sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .nav-buttons a:nth-child(1) {
        /* background: linear-gradient(to right, #004AAD, #CB6CE6); */
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
    .nav-buttons a:nth-child(2) {
        background-image: url('../../assets/button-2.png');
        color: var(--font-color);
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 13px;
        position: relative;
    }
    ul.page-tabs li a {
        display: block;
        color: var(--secondary-color);
        margin: 0;
        padding: 0;
        font-family: "Audiowide", sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
        transition: 0.1s all ease-out;
    }
    ul.page-tabs li a:hover {
        color: var(--accent-color);
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0%;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background-color: var(--font-color);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.24);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: var(--secondary-color);
    }
    ul.page-tabs li>ul>li:hover a {
        color: var(--primary-color);
    }
    ul.page-tabs li>ul>li>a {
        text-transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: var(--secondary-color);
        padding: 15px;
        font-family: obviously, sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .float-estimate {
        display: inherit;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 4;
        background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        box-shadow: -2px -4px 10px rgba(0, 0, 0, 0.32);
        text-decoration: none;
        margin: 0;
        padding: 12px 20px;
    }
    .float-estimate a {
        color: var(--secondary-color);
        font-family: "Audiowide", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
        text-decoration: none;
    }
    .float-backtrack {
        box-shadow: -1px -2px 5px rgba(0, 0, 0, 0.32);
        border-radius: 2px;
        display: none;
        position: fixed;
        z-index: 2;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: var(--secondary-color);
        background: var(--primary-color);
        padding: 5px 10px;
    }
    .side-social-media {
        display: none;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    nav.navbar {
        position: fixed;
        z-index: 4;
        background-color: var(--font-color);
        top: 0;
        left: 0;
        margin: 0;
        padding: 10px 2.5%;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-logo {
        line-height: 0;
    }
    .nav-logo img {
        height: 45px;
        transition: 0.2s ease-out;
    }
    .nav-buttons {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .nav-buttons a {
        animation: slightPulsate 1.7s infinite ease-out;
        display: inline-block;
        border-radius: 2px;
        text-decoration: none;
        line-height: 0;
        margin: 0;
        padding: 25px;
        font-family: "Audiowide", sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .nav-buttons a:nth-child(1) {
        /* background: linear-gradient(to right, #004AAD, #CB6CE6); */
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
    .nav-buttons a:nth-child(2) {
        background-image: url('../../assets/button-2.png');
        color: var(--font-color);
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 10px;
        position: relative;
    }
    ul.page-tabs li a {
        display: block;
        color: var(--secondary-color);
        margin: 0;
        padding: 0;
        font-family: "Audiowide", sans-serif;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
        transition: 0.1s all ease-out;
    }
    ul.page-tabs li a:hover {
        color: var(--accent-color);
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0%;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background-color: var(--font-color);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.24);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: var(--secondary-color);
    }
    ul.page-tabs li>ul>li:hover a {
        color: var(--primary-color);
    }
    ul.page-tabs li>ul>li>a {
        text-transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: var(--secondary-color);
        padding: 15px;
        font-family: obviously, sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .float-estimate {
        display: inherit;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 4;
        background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        box-shadow: -2px -4px 10px rgba(0, 0, 0, 0.32);
        text-decoration: none;
        margin: 0;
        padding: 12px 20px;
    }
    .float-estimate a {
        color: var(--secondary-color);
        font-family: "Audiowide", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
        text-decoration: none;
    }
    .float-backtrack {
        box-shadow: -1px -2px 5px rgba(0, 0, 0, 0.32);
        border-radius: 2px;
        display: none;
        position: fixed;
        z-index: 2;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: var(--secondary-color);
        background: var(--primary-color);
        padding: 5px 10px;
    }
    .side-social-media {
        display: none;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    nav.navbar {
        position: fixed;
        z-index: 4;
        background-color: var(--font-color);
        top: 0;
        left: 0;
        margin: 0;
        padding: 10px 5%;
        width: 100%;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-logo {
        line-height: 0;
    }
    .nav-logo img {
        height: 55px;
        transition: 0.2s ease-out;
    }
    .nav-buttons {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .nav-buttons a {
        animation: slightPulsate 1.7s infinite ease-out;
        display: inline-block;
        border-radius: 2px;
        text-decoration: none;
        line-height: 0;
        margin: 0;
        padding: 25px;
        font-family: "Audiowide", sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .nav-buttons a:nth-child(1) {
        /* background: linear-gradient(to right, #004AAD, #CB6CE6); */
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
    .nav-buttons a:nth-child(2) {
        background-image: url('../../assets/button-2.png');
        color: var(--font-color);
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 13px;
        position: relative;
    }
    ul.page-tabs li a {
        display: block;
        color: var(--secondary-color);
        margin: 0;
        padding: 0;
        font-family: "Audiowide", sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
        transition: 0.1s all ease-out;
    }
    ul.page-tabs li a:hover {
        color: var(--accent-color);
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0%;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background-color: var(--font-color);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.24);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: var(--secondary-color);
    }
    ul.page-tabs li>ul>li:hover a {
        color: var(--primary-color);
    }
    ul.page-tabs li>ul>li>a {
        text-transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: var(--secondary-color);
        padding: 15px;
        font-family: obviously, sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .float-estimate {
        display: none;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 4;
        background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        box-shadow: -2px -4px 10px rgba(0, 0, 0, 0.32);
        text-decoration: none;
        margin: 0;
        padding: 12px 20px;
    }
    .float-estimate a {
        color: var(--secondary-color);
        font-family: "Audiowide", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
        text-decoration: none;
    }
    .float-backtrack {
        box-shadow: -1px -2px 5px rgba(0, 0, 0, 0.32);
        border-radius: 2px;
        display: none;
        position: fixed;
        z-index: 2;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: var(--secondary-color);
        background: var(--primary-color);
        padding: 5px 10px;
    }
    .side-social-media {
        display: none;
    }
}

@media(max-width: 769px) {
    nav.navbar {
        position: fixed;
        z-index: 4;
        background-color: var(--font-color);
        top: 0;
        left: 0;
        margin: 0;
        padding: 10px 5%;
        width: 100%;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-logo {
        line-height: 0;
    }
    .nav-logo img {
        height: 55px;
        transition: 0.2s ease-out;
    }
    .nav-buttons {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .nav-buttons a {
        animation: slightPulsate 1.7s infinite ease-out;
        display: inline-block;
        border-radius: 2px;
        text-decoration: none;
        line-height: 0;
        margin: 0;
        padding: 25px;
        font-family: "Audiowide", sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .nav-buttons a:nth-child(1) {
        /* background: linear-gradient(to right, #004AAD, #CB6CE6); */
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
    .nav-buttons a:nth-child(2) {
        background-image: url('../../assets/button-2.png');
        color: var(--font-color);
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 13px;
        position: relative;
    }
    ul.page-tabs li a {
        display: block;
        color: var(--secondary-color);
        margin: 0;
        padding: 0;
        font-family: "Audiowide", sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
        transition: 0.1s all ease-out;
    }
    ul.page-tabs li a:hover {
        color: var(--accent-color);
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0%;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background-color: var(--font-color);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.24);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: var(--secondary-color);
    }
    ul.page-tabs li>ul>li:hover a {
        color: var(--primary-color);
    }
    ul.page-tabs li>ul>li>a {
        text-transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: var(--secondary-color);
        padding: 15px;
        font-family: obviously, sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .float-estimate {
        display: none;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 4;
        background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        box-shadow: -2px -4px 10px rgba(0, 0, 0, 0.32);
        text-decoration: none;
        margin: 0;
        padding: 12px 20px;
    }
    .float-estimate a {
        color: var(--secondary-color);
        font-family: "Audiowide", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
        text-decoration: none;
    }
    .float-backtrack {
        box-shadow: -1px -2px 5px rgba(0, 0, 0, 0.32);
        border-radius: 2px;
        display: none;
        position: fixed;
        z-index: 2;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 20px;
        color: var(--secondary-color);
        background: var(--primary-color);
        padding: 5px 10px;
    }
    .side-social-media {
        display: none;
    }
}