/* html, body {
    overflow-x: hidden;
} */

body {
    /* display: flex;
    flex-direction: column; */
    color: #fff;
    background-color: #151525;
    min-width: 320px;
    background: #151525 url(../img/variants-bg.webp) no-repeat center bottom/cover;
}

img {
    max-width: 100%;
    height: auto;
}

.hero {
    position: relative;
    min-height: 70vh;
    background: #151525 url(../img/hero-bg.webp) no-repeat center/cover;
}

.hero::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.sample-pic {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.sample-pic img {
    width: 100%;
    height: 100%;
}

/* .variants {
    background: #151525 url(../img/variants-bg.webp) no-repeat center/cover;
} */

/* .btn-decor {
    background-color: #e32879;
    color: #fff;
    transition: background-color 0.5s;
    text-decoration: none;
}

.btn-decor:active,
.btn-decor:hover,
.btn-decor:focus {
    background-color: #be3a74;
} */

.tel-decor {
    text-decoration: none;
    color: #fff;
    transition: color 0.5s;
}

.tel-decor:active,
.tel-decor:hover,
.tel-decor:focus {
    color: #0d6efd!important;
}

.decor-l {
    border-top: none;
    border-left: 4px solid #0d6efd;
}

.list-decor {
    list-style: none;
    padding-left: 0;
}

.decor-line {
    /* position: relative; */
    background-color: #0d6efd;
}

/* .decor-line::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    background-color: #0d6efd;
}

.decor-line-content {
    position: relative;
    z-index: 2;
} */

.icon-decor {
	flex-shrink: 0;
}

.icon-decor img {
	width: 130px;
	height: 130px;
}

@media screen and (max-width: 768px) {
    .decor-l {
        border-left: none;
        border-top: 4px solid #0d6efd;
    }
}

@media screen and (max-width: 576px) {
    .sample-pic {
        height: 179px;
    }
	.icon-decor img {
	width: 100px;
	height: 100px;
	}
	.var-decor h3 {
	word-break: break-all;
	}
}

.snow {
  display: flex;
  justify-content: space-between;

  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  pointer-events: none;
}

.snow__flake {
  color: #c1dcec;

  position: relative;
  top: -1.5em;

  animation-name: snowfall;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;

  will-change: transform;
}

@keyframes snowfall {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(100vh + 1.5em));
  }
}
