.top-media {
    margin: 0 auto 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center; /* Вертикальное выравнивание по центру */
    justify-content: space-between; /* Распределение элементов: логотип слева, текст справа */
    width: 1024px;
    max-width: 1024px;
}
.top-image {
    position: relative;
    margin: 40px 0 40px 0;
}
.top-text {
    z-index: -20px;
    position: relative;
    text-align: center;
    font-size: 30px;
    color: #2175C5;
    text-shadow: 2px 2px 4px #00000033;
    margin: 0; /* Убираем все margin */
    flex-grow: 1; /* Текст займёт всё доступное пространство */
    margin-left: 20px;
}
.sign-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    font-size: 85px;
    color: #2175C5;
    width: 145px;
    transition: all 0.3s ease;
}

.sign-in:hover {
  color: #1A5E9E !important;; /* замените на нужный цвет */
}

.sign-in-button {
    width: 85px;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #2175C5;
    color: white;
    font-weight: 500;
    font-size: 18px;
}
.sign-in:hover .fa-shopping-cart {
    color: #1A5E9E;
}
.sign-in:hover .fa-sign-in {
    color: #1A5E9E;
}

.sign-in:hover .sign-in-button {
    background: #1A5E9E;
}
a.sign-in:hover .fa-sign-out {
    color: #1A5E9E !important; /* замените на нужный цвет */
}

.discription {
    display: flex;
    flex-direction: row;
    align-items: center; /* Вертикальное выравнивание по центру */
    justify-content: flex-start ; 
    padding: 0;
    margin-bottom: 30px;
    margin-left: 45px;
    max-width: calc(100% - 60px);
}
.discription-back {
    width: 820px;
    height: 180px; 
    background: #fff;
    border-radius: 8px;
    padding: 0;
    text-align: left;
}
.title {
    color: #404141;
    margin: 15px 10px 5px 30px;
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    text-shadow: none;
}
.discription-text {
    width: 775px;
    height: 180px;
    line-height: 20px; 
    color: #404141;
    margin: 15px 20px 5px 30px;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    text-shadow: none;
}
.subscription {
    position: absolute;
    top: 458px;
    left: 75px;
    background: #EB3246; /* Красный фон */
    color: white; /* Белый текст */
    padding: 3px 9px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 0 5px 5px;
    z-index: -10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.discription-bunner img {
    position: relative;
    max-width: 180px;
    max-width: 180px;
    margin-left: 20px;
}

.discription-2 {
    margin: 0 auto 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center; /* Вертикальное выравнивание по центру */
    justify-content: space-between; /* Распределение элементов: логотип слева, текст справа */
    width: 1024px;
    max-width: 1024px;
    margin-bottom: 20px;
}
.discription-back-2 {
    width: 100%;
    height: 180px; 
    background: #fff;
    border-radius: 8px;
    padding: 0;
    text-align: left;
}
.title-2 {
    color: #404141;
    margin: 15px 10px 5px 30px;
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    text-shadow: none;
}
.subscription-2 {
    position: absolute;
    bottom: -30px;
    left: 21px;
    cursor: pointer;
    background: #EB3246; /* Красный фон */
    color: white; /* Белый текст */
    padding: 3px 9px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.subscription-2:hover {
    color: white; /* Белый текст */
}

.discription-bunner-2 img {
    position: relative;
    max-width: 180px;
    max-width: 180px;
    margin-left: 20px;
}

@media (max-width: 900px) {
  .discription-2 {
  	margin: 20px;
  	width: calc(100% - 30px);
  }
  .title {
  	width: calc(100% - 30px);
    	margin: 15px;
  }
  .discription-text {
  	width: calc(100% - 30px);
    	height: 100%;
    	margin: 15px;
  }
  .discription-back-2 {
  	width: 100%;
    	height: 100%;
  }
  .discription-bunner {
  	display: none;
  }

}
                     