* {
  font-family: "Oswald", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.home {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center center;
}

/* ====================================
Navigation 
==================================== */
.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.8);
  transform: translateY(-100%);
}

.overlay-slide-down {
  transition: all 0.4s ease-in-out;
  transform: translateY(0);
}

.overlay-slide-up {
  transition: all 0.8s ease-in-out;
  transform: translateY(-100%);
}

nav,
nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  flex-basis: 20%;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  transform: translateY(-100%);
}

nav li a {
  position: relative;
  top: 46%;
  color: #fff;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}

nav li a:hover {
  color: #fff;
}

nav li a:before {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.2s linear;
}

nav li a:after {
  content: attr(data-content);
  font-size: 0.7rem;
  transition: all 0.2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: #fff;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: "Open sans", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

nav li a:hover:before {
  transform: translateX(0);
  opacity: 1;
}

nav li a:hover:after {
  transform: translateY(15px);
  opacity: 1;
}

nav li:nth-of-type(1) {
  background-color: #0000ff;
}

nav li:nth-of-type(2) {
  background-color: #1e0bd0;
}

nav li:nth-of-type(3) {
  background-color: #2510a3;
}

nav li:nth-of-type(4) {
  background-color: #241178;
}

nav li:nth-of-type(5) {
  background-color: #1f104f;
}

.slide-in-nav-item {
  animation: slide-in-nav-item 0.4s linear 1 0.2s both;
}

.slide-in-nav-item-delay-1 {
  animation: slide-in-nav-item 0.4s linear 1 0.4s both;
}

.slide-in-nav-item-delay-2 {
  animation: slide-in-nav-item 0.4s linear 1 0.6s both;
}

.slide-in-nav-item-delay-3 {
  animation: slide-in-nav-item 0.4s linear 1 0.8s both;
}

.slide-in-nav-item-delay-4 {
  animation: slide-in-nav-item 0.4s linear 1 1s both;
}

.slide-in-nav-item-reverse {
  animation: slide-in-nav-item-reverse 0.3s linear 1 0.5s both;
}

.slide-in-nav-item-delay-1-reverse {
  animation: slide-in-nav-item-reverse 0.3s linear 1 0.4s both;
}

.slide-in-nav-item-delay-2-reverse {
  animation: slide-in-nav-item-reverse 0.3s linear 1 0.3s both;
}

.slide-in-nav-item-delay-3-reverse {
  animation: slide-in-nav-item-reverse 0.3s linear 1 0.2s both;
}

.slide-in-nav-item-delay-4-reverse {
  animation: slide-in-nav-item-reverse 0.3s linear 1 both;
}

/* ====================================
Burger king
==================================== */
.open-overlay {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 100;
  display: block;
  cursor: pointer;
  background-color: #241178;
  padding: 5px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  width: 50px;
  border-radius: 5px;
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: #fff;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  animation: animate-top-bar 0.6s linear 1 both;
}

.animate-bottom-bar {
  animation: animate-bottom-bar 0.6s linear 1 both;
}

.animate-middle-bar {
  animation: animate-middle-bar 0.6s linear 1 both;
}

.animate-out-top-bar {
  animation: animate-out-top-bar 0.6s linear 1 both;
}

.animate-out-bottom-bar {
  animation: animate-out-bottom-bar 0.6s linear 1 both;
}

.animate-out-middle-bar {
  animation: animate-out-middle-bar 0.6s linear 1 both;
}

/* ====================================
Animation keyframes
==================================== */
@keyframes slide-in-nav-item {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slide-in-nav-item-reverse {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(9px);
  }
  80% {
    transform: translateY(5px);
    background-color: #fff;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #fff;
  }
}
@keyframes animate-out-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(9px);
  }
  80% {
    transform: translateY(5px);
    background-color: #fff;
  }
  100% {
    transform: translateY(0);
    background-color: #FFF;
  }
}
@keyframes animate-out-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    transform: translateY(0);
    background-color: #FFF;
  }
}
@keyframes animate-out-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #fff;
  }
}
.home a {
  font-family: "Work Sans", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 50px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 640px) {
  nav ul li a {
    font-size: 11px;
  }
  nav li a:after {
    font-size: 0.6rem;
  }
  .open-overlay {
    right: 1rem;
  }
  nav li a:before {
    width: 15px;
  }
}
.header-logo a {
  border-bottom: none;
}
.header-logo a img {
  width: 200px;
}

.btn-header {
  display: flex;
  align-items: center;
  position: absolute;
  right: 160px;
  top: -3px;
}
.btn-header a {
  color: #000;
  position: relative;
  font-family: "Oswald", sans-serif;
}
.btn-header .lang {
  font-size: 14px;
  font-weight: 600;
  margin-right: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.btn-header .header-btn-a {
  background-color: #241178;
  border-radius: 20px;
  padding: 12px 30px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-right: 50px;
}
.btn-header .menu-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 1s all;
  opacity: 1;
  visibility: visible;
}
.preloader .loader {
  width: 75px;
  height: 75px;
  border: 15px solid rgb(221, 210, 210);
  border-radius: 50%;
  border-top-color: #241178;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 2s spin infinite linear;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.slide {
  position: relative;
  overflow: hidden;
  width: 150%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 50px;
  padding-bottom: 100px;
  font-size: 13px;
  color: #000;
}
.slide h3 {
  font-size: 20px;
  font-weight: 500;
}

.slider__wrappe {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__ite {
  flex: 0 0 100%;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.slider__conten {
  border-radius: 30px;
}

.slider__content_foote {
  min-height: 150px;
}

.slide .slider__contro {
  width: 35%;
}

@media (min-width: 800px) {
  .slider__ite {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .slider__ite {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.slider__contro {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  color: #fff;
  text-align: center;
  bottom: 0;
  background: transparent;
}

.slider__contro:hover, .slider__contro:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
}

.slider__control_lef {
  left: 0;
}

.slider__control_righ {
  right: 0;
}

.slider__contro::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_lef::before {
  background-color: transparent;
}

.slider__control_righ::before {
  background-color: transparent;
}

.slider__content_heade {
  position: relative;
}

.slider__content_im {
  display: block;
  height: auto;
  max-width: 100%;
}

.slider__content_sectio {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #009688;
  color: #fff;
  padding: 4px 8px;
}

.slider__content_titl {
  background: transparent;
  color: #424242;
  white-space: normal;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 30px;
}

.slider__content_foote {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 15px;
  color: #616161;
  box-shadow: 0 44px 38px rgba(0, 0, 0, 0.1), 0 20px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px;
}
.slider__content_foote h3 {
  margin: 0;
}
.slider__content_foote h5 {
  margin: 0;
  margin-top: -16px;
}

.slider__content_phot {
  display: block;
  height: auto;
  max-width: 100%;
}

.slider__content_autho {
  margin-left: 8px;
  margin-right: 8px;
}

.slider__content_ico {
  height: 18px;
  margin-top: 12px;
  margin-left: auto;
}

.slider__content_view {
  margin-left: 8px;
}

.slide .slider__wrappe .slider__ite .slider__conten {
  transition: 0.2s;
}

.img__prof__slider {
  margin-right: 20px;
}

.slider__box-img {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.slider__box-img img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.prof__item {
  font-weight: 300;
}

.slider__text-box {
  font-weight: 300;
  font-size: 18px;
}

.slider__text-std {
  font-size: 14px;
  font-weight: 300;
}

.slide1 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
  margin-top: 100px;
}

.slider__wrappe1 {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__ite1 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 576px) {
  .slider__ite1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .slider__ite1 {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
.slider__contro1 {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: #fff;
  text-align: center;
  bottom: 0;
  background: #fff;
}

.slider__contro1:hover, .slider__contro1:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
}

.slider__control_lef1 {
  left: 0;
}

.slider__control_righ1 {
  right: 0;
}

.slider__contro1::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_lef1::before {
  background-image: url(../img/angle-right.png);
}

.slider__control_righ1::before {
  background-image: url(../img/angle.png);
}

.slider__content_heade1 {
  position: relative;
}

.slider__content_im1 {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  background: url(../img/comands/photo_2021-07-09_17-13-12.jpg) center center/cover no-repeat;
}

.slider__content_sectio1 {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #009688;
  color: #fff;
  padding: 4px 8px;
}

.slider__content_titl1 {
  background: transparent;
  color: #424242;
  white-space: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 7px;
}

.slider__content_titl1-h5 {
  background: transparent;
  color: #424242;
  white-space: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 15px;
}

.slider__content_foote1 {
  text-align: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 15px;
  color: #616161;
}
.slider__content_foote1 h5 {
  font-size: 14px;
  margin-bottom: 20px;
}

.slider__content_phot1 {
  display: block;
  height: auto;
  max-width: 100%;
}

.slider__content_autho1 {
  margin-left: 8px;
  margin-right: 8px;
}

.slider__content_ico1 {
  height: 18px;
  margin-top: 12px;
  margin-left: auto;
}

.slider__content_view1 {
  margin-left: 8px;
}

.slide1 .slider__wrappe1 .slider__ite1 .slider__conten1 {
  transition: 0.2s;
}

.img__slider_1 img {
  margin: 0 5px;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.box .glitch {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  white-space: nowrap;
  padding: 30px;
}
.box .glitch:before, .box .glitch:after {
  content: "LIKEBOOSTER";
  color: #fff;
  position: absolute;
  top: 0;
  overflow: hidden;
  padding: 30px;
}
.box .glitch:before {
  left: 3px;
  text-shadow: -3px 0 red;
  animation: glitch-before 2s linear 0s infinite alternate;
}
.box .glitch:after {
  left: -3px;
  text-shadow: -3px 0 blue;
  animation: glitch-after 2s linear 0s infinite alternate;
}

@keyframes glitch-before {
  0% {
    clip: rect(124px, 350px, 71px, 30px);
  }
  5% {
    clip: rect(45px, 350px, 18px, 30px);
  }
  10% {
    clip: rect(117px, 350px, 123px, 30px);
  }
  15% {
    clip: rect(51px, 350px, 68px, 30px);
  }
  20% {
    clip: rect(95px, 350px, 144px, 30px);
  }
  25% {
    clip: rect(116px, 350px, 95px, 30px);
  }
  30% {
    clip: rect(42px, 350px, 71px, 30px);
  }
  35% {
    clip: rect(90px, 350px, 58px, 30px);
  }
  40% {
    clip: rect(57px, 350px, 84px, 30px);
  }
  45% {
    clip: rect(90px, 350px, 32px, 30px);
  }
  50% {
    clip: rect(87px, 350px, 45px, 30px);
  }
  55% {
    clip: rect(32px, 350px, 44px, 30px);
  }
  60% {
    clip: rect(150px, 350px, 97px, 30px);
  }
  65% {
    clip: rect(59px, 350px, 4px, 30px);
  }
  70% {
    clip: rect(141px, 350px, 69px, 30px);
  }
  75% {
    clip: rect(26px, 350px, 146px, 30px);
  }
  80% {
    clip: rect(132px, 350px, 81px, 30px);
  }
  85% {
    clip: rect(59px, 350px, 73px, 30px);
  }
  90% {
    clip: rect(48px, 350px, 66px, 30px);
  }
  95% {
    clip: rect(56px, 350px, 82px, 30px);
  }
  100% {
    clip: rect(73px, 350px, 88px, 30px);
  }
}
@keyframes glitch-after {
  0% {
    clip: rect(52px, 350px, 113px, 30px);
  }
  5% {
    clip: rect(77px, 350px, 3px, 30px);
  }
  10% {
    clip: rect(35px, 350px, 99px, 30px);
  }
  15% {
    clip: rect(19px, 350px, 51px, 30px);
  }
  20% {
    clip: rect(33px, 350px, 94px, 30px);
  }
  25% {
    clip: rect(87px, 350px, 58px, 30px);
  }
  30% {
    clip: rect(140px, 350px, 14px, 30px);
  }
  35% {
    clip: rect(32px, 350px, 107px, 30px);
  }
  40% {
    clip: rect(49px, 350px, 8px, 30px);
  }
  45% {
    clip: rect(104px, 350px, 3px, 30px);
  }
  50% {
    clip: rect(80px, 350px, 20px, 30px);
  }
  55% {
    clip: rect(3px, 350px, 115px, 30px);
  }
  60% {
    clip: rect(72px, 350px, 29px, 30px);
  }
  65% {
    clip: rect(83px, 350px, 119px, 30px);
  }
  70% {
    clip: rect(122px, 350px, 18px, 30px);
  }
  75% {
    clip: rect(117px, 350px, 40px, 30px);
  }
  80% {
    clip: rect(143px, 350px, 55px, 30px);
  }
  85% {
    clip: rect(93px, 350px, 80px, 30px);
  }
  90% {
    clip: rect(9px, 350px, 22px, 30px);
  }
  95% {
    clip: rect(95px, 350px, 19px, 30px);
  }
  100% {
    clip: rect(18px, 350px, 84px, 30px);
  }
}
.card-wrapper {
  border-radius: 0.5em;
  box-shadow: 0 0 30px rgba(17, 17, 17, 0.281);
  position: relative;
  width: 280px;
}
.card-wrapper:before {
  position: absolute;
  content: "";
  inset: -0.5em;
  background-color: #241178;
  border-radius: inherit;
  transition-duration: 200ms;
  transition-property: transform, opacity;
  pointer-events: none;
  opacity: 0.1;
}

.card-tr {
  position: relative;
  padding-top: 14em;
  width: 280px;
  height: 420px;
  overflow: hidden;
  border-radius: inherit;
  display: flex;
  justify-content: center;
  transition: transform 200ms;
  will-change: transform;
}

.top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 14em;
  background: url(../img/corporate-website.jpg);
  background-size: cover;
  background-position: center;
  transition: 800ms height;
  z-index: -1;
  transition-delay: 500ms;
}

.top-1 {
  background: url(../img/portfolio/image8.png);
  background-size: cover;
  background-position: center;
}

.top-2 {
  background: url(../img/portfolio/image2.png);
  background-size: cover;
  background-position: center;
}

.top-3 {
  background: url(../img/portfolio/about.jpg);
  background-size: cover;
  background-position: center;
}

.top-4 {
  background: url(../img/portfolio/1000.jpg);
  background-size: cover;
  background-position: center;
}

.top-5 {
  background: url(../img/portfolio/966061653_966061653.jpg);
  background-size: cover;
  background-position: center;
}

.top-6 {
  background: url(../img/portfolio/picture2_fgvfl-nachal-vypl_372736_p0.jpg);
  background-size: cover;
  background-position: center;
}

.top-7 {
  background: url(../img/polaris-img/32.jpg);
  background-size: cover;
  background-position: center;
}

.bottom {
  padding: 1.6em;
  padding-bottom: 3em;
  box-shadow: 0 2em 0 #fff;
  transition: transform 500ms;
  background: #fff;
  z-index: 0;
  width: 100%;
}

.card-title {
  text-transform: capitalize;
  padding: 0.6em 0;
  padding-top: 10px;
  font-weight: bold;
}

.card-category-title {
  text-transform: uppercase;
  opacity: 0.7;
}

.warrior {
  display: block;
  position: relative;
}

.warrior-icon {
  position: absolute;
  height: 1.8em;
  width: auto;
  top: -100%;
  left: 80%;
  bottom: -100%;
  margin: auto;
  background-color: rgb(251, 48, 48);
  fill: #fff;
  border-radius: 50%;
  padding: 0.2em;
}

.by {
  position: absolute;
  bottom: 1em;
  left: 1em;
  padding: 0.4em;
  padding-left: calc(0.6em);
  padding-right: calc(0.6em);
  background: #fff;
  border-radius: 5em;
  font-weight: bold;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.name {
  color: blue;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.4em;
  text-decoration: none;
}

.card-wrapper:hover:before {
  transform: skew(10deg);
  opacity: 0.9;
}
.card-wrapper:hover .top {
  height: 100%;
  transition-delay: 0s;
}
.card-wrapper:hover .bottom {
  transform: translateY(100%);
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(1, -0.47, 0.56, 0.65);
}
.card-wrapper:hover .btn {
  opacity: 1;
}

.btn {
  position: absolute;
  bottom: 5em;
  padding: 0.5em 0.8em;
  font-size: 1.1em;
  border: 0;
  font-weight: bold;
  cursor: pointer;
  background: #241178;
  transition-property: background-color, color, transform;
  transition-duration: 300ms, 300ms, 100ms;
  color: #fff;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.952);
  color: #111;
}
.btn:active {
  transform: translateY(0.3em);
}

.portfolio {
  margin: 100px 0;
}
.portfolio h2 {
  margin-bottom: 50px;
}
.portfolio-card {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.header {
  position: relative;
}

.burger-menu_button {
  position: absolute;
  top: 38px;
  right: 30px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 33px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 100%;
}

.burger-menu_link {
  padding: 18px 35px;
  font-size: 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.content-about-header {
  margin-top: 200px;
  margin-bottom: 50px;
}
.content-about-header h4 {
  font-weight: bold;
}
.content-about-header h1 {
  font-weight: bold;
  font-size: 60px;
}
.content-about-header h1 span {
  color: #241178;
}
.content-about-header p {
  font-size: 25px;
  margin-top: 100px;
}

.slide-track {
  display: flex;
  align-items: center;
}

.h2-big-bg {
  background-color: #241178;
  padding: 100px 0;
}
.h2-big-bg .h2-big {
  font-size: 120px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.img-about {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-top: -50px;
}

.figure-about {
  margin-bottom: 40px;
  display: flex;
}
.figure-about-rt {
  width: 60px;
  height: 1px;
  background-color: black;
  margin-top: 12px;
  margin-right: 12px;
}
.figure-about span {
  text-transform: uppercase;
  font-size: 18px;
}

.about-content {
  margin: 150px 0;
}
.about-content h2 {
  font-size: 50px;
  width: 50%;
  font-weight: bold;
  margin-left: 70px;
  margin-bottom: 30px;
}
.about-content p {
  font-size: 20px;
  margin-left: 70px;
  width: 50%;
}
.about-content .container {
  border-right: 1px solid #241178;
}

.slider {
  margin: 50px auto;
}
.slider h2 {
  margin-bottom: 30px;
}

.item {
  margin-bottom: 30px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 29px;
  height: 2px;
  background-color: #fff;
  margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  border: 2px solid #241178;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  background-color: #241178;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  color: #fff;
  font-size: 40px;
  line-height: 28px;
  font-family: monospace;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  border: 2px solid #241178;
  color: #241178;
}

.owl-theme .owl-nav [class*=owl-] span:hover {
  color: #241178;
}

.owl-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  margin-top: 50px;
  gap: 20px;
}
.owl-carousel .item img {
  width: 350px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.slider {
  margin: 0 auto;
  justify-content: center;
  display: flex;
  text-align: center;
}

.top-ttr {
  position: fixed;
  right: 40px;
  bottom: 40px;
  border: 2px solid #fff;
  border-radius: 100%;
  background-color: #fff;
}
.top-ttr img {
  width: 50px;
  transition: 0.3s all;
}
.top-ttr img:hover {
  fill: #3d2a91;
}

.header-box {
  padding-top: 200px;
}
.header-box .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-item {
  margin-bottom: 30px;
}
.text-item h2 {
  font-weight: 700;
  color: #241178;
  font-size: 45px;
}
.text-item p {
  line-height: 16px;
}

.text-block {
  display: flex;
  flex-direction: column;
}
.text-block h1 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 60px;
}
.text-block span {
  color: #241178;
  font-weight: 700;
  display: block;
  margin-left: 50px;
  font-size: 20px;
  text-transform: uppercase;
}

.img-block img {
  width: 80%;
}

.scroll {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
}
.scroll a {
  text-decoration: none;
  color: #241178;
}
.scroll img {
  width: 30px;
  margin-top: 50px;
}

body {
  position: relative;
}
body .scroll-box {
  width: 30px;
  position: absolute;
  display: block;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.str-img {
  animation: scroll-down 3s ease-in-out infinite;
  animation-direction: alternate-reverse;
}

@keyframes scroll-down {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #241178;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: #fff;
  content: attr(data-back);
  border: 1px solid #241178;
  transform: translateY(-50%) rotateX(90deg);
}
.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #fff;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  background: #241178;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}

.container-height {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 50px;
}

svg.intro .text {
  display: none;
}
svg.intro.go .text {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
svg.intro.go .text-stroke {
  fill: none;
  stroke: #51256f;
  stroke-width: 2.8px;
  stroke-dashoffset: -900;
  stroke-dasharray: 900;
  stroke-linecap: butt;
  stroke-linejoin: round;
  animation: dash 2.5s ease-in-out forwards;
}
svg.intro.go .text-stroke:nth-child(2) {
  animation-delay: 0.3s;
}
svg.intro.go .text-stroke:nth-child(3) {
  animation-delay: 0.9s;
}
svg.intro.go .text-stroke-2 {
  stroke: #000;
  animation-delay: 1.2s;
}
svg.intro.go .text-stroke:nth-child(5) {
  animation-delay: 1.5s;
}
svg.intro.go .text-stroke:nth-child(6) {
  animation-delay: 1.8s;
}

@keyframes dash {
  100% {
    stroke-dashoffset: 0;
  }
}
.reload {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  border: none;
  border-radius: 20px;
  outline: none !important;
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 12px;
  text-transform: uppercase;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 6px 7px #350e4c;
  transition: all 0.1s cubic-bezier(0.67, 0.13, 0.1, 0.81);
}
.reload:hover {
  box-shadow: 0 4px 4px #350e4c;
  transform: translateY(1px);
}
.reload:active {
  box-shadow: 0 1px 2px #244B94;
  transform: translateY(2px);
}
.reload svg {
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.intro {
  height: 200px;
}

body {
  position: relative;
}

section .textcircle {
  position: absolute;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  animation: circle 7.5s linear infinite;
  z-index: 99999999999;
}

@keyframes circle {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
section .textcircle i {
  top: -50px;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  transform-origin: 0 50px;
}

.h2 {
  text-align: center;
  font-weight: 700;
  font-size: 49px;
}

.services-box {
  margin-top: 100px;
}
.services-box h2 {
  margin-bottom: 100px;
}

.card {
  width: 300px;
  height: 300px;
  position: relative;
  perspective: 1000px;
  border: none;
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  backface-visibility: hidden;
  border-radius: 10px;
}

.front {
  background-color: #241178;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.front span {
  position: absolute;
  top: 230px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.back {
  background-color: #fff;
  border: 5px solid #241178;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.back span {
  color: #241178;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -20px;
}
.back p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.back a {
  padding: 8px 14px;
  background-color: #241178;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.card:hover .front {
  transform: rotateY(180deg);
}

.card:hover .back {
  transform: rotateY(360deg);
}

.wrap {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
}

.logoslider {
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
  margin-bottom: 100px;
}
.logoslider h2 {
  margin-bottom: 50px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.slider__logo {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  height: 100px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider__logo .slide-track {
  animation: scroll 60s linear infinite;
  display: flex;
  width: 3500px;
}

.slider__logo .slide__logo {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}

.text-block-t {
  margin-bottom: 50px;
  padding: 100px 0;
  background-color: #241178;
}
.text-block-t .container {
  text-align: center;
}
.text-block-t-p {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.text-block-t-p .figure {
  background-color: #fff;
  height: 1px;
  width: 100px;
  margin-right: 10px;
  margin-top: -16px;
}
.text-block-t-p p {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.text-block-t h2 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  margin-top: 0px;
  color: #fff;
}

.forms {
  background-color: #241178;
  padding: 100px 0;
  padding-bottom: 70px;
}
.forms h2, .forms p {
  color: #fff;
  text-align: center;
}
.forms h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.forms p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.forms .input-email {
  background-color: transparent;
  width: 50%;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  margin: 10px auto;
  display: block;
  border-radius: 0px;
}
.forms ::-webkit-input-placeholder { /* WebKit browsers */
  color: #fff;
}
.forms :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #fff;
}
.forms ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #fff;
}
.forms :-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #fff;
}
.forms form {
  margin: 50px 0;
}
.forms .btn-email {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 12px 60px;
  font-size: 14px;
  color: #241178;
  font-weight: 600;
  margin-right: 50px;
  border: none;
  outline: none;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 30px;
  align-items: center;
  width: 240px;
}
.forms .btn-email img {
  width: 20px;
  margin-left: 5px;
  transform: rotate(-90deg);
}

.why-us {
  padding: 100px 0;
}
.why-us h2 {
  margin-bottom: 50px;
}
.why-us-item {
  display: flex;
  align-items: start;
  margin: 50px 0;
}
.why-us-item span {
  margin-right: 20px;
  font-weight: bold;
  color: #241178;
}
.why-us-item h3 {
  font-weight: bold;
}

.footer {
  padding: 70px 0;
  padding-bottom: 10px;
}
.footer-logo {
  width: 200px;
  margin-bottom: 30px;
}
.footer h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.footer h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.footer a {
  color: #000;
  text-decoration: none;
  display: block;
}
.footer a:hover {
  color: #241178;
}
.footer-box {
  margin-bottom: 15px;
}
.footer-a a {
  margin-bottom: 10px;
}
.footer-copr {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}
.footer span {
  font-size: 14px;
  color: rgb(17, 16, 16);
}

iframe {
  border-radius: 15px;
}

.contact-box {
  margin-top: 10px;
  margin-bottom: 30px;
}
.contact-box h3 {
  font-weight: bold;
  font-size: 25px;
  margin: 0;
  margin-bottom: 10px;
}
.contact-box a {
  text-decoration: none;
  color: #241178;
  font-size: 18px;
  transition: 0.2s all;
}
.contact-box a:hover {
  text-decoration: underline;
}

.content-about-header .h1-contact {
  margin-bottom: 50px;
}

.content-about-header a {
  font-size: 22px;
  margin: 20px 0;
}

.content-about-header h4 {
  font-weight: normal;
  margin: 30px 0;
}

.contact-block {
  margin-bottom: 50px;
}

.top-0 {
  margin-top: 30px;
  font-size: 25px;
}

.content-services-header {
  margin-top: 200px;
  margin-bottom: 50px;
}
.content-services-header h4 {
  font-weight: bold;
}
.content-services-header h1 {
  font-weight: bold;
  font-size: 60px;
}
.content-services-header h1 span {
  color: #241178;
}
.content-services-header p {
  font-size: 25px;
  margin-top: 100px;
}

.services-box-text-bg {
  background-color: #241178;
  padding: 50px 0;
}
.services-box-text-bg h2 {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 30px;
  border-left: 5px solid #fff;
  padding-left: 15px;
  transition: 0.3s all;
  margin-left: 50%;
  width: 50%;
}
.services-box-text-bg h2:hover {
  padding-left: 5px;
}
.services-box-text-bg h4 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.services-box-text-bg p {
  color: #fff;
  font-size: 18px;
  margin-left: 50%;
  width: 50%;
}

.services-items {
  padding: 50px 0;
}
.services-items h2 {
  padding-bottom: 50px;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #241178;
}
.services-items .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.services-items .container .services-item {
  display: flex;
  align-items: start;
  width: 70%;
  display: flex;
  margin: 0 30px;
}
.services-items .container .services-item .figure {
  background-color: #241178;
  height: 2px;
  margin-right: 10px;
  width: 60px;
  min-width: 60px;
  margin-top: 15px;
}
.services-items .container .services-item p {
  font-size: 20px;
}

.text-services .figure {
  background-color: #241178;
  height: 3px;
  width: 80px;
  min-width: 80px;
}
.text-services h3 {
  font-weight: bold;
  color: #241178;
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.text-services p {
  font-size: 20px;
}

.services-box-img {
  margin: 50px 0;
}
.services-box-img h3 {
  font-size: 25px;
  color: #241178;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.services-box-img ul li {
  list-style-image: url(../img/free-icon-seo-tag-4372667.svg);
  padding-left: 5px;
  font-size: 18px;
  padding-bottom: 15px;
}
.services-box-img .row {
  align-items: center;
}

.services-ads-items {
  margin: 50px 0;
}
.services-ads-items .container h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 30px;
}
.services-ads-items .container .figure {
  height: 2px;
  width: 120px;
  background-color: #241178;
  margin: 20px auto;
  display: block;
}
.services-ads-items .container .services-ads-items-box {
  display: flex;
  justify-content: space-between;
  margin: 50px;
}
.services-ads-items .container .services-ads-items-box .services-ads-item {
  display: flex;
  width: 50%;
  min-width: 50%;
}
.services-ads-items .container .services-ads-items-box .services-ads-item .photo {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #241178;
}
.services-ads-items .container .services-ads-items-box .services-ads-item .photo img {
  width: 50px;
}

.services-ads-items-2 {
  margin: 50px 0;
}
.services-ads-items-2 .container .services-ads-items-2-box {
  display: flex;
  justify-content: space-between;
}
.services-ads-items-2 .container h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 30px;
}
.services-ads-items-2 .container .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 25%;
}
.services-ads-items-2 .container .item img {
  display: block;
  margin: 20px auto;
}
.services-ads-items-2 .container .item p {
  text-transform: uppercase;
  font-size: 20px;
}

.ads-text {
  margin: 50px 0;
}
.ads-text .container h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.ads-text .container p {
  font-size: 18px;
}
.ads-text .container ul {
  margin: 30px 0;
}
.ads-text .container ul li {
  list-style-image: url(../img/icons/adwords-list.svg);
  text-transform: uppercase;
  margin: 15px 0;
  font-size: 20px;
}

.img-404 {
  width: 70%;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: -150px;
}

.h1-404 {
  text-align: center;
  font-size: 80px;
}

.portfolio h2 {
  margin-bottom: -10px;
}

.p-404 {
  text-align: center;
  font-size: 20px;
}

.portfolio-box-items {
  margin: 25px 0;
}
.portfolio-box-items .container .img-left {
  display: flex;
  align-items: center;
}
.portfolio-box-items .container .img-left img {
  width: 40%;
  margin-right: 100px;
}
.portfolio-box-items .container .img-left p {
  font-size: 20px;
}

.portfolio-box-items {
  margin: 25px 0;
}
.portfolio-box-items .container .img-right {
  display: flex;
  align-items: center;
}
.portfolio-box-items .container .img-right img {
  width: 40%;
  margin-left: 100px;
}
.portfolio-box-items .container .img-right p {
  font-size: 20px;
}

.h3 {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
}

.crm-certf .container .crm-ttr5 {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
}
.crm-certf .container .crm-ttr5 img {
  width: auto;
  height: 500px;
}

.crm-bg {
  background-color: #241178;
  padding: 50px 0;
}
.crm-bg .container h3 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 40px;
  color: #fff;
}
.crm-bg .container p {
  font-size: 22px;
  color: #fff;
}

.crm-bg-items {
  background-color: #241178;
  padding: 80px 0;
}
.crm-bg-items .container h2 {
  text-align: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 40px;
}
.crm-bg-items .container p {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.crm-bg-items .container .row {
  text-align: center;
  color: #fff;
  margin-top: 50px;
}
.crm-bg-items .container .row h3 {
  font-weight: bold;
  font-size: 50px;
}

.crm-bg-fff-items {
  padding: 80px 0;
}
.crm-bg-fff-items .container h2 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}
.crm-bg-fff-items .container p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.crm-bg-fff-items .container .row {
  text-align: center;
  margin-top: 50px;
}
.crm-bg-fff-items .container .row h3 {
  font-weight: bold;
  font-size: 50px;
}
.crm-bg-fff-items .container .row h4 {
  margin: 30px 0;
}

.crm-logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.crm-logos .logo img {
  width: 170px;
  margin: 25px;
}

.items-crm {
  margin: 50px 0;
}
.items-crm .item-crm-img {
  text-align: center;
  margin: 30px 0;
}
.items-crm .item-crm-img img {
  margin: 30px;
}
.items-crm .item-crm-img h3 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 25px;
}

.forms-items {
  display: flex;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  margin-bottom: 50px;
}

.label-fade {
  display: block;
  width: 140px;
  padding: 15px;
  color: #fff;
  border: 2px solid #fff;
  background: #241178;
  cursor: pointer;
  border-radius: 15px;
  margin: 0 20px;
}

.h3-icon-forms {
  text-align: center;
  font-size: 16px;
}

.input-fade {
  display: none;
}

.input-fade:checked + .label-fade {
  color: #241178;
  background: #fff;
  border-radius: 15px;
}

.popup-item {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin: 0 auto;
}

.items-pod-uslugi {
  margin: 50px 0;
}
.items-pod-uslugi .container .h2 {
  margin-bottom: 50px;
}
.items-pod-uslugi .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.items-pod-uslugi .item {
  background-color: #241178;
  color: #fff;
  border-radius: 25px;
  padding: 20px;
  width: 48%;
}
.items-pod-uslugi .item h3 {
  text-align: center;
  display: block;
  margin-bottom: 25px;
  font-size: 27px;
  font-weight: bold;
}
.items-pod-uslugi .item img {
  width: 150px;
  display: block;
  margin: 20px auto;
}
.items-pod-uslugi .item a {
  background-color: #fff;
  padding: 8px 5px;
  font-weight: bold;
  color: #241178;
  display: block;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  margin-left: 200px;
  margin-top: -32px;
}

.sertificate-btn {
  padding: 20px;
  background-color: #241178;
  display: block;
  width: 250px;
  margin: 30px auto;
  color: #fff;
  font-size: 19px;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
}
.sertificate-btn:hover {
  color: #fff;
  text-decoration: underline;
}

.btn-item {
  display: flex;
  align-items: center;
}

.spoiler-title {
  margin-right: 20px;
  background-color: #fff;
  padding: 8px 5px;
  color: #241178;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}

.d-f-trr5 {
  display: flex;
  justify-content: space-around;
}

.text-about {
  text-align: center;
  margin-top: 50px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card-wrapper {
  margin: 0 auto;
  display: block;
}

.web-dev-img-1 {
  background: url(../img/icons-forms/web/Landing.png) center center/cover no-repeat;
}

.web-dev-img-2 {
  background: url(../img/icons-forms/web/Marketplace.png) center center/cover no-repeat;
}

.web-dev-img-3 {
  background: url(../img/icons-forms/web/Website_business-card.png) center center/cover no-repeat;
}

.web-dev-img-4 {
  background: url(../img/icons-forms/web/Corporate-website.png) center center/cover no-repeat;
}

.web-dev-img-5 {
  background: url(../img/icons-forms/web/Website-portal.png) center center/cover no-repeat;
}

.web-dev-img-6 {
  background: url(../img/icons-forms/web/Online-store.png) center center/cover no-repeat;
}

.smm-dev-img-1 {
  background: url(../img/icons-forms/smm/SMM.png) center center/cover no-repeat;
}

.smm-dev-img-2 {
  background: url(../img/icons-forms/smm/Targeting.png) center center/cover no-repeat;
}

.smm-dev-img-3 {
  background: url(../img/icons-forms/smm/Complex-SMM.png) center center/cover no-repeat;
}

.smm-dev-img-4 {
  background: url(../img/icons-forms/smm/Insta-Fb-store.png) center center/cover no-repeat;
}

.crm-dev-img-1 {
  background: url(../img/icons-forms/crm/zastroyshtika.png) center center/cover no-repeat;
}

.crm-dev-img-2 {
  background: url(../img/icons-forms/crm/biyti.png) center center/cover no-repeat;
}

.crm-dev-img-3 {
  background: url(../img/icons-forms/crm/startap.png) center center/cover no-repeat;
}

.crm-dev-img-4 {
  background: url(../img/icons-forms/crm/torgovi-organizatsii.png) center center/cover no-repeat;
}

.crm-dev-img-5 {
  background: url(../img/icons-forms/crm/call-centr.png) center center/cover no-repeat;
}

.crm-dev-img-6 {
  background: url(../img/icons-forms/crm/prodazha-uslyg.png) center center/cover no-repeat;
}

.cons-img-1 {
  background: url(../img/icons-forms/konsaltimg/audit.png) center center/cover no-repeat;
}

.cons-img-2 {
  background: url(../img/icons-forms/konsaltimg/podbor-personala.png) center center/cover no-repeat;
}

.cons-img-3 {
  background: url(../img/icons-forms/konsaltimg/postroenie.png) center center/cover no-repeat;
}

.cons-img-4 {
  background: url(../img/icons-forms/konsaltimg/yluchshenie.png) center center/cover no-repeat;
}

@media (min-width: 800px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #241178;
    border-radius: 15px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #284172;
  }
}
@media (max-width: 1600px) {
  html {
    overflow-x: hidden;
  }
}
@media (max-width: 1400px) {
  .crm-certf .container .crm-ttr5 img {
    width: auto;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .owl-carousel .item img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .intro {
    height: 160px;
  }
  html {
    overflow-x: hidden;
  }
  .img-404 {
    margin-bottom: -100px;
    margin-top: 50px;
  }
  .crm-certf .container .crm-ttr5 {
    display: flex;
    flex-direction: column;
  }
  .crm-certf .container .crm-ttr5 img {
    display: block;
    margin: 20px auto;
    width: 100%;
    height: auto;
  }
  .owl-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .items-pod-uslugi .item {
    width: 100%;
  }
  .portfolio-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 781px) {
  .burger-menu_nav, .burger-menu_button {
    display: none;
  }
  .items-pod-uslugi .item a {
    padding: 15px 20px;
    margin-top: -53px;
  }
  .spoiler-title {
    padding: 15px 20px;
    display: inline-block;
  }
}
@media (max-width: 780px) {
  html {
    overflow-x: hidden;
  }
  .open-overlay {
    display: none;
  }
  .header-box .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text-items {
    display: flex;
    flex-direction: row;
  }
  .text-block {
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
  }
  .wrap {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .card {
    margin: 40px auto;
    display: block;
  }
  .portfolio-card {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .card-wrapper {
    display: block;
    margin: 20px auto;
  }
  .footer-a {
    margin: 20px 0;
  }
  .text-item {
    margin: 20px;
  }
  .btn-header .header-btn-a {
    display: none;
  }
  .btn-header .menu-text {
    display: none;
  }
  .btn-header .lang {
    margin-right: 10px;
    margin-top: 10px;
  }
  .slider__content_foote {
    width: 55%;
    margin-left: 240px;
    margin-bottom: 50px;
  }
  .slide, .slide1 {
    padding-bottom: 0;
  }
  .scroll img {
    margin-top: -10px;
  }
  .content-about-header {
    margin-top: 150px;
    margin-bottom: 30px;
  }
  .content-about-header h1 {
    font-size: 40px;
  }
  .content-about-header p {
    margin-top: 30px;
    font-size: 20px;
  }
  .h2-big-bg {
    margin-top: 30px;
  }
  .h2-big-bg .h2-big {
    font-size: 50px;
  }
  .about-content {
    margin: 80px 0;
  }
  .about-content h2 {
    font-size: 30px;
  }
  .about-content p {
    font-size: 16px;
  }
  .figure-about span {
    font-size: 14px;
  }
  .services-box-text-bg h2 {
    width: 100%;
    margin-left: 0%;
  }
  .services-box-text-bg p {
    width: 100%;
    margin-left: 0%;
  }
  .services-items .container {
    display: flex;
    flex-direction: column;
  }
  .services-items .container .services-item {
    margin: 20px 0;
  }
  .content-services-header {
    margin-top: 150px;
  }
  .content-services-header h1 {
    font-size: 45px;
  }
  .top-0 {
    font-size: 18px;
  }
  .services-ads-items .container .services-ads-items-box {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .services-ads-items .container .services-ads-items-box .services-ads-item {
    width: 100%;
    min-width: 100%;
    margin: 25px 0;
  }
  .services-ads-items-2 .container .services-ads-items-2-box {
    display: flex;
    flex-direction: column;
  }
  .services-ads-items-2 .container .item {
    width: 100%;
    margin: 25px 0;
  }
  .portfolio-box-items .container .img-left {
    flex-direction: column;
    margin: 20px 0;
  }
  .portfolio-box-items .container .img-left img {
    margin-right: 0;
    width: 100%;
  }
  .portfolio-box-items .container .img-right {
    flex-direction: column-reverse;
    margin: 20px 0;
  }
  .portfolio-box-items .container .img-right img {
    margin-left: 0;
    width: 100%;
  }
  .crm-bg-fff-items .col-lg-4 {
    margin: 30px 0;
  }
  .crm-bg-items .col-lg-4 {
    margin: 30px 0;
  }
  .items-pod-uslugi .item a {
    padding: 15px 20px;
    margin-top: -53px;
  }
  .spoiler-title {
    padding: 15px 20px;
    display: inline-block;
  }
  .owl-carousel {
    display: flex;
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .portfolio-card {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  html {
    overflow-x: hidden;
  }
  .header-logo a img {
    width: 130px;
    margin-top: 5px;
    margin-left: -30px;
  }
  .btn-header .lang {
    margin-right: -30px;
  }
  .scroll a {
    font-size: 12px;
  }
  .header-box {
    padding-top: 125px;
  }
  .scroll {
    margin-top: 0;
  }
  .btn-flip:before {
    padding: 0 12px;
  }
  .scroll img {
    margin-top: -10px;
  }
  .img-block img {
    width: 100%;
  }
  .text-block-t h2 {
    font-size: 35px;
  }
  .why-us {
    padding: 0;
  }
  .forms .input-email {
    width: 80%;
  }
  .footer-copr {
    display: flex;
    flex-direction: column;
  }
  .slider__content_foote {
    width: 55%;
    margin-left: 123px;
    margin-bottom: 50px;
  }
  .slide {
    padding-bottom: 0;
  }
  .why-us-item {
    margin: 20px 0;
  }
  .container-height {
    padding-bottom: 0;
  }
  .h2 {
    font-size: 35px;
  }
  .slide1 {
    margin-top: 0;
    padding-bottom: 0;
  }
  .slider__indicators {
    display: none;
  }
  .services-box h2 {
    margin-bottom: 50px;
  }
  .top-ttr {
    bottom: 30px;
    right: 30px;
  }
  .top-ret {
    margin-top: 30px;
  }
  .services-box-text-bg h4 {
    font-size: 25px;
  }
  .services-box-img img {
    margin-bottom: 30px;
  }
  .img-404 {
    margin-bottom: -60px;
    margin-top: 50px;
    width: 100%;
  }
  .popup-item {
    width: 60px;
    height: 60px;
  }
  .h3-icon-forms {
    font-size: 13px;
  }
  .label-fade {
    width: 105px;
    margin: 0 5px;
  }
  .items-pod-uslugi .item a {
    margin-left: 158px;
  }
  .items-pod-uslugi .item a {
    padding: 14px 5px;
    margin-top: -54px;
  }
  .spoiler-title {
    padding: 14px 5px;
    display: inline-block;
  }
  .slider {
    margin-top: 30px;
  }
}
@media (max-width: 350px) {
  .slider__content_foote {
    width: 55%;
    margin-left: 103px;
    margin-bottom: 50px;
  }
  .owl-carousel .item img {
    width: 250px;
    height: 250px;
  }
}/*# sourceMappingURL=style.css.map */