﻿:root {
    --main-color: #3D8EEE;
    --secondary-color: #211F54;
    --text-color: #6d7192;
    --bg-white: #FAFAFA;
    --primary-btn-text: #FAFCFE;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    appearance: none;
}

@media (min-width: 992px) {

    .header-fixed .wrapper {
        padding-top: 0;
    }

    .header-fixed .header {
        position: sticky;
        top: 16px;
        left: auto;
        right: auto;
        border: 0;
        background: none;
        z-index: 97;
        height: 60px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        padding: 0 10%;
    }

    .header-fixed .nav-container {
        position: fixed;
        height: inherit;
        padding: 0 20px;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid rgba(250, 250, 250, 0.65);
        border-radius: 50px;
        background: rgba(250, 250, 250, 0.3);
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .topnav a {
        color: var(--bg-white);
    }

        .topnav a:hover {
            color: var(--secondary-color);
        }

    .cta-sticky a {
        display: inline-block;
        border: 1px solid var(--bg-white);
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 25px;
        background: rgba(250, 250, 250, 0.3);
        backdrop-filter: blur(5px);
        color: var(--bg-white);
        transition: 0.3s all;
        border-radius: 50px;
        font-size: 1.175rem;
        font-weight: 600;
        z-index: 1;
        overflow: hidden;
    }

        .cta-sticky a:before {
            transition: 0.5s all ease;
            position: absolute;
            top: 0;
            left: 50%;
            right: 50%;
            bottom: 0;
            opacity: 0;
            content: '';
            background: var(--main-color);
            z-index: -1;
        }

        .cta-sticky a:hover, .cta-sticky:focus {
            color: var(--bg-white);
            transform: scale(1.1);
        }

            .cta-sticky a:hover:before, .cta-sticky a:focus:before {
                transition: 0.5s all ease;
                left: 0;
                right: 0;
                opacity: 1;
            }

        .cta-sticky a:active {
            transform: scale(0.9);
        }

    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding: 0 60px;
    }
}
