:root{
    --light: #fff;
    --dark: #000;
    --gray: #7c7c7c;

    --block-gray: #8f8f8f;
    --non-photo-blue: #92dce5ff;

}
/* - - - - HERO - - - - */
.hero {
    background-image: url(../img/glowna/20231102_095049.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: start;
    margin-top: -88px;
}
.captions {
    max-width: 50%;
    margin-left: 140px;
    margin-top: 170px;
    font-size: 23px;
    color: var(--light);
}
.hero h2 {
    font-size: 44px;
    margin: 15px 0 20px 0;
}
.hero p {
    line-height: 1.75;
    padding-bottom:25px;
}

/* - - - -  MAIN - - - - */
.choice {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
    padding: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.first, .second, .third {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 130px;
}
.duze2 {
    display: flex;
    justify-content: center;
}
.duze1, .duze2 {
    width: 500px;
    height: 400px;
    margin: 25px;
    background-color: var(--block-gray);
}
.duze1 h3, .duze2 h3 {
    font-size: 40px;
    margin: 30px 20px -40px 10px;
}
.duze1 img {
    width: 600px;
}
.duze2 img {
    width: 500px;
}
.male, .male2 {
    width: 280px;
    height: 270px;
    margin: 10px;
    background-color: var(--block-gray);
}
.male2 img {
    width: 200px; 
    margin-top: 30px;
}
.male a, .male2 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.male a:hover, .male2 a:hover, .duze1 a:hover, .duze2 a:hover {
    color: var(--non-photo-blue);
}
.o-nas {
    text-align: center;
    width: 650px;
    margin: -70px auto 100px;
}
.o-nas h3 {
    font-size: 45px;
    font-family: 'Gruppo', cursive;
}
.lokalizacja {
    text-align: center;
}
/* - - - - MEDIA QUERY - - - - */
@media (max-width: 768px) {
    .hero {
        background-image: url(../img/glowna/20231102_095202.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: left;
        height: 100vh;
        margin-top: -60px;
    }
    .captions {
        font-size: 20px;
        max-width: 70%;
        margin: auto;
    }
    .captions h2 {
        font-size: 22px;
    }
    .duze1, .duze2 {
        width: 300px;
        height: 250px;
    }
    .first, .second, .third {
        flex-direction: column;
    }
    .first h3 {
        font-size: 20px;
    }
    .first img {
        width: 300px;
    }
    .male, .male2 {
        width: 180px;
        height: 200px;
    }
    .male img {
        width: 130px;
    }
    .male2 img {
        width: 150px;
    }
    .o-nas {
        font-size: 15px;
        width: 300px;
    }
}