<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'BravoSC';
    src: url('/../assets/fonts/BravoSC.eot');
    src: local('BravoSC'),url('/../assets/fonts/BravoSC.eot?#iefix') format('embedded-opentype'),url('/../assets/fonts/BravoSC.woff') format('woff'),url('/../assets/fonts/BravoSC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

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

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

@font-face {
    font-family: 'Montserrat';
    src: url(/../assets/fonts/Montserrat-SemiBold.eot);
    src: local('Montserrat SemiBold'),local('Montserrat-SemiBold'),url('/../assets/fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),url(/../assets/fonts/Montserrat-SemiBold.woff) format('woff'),url(/../assets/fonts/Montserrat-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url(/../assets/fonts/Montserrat-Bold.eot);
    src: local('Montserrat Bold'),local('Montserrat-Bold'),url('/../assets/fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),url(/../assets/fonts/Montserrat-Bold.woff) format('woff'),url(/../assets/fonts/Montserrat-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url(/../assets/fonts/Montserrat-Regular.eot);
    src: local('Montserrat Regular'),local('Montserrat-Regular'),url('/../assets/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),url(/../assets/fonts/Montserrat-Regular.woff) format('woff'),url(/../assets/fonts/Montserrat-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url(/../assets/fonts/Montserrat-Medium.eot);
    src: local('Montserrat Medium'),local('Montserrat-Medium'),url('/../assets/fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),url(/../assets/fonts/Montserrat-Medium.woff) format('woff'),url(/../assets/fonts/Montserrat-Medium.ttf) format('truetype')
}


*,
::before,
::after {
	box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-family: "BravoRG", sans-serif;
    font-weight: normal;
}
html {
    height: 100%;
}
body {
    color: #2F302B;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.5;
	margin: 0;
    --color-main: #2F302B;
    --color-accent: #af53ff;
    --color-accent-2: #FFF;
    --color-accent-3:#D3A0FF;
    --gradient: linear-gradient(155deg, var(--color-accent-2) 13%, var(--color-accent) 40%, var(--color-accent-3) 100%);
    padding-top:118px;
    height: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
}
input,
textarea {
    outline: unset;
}

section {
    padding-top: 50px;
    padding-bottom: 60px;
}
.container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}
.header {
    position: absolute;
    top:0px;
    width: 100%;
    z-index: 99;
    background-color:  #FFF;
    box-shadow: 0px 0px 10px #000;

}
.header.fixed {
    position: fixed;
}
.header a {
    text-decoration: none;
}

.header__top {
    background: linear-gradient(135deg, #11111a 0%, #18415e 100%);
    color: #fff;
    display: flex;
    align-items: center;
}

.header-top__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    width: 40px;
    height: 26px;
}
.header-hamburger::before,
.header-hamburger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #e43232;
}
.header-hamburger::before {
    top: 0;
    box-shadow: 0 11px 0 #e43232;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.header-hamburger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
}
.header-hamburger.active {
    z-index: 102;
}
.header-hamburger.active::before {
    top: 12px;
    width: 27px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0,0,0,0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.header-hamburger.active::after {
    bottom: 10px;
    width: 27px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}


.header-top__link {
    color: white;
    font-weight: 600;
    padding: 7.5px 15px;
}

.header-top__action {
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.header-top__social {
    display: flex;
    gap: 8px;
}

.header-social__item {
    display: flex;
}

.header-social__item img {
    width: 30px;
    height: 30px;
}



.header__tel {
    font-size: 22px;
    font-weight: bold;
    padding: 7.5px 15px;
}

.header-top__button {
    background: #e43232;
    padding: 7.5px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
.header-top__button:hover {
    color: inherit;
    filter: brightness(1.10);
}
.header__wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 15px;
}

.header__logo {
    font-size: 26px;
    align-items: center;
    font-family: "BravoRG", sans-serif;
    font-size: 46px;
    line-height: 1;
    display: flex;
    gap: 3px;
    margin-bottom: -10px;
}

.header__logo span {
    color: #e43232;
    font-weight: bold;
}

.header__logo-mob {
    display: none;
}

.header-nav__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    position: relative;
}
.header-nav__submenu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: #FFF;
    border-radius: 5px;
    border: 1px solid #e43232;
    align-items: center;
    width: 240px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav__item {
    font-weight: 600;
    font-size: 18px;
    padding: 7.5px 15px;
}

.header-nav__item.dropdown:hover  &gt; .header-nav__submenu {
    display: flex;
}
.header-nav__submenu-item {
    list-style: none;
    width: 100%;
}
.header-nav__submenu-link {
    padding: 5px 30px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.header-nav__submenu-link:hover {
    background-color: #e43232;
    color: #FFF;
}
.main-sec {
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.main-sec__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.main-sec__text {
    position: relative;
    z-index: 1;
}

.main-sec__title {
    font-size: 41px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 680px;
    line-height: 3.4rem;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
}

.main-sec__title span {
    position: relative;
    color: #e43232;
    background: #E43232;
    background: linear-gradient(to right, #E43232 0%, #ff6434 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-sec__title span::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #E43232 0%, #ff6434 100%);
    position: absolute;
    bottom: -2px;
    transform: rotate(-1deg);
}

.main-sec__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.main-sec__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8;
    background: linear-gradient(135deg, #11111a 0%, #18415e 100%);
}

.main-sec__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-sec__subtitle {
    font-weight: 500;
    font-size: 27px;
    color: #fff;
    margin: 20px 0;
}

.btn {
    font-weight: 600;
    padding: 15px 30px;
    border: 3px solid #ffffff00;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
}
.btn:hover {
    background: #e43232;
    color:#fff;
    border: 3px solid #e43232;
}
.main-sec__btn {
    color: #ffffff;
    border: 3px solid #e43232;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
}

.main__form {
    position: relative;
    max-width: 400px;
    background: #fff;
    color: #2F302B;
    border-radius: 6px;
    z-index: 1;
    padding: 46px 35px;
    text-align: center;
}

.main__form::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 6px;
    left: 6px;
    background: #ffffff;
    z-index: -1;
    border-radius: 6px;
    opacity: .4;
    pointer-events: none;
}

.main-form__title {
    color: black;
    max-width: 100%;
    font-size: 30px;
    margin: 0 10px 0;
    line-height: 1.1;
    font-weight: bold;
}

.main-form__subtitle {
    margin: 10px 0 15px;
    font-size: 13px;
    color: #7b7b7b;
}

.input {
    background-color: #f4f5f8;
    border: 1px solid #eaeff1;
    height: 50px;
    font-family: Montserrat, sans-serif;
    width: 100%;
    border-radius: 4px;
    padding: 15px;
}

.main-form__btn {
    margin-top: 15px;
    width: 100%;
    background: #e43232;
    color: #fff;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.form-policy {
    margin-top: 20px;
    font-size: 10px;
    color: #898989;
}


.section__title {
    margin: 10px 0 30px 0;
    font-size: 52px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.section__title span {
    position: relative;
}

.section__title span::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #E43232 0%, #ff6434 100%);
    position: absolute;
    bottom: -4px;
    transform: rotate(-1deg);
}

.problems {
    overflow: hidden;
}

.problem__title span {
    color: #e43232;
}

.problems__slider {
    overflow: visible;
    position: relative;
}

.problems__slider__item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all .3s;
}
.swiper-slide-prev {
    flex-direction: row-reverse;
    opacity: .2;
    /* position: ; */
}
.swiper-slide-next {
    opacity: .2;
    /* position: ; */
}

.problems-text__title {
    font-size: 29px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.2;
}
.problems-text__info {
    font-size: 18px;
}
.problems__btn {
    color: #000;
    border: 3px solid #e43232;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
}


.problems-button-next,
.problems-button-prev {
    position: absolute;
    top: 33%;
    cursor: pointer;
    z-index: 10;
    color: #e43232;
    text-shadow: 0 0 10px #e43232;
    font-size: 71px;
}
.problems-button-next {
    right: -55px
}
.problems-button-prev {
    left: -55px;
}
.problems-slider__image {
    position: relative;
    display: flex;
    width: 650px;
    height: 370px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.problems-slider__image::before {
    bottom: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .3;
    background: linear-gradient(135deg, #e432326b 0%, #18415e 100%);
}
.services__title {
    margin-bottom: 0;
    color: #fff;
}

.section__subtitle {
    font-size: 26px;
    text-align: center;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 40px;
}
.servies__list {
    list-style: none;
    column-count: 3;
    column-gap: 30px;
    margin-top: 30px;
}

.servies__list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.servies__list li::before {
    min-width: 32px;
    height: 32px;
    content: "";
    background: url(/../assets/img/check.svg) no-repeat center;
    background-size: contain;
}

.services {
    position: relative;
}



.services__wrapper {
    position: relative;
    z-index: 1;
    color: #fff;
}

.section__bg  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8;
    background: linear-gradient(135deg, #11111a 0%, #18415e 100%);
}

.section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 255px);
    gap: 30px;
    position: relative;
    justify-content: center;
}

.steps__item {
    position: relative;
    width: 255px;
    text-align: center;
}

.steps__item::before {
    content: "";
    border-top: 3px dotted #e43232;
    width: 80%;
    top: 276px;
    left: 10%;
    position: absolute;
    z-index: 1;
}

.steps-item__img {
    display: flex;
    justify-content: center;
}

.steps-item__img img {
    border-radius: 10px;
}

.steps-item__num {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #e43232;
    text-align: center;
    font-size: 25px;
    border: 4px solid white;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    line-height: 1;
    margin: 10px auto 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.steps-item__title {
    font-size: 18px;
}

.avantages {
    position: relative;
    color: #fff;
    padding-bottom: 80px;
}

.avantages__title {
    margin-bottom: 0;
}

.avantages__subtitle {
    font-size: 23px;
}

.avantages__wrapper {
    position: relative;
    z-index: 1;
}

.avantages__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.avantages-item__title {
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 5px;
}

.offer-form {
    padding-bottom: 90px;
    background: #e7e7e7;
    position: relative;
    overflow: hidden;
}
.offer-form__title {
    color: black;
    margin: 45px 0 30px 0;
    font-size: 46px;
    line-height: 1.1;
    max-width: 50%;
    font-weight: bold;
}
.offer-form__title span {
    color: #e43232;
}
.offer-form__subtitle {
    margin-bottom: 20px;
}
.offer-form__subtitle a {
    font-size: 18px;
    line-height: 20px;
    max-width: 430px;
    margin: 0;
    pointer-events: none;
    text-decoration: none;
}

.offer-form__subtitle a:hover {
    text-decoration: none;
    color:inherit
}
.offer-form__subtitle a:visited {
    color:inherit;
}

.offer-form__subtitle a b {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    white-space: nowrap;
    pointer-events: all;
}
.offer-form__subtitle a:hover b {
    color:#e43232;
}
.offer-form__text {
    position: relative;
    z-index: 1;
}
.offer-form__img {
    position: absolute;
    bottom: 57px;
    right: 0;
}
.offer-form__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.offer-form__input {
    width: 240px;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #2F302B;
}
.offer-form__agreement {
    display: flex;
    margin-top:10px;
    align-items: center;
    font-size: 12px;
    gap: 5px;
}
.agreement__link:hover { color:inherit; opacity: 0.8;}
.offer-form__submit input {
    background-color: #e43232;
    padding: 7.5px 15px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    max-width: 490px;
    border: 0;
    margin-top: 10px;
    height: 44px;
    cursor: pointer;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
}

.statistic__title {
    margin-bottom: 10px;
}

.statistic__row {
    display: grid;
    grid-template-columns: repeat(auto-fill, 500px);
    gap: 30px;
    justify-content: center;
    margin-top: 40px;

}
.statistic__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    
}
.statistic-item__num {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ea3c33;
    height: 90px;
    font-size: 57px;
    font-weight: 700;
    padding: 0 15px;
    border-radius: 10px;
    color: #fff;
}
.statistic-item__text {
    line-height: 30px;
    text-transform: uppercase;
}
.reviews {
    background: #e7e7e7;
}
.amazing-reviews {
  font-size: 12pt;
}
.amazing-reviews blockquote {
  font-family: Myriad, Helvetica, 'Lucida Grande', 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', Tahoma, Geneva, Arial, sans-serif;
  padding: 0;
  background: white;
  margin: 30px 0 0 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 15px 15px 10px 15px;
  position: relative;
  box-shadow: rgba(0,0,0,.025) 0 3px 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.amazing-reviews blockquote:before {
  content: '';
  display: block;
  border: 20px solid transparent;
  border-top-color: #ccc;
  position: absolute;
  top: 100%;
  left: 20px;
  z-index: 1;
  background: transparent;
  height: 0;
  opacity: 1;
}
.amazing-reviews blockquote:after {
  content: '';
  display: block;
  border: 19px solid transparent;
  border-top-color: white;
  position: absolute;
  top: 100%;
  left: 21px;
  z-index: 2;
}
.amazing-reviews blockquote:last-of-type {
  margin-bottom: 45px;
}
.amazing-reviews blockquote header span i {
  color: white;
  text-shadow: #aaa 1px 0 0, #aaa 0 1px 0, #aaa -1px 0 0, #aaa 0 -1px 0;
}
.amazing-reviews blockquote header span[data-rating="1"] i:nth-child(-n+1),
.amazing-reviews blockquote header span[data-rating="2"] i:nth-child(-n+2),
.amazing-reviews blockquote header span[data-rating="3"] i:nth-child(-n+3),
.amazing-reviews blockquote header span[data-rating="4"] i:nth-child(-n+4),
.amazing-reviews blockquote header span[data-rating="5"] i:nth-child(-n+5) {
  color: #f0c96a;
  text-shadow: #c08036 1px 0 0, #c08036 0 1px 0, #c08036 -1px 0 0, #c08036 0 -1px 0;
}
.amazing-reviews blockquote strong {
  color: black;
  display: inline;
}
.amazing-reviews strong + span {
  margin-left: -3px;
}
.amazing-reviews blockquote strong + span + span {
  display: block;
  margin: 5px 0;
}
.amazing-reviews blockquote span em {
  font-style: normal;
  font-weight: bold;
  color: #155096;
  text-decoration: underline;
}
.amazing-reviews blockquote p {
  font-size: 12pt;
  font-style: normal;
  margin: 5px 0 0 0;
  color: black;
}
@media (min-width: 700px) {
  .amazing-reviews blockquote {
    width: 1080px;
    margin: 30px auto 0 auto;
    max-width: 100%;
  }
}
@media (min-width: 700px) {
  .amazing-reviews .quote-container {
    width: 100%;
    padding: 0 75px;
  }
}

.block-reviews {
    max-height: 1000px;
    transition: all .3s;
}

.hidden-reviews {
    max-height: 0;
    overflow: hidden;
}

.show-reviews {
    max-height: 100%;
}

.show-all {
    background: #e43232;
    padding: 10.5px 15px;
    margin: auto;
    display: block;
    text-align: center;
    max-width: 230px;
    cursor: pointer;
    color: #fff;
}



.footer {position: relative;}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 30px 0 0 0;
}
.footer__background {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.footer__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer__title {
    color:#e43232;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    background: #00000077;
    padding: 8px 0;
}
.footer-bottom  &gt; .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__btn {
    background-color: #e43232;
    padding: 7.5px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    margin: 10px 0;
}
.footer__btn:hover {
    color:inherit;
    filter: brightness(1.10);
}
.footer-bottom__links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.footer-bottom__links a:hover {
    color: #FFF;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer-social img {
    width: 40px;
    height: 40px;
}
.footer-social__item {
    display: flex;
    align-items: center;
}
.footer__subtitle {
    color: #fff;
    margin-bottom: 40px;
    max-width: 600px;
}
.footer__shadow {
    background: #00000040;
    position: absolute;
    top:0;
    height: 100%;
    width: 100%;
    left: 0;
}
.countries__list ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    justify-content: center;
}
.countries__item {
    list-style: none;
    background: #e43232;
    color: #fff;
    width: 300px;
    height: 40px;
    border-radius: 5px;;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.countries__item a {
    font-size: 14px;
    text-decoration: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 98;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    background: #FFF;
    overflow: hidden;
    transition: all 150ms;
    padding-top: 60px;
}

.mobile-nav__list {
    width: 100%;
    list-style: none;
    padding: 0 30px;
}
.mobile-nav__list-item {
    font-size: 24px;
    position: relative;
}
.mobile-nav__list-item.dropdown::before {
    content: "ðŸ¢—";
    position: absolute;
    top: 10px;
    right: 0;

}
.mobile-nav__list-item.dropdown.show::before {
    content: "ðŸ¢•";
    top: -8px;
}
.mobile-nav__submenu-item {
    height: 0;
    overflow: hidden;
    transition: all 150ms;
    pointer-events: none;
}
.mobile-nav__list-item.show .mobile-nav__submenu-item {
    height: auto;
    transition: all 150ms;
    pointer-events: all;
}
.mobile-nav__submenu {
    display: flex;
    flex-direction: column;
}
.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap:30px;
}
.mobile-menu__contacts-phone {
    font-size: 24px;
    color: #e43232;
}
.mobile-menu__callback {
    background-color: #e43232;
    padding: 7.5px 15px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
}


.page-banner {
    position: relative;
    width: 100%;
    height: 200px;
}
.page-banner__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:30px;
    z-index: 3;
    height: 200px;
}
.page-banner__content-title {
    font-size: 40px;
    line-height: 0.8;
    text-align: center;
    font-family: "BravoRG", sans-serif;
    color:#e43232;
}
.page-banner__content-breadcrumbs {
    color: #FFF;
}
.page-banner__content-breadcrumbs span {
    color: #aaa;
}
.page-banner__image {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: 1;
}
.page-banner__shadow {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 200px;
    background: #000000AA;
    z-index: 2;

}
.page {
    padding: 40px 0;
    min-height: calc(100% - 291px);
}
.page &gt; .container {
    display: flex;
    gap:30px;
}
.page-nav-toggle {
    display: none;
    border-radius: 10px;
    font-size: 32px;
    align-items: center;
    justify-content: center;
    background: #e43232;
    color: #FFF;
}
.page-nav-toggle::after {
    content: "â¯†";
    padding-left: 20px;
    padding-top: 6px;
}
.page-nav-toggle.show::after {
    content: "â¯…";

}
.page-nav {
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.page-nav__block {
    border: 1px solid #e43232;
    border-radius: 10px;
    overflow: hidden;
}
.page-nav__block-title {
    background-color: #e43232;
    color: #FFF;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.page-nav__block-list {
    padding: 0;
    margin: 0;
}
.page-nav__block-item {
    list-style: none;
    border-top: 1px solid #e43232;
}
.page-nav__block-link {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.page-nav__block-link:hover {
    background: #e43232;
    color: #fff;
    opacity: 0.7;
}
.page-content__title {
    font-size: 38px;
    line-height: 1;
    margin-top: 10px;
    font-family: "BravoRG", sans-serif;
    color: #e43232;
}


.page-content h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
    color: #222;
  }
  
  .page-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .page-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: #444;
  }
  
  .page-content h5 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
  }
  
  .page-content h6 {
    font-size: 0.875rem;
    font-weight: bold;
    margin-top: 0.875rem;
    margin-bottom: 0.5rem;
    color: #666;
  }
  
  /* ÐŸÐ°Ñ€Ð°Ð³Ñ€Ð°Ñ„Ñ‹ */
  .page-content p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  /* Ð¡Ð¿Ð¸ÑÐºÐ¸ */
  .page-content ul,
  .page-content ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 2rem; /* ÐžÑ‚ÑÑ‚ÑƒÐ¿ Ð´Ð»Ñ ÑÐ¿Ð¸ÑÐºÐ¾Ð² */
  }
  
  .page-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
  }
  
  /* Ð¡ÑÑ‹Ð»ÐºÐ¸ */
  .page-content a {
    color: #e43232; /* Ð¦Ð²ÐµÑ‚ ÑÑÑ‹Ð»ÐºÐ¸ */
  }
  
  .page-content a:hover {
    color: #e43232; /* Ð¦Ð²ÐµÑ‚ ÑÑÑ‹Ð»ÐºÐ¸ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
  }
  
  /* Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ */
  .page-content img {
    max-width: 100%; /* ÐœÐ°ÐºÑÐ¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ */
    height: auto; /* ÐÐ²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð²Ñ‹ÑÐ¾Ñ‚Ð° */
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Ð¦Ð¸Ñ‚Ð°Ñ‚Ñ‹ */
  .page-content blockquote {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-left: 4px solid #ccc;
    background-color: #f9f9f9;
    color: #555;
    font-style: italic;
  }
  
  /* ÐšÐ¾Ð´ */
  .page-content pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
  }
  
  .page-content code {
    font-family: "Courier New", monospace;
    font-size: 0.875rem;
    color: #d63384;
  }


.accordion {
    margin: 40px auto 40px;
}

.accordion .accordion-item {
    border: 1px solid #e1e1e1;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}
.accordion .accordion-item button[aria-expanded=true] {
    color: #ffffff;
    background: #e43232;
    background-repeat: repeat-x;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  color: #e43232;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
    padding: 17px 60px 13px 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    line-height: 1;
    border-bottom: 0;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.accordion button .accordion-title {
    color: var(--color-main);
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 500;
}
.accordion .accordion-item button[aria-expanded=true] .accordion-title {
    color: #fff;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 25px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: var(--color-accent);
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-weight: 300;
    margin: 0;
    padding: 20px 30px;
    font-size: 15px;
}

/* Ð‘Ð°Ð·Ð¾Ð²Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ‚ÐµÐºÑÑ‚Ð¾Ð²Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ° */
.seo {
  font-family: Arial, sans-serif; /* Ð¨Ñ€Ð¸Ñ„Ñ‚ Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ */
  line-height: 1.6; /* ÐœÐµÐ¶ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ñ‹Ð¹ Ð¸Ð½Ñ‚ÐµÑ€Ð²Ð°Ð» */
  color: #333; /* Ð¦Ð²ÐµÑ‚ Ñ‚ÐµÐºÑÑ‚Ð° */
}

/* Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ¸ */
.seo h1 {
  font-size: 2rem; /* Ð&nbsp;Ð°Ð·Ð¼ÐµÑ€ ÑˆÑ€Ð¸Ñ„Ñ‚Ð° */
  font-weight: bold; /* Ð–Ð¸Ñ€Ð½Ñ‹Ð¹ ÑˆÑ€Ð¸Ñ„Ñ‚ */
  margin-top: 2rem; /* ÐžÑ‚ÑÑ‚ÑƒÐ¿ ÑÐ²ÐµÑ€Ñ…Ñƒ */
  margin-bottom: 1.5rem; /* ÐžÑ‚ÑÑ‚ÑƒÐ¿ ÑÐ½Ð¸Ð·Ñƒ */
  color: #000; /* Ð¦Ð²ÐµÑ‚ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° */
}

.seo h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  color: #222;
}

.seo h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.seo h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.seo h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.seo h6 {
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 0.875rem;
  margin-bottom: 0.5rem;
  color: #666;
}

/* ÐŸÐ°Ñ€Ð°Ð³Ñ€Ð°Ñ„Ñ‹ */
.seo p {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Ð¡Ð¿Ð¸ÑÐºÐ¸ */
.seo ul,
.seo ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 2rem; /* ÐžÑ‚ÑÑ‚ÑƒÐ¿ Ð´Ð»Ñ ÑÐ¿Ð¸ÑÐºÐ¾Ð² */
}

.seo li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

/* Ð¡ÑÑ‹Ð»ÐºÐ¸ */
.seo a {
  color: #007bff; /* Ð¦Ð²ÐµÑ‚ ÑÑÑ‹Ð»ÐºÐ¸ */
  text-decoration: underline; /* ÐŸÐ¾Ð´Ñ‡ÐµÑ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ðµ */
}

.seo a:hover {
  color: #0056b3; /* Ð¦Ð²ÐµÑ‚ ÑÑÑ‹Ð»ÐºÐ¸ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
}

/* Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ */
.seo img {
  max-width: 100%; /* ÐœÐ°ÐºÑÐ¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ */
  height: auto; /* ÐÐ²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð²Ñ‹ÑÐ¾Ñ‚Ð° */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Ð¦Ð¸Ñ‚Ð°Ñ‚Ñ‹ */
.seo blockquote {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  border-left: 4px solid #ccc;
  background-color: #f9f9f9;
  color: #555;
  font-style: italic;
}

/* ÐšÐ¾Ð´ */
.seo pre {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.seo code {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  color: #d63384;
}

.footer-copyright {
    color: #BBB;
    font-size: 10px;
    padding: 10px 0;
}

/* [START] Contact widget button */
#contact_widget_button {font-family: sans-serif; font-size: 14px; line-height: 1.15;}
#contact_widget_button * {outline: none;}
#contact_widget_button *, #contact_widget_button *::before, #contact_widget_button *::after {box-sizing: border-box;}
#contact_widget_button .text-center {text-align: center !important;}
#contact_widget_button .align-items-center {-ms-flex-align: center !important;align-items: center !important;}
#contact_widget_button .justify-content-center {-ms-flex-pack: center !important;justify-content: center !important;}
#contact_widget_button {display: -ms-flexbox !important;display: -webkit-flex !important;display: flex !important;}
#contact_widget_button .d-flex {display: -ms-flexbox !important;display: -webkit-flex !important;display: flex !important;}
#contact_widget_button .d-none {display: none !important;}
#contact_widget_button .align-items-start {-ms-flex-align: start !important;align-items: flex-start !important;}
#contact_widget_button .flex-column {-ms-flex-direction: column !important;flex-direction: column !important;}

@-webkit-keyframes pulsation { 0%{-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);opacity:1} 50%{opacity:.5} to{-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);opacity:0}}
@keyframes pulsation { 0%{-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);opacity:1} 50%{opacity:.5} to{-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);opacity:0}}
@-webkit-keyframes iconOpacity {0%{opacity:0}	40%{opacity:.96}	60%{opacity:1}	80%{opacity:.96}	100%{opacity:0}}
@keyframes iconOpacity {0%{opacity:0} 40%{opacity:.96} 60%{opacity:1} 80%{opacity:.96} 100%{opacity:0}}
#contact_widget_button{ background: #01b44a; position:fixed;right:15px;bottom:15px;width:50px;height:50px;border-radius:100%;cursor:pointer;z-index:1001} /* green #25d366 */
#contact_widget_button.clicked{z-index:1041}
#contact_widget_substrate{position:fixed;top:0;right:0;bottom:0;left:0;background:transparent;z-index:0;display:none}
#contact_widget_substrate.active{z-index:1020;display:block}
.contact-widget-pulsation{background: #00f06b; width:80px;height:80px;border-radius:50px;position:absolute;left:-15px;top:-15px;z-index:-1;-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);-webkit-animation:pulsation 2s infinite;animation:pulsation 2s infinite}
.contact-widget-icon{color:#fff;width:100%;font-size:20px;overflow:hidden}
.contact-widget-icon .fa-envelope{-webkit-animation:iconOpacity 3s infinite;animation:iconOpacity 3s infinite;width:20px;height:20px}
.contact-widget-text{font-size:7px;text-transform:uppercase;line-height:9px;color:#fff}
.contact-widget-dropdown{position:absolute;bottom:60px;right:36px;padding:20px;border-radius:6px;background:#fff;display:block;opacity:0;z-index:-1;margin-bottom:20px;-webkit-transition:margin-bottom .3s ease,opacity .3s ease;transition:margin-bottom .3s ease,opacity .3s ease;box-shadow:5px 12px 30px rgba(0,0,0,.35);visibility:hidden;min-width:250px}
.contact-widget-dropdown.expanded{margin-bottom:0;opacity:.98;z-index:1;visibility:visible}
.contact-widget-item{color:#333}
.contact-widget-item:hover {color:rgb(10, 120, 191);}
.contact-widget-item:not(:last-child){margin-bottom:18px}
.contact-widget-item-icon{font-size:20px; display:block;-ms-flex:0 0 40px;flex:0 0 40px;max-width:40px;width:40px;height:40px;border-radius:100%;margin-right:10px;color:#fff}
.contact-widget-item-icon svg{width:20px!important;height:20px}
.contact-widget-messenger{background:#0084ff}
.contact-widget-viber{background:#7c529d}
.contact-widget-telegram{background:#2ca5e0}
.contact-widget-skype{background:#31c4ed}
.contact-widget-whatsapp{background:#25d366}
.contact-widget-email{background:#50a8ff}
.contact-widget-call{background:#3cba8b}
.contact-widget-contacts{background:#141e1a}
#contact_widget_button .toggle-active { display:none; }
#contact_widget_button.clicked .toggle-active { display:block; }
#contact_widget_button .toggle-inactive { display:block; }
#contact_widget_button.clicked .toggle-inactive { display:none; }

@media (min-width: 420px) {
	#contact_widget_button{right:30px;width:70px;height:70px}
	.contact-widget-pulsation{width:100px;height:100px}
	.contact-widget-icon{font-size:28px}
	.contact-widget-icon .fa-envelope{width:28px;height:28px}
	.contact-widget-text{font-size:9px;line-height:10px}
	.contact-widget-dropdown{right:60px}
}
@media (min-width: 992px) {
#contact_widget_button{bottom:30px}
	#contact_widget_button .contact-widget-viber-mobile{display:none!important}
}
@media (max-width: 991px) {
	#contact_widget_button .contact-widget-viber-desktop{display:none!important}
}
/* [End] Contact widget button */</pre></body></html>