body {
    font-family: GothamBook;
    overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
    body {
        font-family: Arial, Helvetica, sans-serif;
        overflow-x: hidden;
    }
}

@font-face {
    font-family: GothamBook;
    src: url('../fonts/GothamBook.eot?#iefix') format('embedded-opentype'),
    url("../fonts/GothamBook.woff") format("woff"),
    url("../fonts/GothamBook.ttf") format('truetype');
}

@font-face {
    font-family: GothamBold;
    src: url("../fonts/GothamBold.ttf")
}

@font-face {
    font-family: antonioregular;
    src: url("../fonts/antonio/Antonio-Regular.ttf")
}

.gothambold {
    font-family: GothamBold;
}

.antonioregular {
    font-family: antonioregular;
}

/*--------------------------- Navbar ----------------------*/

.nav-link {
    color: #000 !important;
}

.nav-link:hover {
    opacity: 0.8;
    transition: all 0.3s;
}

.fixed-top.scrolled {
    /* background-image: url("../img/index/home_banner.jpg") !important; */
    background-color: #fff;
    transition: background-color 400ms linear;
}

.fixed-top.scrolled .nav-link {
    color: #000 !important;
    transition: color 400ms linear;
}

.navbar-collapse {
    transition: all 0.3s;
}

/* .navbar-collapse.show {
    font-size: 0.8em !important;
    flex-grow: 0 !important;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px white solid;
    margin-top: 20px;
    background-image: linear-gradient(to right top, #c1224b, #df493f, #f4722f, #fe9d1a, #fdc90a);
} */

@media (max-width:991px) {
    .navbar {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .navbar-brand {
        padding-top: 0px;
    }

    .navbar-toggler {
        margin-top: 5px;
    }

    .nav-item .nav-link {
        margin-bottom: 5px !important;
        padding-top: 3px !important;
    }
}

/*--------------------------- Side Bar styling ----------------------*/

#menu-toggle {
    float: right;
}

#wrapper {
    padding-right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-right: 250px;
}

#sidebar-wrapper {
    z-index: 10000;
    position: fixed;
    right: 250px;
    width: 0;
    height: 100%;
    margin-right: -250px;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.57);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-left: -250px;
}

/* Sidebar Styles */
.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    padding-right: 17%;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav>.sidebar-brand {
    height: 30px;
    font-size: 18px;
    line-height: 30px;
}

.sidebar-nav>.sidebar-brand a {
    color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
    color: #fff;
    background: none;
}

@media(min-width:1px) {
    #wrapper {
        padding-right: 250px;
    }

    #wrapper.toggled {
        padding-right: 0;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-left: 0;
    }
}

/*--------------------------- Scroll Bar styling ----------------------*/

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*--------------------------- Custom Font Colors / Background Colors ----------------------*/

.grey {
    color: #5c5c5c !important;
}

.blue {
    color: #11998e;
}

.bg-grey {
    background-color: #eff0f2 !important;
}

.bg-dark-grey {
    background-color: #e5e9ed !important;
}

.bg-dark-blue {
    background-color: #2c3e50 !important;
}

.bg-dark-blue-2 {
    background-color: #29323c !important;
}

.bg-black {
    background: black !important
}

.bg-white {
    background: white !important
}

.bg-maroon {
    background: #a82842 !important
}

.text-maroon {
    color: #a82842;
}

.text-gold {
    color: #ac7537;
}

.bg-info {
    background-color: #151b72 !important;
}

.text-black {
    color: black !important;
}


/*--------------------------- Custom Font size ----------------------*/

.font-xs {
    font-size: 0.7em !important;
}

.font-sm {
    font-size: 0.8em !important;
}

.font-md {
    font-size: 0.9em !important;
}

.font-lg {
    font-size: 1.4em !important;
}

.font-spacing-3px {
    letter-spacing: 3px !important;
}

.font-weight-600 {
    font-weight: 600;
}

/*--------------------------- Custom buttons ----------------------*/

.btn-no-radius {
    border-radius: 0px !important;
}

.btn-inline {
    display: inline !important;
}

.btn-orange {
    background-color: #ff9000;
}

.btn-maroon {
    background-color: #901141;
}

.btn-info, .btn-info:hover, .btn-info:focus {
    background-color: #151b72 !important;
    border-color: #151b72 !important;
}

.btn-maroon-light {
    background-color: #a82842;
}

/*--------------------------- Custom Images - Note: format needs to be in png to most of these to work properly ----------------------*/

.img-black {
    filter: grayscale(100%) sepia(0) saturate(1) opacity(1) brightness(0%);
    -webkit-filter: grayscale(100%) sepia(0) saturate(1) opacity(1) brightness(0%);
}

.custom-brand-img {
    width: 80px;
}

/*--------------------------- Loader ----------------------*/

/* LOADER */

.loading-bar-container {}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 1060;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.loader-img {
    z-index: 1061;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white !important;
    z-index: 999999;
}

/*--------------------------- Form ----------------------*/

::-webkit-input-placeholder {
    /* Edge */
    color: rgba(0, 0, 0, 0.5) !important;
    line-height: 30px;
    font-size: 15px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 0.5) !important;
    line-height: 30px;
    font-size: 15px;
}

::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    line-height: 30px;
    font-size: 15px;
}

input,
textarea {
    border-radius: 0px !important;
    transition: 0.5s ease !important;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: #a82842 !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #a82842 !important;
    outline: 0 none;
    transition: 0.5s ease !important;
}



/*--------------------------- Other ----------------------*/

.showcase .showcase-img {
    min-height: 30rem;
    background-size: cover;
}

.mt-6em {
    margin-top: 6em !important;
}

.hoverpointer:hover {
    cursor: pointer;
}

.hoverzoom {
    transform: scale(1);
    transition: all 0.3s ease;
}

.hoverzoom:hover {
    transform: scale(1.03);
    transition: all 0.3s ease;
}

.dropdown-menu-auto {
    top: auto !important;
    left: auto !important;
}

/*--------------------------- Heights ----------------------*/

.height-80px {
    height: 80px;
}

/*--------------------------- Borders ----------------------*/

.border-radius-20px {
    border-radius: 20px !important;
}

.border-radius-40px {
    border-radius: 40px !important;
}

/*--------------------------- Shadows ----------------------*/

.shadow-light-grey {
    -webkit-box-shadow: 5px 5px 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 9px 1px rgba(0, 0, 0, 0.1);
}

/* Banner */

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .bg-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.1;
    z-index: 0;
}

.not-home-header {
    height: 100%;
}

/* Misc */

.bg-cover {
    background-size: cover !important;
}

.bg-contain {
    background-size: contain !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}