.command {
	padding: 30px 0 0;
}

.command__empty {
    font-family: 'Rotonda Regular';
    font-weight: bold;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.command__noPhoto {
    font-family: 'Rotonda Bold';
    font-weight: 900;
    width: 170px;
    height: 170px;
    background: #1f375a;
    color: #d5d5d5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 19px;
}
.command__title {
    font-size: 48px;
    padding-bottom: 60px;
    line-height: 1.1;
    color: #1f375a;
    text-align: center;
}

.command__wrap {
	display: flex;
	flex-wrap: wrap;
}
.command-item {
	display: none;
	width: 33.33333333%;
}
.command-item--active {
	display: block;
}

.command__button {
	padding: 20px 0px 40px 0px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.command__button span{
	color: #fff;
	background-color: #f84f5b;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	display: block;
}

.command__item {
	display: flex;
    flex-direction: column;
    border: 1px #ededed solid;
    box-shadow: 0 0 5px rgb(0, 0, 0, .5);
    align-items: center;
    border-radius: 30px;
    padding: 30px 22px 20px;
    margin-bottom: 30px;
}

.command__item--img img {
    display: block;
    width: 170px;
    height: 170px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.command__item--title {
	font-family: 'OpenSans Regular';
	text-align: center;
	padding: 30px 0 20px;
    text-transform: uppercase;
}

.command__item--desc {
	font-family: 'OpenSans Regular';
    padding: 0 30px 30px;
    text-align: center;
    min-height: 72px;
}

.command__item .btn__primary {
	width: 100%;
	font-size: 16px;
}

	/* media */
	@media screen and (min-width: 1200px) {
		.command .block__container {
			width: 1024px;
		}
	}

	/* Extra large */
	@media (max-width: 1200px) {
	.command-item {
	    width: 33.33333333%;
	}
	}

	/* Large */
	@media (max-width: 992px) {
		.command-item {
		    width: 50%;
		}
	}

	/* Medium */
	@media (max-width: 768px) {
		.command__title {
			font-size: 36px;
		}
	}

	/* Small */
	@media (max-width: 576px) {
		.command__title {
			font-size: 30px;
		}
		.command-item {
			padding: 0 4px !important;
		}
		.command__item{
			box-shadow: unset;
		}
	}

	/* Extra small */
	@media (max-width: 480px) {
		.command-item {
			max-width: 100%;
			width: 100%;
			max-width: 100%;
			margin: 0 auto;
			padding: 0 !important;
		}
		.command__wrap{
			margin: 0;
		}
		.command__item {
			margin-bottom: 20px;
		}
		.command__button {
			padding: 0 0 20px;
		}
		.command__title {
			font-size: 26px;
		}
	}
/* media */
