.animate__zoomInOpacity {
	animation-name: zoomInOpacityAnimation;
	animation-duration: var(--animate-duration);
}

.animate__opacity {
	animation-name: opacityAnimation;
	animation-duration: var(--animate-duration);
}

*.animate__zoomInOpacity {
	opacity: 0;
}

*.animate__opacity {
/* 	opacity: 0; */
}

  @keyframes zoomInOpacityAnimation {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes opacityAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

@media (max-width: 991px) {

	#mobile-menu .mobile-burger {       
    	width: 21.99px;
	}
}

/* style About Us menu item */
.item-156, .item-156 > a {
    font-size: 12px !important;
    margin-top: 1.6px;
}

/* Top bottom padding home mods */
body .about-module-white, body .about-module-grey {
	padding: 100px 0;
	
	
/* Spacing in menu list */
#mod-custom118 {
line height: 2;
}

/* button color */
.btn-primary {
	background-color: #d70000;
	border-color: #4D4D4D;
}

