/* 
 * Elischer-Development: This is the custom css file for a given theme, in case the usage 
 * of SASS is not desired.
*/


/*
 * Basic theme correction 
*/

/* Boostrap */

.navbar-brand {
    margin: 0;
}

.wrapper {
    padding: 0;
}

#logo-title-wrapper * {
    margin: 0; 
    padding: 0;
}

/*
 *General Custom CSS 
*/

/* Fonts */

@font-face {
    font-family: 'Some Font';
    src: url('assets/some-font.oft') format('oft'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  

/* Extra small devices (portrait phones, less than 576px) */

* {
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
	overflow-x: hidden !important;
    width: 100%;
}

a:hover {
    text-decoration: none;
    color: grey;
}

#top-bar-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#top-bar-menu li {
    margin: 10px;
}

#footer-social-wrapper a  {
    display: block;
}

#footer-social-wrapper a span {
    display: block !important;
    margin: 0 auto;
}

/* Small devices (landscape phones, less than 768px) */
@media (min-width: 576px) {
    
}
/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) {
    
    /* Elischer-Development:: Prevent Second Scroll-Bar on Desktop Screen*/
    html, body {
        overflow: visible !important;
        width: 100%;
    }

}
/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) {}
/* Large devices (desktops, more than 1200px) */
@media (min-width: 1200px) {}



.hidden {
    display: none !important;
} 
