@media (min-width: 1250px){
    .icc-container{
        width: 1240px;           
        flex-direction: row;     
        justify-content: space-between;
    }    
    .title{
        width: 1240px;
        font-size: 26px;
    }    
}
@media (min-width: 1024px) and (max-width:1250px){
    .icc-container{
        width: 90%;
        flex-direction: column;
    }    
    .title{
        width: 90%;
        font-size: 26px;
    }
}
@media (max-width: 1024px){
    .icc-container{
        width: 90%;
        flex-direction: column;
    }    
    .title{
        width: 90%;
        font-size: 22px;
    }
}
.icc-container{
    display: flex;    
}
.title{
    font-weight: 500;    
    line-height: 130%;
    color: #232F4F;
    margin: 50px 0 30px 0;
}
@media (min-width: 1250px){    
    .col-1{
        width: 47%;
    }
    .col-2{
        width: 47%;
    }
}
@media (max-width: 1249px){
    .col-1{
        width: 100%;
    }
    .col-2{
        width: 100%;
        margin-top: 60px;
    }
}
.info-block{
    display: flex;
    margin-top: 32px;
}
.info-block img{
    margin-right: 14px;
    width: 46px;
    height: 46px;
}
.info p{
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #232F4F;
}
.italic{
    font-family: 'LatoItalic';
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #788093;
}
.col-2-buttons{
    display: flex;
    margin-top: 50px;
}
.col-2-btn{
    display: flex;
    align-items: center;    
    height: 150px;
    background: white;
    padding: 5px 10px 5px 20px;
    cursor: pointer;
    transition: background 300ms linear;
}
.col-2-btn img{
    margin-right: 32px;
}
.col-2-btn p{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #232F4F;
}
@media (max-width:800px){
    .col-2-buttons{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .col-2-btn{
        width: 100%;
        margin: 30px 0 0 0;
    }
}
@media (min-width: 801px) and (max-width:1250px){
    .col-2-buttons{
        justify-content: space-between;
    }
    .col-2-btn{
        width: 47%;
    }
}
@media (min-width: 1250px){
    .col-2-buttons{
        justify-content: space-between;
    }
    .col-2-btn{
        width: 47%;
    }
}
.col-2-btn:hover{
    background: #3A8EF8;
}
.col-2-btn:hover p{
    color: white;
}
.col-2-btn:hover img{
    filter: brightness(0) invert(1);
}
.email{
    color: #3A8EF8;
}