/* Default styles  */
:root {
    --firstColor: #ff831b;
    --navbar-border-color: #ff831b;
    --navbar-color: #797979;
    --header-height: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--firstColor);
    font-weight: bold !important;
}

body {
    font-family: "Bebas Neue";
}

a,
a:hover {
    color: inherit;
    text-decoration: none !important;
}

.reset-transform {
    text-transform: inherit;
}

.fw-boldest {
    font-weight: 900;
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

@media(min-width:576px) {
    .py-sm-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
}

@media(min-width:768px) {
    .py-md-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
}

@media(min-width:992px) {
    .py-lg-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
}

@media(min-width:1200px) {
    .py-xl-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
}

@media(min-width:1400px) {
    .py-xxl-6 {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
}

.mb-10 {
    margin-bottom: 8rem !important;
}

@media(min-width:576px) {
    .mb-sm-10 {
        margin-bottom: 8rem !important;
    }
}

@media(min-width:768px) {
    .mb-md-10 {
        margin-bottom: 8rem !important;
    }
}

@media(min-width:992px) {
    .mb-lg-10 {
        margin-bottom: 8rem !important;
    }
}

@media(min-width:1200px) {
    .mb-xl-10 {
        margin-bottom: 8rem !important;
    }
}

@media(min-width:1400px) {
    .mb-xxl-10 {
        margin-bottom: 8rem !important;
    }
}

.col-20 {
    flex: 0 0 auto;
    width: 20%;
}

@media (min-width:576px) {
    .col-sm-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width:768px) {
    .col-md-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width:992px) {
    .col-lg-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width:1200px) {
    .col-xl-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width:1400px) {
    .col-xxl-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.vh-75{
    height: 75vh !important;
}

.bg-image {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.bg-fixed{
    background-attachment: fixed;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

.badge-notification {
    position: absolute;
    font-size: 0.6rem;
    padding: 0.2rem 0.35rem;
    margin-top: -0.1rem;
    margin-left: -0.5rem;
}

.btn-floating {
    --btn-icon-width: 2.3125rem;
    width: var(--btn-icon-width);
    height: var(--btn-icon-width);
    border-radius: 50%;
    padding: 0;
}

.btn-floating .fab,
.btn-floating .far,
.btn-floating .fas {
    width: var(--btn-icon-width);
    line-height: var(--btn-icon-width);
}

#main-navbar {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control.required {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgb(220 53 69 / 25%);
}

/* Color styles  */
.text-first {
    color: var(--firstColor);
}

.bg-first {
    background-color: var(--firstColor);
}

.border-first{
    border: 1px solid var(--firstColor);
}

/* Font sizes */
.small,
small {
    font-size: 0.75rem !important;
}

/* Button styles  */

.btn-outline-first {
    color: white;
    border: 1px solid var(--firstColor);
    background: var(--firstColor);
    text-transform: uppercase;
    font-weight: bold;
}

.btn-outline-first:hover, .btn-outline-first:active {
    color: white !important;
    background: var(--firstColor) !important;
    border: 1px solid var(--firstColor) !important;
}

/* Navbar image  */

img.logo {
    height: 90px;
    width: auto;
    transition: 0.75s;
}

.navbar-scroll img.logo {
    height: 75px;
    width: auto;
    transition: 0.75s;
}

/* Hover animation */

.nav-link {
    font-size: 1.5rem !important;
    color: white !important;
    text-transform: uppercase;
    transition: inherit;
    padding: 0 !important;
    margin: .5rem;
    margin-bottom: 2px !important;
}

.navbar-nav li.nav-item a {
    --border-width: 2px;
    --bottom-distance: 0px;

    background-image: linear-gradient(var(--navbar-border-color), var(--navbar-border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    background-position: 50% calc(100% - var(--bottom-distance));
}

.navbar-nav li.nav-item a:hover {
    /*background-size: 100% var(--border-width);*/
    transition-duration: .5s;
    color: var(--navbar-color) !important;
}

.navbar-nav li.nav-item .nav-link.active {
    color: var(--navbar-color) !important;
}

/* Mobile nav */

.offcanvas-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.animation-pulse{
    transition: transform .3s;
}

.animation-pulse:hover{
    transform: translateY(-10px);
}

.nav-item-divider{
    display: flex;
    align-items: center;
}

.nav-item-divider:not(:last-child)::after {
    content: "|";
    color: var(--firstColor);
}

.socials a{
    transition: transform .3s;
}

.socials a:hover{
    transform: translateY(-5px);
    background-color: var(--firstColor);
    border: none;
}

@supports (-webkit-touch-callout: none) {
    .vh-100 {
        height: -webkit-fill-available !important;
    }
}