/* Adds a border radius to images on the left-bottom corner */

.left-border img {
	border-radius: 0 0 0 90px;
  display: inline-block;
  overflow: hidden;
  background-color: #fff6ed; 
}

.left-border img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
 	object-fit: cover;
}

.left-border-card {
border-radius: 0 0 0 90px;
}

.right-border-bottom img {
	border-radius: 0 0 90px 0;
  display: inline-block;
  overflow: hidden;
  background-color: #fff6ed; 
}

.right-border-bottom img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
 	object-fit: cover;
}

.right-border-top {
	border-radius: 0 90px 0 0;
  overflow: hidden;
}


.left-border-top .uk-tile-default {
		border-radius: 90px 0 0 0;
}

/* Adds a longer line to section titles */
.tm-section-title>::before {
    top: -375px;
    height: 350px;
}

/* Adds a border radius to images in a slideshow */
.heroSlideshow-leftBottom .uk-slideshow-items {
    border-radius: 0 0 0 90px;
}

.heroSlideshow-leftTop .uk-slideshow-items {
    border-radius: 90px 0 0 0;
}

.heroSlideshow-rightBottom .uk-slideshow-items {
    border-radius: 0 0 90px 0;
}