.infoPage{
    padding: 20px;
    margin: 30px auto;
    max-width: 900px!important;
    
}
.infoPage strong{
    font-weight: bold;
}
.infoPage p,
.infoPage h1,
.infoPage h2,
.infoPage h3,
.infoPage h4,
.infoPage h5,
.infoPage h6{
    margin-bottom: 15px;
}
.infoPage li{
    margin-bottom: 5px;
}
.infoPage ol{
    list-style:  decimal;
    padding-left: 15px;
}
.infoPage ul{
    list-style: initial;
    padding-left: 15px;
}
.infoPage .entry-content {
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;

}
.footBlock {
    display: flex;
    justify-content: space-between;
}
.infoPage footer{
    display: flex;
    border-radius: 10px;

    justify-content: space-between;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 10px;
    background-color: #fff;
}
.infoPage footer ul{
    display: flex;
    list-style: none!important;
}

.infoPage footer ul li{
    margin-right: 10px;
}
.infoPage footer a{
    color: #3c5a96;
    text-decoration: none;
}
.infoPage footer a:hover{
    text-decoration: underline;
}
.partnersPage .entry-content{
        max-height: 600px;
    overflow-y: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #fff;
    border: 20px solid #fff;
    border-radius: 4px;
    box-shadow: 0px 14px 32px rgba(0, 0, 0, 0.16);

}
.partnersPage .entry-content p {
    display: block;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}
@media screen and (max-width: 1024px){
    .partnersPage .entry-content p{
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}
@media screen and (max-width: 600px){

    .partnersPage .entry-content p{
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    
    
}
@media screen and (max-width: 400px){

    .partnersPage .entry-content p{
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1 ;
    }
    
    
}