/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 28 2025 | 14:37:45 */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

:root {
  --white: #ffffff;
  --light-grey: #edf0f1;
  --violet: #B72034;
  --dark-violet: #B72034;
  --black: #21232a;
}
.float-wrapp{
	position:fixed;
	bottom:0px;
	right:40px;
	z-index:99;
}
.nav {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 400px;
  padding-bottom: 0px;
  border-radius: 5px 5px 25px 25px;
	color:white;
}

.nav [type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.nav [type="checkbox"] + label {
  position: relative;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
  background: var(--violet);

  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}

@media screen and (max-width:768px) {
	.float-wrapp{
	right:0px !important;
}
  
	.nav [type="checkbox"] + label {
		
		  width: 70px;
  height: 70px;
		font-size: 3.5vw;
	}
	.menu li a{
		  width: 30px;
  height: 30px;
	}
	.nav input:checked ~ .menu li:nth-child(3) {
  top: -186px !important;
  left: calc(15% + 0px) !important;
}
.nav input:checked ~ .menu li:nth-child(1) {
  top: -261px !important;
}
.nav input:checked ~ .menu li:nth-child(2) {
  left: calc(15% - 100px) !important;
	 top: -187px !important;
}
  
}

.nav [type="checkbox"] + label:hover {
  background: var(--dark-violet);
}
.menu{
	list-style-type:none;
}

.menu li {
  position: absolute;
  top: -25px;
  left: 15%;
  transform: translateX(-15%);
  transition: all 0.4s;
}
.menu li a i{
	color:white;
}

.menu li:nth-child(1) {
  transition-delay: 0.2s;
}

.menu li:nth-child(2) {
  transition-delay: 0.15s;
}

.menu li:nth-child(3) {
  transition-delay: 0.1s;
}

.menu li:nth-child(4) {
  transition-delay: 0.05s;
}

.menu li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet);


}

.menu li a span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% - 5px));
  width: 100%;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  color: #B72034;
	
  font-weight: bold;

}
.menu li:nth-child(1) a span {
left:-10px
}
.menu li:nth-child(2) a span {
left:-25px
}

.nav input:checked + label {
  background: var(--black);
  transform: translateY(calc(-50% + 4px));
}

.nav input:checked ~ .menu li:nth-child(1) {
  top: -230px;
  transition-delay: 0.1s;
}

.nav input:checked ~ .menu li:nth-child(2) {
  top: -160px;
  left: calc(15% - 85px);
  transition-delay: 0.2s;
}

.nav input:checked ~ .menu li:nth-child(3) {
  top: -160px;
  left: calc(15% + 85px);
  transition-delay: 0.3s;
}

.nav input:checked ~ .menu li:nth-child(4) {
  top: -110px;
  transition-delay: 0.4s;
}

.nav input:checked ~ .menu li a span {
  opacity: 1;
  transition-delay: 0.9s;
}