/* contactButton.css */

.contact-button {

  position: fixed;

  bottom: 120px;

  right: 10px;

  background-color: #f58e06;

  border-radius: 50%;

  width: 34px;

  height: 340px;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  z-index: 1000;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.contact-button:hover {

  transform: scale(1.1);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

}



.contact-button img {

  width: 28px;

  height: 28px;

}



.contact-options {

  display: none;

  position: fixed;

  bottom: 140px;

  right: 10px;

  background-color: white;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  border-radius: 10px;

  overflow: hidden;

  z-index: 1000;

  transition: opacity 0.3s ease;

}



.contact-options.show {

  display: block;

  opacity: 1;

}



.contact-options .triangle {

  width: 0;

  height: 0;

  border-left: 10px solid transparent;

  border-right: 10px solid transparent;

  border-bottom: 10px solid white;

  position: absolute;

  top: -10px;

  right: 20px;

}



.contact-options a {

  display: flex;

  align-items: center;

  text-decoration: none;

  color: #333;

  border-top: 1px solid #eee;

  transition: background-color 0.3s ease;

  font-family: 'Montserrat';font-size: 16px;

  padding-top: 10px;

  padding-bottom: 10px;

  padding-left: 10px;



}



.contact-options a img {

  width: 22px;

  height: 22px;

  margin-right: 10px;

}



.contact-options a:first-child {

  border-top: none;

}



.contact-options a:hover {

  background-color: #f9f9f9;

}



.contact-options a:active {

  background-color: #e0e0e0;

}
@media only screen and (min-device-width: 380px) and (max-device-width: 1024px) and (orientation:portrait) 
{
.contact-options {
bottom: 216px !important;
}
}