@import url(../fonts/stylesheet.css);

/* RESET CSS */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
}
a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition);
}
b {
   font-weight: 600;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
   display: block;
}

textarea:focus {
   outline: none;
}
textarea {
   resize: none;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
   display: none;
}

/* Reset box-model */
html {
   box-sizing: border-box;
}
*,
*:before,
*:after {
   box-sizing: inherit;
}

body,
html {
   line-height: normal;
   font-weight: 400;
   overflow-x: hidden;
}
body.no-scroll,
html.no-scroll {
   overflow: hidden;
}
/* .wrapper {
   max-width: 1920px;
   margin: 0 auto;
   position: relative;
} */
ol,
ul {
   list-style: none;
   list-style-type: none;
}

blockquote,
q {
   quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
   content: "";
   content: none;
}

abbr[title],
dfn[title] {
   border-bottom: 1px dotted;
}

table {
   border-collapse: collapse;
   border-spacing: 0;
}

img,
video {
   max-width: 100%;
   /* width: 100%; */
}

img {
   border-style: none;
}
* {
   box-sizing: border-box !important;
}
button,
input,
optgroup,
select,
textarea {
   margin: 0;
   padding: 0;
   border: 0;
   vertical-align: middle;
   color: inherit;
   font: inherit;
   background: transparent;
   text-align: inherit;
   text-transform: inherit;
}
button:disabled {
   opacity: 0.5;
   pointer-events: none;
}
button {
   cursor: pointer;
   transition: var(--transition);
}
input:focus {
   outline: none;
}
:root {
   --accent-color: #f62416;
   --muted-color: #666666;
   --text-color: #000000;
   --accent-bg: #e5e5e5;
   --transition: all 0.4s ease;
   --fs-title: 40px;
   --fs-main: 20px;
   --fs-sl: 16px;
   --swiper-navigation-size: 34px !important;
   --swiper-theme-color: var(--accent-color) !important;
}

body {
   font-family: "Stem";
   font-weight: 400;
   font-size: var(--fs-main);
   color: var(--text-color);
}
.container {
   max-width: 1325px;
   margin: 0 auto;
}
.sc-accent {
   background-color: var(--accent-bg);
}
/* MODALS */

.modal {
   position: fixed;
   left: 0;
   top: 0;
   display: flex;
   align-items: start;
   justify-content: center;
   width: 100%;
   height: 100%;
   background-color: rgba(62, 62, 62, 0.3);
   opacity: 0;
   backdrop-filter: blur(5px);
   visibility: hidden;
   overflow: auto;
   scrollbar-width: thin;
   transition: var(--transition);
}
.menu-modal {
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(62, 62, 62, 0.3);
   opacity: 0;
   backdrop-filter: blur(5px);
   visibility: hidden;
   overflow: auto;
   scrollbar-width: thin;
   transition: var(--transition);
}
.modal__content {
   position: relative;
   background-color: white;
   padding: 50px 60px;
   color: #000;
   margin: clamp(30px, 60px, 100px) 0;
   width: 850px;
   transition: all 0.5s ease;
   border-radius: 30px;
   transform: translateY(50px);
}
.modal__close-btn {
   cursor: pointer;
   position: absolute;
   right: 20px;
   height: 36px;
   width: 36px;
   display: flex;
   top: 20px;
}
.show {
   opacity: 1;
   z-index: 999999999999;
   visibility: visible;
   transform: translateY(0);
   transition: var(--transition);
}
.show .modal__content {
   transform: translate(0);
}
.modal__title {
   font-size: 30px;
   text-transform: uppercase;
   text-align: center;
   margin-bottom: 40px;
   font-weight: 500;
}

.modal {
}
.modal__content {
}
.modal__close-btn {
}
.modal__form {
   width: 70%;
   margin: 0 auto;
}
.modal__form-items {
   display: flex;
   flex-direction: column;
   row-gap: 20px;
   margin-bottom: 0 !important;
}
.modal__form-inputbox {
}
.custom-input {
   width: 100%;
   height: 70px;
   border: 2px solid var(--muted-color);
   font-weight: 500;
   transition: var(--transition);
   border-radius: 16px;
   padding: 5px 20px;
   color: var(--text-color);
}
.custom-input:focus {
}
.modal__form-submit {
   margin-top: 10px;
   height: 70px;
   justify-content: center;
   width: 100% !important;
   width: unset;
   align-items: center;
   padding: 5px 10px;
}
.regular-button {
}
.modal__form-agreement {
   text-align: center;
   font-size: var(--fs-sl);
}
.agreement {
   font-size: var(--fs-sl);
   position: relative;
   text-align: end;
   top: -50px;
}
.modal__form-agreement > a,
.agreement > a {
   text-decoration: underline;
}
.modal__form-agreement > b,
.agreement > b {
   font-weight: 500;
}
.modal__form-agreement > a:hover,
.agreement > a:hover {
   text-decoration: none;
}

.menu-modal {
}
.menu-modal__content {
   background: #fff;
   width: max-content;
   right: 0;
   top: 0;
   color: #000;
   position: absolute;
   height: 100%;
   padding: 80px 60px 20px 60px;
}
.modal__close-btn {
}
.menu-modal__navigation {
   margin-bottom: 50px;
}
.menu-modal__mob-additionals {
   display: none;
}
.menu-modal__navigation-list {
   display: flex;
   flex-direction: column;
   align-items: center;
   row-gap: 5px;
}
.menu-modal__navigation-link {
   font-weight: 500;
}

.menu-modal__contacts {
   display: flex;
   flex-direction: column;
   row-gap: 30px;
   align-items: center;
}
.menu-modal__phones {
   display: flex;
   flex-direction: column;
   text-align: center;
   align-items: center;
   row-gap: 10px;
}
.menu-modal__phones-item {
   font-size: 22px;
   font-weight: 600;
   color: var(--accent-color);
}

.header {
   padding: 70px 0 0 0;
   transition: var(--transition);
}
body:not(.home) .header {
   background-color: #fff !important;
   border-bottom: 1px solid rgba(196, 196, 196, 1);
   padding-bottom: 20px;
}
.sc-accent {
}
.container {
}
.header__inner {
   display: flex;
   justify-content: space-between;
   gap: 50px;
}
.header__left {
   display: flex;
   align-items: center;
   gap: 50px;
}
.logo {
   width: 180px;
   display: flex;
}
.logo--header {
}
.header__rating {
}
.header__rating-stars {
   display: flex;
}
.header__raing-text {
   font-size: var(--fs-sl);
}
.header__raing-text span,
.address__text span {
   color: var(--muted-color);
}
.header__right {
   display: flex;
   gap: 50px;
}
.address {
   display: flex;
   font-size: var(--fs-sl);
   align-items: center;
   gap: 5px;
}
.address__icon {
   /* display: flex; */
   width: 24px; /* height: auto; */
}
.address__text {
   line-height: 18px;
}
.header__actions {
   display: flex;
   align-items: center;
   gap: 25px;
}
.socials {
   display: flex;
   align-items: center;
   gap: 15px;
}
.socials__item {
   width: 40px; /* padding: 0px; */
   display: flex;
   border-radius: 50px;
   overflow: hidden;
}
.header__burger-btn {
   width: 40px;
   height: 40px;
}
.main {
}
.hero {
   position: relative;
   padding: 80px 0;
   overflow: hidden;
}
.hero__inner {
}
.hero__text {
   width: 50%; /* z-index: 12; */
}
.hero__title {
   margin-bottom: 50px;
}
.hero__title,
.hero__benefits,
.hero__buttons {
   position: relative;
   z-index: 1;
}
.sc-title {
   font-size: var(--fs-title);
   text-transform: uppercase;
}
.sc-title--end {
   text-align: end;
}
.sc-title span {
   color: var(--accent-color);
}
.hero__img {
   position: absolute;
   right: 0;
   top: -50px;
}
.hero__benefits {
   display: flex;
   margin-bottom: 50px;
   gap: 50px;
}
.hero__benefit {
   display: flex;
   align-items: center;
   gap: 20px;
}
.hero__benefit-icon {
}
.hero__benefit-text {
   text-transform: uppercase;
   display: flex;
   color: var(--muted-color);
   flex-direction: column;
   font-weight: 500;
}
.hero__benefit-text span {
   color: var(--text-color);
}
.hero__buttons {
}
.buttons {
   display: flex;
   align-items: center;
   gap: 40px;
}
.regular-button {
   display: flex;
   width: max-content;
   text-transform: uppercase;
   color: #fff;
   border: 2px solid var(--accent-color);
   background: var(--accent-color);
   font-size: var(--fs-sl);
   font-weight: 600;
   box-sizing: border-box;
   transition: var(--transition);
   padding: 20px 22px;
   border-radius: 50px;
}
.regular-button--secondary {
   border-color: #3e3e3e;
   background: #3e3e3e;
}
.regular-button:hover {
   background-color: transparent;
   color: var(--accent-color);
}
.regular-button--secondary:hover {
   color: #3e3e3e;
}

.benefits {
}
.sc-padding {
   padding: 80px 0;
}
.container {
}
.sc-inner {
}
.sc-title {
}
.benefits__title {
}
.benefits__img {
   display: flex;
}
.benefits__img-icon {
   display: none;
}
.benefits__bottom {
   margin-top: 70px;
   display: flex;
   gap: 70px;
}
.benefits__bottom-item {
   display: flex;
   gap: 10px;
}
.benefits__bottom-item-icon {
   /* display: flex; */
   min-width: 44px;
   max-width: 44px;
}
.benefits__bottom-item-text {
   font-size: var(--fs-sl);
}
.benefits__bottom-item-text span {
   color: var(--text-color);
   font-weight: 600;
}

.selection {
}
.sc-heading {
   margin-bottom: 60px;
}
.sc-title {
}
.sc-title--end {
}
.selection__grid {
}
.selection__grid-row {
   display: flex;
}
.selection__grid-col:not(:last-child) {
   border-right: 1px solid rgba(196, 196, 196, 1);
   padding-right: 60px;
   width: 25%;
}
.selection__grid-col:not(:first-child) {
   padding-left: 60px;
}
.amoforms_iframe {
   width: 100% !important;
   max-width: none !important;
   margin-bottom: 0 !important;
}
.thanks {
   padding: 100px 0 250px;
}
.thanks h1 {
   margin-bottom: 20px;
   text-align: start;
}
.thanks__subtitle {
   text-transform: uppercase;
   margin-bottom: 30px;
}

.selection__grid-title {
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 90px;
}
.selection__grid-col:last-child .selection__grid-title {
   color: var(--muted-color);
}
.selection__grid-logos {
   display: grid;
   grid-template-columns: 1fr 1fr;
   /* align-items: center; */
   gap: 50px 20px;
}
.selection__grid-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   object-position: center;
}
.selection__grid-logo {
   /* display: flex; */
   /* max-width: 100px; */
}
.selection__grid-note {
   font-size: var(--fs-sl);
   color: var(--muted-color);
   display: block;
   margin-top: 20px;
}
.sc-bottom {
   margin-top: 70px;
}
.regular-button {
}

.guarantee {
}
.guarantee__row {
   display: flex;
   align-items: center;
   gap: 32px;
}

.guarantee__items {
   display: flex;
   align-items: start;
   gap: 32px;
}
.guarantee__item {
   text-transform: uppercase;
   display: inline-flex;
   white-space: nowrap;
   font-weight: 500;
}
.guarantee__item span {
   color: var(--accent-color);
}
.guarantee__title {
   width: max-content;
   display: block;
   white-space: nowrap;
}

.g-lifetime {
}

.g-lifetime__body {
}
.g-lifetime__body-title {
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 44px;
}
.g-lifetime__items {
   display: flex;
   justify-content: space-between;
   gap: 20px;
}
.g-lifetime__item {
   display: flex;
   align-items: center;
   gap: 10px;
}
.g-lifetime__item-icon {
   display: flex;
}
.g-lifetime__item-text {
   font-size: var(--fs-sl);
   color: var(--muted-color);
}

.quality {
}
.container {
}
.sc-inner {
}
.sc-title {
}
.quality__title {
   margin-bottom: 50px;
}
.sc-title--end {
}
.quality__main {
}
.quality__main-row {
   display: flex;
   gap: 30px;
}

.quality__slider {
   width: 45%;
}
.quality__slider-main {
   margin-bottom: 40px;
}
.swiper {
}
.quality__slider-wrapper {
}
.swiper-wrapper {
}

.swiper-slide {
   transition: var(--transition);
}
.quality__slide-img {
   display: flex;
   justify-content: center;
   margin-bottom: 25px;
   cursor: grab;
}
.quality__slide-img:active {
   cursor: grabbing;
}
.quality__slide-personal {
}
.quality__slide-fullname {
   text-transform: uppercase;
   text-align: center;
   font-weight: 500;
   margin-bottom: 5px;
}
.quality__slide-descr {
   text-align: center;
   display: block;
   font-size: var(--fs-sl);
   color: var(--accent-color);
}
.quality__miniatures {
}
.quality__miniatures-slider {
}
.quality__miniatures-wrapper {
}
.quality__miniature {
   display: flex;
   cursor: pointer;
   transition: var(--transition);
}

.quality__miniature:not(.swiper-slide-thumb-active) {
   opacity: 0.5;
}

.infoblock {
}
.infoblock__row {
   display: flex;
   justify-content: space-between;
   gap: 20px;
}
.infoblock__item {
   display: flex;
   gap: 10px;
}
.infoblock__item-icon {
   /* display: flex; */
}
.infoblock__item-text {
   text-transform: uppercase;
   font-weight: 500;
   color: var(--accent-color);
   line-height: 24px;
}

.pasting {
}
.container {
}
.sc-inner {
}
.sc-heading {
}
.sc-title {
}
.sc-slider {
   width: 100%;
}
.sc-slider__row {
   display: flex;
   align-items: center;
   gap: 65px;
}
.sc-slider__row .swiper {
   width: 90%;
}
.pasting__slider {
}
.swiper {
}
.swiper-wrapper {
}
.error404 {
   min-height: 400px;
}
.inner-404 {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 30px;
   flex-direction: column;
   padding-top: 200px;
}
.pasting__slide {
}
.swiper-slide {
}
.pasting__slide-img {
   display: flex;
   margin-bottom: 30px;
}
.pasting__slide-text {
}
.pasting__slide-title {
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 10px;
}
.pasting__slide-title span {
   font-weight: 400;
}
.swiper-slide__price {
   color: var(--muted-color);
}
.swiper-slide__price-value {
   font-size: var(--fs-title);
}
.sc-slider__buttons {
   display: flex;
   flex-direction: column;
   gap: 20px;
}
.swiper-button {
   display: flex;
   width: 70px;
   margin: 0;
   transform: none;
   height: 70px;
   top: auto !important;
   left: auto !important;
   bottom: auto !important;
   right: auto !important;
   position: relative !important;
   border-radius: 50px;
   border: 3px solid var(--accent-color);
}
.swiper-button img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.swiper-button-next {
}

.cases__slide {
}

.cases__slide-img {
   display: flex;
   border-radius: 35px;
   overflow: hidden;
   margin-bottom: 35px;
}
.cases__slide-text {
   margin-bottom: 15px;
}
.cases__slide-title {
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 5px;
}
.cases__slide-descr {
   font-size: var(--fs-sl);
   color: var(--accent-color);
}
.swiper-slide__price {
}
.swiper-slide__price-value {
}

.cases__slide-button {
   margin-top: 25px;
}

.statistics {
}
.statistics__items {
   display: flex;
   justify-content: space-between;
}
.statistics__item {
}
.statistics__item-accent {
   font-size: 70px;
   font-weight: 700;
   white-space: nowrap;
   width: max-content;
}

.statistics__item-title {
   text-transform: uppercase;
   font-weight: 700;
   color: var(--accent-color);
}

.ownerinfo {
   position: relative;
   overflow: hidden;
   padding: 100px 0 110px;
}
.ownerinfo__inner {
   position: relative;
}
.ownerinfo__row {
   display: flex;
   justify-content: end;
}
.ownerinfo__img {
   position: absolute;
   bottom: -146px;
   left: 0;
}
.ownerinfo__text {
   width: 53%;
   position: relative;
}
.ownerinfo__details {
   margin: 50px 0 100px;
}
.ownerinfo__details-paragraphs {
   text-align: end;
   display: flex;
   flex-direction: column;
   gap: 20px;
   font-size: var(--fs-sl);
   margin-bottom: 50px;
}
.ownerinfo__details-fullname {
   text-transform: uppercase;
   text-align: end;
   font-weight: 500;
}
.ownerinfo__buttons {
   justify-content: end;
}

.footer {
   padding: 80px 0;
}
.footer__row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   margin-bottom: 50px;
}

.footer__phone {
   font-size: 36px;
}
.footer__right {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 50px;
}

.footer_bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-weight: 500;
   gap: 50px;
}
.footer__links {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 50px;
}
.footer__links-item {
   font-size: var(--fs-sl);
   color: var(--muted-color);
   transition: var(--transition);
   text-decoration: underline;
}
.footer__links-item:hover {
   color: var(--text-color);
   text-decoration: none;
}
.footer__disclaimer {
   font-size: var(--fs-sl);
   color: var(--muted-color);
}

body {
   padding-top: 110px;
}

header {
   position: fixed;
   width: 100%;
   left: 0;
   z-index: 99;
   transition: var(--transition);
   top: 0;
   padding-bottom: 20px;
}
header.scrolled {
   padding: 50px 0 20px;
   -webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
   -moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
   box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}
@media (max-width: 1540px) {
   .hero__img {
      right: -200px;
   }
}
@media (max-width: 1400px) {
   .container {
      padding: 0 20px;
   }
   .guarantee__row {
      flex-direction: column;
      align-items: start;
   }
   .guarantee__items br {
      display: none;
   }
}
@media (max-width: 1300px) {
   .hero__img {
      width: 950px;
      top: auto;
      bottom: 0;
   }
   .benefits__title {
      margin-bottom: 30px;
   }
   .sc-slider__row {
      gap: 30px;
   }
   .sc-padding,
   .footer {
      padding: 70px 0;
   }
   .footer_bottom {
      flex-direction: column;
      gap: 30px;
   }
   .statistics__item-accent {
      font-size: 65px;
   }
   :root {
      --fs-title: 36px;
   }
}
@media (max-width: 1170px) {
   .statistics__item-accent {
      font-size: 55px;
   }
   .selection__grid-logos {
      grid-template-columns: 1fr 1fr 1fr;
   }
   .selection__grid-col:nth-child(2) {
      border-right: none;
   }
   :root {
      --fs-main: 18px;
      --swiper-navigation-size: 26px !important;
   }
   .sc-slider__row {
      flex-direction: column;
      position: relative;
   }
   .sc-slider__row .swiper {
      width: 85%;
   }
   .sc-slider__buttons {
      flex-direction: row-reverse;
      position: absolute;
      justify-content: space-between;
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
   }
   .swiper-button {
      width: 60px;
      height: 60px;
      border-width: 2px;
   }
   .hero__text {
      width: 60%;
   }
   .selection__grid-row {
      flex-wrap: wrap;
      row-gap: 50px;
   }
   .selection__grid-col {
      flex-basis: 50%;
   }
   .selection__grid-col:nth-child(odd) {
      padding-left: 0;
   }
}
@media (max-width: 1099px) {
   .infoblock__row {
      flex-direction: column;
      align-items: start;
   }
   .header__inner {
      gap: 20px;
   }
   .infoblock__item {
      align-items: center;
   }
   .infoblock__item br {
      display: none;
   }
   .footer__phone {
      font-size: 30px;
   }
   .logo {
      width: 160px;
   }
   .hero__img {
      width: 900px;
   }
   .g-lifetime__items {
      flex-wrap: wrap;
      justify-content: start;
   }
   .quality__slider {
      width: 40%;
   }
   .ownerinfo__img {
      width: 480px;
   }
   .ownerinfo__details {
      margin: 50px 0 60px;
   }
   .ownerinfo__text {
      width: 60%;
   }
   .statistics__item-accent {
      font-size: 50px;
   }
}
@media (max-width: 992px) {
   .sc-slider__buttons {
      position: relative;
      justify-content: center;
      top: auto;
      transform: none;
      left: auto;
   }
   .agreement {
      text-align: start;
   }
   .quality__img {
      width: 100%;
   }
   .sc-slider__row .swiper {
      width: 100%;
   }
   .sc-padding,
   .footer {
      padding: 60px 0;
   }
   .quality__main-row {
      flex-direction: column;
      align-items: center;
   }
   .quality__slider-main {
      margin-bottom: 20px;
   }
   .sc-title--end {
      text-align: start;
   }
   .sc-title br {
      display: none;
   }
   .ownerinfo__img {
      position: relative;
      top: auto;
      left: auto;
      margin: 0 auto;
      bottom: -20px;
   }
   .ownerinfo__row {
      flex-direction: column-reverse;
      row-gap: 50px;
   }
   .ownerinfo {
      padding-bottom: 0 !important;
   }
   .ownerinfo__text {
      width: 100%;
   }
   .ownerinfo__details-paragraphs,
   .ownerinfo__details-fullname {
      text-align: start;
   }
   .ownerinfo__buttons {
      justify-content: start;
   }
   .ownerinfo__details {
      margin: 40px 0;
   }
   .selection__grid-title {
      margin-bottom: 50px;
   }
   .sc-bottom {
      margin-top: 50px;
   }
   .hero__img {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
   }
   .hero__title br {
      display: none;
   }
   .hero__text {
      width: 100%;
   }
   .benefits__bottom {
      flex-direction: column;
      gap: 30px;
   }
   .quality__slider {
      width: 100%;
   }
   .quality__main-row {
      row-gap: 50px;
   }
   .footer__row {
      flex-wrap: wrap;
      margin-bottom: 35px;
   }
   .footer__right {
      width: 100%;
      justify-content: space-between;
   }
   .footer__links {
      flex-direction: column;
      row-gap: 20px;
   }
   .footer__row {
      row-gap: 40px;
   }
   .modal__content {
      width: 96%;
   }
}
@media (max-width: 899px) {
   .header .address,
   .header .header__rating {
      display: none;
   }
   .guarantee__items {
      flex-wrap: wrap;
      row-gap: 16px;
   }
   header.scrolled {
      padding: 40px 0 20px;
   }
   .g-lifetime__items {
      justify-content: center;
   }
   .g-lifetime__item {
      flex-basis: calc(50% - 20px);
   }

   .menu-modal .header__rating,
   .menu-modal .address {
      display: flex;
      font-size: 18px;
   }
   .menu-modal__mob-additionals {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
   }
   .header__raing-text,
   .menu-modal__navigation-link {
      font-size: 20px;
   }
   .menu-modal__content {
      width: 100%;
   }
   .address__text br {
      display: none;
   }
   .header__rating {
      align-items: center;
      flex-direction: column;
      row-gap: 5px;
   }
}
@media (max-width: 767px) {
   .regular-button {
      flex-grow: 1;
      text-align: center;
      justify-content: center;
   }
   .inner-404 {
      padding-top: 100px;
   }
   .selection__grid-col {
      width: 100% !important;
   }
   .selection__grid-logos {
      grid-template-columns: repeat(4, 1fr);
   }
   body {
      padding-top: 90px;
   }
   header.scrolled {
      padding: 30px 0 20px;
   }
   .guarantee__title {
      width: auto;
      white-space: wrap;
   }
   .modal__content {
      padding: 50px 40px;
   }
   .modal__form {
      width: 90%;
   }
   .selection__grid-row {
      flex-direction: column;
   }
   .selection__grid-col {
      padding-left: 50px !important;
      padding-right: 50px !important;
      align-items: center;
      display: flex;
      flex-direction: column;
   }
   .selection__grid-logos {
      gap: 30px;
   }
   .selection__grid-col:last-child .selection__grid-title {
      margin-bottom: 0;
   }
   .selection__grid-col:not(:last-child) {
      border-bottom: 1px solid rgba(196, 196, 196, 1);
      padding-bottom: 20px;
   }
   .selection__grid-col {
      border-right: none !important;
   }
   .selection__grid-logo {
      justify-content: center;
   }
   .sc-bottom {
      width: 100%;
      display: flex;
   }
   .hero {
      padding-bottom: 50px;
   }

   .g-lifetime__items {
      justify-content: start;
   }
   .sc-heading {
      margin-bottom: 40px;
   }
   .statistics__item-accent {
      font-size: 40px;
   }
   .header {
      padding-top: 50px;
   }
   .hero__title {
      margin-bottom: 30px;
   }
   .menu-modal__content {
      width: 100%;
   }
   .menu-modal__navigation-link {
      font-size: 18px;
   }
   .modal__close-btn {
      width: 30px;
      height: 30px;
      top: 15px;
      right: 15px;
   }
   :root {
      --fs-main: 16px;
      --fs-title: 32px;
   }
   .statistics__items {
      flex-wrap: wrap;
      gap: 40px;
   }
   .hero__benefits {
      justify-content: space-between;
   }
   .statistics__item {
      flex-basis: calc(50% - 40px);
   }
   .sc-padding,
   .footer {
      padding: 50px 0;
   }
   .cases__slide-img {
      margin-bottom: 25px;
   }
   .cases__slide-button {
      margin-top: 20px;
   }
}
@media (max-width: 620px) {
   .buttons {
      flex-direction: column;
      width: 100%;
      gap: 20px;
   }
   .hero__benefits {
      gap: 10px;
   }
   .regular-button {
      width: 100%;
   }
   .benefits__bottom-item-icon {
      min-width: 34px;
      min-height: 34px;
      max-width: 34px;
   }
   .benefits__bottom-item-text br {
      display: none;
   }
   .benefits__bottom-item {
      align-items: center;
   }
   .hero__benefit-icon {
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: end;
   }
   .menu-modal__mob-additionals {
      row-gap: 15px;
   }
   .ownerinfo__img {
      width: 350px;
   }
   .ownerinfo__row {
      row-gap: 0;
   }
   .selection__grid-logos {
      grid-template-columns: 1fr 1fr 1fr;
   }
}
@media (max-width: 520px) {
   .footer__phone {
      width: 100%;
      display: flex;
      text-align: center;
      justify-content: center;
   }
   .agreement {
      text-align: center;
   }
   .benefits__img-icon {
      display: block;
      width: 32px;
      position: absolute;
      right: 0;
      bottom: 0;
   }
   .selection__grid-logos {
      grid-template-columns: 1fr 1fr;
   }

   @keyframes swipeLeft {
      from {
         right: 0;
         opacity: 1;
      }
      to {
         right: 50%;
         opacity: 0;
      }
   }

   .benefits__img-icon.animate {
      animation: swipeLeft 2.5s cubic-bezier(1, 0.3, 0.5, 8) 3 forwards;
   }

   .benefits__img {
      width: 200%;
   }
   .benefits__img-wrapper {
      overflow-x: auto;
      scrollbar-width: thin;
      position: relative;
      padding-bottom: 52px;
      display: flex;
      flex-direction: column;
      scrollbar-color: var(--accent-color) #fff;
   }
   .hero__img {
      width: 185%;
      left: -42%;
   }
   .hero__title {
      margin-bottom: 0;
   }
   .sc-bottom {
      margin-top: 40px;
   }
   .sc-heading {
      margin-bottom: 30px;
   }
   .guarantee__row {
      row-gap: 30px;
   }
   .benefits__bottom-item {
      flex-direction: column;
      text-align: center;
   }
   .selection__grid-title,
   .selection__grid-note,
   .g-lifetime__item-text {
      text-align: center;
   }
   .selection__grid-logo {
      width: 140px;
      margin: 0 auto;
   }
   .modal__content {
      padding: 40px 30px;
   }
   .modal__form {
      width: 100%;
   }
   .custom-input,
   .modal__form-submit {
      height: 65px;
   }
   .container {
      padding: 0 15px;
   }
   .hero__benefits {
      flex-direction: column;
      gap: 20px;
   }
   .hero__benefit {
      gap: 10px;
   }
   .hero__benefits {
      margin-bottom: 40px;
   }
   .hero__benefit-icon {
      min-width: 40px;
      max-width: 40px;
      height: 40px;
      justify-content: center;
   }
   .hero__benefit-text {
      display: block;
   }
   .hero__benefit-text br {
      display: none;
   }
   .footer__right {
      flex-direction: column-reverse;
      row-gap: 20px;
   }
   .footer__phone {
      font-size: 26px;
   }
   .footer__row {
      row-gap: 25px;
      justify-content: center;
   }
   .footer__logo {
      margin-bottom: 15px;
   }
   .address__icon {
      width: 18px;
   }
   .header__raing-text,
   .menu-modal__navigation-link,
   .address__text {
      font-size: 16px;
   }
   .swiper-button {
      width: 50px;
      height: 50px;
   }
   :root {
      --swiper-navigation-size: 24px !important;
      --fs-title: 28px;
   }
   .quality__slide-img {
      margin: 0 auto;
      margin-bottom: 25px;
      width: 90%;
   }
   .infoblock__item {
      text-align: center;
      flex-direction: column;
   }
   .sc-title:not(.hero__title),
   .g-lifetime__body-title {
      text-align: center;
   }

   .guarantee__item {
      white-space: wrap;
      justify-content: center;
      width: 100%;
      text-align: center;
   }
   .statistics__item-accent {
      width: 100%;
      text-align: center;
   }
   .statistics__item {
      width: 100%;
      text-align: center;
   }
   .statistics__items {
      flex-direction: column;
      align-items: center;
   }
   .statistics__item-accent {
      font-size: 36px;
   }
   .ownerinfo__details-paragraphs,
   .ownerinfo__details-fullname {
      text-align: center;
   }
   .footer__phone {
      font-weight: 500;
   }
   .pasting__slide-img {
      justify-content: center;
   }
   .pasting__slide-title,
   .swiper-slide__price,
   .cases__slide-text {
      text-align: center;
   }
   .cases__slide-img {
      width: 100%;
      height: 250px;
   }
   .cases__slide-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
   }
   .socials__item {
      width: 34px;
   }

   .g-lifetime__item {
      flex-direction: column;
   }
   .g-lifetime__item-icon {
      width: 34px;
   }
   .modal__title {
      font-size: 24px;
   }
   .modal__content {
      border-radius: 20px;
   }
}
@media (max-width: 440px) {
   .address {
      flex-direction: column;
   }
   body {
      padding-top: 80px;
   }
   header.scrolled {
      padding-bottom: 10px;
   }
   .footer__row {
      row-gap: 20px;
   }
   .menu-modal__contacts {
      row-gap: 20px;
   }
   .modal__close-btn {
      top: 10px;
      right: 10px;
   }
   .modal__title {
      font-size: 22px;
   }
   .footer__disclaimer {
      text-align: center;
   }
   .modal__content {
      padding: 40px 25px;
   }
   .address__text {
      text-align: center;
   }
   .sc-bottom {
      margin-top: 35px;
   }
   .footer__right {
      row-gap: 30px;
   }
   .quality__slide-img {
      width: 70%;
   }
   .menu-modal__mob-additionals {
      row-gap: 20px;
   }
   .logo {
      width: 140px;
   }
   :root {
      --fs-sl: 14px;
   }
   .header {
      padding-top: 40px;
   }
   .g-lifetime__item-text,
   .ownerinfo__details-paragraphs,
   .benefits__bottom-item-text {
      font-size: 16px;
   }
   .benefits__bottom-item-icon {
      max-width: 30px;
      min-width: 30px;
      max-height: 30px;
   }
   .benefits__bottom {
      margin-top: 40px;
   }
}
@media (max-width: 399px) {
   :root {
      --fs-title: 24px;
   }
   .g-lifetime__item-icon {
      width: 30px;
   }
   .selection__grid-logo {
      width: 100px;
   }
   .modal__title {
      font-size: 20px;
   }
   .modal__form-items {
      row-gap: 10px;
   }
   .header .socials {
      display: none;
   }
   .hero {
      padding-top: 55px;
   }
   .container {
      padding: 0 10px;
   }
   .benefits__bottom {
      margin-top: 30px;
   }
   .selection__grid-title {
      margin-bottom: 30px;
   }
   .ownerinfo__img {
      width: 280px;
   }
}
