/*
 Theme Name:   Rubit's GeneratePress child theme
 Theme URI:    https://rubit.ee
 Description:  GeneratePress child theme by Rubit OÜ
 Author:       Rubit OÜ
 Author URI:   https://rubit.ee
 Template:     generatepress
 Version:      0.3
*/


/**
 * BEGIN GeneratePress Site CSS
 */
/* Moving blocks on front page */
.container-shadow {
  transition: all 0.2s ease-in;
  box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.1);
}

.container-shadow:hover {
  transform: translateY(-3px);
}

/**
 * END GeneratePress Site CSS
 */


/*------------------------------ Footer social icons ---------------------*/
.r-social-icons a {
  opacity: 0.6;
  transition: all 0.8s ease-in-out;
}

.r-social-icons a:hover {
  opacity: 1;
  transition: all 0.4s ease-out;
}



/**
 * BEGIN FrontPage Video Background
 */
.background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.background-video-content {
  position: relative;
  z-index: 1;
}

video[poster] {
  object-fit: cover;
  width: 100%;
  height: 700px;
}

/**
 * END FrontPage Video Background
 */