.elka__hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.elka__hero-img {
    width: 100%;
    height: 100vh;

    background: url("../img/background/background_mainpage.jpg");
    background-size: cover;

    position: relative;
}

.elka__hero-text {
    position: absolute;
    width: 40%;
    z-index: 3;

    left: 10%;
    top: 35%;

    text-align: center;

    background: #00171f;
    padding: 2rem 1rem;
    transform: skew(-20deg);

    display: none;
	
	max-width: 90%;
}

.elka__hero-unskew {
    transform: skew(20deg);
}

.elka__hero-text h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

@media screen and (max-width: 1550px) {
    .elka__hero-text h1 {
        font-size: 2rem;
    }

    .elka__hero-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 1220px) {
    .elka__hero-text {
        width: 50%;    
        left: 25%;
        top: 30%;
    }
}

@media screen and (max-width: 750px) {
    .elka__hero-text h1 {
        font-size: 1.4rem;
    }

    .elka__hero-img {
        background: url("../img/background/background_mainpage.mobile.jpg");
        background-repeat: no-repeat;
    }

    .elka__hero-text {
        font-size: 1.1rem;
    }

    .elka__hero-unskew, .elka__hero-text {
        transform: none;
    }
}

@media screen and (max-width: 450px) {
	
    .elka__hero-text {
		left: 12%;
		width: 75%;
        top: 20%;
    }
	
	.elka__hero-unskew, .elka__hero-text {
        transform: none;
    }
	
}