/* * {outline : 1px solid red !important;}   */
@font-face {
  font-family: 'Ubuntu-L-webfont';
  src: url('../fonts/Ubuntu-L-webfont/Ubuntu-L-webfont.eot');
  src: url('../fonts/Ubuntu-L-webfont/Ubuntu-L-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Ubuntu-L-webfont/Ubuntu-L-webfont.woff') format('woff'),
    url('../fonts/Ubuntu-L-webfont/Ubuntu-L-webfont.ttf') format('truetype'),
    url('../fonts/Ubuntu-L-webfont/Ubuntu-L-webfont.svg#Ubuntu-L-webfont') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ubuntu-m-webfont';
  src: url('../fonts/ubuntu-m-webfont/ubuntu-m-webfont.eot');
  src: url('../fonts/ubuntu-m-webfont/ubuntu-m-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ubuntu-m-webfont/ubuntu-m-webfont.woff') format('woff'),
    url('../fonts/ubuntu-m-webfont/ubuntu-m-webfont.ttf') format('truetype'),
    url('../fonts/ubuntu-m-webfont/ubuntu-m-webfont.svg#ubuntu-m-webfont') format('svg');
  font-weight: normal;
  font-style: normal;
}

@media (any-hover: hover) {
  .button:hover {
    background-color: red;
  }
}

.color-light-blue {
  color: #ff3300;
}

.color-00 {
  color: #999999;
}

.color-01 {
  color: #666666;
}

.color-02 {
  color: #ff3300;
}

.color-04 {
  color: #222428;
}

.stiky-button {
  background: #222428 !important;
  color: #ffffff !important;
}

.stiky-button:hover {
  background: #ff3300 !important;
  color: #ffffff !important;
}

.stiky-button a {
  color: #ffffff !important;
}

@media (max-width: 1199px) {
  .stiky-button {
    display: none !important;
  }
}

.l-grey {
  color: #999999 !important;
}

.icon-ya {
  background: url('../images/yandex-direct.svg') no-repeat;
}

#more-arrows {
  width: 40px;
  height: 40px;

  &:hover {

    polygon {
      fill: #333;
      transition: all .2s ease-out;

      &.arrow-bottom {
        transform: translateY(-18px);
      }

      &.arrow-top {
        transform: translateY(18px);
      }

    }

  }

}

polygon {
  fill: #333;
  transition: all .2s ease-out;

  &.arrow-middle {
    opacity: 0.75;
  }

  &.arrow-top {
    opacity: 0.5
  }

}

#more-arrows2 {
  width: 40px;
  height: 40px;

  &:hover {

    polygon {
      fill: #fff;
      transition: all .2s ease-out;

      &.arrow-bottom {
        transform: translateY(-18px);
      }

      &.arrow-top {
        transform: translateY(18px);
      }

    }

  }

}

#more-arrows2 polygon {
  fill: #fff;
  transition: all .2s ease-out;

  &.arrow-middle {
    opacity: 0.75;
  }

  &.arrow-top {
    opacity: 0.5
  }

}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
}

.anim-1 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 3s linear alternate forwards;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  90% {
    /* stroke-dashoffset: 900; */
    fill-opacity: 0.0;
  }

  100% {
    stroke-dashoffset: 850;
    fill-opacity: 1;
  }
}

.shake {
  animation: shake 9s linear infinite;
}

.font-size-20 {
  font-size: 20px;
}

.row-flex {
  display: flex;
  flex-flow: row wrap;
}

.site-footer {
  background: center / cover url("../images/futer-bkg.jpg");
}

.cat {
  font-size: 1.7rem;
  color: #fff !important;
}

.font-orange {
  color: #ff3300;
}

.block-heading-1 span {
  color: #b8b8b8;
}

.block-heading-2 span polygon {
  color: #fff;
}

#particles-js {
  height: 100vh;
}

body {
  font-family: Ubuntu-L-webfont;
  line-height: 1.7;
  font-weight: 400;
  font-size: 1rem;
  color: #474A51;
  background: url("../images/chruch.png") fixed;
}

body:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 399;
}

body.offcanvas-menu {
  position: relative;
}

body.offcanvas-menu:before {
  opacity: 1;
  visibility: visible;
}

::-moz-selection {
  background: #474A51;
  color: #fff;
}

::selection {
  background: #474A51;
  color: #fff;
}

a {
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

a:hover {
  text-decoration: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: "ubuntu-L-webfont";
  text-transform: normal;
}

.text-black {
  color: #474A51 !important;
}



@media (min-width: 1200px) {


  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.form-control {
  height: 55px;
  background: #fff !important;
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.form-control:active,
.form-control:focus {
  border-color: #ff3300;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.site-section {
  padding: 2.5em 0;
}

@media (min-width: 768px) {
  .site-section {
    padding: 5em 0;
  }
}

.site-section.site-section-sm {
  padding: 4em 0;
}

.site-footer {
  padding: 4em 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 8em 0;
  }
}

.site-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer p {
  color: #fff;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer a:hover {
  color: white;
}

.site-footer {
  font-size: 1.2rem;
  padding: .5rem 0;
}

.site-footer a {
  color: #fff;
  position: relative;
}

.site-footer a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.site-footer a:hover:before {
  transform: scaleX(0);
  background-color: #fff;
}

.site-footer a:hover span {
  text-decoration: none;
}

.site-footer a:hover {
  color: #ff3300;
  text-decoration: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer .footer-heading {
  font-size: 2rem;
  color: #fff;
}

.color-orange {
  color: #ff3300;
}

.ul-check {
  margin-bottom: 50px;
}

.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.ul-check li:before {
  left: 0;
  font-size: 20px;
  font-family: "icomoon";
  content: "\e5ca";
  position: absolute;
}

.ul-check.white li:before {
  color: #fff;
}

.ul-check.success li:before {
  color: #71bc42;
}

.ul-check.primary li:before {
  color: #ff3300;
}

.top-bar .col-md a:hover {
  text-decoration: none !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

#sticky-wrapper {
  height: 0 !important;
}

.sticky-wrapper {
  height: 0 !important;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 3px 3px 3px 3px;
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.site-navbar .toggle-button {
  position: absolute;
  right: 0px;
}

.site-navbar .site-logo {
  position: absolute;
  font-size: 1.0rem;
  text-transform: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  padding: 0;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .site-navbar .site-logo {
    float: left;
    position: relative;
  }
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #ff3300 !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
  margin-left: 15px;
  margin-right: 15px;
  padding: 20px 0px;
  color: #222428 !important;
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: #ff3300;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #ff3300;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #ff3300 !important;
  background: #f8f9fa;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 360px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: #ff3300;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #333333;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #ff3300;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .nav-link.active {
  color: #ff3300;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
  background: rgba(255, 255, 255, 0.33);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar ul li a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #ff3300;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: #ff3300 !important;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

@media (max-width: 991.98px) {
  .sticky-wrapper .shrink {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

/* Blocks */
ul.check li {
  background: url("../images/icons/bullet/check.png") no-repeat scroll left center transparent;
}


.site-section {
  padding: 7rem 0;
}

@media (max-width: 991.98px) {
  .site-section {
    padding: 3rem 0;
  }
}

.block-heading-1 span {
  text-transform: normal;
  font-weight: 100;
}

.block-heading-1 h2,
.block-heading-1 h3,
.block-heading-1 h4,
.block-heading-1 h5 {
  font-size: 3rem;
  color: #666666;
}

.block-img-video-1-wrap .block-img-video-1 {
  position: relative;
}

.block-img-video-1 img {
  transition: all 0.5s ease-out;
}

.block-img-video-1 img:hover {
  transform: scale(1.05);
  /* Equal to scaleX(1.05) scaleY(1.05) */
  transition: all 0.2s ease-in;
}

.box-shadow {
  box-shadow:
    0 1px rgba(255, 255, 255, .2) inset,
    0 1px 15px rgba(0, 0, 0, .4),
    0 0 1px 1px rgba(0, 0, 0, .2);

}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {}



.block-counter-1 {
  text-align: center;
}

.block-counter-1 .number,
.block-counter-1 .caption {
  display: block;
  line-height: 1;
}

.block-counter-1 .number {
  color: #fff;
  font-size: 4rem;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .block-counter-1 .number {
    font-size: 2rem;
  }
}

.block-counter-1 .number:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
}

.block-counter-1 .caption {
  font-size: 14px;
  color: #fff;
  letter-spacing: .05em;
}

.block-testimony-1 {
  padding: 20px;
}

.block-testimony-1 blockquote {
  background: rgba(255, 255, 255, 0.65);
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  padding: 30px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  font-family: 'Georgia', Times, serif;
}

.block-testimony-1 figure {
  position: relative;
  padding-top: 20px;
}

.block-testimony-1 figure:before {
  position: absolute;
  content: "";
  width: 50px;
  left: 50%;
  display: none;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ff3300;
  height: 2px;
}

.block-testimony-1 figure img {
  max-width: 90px;
}

.block-testimony-1 h3 {
  font-size: 18px;
}

.block-13 .owl-nav {
  display: none;
}

.block-13 .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px;
}

.block-13 .owl-dots .owl-dot {
  display: inline-block;
}

.block-13 .owl-dots .owl-dot span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: #cccccc;
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  margin: 3px;
}

.block-13 .owl-dots .owl-dot.active span {
  width: 20px;
  background: #ff3300;
}

.form-control {
  border: none;
  border: 1px solid #e6e6e6;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
  border: 1px solid #666666;
}

.block__73694 .block__73422 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .block__73694 .block__73422 {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .slide-one-item .owl-nav {
    display: none;
  }

  .top-bar {
    font-size: 1.0rem !important;
    padding: 0.5rem 0;
    display: none;
  }
}

.slide-one-item .owl-nav .owl-prev,
.slide-one-item .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.slide-one-item .owl-nav .owl-prev:hover,
.slide-one-item .owl-nav .owl-next:hover {
  color: #fff;
}

.slide-one-item .owl-nav .owl-prev {
  left: 20px;
}

.slide-one-item .owl-nav .owl-next {
  right: 20px;
}

.slide-one-item .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.slide-one-item .owl-dots .owl-dot {
  display: inline-block;
}

.slide-one-item .owl-dots .owl-dot>span {
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  margin: 3px;
}

.slide-one-item .owl-dots .owl-dot.active>span {
  width: 20px;
  background: #fff;
}

.top-bar {
  font-size: 1.2rem;
  padding: .5rem 0;
}

.top-bar a {
  color: #666666;
  position: relative;
}

@media (max-width: 1199px) {
  .top-bar a {
    font-size: 1rem;
  }
}

.top-bar a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #666666;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.top-bar a:hover:before {
  transform: scaleX(0);
  background-color: #666666;
}

.top-bar a:hover span {
  text-decoration: none;
  /* Возвращаем элегантное подчеркивание, но только при наведении 🕺🏻 */
}

.top-bar a:hover {
  color: #333333;
  text-decoration: underline;
}

.block__35630 .icon>span {
  font-size: 3rem;
  color: #ff3300;
  display: block;
  position: relative;
}

.block__35630 h3 {
  color: #000;
  font-size: 1.4rem;
}

/*PRELOADING------------ */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.alt-text {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.cd-intro {
  position: absolute;
  top: 500px;
  right: 100px;
}

@media only screen and (min-width: 1900px) {
  .cd-intro {
    top: 500px;
    right: 0;
    left: 0;
    text-align: center;
  }
}

@media only screen and (max-width: 1440px) {
  .cd-intro {
    top: 500px;
  }
}

@media only screen and (max-width: 1024px) {
  .cd-intro {
    top: 450px;
    right: 60px;
  }
}

@media only screen and (max-width: 820px) {
  .cd-intro {
    top: 300px;
    right: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .cd-intro {
    top: 350px;
    right: 50px;
  }
}

@media only screen and (max-width: 540px) {
  .cd-intro {
    top: 250px;
    right: 30px;
  }
}

@media only screen and (max-width: 425px) {
  .cd-intro {
    top: 200px;
    right: 30px;
  }
}

@media only screen and (max-width: 375px) {
  .cd-intro {
    top: 190px;
    right: 0px;
  }
}

@media only screen and (max-width: 320px) {
  .cd-intro {
    top: 170px;
    right: 0px;
  }
}

.cd-headline {
  font-size: 1.7rem;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 2rem;
    font-weight: 300;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 3rem;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xzoom 

-------------------------------- */
.cd-headline.zoom .cd-words-wrapper {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
}

.cd-headline.zoom b {
  opacity: 0;
  text-align: center;
}

.cd-headline.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in 0.8s;
  -moz-animation: zoom-in 0.8s;
  animation: zoom-in 0.8s;
  text-align: center;
}

.cd-headline.zoom b.is-hidden {
  -webkit-animation: zoom-out 0.8s;
  -moz-animation: zoom-out 0.8s;
  animation: zoom-out 0.8s;
  text-align: center;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}

@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}

@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}

.slider-thumb::before {
  position: absolute;
  content: "";
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  background: #222428;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 5s linear infinite;
  display: block;
  z-index: -1;
  -webkit-animation: sliderShape 5s linear infinite;
}

@media only screen and (min-width: 768px) {
  .slider-thumb::before {
    width: 50%;
    left: 25%;
  }
}

@keyframes sliderShape {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

.context {
  width: 100%;
  position: relative;
  top: -90%;

}

.context h3 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 3rem !important;
  z-index: 1;
}

.bg-darkk {
  background: #222428;
  width: 100%;
  background: center / cover no-repeat url("../images/bg-dark.jpg");
  background-attachment: fixed;
  box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.bg-darkk h3 {
  color: #fff;
}

.aread {
  background: #222428;
  width: 100%;
  height: 450px;
}

@media only screen and (max-width: 768px) {
  .aread {
    background: #222428;
    width: 100%;
    height: 800px;
  }
}

.context .alert {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
  border-radius: 4px;
  padding: 30px;
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  justify-content: space-between;
  background-color: rgba(1, 1, 1, 0.4);
  z-index: 1;
  animation: cc 10s linear infinite;
}

@keyframes cc {
  from {
    backdrop-filter: blur(2vmin);
    -webkit-backdrop-filter: blur(2vmin);
  }

  to {
    backdrop-filter: blur(2vmin);
    -webkit-backdrop-filter: blur(2vmin);
  }
}

.circles {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
  z-index: 0;

}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}


.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
  background: center / contain no-repeat url("../images/yandex-direct.svg");
}

@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

@-webkit-keyframes rotating

/* Safari and Chrome */
  {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);

  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating .icon:hover {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

@media (max-width: 991.98px) {
  .context h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    line-height: 3rem !important;
    z-index: 1;
  }

  .site-section-cover,
  .site-section-cover .container>.row {
    background-size: cover !important;
    height: calc(70vh - 464px);
    min-height: 364px;
  }
}


.icon-01 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-01.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.icon-02 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-02.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.icon-03 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-03.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.icon-04 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-04.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.icon-05 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-05.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.icon-06 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-06.png");
  display: inline-block;
  -webkit-transform: scale(1.);
  -ms-transform: scale(1.);
  transform: scale(1.);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-01 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-01-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale (1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-02 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-02-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-03 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-03-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-04 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-04-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-05 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-05-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630:hover .icon-06 {
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../images/icons-06-1.png");
  display: inline-block;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.block__35630 .h3 {
  letter-spacing: 0rem;
  transition:
    letter-spacing .4s ease-out;
}

.block__35630:hover .h3 {
  letter-spacing: 0.05rem;
  transition:
    letter-spacing .4s ease-out;
}

.block__35630:hover {
  cursor: default;
}

/* стили 3d надписи */
.persp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.render {
  align-self: center;
  font-size: 5rem;
  color: #999999;
  text-shadow:
    #222428 1px 1px 1px,
    #222428 1px 2px 1px,
    #222428 1px 3px 1px,
    #222428 1px 4px 1px,
    #222428 1px 5px 1px,
    #222428 1px 6px 1px,
    rgba(16, 16, 16, 0.4) 1px 10px 6px,
    rgba(16, 16, 16, 0.2) 1px 14px 10px,
    rgba(16, 16, 16, 0.2) 1px 18px 35px,
    rgba(16, 16, 16, 0.4) 1px 22px 65px;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.persp:hover .render {
  margin-top: 0px;
  cursor: default;
  text-shadow:
    #222428 1px 1px 1px,
    #222428 1px 2px 1px,
    #222428 1px 3px 1px,
    #222428 1px 4px 1px,
    #222428 1px 5px 1px,
    #222428 1px 6px 1px,
    rgba(16, 16, 16, 0.4) 1px 10px 6px,
    rgba(16, 16, 16, 0.2) 1px 14px 10px,
    rgba(16, 16, 16, 0.2) 1px 18px 35px,
    rgba(16, 16, 16, 0.4) 1px 22px 65px;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.render-orange {
  align-self: center;
  font-size: 5rem;
  font-weight: bold;
  color: #ff3300;
  text-shadow:
    #971e00 1px 1px 1px,
    #971e00 1px 2px 1px,
    #971e00 1px 3px 1px,
    #971e00 1px 4px 1px,
    #971e00 1px 5px 1px,
    #971e00 1px 6px 1px,
    #971e00 1px 7px 1px,
    #971e00 1px 8px 1px,
    #971e00 1px 9px 1px,
    rgba(16, 16, 16, 0.4) 1px 18px 6px,
    rgba(16, 16, 16, 0.2) 1px 22px 10px,
    rgba(16, 16, 16, 0.2) 1px 26px 35px,
    rgba(16, 16, 16, 0.4) 1px 30px 65px;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

.persp:hover .render-orange {
  margin-top: -10px;
  transform: rotate(-0.02turn);
  cursor: default;
  text-shadow:
    #971e00 1px 1px 1px,
    #971e00 1px 2px 1px,
    #971e00 1px 3px 1px,
    #971e00 1px 4px 1px,
    #971e00 1px 5px 1px,
    #971e00 1px 6px 1px,
    #971e00 1px 7px 1px,
    #971e00 1px 8px 1px,
    #971e00 1px 9px 1px,
    rgba(16, 16, 16, 0.4) 1px 38px 26px,
    rgba(16, 16, 16, 0.2) 1px 42px 30px,
    rgba(16, 16, 16, 0.2) 1px 46px 65px;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

/* стили кнопки с кружком */
.button_container {
  margin: 0 auto;
  margin-top: 30px;
  padding-top: 0px;
}

.button_su {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 30px;
}

.su_button_circle {
  background-color: red;
  border-radius: 1000px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
}

.button_su_inner {
  display: inline-block;
  background: #222428;
  color: #F4F4F4;
  font-size: 16px;
  font-weight: normal;
  width: 132px;
  text-align: center;
  border-radius: 4px;
  transition: 400ms;
  text-decoration: none;
  padding: 12px;
  z-index: 100000;
}

.button_su_inner:hover {
  color: #ffffff;
}

.button_su_inner2 {
  display: inline-block;
  background: #222428;
  color: #F4F4F4;
  font-size: 16px;
  font-weight: normal;
  width: 200px;
  text-align: center;
  border-radius: 4px;
  transition: 400ms;
  text-decoration: none;
  padding: 12px;
  z-index: 100000;
}

.button_su_inner2:hover {
  color: #ffffff;
}

.button_text_container {
  position: relative;
  z-index: 10000;
}

.explode-circle {
  animation: explode .6s forwards;
  background-color: #ff3300;
}

.desplode-circle {
  animation: desplode .6s forwards;
  background-color: #ff3300;
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
  }

  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
  }
}

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
  }

  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
  }
}

/* стили надписи хром */
.containerrr {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 2;
}

.chrome-text,
.chrome-text-1,
.chrome-text-2,
.chrome-text-3,
.chrome-text-4 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 0px #999999, 2px 2px 0px #3a3a3a, 3px 3px 0px #2a2a2a,
    8px 8px 10px rgba(0, 0, 0, 0.4);
  will-change: background-position;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.chrome-text::before,
.chrome-text-1::before,
.chrome-text-2::before,
.chrome-text-3::before,
.chrome-text-4:before {
  content: "Графический дизайн";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      transparent 6%,
      rgba(255, 255, 255, 0.85) 7.5%,
      transparent 9%,
      transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: chrome-shine 10s ease-in-out infinite;
  background-size: 200% 100%;
  background-position: 0 0;
}

.chrome-text-1::before {
  content: "Создание сайтов";
}

.chrome-text-2::before {
  content: "SEO продвижение";
}

.chrome-text-3::before {
  content: "Портфолио";
}

.chrome-text-4::before {
  content: "Преимущества";
}

@keyframes chrome-shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 300% 0;
  }
}

@media (max-width: 991.98px) {

  .chrome-text,
  .chrome-text-1,
  .chrome-text-2,
  .chrome-text-3,
  .chrome-text-4 {
    font-size: 2rem;
    text-align: center;
  }

  .containerrr {
    padding-left: 25px;
    padding-right: 25px;
  }

  .render {
    font-size: 2.5rem;
    text-shadow: none;
  }

  .render-orange {
    font-size: 2.5rem;
    text-shadow: none;
  }
}

/* стили красивого фона блока графический дизайн */
.body-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  margin-top: -20vh;
  background: transparent;
  color: white;
}

@media (max-width: 991.98px) {
  .body-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    margin-top: -85px;
    background: transparent;
    color: white;
    padding-top: 140px;
  }
}

.body-image picture {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body-image picture img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.body-image picture::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 25%;
  background-color: transparent;
  content: "";
  animation: a 25s ease infinite;
}

@keyframes a {
  0% {
    width: 25%;
    height: 25%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }

  12.49% {
    left: 0;
  }

  12.5% {
    width: 100%;
    left: unset;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  25% {
    width: 25%;
    height: 25%;
    backdrop-filter: blur(2vmin) hue-rotate(300deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(300deg);
  }

  37.49% {
    top: 0;
    bottom: 0;
  }

  37.5% {
    top: unset;
    height: 100%;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  50% {
    width: 25%;
    height: 25%;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }

  62.49% {
    left: unset;
    right: 0;
  }

  62.5% {
    right: unset;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  74.9% {
    top: unset;
    bottom: 0;
  }

  75% {
    width: 25%;
    height: 25%;
    backdrop-filter: blur(2vmin) hue-rotate(300deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(300deg);
  }

  87.49% {
    top: unset;
    bottom: 0;
  }

  87.5% {
    height: 100%;
    top: 0;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  100% {
    width: 25%;
    height: 25%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }
}

.body-image picture::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 25%;
  background-color: transparent;
  content: "";
  animation: b 10s ease infinite;
}

@keyframes b {
  0% {
    width: 25%;
    height: 25%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }

  12.49% {
    top: 0;
  }

  12.5% {
    height: 100%;
    top: unset;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  25% {
    width: 25%;
    height: 25%;
    backdrop-filter: blur(2vmin) hue-rotate(300deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(300deg);
  }

  37.49% {
    left: 0;
    right: 0;
  }

  37.5% {
    left: unset;
    width: 100%;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  50% {
    width: 25%;
    height: 25%;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }

  62.49% {
    top: unset;
    bottom: 0;
  }

  62.5% {
    top: 0;
    height: 100%;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  74.9% {
    bottom: unset;
    right: 0;
  }

  75% {
    width: 25%;
    height: 25%;
    left: unset;
    backdrop-filter: blur(2vmin) hue-rotate(300deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(300deg);
  }

  87.49% {
    left: unset;
    right: 0;
  }

  87.5% {
    width: 100%;
    left: 0;
    backdrop-filter: blur(0vmin) hue-rotate(150deg);
    -webkit-backdrop-filter: blur(0vmin) hue-rotate(150deg);
  }

  100% {
    width: 25%;
    height: 25%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }
}

.body-image figure {
  position: absolute;
  width: 100%;
  max-width: 1140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 30px;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  animation: c 10s linear infinite;
}

@keyframes c {
  from {
    backdrop-filter: blur(2vmin) hue-rotate(0deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(0deg);
  }

  to {
    backdrop-filter: blur(2vmin) hue-rotate(360deg);
    -webkit-backdrop-filter: blur(2vmin) hue-rotate(360deg);
  }
}

.body-image h3 {
  font-size: 2rem;
  line-height: 1.5cap;
  text-wrap: balance;
  color: white;
  margin-bottom: 20px;
}

.body-image figcaption {
  font-size: 18px;
  font-weight: 400;
  line-height: 2cap;
  text-wrap: pretty;
  padding-left: 0px;
  border-left: 0px solid white;
  color: #bbb;
}

@media (max-width: 780px) {
  .body-image figure {
    max-width: 90%;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .body-image h1 {
    font-size: 32px;
  }

  .body-image figcaption {
    font-size: 16px;
  }
}

/* стили фильтра карточек портфолио */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
  display: none;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  width: 25%;
  cursor: pointer;
  line-height: 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:checked:hover+label:before,
[type="radio"]:not(:checked):hover+label:before,
[type="radio"]:checked:hover+label:after,
[type="radio"]:not(:checked):hover+label:after {
  opacity: 0.7;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  border-radius: 3px;
  background-color: transparent;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  border-radius: 2px;
  height: 3px;
  background-color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 12px;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  width: 0;
}

[type="radio"]:checked+label:after {
  opacity: 1;
  width: calc(100% - 24px);
}

.checkbox-all:checked+label:after,
.checkbox-all:not(:checked)+label:after {
  background-color: #000;
}

.checkbox-alizarin:checked+label:after,
.checkbox-alizarin:not(:checked)+label:after {
  background-color: #e74c3c;
}

.checkbox-wisteria:checked+label:after,
.checkbox-wisteria:not(:checked)+label:after {
  background-color: #8e44ad;
}

.checkbox-emerland:checked+label:after,
.checkbox-emerland:not(:checked)+label:after {
  background-color: #2ecc71;
}

.checkbox-belizehole:checked+label:after,
.checkbox-belizehole:not(:checked)+label:after {
  background-color: #2980b9;
}

.checkbox-sunflower:checked+label:after,
.checkbox-sunflower:not(:checked)+label:after {
  background-color: #f1c40f;
}

.portfolio label {
  float: left;
  width: 23%;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  cursor: pointer;
}

.portfolio input[type="radio"][id="blue"]:checked~.red,
input[type="radio"][id="blue"]:checked~.green {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.portfolio input[type="radio"][id="red"]:checked~.blue,
input[type="radio"][id="red"]:checked~.green {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.portfolio input[type="radio"][id="green"]:checked~.blue,
input[type="radio"][id="green"]:checked~.red {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.portfolio .tile {
  width: 32%;
  height: auto;
  float: left;
  transition: all 1s;
  margin: 0.5%;
}

@media (max-width: 900px) {
  .portfolio .tile {
    width: 100%;
    height: auto;
    float: left;
    transition: all 1s;
    margin: 10px;
  }
}

/* стили карточек портфолио */
.card-wrapper .card {
  flex-grow: 0;
  height: auto;
  background: transparent;
  border: 0px solid #fff;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, .5);
  cursor: pointer;
  transition: all .5s cubic-bezier(.8, .5, .2, 1);
  overflow: hidden;
  position: relative;
}

.card-wrapper .card img {
  width: 100%;
  height: 100%;
  transition: all .5s cubic-bezier(.8, .5, .2, 1);
}

.card-wrapper .descriptions {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #333333e8;
  width: 100%;
  height: 100%;
  transition: all .7s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
  clip-path: circle(0% at 100% 100%);
}

.card-wrapper .card:hover .descriptions {
  left: 0px;
  transition: all .7s ease-in-out;
  clip-path: circle(75%);
}

.card-wrapper .card:hover {
  transition: all .4s cubic-bezier(.8, .5, .2, 1.4);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, .3);
  transform: scale(.97);
}

.card-wrapper .card:hover img {
  transition: all .7s cubic-bezier(.8, .5, .2, 1.4);
  transform: scale(1.6);
  filter: blur(3px);
}

.card-wrapper .card h1 {
  color: #999;
  font-size: 1.6rem;
  margin: 0px;
}

.card-wrapper .card p {
  line-height: 24px;
  color: #fff;
  height: auto;
}

.card h1 a {
  color: #fff;
}

.card h1 a:hover {
  color: #ff3300;
  text-decoration: none;
}

.card .button_container {
  position: absolute;
  bottom: 0;
  right: 10px;
}

/* модальное окно формы обратной связи */
input,
textarea {
  padding: 5px 8px;
  border: 1px solid #666666;
  display: block;
  margin-top: 6px;
  color: #b1b7ba;
}

input[type="submit"]:disabled {
  opacity: .3;
}

.open_modal p {
  background: #222428;
  border-radius: 5px;
  padding: 2px 44px;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 0 0 -50%;
  display: block;
  max-width: 380px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  cursor: default;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 99999;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -ms-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.popup,
.popup2 {
  display: inline-block;
  left: 50%;
  width: 100%;
  opacity: 0;
  position: fixed;
  top: 40%;
  visibility: hidden;
  z-index: 999999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity .5s, top .5s;
  -moz-transition: opacity .5s, top .5s;
  -ms-transition: opacity .5s, top .5s;
  -o-transition: opacity .5s, top .5s;
  transition: opacity .5s, top .5s;
}

.popup form {
  padding: 15px 35px 45px;
  margin: 0 auto;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  border: 1px solid #222428;
}

.popup2 .window {
  padding: 15px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  border: 1px solid #222428;
  margin: 0 auto;
}

.popup .checkbox {
  margin-bottom: 10px;
}

.form-control {
  position: relative;
  font-size: 1rem;
  height: auto;
  padding: 10px 16px;
}

.popup form input {
  background: #f0f5f7;
  margin-top: 8px;
  width: 100%;
}

.popup form input[name="txtname"] {
  margin-top: 20px;
}

.popup form textarea {
  background: #f0f5f7;
  margin-top: 8px;
  width: 100%;
  height: 100px;
  resize: none;
}

.popup form label {
  width: 100%;
  height: auto;
  display: block;
  margin: 8px -2px;
  padding: 0;
}

.popup form input[type="submit"] {
  background-color: #222428;
  margin-top: 0px !important;
  text-align: center;
}

.popup form input[type="checkbox"] {
  width: auto;
  margin: 6px;
  padding: 2px;
  float: left;
}

/* для элемента input c type="checkbox" */
.custom-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>span {
  display: block;
  align-items: center;
  user-select: none;
  font-size: 0.9rem;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>span::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #ff3300;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
  border-color: #ff3300;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox>input:not(:disabled):active+span::before {
  background-color: #ff3300;
  border-color: #ff3300;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox>input:focus+span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox>input:focus:not(:checked)+span::before {
  border-color: #ff3300;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+span::before {
  border-color: #ff3300;
  background-color: #ff3300;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+span::before {
  background-color: #999999;
}

.popup form h5 {
  font-size: 1.6rem;
  color: #666666;
  margin-top: 0.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.popup .close_modal,
.popup2 .close_modal {
  display: block;
  width: 33px;
  height: 33px;
  line-height: 2;
  float: right;
  margin-right: -20px;
  cursor: pointer;
  color: #222428;
  /* background: #999999; */
  text-align: center;
  border-radius: 50%;
  /* border: 2px solid #222428; */
  /* box-shadow: 0px 4px 7px rgba(0,0,0,.5); */
  transition: color .5s ease;
}

.close_modal:hover {
  color: #ff3300;
  transition: color .5s ease;
}

.popup2 h5 {
  font-size: 2rem;
  color: #222428;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 0px;
  text-align: center;

}

.popup2 p {
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  margin-bottom: 0px;
}

.popup2 p strong {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  display: block;
}

.popup2 hr {
  background: #222428;
  height: 1px;
  border: none;
}

/* конец стилей формы обратной связи */

.btn-secondary {
  border: none;
  background: rgba(21, 21, 25, 0.8) !important;
  border-color: rgba(21, 21, 25, 0.8) !important;
  transition: background-color .5s ease;
}

.btn-secondary:hover {
  border: none;
  background: #222 !important;
  border-color: #111 !important;
  text-shadow: 1px 1px 0px 1px rgba(0, 0, 0, .9) !important;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, .5);
  transition: background-color .5s ease;
}

.alert-dark {
  color: #fff;
  background-color: #222428;
  border-color: #222222;
}

.warning {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #222428;
  z-index: 3;
  color: #fff;
}

.warning .btn-dark:hover {
  background-color: #ff3300;
  transition: background-color .5s ease;
}

.warning--active {
  display: flex;
  line-height: 2.5;
}

@media (max-width: 1199px) {
  .warning--active {
    font-size: 1rem;
    line-height: 1.5;
  }
}