:root {
    --main-blue: #38a9ff;
    --deep-blue: #108ee8;
    --main-red: #fa0e36;
    --pink: #ff4567;
}
header {
    background-color: #00bfff;
}

.text-blue {
    color: var(--main-blue);
}

.menu-text-size {
    font-size: 12px;
}

.contact-email {
    background: var(--pink);
}

.contact-email:hover {
    background: var(--main-red);
}

.contact-phone {
    background: var(--main-blue);
}

.contact-phone:hover {
    background: var(--deep-blue);
}

li.nav-item:hover {
    -webkit-box-shadow: 0px 3px 0px 0px #ffffff;
    -moz-box-shadow: 0px 3px 0px 0px #ffffff;
    box-shadow: 0px 3px 0px 0px #ffffff;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

ul.dropdown-menu {
    /*background-color: var(--main-blue);*/
}

a.dropdown-item {
    color: var(--deep-blue);
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: var(--deep-blue);
}

.main-title {
    background: left 50% top 50% / cover no-repeat;
    height: 373px;
}

.title {
    font-family: Fira Sans Condensed, sans-serif;
}

.mask {
    position: absolute;
    top: unset;
    right: 0;
    bottom: unset;
    left: 0;
    width: 100%;
    height: inherit;
    overflow: hidden;
    background: linear-gradient(to right, rgba(45, 44, 62, 0.96) 0%, rgba(45, 44, 62, 0.96) -4%, rgba(255, 255, 255, 0) 100%) fixed;
}

.footer {
    /*background-color: var(--main-red);*/
    flex: 0 0 auto;
}

.link-secondary {
    color: #6c757d;
}

.link-secondary:hover {
    color: #565e64;
}

.copyright {
    min-height: 20px;
    background-color: var(--main-red);
}

.sidebar {
    width: 280px;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    height: 100vh;
    transition-duration: .5s;
}

#blackout {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 50;
}

.close-sidebar-btn {
    position: fixed;
    z-index: 100;
    top: 50px;
    transition-property: right;
    transition-duration: .5s;
}

.toggle-button {
    max-width: 66px;
    right: 20px;
    top: 40px;
}

.animated {
    transition-property: opacity;
    transition-duration: .5s;
}

.btn-toggle-without-before {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 2em !important;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
}

.submenu-mobile {
    margin-top: 0.5rem !important;
    padding-left: 2em !important;
}

.footer-submenu {
    color: black;
}

.footer-submenu:hover {
    color: var(--deep-blue);
}

.menu-btn {
    color: white !important;
    background: rgba(255,255,255,0) !important;
}
.menu-btn:hover {
    color: #4f4f4f !important;
    background: rgba(255,255,255,0) !important;
}