*{
  box-sizing: border-box;
}


html {
    height: 100%;
    
}

body {
	margin: 0px;
	height: 100%;

    font-size: 14px;
    line-height: 1.5em;
    font-family: 'Open Sans', sans-serif;

}


a:active,
a:hover {
	outline: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 300;
    line-height: 1.2;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}



sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: none;
}

ol {
    list-style: none;
    padding:0px;
    margin:0px;
  
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
	text-decoration:none;
}

.menu a:hover, .menu a:active {
	outline: 0;
	color:#ccc !important;
	text-decoration:none !important;
}

.menu li a:hover, .menu li a:active {
	outline: 0;
	background-color:#313131 !important;
	text-decoration:none !important;
}

iframe {
    width: 100%;
    min-height: 250px;
}


/*--------------------------------------------------------------
# carosel slider
--------------------------------------------------------------*/
* {
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    outline: 0px;
    
}
.carousel {
    position: relative;
    height:500px;

    width: 100%;
    margin:0 auto;
    margin-bottom:0px;
    margin-top:0px;
}

.carousel__image {
    width: 100%;
    height:100%;
    object-fit: cover;
}

.carousel__track-container {
    width: 100%;
    background:#212121;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel__track {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    height: 100%;
}

.carousel__slide {
    position: absolute;
    top:0;
    bottom: 0;
    width:100%;
}

.carousel__button {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0px;
    cursor: pointer;
}

.carousel__button--left {
    left:30px;
    z-index: 9;
}

.carousel__button--right {
    right:30px;
    z-index: 9999;
}


.carousel__button span {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    outline: 0;
}
.carousel__button:hover {
    outline: 0px;
}

.carousel__nav {
    position: absolute;
    padding: 10px 0;
    bottom:0px;
    z-index: 99999;
    left: 0px;
    right: 0px;
    text-align: center;
}

.carousel__indicator{
    position: relative;
    line-height:15px;
    border:0;
    border-radius: 50%;
    width: 15px;
    height:15px;
    background:  rgba(0, 0, 0, .3);
    margin:0 12px;
}

.carousel__indicator.current-slide {
    background:  rgba(0, 0, 0, .75);

}

.slider-rub a, .slider-rub a:hover, .slider-rub a:active {
    color:#fff;
    text-decoration: none;
}

.slider-text-holder {
    position: absolute;
    max-width: 80%;
    bottom:50px;
    left:50px;
}

.slider-rub {
    background: rgb(218, 68, 83);
    background: rgba(218, 68, 83, 0.7);
    font-weight: 400;
    font-size: 24px;
    max-width: 640px;
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 0;
    color: #fff;
    position: relative;

}

.slider-text {
    position: relative;
    max-width: 500px;
    min-height:50px;
    color:#ccc;
    background-color:#212121;
    padding:15px;

}

.is-hidden {
    display: none;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Jobb
--------------------------------------------------------------*/

.jobb-img-holder {
    padding-bottom:60px !important;
}

.jobb-holder img {
    max-width: 100% !important;
}
.jobb-header a {
    text-decoration: none;
    font-weight: 300;
    color:#212121;

}

.jobb-links {
    margin-left:10px !important;
}

.jobb-links  li {
    line-height: 2rem;
}

.jobb-info {
    float:left;  
    width:50%; 
    padding-right:20px;
}

.jobb-img {
    float:left; 
    width:45%;
}
.jobb-sticky {
    border:1px solid #eaeaea;
}


hr {
    border-bottom: 1px solid pink;
    background-color:pink;
}


/*--------------------------------------------------------------
# HACKS
--------------------------------------------------------------*/

#hacks-menu .sticky-top {
    border:1px solid #eaeaea;
    padding:15px;
  
}

.jobb .sticky-top {
	  top:40px !important;
}


.hacks-content {
    border:1px solid #eaeaea;
    padding-left:15px;
    padding-right:15px;
    padding-top:0px;
    margin-top:0px;
    margin-bottom:30px;
}

.hacks-header {
    text-decoration: none;
    font-weight: 300;
    color:#212121;
    margin-bottom:0px;

}

.hacks-header h4 {
    text-decoration: none;
    font-weight: 500;
    color:#212121;

}


.hacks-content a {
    text-decoration: none;
    color:#212121;
}
.hacks-content a:hover, .hacks-content a:active {
    text-decoration: none;
    color:#212121;
}

.hacks-links {
    margin-left:10px;
}

.hacks-links a {
    font-size: 1.1rem !important;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}



.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------by christin -----------------------*/

body {
	background-color: #212121;
	
	
	
}

.wrapper {
	padding-top:30px;
	padding-bottom:40px;
	border-bottom:1px solid #eaeaea;
	margin-bottom:15px;
}



.site-header {
	height: 75px;
	font-size: 1em;
	background-color: #212121;
	position:relative;
	width: 100%;
	z-index: 999;
	top:0px;
}

#site-header {
	clear: both;
	
}

.site-header nav a  {
	color: #ffffff;
}

.entry-title a {
	font-size: 1.1em;
	color:#212121;
}

.entry-content {
	line-height: 2em;
}

.site-branding {
	text-align: center;

	width: 260px;
	padding-top:20px;
	
}

nav a:visited, nav a:active, nav a:focus {
	color:#fff !important;
	
}

.header-image {
	max-width: 100%;
	background-position:center center;
	background-size: cover;
	background-repeat: no-repeat;	
}

#footer {
    padding-top:40px;
    padding-bottom:20px;
	background-color: #212121;
	color:#fff;
    margin-top: auto;
    display: inline-flex;
    font-size: smaller;
    min-height: 300px;
}

#footer aside {
	border:0px solid #ccc;
	color: #eaeaea;
}

#footer .widget-title {
    margin-bottom:15px;
    font-weight: 300;
}

#footer a {
	color:#eaeaea !important;
	vertical-align: top;
	margin-bottom: 20px;
	display: block;
}

.widget h2 {
	padding-bottom:0px;
	margin-bottom:0px;
	background-color:#212121;
}

aside a {
	color:#212121;
	text-decoration: none;
}

ul {
	padding:0px;
	margin:0px;
	list-style: none;
}

.post-thumbnail img {
	width: 100%;
}

.cont {
    min-height: calc(100vh - 375px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex;
    align-items: stretch;
    align-content: stretch;
}

.big {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex: 1;

}
#main {
    padding-bottom:30px;
}

#main-holder {
    background-color: transparant #D0D76C;
    color:#212121;
    width: 50%;
    display: inline-flex;
	min-height: 600px;
	position: relative;

}

#main-holder .main-inner {
    width: 80%;
    margin-left:auto;
    margin-right:auto;
    display: block;
    
}

#main-holder canvas {
	position: absolute;
	top:0px;
	left:0px;
	z-index: -1;
	opacity: 1;
}

.main-content {
    width: 80%;
    margin-left:auto;
    margin-right:auto;
    padding-bottom: 2rem;
	padding-top: 80px;
    
}

#leftpage {
    background-color: #98A851;
   
    width: 50%;
            padding-top:30px;
        padding-bottom:60px;
        min-height: 600px;;
     
    
}

.left-inner {
    margin-top:2rem;
    padding-bottom: 2rem;
    width: 80%;
    margin-left:auto;
    margin-right:auto;
    display: block;

}

  header .container-fluid {
        
        display: flex;
        justify-content: center;
        align-items: center;
       

    }

    .custom-logo-link {
    order: 0;
    text-align: center;
    width: 250px;
    margin: auto auto 20px;
  }



/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/



.main-navigation ul li {
    display: block;
    width: 100%;
    line-height: 40px;
  
}

.main-navigation li:last-of-type { 
    border-bottom: 0px solid #404040; 
}

.main-navigation ul li:hover {
    background-color: #404040;
}

.bars2 {
    color: #fff;
    text-decoration: none;
    position: absolute;
    top:25px;
    left:35px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    position: absolute;
    top:75px;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}


.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color:#fff;
}

article {
    float:left;
    width:75%;
    margin-right:15px;
    border:1px solid #ccc;
    background-color:#fff;
    
    min-height:350px;
    padding:20px;
    clear: both;
    margin-top:0px;
    margin-bottom: 20px;
}

.header-image {
    max-width: 100%;
    min-height:200px;
    height:20vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#ham {
    position:absolute;
    left:35px;
    top:20px;
    display:block;
    line-height: normal;
    z-index: 999;
}

#ham div {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    position: relative;
}


.main-navigation {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 1050;
    top: 0px;
    left: 0px;
    background-color: #212121;
    overflow-x: hidden;
    padding-top: 15px;
    transition: 0.5s;
    display: block;
}

.sticky-top {
    z-index: 100 !important;
    margin-bottom:20px;
}

.main-navigation ul {
    background-color:#212121;
}

.main-navigation li {
    color:#fff;
    border-top:1px solid #484848;
    line-height:3em;
    text-align:center;
}

.main-navigation li a {
    color:#fff;
    line-height:3em;
    background-color:#212121; 
}

article {
    float:left;
    width:100%;
    margin-right:15px;
    padding-top:15px;
    border:1px solid #ccc;
    min-height:350px;
}

.comment-reply-title {
    margin-top:30px;
}

.sticky-top .widget {
    list-style-type: none;
    margin: 0;
        margin-bottom: 0px;
    border: 1px solid 
    #eaeaea;
    padding: 1.5rem;
    border-radius: .5rem;
    margin-bottom: 20px;
}

.blog-post {
    border: 1px solid 
    #eaeaea;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
}

.blog-post h1 {
	margin-bottom:15px;
}

head {
    top:0px;
}


@media only screen and (max-width: 1200px) {
    .container {
        max-width: 100% !important;
        width: 100% !important;


    }
}

@media only screen and (max-width: 783px) {
   
   
    .big {
        width: 100%;
        min-height: 100%;
        flex: 1;
        flex-direction: column;
    }

    #leftpage {
        width: 100%;
        padding-bottom: 2rem;
        padding-top: 15px;
        flex: 1;
        min-height: 100px;
    }

    #main-holder {
        width: 100%;
        color:#212121;
        position: relative;
    }

    .main-navigation ul {
        list-style: none;
        margin: 0;
        position: absolute;
        top:121px;
        padding-left: 0;
    }
    
    .jobb-links {
    	margin-left:0px !important;
    	
    }
    
    .jobb-links li {
    	
    	display:inline-table !important;
    	margin-right:15px;
    }
    
    
}