﻿@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: inherit;
	}
}
.ul-li ul {
  margin: 0;
  padding: 0;
}
.ul-li ul li {
  list-style: none;
  display: inline-block;
}

.ul-li-block ul {
  margin: 0;
  padding: 0;
}
.ul-li-block ul li {
  display: block;
  list-style: none;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url(../img/bg-load.webp) center center no-repeat;
  background-size: cover;
}
#preloader img
{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.relative-position {
  position: relative;
}

.pera-content p {
  margin-bottom: 0;
}

.container {
  max-width: 1200px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.text-right {
  text-align: right;
}

.background_overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (max-width: 991px) {
    #preloader {
      
      
    }

}
@media (max-width: 600px) {
    #preloader img
    {
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        max-width:50%;
        width:100%;
        text-align:center;
        margin:0px auto;   
    }
    #preloader {
      
      background: #fff url(../img/bg-load.webp) center center no-repeat;
      background-size: cover;
    }
}
@keyframes stroke {
            0% {
                fill: rgba(72,138,20,0);
                stroke: rgba(210,216,225,1);
                stroke-dashoffset: 25%;
                stroke-dasharray: 0 50%;
                stroke-width: 1;
            }

            70% {
                fill: rgba(72,138,20,0);
                stroke: rgba(210,216,225,1);
            }

            80% {
                fill: rgba(72,138,20,0);
                stroke: rgba(210,216,225,1);
                stroke-width: 1;
            }

            100% {
                fill: rgba(129,131,132,1);
                stroke: rgba(210,216,225,0);
                stroke-dashoffset: -25%;
                stroke-dasharray: 50% 0;
                stroke-width: 0;
            }
        }