@charset "UTF-8";
:root { font-size: 16px; }
html { box-sizing: border-box; }
*, ::before, ::after { box-sizing: inherit; }
html, body { margin: 0; padding: 0; }
body { font-family: sans-serif; }
header, nav, main, section, article, aside, time, footer { display: block; }
h1, h2, h3, h4, h5, h6, p {
    margin:  0 0 15px;
    padding: 0;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.75rem; }
input,
button {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 10px;
    width: auto;
    font: inherit;
}

//---

body {
    font-family: 'Segoe Ui', sans-serif;
}

.c-full-slider {
	
    position: relative;
    width: 100%;
    height: 100vh;
	
}

.p-slide {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
	max-height:1350px;
}

.p-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.p-slide-cont {
    
    position: absolute;
    left: -100%;
    
    max-width: 100%;
   max-height:1350px !important;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 2px 2px 0;
    overflow: auto;
    transition: left 0.5s ease;
}

.p-slide.is-active .p-slide-cont {
    left: 0;
}

#offer > div > div > ul{
	color:#fff;
}

.item {
		box-shadow: 0 0.05em 0.15em 0 rgba(0, 0, 0, 0.05);
		margin-bottom: 20px;
	}

		.item header {
			background: #fff;
			margin: 0;
			padding: 1em 0 1em 0;
			font-size: 0.8em;
		}

			.item header h3 {
				font-size: 1em;
			}

#portfolio > div > div{
		margin-top: -40px;
		margin-left: -40px;
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
		
		
		
}

.image {
		display: inline-block;
		border: 0;
	}

		.image img {
			display: block;
			width: 100%;
		}

		.image.avatar48 {
			width: 48px;
			height: 48px;
			background: #f00;
		}

			.image.avatar48 img {
				width: 48px;
				height: 48px;
			}

		.image.fit {
			display: block;
			width: 100%;
		}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 2em 0;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
		}

		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}





@media (max-height: 320px) {

    .p-slide-cont {
        bottom: 0;
    }
}

@media (max-width: 480px) {

    .p-slide-cont {
        bottom: 0;
    }
}

.p-slide-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 0 3px 0; /* Cuz font... Else '0' */
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    line-height: 1;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background 300ms ease;
    z-index: 3;
    cursor: pointer;
}

.p-slide-arrow:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.p-slide-arrow.is-prev {
    left: 15px;
}

.p-slide-arrow.is-next {
    right: 15px;
}





