@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: #455442; /* Подсветка названия школы */
}


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

/* Анимации */
@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%;
}

@media (max-width:680px) {
    body {
      margin-right:0;
    }
}
.content-box{
  background: linear-gradient(280.62deg, #3c7265 17.86%, #173f35 99.75%);
}

.btn-outline,
.btn-filled {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #455442;
  color: #3c7265;
  background: transparent;
}

.btn-outline:hover {
  background: #c7cecb;
  color: #3c7265;
  border-color: #c7cecb;
}

.btn-filled {
  background: var(--primary);
  color: #ffffff;
  border: 2px solid #c7cecb;
}

.btn-filled:hover {
  background: #c7cecb;
  border-color: #c7cecb;
}

.hero {
  padding: 50px 20px;
  background-color: var(--white);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-left,
.hero-right {
  flex: 1 1 33%;
  padding: 20px;
  box-sizing: border-box;
}

.hero-left h1 span {
  color: var(--primary-color);
}

.subtitle {
  font-size: 25px;
  color: var(--primary-color);
}

.hero-right {
  flex: 1 1 500px;
}

.description {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--hover-color);
  color: var(--white);
  border-color: var(--hover-color);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  stroke: currentColor;
}

@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .hero-left h1 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }
}

.image-info{
    border-radius:0px;
    border:0px #3c7265 solid;
    box-shadow: 6px 6px 8px 1px #3c7265;
}


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

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


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

.item .icon {
    background-color: #3c7265;
    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;;
}

.logo{
    width:100px;
}
