@charset "UTF-8";

@import url("/assets/template/fonts/Unbounded_and_Monserrat.css");

:root {
  --theme-color: #75bd50;
  --theme-rgb: 250, 76, 77;
}

body {
  font-family: "Montserrat", "Arial", sans-serif;
  overflow-x: hidden !important;
  color: #655a78;
}
body.modal-open {
  padding-right: 0px !important;
}
body.modal-open .navbar {
  padding-right: 0px !important;
}

.hidden {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
  font-family: "Unbounded", "Arial", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}


h1, .h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h2, .h2 { font-size: clamp(1.6rem, 3.1vw, 2.2rem); }
h3, .h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4, .h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h5, .h5 { font-size: clamp(1rem, 1.5vw, 1.15rem); }
h6, .h6 { font-size: clamp(0.92rem, 1.2vw, 1rem); }

.btn,
.btn:focus,
button,
button:focus {
  outline: none !important;
}

a {
    text-decoration: none !important;
    outline: none;
    color: var(--theme-color) !important;
}
a:hover {
    color: #6c757d !important;
}
#sale a {
    color: var(--theme-color) !important;
    border-bottom:1px solid var(--theme-color) ;
}
#sale a:hover {
    border-bottom:1px solid #6c757d ;
    color: #6c757d !important;
}
p {
  font-size: 15px;
  line-height: 25px;
}

html {
  scroll-padding-top: 110;
  /* height of sticky header */
  scroll-behavior: smooth;
}

.row > * {
  position: relative;
}

.block {
    display: block;
}
@media (max-width: 768px) {
  .align-items-center {
    display: inherit;
  }

  .navbar-custom {
    margin-top: 0px;
    padding: 10px 0px !important;
    background-color: #655a78 !important;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
    color: #ffffff !important;
  }

  .navbar-toggler i {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #655a78;
  }

  .bg-home {
    height: auto;
  }

  .nav-sticky.navbar-custom .navbar-nav li a {
    color: #ffffff !important;
  }

  .nav-sticky .logo {
    color: #ffffff !important;
  }

  .navbar-custom > .container {
    width: 90%;
  }


}

.text-primary {
  color: var(--theme-color) !important;
}

.bg-primary {
  background-color: var(--theme-color) !important;
}

.text-success {
  color: #f0b000 !important;
}

.bg-success {
  background-color: #229bee !important;
}

.text-info {
  color: #229bee !important;
}

.bg-info {
  background-color: #229bee !important;
}

.text-warning {
  color: #e7bc2f !important;
}

.bg-warning {
  background-color: #e7bc2f !important;
}

.text-danger {
  color: #f72b2b !important;
}

.bg-danger {
  background-color: #f72b2b !important;
}

.text-light {
  color: #f5f7fa !important;
}

.bg-light {
  background-color: #f5f7fa !important;
}

.text-dark {
  color: #655a78 !important;
}

.bg-dark {
  background-color: #655a78 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative !important;
}

.section.pb-0{
    padding-bottom: 0;
}

.para-p {
  max-width: 650px;
}

/*** ani-bg ***/
@keyframes ani-bg {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(200px);
  }
}
.box-shadow {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
}

hr {
  border-top: 1px solid #9d9d9d;
  margin: 0;
}

.lh-1 {
  letter-spacing: 1px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
}

.f-19 {
  font-size: 19px;
}

.f-20 {
  font-size: 20px;
}

.f-21 {
  font-size: 21px;
}

.f-22 {
  font-size: 22px;
}

.f-23 {
  font-size: 23px;
}

.f-24 {
  font-size: 23px;
}

.f-30 {
  font-size: 30px;
}

.f-36 {
  font-size: 36px;
}


.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.border-radius {
  border-radius: 6px !important;
}

.title-border {
  width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--theme-color), transparent);
  margin: 0 auto;
}

.hero-sub {
  animation-name: moveInleft;
  animation-duration: 3s;
}

.hero-heading {
  animation-name: moveInRight;
  animation-duration: 3s;
}

@keyframes moveInleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  border-color: rgba(0, 0, 0, 0.125);
  padding: 0px 5px;
  color: #adb5bd;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
  }
}
.bg-overlay {
  background-color: rgba(74, 74, 74, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.align-items-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.btn-rounded {
  border-radius: 5px;
}

.btn {
  padding: 11px 28px;
  font-size: 13px;
  letter-spacing: 0.9px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn.zapis {
    font-size: 16px;
}

.btn-sm {
  padding: 10px 22px;
}

.title-heading {
  font-weight: 700;
}

.title h1 {
  position: absolute;
  color: rgba(0, 0, 0, 0.1);
  left: 0px;
  right: 0px;
  top: -45px;
}

.btn-lg {
  padding: 14px 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.5s;
  border: 1px solid var(--theme-color);
  overflow: hidden;
  position: relative;
}

@media (max-width: 992px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.btn {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.5s;
  border: 1px solid var(--theme-color);
  overflow: hidden;
  position: relative;
}

.btn-sm {
  padding: 8px 25px;
  font-size: 14px;
}

.btn-primary {
  background: var(--theme-color);
  border-color: var(--theme-color) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.focus, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-primary {
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.focus, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-success {
  background: #0fbd1b;
  border-color: #0fbd1b !important;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.focus, .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-success {
  color: #0fbd1b;
  border-color: #0fbd1b;
}
.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.focus, .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-info {
  background: #229bee;
  border-color: #229bee !important;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.focus, .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-info {
  color: #229bee;
  border-color: #229bee;
}
.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.focus, .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-warning {
  background: #e7bc2f;
  border-color: #e7bc2f !important;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.focus, .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-warning {
  color: #e7bc2f;
  border-color: #e7bc2f;
}
.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.focus, .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-danger {
  background: #f72b2b;
  border-color: #f72b2b !important;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.focus, .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-danger {
  color: #f72b2b;
  border-color: #f72b2b;
}
.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.focus, .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-light {
  background: #f5f7fa;
  border-color: #f5f7fa !important;
}
.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .btn-light.focus, .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-light {
  color: #f5f7fa;
  border-color: #f5f7fa;
}
.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.focus, .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-dark {
  background: #655a78;
  border-color: #655a78 !important;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .btn-dark.focus, .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-dark {
  color: #655a78;
  border-color: #655a78;
}
.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.focus, .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-white {
  background: #ffffff;
  border-color: #ffffff !important;
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .btn-white.focus, .btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white .open > .dropdown-toggle.btn-primary {
  background-color: #655a78;
  border: 1px solid #655a78 !important;
}

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active, .btn-outline-white.active, .btn-outline-white.focus, .btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled):active:focus,
.btn-outline-white .open > .dropdown-toggle.btn-primary {
  background-color: #655a78 !important;
  color: #ffffff;
  border-color: #655a78;
}

.btn-white:hover {
  background: #ffffff !important;
}

/**********************NAVBAR***********************/
.navbar {
  transition: all 0.5s ease;
  padding: 0;
  background-color: transparent;
  padding: 15px 0;
}
.navbar .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  background-color: transparent;
  padding: 28px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:active, .navbar .navbar-nav .nav-link.active {
  color: var(--theme-color);
}
.navbar .navbar-nav .nav-link.phone{
  color: var(--theme-color);
  font-size: clamp(13px, 1.2vw, 18px);
  padding: 25px 20px;
  white-space: nowrap;
  line-height: 1.2;
}
.navbar .navbar-toggler {
  padding: 0px;
  border: none;
  font-size: 24px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .logo .logo-light {
  display: inline-block;
}
.navbar .logo .logo-dark {
  display: none;
}

.nav-white .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.nav-white .navbar-nav .nav-link:hover, .nav-white .navbar-nav .nav-link:active, .nav-white .navbar-nav .nav-link.active {
  color: var(--theme-color);
}


.dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
  color: var(--theme-color);
  background-color: #ffffff;
}

.dropdown-menu-end[data-bs-popper] {
  right: -100px;
}

.nav-sticky.navbar {
  background: #ffffff;
  margin-top: 0px;
  box-shadow: 0px 3px 10px 0px rgba(63, 58, 100, 0.08);
  padding: 0;
}
.nav-sticky .nav-link {
  color: rgba(63, 58, 100, 1) !important;
}
.nav-sticky .nav-link.nav-link.phone {
  color: var(--theme-color) !important;
}
.nav-sticky .nav-link:hover, .nav-sticky .nav-link.active, .nav-sticky .nav-link:active {
  color: var(--theme-color) !important;
}
.nav-sticky .header-item {
  color: #655a78;
}

.nav-sticky .nav-brand-logo .logo-dark {
  display: inline-block;
}
.nav-sticky .nav-brand-logo .logo-light {
  display: none;
}

.arrow-down {
  display: inline-block;
}
.arrow-down:after {
  border-color: initial;
  border-style: solid;
  border-width: 0 0 1px 1px;
  content: "";
  height: 0.4em;
  display: inline-block;
  right: 5px;
  top: 50%;
  margin-left: 10px;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: top;
  transition: all 0.3s ease-out;
  width: 0.4em;
}
@media (max-width: 992px) {
  .arrow-down::after {
    right: 30px;
    position: absolute;
  }
}

@media (max-width: 768px) {
  .navbar {
    margin-top: 0px;
  }

  .top-bar {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .container-fluid {
    padding-right: 150px;
    padding-left: 150px;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 12px 15px;
  }

  .navbar-collapse {
    max-height: 400px;
    padding: 0;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 70px;
    background: #ffffff;
    box-shadow: 0px 8px 8px -6px rgba(63, 58, 100, 0.08);
  }

  .navbar {
    background-color: #ffffff !important;
    padding: 16px 0;
  }

  .nav-sticky.navbar {
    padding: 16px 0;
  }

  .language {
    display: block;
  }

  .nav-white .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.8);
  }

}
textarea.form-control {
  min-height: calc(3.5em + 1.75rem + 5px);
}

@media (min-width: 200px) and (max-width: 1024px) {
  .navbar-custom {
    margin-top: 0px;
    padding: 10px 0px !important;
    color: #ffffff !important;
    background: #ffffff;
  }
  .navbar-custom .navbar-nav {
    margin-left: 0px;
  }
  .navbar-custom .navbar-nav li.active {
    border-color: transparent;
  }
  .navbar-custom .navbar-nav li a {
    transition: all 0.4s;
    margin: 6px;
    color: #655a78 !important;
    padding: 6px 0;
  }
  .navbar-custom > .container {
    width: 90%;
  }

  .home-title {
    font-size: 36px;
  }

  .navbar-white .navbar-toggler {
    color: #655a78 !important;
  }

  .navbar-custom .navbar-nav li.active a,
.navbar-custom .navbar-nav li a:hover,
.navbar-custom .navbar-nav li a:active {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }

  .carousel-indicators {
    right: 0;
  }

  .logo .logo-light {
    display: none;
  }

  .logo .logo-dark {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (max-width: 768px) {
  .PageBackToWork-heading-itText {
    display: inline-block;
    font-size: 50px;
  }
}
.home {
  position: relative;
  padding: 120px 0 0 0;
  display: flex;
  align-items: center;
  border-bottom:1px dashed rgba(157, 157, 157, 0.2);
}
.home .home-content .title {
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  font-weight: 700;
}
.home #home-animation {
  position: relative;
  width: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
  padding: 20px 20px 0;
}
.home #ani-round {
  position: relative;
  width: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 60% 50%;
}

.hero-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 560px;
}

.hero-rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: #2b2b2b;
  transition: box-shadow .2s ease, transform .2s ease;
  min-height: 56px;
}

.hero-rating-item img {
  width: auto;
  max-width: 100%;
  height: 30px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.hero-rating-item span {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.kmn-strong {
  font-weight: 900;
}

.back-nav-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 50px !important;
}

.back-nav-btn,
.back-nav-btn:hover,
.back-nav-btn:focus,
.back-nav-btn:active {
  color: #ffffff !important;
  background: var(--theme-color) !important;
  border: 1px solid var(--theme-color) !important;
  box-shadow: none !important;
}

/* Consistent spacing for section headings */
.section .heading > h2 {
  margin-bottom: 1.5rem !important;
}

.section .heading > .h5 {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

#part1 h3,
#part2 h3,
#part3 h3 {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

.get-link a {
  text-decoration: none !important;
}

.get-link a{
  position: relative;
  display: inline-block;
  padding: 3px 0;
  letter-spacing: 1px;
}

.get-link a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.get-link a:hover::after,
.get-link .current a::after{
  transform: scaleX(1);
}

.modal .modal-content .form-control {
  padding: 0.7rem 0.75rem;
}

@media (max-width: 1200px) {
  .home #imgcontainer {
    left: -20px;
  }
  .home .demo-overlay {
    padding: 13em 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .home #imgcontainer {
    left: 0px !important;
  }
  .home .demo-overlay {
    padding: 20em 0 !important;
  }
}
.typewrite > .wrap {
  border-right: 0.08em solid #000000 !important;
}

.gradient-bg {
  background: linear-gradient(to left, #bbe1dc 42%, #f5f5f7 42%);
}


/*** ani-bg ***/
@keyframes ani-bg {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(200px);
  }
}

#ani-home {
  position: relative;
  width: 100%;
  background-image: url(../images/home/home-6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}

@media (max-width: 992px) {
  .home {
    padding: 75px 0 0 0;
  }

  .gradient-bg {
    background: linear-gradient(to left, #bbe1dc 0%, #f5f5f7 50%);
  }
  .home .home-content .title {
    font-size: 30px;
    font-weight: 700;
}
}


.service-box .button-link a {
  color: #9d9d9d;
}
.service-box .button-link :hover {
  color: var(--theme-color);
}

#imgcontainer-1, #imgcontainer-3 {
  position: absolute;
  width: 100%;
  top: -90px;
  perspective: 30px;
  left: -50px;
}

#inner-2, #inner-4 {
  transition: transform 0.5s;
}

.demo-img {
  background-image: url(../images/home-animation-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  filter: blur(10px);
}

.sec-image img {
  position: relative;
  z-index: 999;
}

#sec-image:hover {
  cursor: pointer;
}

.demo-overlay {
  width: 100%;
  padding: 16em 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s;
}

.youtube-icon {
  position: absolute;
  top: 40%;
  left: 45%;
}

.sec-image .bg-img img {
  max-width: 100%;
  height: auto;
  transition: all 2s;
}
.sec-image .bg-img img:hover {
  transform: scale(1.1);
}

.features-2 {
  padding: 70px 0;
}

#imgcontainer-2 {
  position: absolute;
  width: 100%;
  top: -100px;
  perspective: 30px;
  left: -50px;
}

#inner-3 {
  transition: transform 0.5s;
}

.demo-img-2 {
  background-image: url(../images/home-animation-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  filter: blur(10px);
}

.sec-image-2 img {
  position: relative;
  z-index: 999;
}

#sec-image-2:hover {
  cursor: pointer;
}

.demo-overlay {
  width: 100%;
  padding: 16em 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s;
}

.youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20px, -40px);
  z-index: 999;
}

.sec-image .bg-img img {
  max-width: 100%;
  height: auto;
  transition: all 2s;
}
.sec-image .bg-img img:hover {
  transform: scale(1.1);
}

.modal .modal-dialog .btn-close {
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal .modal-dialog:hover .btn-close {
  opacity: 0.5;
}

@media (max-width: 992px) {
  #imgcontainer, #imgcontainer-2, #imgcontainer-3 {
    left: 0;
  }

  .features-2 {
    padding: 40px 0;
  }

  .demo-img, .demo-img-2 {
    display: block;
  }
}
.testi-slider {
  background-color: #f8f8f8;
}
.testi-slider .swiper-slide {
  text-align: start;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0.6;
  background-color: #ffffff;
  min-height: 400px
}
.testi-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.testi-slider .swiper-pagination-custom,
.testi-slider .swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 100%;
}
.testi-slider .swiper-slide-active {
  background-color: #ffffff;
  opacity: 1;
}
.testi-slider .section-bottom-shape-two {
  position: absolute;
  top: -45%;
  right: 0;
}
.testi-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}
.testi-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #000000 !important;
  width: 12px;
  height: 12px;
  vertical-align: middle !important;
}

@media (max-width: 1320px) {
  .testi-slider .section-bottom-shape-two {
    top: -40%;
  }
}
@media (max-width: 992px) {
  .testi-slider .section-bottom-shape-two {
    display: none;
  }
}


.cta-2 {
  background-color: #f4f4f4;
}

#cta-footer {
  position: relative;
  width: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}

@media (max-width: 992px) {
  #imgcontainer-4, #imgcontainer-3 {
    left: 0;
  }

  .demo-overlay {
    padding: 17em 0 !important;
  }

  .demo-img-3, .demo-img-4 {
    display: none;
  }
}
@media (max-width: 768px) {
  .demo-overlay {
    padding: 12em 0 !important;
  }
}
@media (max-width: 425px) {
  .demo-overlay {
    padding: 10em 0 !important;
  }
}
.counter .side-border-left::after {
  content: "";
  position: absolute;
  border-left: 1px dashed rgba(157, 157, 157, 0.2);
  height: 400px;
  top: 0;
  left: 0;
}
.counter .side-border-right::before {
  content: "";
  position: absolute;
  border-right: 1px dashed rgba(157, 157, 157, 0.2);
  height: 400px;
  top: 0;
  right: 0;
}
.counter .counter_value {
  font-size: 60px;
}

.counter .counter-caption {
  font-family: "Montserrat", "Arial", sans-serif;
}

@media (max-width: 992px) {
  .side-border-left {
    border-bottom: 1px dashed rgba(157, 157, 157, 0.2);
  }
  .side-border-right {
      display:none;
  }
  .counter .counter_value {
      font-size: 40px;
    }

}
.pricing-box .price-title {
  background: #d1d1d1;
  padding: 6px 30px;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  z-index: 999;
}
.pricing-box .price-title .tag {
  transform: rotate(135deg) !important;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: -8px;
  left: 44%;
  margin-top: -19px;
  background: #d1d1d1;
}
.pricing-box .price-tag h2 span {
  font-size: 60px;
}
.pricing-box .price-tag sup {
  top: -1.5em;
  color: rgba(63, 58, 100, 0.6);
}

.faq {
  position: relative;
}

.faq-collaps {
  background-color: #ffffff;
}
.faq-collaps .card {
  border: 1px solid #f5f7fa;
  border-radius: 0px;
  background-color: transparent;
}

.accordion-item .accordion-header .accordion-button {
  background-color: rgba(0, 176, 116, 0.1);
}

.faq-collaps-2 .card {
  border-color: rgba(157, 157, 157, 0.2);
  border-radius: 6px;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
  margin-left: 30px;
}

a.faq[data-bs-toggle=collapse].collapsed:before {
  content: "";
}

a.faq[data-bs-toggle=collapse]:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  background: var(--theme-color);
  line-height: 22px;
  display: block;
  float: right;
  font-family: "Material Design Icons";
  font-size: 16px;
  color: #ffffff;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-form-faq {
  position: relative;
}
.custom-form-faq .form-control {
  height: 44px;
  font-size: 14px;
  padding-left: 25px;
  border-color: #e2e4e8;
  color: #9d9d9d;
}
.custom-form-faq .form-control:focus {
  border-color: #e2e4e8;
  outline: 0;
  box-shadow: none;
}
.custom-form-faq .faq-icon {
  position: absolute;
  font-size: 18px;
  right: 10px;
  color: #9d9d9d;
  margin-top: 40px;
}

.card-body {
  animation: sweep 0.5s ease-in-out;
  border-left: 2px solid var(--theme-color);
  margin-left: 55px;
  opacity: 100;
  padding-left: 25px;
  margin-bottom: 15px;
}

@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 55px;
  }
}
.blog-image {
  border-radius: 10px;
}
.blog-image img {
  transition: all 1.5s;
}
.blog-image img:hover {
  transform: scale(1.1);
}

.blog-content a h6 {
  color: rgba(157, 157, 157, 0.9);
  transition: all 0.5s;
}
.blog-content a h6:hover {
  color: var(--theme-color);
}
.blog-content a h4 {
  color: #655a78;
  transition: all 0.5s;
}
.blog-content a h4:hover {
  color: var(--theme-color);
}

.blog-link a {
  color: var(--theme-color);
  transition: all 0.3s;
}
.blog-link a:hover {
  color: #655a78;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu .menu-item {
  flex: 1 0 40%;
  margin-bottom: 12px;
  font-weight: 600;
}
.menu .menu-item a {
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s;
  font-size: 14px !important;
}
.menu .menu-item a:hover {
  color: var(--theme-color);
}
.menu .info-item {
  margin-bottom: 12px;
  font-weight: 600;
}
.menu .info-item a {
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s;
  font-size: 14px !important;
}
.menu .info-item a:hover {
  color: var(--theme-color);
}




.timeline {
    column-count: 2;
}
.timeline-wrapper {
    position: relative;
    padding: 22px 0;
}
.timeline-wrapper:last-child:before {
    height: 0;
}
.timeline-wrapper:before {
    content: "";
    background: var(--theme-color);
    width: 3px;
    height: 100%;
    position: absolute;
    left: 38px;
}

.timeline-yr {
    font-family: "Unbounded", "Arial", sans-serif;
    background: var(--theme-color);
    border-radius: 100%;
    position: absolute;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
}
.timeline-yr span {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    display: block;
    line-height: 75px;
}

.timeline-info {
    display: inline-block;
    vertical-align: top;
    max-width: 432px;
    margin-left: 6em;
}

@media (max-width: 768px) {
    .timeline {
        column-count: 1;
    }
}

.border-theme {
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    padding: 70px 0px;
    background-color: #fff;
    position: relative;
    top: -50px;
}

.single-achivement {
  width: 33.3%;
  float: left;
}

@media (max-width: 767px) {
  .single-achivement {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
}

.single-achivement .icon {
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .single-achivement .icon {
    float: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.single-achivement .achive-heading {
  overflow: auto;
  color: #333333;
}

.single-achivement .achive-heading .h3 {
  margin-top: -2px;
  line-height: 1;
}



.about-section .main-profile-img {
  padding-bottom: 0px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .about-section .main-profile-img {
    text-align: center;
  }
  .about-section .main-profile-img img {
    width: 70%;
  }
  .about-section .main-profile-img span {
    display: none;
  }
}

@media (min-width: 991px) {
  .about-section .main-profile-img:hover:before {
    -webkit-transform: translate(-35%, -35%);
            transform: translate(-35%, -35%);
  }
  .about-section .main-profile-img:hover:after {
    -webkit-transform: translate(35%, 45%);
            transform: translate(35%, 45%);
  }
  .about-section .main-profile-img::before {
    position: absolute;
    left: 0;
    content: "";
    background-image: url("../images/testi_active.png");
    width: 112px;
    height: 117px;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all .35s;
    transition: all .35s;
    z-index: -1;
  }
  .about-section .main-profile-img::after {
    position: absolute;
    right: 0;
    content: "";
    background-image: url("../images/profile_bottom_dots.png");
    width: 210px;
    height: 220px;
    bottom: 0;
    -webkit-transition: all .35s;
    transition: all .35s;
    -webkit-transform: translate(40%, 30%);
            transform: translate(40%, 30%);
    z-index: -1;
  }
  .about-section .main-profile-img span {
    position: absolute;
    top: 0;
    content: "";
    font-size: 20px;
    left: 0;
    font-weight: 600;
    color: #c0caff;
    -webkit-transform: translate(-90%, 44px);
            transform: translate(-90%, 44px);
  }
}

.about-section .about-content {
  margin-top: 60px;
}


/*форма*/
.default_form .default_input {
    background-color: #fff;
    border: 1px solid #cbcbcb;
    height: 52px;
    padding: 0 40px 0 9px;
    width: 100%;
    border-radius: 50px;
}
.default_form .button {
    padding: 15px 33px;
    line-height: 1.2;
    color: #fff;
    background-color: var(--theme-color);
    border: 1px solid;
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    width: 100%;
    border-radius: 50px;
}
.input_wrap{
    position: relative;
    margin-bottom:20px;
}
.input_wrap .error_text {
    color: red;
    display: none;
    font-size: 11px;
    bottom: -15px;
    left: 5px;
    line-height: 12px;
    ms-text-overflow: ellipsis;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 2;
}

.input_wrap.error .error_text {
    display: inline-block;
}

.required.error {
    color: red;
    border-color: red;
}

/*подпись поля*/
.default_form .input_wrap .input_label {
	color: #666;
	font-size: 15px;
	left: 9px;
	line-height: 18px;
	max-width: 90%;
	ms-transform: translatey(-50%);
	o-transition: all 0.3s ease;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 50%;
	transform: translatey(-50%);
	transition: all 0.3s ease;
	webkit-transform: translatey(-50%);
	webkit-transition: all 0.3s ease;
	white-space: nowrap;
}
.default_form .input_wrap .input_label.input_focus {
	font-size: 11px;
	left: 0;
	line-height: 12px;
	top: -8px;
}

.single-info a {
    color:#655a78;
}

.per-content::after {
    content: "";
    position: absolute;
    border-left: 1px dashed rgba(157, 157, 157, 0.2);
    height: 220px;
    top: 0;
    left: 0;
}

.per-content:last-child:before {
    content: "";
    position: absolute;
    border-right: 1px dashed rgba(157, 157, 157, 0.2);
    height: 220px;
    top: 0;
    right: 0;
}

@media (max-width: 768px) {
    .per-content {
         border-bottom: 1px dashed rgba(157, 157, 157, 0.2);
    }
}

.mt-20 {
    margin-top:20px;
}

.pointer {
    cursor:pointer;
}



/* altravita banner */
.altravita_banner img{
    max-width: 100%;
    height: auto;
}
.altravita_banner_mobile{
    display: none;
}
@media (max-width: 479px) {
.altravita_banner_desctop{
    display: none;
}    
.altravita_banner_mobile{
    display: block;
}    
}

/* мои показатели */

.services-section .single-service {
  padding: 50px 60px 50px;
  -webkit-transition: all .3s;
  transition: all .3s;
  min-height: 345px;
}

@media (max-width: 480px) {
  .services-section .single-service {
    padding: 15px;
    min-height: auto;
    margin-bottom:10px;
  }
}

@media (max-width: 991px) {
  .services-section .single-service {
    padding: 15px;
  }
  .services-section .single-service .h3 {
      display: inline-block;
  }
}

.services-section .single-service img {
  margin-bottom: 20px;
  display: inline-block;
}


.services-section .single-service .h3 {
  color: #6c757d;
  margin-bottom: 15px;
}

.services-section .single-service.service {
  border: 1px solid #eaeaea;
}

.services-section .single-service.service:hover {
  border-color: var(--theme-color) ;
}

.services-section .single-service.service:hover .h3, .services-section .single-service.service:hover a {
  color: var(--theme-color);
}

.services-section .contact-promo {
  margin-top: 60px;
  font-size: 18px;
}

.services-section .contact-promo a {
  color: #4d63dd;
  font-weight: 600;
}

.consult-benefits-section .heading .h5 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.consult-benefits-section .row {
  margin-top: 14px;
  row-gap: 18px;
}

.consult-benefits-section .single-service.service {
  border: 1px solid #f3dede;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  box-shadow: 0 8px 24px rgba(var(--theme-rgb), 0.08);
}

.consult-benefits-section .single-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 24px 20px;
}

.consult-benefits-section .single-service img {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}

.consult-benefits-section .single-service .h3 {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  margin-bottom: 0;
}

.consult-benefits-section .single-service .benefit-description {
  margin-top: 12px;
  margin-bottom: 0;
  color: #6c757d;
  line-height: 1.5;
}

.consult-benefits-section .single-service .h3:last-child {
  margin-bottom: 0;
}



.logo_block {
	display: inline-block;
	vertical-align: middle;
}
.logo_block .logo_content {
	display: inline-block;
}
.logo_content img {
    position: relative;
}
.logo_block a:hover, .logo_block a:focus {
	text-decoration: none;
}
.logo_block .logo_content > * {
	display: inline-block;
	vertical-align: top;
}
.logo_block .logo_text {
	margin-left: 0;
}
.logo_block .logo_text span {
	display: block;
}
.logo_block .t_top {
	color: var(--theme-color);
	font-size: 25px;
	font-weight: 600;
	line-height: 28px;
}
.logo_block .t_middle {
	color: #333;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height:30px;
}


/*попап*/
.default_popup_block {
  background: #fff;
  box-shadow: 0px 0 30px rgba(117, 138, 183, 0.2);
  max-width: 496px;
  padding: 27px 56px ;
  display:none;
}
.default_popup_block .jq-selectbox .jq-selectbox__dropdown {
  top: 50px;
}
.default_popup_block .popup_head {
  color: #333;
  font-family: "Unbounded", "Arial", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
  text-align: center;
}
.default_popup_block .popup_descr {
  color: #333;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 20px;
  text-align: center;
}
.default_popup_block .fancybox-close-small {
  color: #172126;
  height: 32px;
  padding: 0;
  right: 16px;
  text-align: center;
  top: 16px;
  width: 32px;
}
.default_popup_block .fancybox-close-small svg {
  display: none;
}
.default_popup_block .fancybox-close-small:after {
  content: "\F62A";
  font-family: bootstrap-icons !important;
  font-size: 24px;
  line-height: 32px;
}

/* стили для xs-устройств */
@media (max-width: 767px) {
  .default_popup_block {
    padding: 27px 20px 40px;
    max-width: 95%;
 }
}




/*текстовое поле в форме*/
.default_form .textarea_wrap {
  line-height: 0;
  margin-bottom: 32px;
  position: relative;
}
.default_form .textarea_wrap .input_label {
  left: 9px;
  ms-transform: translatey(0);
  top: 20px;
  transform: translatey(0);
  webkit-transform: translatey(0);
}
.default_form .default_textarea {
  background-color: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  height: 150px;
  line-height: 1.8;
  padding: 9px;
  resize: none;
  width: 100%;
}

/*чекбокс в форме*/
.default_form .input_checkbox_label {
  display: table;
}
.default_form .input_inline_row {
  margin-bottom: 32px;
}
.default_form .input_inline_row > * {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
.default_form .input_inline_row .input_wrap {
  margin: 0px 8px;
}
.default_form .input_checkbox_label > * {
  display: table-cell;
  vertical-align: middle;
}
.default_form .input_checkbox_label .input_checkbox_text {
  line-height: 18px;
  padding-left: 10px;
}
/*формы чекбокс*/
.jq-checkbox {
  background: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  height: 24px;
  position: relative;
  webkit-border-radius: 2px;
  width: 24px;
}
.jq-checkbox.checked .jq-checkbox__div {
  display: block;
}
.jq-checkbox .jq-checkbox__div {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.jq-checkbox .jq-checkbox__div:after {
  color: #758ab8;
  content: "\F633";
  font-family: bootstrap-icons !important;
  font-size: 24px;
  line-height: 22px;
  margin-left: -1px;
  text-align: center;
}
/*крестик*/
.default_popup_block .fancybox-close-small {
  color: #172126;
  height: 32px;
  padding: 0;
  right: 16px;
  text-align: center;
  top: 16px;
  width: 32px;
}
.default_popup_block .fancybox-close-small svg {
  display: none;
}
.default_popup_block .fancybox-close-small:after {
    content: 'x';
    font-size: 24px;
    line-height: 32px;
}
/*Нажимая кнопку «Отправить», я принимаю условия обработки информации.*/
.agree .agree_content {
  display: table;
  width: 100%;
  margin-top:0;
}
.agree a {
  color:#655a78;
}
.agree a:hover{
  border-bottom:none;
}
.agree .agree_content > * {
  display: table-cell;
  vertical-align: middle;
}
.agree .agree_content .input_wrap {
  line-height: 0;
  width: 24px;
}
.agree .agree_content .text_wrap {
  padding-left: 12px;
}
.default_form .agree .agree_content, .default_form .agree .agree_content {
  font-size: 12px;
  line-height: 14px;
  margin: 0 auto 10px auto;
  width: auto;
}
/* стили для xs-устройств */
@media (max-width: 767px) {
  .agree {
    margin-top:10px;
 }
  .agree .agree_content+.agree_content>* {
    vertical-align: middle;
 }
  .agree .agree_content > * {
    display: table-cell;
    vertical-align: top;
 }
  .agree .agree_content .text_wrap {
    font-size: 12px;
    line-height: 16px;
 }
}

/* Текст ошибки через псевдоэлемент */
.agree.error .text_wrap::after {
  content: "Пожалуйста, подтвердите согласие на обработку данных.";
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #e53935;
}

.agree .agree__error {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  color: #e53935;
}
/* Показываем текст ошибки, когда есть .has-error */
.agree .agree_content:has(.input_wrap.input-checkbox.has-error) + .agree__error {
  display: block;
}

.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 499;
	width: 100%;
	background: #fff;
	opacity: 0.6;
	border-top: #cbcbcb 1px solid
}

.cookie-popup__wrap {
	position: relative
}

.cookie-popup__text {
	padding: 7px 20px;
	color: #000;
	font-size: 12px;
	line-height: 20px
}

.cookie-popup__text a {
	color: #000 !important;
}

.cookie-popup__text a:hover {
	color: var(--theme-color) !important;
	text-decoration: none
}

.js_set_cookie {
	color: #000;
	font-weight: 600;
	cursor: pointer
}

@media screen and (max-width:1570px) {
	.cookie-popup__text {
		padding: 0 190px 0 0
	}

	.cookie-popup__btn {
		right: 190px
	}
}

@media screen and (max-width:992px) {
	.cookie-popup__wrap {
		padding: 5px 10px
	}

	.cookie-popup__text {
		font-size: 14px;
		line-height: 22px;
		padding: 0 50px 0 0
	}

	.cookie-popup__btn {
		right: 0
	}
}

@media screen and (max-width:767px) {
	.cookie-popup__wrap {
		padding: 5px
	}

	.cookie-popup__text {
		text-align: center;
		padding: 0 0 15px;
		font-size: 12px;
		line-height: 14px
	}

	.cookie-popup__btn {
		position: relative;
		top: inherit;
		right: inherit;
		text-align: center
	}

	.cookie-popup__btn .btn_white {
		width: 100%;
		font-size: 14px;
		line-height: 20px
	}
}

/* Page-specific responsive fixes */
.custom-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: clamp(12px, 2.5vw, 32px);
  padding-right: clamp(12px, 2.5vw, 32px);
  gap: 8px;
  overflow-x: clip;
}

.logo_block {
  flex: 1 1 auto;
  min-width: 0;
}

.logo_block .logo_content {
  max-width: 100%;
}

.header-menu .btn {
  white-space: nowrap;
}

.header-phone-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 10px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #f12e41;
}

.header-phone-btn__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.navbar .navbar-toggler {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 6px;
  margin: 0 !important;
  border-radius: 8px;
  background: transparent;
  position: relative;
  z-index: 1002;
}

.navbar .navbar-toggler-icon {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(63,58,100,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.navbar-collapse {
  z-index: 1001;
}

.video-viewport {
  width: min(100%, 680px);
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  cursor: pointer;
}

.video-wrapper.vertical {
  aspect-ratio: 9 / 16;
  max-width: 420px;
  margin: 0 auto;
}

.video-wrapper.horizontal {
  aspect-ratio: 16 / 9;
}

.video-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-inner > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='24,16 24,48 48,32' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

.video-wrapper.playing .video-play {
  display: none;
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 52vw, 500px);
  border: 0;
}

.gallery-section .gallery-item {
  background: #ffffff;
  padding: 16px;
}

.gallery-section .gallery-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-section .gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.gallery-section .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #000000 !important;
}

@media (max-width: 1199px) {
  .custom-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo_block {
    min-width: 0;
    margin-right: auto;
  }

  .navbar .navbar-nav .nav-link.phone {
    font-size: clamp(12px, 1.8vw, 15px);
    line-height: 1.35;
    white-space: nowrap;
    word-break: normal;
  }

  .navbar-collapse {
    top: 100px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navbar .navbar-nav {
    padding: 8px 0 12px;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .custom-container {
    padding-left: 10px;
    padding-right: 10px;
    gap: 4px;
  }

  .navbar .logo .logo-light {
    height: 74px;
    width: auto;
  }

  .navbar .navbar-nav .nav-link {
    padding: 25px 10px;
    font-size: 12px;
  }

  .navbar .navbar-nav .nav-link.phone {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-menu .btn {
    font-size: 11px;
    padding: 10px 12px;
  }

  .header-phone-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 992px) {
  .custom-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo_block {
    min-width: 0;
    margin-right: auto;
  }

  .navbar .navbar-nav .nav-link.phone {
    font-size: clamp(11px, 2.8vw, 14px);
    line-height: 1.35;
    white-space: nowrap;
    word-break: normal;
  }

  .header-menu {
    margin-left: auto;
  }

  .header-menu .btn {
    font-size: 12px;
    padding: 10px 14px;
  }

  .header-phone-btn {
    width: 40px;
    height: 40px;
  }

  .navbar-collapse {
    top: 72px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navbar .navbar-nav {
    padding: 8px 0 12px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home .home-content .title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .testi-slider .swiper-slide {
    min-height: auto;
    padding: 28px;
  }
}

@media (max-width: 700px) {
  .header-menu {
    display: none !important;
  }
}

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

  .navbar-collapse {
    top: 74px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .video-wrapper.vertical {
    max-width: min(100%, 360px);
  }

  .video-play::before {
    width: 52px;
    height: 52px;
  }

  .about-section .about-content {
    margin-top: 32px;
  }

  .hero-ratings {
    gap: 10px;
  }

  .hero-rating-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .custom-container {
    gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar .logo .logo-light {
    height: 72px;
    width: auto;
  }

  .navbar .logo {
    max-width: calc(100vw - 72px);
  }

  .navbar .navbar-toggler {
    width: 38px;
    height: 38px;
  }

  .counter .counter_value {
    font-size: 34px;
  }

  .testi-slider .swiper-slide {
    padding: 20px 16px;
  }

  .contact-map-iframe {
    height: 300px;
  }

  .gallery-section .gallery-item {
    padding: 12px;
  }

  .hero-rating-item img {
    width: auto;
    max-width: 100%;
    height: 28px;
  }

  .gallery-section .gallery-item.is-portrait img {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .consult-benefits-section .single-service {
    min-height: auto;
    padding: 18px 14px;
  }

  .consult-benefits-section .single-service img {
    height: 48px;
    margin-bottom: 12px;
  }

  .consult-benefits-section .single-service .h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .consult-benefits-section .single-service .benefit-description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
}