/* IMAGES//////////////////////////////////////////////////////////////// */

.heroImg{
    background-image: url(../images/hero_bg.jpg);
}

.rotatingImg{
    background-image: url(../images/hero_rotating.svg);
}

.aboutImg{
    background-image: url(../images/headshot.jpg);
}

.footerBgImg{
    background-image: url(../images/footer_bg.jpg);
}

/* //////////////////////////////////////////////////////////////////////// */

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

@font-face {
    font-family: 'RobotoReg';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.scroll{
    scrollbar-color: #FE811B #FAF5F0;
}

body{
    font-family: "RobotoReg";
    cursor: url(../images/cursor.svg) 25 25, auto;
}

.body{
    overflow-x: hidden;
}

nav{
    font-size: .85rem;
}

.container{
	margin-left:auto;
	margin-right:auto;
}

.bgImg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.white-color{
    color: #FAF5F0 !important;
}

.white-bg{
    background-color: #FAF5F0;
}

.blue-color{
    color: #13151A;
}

.blue-bg{
    background-color:#13151A;
}

.orange-color , .color-orange{
    color: #FE811B;
}

.orange-bg{
    background-color: #FE811B;
}

.heroImg{
    height: 96vh;
    border-radius: 3vw;
    width: 98%;
    position: relative;
}

.words{
    overflow: hidden;
}

.words span{
    display: block;
    height: 100%;
    animation: spin_words 7s infinite;
}

@keyframes spin_words{
    10%{
        transform: translateY(-112%);
    }
    25%{
        transform: translateY(-100%);
    }
    35%{
        transform: translateY(-212%);
    }
    50%{
        transform: translateY(-200%);
    }
    60%{
        transform: translateY(-312%);
    }
    75%{
        transform: translateY(-300%);
    }
    85%{
        transform: translateY(-412%);
    }
    100%{
        transform: translateY(-400%);
    }
}

@keyframes rotating {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.rotating {
    animation: rotating 12s linear infinite;
}

.rotatingHolder{
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    padding: 1%;
    
    margin-left: auto;
    color: #FAF5F0;

    bottom:5%;
    right: 5%;
}

.rotatingHolder p {
    font-size: 3rem;
}

.rotatingImg{
    width: 100%;
    height: 100%;
} 

.arrow{
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-6%,-24%);
}

a{
    text-decoration: none;
    color: #13151A;
}

a::after{
    text-decoration: none;
    color: #13151A;
}

.awards a , .awards div{
    border-bottom: #FE811B solid 1px;
}

.awards div:last-of-type{
    border: none;
}

footer{
    border-radius: 3vw;
    width: 98%;
}

.email{
    border-bottom: #FAF5F0 solid 1px;
}

.emailMe{
    color: #FAF5F0;
}

.emailMe:hover{
    color: #13151A;
    cursor: url(../images/cursor2.svg) 25 25, auto;
}

.col .fa{
    color: #FAF5F0;
    font-size: 1.5rem;
}

.col .fa:hover{
    color: #13151A;
    font-size: 1.5rem;
    cursor: url(../images/cursor2.svg) 25 25, auto;
}

.copy{
    color: #FAF5F0;
}

.awards a:hover{
    color: #FE811B;
    cursor: url(../images/cursor2.svg) 25 25, auto;
}

.contact{
    font-family: "RobotoBold";
}

p{
    font-size: 1rem;
}

.text a{
    color: #FE811B;
}

.text a:hover{
    cursor: url(../images/cursor2.svg) 25 25, auto;
    color: #13151A;
}

.divider{
    border-bottom: #FE811B solid 1px;
}

h1{
    font-family: RobotoBold;
}


/* SMALL MOBILE STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 575px){
    .container-fluid{
		width: 94.5%;
	}

    .navbar{
        top: 1.5% !important;
    }

    .navbar-brand , .nav-link{
        border: solid #FE811B 1px;
        color: #FE811B;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
        border-radius: 100px;  
    }

    .navbar-toggler{
        border: #FE811B solid 1px;
        border-radius: 50px;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
    }

    .navbar-toggler-icon{
        background-image: url(../images/menu_revealed.svg);
        width: 1.25em;
        height: 1.25em;
    }

    .nav-link:hover, .navbar-brand:hover , .navbar-toggler:hover{
        color:#13151A;
        border-color: #13151A;
        cursor: url(../images/cursor2.svg) 25 25, auto;

    }
    
    .navbar-toggler:hover .navbar-toggler-icon{
        background-image: url(../images/menu_hover.svg);
    }

    .email h1{
        font-size: calc(5rem + .5vw);
    }

    .aboutImg{
        height: 50vh;
        border-radius: 3vw;
        border: #FE811B solid 1px;
    }
}

/* MOBILE STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 576px) and (max-width: 767px){
    .container-fluid{
		width: 94.5%;
	}

    .navbar-brand , .nav-link{
        border: solid #FE811B 1px;
        color: #FE811B;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
        border-radius: 100px;  
    }

    .navbar-toggler{
        border: #FE811B solid 1px;
        border-radius: 50px;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
    }

    .navbar-toggler-icon{
        background-image: url(../images/menu_revealed.svg);
        width: 1.25em;
        height: 1.25em;
    }

    .nav-link:hover, .navbar-brand:hover , .navbar-toggler:hover{
        color:#13151A;
        border-color: #13151A;
        cursor: url(../images/cursor2.svg) 25 25, auto;
    }
    
    .navbar-toggler:hover .navbar-toggler-icon{
        background-image: url(../images/menu_hover.svg);
    }

    .email h1{
        font-size: calc(5rem + .5vw);
    }

    .lead{
        font-size: 1.2rem;
    }

    .aboutImg{
        height: 75vh;
        border-radius: 3vw;
        border: #FE811B solid 1px;
    }
}

/* TABLET STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 768px) and (max-width: 1024px){    
    .container-fluid{
		width: 94.5%;
	}

    .navbar{
        top: 1.5% !important;
    }

    .navbar-brand , .nav-link{
        border: solid #FE811B 1px;
        color: #FE811B;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
        border-radius: 100px;  
    }

    .navbar-toggler{
        border: #FE811B solid 1px;
        border-radius: 50px;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
    }

    .navbar-toggler-icon{
        background-image: url(../images/menu_revealed.svg);
        width: 1.25em;
        height: 1.25em;
    }

    .nav-link:hover, .navbar-brand:hover , .navbar-toggler:hover{
        color:#13151A;
        border-color: #13151A;
        cursor: url(../images/cursor2.svg) 25 25, auto;
    }
    
    .navbar-toggler:hover .navbar-toggler-icon{
        background-image: url(../images/menu_hover.svg);
    }

    .email h1{
        font-size: calc(5rem + .5vw);
    }

    .lead{
        font-size: 1.2rem;
    }

    .aboutImg{
        height: 80vh;
        border-radius: 3vw;
        border: #FE811B solid 1px;
    }
}

/* DESKTOP STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 1025px) and (max-width: 1439px){

    .container-fluid{
		width: 94.5%;
	}

    .navbar{
        top: 1.5% !important;
    }

    .navbar .container-fluid{
        border: solid #FE811B .5px;
        color: #FE811B;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
        border-radius: 100px;  
    }
    
    .nav-link, .navbar-brand{
        border: solid #FE811B 1px;
        color: #FE811B;
        background-color: #FE811B10;
        border-radius: 50px;
        backdrop-filter: blur(30px);
    }
    
    .nav-link:hover, .navbar-brand:hover{
        color:#13151A;
        border-color: #13151A;
        cursor: url(../images/cursor2.svg) 25 25, auto;
    }

    .email h1{
        font-size: calc(6rem + .7vw);
    }

    .lead{
        font-size: 1.2rem;
    }

    .aboutImg{
        height: 50vh;
        border-radius: 3vw;
        border: #FE811B solid 1px;
    }
}

/*large screen/////////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width: 1440px){
    .container-fluid{
        width: 94.5%;
    }
    
    .navbar{
        top: 1.5% !important;
    }

    .navbar .container-fluid{
        border: solid #FE811B .5px;
        color: #FE811B;
        background-color: #FE811B10;
        backdrop-filter: blur(30px);
        border-radius: 100px;  
    }
    
    .nav-link, .navbar-brand{
        border: solid #FE811B 1px;
        color: #FE811B;
        background-color: #FE811B10;
        border-radius: 50px;
        backdrop-filter: blur(30px);
    }
    
    .nav-link:hover, .navbar-brand:hover{
        color:#13151A;
        border-color: #13151A;
        cursor: url(../images/cursor2.svg) 25 25, auto;

    }

    .email h1{
        font-size: 8rem;
    }

    .lead{
        font-size: 1.2rem;
    }
    .aboutImg{
        height: 80vh;
        border-radius: 3vw;
        border: #FE811B solid 1px;
    }
}