.educational-field-page {
	display: flex;
}
.educational-field-page h2 {
	font-size: 48px;
	margin-bottom: 60px;
}


.taxonomy-list-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.taxonomy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    background-color: #16093A;
	transition: 0.3s ease background;
	gap: 40px;
}
.taxonomy-row:hover {
	background: #2F2255;
}
.taxonomy-left {
    display: flex;
    align-items: center;
    gap: 30px;
	color: #fff;
}

.taxonomy-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.taxonomy-name {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}


.taxonomy-right {
    display: flex;
    align-items: center;
}
.taxonomy-right img {
	width: 100%;
}

@media (max-width: 1400px) {
	.edu-field-decor {
		width: 180px;
	}
}
@media (max-width: 1200px) {
	.educational-field-page,
	.educational-field-section{
		flex-direction: column;
	}
	.edu-field-decor {
		width: 80px;
		height: fit-content;
		transform: rotate(-90deg);
		position: absolute;
		bottom: -30px;
		right: 60px;
	  }
	.educational-field-page div:first-child,
	.educational-field-section div:first-child{
		position: relative;
	}
}
@media (max-width: 600px) {
	.taxonomy-icon {
		width: 25px;
		height: 25px;
	}
	.taxonomy-row {
		gap: 20px;
	    flex-direction: column;
	    align-items: start;
	}
	.educational-field-page h2,
	.educational-field-section h2 {
		font-size: 32px;
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.edu-field-decor {
		width: 50px;
		right: 30px;
	}
}