:root {
    --main_color: #ffe512;
    --brend_color: #004f93;
    --bg_white: #fff;
}

.title {
    color: var(--brend_color);
    font-family: sans-serif;
    font-style: italic;
    font-weight: 900;
    /* background-color: var(--main_color); */
}

.michelin-bg {
    background-color: var(--brend_color);

}

.title_container {
    overflow: hidden;
    height: 200px;
}

.regulamin_btn {
    background-color: var(--brend_color);
    color: var(--main_color);
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 3px 3px 0px #003f76;
    transition: .2s linear;
}

.regulamin_btn:hover {
    background-color: #003f76;
    color: var(--main_color);
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: inset 3px 3px 0px #002b50;
    text-decoration: none;
    transition: .2s linear;
}

.title-bg {
    background-color: #ffe512;
    color: #004f93;
    transform: rotate(-5deg);
    height: 400px;
    width: 120%;
    position: relative;
    left: -5%;
    top: -135%;
    border-bottom: 7px solid #004f93;

}

.title-text {
    color: #004f93;
    position: relative;
    top: 80%;
    transform: rotate(5deg);
    left: 5%;
    font-size: 30px;
}

.bg-img {
    background-color: var(--bg_white);
}

.doted-border {
    border-left: 3px dashed var(--brend_color);
    border-top: 3px dashed var(--brend_color);
    border-bottom: 3px dashed var(--brend_color);
}

.scale {
    /* transform: scale(20%); */
    width: 25%;
    border-radius: 20px;
    border: 3px solid #fff;
    transition: .3s linear;

}

.scale:hover {
    border: 3px solid var(--brend_color);
    border-radius: 20px;
}

@media(max-width:992px) {
    .scale {
        /* transform: scale(20%); */
        width: 40%;
    }
}

@media(max-width:767px) {
    .title-text {

        font-size: 25px;
    }
}

@media(max-width:576px) {
    .title-text {

        font-size: 22px;
    }
}