body {
    background:white;
}



/* INNER SECTION */
.homepage-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh; /* ili po potrebi */
	background-color: black;

}

@media(min-width: 768px) {
	.homepage-hero {
		background-color: transparent;
	}
}

.inner-section { 
    height: calc(100vh - 130px);
    position: relative;
    background-position: center center;
    background-size: cover;
    min-height: 600px;
}

.inner-section > div {
    background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0.6) 36%, rgba(255,255,255,0) 80%);
    height: 100%;
    
}

@media (min-width: 767px){
    .inner-section > div{
        clip-path: polygon(0 0, 750% 0, 95% 100%, 0% 100%);
    }
}

.inner-section > div > div{
    max-width: 1550px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: white;
    padding: 0 15px;
}


.inner-section > div > div span {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
	 font-size: 18px;
}

@media (min-width: 767px) {
	.inner-section > div > div span {
		font-size: 20px;
  }
}

.inner-section h1 {
	max-width: 800px;
    font-weight: 600;
    margin-bottom: 20px;
}

.inner-section p {
	max-width: 700px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
	color: var(--grey-section);
}

@media (min-width: 767px) {
	.inner-section p {
		font-weight: 400;
		padding-left: 24px;
		border-left: 4px solid var(--primary);
	}
}

.inner-section .contractor-logo {
	background-color: rgba(255,255,255, 0.8);
	backdrop-filter: blur(3.35px);
	position: absolute;
	bottom: 0;
	right: 0;
	width: fit-content;
	height: fit-content;
	z-index: 1000;
}

.inner-section .contractor-logo img {
	padding: 12px;
	width: 150px;
}

@media (min-width: 768px) {
	.inner-section .contractor-logo img {
		padding: 16px;
		width: 200px;
	}
    .inner-section .contractor-logo  {
        top: 0;
        bottom: auto;
    }
}



@media (min-width: 1400px){
    .inner-section h1 {
        width: 60%;
        margin-bottom: 40px;
    }
    
    .inner-section p {
        width: 50%;
        margin-bottom: 50px;
    }

	 .inner-section .contractor-logo img {
		padding: 24px;
		width: 300px;
	}
}

