@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&display=swap&subset=cyrillic");

:focus {
	outline: none !important;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

h6 {
  font-size: 14px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

table a {
  text-decoration: none;
}

/*
.table-bordered {
  border: 1px solid #ccc;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #ccc;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #ccc !important;
}
*/

.header-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header-wr {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

.header {
  background: -webkit-gradient(linear, left top, right top, from(#241f1e), color-stop(51.56%, #48443b), to(#433d39));
  background: linear-gradient(90deg, #241f1e 0%, #48443b 51.56%, #433d39 100%);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 30px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .header {
    padding: 15px 0;
  }
}

.header.transparent {
  background: transparent;
}

.header a {
  color: inherit;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo-left {
  margin-left: 17px;
}
.header .logo-notice {
  margin-top: 8px;
}

@media(max-width: 575px) {
  /*
  .header .logo-icon {
    width: 50px;
  }
  .header .logo-left {
    margin-left: 10px;
  }
  .header .logo-title {
    width: 65px;
  }
  */
  .header img {
    width: 150px;
  }
  .header .btn {
    padding: 1px 7px 0;
    line-height: 120%;
    position: absolute;
    top: 15px;
    left: 100px;
  }
}

.header .phone-wr {
  text-align: right;
}

.header .phone {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
  text-decoration: none;
}
.header .phone:last-child {
/* 	margin-bottom: 0; */
}

.header .phone:hover {
  color: #FE4B4B;
}

.header .price-link {
  color: #FE4B4B;
  text-decoration: underline dashed;
  text-underline-offset: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .header .phone {
    font-size: 16px;
  }
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
  font-size: 18px;
}

@media (max-width: 991px) {
  .menu {
    background-color: #262324;
    width: 280px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: 100vh;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    padding-top: 89px;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}

@media (max-width: 575px) {
  .menu {
/*     padding-top: 78px; */
    font-size: 16px;
  }
}

.menu.opened {
  left: calc(100% - 280px);
}

.menu__link {
  display: block;
  padding: 14px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-decoration: none;
}

.menu__link:before {
  content: "";
  display: block;
  background-color: #FE4B4B;
  width: calc(100% - 30px);
  height: 2px;
  position: absolute;
  left: 15px;
  bottom: 10px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu__link:hover, .menu__link.active {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .menu__link:hover, .menu__link.active {
    background-color: rgba(254, 75, 75, 0.15);
  }
}

.menu__link:hover:before, .menu__link.active:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media (max-width: 991px) {
  .menu__link:hover:before, .menu__link.active:before {
    display: none;
  }
}

.menu-toggle {
  width: 25px;
  height: 18px;
  cursor: pointer;
  position: relative;
  display: none;
}

.menu-toggle span {
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  border-radius: 2px;
}

.menu-toggle::before, .menu-toggle::after {
  background-color: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 2px;
}

.menu-toggle:before {
  top: 0;
}

.menu-toggle:after {
  bottom: 0;
}

.menu-toggle.opened span {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.menu-toggle.opened:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 1px);
}

.menu-toggle.opened:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
}

.sidebar {
  font-size: 14px;
}

.sidebar__header {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.03);
  padding: 12px 20px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.sidebar-menu {
  color: #808080;
}

.sidebar-menu:not(:last-child) {
  margin-bottom: 20px;
}

.sidebar-menu__title {
  display: block;
  color: #535353;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 18px;
}

.sidebar-menu__title:hover {
  color: #535353;
}

.sidebar-menu__list {
  padding-left: 25px;
  margin: 0;
}

.sidebar-menu__list li:not(:last-child) {
  margin-bottom: 5px;
}

.sidebar-menu__list a {
  display: block;
  color: inherit;
}

.bg-size-cover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  color: #323232;
  font-size: 16px;
  padding-top: 130px;
  background-color: #fff;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  body {
    padding-top: 119px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 89px;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 70px;
  }
}

main {
  padding-top: 50px;
  padding-bottom: 100px;
}

.main-wr {
  padding: 0;
  /*background-color: #fff;*/
  margin-top: -130px;
  padding-bottom: 60px;
}

@media (max-width: 1199px) {
  .main-wr {
    margin-top: -119px;
  }
}

@media (max-width: 991px) {
  .main-wr {
    margin-top: -89px;
  }
}

@media (max-width: 575px) {
  .main-wr {
    margin-top: -78px;
  }
}

section {
  padding: 40px 0;
}

a {
  text-decoration: underline;
}

.icon-link {
  display: block;
  color: inherit;
  padding-left: 25px;
  position: relative;
  font-weight: 400;
  line-height: 1.3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.icon-link:hover {
  text-decoration: none;
}

.icon-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-position: left;
  background-repeat: no-repeat;
}

.icon-link.phone::before {
  background-image: url(../images/icons/phone.svg);
}

.icon-link.phone.dark:before {
  background-image: url(../images/icons/phone-dark.svg);
}

.icon-link.email::before {
  background-image: url(../images/icons/email.svg);
}

.icon-link.email.dark:before {
  background-image: url(../images/icons/email-dark.svg);
}

.icon-link.location::before {
  background-image: url(../images/icons/location.svg);
}

.icon-link.location.dark:before {
  background-image: url(../images/icons/location-dark.svg);
}

.icon-link.time::before {
  background-image: url(../images/icons/clock.svg);
}

.page-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #323232;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}

.page-date {
  margin: -20px 0 40px;
  /* font-weight: 700; */
  color: #acacac;
  text-transform: uppercase;
}

.page-desc {
  color: #b5b5b5;
  font-size: 16px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 500px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .page-content {
    margin-bottom: 30px;
  }
}

.page-text {
  margin-bottom: 40px;
}

.section-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #323232;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.section-desc {
  color: #b5b5b5;
  max-width: 500px;
  width: 100%;
  line-height: 1.3;
  margin-bottom: 40px;
}

.breadcrumb {
  background: #ffffff;
  border-radius: 4px;
  padding: 0;
  line-height: 1.2;
  margin-bottom: 25px;
  font-size: 14px;
  color: #6b6b6b;
}

.breadcrumb a {
  color: inherit;
}

.top {
  background-color: #262324;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 215px;
  padding-bottom: 70px;
  color: #fff;
}

.top:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(91.67%, rgba(0, 0, 0, 0.41)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.41) 91.67%);
}

@media (max-width: 768px) {
  .top {
    padding-top: 150px;
  }
}

.top .container {
  position: relative;
  z-index: 1;
}

.top .top-text {
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 105px;
}

@media (max-width: 768px) {
  .top .top-text {
    font-size: 28px;
    margin-bottom: 60px;
  }
}

.advantages {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 40px 60px;
  padding-bottom: 10px;
}

@media (max-width: 575px) {
  .advantages {
    padding: 20px;
  }
}

.advantage {
  max-width: 200px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

.advantage__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #FE4B4B;
  margin-bottom: 16px;
  margin-right: auto;
  margin-left: auto;
}

.advantage__title {
  text-align: center;
  font-weight: 700;
}

.services {
  padding-top: 80px;
}

.service-card {
  display: block;
  height: 280px;
  position: relative;
  color: #fff;
  margin-bottom: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.service-card:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 0;
}

.service-card:hover {
  color: #fff;
}

.service-card:hover:after {
  background-color: rgba(254, 75, 75, 0.8);
}

.service-card__counter {
  position: absolute;
  width: 100%;
  font-weight: 700;
  font-size: 30px;
  padding-left: 45px;
  left: 0;
  top: 20%;
  z-index: 1;
}

.service-card__counter:before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 22px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAYAAAA0GqweAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABCSURBVHgB7c6xCQAgEATBR+wfbMUGX61AYYM32IHLLtjIzHkWF1W/Fp8zkDKQMpAykDKQMpAykDKQMpDqe+PxW/Jb0Ygf5y3mQMcAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: center;
  left: calc(100% - 40px);
}

.service-card__title {
  position: absolute;
  left: 45px;
  top: 55%;
  max-width: 180px;
  z-index: 1;
  font-size: 20px;
}

.about {
  color: #323232;
  line-height: 1.5;
}

.about__photo {
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__more {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  color: #585858;
  line-height: 1;
  padding: 20px 30px;
  border: 1px solid;
  margin-top: 40px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
}

.about__more:hover {
  text-decoration: none;
}

.about__more:hover svg {
  fill: #FE4B4B;
  left: 5px;
}

.about__more svg {
  fill: #585858;
  margin-left: 15px;
  position: relative;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}


.partners a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  aspect-ratio: 4 / 3;
  margin-bottom: 30px;
  border:  1px solid #f5f5f5;
}
.partners a:hover {
  background-color: #fff;
  border-color: #ddd;
}

@media(max-width: 575px) {
  .partners a {
    aspect-ratio: 21 / 9;
  }
}

.table-wr {
  overflow: auto;
}

/*
table {
  width: 100%;
  font-size: 14px;
  color: #262626;
}

table td {
  padding: 15px;
  white-space: nowrap;
}

table thead tr {
  border-bottom: 1px solid #c4c4c4;
}

table tbody tr {
  border-bottom: 1px solid #E6E6E6;
}

table tbody tr:nth-child(2n + 1) {
  background-color: #f9f9f9;
}



table {
  background-color: #eee;
}

*/

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.footer {
  background-color: #121214;
  color: #E6E6E6;
  font-size: 15px;
  font-weight: 300;
  padding: 28px 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-wr {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .footer-wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }
}

.footer-submenu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
}

@media (max-width: 1199px) {
  .footer-submenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

@media (max-width: 991px) {
  .footer-submenu {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.footer-submenu li:not(:last-child) {
  margin-right: 30px;
}

@media (max-width: 1199px) {
  .footer-submenu li:not(:last-child) {
    margin-right: 0;
  }
}

.contacts-block-wr {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
}

.contacts-block {
  margin-bottom: 30px;
}

.contacts-block .title {
  color: #e50202;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}

.contacts-block a {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  margin-bottom: 6px;
}

.contacts-block a:hover {
  /*text-decoration: underline;*/
  color: #e50202;
}

.map {
  height: 430px;
  background-color: #eee;
}

.gallery a {
  display: block;
  margin-bottom: 25px;
}
.gallery a img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}

.product-block {
  margin-bottom: 45px;
}
.product-block-img {
  display: block;
}
.product-block-img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}
.product-block-title {
  font-size: 20px;
  font-weight: 700;
  margin: 13px 0 8px;
}
.product-block-price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FE4B4B;
}
.product-block-type {
  display: block;
  font-size: 16px;
  color: #acacac;
  margin-bottom: 20px;
}
.product-block-btn {
  display: flex;
  align-items: center;
}
.product-block-btn .btn {
  border-radius: 0;
  text-decoration: none;
  margin: 0;
}
.product-block-btn .btn:nth-child(1) {
  margin-right: 10px;
}
.product-block .btn:hover {
}

.product {
  margin-top: 40px;
}
.product-img {
  display: block;
}
.product-img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}
.product h1 {
  font-size: 26px;
  margin-bottom: 30px;
}
.product-price-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FE4B4B;
}
.product .btn {
  background-color: #FE4B4B;
  color: #fff;
  padding: 15px 25px;
  border-radius: 0;
  text-decoration: none;
}
.product .btn {
  margin-bottom: 30px;
  transition: 0.2s;
}
.product .btn img {
  position: relative;
  left: 0;
  margin-left: 5px;
  transition: 0.2s;
}
.product .btn:hover img {
  left: 7px;
  transition: 0.2s;
}
.product-item {
  margin-bottom: 15px;
}
.product h4 {
  /* margin-top: 25px; */
  margin-bottom: 15px;
}
.product-text {
  line-height: 170%;
  margin: 20px 0 40px;
}

.product-service {
  margin: 30px 0 0;
}
.product-service h4 {
  margin-bottom: 20px;
}
.product-service a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 40px;
  background-color: #323232;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
}
.product-service-subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 12px;
}
.product-service-title {
  font-size: 30px;
  margin-bottom: 50px;
}
.product-service-btn {
  display: inline-block;
  padding: 12px 15px 14px;
  border: 1px solid #fff;
}
.product-service a:hover .product-service-btn {
  border: 1px solid #FE4B4B;
  background-color: #FE4B4B;
}
@media(max-width: 1199px) {
  .product-service a {
    padding: 30px;
  }
  .product-service-title {
    font-size: 24px;
  }
}

.product-action {
  margin: 10px 0 20px;
  padding: 15px;
  border:  2px dashed #FE4B4B;
}
.product-action a,
.product-action a:hover {
  display: flex;
  text-decoration: none;
  /* margin: 20px 0; */
}
.product-action .embed-responsive {
  max-width: 150px;
  margin-right: 20px;
}
.product-action-title {
  font-size: 20px;
  font-weight: 700;
  color: #323232;
  margin-bottom: 15px;
}
.product-action-text {
  font-size: 16px;
  color: #777;

}
.product-action-price {
  font-size: 18px;
  font-weight: 700;
  color: #FE4B4B;
  margin-bottom: 15px;
}

.modal-content {
  padding: 40px 50px;
}

.modal-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 140%;
}

.close {
  float: none;
  opacity: 1;
  position: absolute;
  top: -15px;
  right: -15px;
}

.form-control {
  background: #FBFBFB;
  border: 1px solid #E4E4E4;
  border-radius: 0;
  height: calc(1.5em + 1rem + 5px);
  padding: 0.75rem 1rem;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-notice {
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
  line-height: 150%;
  opacity: 0.7;
}

#order-form .btn {
  border-radius: 0;
  padding: 15px 10px;
  font-weight: 400;
}

.modal-message {
  text-align: center;
  color: #FE4B4B;
  margin-bottom: 15px;
}

@media(max-width: 575px) {
  .modal-content {
    padding: 25px 15px 15px;
  }
  .close {
    top: -10px;
    right: 0;
  }
}

.embed-responsive-video {
  padding-top: 175%;
}
video {
  /* object-fit: cover; */
  max-width: 100%;
}
/*
@media(min-width: 575px) {
  video {
    width: 800px;
    height: 400px;
  }
}
*/

.pagination-sm .page-link {
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
}
.pagination-sm .page-link:focus {
  box-shadow: none;
}
.page-link:hover {
  background-color: unset;
  border-color: unset;
}

    .social-fixed {
  position: fixed;
  z-index: 15000;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-fixed-wa, .social-fixed-tg, .social-fixed-phone, .social-fixed-max {
  -webkit-animation: 3s ease 0s normal none 1 running shake;
          animation: 3s ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 50%;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
.social-fixed a:first-child {
    /* display: none; */
}
@media (max-width: 767px) {
    .social-fixed a:first-child {
        display: block;
    }
}
@media (max-width: 575px) {
  .social-fixed {
    right: 10px;
  }
  .social-fixed-wa, .social-fixed-tg, .social-fixed-phone {
    width: 60px;
    height: 60px;
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  6% {
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  10% {
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg);
  }
  14% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  20% {
    -webkit-transform: rotateZ(7.5deg);
            transform: rotateZ(7.5deg);
  }
  24% {
    -webkit-transform: rotateZ(-6deg);
            transform: rotateZ(-6deg);
  }
  30% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  34% {
    -webkit-transform: rotateZ(-4.28571deg);
            transform: rotateZ(-4.28571deg);
  }
  40% {
    -webkit-transform: rotateZ(3.75deg);
            transform: rotateZ(3.75deg);
  }
  44% {
    -webkit-transform: rotateZ(-3.33333deg);
            transform: rotateZ(-3.33333deg);
  }
  50% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  6% {
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  10% {
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg);
  }
  14% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  20% {
    -webkit-transform: rotateZ(7.5deg);
            transform: rotateZ(7.5deg);
  }
  24% {
    -webkit-transform: rotateZ(-6deg);
            transform: rotateZ(-6deg);
  }
  30% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  34% {
    -webkit-transform: rotateZ(-4.28571deg);
            transform: rotateZ(-4.28571deg);
  }
  40% {
    -webkit-transform: rotateZ(3.75deg);
            transform: rotateZ(3.75deg);
  }
  44% {
    -webkit-transform: rotateZ(-3.33333deg);
            transform: rotateZ(-3.33333deg);
  }
  50% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
}