.tc-container
{
    gap: var(--row-gap) var(--column-gap);
    height: 100%;
    margin: 0 auto;
    max-width: var(--content-width);
    padding-inline-end: 0;
    padding-inline-start: 0;
    width: 100%;
    display: flex;
    align-items: center;
}


.tc_row {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
     flex-wrap: wrap;
	gap: 20px;
}

.tc_col {
    flex: 1;
	width:50%;
    box-sizing: border-box;
}




.hero-slider {
  position: relative;
  overflow: hidden;
	
}

.hero-slide {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
	padding :60px 10px;
	position:relative
}
.hero-slide:before{
	position:absolute;
	content:'';
	background:color-mix(in srgb, var(--e-global-color-secondary) 55%, #000000 4%);
	  width: 100%;
	  height: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
}
.hero-slide-overlay {
	position:relative;
	z-index:9
/*   background: rgba(0,0,0,0.5); */
/*   background:color-mix(in srgb, var(--e-global-color-secondary) 55%, #000000 4%);
  width: 100%;
  height: 100%;
 padding :60px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; */

	
} 

.hero-btn {
  display: inline-block;
  background: #ff6600;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.hero-image
{
width: 100% !important;
  display: flex;
}
.hero-image img {
  max-width: 100%;
	height:100%;
	object-fit:cover
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  background: #ff6600;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


.slick-dots {
    position: absolute;
    bottom: 12px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 99;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 5px;
    padding: 0;
	border-radius:20px;
    cursor: pointer;
    background: #fff;
}

.slick-dots li button:before {
    font-family: 'slick';
	font-size: 8px;
    line-height: 19px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-active button:before 
{
	 color: var( --e-global-color-primary ) !important;
	opacity: 1;
}


@media (max-width: 768px)	
{
	.tc_row {
		flex-direction: column;
	}
	.tc_col {
		width: 100%;
	}
}


