.head{
    width: 100%;
    background-color:  var(--main);
    text-align: right;
    padding: 10px;
    box-sizing: border-box;
    font-weight: bold;
    border-bottom: solid;
    border-top: solid;
    border-width: 5px;
    border-color: var(--bar);
}
hr{
  margin-left: 10px;
  margin-right: 10px;
}

.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    margin-bottom: -80px;
    padding-bottom: 80px;
}

.collapsible {
  background-color: transparent;
  color: white;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  border-bottom: solid;
  border-width: 2px;
  border-color: var(--bc);
}

.active, .collapsible:hover {
   /*border-color: red;*/
}

.collapsible:before {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: left;
  margin-left: 5px;
  margin-right: 30px;
  font-size: 22px;
}

.active:before {
  content: "\2212";

}

.content {
  max-height: 0;
  overflow: hidden;
  background-color: var(--bc);
}


p {
  padding: 0 10px;
}

h3 {
  padding: 0 10px;
  margin:  0px;
}

.link{
    text-decoration: none;
    color: var(--link);
    font-weight: bold;
}


.layout{
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    text-align: right;
}


.cont{
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    margin-bottom: -80px;
    padding-bottom: 80px;
    background-color: var(--bc);
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) );
/*    grid-template-rows: repeat(auto-fit, 60px);*/
}

.item-3{
    flex-grow: 1;
}

.img-wrapper {
    height: 100px;
    position: relative;
    overflow-x:auto;
    overflow-y:hidden;
}

.img-wrapper > img {
    height: 100px;
    position: relative;
}

#logo{
    display: grid;
    margin-left: auto;
    margin-right: auto;
    /*width: 100%;*/
    grid-template-columns: repeat( auto-fill, minmax(120px, 1fr) );
    border: solid;
    border-color: var(--elem);
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
}

#info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.column{
    width: 100%;
}



#logo > img{
    color: white;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    text-align: center;
}

.item-3{
    align-items: center;
    text-align: center;
}

.item-3 > img{

    width: 100%;
    max-width: 600px;
}



.element{
    margin: 8px;
    color: white;
    border-radius: 8px;
    padding: 7px;
    background-color: var(--elem);
    border: solid;
    border-color: var(--elem);
    display: block;
    text-align: left;
    text-decoration: none;
    min-height: 120px;
    position: relative;

}

.element > span{
    font-weight: bold;
}

.element:hover{
    border-color: var(--hover)
}
p{
    margin-top: 5px;
}

.notactive{
    background-color: gray;
    border-color: gray;
}

.number{
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 5px;

}