.absolute-top{
    position: fixed;
    top:0;
    z-index: 1000;
    width: 100%;
}

.absolute-left{
    position: absolute;
    left: 0;
}

.header-links{
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    position: absolute;
    margin-top: 10px;
    border: 1px solid orangered;
}

.header-links a{
    padding: 5px;
    text-decoration: none;
    color: white;
    transition: 300ms ease-out;
}

.header-links a:hover{
    background-color: white;
    border-bottom: 1px solid white;
    color: black;
}

.social-media-holder a{
    padding:10px;
    transition: 300ms ease-in;
}

.social-media-holder a:hover{
    background-color: whitesmoke;
    color:orangered !important;
    transform: scale(1.3);
}


.no-decoration{
    text-decoration: none;
    list-style-type: none;
    padding: 0;
    font-weight: bold;
}

.menu-holder{
    width: 80%;
    margin-left: 20%;
    float: left;
    position: fixed;
    background-color: white;
    height: 100%;
    right:100%;
    top:0;
    /* left: -100%; */
    transition: 300ms ease-in-out;
}

.list-group a{
    color:black;
    font-weight: bolder;
}

.slider-title{
    position: absolute;
    bottom: 0;
}

.blink{
    animation: blink 1000ms linear infinite;
}

.fly_left{
    animation: fly_left ease-in-out 600ms;
    animation-fill-mode: forwards;
}

.fly_right{
    animation: fly_right ease-in-out 600ms;
    animation-fill-mode: forwards;
}

#slider-dots-holder i{
    transition: 300ms ease-in-out;
}


@keyframes fly_left {
    from{
        right: 10%;
    }
    to{
        right: 0%;
    }
}

@keyframes fly_right {
    from{
        right: -10%;
    }
    to{
        right: 0%;
    }
}

@keyframes blink {
    from{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

.desktop-links-holder center a{
    padding: 10px;
    color:white;
}

.desktop-link{
    padding:20px;
    font-weight: bolder;
    color: orangered;
    text-decoration: none!important;
    transition: 300ms linear;
}

.desktop-link:hover{
    border-bottom: 2px solid white;
}

footer *{
    font-size: large;
}

p,b,span,h3{
    font-family: OpenSans-Medium;
    font-size: 15px!important;
}

h1,h2,h3{
    font-size: xx-large!important;
    font-weight: bolder;
    color: white;
}

.right{
    right: 0;
}

.absolute{
    position: absolute;
}

.bg-theme{
    background-color: #d76c28;
}
.text-theme{
    color: #d76c28;
}

.notch{
    width: 100px;
    height: 5px;
    background-color: rgb(195, 28, 56);
    border-radius: 10px;
    padding: 2px;
}

.card-hover:hover{
    background-color: rgba(0, 0, 100, .1)!important;
    cursor: pointer;
    transition: 200ms ease-in;
    box-shadow: #ccc 0px 3px 10px;
    transform: scale(1.05);
}