/*
Theme Name: el-dam.pl
Theme URI: h
Author: esale.com.pl based on wordpress theme
Author URI: https://esale.com.pl
Description: 
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.0
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: el-dam
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/
body{

  overflow-x: hidden !important;
  width: 100%;
}
.startvideo{
    position: absolute;
    top: 0;
    left:0;
    z-index: -1;
    width: 100%;
    object-fit: cover;
    min-height: 800px;
}

.home h1{
    color:white;
}

@media (min-width:1279px) and (max-width:1700px){
    .home h1{
        margin-top:40px;
    }
}

@media (min-width:1701px){
    .home h1{
        margin-top:160px;
    }
}
.hero_block p {
        font-size: 19px !important;
}
.btn-animated .wp-block-button__link {
  position: relative;
  padding: 14px 32px;
  background: transparent;
 display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  z-index: 1;
/*
    background-image: linear-gradient(
    90deg,
    #4acaac,
    #ffffff,
    #0283ce,
    #00ffd0,
    #ffffff,
    #20856d
  );
 background-size: 300% 300%;
  background-position: 0% 50%;

  animation: borderMove 8s linear infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;*/
}

/* warstwa z animowanym konturem */
.btn-animated .wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 5px; /* grubość konturu */

  background: linear-gradient(
    90deg,
    #4acaac,
    #ffffff,
    #0283ce,
    #00ffd0,
    #ffffff,
    #20856d
  );

  background-size: 300% 300%;
  animation: borderMove 8s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}