/*----buttons--*/

.float-container {
  position: fixed;
  top: 20%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index:999999999;
}

.float-container a {
  z-index:999999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 30px;
  margin-right: -230px;
  margin-bottom: 10px;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: white;
  border-color: #46b8da;
  border-radius: 5px 0 0 5px;
  background-color: #eb690b;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: sans-serif;
}

.float-container a:hover {
  margin-right: 0;
  background-color: #00aa33;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}



/* Icon settings - remove if not needed*/
.float-container .icon:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.icon.one:before {
  content: "\f073";
}

.icon.two:before {
  content: "\f086";
}

.icon.three:before {
  content: "\f15c";
}

.icon.four:before {
  content: "\f15c";
}
.icon.five:before {
  content: "\f03e";
}

/* Media queries */
@media screen and (max-width:440px)
{
  .float-container .icon:last-child {
    display: none;
  }
  .float-container
  {
    position: fixed;
    top: auto;
    bottom: 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;

    width: 100%;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
  .float-container a.icon
  {
    right: 0;
    bottom: 0;

    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    padding: 5px;

    border-radius: 0;
    -webkit-box-shadow: 0 0 0 #7d7d7d;
    box-shadow: 0 0 0 #7d7d7d;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid darkorange;
    border-right: 1px solid darkorange;
  }
}

/* fixed social*/
#fixed-social {
  position: fixed;
  top: 20%;
  z-index:999999;
  display:inherit;
}

@media only screen and (max-width: 600px) {

  #fixed-social {
    display:none;
  }

  .float-container {
    display:none;
  }

  #particles{
    height:330px;
    margin-bottom:8px;
  }
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
}
#fixed-social a:hover>span{
  visibility: visible;
  left: 41px;
  opacity: 1;
}
#fixed-social a span {
  line-height: 40px;
  left: 60px;
  position: absolute;
  text-align: center;
  width: 120px;
  font-size:12px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
}
.fixed-facebook{
  background-color: #3b5998;
}
.fixed-facebook span{
  background-color: #3b5998;
}
.fixed-instagram{
  background-color: #962fbf;
}
.fixed-instagram span{
  background-color: #d62976;
}
.fixed-YouTube{
  background-color: #ce0404;
}
.fixed-YouTube span{
  background-color: #ce0404;
}
.fixed-linkedin{
  background-color: #1d75bb;
}
.fixed-linkedin span{
  background-color: #1d75bb;
}
.fixed-Whatsapp{
  background-color: #1bd741;
}
.fixed-Whatsapp span{
  background-color: #1bd741;
}
/*end fixed social*/