/* navbar do przycisku */
.navtwo-drop-items {
    display: none !important;
}
.navtwo-drop-items .nav-link {
    color: black !important;
    transition: .3s;
}
.navtwo-drop-items .nav-link:hover {
    color: red !important;
}
.navtwo-drop-items .nav-link-active {
    color: red !important;
    cursor: default;
}



/* navTwo drugi pasek */
.navtwo {
    display: block;
    width: 100%;
    height: 50px;
}
.navtwo .navtwo-container {
    display: flex;
    height: 100%;
    padding: 0px 30px;
}
.navtwo .navtwo-container .navtwo-items {
    /* width: 100%; */
    margin: auto;
    padding: 00px 10px;
}
.navtwo .navtwo-container .navtwo-items .navtwo-text {
    color: black;    

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease-out;
}
.navtwo .navtwo-container .navtwo-items:hover >  .navtwo-text{
    color: rgb(250, 40, 40);
}
.navtwo .navtwo-container .navtwo-items .navtwo-text::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    border-radius: 2px;
    
    background-color: red;
    transition: .35s ease-in-out;   
}
.navtwo .navtwo-container .navtwo-items:hover >  .navtwo-text::after {
    width: 100%;
}
/* active color text */
.navtwo .navtwo-container .navtwo-items-active .navtwo-text {
    color: red;
    font-size: 17px;
}
/* active border */
.navtwo .navtwo-container .navtwo-items-active .navtwo-text::after {
    width: 100%;
    background-color: rgb(224, 0, 0);
}



/* ------------ */
main .one {
    display: flex;
    margin-top: 30px;
}

main .one .one-title {
    margin: 0px auto;
    color: red;
}
main .one .one-title::after {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    margin: 0px 10px;
    margin-top: 5px;
    padding: 0px 20px;

    border-radius: 10px;
    background-color: black;
}

main .info {
    margin: auto;
}
main .info .row {
    margin: auto;
    justify-content: center;
}
main .info .block {
    display: flex;
    width: 370px;
    height: 100px;
    margin: 20px;
}
main .info .block .icon {
    margin: auto 0px;
    opacity: 0.9;

    width: 80px;
    height: 80px;
}
main .info .block .iconf {
    margin: auto 0px;
    opacity: 0.9;
}    
main .info .block .line {
    width: 2px;
    height: 100%;

    margin-left: 5px;
    margin-right: 2px;

    background-color: gray;
}
main .info .block .txt {
    margin: auto 0px;
    font-weight: 600;
    font-size: 33px;
    line-height: 35px;
    cursor: default;
}
/* pasek dolny */
.tel{
    display: flex;
    margin: 0px auto;
    justify-content: center;
}
.text-danger {
    margin-left: 5px;
}

.infoWiecej {   
    color: rgb(225, 0, 0);
    margin: 60px 0px;

    text-decoration: underline;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

/*  */
@media (max-width: 991px) {
    .navtwo-drop-items {
        display: block !important;
    }   
    .navtwo-line {
        width: 100%;
        height: 2px;
        margin: 20px 0px;
        margin-top: 30px;
        background-color: gray;
    }
    .nav-link-active::after {
        border: 1px solid red !important;
    }
    .nav-item:hover > .nav-link-active::after {
        width: 100% !important;
    }
}
/* zmniejszenie paska dodatkowego tekstu 1 */
@media (max-width: 1285px) {
    .navtwo .navtwo-container .navtwo-items .navtwo-text {
        font-size: 13px !important;
    }
}
/* zmniejszenie paska dodatkowego tekstu 2 */
@media (max-width: 1073px) {
    .navtwo .navtwo-container .navtwo-items .navtwo-text {
        font-size: 11px !important;
    }
}
/* wyłączanie paska dodatkowego */
@media (max-width: 991px) {
    .navtwo {
        display: none !important;
    }   
}
