@font-face {
  font-family: "SweetMavka";
  src: url(../fonts/Sweet_Mavka_Script.ttf);
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li::marker {
  color: var(--brand-red);
}

ul li {
  margin-bottom: 10px;
}

ul li:last-child {
  margin-bottom: 0;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

:root {
  --brand-red: #DB2C1B;
  --brand-red-pale: #db2b1b3a;
  scroll-behavior: smooth;
}

body {
  background-color: #141414;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

.dropdown span {
  white-space: normal;
}

.dropdown-menu {
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  border: 2px solid var(--brand-red);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 0;
}
.dropdown-menu li {
  margin-bottom: 0;
}
.dropdown-menu li a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.dropdown-menu li a:hover {
  background-color: var(--brand-red);
  color: #fff;
}

.popover {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid var(--brand-red);
}

.popover-body p {
  font-size: 14px;
}
.popover-body button {
  width: 100%;
  margin-bottom: 10px;
}

.sidebar_toggler {
  width: 1.75rem;
  height: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.sidebar_toggler span {
  background-color: var(--brand-red);
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar.show + .sidebar_toggler {
  justify-content: center;
}

.sidebar.show + .sidebar_toggler span {
  margin-top: -1.2px;
  margin-bottom: -1.2px;
}

.sidebar.show + .sidebar_toggler span:first-child {
  transform: rotate(45deg);
}

.sidebar.show + .sidebar_toggler span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.sidebar.show + .sidebar_toggler span:last-child {
  transform: rotate(-45deg);
}

section {
  padding: 50px 0;
}

h2 {
  font-weight: 700;
  font-size: 64px;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 45px;
}

span.brand-color,
a.brand-color {
  color: var(--brand-red);
  font-weight: 500;
}

a.brand-color {
  white-space: nowrap;
}

h2::after {
  content: "";
  background-color: var(--brand-red);
  width: 100%;
  height: 3px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #f6fbfe;
}

.modal .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DB2C1B'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

.modal .btn-close:focus,
.modal .btn-close:active {
  box-shadow: 0 0 0 0.25rem var(--brand-red-pale);
}

.modal {
  --bs-modal-bg: #1010105b;
  --bs-modal-border-radius: 0;
  --bs-border-color: var(--brand-red);
  --bs-modal-border-color: var(--brand-red-pale);
  --bs-modal-width: 800px;
}

.modal-content {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 0px 10px 0px rgba(255, 255, 255, 0.0823529412);
}

.modal p {
  font-size: 14px;
  line-height: 28px;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #DB2C1B;
  --bs-btn-border-color: #DB2C1B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #DB2C1B;
  --bs-btn-hover-border-color: #DB2C1B;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #DB2C1B;
  --bs-btn-active-border-color: #DB2C1B;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #DB2C1B;
  --bs-btn-disabled-border-color: #DB2C1B;
}

.btn-outline-primary {
  --bs-btn-color: #DB2C1B;
  --bs-btn-border-color: #DB2C1B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #DB2C1B;
  --bs-btn-hover-border-color: #DB2C1B;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #DB2C1B;
  --bs-btn-active-border-color: #DB2C1B;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #DB2C1B;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #DB2C1B;
  --bs-gradient: none;
  padding: 12px 20px;
}

.btn {
  --bs-btn-border-radius: 0;
}

.red_corner {
  position: relative;
}

.red_corner::before {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: var(--brand-red);
  content: "";
  width: 200px;
  height: 200px;
  z-index: -1;
}

.heading_w_desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 70px;
       column-gap: 70px;
  margin-bottom: 45px;
}

.heading_w_desc h2 {
  margin-bottom: 0;
}

.heading_w_desc p {
  line-height: 21px;
  font-size: 18px;
  margin-bottom: 0;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 25px 0;
  transition: 0.15s ease-in-out;
  background-color: #f6fbfe;
}

header.scrolled {
  padding: 15px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0px 0px 0px #000;
}

header.scrolled .logo img {
  max-width: 130px;
}

header .logo img {
  max-width: 140px;
  width: 100%;
  transition: 0.15s ease-in-out;
}

header .nav-links {
  text-transform: uppercase;
  font-size: 16px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  font-weight: 500;
}

header .nav-links .btn {
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-weight: 500;
  font-size: 16px;
}

header .nav-links .btn img {
  transition: 0.15s;
  max-width: 24px;
}

header .nav-links .btn:hover img {
  filter: brightness(0) invert(1);
}

header .link-item {
  color: #333333;
  transition: 0.15s ease-in-out;
}

header .link-item:hover {
  color: var(--brand-red);
}

header .nav {
  row-gap: 20px;
}

header .header-contacts {
  -moz-column-gap: 60px;
       column-gap: 60px;
}

header .header-contacts a {
  color: #333333;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-weight: 500;
}

header .header-contacts a img {
  max-width: 16px;
}

.intro {
  position: relative;
  height: 100vh;
  row-gap: 10px;
  padding: 0;
}

.intro::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.67);
  z-index: -2;
}

.intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -3;
}

.intro h1 {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 5vw;
  color: #ffffff;
  line-height: 150%;
  text-align: center;
}

.intro .btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  padding: 12px 18px;
}

.important-card_inner {
  text-align: center;
  padding: 20px;
  position: relative;
}

.important-card:nth-child(1) .important-card_inner:after,
.important-card:nth-child(2) .important-card_inner:after,
.important-card:nth-child(3) .important-card_inner:after {
  position: absolute;
  top: 50%;
  transform: translate3d(50%, -50%, 0);
  right: -10px;
  content: "";
  width: 1px;
  height: 50%;
  background-color: var(--brand-red);
}

.important-card_inner img {
  max-width: 30%;
  width: 100%;
  margin-bottom: 25px;
}

.services .service_item {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  background: none;
  color: #ffffff;
  overflow: hidden;
  transition: 0.15s ease-in-out;
}

.services .service_item > * {
  pointer-events: none;
}

.services .service_item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -3;
  transition: 0.15s ease-in-out;
}

.services .service_item:hover {
  color: var(--brand-red);
}

.services .service_item:hover .btn-outline-primary {
  color: white;
  background-color: var(--brand-red);
}

.services .service_item:hover img {
  transform: scale(1.1);
}

.services .service_item::before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}

.services .service_item h3 {
  font-size: 20px;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  width: 100%;
  margin-bottom: 15px;
  font-weight: 400;
}

.services .service_info {
  background-color: rgba(0, 0, 0, 0.6431372549);
  padding: 10px;
}
.services .service_info p {
  font-size: 14px;
  line-height: 120%;
}
.services .service_info .fake_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
  padding: 5px 10px;
}

.social .social-links {
  justify-content: center;
  text-align: center;
}

.social .social-links a {
  color: #ffffff;
  font-size: 24px;
}

.social .social-links-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.social .social-links-inner a img {
  width: 64px;
}

.social .phone-icon {
  width: 28px;
}

.special ul {
  font-size: 18px;
  line-height: 150%;
}

.reviews .real_reviews {
  display: block;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  transition: 0.15s ease-in-out;
}

.reviews .real_reviews img {
  vertical-align: text-bottom;
  max-height: 32px;
}

.reviews .real_reviews:hover {
  color: var(--brand-red);
}

.reviews .review_text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 15px;
}

.reviews .review_name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.reviews .review_service {
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.splide__arrow--next {
  right: 0;
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow {
  background: rgba(255, 255, 255, 0);
  width: 30px;
  transition: 0.15s ease-in-out;
}

.splide__arrow svg {
  fill: var(--brand-red);
  transition: 0.15s ease-in-out;
  width: 30px;
  height: 30px;
}

.splide__pagination {
  bottom: -40px;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--brand-red);
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--brand-red);
}

.splide__pagination__page.is-active {
  background: var(--brand-red);
}

.splide__pagination__page {
  background-color: rgba(219, 43, 27, 0.6862745098);
  margin: 3px 8px;
}

.hvr {
  position: relative;
}

.hvr__images {
  position: relative;
  height: 450px;
}

.hvr__images::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(50, 199, 44, 0) 80%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 0;
}

.hvr__sectors {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 1;
}

.hvr__sector {
  flex-grow: 1;
}

.slider_images {
  display: flex;
  overflow: hidden;
}

.slider_images img {
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image {
  display: block;
}

.hvr__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0px 20px;
}

.hvr__dot {
  height: 5px;
  margin: 10px 10px 0;
  background: rgba(219, 44, 27, 0.4);
  flex: 1 1 auto;
}

.hvr__dot--active {
  background: var(--brand-red);
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: rgba(30, 143, 255, 0);
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 16px;
  height: 6px;
  background: url("../img/arrow_down.png") center no-repeat;
  background-size: contain;
}

.select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotateZ(180deg);
}

.select-selected.chosen {
  color: #ffffff;
}

.select-items div,
.select-selected {
  outline: none;
  color: #676f77;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
  font-size: 18px;
  border: 1px solid var(--brand-red);
  padding: 15px 20px;
  width: 100%;
  cursor: pointer;
}

.select-items div {
  color: #fff;
}

.select-items {
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.form-label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-label sup {
  color: var(--brand-red);
}

input.form-control {
  padding: 15px 20px;
  outline: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  border-color: var(--brand-red);
  border-radius: 0;
  font-size: 18px;
}

.form-control:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  border-color: var(--brand-red);
  outline: 0;
  box-shadow: none;
}

select.form-control {
  background-color: #141414;
  color: #f6fbfe;
  border-color: var(--brand-red);
  padding: 15px 20px;
}

select option {
  background-color: #141414;
}

.form form > div {
  margin-bottom: 28px;
}

footer {
  background-color: #101010;
  padding: 15px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-logo {
  max-width: 144px;
}

footer p,
footer a {
  font-size: 14px;
  color: #D9DBE1;
  transition: 0.15s ease-in-out;
  display: block;
  margin-bottom: 0;
}

footer a:hover {
  color: #ffffff;
}

footer .footer-social {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
}

footer .footer-social img {
  width: 42px;
}

footer .footer-social a:hover img {
  filter: brightness(0) invert(1);
}

/* FRANCHISE */
.franchise-title {
  font-size: 24px;
  margin: 0;
  margin-right: auto;
  display: block;
  font-weight: 400;
  padding-left: 30px;
  margin-left: 30px;
  position: relative;
}
.franchise-title::after {
  display: block;
  height: 60px;
  width: 2px;
  order: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media (max-width: 767px) {
  .franchise-title::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .franchise-title {
    font-size: 16px;
    padding: 15px 0;
  }
}

@media (max-width: 399px) {
  .hide-400 {
    display: none;
  }
}

@media (max-width: 399px) {
  .reverse_call {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 8px 16px;
  }
}
@media (max-width: 383px) {
  .reverse_call {
    padding: 12px;
  }
  .reverse_call span {
    display: none;
  }
  .reverse_call img {
    width: 36px;
    height: 36px;
    max-width: unset !important;
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
  }
}

@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(5px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(5px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(5px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.franchise-hero h1 {
  font-size: 48px;
  max-width: 780px;
  line-height: 70px;
  margin-bottom: 24px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .franchise-hero h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 380px) {
  .franchise-hero h1 {
    font-size: 30px;
    line-height: 50px;
  }
}
.franchise-hero .franchise-hero-photo {
  position: relative;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .franchise-hero .franchise-hero-photo {
    margin-left: 0;
  }
}
.franchise-hero .franchise-hero-photo img {
  width: 100%;
  max-width: 400px;
  border: 5px solid var(--brand-red);
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  width: calc(100% - 10px);
  background: rgba(20, 20, 20, 0.6);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  margin: 0 auto;
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text p:first-child {
  color: #FFF;
  font-weight: 600;
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text p:last-child {
  font-weight: 400;
  color: #fff;
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text p {
  margin: 0;
  font-size: 20px;
}
@media (max-width: 350px) {
  .franchise-hero .franchise-hero-photo .franchise-hero-photo-text p {
    font-size: 16px;
  }
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text h2 {
  margin: 0 auto;
  font-size: inherit;
  text-align: center;
  max-width: 50%;
  min-width: 200px;
  text-align: center;
}
.franchise-hero .franchise-hero-photo .franchise-hero-photo-text h2::after {
  display: none;
}
.franchise-hero .features {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
}
.franchise-hero .features .feature {
  display: flex;
  align-items: center;
}
.franchise-hero .features p {
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
@media (max-width: 350px) {
  .franchise-hero .features p {
    font-size: 16px;
  }
}
.franchise-hero .features img {
  max-height: 40px;
  margin-right: 15px;
}
.franchise-hero .get-plan {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  width: 350px;
  transition: 1s ease-in-out width;
}
@media (max-width: 400px) {
  .franchise-hero .get-plan {
    width: 300px;
  }
}
.franchise-hero .get-plan:hover {
  width: 100%;
}
.franchise-hero .bullets {
  margin-top: 60px;
}
.franchise-hero .bullets .bullet {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 350px) {
  .franchise-hero .bullets .bullet {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.franchise-hero .bullets .bullet .bullet-icon {
  width: 100%;
  max-width: 48px;
  margin-right: 20px;
}
.franchise-hero .bullets .bullet .bullet-icon img {
  width: 100%;
}
.franchise-hero .bullets .bullet .bullet-text h3 {
  font-size: 20px;
  font-weight: 600;
}
.franchise-hero .bullets .bullet .bullet-text p {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .important-card:nth-child(2) .important-card_inner:after {
    display: none;
  }
  .intro h1 {
    -webkit-text-stroke: 2px #FFFFFF;
  }
  .heading_w_desc {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .services .service_item {
    min-height: 300px;
  }
  h2 {
    font-size: 48px;
  }
  section {
    padding: 40px 0;
  }
  .select-items div {
    background-color: rgba(0, 0, 0, 0.3137254902);
  }
  header .header-contacts {
    row-gap: 10px;
  }
  .footer-inner {
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: center;
  }
  .footer-contacts {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer-copyrights {
    width: 100%;
    text-align: center;
  }
  .sidebar {
    position: fixed;
    z-index: 2;
    background-color: #f6fbfe;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 100px 20px 0 20px;
    text-align: center;
  }
  .sidebar .logo {
    margin-bottom: 30px;
  }
  .sidebar .logo img {
    max-width: 220px !important;
  }
  .sidebar .header-contacts {
    margin-bottom: 30px;
  }
  .sidebar .nav-links {
    row-gap: 20px;
  }
  .sidebar .header-contacts a {
    justify-content: center;
    text-align: center;
  }
  .sidebar.show {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .important-card:nth-child(1) .important-card_inner:after,
  .important-card:nth-child(2) .important-card_inner:after,
  .important-card:nth-child(3) .important-card_inner:after {
    position: absolute;
    top: unset;
    display: block;
    bottom: 0px;
    transform: translate3d(50%, 50%, 0);
    right: 50%;
    content: "";
    width: 80%;
    height: 1px;
    background-color: var(--brand-red);
  }
}
.franchise_link {
  font-size: 16px;
  border: 1px solid var(--brand-red);
  padding: 5px 10px;
  transition: 0.2s linear;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.franchise_link:hover {
  color: var(--brand-red);
}

@media (max-width: 500px) {
  .important-card_inner img {
    max-width: 20%;
  }
  .intro h1 {
    font-size: 10vw;
    -webkit-text-stroke: 1px #FFFFFF;
  }
  .intro h1 span {
    font-size: 20vw;
  }
  header .logo img {
    max-width: 110px !important;
  }
}
@media (max-width: 360px) {
  header .logo img {
    max-width: 70px !important;
  }
  .footer-contacts {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */