* {
    margin: 0;
    padding: 0;
}
html {
    background-color: #ffffff;
    width: 100vw;
    overflow-x: hidden;
    top: 0;
    left: 0;
}
body {
    width: 100%;
    overflow-x: hidden;
}
main {
  width: 100%;
  margin-top: 120px;
}





.acor-container {
    margin: 20px 0;
}
.acor-container .acor-body {
    width: calc(100% - 60px);
    margin-left: 20px;
    margin-right: 40px;
    height: 0;
    background-color: #00973a0f;
    padding: 0 30px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
}
.acor-container label {
  position: relative; /* важно! */
    cursor: pointer;
    display: block;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    margin: 0 0 20px;
    transition: color .35s;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}
.acor-container label:hover {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
  transition: 0.5s;
}
.acor-container input{
    display: none;
}
/*стрелка*/
.acor-container label:before {
    content: ""; 
    position: absolute; 
    left: 90%; 
    top: 40%; 
    transition: transform .35s;
    width: 70px; 
    height: 70px; 
    background-image: url('/imges/icon_strelka.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 200;
}
.acor-container input:checked + label {
    box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
}
/*переворот стрелки*/
.acor-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.acor-container input:checked + label + .acor-body {
    height: auto;
    margin-top: -5px;
    padding: 20px 30px 10px;
}





/*ОСНОВНОЙ КОНТЕЙНЕР*/
.blog-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
  margin: auto;
  border: 1px solid #454545;
  grid-gap: 20px;
  padding-top: 10px;
}

/*БОЛЬШАЯ СЕКЦИЯ*/
.section-big {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 250px; 
  grid-gap: 20px;
  align-items: center;
}
.section-big img {
  height: 100%;
  width: auto; 
  object-fit: cover; 
  display: block;
  border-radius: 5px;
}
.section-description {
  display: flex;
  flex-direction: column;

  padding: 20px 40px 20px 40px; /*верх-право-низ-лево*/
}
.section-description h3 {
  line-height: 1.8;
  font-family: "Public Sans", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  /*white-space: wrap;*/
  text-align: justify;
}
.blog-article-1-container {
  width: 100%;
}
.blog-article-1 {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-align: justify;
  padding: 20px;
  box-sizing: border-box;
  grid-gap: 20px;
 
  border-radius: 5px;
  text-indent: 30px;
  line-height: 1.5;
}
.blog-article-1 img {
  width: 300px;
  height: auto;
  border-radius: 5px;
  float: left;
  margin-right: 20px;
}
.song {
  display: flex;
  padding-left: 40%;
  margin-bottom: 20px;
  grid-gap: 20px;
  text-indent: 0px;
}

/*

.section-first {
}


.section-second {
  display: flex;
  width: 100%;
  height: auto;
  grid-gap: 20px;
}
.section-second-left {
  width: 40%;
}

.section-second-left {
  display: flex;
  flex-direction: column;
}
.section-second-left img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.section-second-right {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  width: 60%;
}
.section-second-right1,
.section-second-right2 {
  display: flex;
}
.section-second-right1 img,
.section-second-right2 img {
  width: 50%;
  height: auto;
  border-radius: 5px;
}
*/
