/* TRHEE COLS ITALIA NORTH CENTER SUOTH */
.three-cols-italia {
    display: inline-block;
    width: 32.5%;
    padding: 1.5%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center 35px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.three-cols-italia h5 {
    margin-top: 20px;
}
.three-cols-italia p {
    margin-bottom: 30px;
}
.three-cols-italia a {
    text-decoration: none;
    color: rgba(83,84,87,1);
}
.three-cols-italia a:hover {
    color: rgba(150,150,150,1);
}
.wrapper .three-cols-italia:nth-child(1) {
    background-image: url(../App_Images/italia-nord.svg);
}
.wrapper .three-cols-italia:nth-child(2) {
    background-image: url(../App_Images/italia-centro.svg);
}
.wrapper .three-cols-italia:nth-child(3) {
    background-image: url(../App_Images/italia-sud.svg);
}
.italy-box-city {
    display: inline-block;
    width: 32.6%;
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
	overflow: hidden;
  	text-overflow: ellipsis;
}
.italy-box-city:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 4px;
    border-top: 3px solid rgba(255,102,0,1);
    border-right: 3px solid rgba(255,102,0,1);
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 1160px) {
    .italy-box-city {
		width: 31.6%;
	}   
}

@media only screen and (max-width: 900px) {
    .three-cols-italia {
        display: block;
        width: 96%;
        background-size: 50%;
        background-position: center center;
    }  
}