@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --light: #ffffff;
    --light-darker: #dcdcdc;
    --medium: #b8b8b8;
    --medium-dark: #686868;
    --dark: #303030;
    --night: #121212;
    --superlight-gray: #f2f2f2;
    --white: #ffffff;

    --maize-light: #ed9654;
    --blue: #861f41;
    --maize-dark: #ab622a;

    --blue-bright: #0075e3;
    --blue-light: #a9375d;
    --maize: #e5751f;
    /*or rgb(0, 39, 76) */
    --blue-dark: #002446;
    --black: #000000;

    --maroon: #861f41;
    --orange: #e5751f;


    /* gradients */
    --blue-grad: linear-gradient(0deg, var(--maroon) 0%, #00386c 100%);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    touch-action: pan-y;
    overflow-y: auto;
    min-height: 100%;
    color: black;
    background-color: var(--light);
    width: 100%;
    padding: 0;
}

button {
    /*override default styles*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input {
    /*override default styles*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Hide horizontal scrollbar */
::-webkit-scrollbar {
    height: 0;
}

/* Vertical scrollbar styling */
::-webkit-scrollbar:vertical {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #d1d1d1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.topnav {
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    background-color: white;
    border-color: white;
    box-shadow: none;
    color:var(--maroon);
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 6px solid var(--orange);
}

.navbar-brand {
    font-weight: bold;
    color: var(--maroon) !important;
}

.navbar-toggler {
    color: var(--maroon) !important;
    border-color: var(--maroon) !important;
}

.navbar-toggler-rzd{
    color: var(--maroon) !important;
    background-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-item {
    font-weight: 600;
}

.topnav .nav-link {
    color: var(--maroon) !important;
}



.bottombar {
    background-color: var(--white);
    color: var(--maroon);
    font-size: 16px;
    font-family: "Inter Tight", sans-serif;
    font-weight: bold;
    position: relative;
    bottom: 0px;
    width: 100%;
}

.sectioncontainer {
    background-color: var(--superlight-gray);
}

#footer {
    flex-shrink: 0;
    border-top: 10px solid var(--orange);
}

@media (min-width:680px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        min-height: calc(100vh - 82px);
    }
}

@media (max-width: 677) {
    .wrapper {
        display: none;
        flex-direction: none;
    }
}

.footer-cap {
    width: 100%;
    height: 10px;
    background: var(--orange);
    content: "";
    margin-bottom: -10px;
}

.overlay-front-text {
    position: relative;
    z-index: 1;
}

.btn-background-in {
    position: relative;
    overflow: hidden;
}

.btn-background-in:hover {
    background: none;
}

.btn-background-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-100% + 5px);
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-background-in:hover::before {
    left: 0;
}

.maize-dark-before::before {
    background: var(--maize-dark);
}

.blue-light-before::before {
    background: var(--blue-light);
}

.blue-light-before:hover {
    color: var(--light);
}

.footer-link {
    color: var(--maroon);
}

.bb-social-link a {
    text-decoration: none !important;
    color: var(--maroon);
}

.bb-social-link a:hover {
    color: var(--blue-bright);
}

.bb-social-header {
    font-size: 18px;
}

@media (max-width: 575px) {
    .bb-socials {
        text-align: left !important;
        margin-top: 10px;
    }
}