/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body, h1, h2, h3, h4, h5, p, li, ol, p, span, b{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 1.6;
}
.marquee-vertical {
  height: 40px;
  overflow: hidden;
  position: relative;
  color: #111;
  font-size: 14px;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 6s linear infinite;
}

.marquee-content div {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation */
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(0);
  }
  55% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-40px);
  }
}
