.ts-icon svg{
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
}

.ts-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.ts-split-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ts-split-media{
    position: sticky;
    top: 0;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}
.ts-media-inner{
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 70vh;
	overflow: hidden;
}
.ts-media-inner img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transform: scale(var(--ts-scale, 1.05));
    transition: opacity var(--ts-speed, 0.6s) ease,
     transform var(--ts-speed, 0.6s) ease;
}

.ts-media-inner img.active{
    opacity: 1;
    transform: scale(1);
}

.ts-split-media img.active{
    opacity: 1;
    transform: scale(1);
}

.ts-split-content{
    padding: 150px 0;
	pointer-events: auto;
}

.ts-reveal-item{
	max-width: 520px;
    min-height: auto;
    padding:60px 0;
    display: flex;
	align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}
.ts-reveal-item .ts-btn-reveal
{	 width: auto !important;
	width: fit-content; 
    max-width: 100%; }
/* spacing between items */
.ts-reveal-item + .ts-reveal-item{
    margin-top: 120px;
}

.ts-split-media img{
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.5s ease, transform 0.6s ease;
}
.ts-desc p{
    margin-bottom: 0.8em;
}

.ts-desc p:last-child{
    margin-bottom: 0;
}

@media (max-width: 767px){

    .ts-split-wrapper{
        display: block;
    }

    .ts-split-media{
        position: relative;
        height: auto;
        padding: 10px;
    }

    .ts-media-inner{
        position: relative;
        height: auto;
    }
    .ts-media-inner img{
        position: relative !important;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        opacity: 1 !important;
        transform: none !important;
    }

    .ts-split-content{
        padding: 20px !important;
    }
.ts-reveal-item {
    padding: 0px 0;
}
.ts-reveal-item {margin-top:0px;}
}
/* ==================Reveal Image=================== */
.ts-reveal-image-container{
   display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.ts-reveal-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.ts-reveal-img-wrap {
  visibility: hidden;
  position: relative;
  width: 80%;
  height: 80%;
  max-width: 500px;
  overflow: hidden;
}