.tile-carousel {
    padding: 70px 40px;
}

.tile-carousel .tns-outer {
    position: relative;
    margin-top: 40px;
}

.tile-carousel .tns-controls button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    padding: 0;
    background-color: transparent;
    border: 0;
    z-index: 9;
}

.tile-carousel .tns-controls button i {
    font-size: 30px;
    color: #000;
}

.tile-carousel .tns-controls button:last-child {
    right: -50px;
}

.tile-carousel .tns-controls button:first-child {
    left: -50px;
}

.tile-carousel .tns-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.tile-carousel .tns-nav button {
    background-color: transparent;
    height: 10px;
    width: 10px;
    padding: 0;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}

.tile-carousel .tns-nav button.tns-nav-active::before {
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    padding: 0;
    border-radius: 100%;
    background-color: #000;
}

.tile-carousel .features-tiles > .title {
    font-size: 29px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.tile-carousel .features-tiles > .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}

.tile-carousel .features-tiles .tiles {
    margin-top: 0;
	display: flex;
}

.tile-carousel .features-tiles .tiles .tile {
    height: inherit;
}

.tile-carousel .features-tiles .tiles .tile .wrapper {
	display: flex;
    flex-direction: column;
    height: 100%;
}

.tile-carousel .features-tiles .tiles .tile .wrapper .image {
    padding-top: initial;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.tile-carousel .features-tiles .tiles .tile .wrapper .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.tile-carousel .features-tiles .tiles .tile .wrapper .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 20px;
}

.tile-carousel .features-tiles .tiles .tile .wrapper .content .subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    color: #000;
    margin-bottom: 12px;
}

@media (max-width: 768px) {

    .tile-carousel .tns-controls button:last-child {
        right: -35px;
    }

    .tile-carousel .tns-controls button:first-child {
        left: -35px;
    }

}
