
/*--------------------
Landing
--------------------*/
.superior-service-tile {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 25px auto;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 0;
    margin-bottom: 20px;
}
.superior-service-tile .logo svg {
    fill: #1E1C45;
}
.superior-service-tile .base {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    color: #082352;
    background: #fff;
    display: flex;
}
.superior-service-tile .base  .image {
    background-size: cover;
    background-position: center center;
    width: 50px;
    flex: 1;
}

/*--------------------
Copy
--------------------*/
.superior-service-tile .copy {
    position: relative;
    z-index: 2;
    padding: 20px;
    flex: 2;
}
.superior-service-tile .copy .title {
    line-height: 1;
    margin-bottom: 0;
}
.superior-service-tile .copy .title h1{
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
	color: #c7302e
}
.superior-service-tile .copy .title small {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    color: #c7302e
}
.superior-service-tile .copy .text {
    color: #282652;
    font-size: 15px;
    line-height: 1.3;
}

@media (max-width: 768px){
.superior-service-tile .copy .title h1{
    font-size: 20px ;
}
}


.superior-service-tile .copy .link{
    text-align: right;
}
.superior-service-tile .copy .cta {
    cursor: pointer;
    margin: 10px 0 0;
    background-color: #c7302e;
    background-image: -webkit-linear-gradient(25deg, rgba(255, 90, 88, 0.5), rgba(177, 0, 0, 0.6));
    background-image: linear-gradient(25deg, rgba(255, 90, 88, 0.5), rgba(177, 0, 0, 0.6));
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 1px;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
}

.superior-service-tile .copy .cta:hover {
	background-color: #990000;
}


@media (max-width: 479px){
    .superior-service-tile .base.overlay .copy{
        display: flex;
        flex-direction: column;
    }
    .superior-service-tile .base.overlay .copy a{
        width: 100%;
    }
}