.drop-container{
width:100%;
}
.drop-menu{
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 6px;
    min-height: 50px;

    padding: 10px 20px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #757373ab;
 transition: all 0.2s ease-in-out;
}
.drop-menu:focus, .drop-menu--active{
    outline: none;
    box-shadow: 0px 0px 5px 4px rgba(192, 191, 191, 0.397);
}
.drop-menu::after{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 40%;
    right: 10px;
    border-width: 10px 6px 0 6px;
    border-color: rgb(85, 83, 80) transparent transparent transparent;
    border-style: solid;

    pointer-events: none;
}
.drop-container{
    position: relative;

}

.drop-list{
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    margin: 0;
    padding: 0;
    list-style-type: none;  
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px #757373ab;  
    overflow: hidden;
    border-radius: 6px;
    width:100%;
    z-index: 1000;
}
.drop-list--visible{
    display:block ;
}
.drop_list-item{
    margin: 0;
    padding: 0;
    border: 1px solid #757373ab;
    border-bottom: 0;
    padding: 15px 20px;
    cursor: pointer;
}
.drop_list-item:first-child{
    border-radius: 6px 6px 0 0;
}
.drop_list-item:last-child{
    border-radius: 0 0 6px 6px;
    border-bottom: 1px solid #757373ab;
}
.drop_list-item:hover{
    background-color: #e4dbdbab;
}




.not-drop-menu{
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 6px;
    min-height: 50px;
    margin-top:40px;

    padding: 10px 20px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;

    cursor: pointer;
    border: 1px solid #757373ab;
     transition: all 0.2s ease-in-out;
     background-color: #677FB5;
    color:#FFFFFF;

}

.not-drop-menu:hover{
    transition: all 0.3s ease-in-out;
    background-color:#8D212D;
}

.drop-menu:hover{
    transition: all 0.3s ease-in-out;
    background-color:#e4dbdbab;
}


.not-drop-menu:focus, .not-drop-menu--active{
    outline: none;
    box-shadow: 0px 0px 5px 4px rgba(192, 191, 191, 0.397);
}
.not-drop-menu:focus, .not-drop-menu--active{
    outline: none;
    box-shadow: 0px 0px 5px 4px rgba(192, 191, 191, 0.397);
}


.main-logo-items{
display:flex;
align-items:center;
justify-content:center;
width:100%;
margin: 10px auto -20px auto;
}
.main-logo-item{
margin:0 auto;
}
@media screen and (max-width: 600px){
.main-logo-item{
margin:0 auto;
scale:0.7;
}
}


.abiturients_inf-materials{
display:block;
transition:0.3s ease-in-out;
}
.abiturients_inf-materials:hover{
scale:1.05;
transition:0.3s ease-in-out;
}



// Блок на главной странице с переходом на университетский 3d тур
.main-tour{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tour-text{
    text-align: center;
   }

.tour-link{
   text-decoration:none;
    transition: 0.2s ease-in-out;
}
.tour-link:hover{
   text-decoration:none;
}

.tour-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    max-width: 600px;
}

.tour-img svg{
    max-width: 300px;
    max-height: 300px;
    fill:#8D212D;
    fill-rule:nonzero;
    transition: 0.2s ease-in-out;
}
.tour-img svg:hover{
    fill: #6b1923;
    scale: 1.02;
    transition: 0.2s ease-in-out;
}

//аккордион
.accordion {
    max-width: 100%;
}

.accordion .item {
    border: 1px solid #ccc;
    margin-bottom: 5px;
}
.accordion .item .title {
    background-color: #f4f4f4;
    color: #8D212D;
    padding: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
    font-size: 20px;
    padding-left: 70px;
}

.accordion .item .title:hover {
    background-color: rgb(218, 217, 217);
    transition: 0.3s ease-in-out;
}


.accordion .item .title::before {
    content: ''; 
    position: absolute;
    left: 10px;
    bottom: 0px;
    width: 40px; 
    height: 40px;
    background-image: url('icons.png');
    background-size: contain; 
    transform: rotate(0deg);
}
.accordion .item.active .title::before {
    transform: rotate(180deg);
}
.accordion .item .content {
    padding: 10px;
    height: 0;
    display: none;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion .item.active .content {
    display: block;
    height: auto;
    transition: height 0.3s ease;
}


//картиники соц сетей
.social-organ{
width:150px;
transition:0.3s ease-in-out;
}
.social-organ:hover{
transition:0.3s ease-in-out;
scale:1.1;
}


.year-block {
  background: #8D212D;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:80px;
  margin-bottom:20px;
}

.year-block h6 {
  font-size:24px;
  color: #FFF;
}