.industry-dropdown .section-title{
	margin-bottom: 64px;
}

.industry-dropdown-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.industry-dropdown-item{
	width: 100%;
}

.industry-dropdown-item:not(.__open) {
    cursor: pointer;
}

.industry-dropdown-item .item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	padding-bottom: 24px;
}


.industry-dropdown-item .item-content .item-text{
	display: flex;
	flex-direction: column;	
	color: #474747;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;	
}

.industry-dropdown-item.__open .item-content .item-text{
	gap: 24px;
}

.industry-dropdown-item .industry-dropdown-content{
	height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .2s ease-in-out;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.industry-dropdown-item.__open .industry-dropdown-content{
    height: 380px;
    opacity: 1;
}

.industry-dropdown-item .item-caret svg{
    transition: all .2s ease-in-out;
}

.industry-dropdown-item.__open .item-caret svg {
    transform: rotate(180deg);
}

.industry-dropdown-item .item-content .item-text a{
	font-weight: 600;
	line-height: 22px;
	text-decoration: none;
}

.industry-dropdown-item .item-content .item-text a:hover span{
	text-decoration: underline;
}

.industry-dropdown-item .item-content .item-text p:last-child{
	margin-bottom: 0;
}

.industry-dropdown-item__title {
	color: var(--Neutral-Foreground-1-Rest, #000);
	font-family: "Open Sans",Helvetica,Arial,sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	text-transform: capitalize;
}

.industry-dropdown .rightcolumn .industry-dropdown-item__image{
	height: 200px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px;
}

.industry-dropdown .leftcolumn .industry-dropdown-item__image{
	display: none;
}

.industry-dropdown-item .divider {
    width: 100%;
    position: relative;
}

.industry-dropdown-item .divider .gray-line{
	border-bottom: 1px solid #CFCFCF;
	height:1px;
	width: 100%;
	z-index: 0;
}

.industry-dropdown-item .divider .gray-line:before{
	content: '';
	border-bottom: 1px solid #00BF63;
	height:1px;
	width: 0;
	position: absolute;
    bottom: 0;
	transition: width .3s ease-out; 
	opacity: 1;
	display: block;
}

.industry-dropdown-item.__mouseout .divider .gray-line:after{
	content: '';
	border-bottom: 1px solid #00BF63;
	height:1px;
	width: 0;
	position: absolute;
    bottom: 0;
	z-index: 2;	
	opacity: 0;
	width: 100%;
	display: block;	
	transition: opacity .3s ease-out; 
}

.industry-dropdown-item.__open .divider .gray-line:before{
	width: 100%;
}

.industry-dropdown-item:not(.__open):hover .divider .gray-line:before{
	width: 100%;
}

.industry-dropdown-item.__mouseout:not(.__open):hover .divider .gray-line:before{
	width: 0;
	transition: none;
}
.industry-dropdown-item.__mouseout:not(.__open):hover .divider .gray-line:after{    
	opacity: 1;
}

@media (min-width:768px) {
	.industry-dropdown-item.__open .industry-dropdown-content{
		height: 340px;
	}
}

@media (min-width:1024px) {
	.industry-dropdown .section-title{
		margin-bottom: 60px;
	}

	.industry-dropdown .leftcolumn{
		padding-right: 37px;
	}
	
	.industry-dropdown .rightcolumn{
		padding-top: 10px;
	}
	
	.industry-dropdown-images{
		position: relative;
		height: 410px;
        width: 100%;
	}
	
	.industry-dropdown-item .item-content .item-text{
		width: 94%;
	}
	
	.industry-dropdown .leftcolumn .industry-dropdown-item__image{
		display: block;
	}
	
	.industry-dropdown .rightcolumn .industry-dropdown-item__image{
		display: none;
	}
	
	.industry-dropdown-item.__open .industry-dropdown-content{
		height: 138px;
	}
	
	.industry-dropdown .leftcolumn .industry-dropdown-item__image{
		height: 410px;
		width: 100%;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		border-radius: 8px;
		opacity:0;
		transition: opacity .3s ease-out; 
		position: absolute;
		top: 0;
		z-index: 0
	}
	
	.industry-dropdown .leftcolumn .industry-dropdown-item__image.__open{
		opacity: 1;
		/*z-index: 1;*/
	}	
}

@media (min-width:1440px) {
	.industry-dropdown .leftcolumn{
		padding-right: 56px;
	}
	.industry-dropdown-item.__open .industry-dropdown-content{
		height: 116px;
	}
}

@media (min-width:1920px) {
	.industry-dropdown .leftcolumn{
		padding-right: 72px;
	}
	
	.industry-dropdown-item.__open .industry-dropdown-content{
		height: 116px;
	}
}
/* viewport-scaling: 1024px–2560px, base 1440px */
@media (min-width: 1024px) {
  .industry-dropdown .section-title {
    margin-bottom: min(4.1667vw, 106.67px);
  }
  .industry-dropdown-list {
    gap: min(1.6667vw, 42.67px);
  }
  .industry-dropdown-item .item-content {
    padding-bottom: min(1.6667vw, 42.67px);
  }
  /*.industry-dropdown-item .item-content .item-text {
    font-size: min(1.1111vw, 28.44px);
    line-height: min(1.9444vw, 49.78px);
  }*/
  .industry-dropdown-item.__open .item-content .item-text {
    gap: min(1.6667vw, 42.67px);
  }
  .industry-dropdown-item .industry-dropdown-content {
    gap: min(1.6667vw, 42.67px);
  }
  .industry-dropdown-item.__open .industry-dropdown-content {
    height: min(8.0556vw, 106.22px);
  }
  .lang-de .industry-dropdown-item.__open .industry-dropdown-content {
    height: min(9.9556vw, 206.22px);
  }
  .industry-dropdown-item .item-content .item-text a {
    line-height: min(1.5278vw, 39.11px);
  }
  /*.industry-dropdown-item__title {
    font-size: min(1.3889vw, 35.56px);
    line-height: min(1.9444vw, 49.78px);
  }*/
  .industry-dropdown .rightcolumn .industry-dropdown-item__image {
    height: min(13.8889vw, 355.56px);
    border-radius: min(0.5556vw, 14.22px);
  }
  .industry-dropdown .leftcolumn .industry-dropdown-item__image {
    height: min(28.4722vw, 728.89px);
    border-radius: min(0.5556vw, 14.22px);
  }
  .industry-dropdown .leftcolumn {
    padding-right: min(3.8889vw, 99.56px);
  }
  /*.industry-dropdown .rightcolumn {
    padding-top: min(1.6667vw, 42.67px);
  }*/
  .industry-dropdown-images {
    height: min(28.4722vw, 728.89px);
  }
}