/* Позиционирование ==============================================================*/
.body-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.main-index-container {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.main-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 70px 20px 40px 20px;
}

.no-scroll {
	overflow: hidden;
}

/* Article ==============================================================*/

.article-header-wrapper{
   	width: 100%;    
	z-index: 49;   
	position: fixed;   
 	background-color: #1a1a1a;
	padding: 95px 0 25px 0;
}

.article-header {
	display: flex;
	justify-content: space-between;   
	max-width: 1440px;   
	margin: 0 auto;   
    	padding: 0 20px;
}


.article__title{
	text-align: end;
	order:2;
	/* font-size:1.5rem; */
}

.back-button {
	padding: 5px 15px;
	font-size: 12px;
	color: white;
	background-color: #d4003f;
	border: none;
	border-radius: 5px;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}

.back-button:hover {
	background-color: #a3002e;
}

.back-button i {
	margin-right: 2px;
	font-size: 12px;
}


@media (max-width: 771px) {
	.article{
		padding: 95px 0 0 0;
	}	
	.article-header-wrapper{
		padding: 95px 0 0 0;
	}
	.back-button {
		padding: 8px 15px;
	}
	.article__title {
		margin-top: 15px;
		text-align: start;
	}
	.article-header {
		display: flex;
		flex-direction: column;
		padding-bottom: 23px;
	}
}


		
/* Основа ==============================================================*/

/* Стили для секции доставки */
.delivery {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
}

.delivery__title {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.delivery__h2 { 
	color: white;
	font-weight: bold;
	/* font-size: 1.5rem; */
   	margin-bottom: 30px;
}

.delivery__description,
.delivery__cost {
    margin-bottom: 15px;
}

.delivery__companies-list,
.delivery__moscow-list {
    list-style-type: none;
    padding-left: 0;
}

.delivery__companies-item,
.delivery__moscow-item {
  /*  font-size: 1.1rem; */
    margin-bottom: 15px;
    color: #aaaaaa;
}

.delivery__subtitle {
   /* font-size: 1.5rem; */
   color: white;
   margin: 30px 0 10px 0;
}

.delivery__map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* Адаптивность карты и секции */
@media (max-width: 771px) {
.delivery {
    padding-top: 120px;
	}    
.delivery__map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .delivery__map {
        height: 200px;
    }
    .delivery__h2{
  /* font-size: 1.3rem; */
}
    .delivery__subtitle{
 /*  font-size: 1.3rem; */
} 
}


.delivery__companies-list {
    list-style-type: none;
    padding-left: 0; 
    margin: 0;
    display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start;
}

.delivery__companies-item {
  /*  font-size: 16px; */
    font-weight: 600;
    color: #f60049;
    margin-right: 15px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: #2a2a2a;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.delivery__companies-item a{
    font-weight: 600;
    /* font-size: 16px; */
}


.delivery__companies-item:hover {
    background-color: #1a1a1a;
    color: #white;
}

