#sekcja1 {
    position: relative;
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#sekcja1 > h1 {
    position: absolute;
    font-size: 3rem;
}

#trailerVideo {
    width: 175%;
    height: 175%;
    opacity: 0.47;
	border-radius: 16px;
}

@media (max-width: 1250px) {

	#trailerVideo {
		width: 100%;
		height: 100%;
	}
	
	#sekcja1 > h1 {
		font-size: 2rem;
	}
	
}

#sekcja2 {
    position: relative;
    width: 80%;
    height: auto;
    margin-top: 10%;
    display: flex;
    border-radius: 16px;
    padding: 1%;
    background-image: radial-gradient(circle at left center, rgb(89, 130, 252) 0%, rgba(41, 53, 86, 0) 15%); 
}

#sekcja2Left {
    width: 50%;
    height: 100%;
}

#sekcja2Left > h1 {
    margin-bottom: 0;
}

#sekcja2Left > hr {
    width: 75%;
    border: 1px solid var(--accent);
    margin-top: 0;
    margin-left: 0;
}

#sekcja2Right {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sekcja2Right > h1 {
    position: absolute;
}

#sekcja2Right > img {
    width: 100%;
    height: 100%;
    border-radius: 16px 0 16px 0;
    opacity: 0.47;
}

@media (max-width: 1250px) {
	
	#sekcja2 {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-image: none;
	}
	
	#sekcja2Left, #sekcja2Right {
		width: 75%;
	}
	
	#sekcja2Right > img {
		margin-top: 5%;
	}
	
}

@media (max-width: 992px) {
	
	#sekcja2Left, #sekcja2Right {
		width: 100%;
	}
	
	#sekcja2Right > h1 {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 2rem;
		text-align: center;
	}
	
	#sekcja2Right > img {
		margin-top: 10%;
	}
	
}

#sekcja3 {
    margin-top: 5%;
    width: 80%;
}

    .sekcja3Block {
        width: 100%;
        height: 35vh;
        margin-top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sekcja3Block > img {
        width: 35%;
        border-radius: 16px 0;
    }

    .sekcja3BlockContent {
        position: relative;
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-right: 2px solid var(--main);
        border-bottom: 2px solid var(--main);
        box-sizing: border-box;
        -webkit-box-shadow: inset -11px -11px 22px -22px var(--main);
        -moz-box-shadow: inset -11px -11px 22px -22px var(--main);
        box-shadow: inset -11px -11px 22px -22px var(--main);
        border-radius: 16px 0;
    }

    .sekcja3BlockContent > h1 {
        color: var(--main);
    }

    .sekcja3BlockContent > span {
        font-size: 1.1rem;
        color: var(--muted);
    }

    .sekcja3Button {
        position: absolute;
        background-color: var(--main);
        border: none;
        bottom: 10px;
        right: 10px;
        border-radius: 16px 0;
        padding: 1%;
        transition: background-color .5s ease;
    }

    .sekcja3Button:hover {
        cursor: pointer;
        background-color: var(--secondary);
    }
	
@media (max-width: 992px) {
	
	#sekcja3 {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	
	.sekcja3Block {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
	}
	
	.sekcja3Block > img {
		width: 85%;
	}
	
	.sekcja3BlockContent {
		width: 85%;
		margin-top: 5%;
	}
	
	.sekcja3Button {
		position: static;
		align-self: flex-end;
		margin: 3% 10px 10px 0;
		padding: 2%;
	}
	
}

.sectionImg {
    border-left: 2px solid var(--main);
    border-top: 2px solid var(--main);
}