@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}


.content {
    
    transition: transform 0.3s ease-in-out;
}

.content:hover {
    transform: scale(1.05); /* Легкий эффект увеличения при наведении */
}


strong {
    font-weight: bold;
    color: #cb8845; /* Подсветка названия школы */
}


/* Заголовок */
h1, h2, h3, h4, h5, h6 {
    animation: fadeInUp 1s ease-out;
    color: #cb8845;
}

/* Анимации */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
@media (max-width:680px) {
    body.poster {
        margin-top: 0;
    }
    .main-img{
        height:5vh;
    }
}
.price-block{
    width:100%;
}

.content-box{
    position: relative;
    border-radius:5px;
    border:2px #cb8845 solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Легкая тень блока */
  transition: all 0.3s ease;  /* Анимация при наведении */
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}
.content-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Более сильная тень */
  transform: translateY(-6px);  /* Легкий сдвиг блока вверх */
}

/* Ключевые кадры для анимации */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.image-info{
    border-radius:5px;
    border:2px #cb8845 solid;
}


.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.left-side, .right-side {
    width: 45%;
    margin-bottom: 20px;
}

h2 {
    color: #cb8845;
    font-size: 35px;
    margin-bottom: 15px;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #cb8845; /* Бордер в вашем цвете */
    padding: 10px;
    border-radius: 8px;
    margin-left: 10px;
    background-color: #2a2a2a; /* Тёмный фон для блоков */
}

.item .icon {
    background-color: #cb8845;
    padding: 15px;
    margin-right: 20px;
    margin-left:20px;
    border-radius: 50%;
}

.item img {
    width: 35px;
    height: 35px;
}

.item p {
    font-size: 18px;
    margin: 0;
}

.right-side .item {
    flex-direction: row-reverse; /* Зеркальное отображение для правой колонки */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding:5px;
    }

    .left-side, .right-side {
        width: 100%;
        margin-bottom: 20px;
        padding-left:5px;
        
    }

    .item {
        flex-direction: column;
        align-items: center;
        font-size:16px;
    }

    .item .icon {
        margin-bottom: 10px;
    }
}
a{
    text-decoration: none;;
}