 
 

a {
	color: #fff;
	text-decoration: none;
}
 

 
/* Tabs Start */

.ease {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
		 -o-transition: all .5s;
			transition: all .5s;
}


.tabs-ctnr {
    
    max-width: 1300px;
    margin: 0 auto;
   /* width: clamp(90rem, 60vw, 90rem);*/
   width: 100%;
}
 


.tabs {
	background: #fff;
	position: relative;
	margin-bottom: 50px;
 }

.tabs > input,
.tabs > span {
	width: 20%;
	height: 60px;
	line-height: 60px;
	position: absolute;
	top: 0;
}

.tabs > input {
	cursor: pointer;
	filter: alpha(opacity=0);
	opacity: 0;
	position: absolute;
	z-index: 99;
}

.tabs > span {
	background: var(--primary);
	text-align: center;
	overflow: hidden;
    color: var(--white);
}

.tabs > span i,
.tabs > span {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
		 -o-transition: all .5s;
			transition: all .5s;
}

.tabs > input:hover + span {
	background: rgba(255,255,255,.1);
}

.tabs > input:checked + span {
	background: var(--secondary);
}

.tabs > input:checked + span,
.tabs > input:hover + span {
	color: var(--primary);
}

#tab-1, #tab-1 + span {
	left: 0;
}

#tab-1:active, #tab-1 + span:hover{
  
        color: #ffffff;
        background-color: #011c29;
    
}

#tab-2, #tab-2 + span {
	left: 20%;
}

#tab-3, #tab-3 + span {
	left: 40%;
}

#tab-4, #tab-4 + span {
	left: 60%;
}

#tab-5, #tab-5 + span {
	left: 80%;
}

.tab-content {
    padding: 80px 20px 20px;
    width: 100%;
    min-height: 340px;
      
}

.tab-content section {
	width: 100%;
	display: none;
}

.tab-content section h1 {
	margin-top: 15px;
 	text-align: center;
}

#tab-1:checked ~ .tab-content #tab-item-1  {
	display: block;
}

#tab-2:checked ~ .tab-content #tab-item-2  {
	display: block;
}

#tab-3:checked ~ .tab-content #tab-item-3  {
	display: block;
}

#tab-4:checked ~ .tab-content #tab-item-4  {
	display: block;
}

#tab-5:checked ~ .tab-content #tab-item-5  {
	display: block;
}

 

 
.effect-2 span i{
	padding-right: 15px;
}

@media (max-width: 600px) {
	.effect-2 span span {display: none;}
	.effect-2 span i {padding: 0;}
}

 
.tab-txt-img{
    display: grid;
     grid-template-columns: repeat( 2, 6fr);
grid-template-rows: 1fr;
padding: 2rem;
gap: 2rem;
 }

 .tab-img img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
}