@import url('https://fonts.cdnfonts.com/css/sofia-pro');
@import url('https://fonts.cdnfonts.com/css/mont');

@font-face {
    font-display: swap;
    font-family: MontHeavy;
    font-weight: 900;
    src: url("/assets/fonts/Mont-HeavyDEMO.eot") format("eot"),
        url("assets/fonts/Mont-HeavyDEMO.ttf") format("ttf"),
        url("assets/fonts/Mont-HeavyDEMO.woff") format("woff");
}

* {
    font-family: "Sofia Pro", sans-serif;
    margin: 0;
}


body {
    width: 100%;
    height: 100vh;
}

h1.thinker-h1 {
    font-family: MontHeavy, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .025em;
    line-height: 1.3;
}

h2.thinker-h2 {
    font-family: MontHeavy, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: .025em;
    line-height: 1.172;
}

h3.thinker-h3 {
    font-family: MontHeavy, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .025em;
    line-height: 1.172;
}

p {
    font-family: "Sofia Pro", sans-serif;
    font-weight: 300;
    color: #373737;
    font-size: 1.0625rem;
    line-height: 1.8;
}

main.site-main.homepage-wrapper {
    padding-top: 74px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 80px; */
    padding-top: 0;
    padding-bottom: 0;
    background-color: white;
    transition: background-color 250ms ease;
}

.navbar.scrolled {
    background-color: white;
}


.navbar-toggler:focus {
    box-shadow:  0 0 0 white !important;
}

.navbar .nav-link {
    font-size: 20px;
    text-align: center;
    padding-top: 2rem;
}

img.navbar-brand-logo {
    width: 120px;
}


a.nav-link {
    margin-right: 15px !important;
    color: #1e1e1e;
}

.navbar-collapse {
    height: 100vh;
}

.fa-bars {
    color: #007bff;
    font-size: 30px;
}

.mf-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    -webkit-transition: opacity .3s, color .4s;
    -o-transition: opacity .3s, color .4s;
    -moz-transition: opacity .3s, color .4s;
    transition: opacity .3s, color .4s;
}

.mf-cursor {
    color: #1e1e1e;
}

.button-white {
    background-color: white;
    color: #1e1e1e;
    padding: 15px 30px;
}

.button-white:hover {
    /* color: #1e1e1e;
    box-shadow: 0px 3px 8px #ffffff9d; */
    color: white;
    border: 2px solid white;
    background-color: transparent;
}


.button-dark a {
    background-color: #1e1e1e;
    border: 2px solid #1e1e1e;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
}

.button-dark a:hover {
    border: 2px solid #1e1e1e;
    color: #1e1e1e;
    background-color: transparent;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.contact-bref-wrapper {
    padding: 100px 12px 100px 12px;
}

.contact-bref-wrapper__title {
    width: 100%;
    margin: 0.5rem 0 2rem 0;
    padding: 0;
}

.contact-bref-wrapper__title h2.thinker-h2 {
    margin-top: 0.5rem;
}

.contact-bref-wrapper__title span {
    color: #068D9D;
}

.jump_to_next {
    bottom: 0;
    position: absolute;
    right: 0.5rem;
    -webkit-transition: all 1.3s cubic-bezier(0, 1, 0, 1);
    transition: all 1.3s cubic-bezier(0, 1, 0, 1);
}

.jump_to_next__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 100%;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;

    float: right;

    width: 97px;
    height: 105px;
}

.jump_to_next__icon {
    color: #1e1e1e;
    font-family: Red Hat Display, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.325rem;
    padding: 0 10px;
    text-align: center;
}

p.jump_to_next__icon {
    margin-bottom: 0;
}

.jump_to_next__images-wrapper {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.jump_to_next__images-wrapper__images {
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
    height: 100%;
    width: 100%;
}

a.nav-link.nav-link-active {
    color: #1e1e1e;
}

a.nav-link.nav-link-active:after {
    content: '';
    display: block;
    position: relative;
    width: 10%;
    left: 45%;
    border: 2px solid #068D9D;
    margin-top: 15px; 
}

.mf-cursor {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
}

::-webkit-scrollbar-thumb {
    background: #1e1e11; 
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}


@keyframes hero_before_rotate {
    0% {
        top: -208px;
        left: 7%;
    }

    30% {
        top: calc(100% - 210px);
        left: 27%;
    }

    33% {
        top: calc(100% - 210px);
        left: 27%;
    }

    63% {
        top: 0px;
        left: calc(100% - 186px);
    }

    66% {
        top: 0px;
        left: calc(100% - 186px);
    }

    97% {
        top: -208px;
        left: 7%;
    }

    100% {
        top: -208px;
        left: 7%;
    }
}

@keyframes hero_after_rotate {
    0% {
        top: 70px;
        right: -50px;
    }

    30% {
        top: -200px;
        right: 25%;
    }

    33% {
        top: -200px;
        right: 25%;
    }

    63% {
        top: calc(100% - 206px);
        right: calc(100% - 186px);
    }

    66% {
        top: calc(100% - 206px);
        right: calc(100% - 186px);
    }

    97% {
        top: 70px;
        right: -50px;
    }

    100% {
        top: 70px;
        right: -50px;
    }
}

@media only screen and (min-width: 768px) {
    nav.navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    h1.thinker-h1 {
        font-size: 4rem;
    }

    h2.thinker-h2 {
        font-size: 3rem;
    }

    h3.thinker-h3 {
        font-size: 2.3rem;
    }

    h4.thinker-h4 {
        font-size: 1.9rem;
    }

    .contact-bref-wrapper__title {
        width: 70%;
        margin-top: 0.5rem 0 0 0;
    }

    .contact-bref-wrapper {
        padding: 200px 0px 200px 0;
    }


    .contact-button__wrapper {
        width: max-content;
        margin-top: 3rem;
    }

    main.site-main.homepage-wrapper {
        padding-top: 88px;
    }

    .mf-cursor {
        display: initial;
    }
}


@media only screen and (min-width: 800px) {
    .contact-bref-wrapper__title {
        width: 90%;
        margin-top: 0.5rem 0 0 0;
    }
}


@media only screen and (min-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        background-color: transparent;
        transition: background-color 250ms ease;
    }

    .navbar .nav-link {
        font-size: 16px;
        text-align: center;
        padding-top: 0;
    }

    .navbar-collapse {
        height: auto;
    }

    a.nav-link.nav-link-active:after {
        content: '';
        display: block;
        position: relative;
        width: 40%;
        left: 0;
        border: 2px solid #068D9D;
        margin-top: 4px; 
   }
    
}

@media only screen and (min-width: 1400px) {
    .contact-bref-wrapper__title {
        width: 70%;
        margin-top: 0.5rem 0 0 0;
    }
}

