.show{
    display: block !important;
}
.hide{
    display: none !important;
}

.hamburger-btn{
    background-color: #fff !important;
    transition: background-color .15s ease-in-out;
    cursor: pointer;
}
/* .hamburger-btn:hover{
    background-color: #ddd !important;
} */
.active-menu-item{
    color:#cf372c !important;
}
.floating-menu-a{
    transition: color .15s ease-in-out;
}
.floating-menu-a:hover{
    text-decoration: none !important;
}
.tooltip{
    position:absolute;
    z-index:9999;
    background-color:#424242;
    height:30px;
    padding:0 10px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius:4px;
    color:white;
    font-size:14px;
    letter-spacing:.02em;
    opacity:0;
    transform: translateY(5px);
    pointer-events:none;
}
.tooltip::after{
    content:"";
    position: absolute;
    bottom: -9px;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-right: 6px solid transparent;
    border-left: 7px solid transparent;
    border-top: 6px solid #424242;
}
.tooltip-reveal{
    animation: tipReaveal .4s forwards;
}
.tooltip-conceal{
    animation: tipConceal .4s forwards;
}  

@keyframes tipReaveal {
  from {opacity: 0; transform: translateY(5px);}
  to {opacity: 1; transform: translateY(0px);}
}
@keyframes tipConceal {
  from {opacity: 1; transform: translateY(0px);}
  to {opacity: 0; transform: translateY(5px);}
}


::selection {
    background-color: rgba(0,0,0,0);
    color: limegreen;
}
::-moz-selection {
    background-color: rgba(0,0,0,0);
    color: limegreen;
}
::-o-selection {
    background-color: rgba(0,0,0,0);
    color: limegreen;
}


.jumbotron-home h1{
    font-size: 82px !important;
    line-height: 90px;
    margin-bottom: 0px !important;
    padding-bottom: 10px !important;
    font-weight: bold !important;
    color: white !important;
}

.jumbotron-home h1 span{
    font-size: 115px !important;
}

.jumbotron-home h3 {
    color: white !important;
    font-size: 30px !important;
    font-family: 'Times New Roman', Times, serif !important;
}

.img-border-vertical{
    border: 1px solid #bbb !important;
    background: linear-gradient(to right, #F2F2F2 0px, #F2F2F2 50%, #313131 50%, #313131 100%) !important;
}

.img-border-horizontal{
    border: 1px solid #bbb !important;
    background: linear-gradient(to bottom, #F2F2F2 0px, #F2F2F2 50%, #313131 50%, #313131 100%) !important;
}

.img-border-dark{
    border: 1px solid #cfcfcf !important;
    background-color: rgba(0,0,0,0) !important;
    box-sizing: border-box !important;
    padding: 80px !important;
}


/* True below 1850px */
@media only screen and (max-width: 1800px) { 
    .left-floating-menu{
        display: none !important;
    }
}