html,body{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.hero{
    background-image: url(../img/regulamin.jpg);
    background-position: center;
}

.price-list{
    background-color: #eee;
    box-shadow: 10px 10px 10px #a3a3a3;
    padding: 10px 0px 30px;
    position: relative;
    margin-bottom: 50px;
}

.price-list::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #0055ff;
    z-index: -1;
}

.price-table{
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.price-table th, td{
    padding: 20px 5px;
    border-bottom: 2px solid orange;
}

.price-table td span{display: block;}

.icons-list{margin-top: 20px;}

.icons{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon{margin: 0 20px 10px;}
.icon i{color: #a3a3a3;}

.icon-text{
    font-weight: 600;
    font-size: 39px;
    color: #a3a3a3;
}

@media(min-width: 425px){
    .price-list{padding: 40px 10px;}
    .price-table td span{display: inline;}
}

@media(min-width: 545px){
    .icons{flex-direction: row;}
}

@media(min-width: 768px){
    .a-breaker{display: block;}
}