/*----------------------------------Display-------------------------------------------*/
	.tab-down-section {
		position: relative;
	}
	.tab-down {
		display: flex;
		flex-wrap: wrap;
		padding-bottom: 20px;
	}
	.tab-down__link-wrapper {
		flex: 1;
		width:100%;
		background-color: #ABF9FE;
	}
	.tab-down__link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.tab-down__target{
		position: absolute;
		max-width: 600px;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding:15px;
		bottom: 0;
		height: 0%;
	}
	/*----------------------------------Hover-------------------------------------------*/
	
	div.tab-down__link-wrapper div.tab-down__target { 
		display:none; 
	}
	.tab-down :first-child .tab-down__target {
		display: block;
	}
    div.tab-down__link-wrapper:hover div.tab-down__target { 
    	display:block; 
    }
    div.tab-down__link-wrapper:hover div..tab-down :first-child .tab-down__target { 
    	display:none; 
    }
    .tab-down .tab-down__target--hide {
    	display: none!important;
    }
    /*----------------------------------Elements----------------------------------------*/
    .tab-down__title {
    	text-align: center;
    }
    .tab-down__img {
    	width: 100%;
    	max-width: 200px;
    	min-width: 200px;
    	height: auto;
    }
	.tab-down__target:before {
		content:'';
		display: block;
		width: 100px;
		height: 100px;
		margin: 0 auto;
		background-image: url(stre-down.svg);
		background-repeat: no-repeat;
	}