.container-logo {
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
border: solid 1px transparent;
transition: all 0.3s ease-in-out;
border: 1px solid transparent;
border-radius: 10px;
cursor: pointer;
}

.container-logo:hover {
border: solid 1.5px #FF4800;
border-radius: 10px;
}


.container-logo img {
border-radius: 10px;
}


.pop-up-menu {
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
visibility: visible;
position: absolute;
z-index: 100;
top: -81px;
color: black;
left: -55px;
height: 65px;
width: fit-content;
border-radius: 30px;
transition: .3s;
transform: scale(0);
background: #FFFFFF 0% 0% no-repeat padding-box;
box-shadow: 3px 6px 6px #00000029;
opacity: 1;
cursor: pointer;
}


.pop-up-menu::after {

  content: "";
  position: absolute;
  bottom: -10px;
  left:69px;
  transform: translateX(-50%);
  border-top: 10px solid #FFFFFF;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  
}


.cat-pop-zt {
width: 55px;
height: 55px;
border-radius: 50%;
background: #4E75ED 0% 0% no-repeat padding-box;
opacity: 1;
font: normal normal bold 22px/55px Montserrat;
letter-spacing: 1.8px;
color: #FFFFFF;
transition: all 0.5s;

}
.cat-pop-zt a {
text-decoration: none;
color: white;

}

.cat-pop-cs {
width: 55px;
height: 55px;
border-radius: 50%;
font: normal normal bold 22px/55px Montserrat;
letter-spacing: 1.8px;
color: #FFFFFF;
opacity: 1;
background: #1736B8 0% 0% no-repeat padding-box;
transition: all 0.5s;
margin-left: 5px;
}
.cat-pop-cs a {
text-decoration: none;
color: white;

}

.cat-pop-cs-name {
  visibility: hidden;
  width: 170px;
  height: 45px;
  white-space: nowrap;
  background: transparent 0% 0% no-repeat padding-box;
  text-align: left;
  opacity: 1;
  overflow: hidden;
  font: normal normal bold 17px/50px Montserrat;
  letter-spacing: 0.34px;
  color: #1736B8;
  border-radius: 50px;
   padding-left: 5px;
  
}

.cat-pop-zt-name {
  visibility: hidden;
  text-align: left;
  width: 130px;
  height: 45px;
  white-space: nowrap;
  background: transparent 0% 0% no-repeat padding-box;
  opacity: 1;
  overflow: hidden;
  font: normal normal bold 17px/50px Montserrat;
  letter-spacing: 0.34px;
  color: #1736B8;
  border-radius: 50px;
  padding-left: 5px;
}

.cat-pop-zt:hover ~ .cat-pop-zt-name {
  visibility: visible;
  animation-name: open-curtain-zt;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;

}

.cat-pop-cs:hover ~ .cat-pop-cs-name {
  visibility: visible;
  animation-name: open-curtain;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
 
}


@keyframes open-curtain {
  0% {
    width: 0;
  }
  100% {
    width: 170px;
  }
}

@keyframes open-curtain-zt {
  0% {
    width: 0;
  }
  100% {
    width: 130px;
  }
}

.cat-pop-zt:not(:hover) ~ .cat-pop-zt-name {
  visibility: visible;
  width: 0px;
  animation-name: close-curtain-zt;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
}

.cat-pop-cs:not(:hover) ~ .cat-pop-cs-name {
  visibility: visible;
  width: 0px;
  animation-name: close-curtain;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
}

@keyframes close-curtain {
  0% {
    width: 170px;
  }
  100% {
    width: 0;
  }
}

@keyframes close-curtain-zt {
  0% {
    width: 130px;
  }
  100% {
    width: 0;
  }
}


.menu-pop-active {
visibility: visible;
transform: scale(1);
}

.button-icon {
display: flex;
justify-content: center;
align-items: center;
color: white;
transition: transform 0.5s ease;
font-size: 40px;
cursor: pointer;
text-align: center;
}


.plus-rotation-open {
transform:  rotate(315deg);
transition: transform 0.5s ease;
}



.hover-button {
position: absolute;
visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
background: #FF4800 0% 0% no-repeat padding-box;
opacity: 1;
width: 31px;
height:31px;
border-radius: 100%;
border: solid 1px orange;
opacity: 0;
transition:  all 0.3s ease-in-out;

}


@media (max-width: 768px) {
 .cat-pop-zt-name {
display: none;
}
.cat-pop-cs-name {
display: none;
}
.pop-up-menu {

top: -70px;
left: -35px;

}
.pop-up-menu::after {
left: 64.5px;

}
.pop-up-menu{
gap: 5px;
left: -50px;

}
.cat-pop-cs  {
margin: 0%;

}
}





