/* CSS Document */

td {
	font-family: Tahoma;
	font-size: 11px;
	color: #ffffff;
}
.btm_text {
	font-family: Tahoma;
	font-size: 11px;
	color: #424449;
	text-decoration: none;
	line-height: 17px;
	}
.btm_text2 {
	font-family: Tahoma;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 20px;

}
.menu_text {
	font-family: Tahoma;
	font-size: 12px;
	color: #F97302;
	text-decoration: bold;
	line-height: 20px;
}

.menu_text1 {
	font-family: Tahoma;
	font-size: 12px;
	color: #F97302;
	text-decoration: bold;
}
.menu_text1:hover {
	font-family: Tahoma;
	font-size: 12px;
	color: #000000;
	text-decoration: bold;
}
.menu{
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    margin-top: 36px;

}
.menu a{
    font-weight: bold;
    color: #424449;
    text-decoration: none;
}
/* Слайдер */
.slider{
    max-width: 99%;
    position: relative;
    margin: auto;
    height: 300px;
}

.slider .item img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.slider .previous, .slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slider .previous:hover,
.slider .next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.slider .item {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: 0.4
    }
    to {
        opacity: 1
    }
}
.menu a:hover, .menu a.active{
        color: #50af60;
}