@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
/*xidmetler internal page*/
.rating-card {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 16px 24px;
  font-family: system-ui, sans-serif;
  text-align: center;
}

.rating-card.oxo{
    width:200px;
}
.rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.rating-logo {
  width: 22px;
  height: 22px;
}

.rating-title {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.rating-score {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.rating-stars {
  font-size: 20px;
  color: #FFC107; /* Sarı ulduzlar */
  margin-bottom: 4px;
}

.rating-subtext {
  font-size: 13px;
  color: #666;
}
.xidmetler_in_card{
    border: 1px solid rgb(236 236 236 / 64%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background: rgb(236 236 236 / 64%);
    padding: 0;
    transition: .3s;
    height: 133px;
    white-space: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.senedler_in_card{
    height: fit-content;
    justify-content: center;
}
.senedler_in_card .xidmetler_in_img{
    max-width: inherit;
    padding: 0 !important;
}
.senedler_col a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #3338;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 20px;
    border: 2px solid #3333;
    border-radius: 10px;
    transition: all .3s linear;
}
.senedler_col a img {
    transition: all .3s linear;
    width: 70px;
    margin-bottom: 25px;
    filter: opacity(0.4);
}
.senedler_col a:hover {
    border: 2px solid #333;
    color: #000;
}
.senedler_col a:hover img {
    filter: opacity(1);
}
.xidmetler_in_card a{
    width: 100%;
    padding: 10px;
}
.senedler_in_card a{
    padding: 0 0 10px;
}
.xidmetler_in_img{
    max-width: 130px;
    min-width: 115px;
    width: 100%;
}
.xidmetler_in_card img{
    width: 100%;
    object-fit: contain;
    border-radius: 7px;
    transition: .3s;
    height:100px;
}
.xidmetler_in_card:hover img{
    transform: scale(1.1)
}
.xidmetler_in_card span{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 20px;
    color: #000;
    line-height: 1.3;
    overflow: hidden;
    margin-left:15px;
}

.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-alert p {
  margin: 0;
  flex: 1;
}

.cookie-alert button {
  background-color: #0ea5e9;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cookie-alert button:hover {
  background-color: #0284c7;
}
/* Konteyner */

  #title-search.search-form{
    display:flex;
    align-items:center;
    gap:.5rem;
    max-width:720px;
    width:100%;
    margin-inline:auto;
  }

  /* Mətn sahəsi */
  #title-search input[name="story"]{
    flex:1 1 auto;
    height:48px;
    padding:0 14px;
    border:1px solid #e5e7eb;          /* gray-200 */
    background:#ffffff;
    color:#0f172a;                      /* slate-900 */
    border-radius:999px;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  }
  #title-search input[name="story"]::placeholder{ color:#6b7280; }  /* gray-500 */
  #title-search input[name="story"]:focus{
    border-color:#0ea5e9;               /* sky-500 */
    box-shadow:0 0 0 4px rgba(14,165,233,.25);
  }

  /* Düymə (ikonlu) */
  #title-search button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border:none;
    border-radius:999px;
    background:#0ea5e9;                 /* sky-500 */
    color:#ffffff;
    cursor:pointer;
    transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
    box-shadow:none;
  }
  #title-search button:hover{
    transform:translateY(-1px);
    box-shadow:0 6px 18px rgba(2,132,199,.15);
  }
  #title-search button:active{
    transform:translateY(0);
    box-shadow:0 4px 12px rgba(2,132,199,.18);
  }
  #title-search button:disabled{
    opacity:.6;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
  }
  #title-search button svg{ width:20px; height:20px; pointer-events:none; }

  /* Dark mode */
  @media (prefers-color-scheme: dark){
    #title-search input[name="story"]{
      background:#fff;
      color:black;
      border-color:#1f2937;             /* gray-800 */
    }
    #title-search input[name="story"]::placeholder{ color:#9ca3af; } /* gray-400 */
    #title-search input[name="story"]:focus{
      border-color:#0ea5e9;
      box-shadow:0 0 0 4px rgba(14,165,233,.35);
    }
  }

  /* Kiçik ekran */
  @media (max-width:480px){
    #title-search.search-form{ gap:.4rem; }
    #title-search input[name="story"]{ height:44px; }
    #title-search button{ width:44px; height:44px; }
  }
.ui-btn,
.ui-btn:hover,
a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.no-list{
    list-style:none;
    padding-left:0;
}
.my-f{height:280px;}
.no-list li{margin-bottom:8px;}
p{
    margin-bottom:10px;
    line-height:1.6;
}
.liii li{list-style:disc}
.row{row-gap:20px}
/*accordion*/
.accordion-button:not(.collapsed){
    background:var(--color-blue-light);
    color:#fff;
}
.accordion-button{
    font-size:16px;
}
.accordion-body .col-md-6 {
    line-height: 25px;
}
.header__section--topbar{padding-block:21px;}
/*accordion end*/
/*modal*/
.modal-body input:not([type="checkbox"]),.modal-body textarea{
    border-radius:var(--real-border-radius);
    border:none;
    width:100%;
    margin-bottom:15px;
    padding:12px 8px;
    background:#f5f6f7;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; 
}

.modal-body .btn:hover{color: white;}
/*modal end*/
.box{display:none;}
:root {
  --swiper-navigation-size: 44px;
}
.button,
.page-index .benefit-layer .benefit-layer__block,
.ui-btn {
  text-align: center;
}
.orbit,
.video {
  inset: 0;
}
.header__city-overlay,
.js-city-input ~ button svg,
.orbit,
.ui-btn:disabled,
.ui-tabs__content {
  pointer-events: none;
}
.button,
.header__secondary,
.ui-btn {
  white-space: nowrap;
}
.info .info-caption,
.oxo-action-block__buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
:root {
 --real-border-radius:8px;
 --section-border-radius:20px;
  --theme-size: 10px;
  --color-highlight: #e3444b;
  --color-accent: #33e771;
  --color-accent-banner: #37b44a;
  --color-accent-hover: #e3444b;
  --color-secondary: #e3444b;
  --color-secondary-hover: #e3444b;
  --color-combo-border: #33e771;
  --color-light: #f5f5f8;
  --background-color-light: #f5f5f8;
  --color-light-hover: #ededed;
  --color-dark: #212a34;
  --color-dark-hover: #e3444b;
  --color-grey: #6b7782;
  --color-placeholder: #6b7782;
  --background-color-grey: #6b7782;
  --color-grey-hover: #212a34;
  --color-white: #fff;
  --color-white-hover: #ededed;
  --color-border: #f0ede9;
  --color-border-hover: #f0ede9;
  --color-privite-light: #f0ede9;
  --color-error: #e3444b;
  --color-link: #000;
  --color-link-hover: #01ba4a;
  --color-link-secondary: #01cb51;
  --color-link-secondary-hover: #e3444b;
  --color-text-second: #6b6b6b;
  --color-text-third: #a2a2a2;
  --color-gray-on-light: #a2a2a2;
  --banner-bg-dark: #1c2520;
  --body-bg: #fff;
  --color-divider: #e9e9ef;
  --body-color: #212a34;
  --private-accent-color: #2d7d2f;
  --private-gray-color: #7f8482;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
  --font-main: "Montserrat";
  --font-heading: "Montserrat";
  --font-private: "Montserrat";
  --color-red: #e3444b;
  --color-blue-light: #3f6e98;
  --color-blue-dark: #012e64;
}
/*services*/
/*services*/

.services {
    padding: 40px 0 ;
}


.main-services {
    display:grid;
    gap:24px;                              
    grid-template-columns:repeat(auto-fit, minmax(330px,1fr));
}

.main-services a {
    position: relative;
       background: linear-gradient(to bottom, var(--color-blue-light) 0%, var(--color-blue-dark) 100%);
    display:block;
    height: 140px;
    box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.1), 0 40px 77px 0 rgba(0, 0, 0, 0.15);
    border-radius:16px;
    font-size: 23px;
    font-weight: bold;
    color: #fff!important;
    display:flex;
    align-items:center;
    gap: 10px;
    padding-inline: 10px;
    transition: .3s;
    overflow:hidden;
}
.main-services img{filter:brightness(1000);object-fit:contain}
.main-services a::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-blue-light);
    position: absolute;
    top: 0;
    right: 0;
    -moz-border-radius: 0 0 0 90%;
    -webkit-border-radius: 0 0 0 90%;
    -khtml-border-radius: 0 0 0 90%;
    border-radius: 0 0 0 90%;
    -webkit-animation-duration: 0.2s;
    -webkit-transition: all 0.2s linear;
    -moz-animation-duration: 0.2s;
    -moz-transition: all 0.2s linear;
    animation-duration: 0.2s;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.dropdown-item span{    
    white-space: break-spaces;
    font-size: 22px;
    font-weight: 400;
}
.main-services a:hover {
    transform: translateY(-10px)
}

.main-services a:hover::after{
    right: -20%;
    top: -20%;
}
.services.services-2 .swiper-slide {
    width: 100%;
}

.services .swiper-slide {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    width: 400px;
    height: 240px;
    position: relative;
    padding: 26px 24px 24px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 265px;
}

.services .swiper {
    padding: 20px 0;
}

.services .swiper-slide .swiper-slide__top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.services .swiper-slide .swiper-slide__top img {
    line-height: 0px;
    margin-right: 16px;
    position: relative;
    z-index: 2;
    width: 24px !important;
    transition: .2s;
}


.services .swiper-slide .btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services .swiper-slide .btns a {
    text-align: center;
    display: inline-flex;
    justify-content: center;
    transition: .2s;
}

.services .swiper-slide .btns a:last-child {
    border: 1px solid #474D52;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    padding: 10px 20px;
    border-radius: 8px;
}

.services .swiper-slide:hover .btns a:last-child {
    border: 1px solid #fff;
}

.services .swiper-slide .btns a span {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: black;
    text-transform: uppercase;
    transition: .2s;
}


.services .swiper-slide:hover span {
    color: #fff !important;
}

.services .swiper-slide:hover .btns a::after {
    background: url(/assets/img/right_standart_white.svg) no-repeat;
}

.services .swiper-slide .btns a::after {
    content: " ";
    width: 16px;
    height: 16px;
    display: block;
    background: url(/assets/img/right_standart.svg) no-repeat;
    margin-left: 8px;
    transition: .2s;
}

.services .swiper-slide:hover img {
    filter: brightness(0) invert(1);
}

.services .swiper-slide .swiper-slide__top h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    align-items: center;
    color: #1A2328;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transition: .2s;
}

.services .swiper-slide:hover h3 {
    color: white;
}

.services .swiper-slide .description {
    font-size: 16px;
    line-height: 140%;
    color: #222;
    opacity: .9;
    position: relative;
    z-index: 2;
    transition: .2s;
    display: -webkit-box;             
  /* 2) Ориентируем box‑контейнер по вертикали */
  -webkit-box-orient: vertical;     
  /* 3) Обрезаем ровно по 3 строкам */
  -webkit-line-clamp: 3;            
  /* 4) Скрываем всё, что вышло за рамки */
  overflow: hidden;                 
  
  /* Настройка текстового потока */
  line-height: 1.2em;       /* высота одной строки */
  max-height: calc(1.2em * 3); 
}

.services .swiper-slide:hover .description {
    color: white;
}

.services .swiper-slide .btns {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.services .swiper-slide::before {
    width: 31px;
    height: 36px;
    content: " ";
    background: url(https://medtour.help/wp-content/themes/medtour/front/dist/assets/icons/backspec.svg) no-repeat;
    position: absolute;
    left: 21px;
    top: 22px;
    transition: all 0.5s ease;
    background-size: 100%;
}

.services .swiper-slide:hover:after {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 0;
}

.services .swiper-slide::after {
    width: 2px;
    content: " ";
    height: 2px;
    transition: all 0.5s ease;
    left: 23px;
    display: block;
    top: 33px;
    border-radius: 50%;
    position: absolute;
    background-color: #8ECAE6;
}

.services__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.services .swiper-button-disabled {
    opacity: .3;
}

.services__head .btns button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
}

.services__head .btns button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.main-kate-services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.main-kate-services .service-kate2 {
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
}

.main-kate-services a{
    background-color: var(--main-color-2);
    border: 1px solid var(--main-color-2);
    box-shadow: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 6px 22px;
    border-radius: 100px;
    display: inline-block;
        transition: .4s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    margin-top: 30px;
}


.service-kate2:hover {
    box-shadow:0 4px 20px rgba(0, 0, 0, .15);
}


.service-kate2 {
    padding: 15px 15px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
    transition: .2s;
}

.service-kate2  h3 {
    font-size: 16px;
    line-height: 150%;
}

.service-kate2  h4 {
    font-size: 12px;
    line-height: 160%;
    opacity: .7;
}

.services__head .btns button:first-child {
    margin-right: 10px;
}

.services__head .btns button:first-child svg {
    transform: rotate(180deg);
}

.services__head h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #1A2328;
}

/*services end*/
header {
  position: sticky;
  top: 0;
}
header .socials a {
  width: 28px;
  height: 28px;
  background-color: rgb(216, 216, 216, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.25s;
  background-color: var(--color-red);
}
.ui-btn {
  align-items: center;
  background: 0 0;
  border: 0.2rem solid transparent;
  border-radius: var(--real-border-radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 500;
  height: 4.8rem;
  justify-content: center;
  line-height: 1.25;
  padding: 1rem 2.4rem;
  position: relative;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.ui-btn:after {
  content: "";
  display: block;
}
.ui-btn:active {
  transition: none;
}
.ui-btn:disabled {
  opacity: 0.35;
}
@media (min-width: 1200px) {
  .ui-btn {
    font-size: 1.8rem;
    height: 5.6rem;
    padding: 1rem 3rem;
  }
}
.ui-btn--40 {
  font-size: 1.4rem;
  height: 4rem;
  padding: 1rem 2.2rem;
}
.ui-btn--primary {
  background: #33e771;
  background: var(--color-blue-light);
  border-color: #33e771;
  border-color: var(--color-blue-light);
  color: #fff;
}
.header,
body {
  background: #fff;
  margin: 0;
}
.ui-btn--primary:hover,.about-btn:hover {
  background: var(--color-blue-dark);
  border-color: #e3444b;
  border-color: var(--color-blue-dark);
}
.ui-placeholder:has(.ui-placeholder__range) .ui-placeholder__input,
.ui-placeholder:has(.ui-placeholder__range) .ui-placeholder__textarea {
  border-radius: var(--real-border-radius) var(--real-border-radius) 0 0;
}
.ui-placeholder__input:not(:-moz-placeholder-shown) ~ .ui-placeholder__label,
.ui-placeholder__textarea:not(:-moz-placeholder-shown)
  ~ .ui-placeholder__label {
  transform: scale(0.7) translateY(-0.6rem);
}
.ui-placeholder__textarea:not(:-moz-placeholder-shown)
  ~ .ui-placeholder__label {
  opacity: 0;
  visibility: hidden;
}
.col-xl-12:has(.ui-group-check.ui-group-check--buttons) {
  padding-bottom: 4.8rem !important;
}
.ui-group-check.ui-group-check--buttons
  .ui-check:has(.ui-check__input:checked) {
  background-color: #33e771;
  background-color: var(--color-accent);
  border-color: #33e771;
  border-color: var(--color-accent);
}
.ui-tabs__wrapper {
  height: 100%;
  position: relative;
}
.ui-tabs__content {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
}
.ui-tabs__content.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transition: 0.7s;
  visibility: visible;
}
.header__primary-link:after,
.header__secondary-link:after {
  left: 0;
  transition: opacity 0.25s;
  right: 0;
  content: "";
  opacity: 0;
}
.fancybox-container:has(.ebs-popup) .fancybox-bg,
.fancybox-container:has(.help-center__popup) .fancybox-bg,
.fancybox-container:has(.private-cumulative__popup) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}
.calulator-deposit-period:has(
    .calulator-deposit-period__range[style*="display: none"]
  )
  .input-period {
  border-radius: var(--real-border-radius);
}
.offices-atms__list > li:first-child > :before {
  border-top: none;
}
.offices-atms__list > li:last-child > :before {
  border-bottom: none;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
  font-size: 10px;
  font-size: var(--theme-size);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}
*,
:after,
:before {
  box-sizing: inherit;
  box-sizing: border-box;
}
header .container-fluid {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 128rem;
  padding: 0 1.6rem;
}
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
* {
  outline: 0;
}
:focus-visible {
  outline: #33e771 solid 3px;
  outline: 3px solid var(--color-accent);
}
@media (min-width: 320px) and (max-width: 359px) {
  html {
    font-size: 2.7777777778vw;
  }
}
body {
  background: var(--body-bg);
  color: #212a34;
  color: var(--body-color);
  font: 400 1.6rem/1.25 Montserrat;
  overflow-x: hidden;
  overflow-y: scroll;
  color: var(--text);
  background: radial-gradient(
      900px 420px at -10% 0,
      rgba(32, 59, 108, 0.06),
      transparent 60%
    ),
    radial-gradient(
      700px 360px at 110% 10%,
      rgba(231, 78, 83, 0.05),
      transparent 55%
    ),
    linear-gradient(#fff, var(--bg));
}
@media (min-width: 640px) {
  header .container-fluid {
    padding: 0 3.2rem;
  }
}
a {
  color: #01a642;
  color: var(--color-link);
  transition: color 0.25s;
}
.header {
  left: 0;
  padding: 5.3rem 0 0;
  right: 0;
  top: 0;
  transition: box-shadow 0.25s;
  z-index: 1000;
}
#header__logo-link,
.header__logo {
  margin: 0 auto 0 0;
}
@media (max-width: 1199px) {
  .header__section {
    background: #fff;
    transition: box-shadow 0.25s;
  }
  .header__section > .container-fluid {
    align-items: center;
    display: flex;
    height: 100%;
  }
  .header__section:first-of-type {
    border-bottom: 1px solid #f0ede9;
    border-bottom: 1px solid var(--color-border);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
  }
 
  .is-xl-visible {
    display: none !important;
  }
}
.header__logo {
  align-items: center;
  color: #33e771;
  color: var(--color-accent);
  display: flex;
  flex: 0 0 auto;
  height: 4.8rem;
  width: 12.2rem;
}
@media (min-width: 640px) {
  .header__logo {
    width: 14.4rem;
  }
}
.header__primary {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.333;
  margin: 0 -1.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.6rem;
  text-transform: uppercase;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header__location-link,
.header__primary-link {
  align-items: center;
  color: #212a34;
  transition: color 0.25s;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__primary::-webkit-scrollbar {
  display: none;
}
@media (min-width: 640px) {
  .header__primary {
    margin: 0 -3.2rem;
    padding: 0 3.2rem;
  }
}
.header__primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__primary-menu > li {
  margin: 0 1.6rem 0 0;
}
.header__primary-menu > li:last-child {
  margin: 0;
}
.header__primary-link {
  color: var(--body-color);
  display: flex;
  height: 4.2rem;
  position: relative;
}
.header__primary-link:after {
  background: #e3444b;
  background: var(--color-secondary-hover);
  border-radius: var(--section-border-radius);
  bottom: -1px;
  display: block;
  height: 0.2rem;
  position: absolute;
}
.header__primary-link:hover {
  color: #212a34;
  color: var(--body-color);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__primary-link:hover:after {
  opacity: 1;
}
.header__auth,
.header__city,
.header__location {
  display: none;
}
.header__location-link {
  color: var(--color-dark);
  display: flex;
}
.header__location-link:hover {
  color: #e3444b;
  color: var(--color-dark-hover);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__location-link svg {
  display: block;
  height: 2.4rem;
  margin: 0 0.8rem 0 0;
  position: relative;
  top: -1px;
  width: 2.4rem;
}
.header__city-overlay {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}
.header__city-toggle {
  align-items: center;
  background: #f5f5f8;
  background: var(--color-light);
  border: 0.2rem solid #f5f5f8;
  border: 0.2rem solid var(--color-light);
  border-radius: var(--real-border-radius);
  color: #212a34;
  color: var(--body-color);
  cursor: pointer;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  height: 4rem;
  justify-content: center;
  line-height: 1.25;
  padding: 0.8rem 2.4rem;
  position: relative;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.header__city-toggle:hover {
  background: #ededed;
  background: var(--color-light-hover);
  border-color: #ededed;
  border-color: var(--color-light-hover);
  color: #212a34;
  color: var(--body-color);
}
.header__secondary {
  background: #f5f5f8;
  background: var(--color-light);
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 -1.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.6rem;
  -ms-overflow-style: none;
  display: none;
  scrollbar-width: none;
}
.header__secondary::-webkit-scrollbar {
  display: none;
}
@media (min-width: 640px) {
  .header__secondary {
    margin: 0 -3.2rem;
    padding: 0 3.2rem;
  }
  .fancybox-container:has(#popup-products-payments) .fancybox-content {
    height: auto;
  }
}
@media (min-width: 992px) {
  .row-section:not(.my) a:first-child,
  .row-section:not(.my) a:nth-child(6) {
    width: 49.3%;
  }
  .header__primary,
  .header__secondary {
    margin: 0 -4rem;
    padding: 0 4rem;
  }
}
.header__secondary-menu {
  display: flex;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__secondary-menu > li {
  margin: 0 1.6rem 0 0;
}
.header__secondary-menu > li:last-child {
  margin: 0;
}
@media (min-width: 1200px) {
  header .container-fluid {
    padding: 0 4rem;
  }
  .header {
    margin: 0;
    padding: 0;
  }
  
  .header__section:nth-of-type(2) {
    background: #f5f5f8;
    background: var(--color-light);
  }
  .header__section > .container-fluid {
    align-items: center;
    display: flex;
    height: 100%;
    max-width: 144rem;
  }
  .header__logo {
    left: 0;
    margin: 0 2.4rem 0 0;
    position: relative;
    top: 0;
    width: 19.8rem;
  }
  .header__primary {
    border: none;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.333;
    margin: 0 3.2rem 0 0;
    overflow: visible;
    padding: 0;
  }
  .header__primary-menu > li {
    margin: 0 2.4rem 0 0;
  }
  .header__primary-menu > li:last-child {
    margin: 0;
  }
  .header__primary-link {
    height: 6.4rem;
  }
  .header__location {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 3.2rem 0 0;
  }
  .header__city {
    display: block;
    margin: 0 1.2rem 0 0;
    position: relative;
  }
  .header__auth {
    display: block;
  }
  .header__secondary {
    background: 0 0;
    display: block;
    margin: 0;
    overflow: visible;
    padding: 0;
  }
  .header__secondary-menu > li {
    margin: 0 2.4rem 0 0;
  }
  .header__secondary-menu > li:last-child {
    margin: 0;
  }
}
@media (max-width: 1319.98px) {
  .header__secondary-menu > li {
    margin-right: 1.6rem;
  }
}
@media (max-width: 1213.98px) {
  .header__secondary-menu > li {
    margin-right: 1.4rem;
  }
}
.header__secondary-link {
  align-items: center;
  color: #212a34;
  color: var(--body-color);
  display: flex;
  height: 4rem;
  font-weight: 600;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.header__secondary-link:after {
  background: #e3444b;
  background: var(--color-secondary-hover);
  border-radius: var(--section-border-radius);
  bottom: 0;
  display: block;
  height: 0.2rem;
  position: absolute;
}
.header__secondary-link:hover {
  color: #212a34;
  color: var(--body-color);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__secondary-link:hover:after {
  opacity: 1;
}
.header__search-input:focus-visible {
  outline: 0;
}
.header__mobile {
  flex: 0 0 auto;
  margin: 0 0 0 1.6rem;
}
.header__mobile-offcanvas.active{
    display: block;
    opacity: 1;
    visibility: visible;
}
.header__mobile .ui-tabs__wrapper,
.slider .swiper-slide {
  height: auto;
}
.header__mobile-toggle {
  color: #212a34;
  color: var(--body-color);
  cursor: pointer;
  display: block;
  height: 2.4rem;
  position: relative;
  right: 0;
  top: 0;
  width: 2.4rem;
  z-index: 500;
}
.header__mobile-toggle span {
  background: currentColor;
  border-radius: var(--real-border-radius);
  display: block;
  height: 0.2rem;
  left: 50%;
  margin: -1px 0 0 -0.9rem;
  position: absolute;
  top: 50%;
  transition: transform 0.25s, opacity 0.25s;
  width: 1.8rem;
}
.header__mobile-toggle span:first-of-type {
  transform: translateY(-0.5rem);
}
.header__mobile-toggle span:nth-of-type(3) {
  transform: translateY(0.5rem);
}
.header__mobile-offcanvas {
  background: #fff;
  bottom: 0;
  flex-direction: column;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.4rem 1.6rem 3.2rem;
  position: fixed;
  right: 0;
  top: 9rem;
  visibility: hidden;
  z-index: 1000;
}
.anim-card,
.card__photo,
.slider,
.stage {
  overflow: hidden;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 3.2rem;
}
.header__mobile-nav-menu {
  font-family: Montserrat;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__mobile-nav-menu > li {
  border-bottom: 1px solid #f0ede9;
  border-bottom: 1px solid var(--color-border);
}
.header__mobile-nav-link {
  color: #212a34;
  color: var(--body-color);
  display: block;
  padding: 1.6rem 1.6rem 1.6rem 0;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__mobile-nav-link:hover {
  color: #212a34;
  color: var(--body-color);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header__mobile-additional {
  margin: auto 0 0;
}
.header__mobile-city {
  margin: 0 0 0.8rem;
  position: relative;
}
.header__mobile-city-overlay {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 9rem;
  visibility: hidden;
}
.header__mobile-city-toggle {
  align-items: center;
  background: #f5f5f8;
  background: var(--color-light);
  border: 0.2rem solid #f5f5f8;
  border: 0.2rem solid var(--color-light);
  border-radius: var(--real-border-radius);
  color: #212a34;
  color: var(--body-color);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  height: 4.4rem;
  justify-content: center;
  line-height: 1.25;
  padding: 0.8rem 3.6rem 0.8rem 2.4rem;
  position: relative;
  transition: color 0.25s, background 0.25s;
}
.header__mobile-city-toggle:hover {
  background: #fff;
  color: #212a34;
  color: var(--body-color);
}
.header__mobile-city-offcanvas {
  background: #fff;
  border: 1px solid #f0ede9;
  border: 1px solid var(--color-border);
  border-radius: var(--real-border-radius);
  bottom: 100%;
  left: 0;
  margin: 0 0 0.8rem;
  max-width: calc(100vw - 3.2rem);
  opacity: 0;
  padding: 0 0.8rem 1.6rem;
  position: absolute;
  visibility: hidden;
  width: 100%;
}
.footer-bottom,
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.card__link,
.info .column::before {
  bottom: 0;
  left: 0;
  position: absolute;
}
.header__mobile-city-search {
  display: block;
  position: relative;
}
.header__mobile-city-search-input {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 1.8rem 5.6rem 1.8rem 1.2rem;
  width: 100%;
}
.header__mobile-city-search-btn {
  align-items: center;
  color: #212a34;
  color: var(--body-color);
  cursor: pointer;
  display: flex;
  height: 2.4rem;
  justify-content: center;
  margin: -1.2rem 0 0;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  width: 2.4rem;
}
.header__mobile-auth {
  margin: 0 0 0.8rem;
}
.footer-nav a:hover::after,
.header__mobile-auth .ui-btn {
  width: 100%;
}
.fancybox-content:has(.popup-cookies) {
  height: 100%;
  width: 100%;
}
.fancybox-content:has(.popup-insurance) {
  height: 100%;
  width: 100%;
}
.fancybox-content:has(.popup-certificates) {
  height: 100%;
  width: 100%;
}
.fancybox-container:has(.tariff-card__fancybox) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}
.fancybox-slide--html:has(.tariff-card__fancybox) {
  padding-top: 6.4rem;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 3rem #fff !important;
}
.col-lg-4:has(.sbp-feature__item) {
  margin-bottom: 1.2rem;
}
.col-lg-4:has(.sbp-possibilities__item) {
  margin-bottom: 1.2rem;
}
.ui-placeholder
  .ui-placeholder__select:has(.select2-selection__rendered:not(:empty))
  ~ label {
  display: flex;
  transform: scale(0.7) translateY(-0.6rem);
}
.overdraft-advantages__item:has(img) {
  display: flex;
  grid-column: span 3;
  padding: 0;
}
.overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
  padding: 3.2rem 0 3.6rem 2.8rem;
}
.overdraft-advantages__item:has(img) .overdraft-advantages__item-title {
  font-size: 2.8rem;
}
@media (max-width: 1199.98px) {
  .header__primary {
    display: none;
  }
  .overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
    padding: 2.4rem 0 2.4rem 2.4rem;
  }
  .overdraft-advantages__item:has(img) .overdraft-advantages__item-title {
    font-size: 2rem;
  }
  .overdraft-advantages__item:has(img) {
    grid-column: span 6;
  }
}
.ui-placeholder:has(.selectric-open) .ui-placeholder__label {
  transform: scale(0.7) translate(0.1rem, 0.8rem);
  width: -moz-fit-content;
  width: fit-content;
}
.calculator-deposit-period__radio-inner label:has(input:checked) {
  background-color: #33e771;
  background-color: var(--color-accent);
}
._ibg,
.doctors__content,
.footer-nav a,
.slider__wrap {
  position: relative;
}
.for-docs{cursor:pointer;}
@media (min-width: 1200px) and (max-width: 1400px) {
  .header:has(.current-lang[data-value="TJ"]) .ui-switch__check-btn {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) and (max-width: 1360px) {
  .header:has(.current-lang[data-value="TJ"]) .header__secondary {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .header__secondary-link {
    height: 5.6rem;
  }
  .header__section {
    position: relative;
  }
  .header__mobile {
    display: none;
  }
  .is-xl-hidden {
    display: none !important;
  }
  .header:has(.current-lang[data-value="TJ"]) .header__secondary-menu > li {
    margin-right: 1rem;
  }
}
.ebs-request .col-xl-12:has(.ui-check__checkbox) {
  padding-bottom: 1.6rem;
}
.ebs-request .col-xl-12:has(.ui-check__checkbox) .ui-check {
  margin-bottom: 0;
}
.ebs-request .col-xl-12:has(.ui-check__checkbox) .ui-check ul {
  padding: 0 0 0 1.6rem;
}
.fancybox-container:has(#popup-products-payments) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}
.header__mobile-offcanvas,
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
@media (max-width: 639.98px) {
  #tariff-cifra .tariff-card__conditions--wide:has(table) {
    margin: 0 -1.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1.6rem;
    width: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #tariff-cifra .tariff-card__conditions--wide:has(table)::-webkit-scrollbar {
    display: none;
  }
  #tariff-cifra .tariff-card__conditions--wide:has(table) table {
    min-width: 64rem;
  }
  .col-xl-12:has(.feedback-switch) {
    flex-grow: 1;
    margin: 0 -1rem;
    padding: 0 !important;
  }
}
footer {
  background: #012e64;
}
.socials a {
  width: 45px;
  height: 40px;
  background-color: rgb(216, 216, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--real-border-radius);
  transition: 0.25s;
}
.socials a:hover svg path {
  transition: 0.25s;
  fill: var(--color-red) !important;
  stroke: var(--color-red) !important;
}
.socials a:hover {
  background: 0 0;
  border: 1px solid var(--color-red);
}
.footer-nav {
  color: #cfd6dc;
}
:root {
  --color-red: #e3444b;
  --color-blue-light: #3f6e98;
  --color-blue-dark: #012e64;
  --text-soft: #cfe0f3;
  --swiper-theme-color: #007aff;
}
.site-footer {
  color: #fff;
  background: radial-gradient(
      1200px 500px at 20% -10%,
      rgba(63, 110, 152, 0.35),
      transparent 70%
    ),
    radial-gradient(
      800px 400px at 100% 0,
      rgba(227, 68, 75, 0.2),
      transparent 70%
    ),
    linear-gradient(180deg, var(--color-blue-dark) 0, #041d41 100%);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 2fr;
  padding: 48px 10px 24px;
}
.footer-brand {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--section-border-radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.footer-logo img {
  height: 100px;
  margin-inline:auto;
  width: auto;
  display: block;
  filter: brightness(1000%);
}
.footer-tagline {
    text-align:center;
  margin: 14px 0 18px;
  color: var(--text-soft);
  line-height: 1.5;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-nav .col {
  border-radius: var(--section-border-radius);
  padding: 20px;
}
.footer-nav h3 {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 700;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin: 13px 0;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.25s;
}
.footer-nav .contacts li span,
.footer-nav a:hover {
  color: #fff;
}
.copy,
.footer-nav .contacts li,
.pay {
  color: #FFF;
}
.footer-bottom {
  max-width: 1320px;
  margin: 16px auto 0;
  padding: 16px 10px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pay,
.pay-badges {
  align-items: center;
}
.pay {
  display: flex;
  gap: 14px;
}
.pay-badges,
footer .socials div {
  gap: 10px;
  display: flex;
  justify-content:center;
}
.pay-badges svg {
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: var(--real-border-radius);
}
.pay-badges svg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
    padding: 2rem 0 2.4rem 1.6rem;
  }
  li:has(.tabs-btn.is-active) {
    background: #fff;
    position: relative;
  }
  li:has(.tabs-btn.is-active):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23212A34' fill-rule='evenodd' d='M18.73 7.316a1 1 0 0 1-.046 1.413l-8.526 8a1 1 0 0 1-1.41-.041L5.274 13.02a1 1 0 0 1 1.452-1.375l2.79 2.944 7.8-7.32a1 1 0 0 1 1.413.046' clip-rule='evenodd'/%3E%3C/svg%3E");
    content: "";
    display: block;
    height: 2.4rem;
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
footer .socials a:hover {
  background: var(--color-blue-light);
  border: var(--color-blue-light);
}
footer .socials a:hover svg path {
  fill: #fff !important;
  stroke: #fff !important;
}
footer .socials {
  color: #a2a2a2;
  margin-top: 30px;
}
.oxo-h1,.oxo-h1-inner {
    font-weight:500;
  font-size: 28px !important;
  line-height: 48px !important;
  margin-bottom: 25px ;
}
.oxo-h1-inner{margin-bottom:25px !important;}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
#doctors {
  --le-color-primary: #012e64;
  --le-color-primary-2: #96cfd0;
  --le-color-primary-3: #63d7df;
  --le-color-primary-4: #a2e5ea;
  --le-color-bg: #f0f5f6;
  --le-color-gray: #d6d6d6;
  --le-color-secondary: #f85077;
  --le-color-black: #000;
  --le-color-white: #fff;
  --ff-heading: "Heliosext", Arial, sans-serif;
  --ff-text: "Mulish", Arial, sans-serif;
  --le-color-primary-hover-bg: #e2f5f6;
  --le-color-primary-hover-text: #012e64;
  --le-color-primary-disabled-bg: #80d3d5;
  --le-color-primary-disabled-text: #fff;
  --le-color-secondary-hover-bg: #ffeef2;
  --le-color-secondary-disabled-bg: #ffeef2;
  --color-black-text: #1b1b26;
  --color-bg: #f0f5f6;
  --border: 1px solid var(--color-blue-dark);
  --border-radius: 60px;
  --border-radius-small: 40px;
  --container-width: 1332px;
  --color-black: #000000;
  --color-black-text: #1b1b26;
  --color-white: #ffffff;
  --color-primary: #012e64;
  --color-primary-hover: #e2f5f6;
  --color-primary-disabled: #80d3d5;
  --color-secondary: #f85077;
  --color-secondary-hover: #ffeef2;
  --color-secondary-disabled: #fe8ea8;
  --color-bg: #f0f5f6;
  --border: 1px solid var(--color-blue-dark);
  --border-radius: 60px;
  --border-radius-small: 40px;
  --font-family-base: "Heliosext", Arial, sans-serif;
  --font-family-m: "Mulish", Arial, sans-serif;
  --container-width: 1332px;
  padding: 50px 0;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.arrow__pulse::after,
.card__photo img {
  left: 50%;
  transform: translate(-50%, -50%);
}
.title {
  font-size: clamp(26px, 3.0769230769vw, 40px);
  line-height: 130%;
  color: var(--color-black);
  margin-bottom: 32px;
  font-weight: 700;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--real-border-radius);
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  font-size: clamp(12px, 1vw, 13px);
}
.button svg,
.button-filled-primary svg {
  transition: 0.3s;
}
.button-filled-primary {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  transition: 0.3s;
}
.button-filled-primary:active {
  background-color: var(--color-primary-disabled);
  color: var(--color-white);
  transition: 0.3s;
}
.button-filled-primary:active svg path {
  stroke: var(--color-white);
  transition: 0.3s;
}
.arrow__pulse {
  position: absolute;
  top: 25px;
  right: 35px;
  border: 3px solid var(--color-blue-dark);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s;
}
.card__inner,
.card__photo {
  position: relative;
  margin-bottom: 24px;
}
.arrow__pulse::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  top: 50%;
  background-color: inherit;
  border: 1px solid var(--color-blue-dark);
  border-radius: 50%;
  opacity: 0;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.card {
  height: 100%;
  display: grid;
  border: none;
}
.card__photo {
  display: block;
  background-color: #43b7fcb0;
  border-radius: 200px 70px 250px 200px;
  height: 100%;
  padding-top: 280px;
}
.card__name {
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (hover: hover) {
  .button-filled-primary:hover svg,
  .button:hover svg {
    transform: translateX(5px);
    transition: 0.3s;
  }
  .button-filled-primary:hover svg path,
  .button:hover svg path {
    stroke: var(--color-blue-dark);
    transition: 0.3s;
  }
  .button-filled-primary:hover {
    background-color: #a9d0dc;
    color: var(--color-blue-dark);
  }
  .card__photo:hover .arrow__pulse {
    opacity: 1;
  }
  .card__photo:hover .arrow__pulse::after {
    animation: 2s ease-in-out infinite pulse;
  }
  .card__name:hover {
    color: var(--color-blue-dark);
    transition: 0.3s;
  }
}
.card__post {
  color: var(--color-blue-dark);
  margin-bottom: 10px;
  font-size: 13px;
}
.eyebrow,
h1 {
  color: var(--primary);
}
.card__description,
.card__experience {
  font-size: clamp(14px, 1.1538461538vw, 15px);
}
.card__experience {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 141%;
  font-family: var(--font-family-m);
}
.card__description {
  font-weight: 500;
}
@keyframes identifier {
  100%,
  75% {
    transform: scale(2);
    opacity: 0;
  }
}
.slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.slider__buttons {
  width: 120px;
  position: absolute;
  top: -60px;
  right: 0;
}
@media (max-width: 768px) {
  .arrow__pulse,
  .arrow__pulse::after {
    opacity: 1;
  }
  .card__photo img {
    max-width: 185px;
  }
  .card__photo {
    padding-top: 200px;
  }
  .slider__wrap {
    margin-bottom: 20px;
  }
  .slider__buttons {
    display: none;
  }
}
.slider__wrap .swiper-button-next,
.slider__wrap .swiper-button-prev {
  top: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-black-text);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.slider__wrap .swiper-button-next {
  right: 0;
}
.slider__wrap .swiper-button-prev {
  transform: rotate(180deg);
}
.card__photo img {
  max-width: 300px;
  top: 60%;
}
@media (max-width: 768px) {
  .card__photo img {
    max-width: 210px;
    top: 50%;
  }
}
.branches__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.branches__head a {
  border-radius: var(--real-border-radius);
  display: inline-block;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-blue-light);
}
.branches__head a:hover {
  background-color: var(--color-blue-dark);
}
.info.section {
  padding: 40px 0 0;
}
.info .row-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap:12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.info .column,
.info .info-caption .caption-bottom .icons .like div svg {
  display: block;
}
.info .row-section .column {
  margin-bottom: 18px;
}
.info .column::before {
  content: "";
  background: linear-gradient(
    #7663690a 0,
    #76636936 27%,
    #0000005c 55%,
    #000000cf 100%
  );
  right: 0;
  top: 0;
  display: block;
  z-index: 0;
  border-radius: var(--real-border-radius);
  -webkit-border-radius: var(--real-border-radius);
  -moz-border-radius: var(--real-border-radius);
  -ms-border-radius: var(--real-border-radius);
  -o-border-radius: var(--real-border-radius);
}
.anim-card,
.anim-wrap,
.hero,
.info .column,
.stage {
  position: relative;
}
.info .column {
  width: 24%;
  height: 260px;
  color: #fff;
  border-radius: var(--real-border-radius);
  -webkit-border-radius: var(--real-border-radius);
  -moz-border-radius: var(--real-border-radius);
  -ms-border-radius: var(--real-border-radius);
  -o-border-radius: var(--real-border-radius);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.info .info-caption,
.oxo-action-block {
  display: -webkit-box;
  display: -ms-flexbox;
}
.info .column:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.info .column .column-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 16px;
}
.info .info-img {
  width: 100%;
  position: absolute;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  bottom: 0;
  border-radius: var(--real-border-radius);
  -webkit-border-radius: var(--real-border-radius);
  -moz-border-radius: var(--real-border-radius);
  -ms-border-radius: var(--real-border-radius);
  -o-border-radius: var(--real-border-radius);
}
.info .info-caption {
  height: 100%;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.info .info-caption .caption-top span {
  font-size: 11px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--real-border-radius);
  display: inline-block;
  padding: 4px 8px;
}
.info .info-caption .caption-bottom h4 {
  font-size: 18px;
}
.info .info-caption .caption-bottom .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}
.info .info-caption .caption-bottom .icons .like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info .info-caption .caption-bottom .icons .like > * + * {
  margin-left: 4px;
}
.info .info-caption .caption-bottom .icons .like div {
  padding: 6px 8px;
  background: 0 0;
  border-radius: var(--real-border-radius);
}
.info .info-caption .caption-bottom .icons .like div:hover {
  background: rgba(255, 255, 255, 0.3);
}
.info .info-caption .caption-bottom .icons .view span {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .info .column {
    width: 49%;
  }
}
@media (max-width: 576px) {
    .oxo-top{display:block !important;}
    .doc-card img{display:none!important;}
    .oxo-action-block:before{display:none !important;}
    .oxo-action-block{padding-bottom:24px !important;}
    .oxo-action-block__buttons, .oxo-action-block__content{width:100% !important;}
  .main-services{
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr)) !important;
  }
  .info .column {
    width: 100%;
  }
}
  
.full-tags {
    width: 100%;
    border: 2px dashed #dedede;
    border-radius: 10px;
    padding: 30px;
    color: white;
    margin-top:40px;
}
.full-tags span {
    display: inline-block;
    color: #666;
    font-size: 14px;
    padding: 8px 25px;
    margin: 4px 5px 4px 5px;
    background-color: #f1f1f1;
    border-radius: 20px;
    pointer-events:none
}

.blog-content ul li::marker,
.psico-full ul li::marker {
  color: #00d182;
}
.page-index .benefit-layer {
  padding: 100px 0 40px;
}
.page-index .benefit-layer > .text {
  max-width: 790px;
  margin: 40px auto;
}
.page-index .benefit-layer .benefit-layer__block .count {
  color: #e3444b;
  font-size: 30px;
  font-weight: 700;
  padding: 50px 0;
}
.page-index .benefit-layer .benefit-layer__block .count.c1 {
  background: url(https://www.clinicanomer1.ru//local/templates/www/assets/img/index/why_ico_1.jpg)
    center center no-repeat;
}
.page-index .benefit-layer .benefit-layer__block .count.c2 {
  background: url(https://www.clinicanomer1.ru//local/templates/www/assets/img/index/why_ico_2.png)
    center center no-repeat;
}
.page-index .benefit-layer .benefit-layer__block .count.c3 {
  background: url(https://www.clinicanomer1.ru//local/templates/www/assets/img/index/why_ico_3.png)
    center center no-repeat;
}
.page-index .benefit-layer .benefit-layer__block .count.c4 {
  background: url(https://www.clinicanomer1.ru//local/templates/www/assets/img/index/why_ico_4.png)
    center center no-repeat;
}
.page-index .benefit-layer .benefit-layer__block .text {
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}
.hero {
  --primary: #012e64;
  --accent: #e3444b;
  --text: #0b0f1a;
  --muted: #5e6a82;
  --bg: #f7f9fc;
  --card: #ffffff;
  --ring: rgba(32, 59, 108, 0.12);
  isolation: isolate;
  padding-bottom: clamp(28px, 6vw, 64px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  background: rgba(32, 59, 108, 0.06);
  border: 1px solid rgba(32, 59, 108, 0.12);
  border-radius: var(--section-border-radius);
}
.eyebrow::before {
  animation-name: identifier;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  content: "";
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  background: var(--accent);
}
h1 {
  margin: 16px 0 10px;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 48px);
}
.lead {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.6;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#main-button,
.btn {
  align-items: center;
}
.btn {
  --_bg: var(--primary);
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--real-border-radius);
  border: 1px solid rgba(10, 20, 40, 0.12);
  background: var(--_bg);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.2s;
  box-shadow: 0 8px 30px -10px rgba(32, 59, 108, 0.35);
}
.anim-wrap,
.orbit {
  display: grid;
  place-items: center;
}
.btn:hover {
  transform: translateY(-1px);
}
.fg,
.ringA .orb {
  left: 50%;
  transform: translateX(-50%);
}
.btn-outline {
  --_bg: transparent;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--ring);
  box-shadow: 0 8px 26px -14px rgba(32, 59, 108, 0.25);
  font-size: 16px;
}
.btn-accent {
  --_bg: var(--accent);
  box-shadow: 0 10px 30px -10px rgba(231, 78, 83, 0.45);
  font-size: 16px;
}
.anim-wrap {
  padding: clamp(10px, 2.4vw, 16px);
}
.anim-card {
  width: min(520px, 100%);
  aspect-ratio: 1/1;
  background: var(--card);
  border-radius: var(--section-border-radius);
}
.stage,
.video {
  width: 100%;
  height: 100%;
}
.orbit,
.video {
  position: absolute;
}
.video {
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.ringA,
.ringB,
.ringC {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(32, 59, 108, 0.35);
}
.orb,
.ring-blur {
  position: absolute;
  border-radius: 50%;
}
.ringA {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 4px 10px rgba(32, 59, 108, 0.18));
}
.ringB {
  width: 58%;
  height: 58%;
  border-style: solid;
  border-color: rgba(231, 78, 83, 0.45);
}
.ringC {
  width: 38%;
  height: 38%;
  border-style: dotted;
  border-color: rgba(32, 59, 108, 0.28);
}
.orb {
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(231, 78, 83, 0.18);
}
.orb.blue {
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(32, 59, 108, 0.16);
}
.spinA {
  animation: 10s linear infinite spin;
}
.spinB {
  animation: 14s linear infinite reverse spin;
}
.spinC {
  animation: 18s linear infinite spin;
}
.ringA .orb {
  top: -7px;
}
.ringB .orb {
  bottom: -7px;
  left: 8%;
}
.ringC .orb {
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fg {
  position: absolute;
  inset: auto;
  width: 58%;
  max-width: 320px;
  object-fit: contain;
  bottom: 0;
  left:50%;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(32, 59, 108, 0.25));
}
.ring-blur {
  inset: auto auto -18px -18px;
  width: 120px;
  height: 120px;
  border: 8px solid rgba(32, 59, 108, 0.08);
  outline: rgba(231, 78, 83, 0.1) solid 12px;
  filter: blur(1px);
}
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .anim-wrap {
    order: -1;
  }
  .anim-card {
    aspect-ratio: 16/12;
  }
  .fg {
    width: 52%;
    bottom: 6%;
  }
}
#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
#main-button,
#main-button ~ a,
#main-button ~ button {
  right: 0;
  height: 50px;
  cursor: pointer;
}
#main-button,
#main-button ~ a,
#main-button ~ button,
.oxo-action-block:before {
  position: absolute;
  bottom: 0;
}
#main-div .fa-phone-alt {
  margin-right: 8px;
}
#main-button {
  display: flex;
  justify-content: center;
  width: 50px;
  font-size: 20px;
  color: #0064f3;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid var(--color-blue-dark) !important;
}
#main-button ~ button {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  font-weight: 600;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(90deg, #00a1f5, #0064f3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border: 0;
  z-index: -1;
  opacity: 0;
  white-space: nowrap;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  border-radius: var(--real-border-radius);
  -webkit-border-radius: var(--real-border-radius);
  -moz-border-radius: var(--real-border-radius);
  -ms-border-radius: var(--real-border-radius);
  -o-border-radius: var(--real-border-radius);
}
.about-container {
  margin-block: 50px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-right img {
  height: 100%;
  object-fit: cover;
}
.about-img {
  width: 100%;
  border-radius: var(--section-border-radius);
  display: block;
}
.about-left .about-img {
  min-width: 280px;
  width:100%;
}
.about-right .about-img {
  height: 100%;
  min-width:280px;
}
.about-content {
  color: #1e293b;
}
.about-subtitle {
  color: #3f6e98;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-text {
    word-spacing:2px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
h5{margin-bottom:20px;}
.about-list {
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 25px;
  font-weight: 500;
}
.about-list p{line-height:25px;margin-bottom:10px;}
.oxo-action-block__buttons .oxo-btn:last-child,
.oxo-action-block__content-text {
  margin-bottom: 0;
}
.about-btn {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--real-border-radius);
  text-decoration: none;
  transition: background 0.3s;
}
@media (max-width: 900px) {
    .header__primary-menu{display:none;}
    .header__section:nth-of-type(2){padding-top:48px;background:#fafafa;}
    .about-images,.actions,.hero{justify-content:center;text-align:center;}
    .about-left{flex-wrap:wrap;}
    .about-right{display:none;}
    .oxo-h1{font-size:24px;}
  .about-images {
    width: 100%;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    flex-wrap:wrap;
  }
  .about-left {
    flex-direction: row;
    gap: 10px;
  }
  .about-list {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.about-images {
  display: flex;
  gap: 30px;
  align-items: center;
}
#main-button.open ~ button {
  visibility: visible;
  z-index: 100;
  right: 70px;
  opacity: 1;
  transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
}
#main-button ~ .telegram-color {
  background: linear-gradient(0deg, #017ab1, #01abe6);
}
#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00b100, #09db09);
}
#main-button ~ .messenger-color {
  background: linear-gradient(0deg, #0078ff, #00c6ff);
}
#main-button.open ~ a {
  opacity: 1;
  transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:first-of-type {
  bottom: 60px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}
.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.open {
  animation-iteration-count: 1;
}
.oxo-section-action-block {
  padding-top: 180px;
}
.oxo-action-block {
  position: relative;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 232px;
  padding-right: 160px;
  background: linear-gradient(90deg, #42bafd, #336cc9);
  border-radius: var(--section-border-radius);
}
.oxo-action-block:before {
  content: "";
  left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 285px;
  height: 360px;
  background: url("/img/call2.webp")
    center/contain no-repeat;
}
.oxo-action-block__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 350px;
  color: #fff;
}
.oxo-action-block__content .oxo-action-block__content-title {
  margin-bottom: 24px;
}
.oxo-action-block__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 280px;
  margin-left: 70px;
}
.oxo-action-block__buttons .oxo-btn {
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 1399px) {
  .oxo-action-block {
    padding-right: 60px;
  }
  .oxo-action-block:before {
    left: 35px;
  }
}
@media (max-width: 1199px) {
  .oxo-action-block {
    min-height: 200px;
    padding-right: 40px;
  }
  .oxo-action-block:before {
    width: 240px;
    height: 303px;
  }
  .oxo-action-block__buttons {
    margin-left: 20px;
  }
  .oxo-action-block__content {
    width: 314px;
  }
  .oxo-action-block__content-title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .oxo-action-block__buttons,
  .oxo-action-block__content {
    width: 320px;
    margin-left: auto;
  }
  .oxo-section-action-block {
    padding-top: 80px;
  }
  .oxo-action-block {
    padding: 40px 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .oxo-action-block__content {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .oxo-action-block {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 250px;
  }
  .oxo-action-block:before {
    width: 173px;
    height: 218px;
    left: 60px;
  }
  .oxo-action-block__buttons,
  .oxo-action-block__content {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .oxo-section-action-block {
    padding-top: 40px;
  }
  .oxo-action-block {
    padding: 24px 24px 230px;
    border-radius: var(--section-border-radius);
  }
  .oxo-action-block__buttons,
  .oxo-action-block__content {
    width: 280px;
  }
  .oxo-action-block__content .oxo-action-block__content-title {
    margin-bottom: 8px;
  }
  .oxo-action-block:before {
    left: 24px;
  }
}
.oxo-section {
  margin-top: 6rem !important;
}
@media (max-width: 399px) {
  .oxo-action-block__buttons,
  .oxo-action-block__content {
    width: 100%;
  }
}
.oxo-section,
.oxo-section-bg {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .oxo-section,
  .oxo-section-bg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.oxo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 44px;
  padding: 0 20px;
  font-size: var(--body-text-font-size);
  font-weight: 500;
  line-height: var(--body-text-line-height);
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--primary-color);
  border: 1px solid transparent;
  outline: 0;
  border-radius: var(--real-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: 0.3s ease-in-out;
}
.oxo-btn:active,
.oxo-btn:focus,
.oxo-btn:hover {
  color: #fff;
  background-color: var(--dark-blue-2);
}
.oxo-btn:disabled {
  cursor: default;
  background-color: var(--dark-blue-4);
}
.oxo-btn-light {
  color: var(--primary-color);
  background-color: #fff;
}
.oxo-btn-light:active,
.oxo-btn-light:focus,
.oxo-btn-light:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.oxo-btn-light-alt {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.oxo-btn-light-alt:active,
.oxo-btn-light-alt:focus,
.oxo-btn-light-alt:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.oxo-btn-icon svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.oxo-primary-bg {
  background: var(--back-gradient);
  background-size: cover;
}
      :root {
        --color-red: #e3444b;
        --color-blue-light: #3f6e98;
        --color-blue-dark: #012e64;
      }
      .license-section {
        color: #fff;

        padding: 56px 20px;
        position: relative;
        overflow: hidden;
      }
      .license-section::after {
        content: "";
        position: absolute;
        inset: auto -20% -40% -20%;
        height: 60%;
        filter: blur(60px);
        pointer-events: none;
        background: radial-gradient(
          60% 60% at 70% 50%,
          rgba(227, 68, 75, 0.12),
          transparent 60%
        );
      }
      .license-container {
        display: grid;
        gap: 28px;
        align-items: stretch;
        grid-template-columns: 1.2fr 0.8fr;
        background: linear-gradient(90deg, #42bafd, #336cc9);
        padding: 40px 25px;
        border-radius: var(--section-border-radius);
        position: relative;
      }
      .license-left h2 {
        margin: 10px 0 8px;
        font-size: 32px;
        line-height: 1.2;
      }
      .license-left .sub {
        color: #fff;
        margin: 0 0 18px;
        max-width: 640px;
      }
      .badge {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 8px 12px;
        border-radius: 999px;
        background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.14),
          rgba(255, 255, 255, 0.06)
        );
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: saturate(130%) blur(4px);
      }
      .facts {
        list-style: none;
        padding: 0;
        margin: 14px 0 22px;
        display: grid;
        gap: 8px;
      }
      .facts li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: #fff;
      }
      .facts svg {
        color: #69d39e;
        flex: 0 0 20px;
        margin-top: 2px;
      }
      .license-cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin: 18px 0 10px;
      }

      .btn {
        --bg: linear-gradient(180deg, #245a99, #1f3f77);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        border-radius: var(--real-border-radius);
        text-decoration: none;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28),
          inset 0 1px 0 rgba(255, 255, 255, 0.12);
        background: var(--bg);
        transition: transform 0.15s ease, box-shadow 0.15s ease,
          border-color 0.2s ease;
        font-size: 16px;
      }
      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
        border-color: rgba(255, 255, 255, 0.25);
      }
      .btn-primary {
        background: var(--color-red) !important;
      }
      .btn-ghost {
        --bg: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.06)
        );
      }

      .license-meta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        color: #fff;
        font-size: 14px;
        opacity: 0.9;
      }

      .license-right {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: absolute;
        bottom: 0;
        right: 10%;
      }
      .doc-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
      }
      .doc-card img {
        width: 100%;
        height: 400px;
        display: block;
        object-fit: contain;
      }
      .doc-stamp {
        position: absolute;
        top: 12px;
        left: 12px;
        display: inline-flex;
        gap: 8px;
        align-items: center;
        padding: 8px 10px;
        font-size: 12px;
        border-radius: var(--real-border-radius);
        background: rgba(1, 46, 100, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.18);
      }
      .doc-actions {
        position: absolute;
        right: 12px;
        bottom: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .mini-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        text-decoration: none;
        border-radius: var(--real-border-radius);
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: background 0.15s ease, transform 0.15s ease;
      }
      .mini-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
      }
      .mini-btn.alt {
        background: linear-gradient(
          180deg,
          rgba(227, 68, 75, 0.28),
          rgba(227, 68, 75, 0.16)
        );
      }

      .thumbs {
        display: flex;
        gap: 8px;
        opacity: 0.95;
      }
      .thumbs img {
        width: 28%;
        border-radius: var(--real-border-radius);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: #0b2a58;
        object-fit: cover;
        aspect-ratio: 3/4;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
      }
      .thumbs img:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
      }

      @media (max-width: 960px) {
        .license-container {
          grid-template-columns: 1fr;
        }
      }
/*feedback*/
      .map-content-wrapper .map-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 413px;
        border-radius: var(--section-border-radius);
        overflow: hidden;
      }
      .map-content-wrapper .map {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 406px);
        flex: 0 0 calc(100% - 406px);
        max-width: calc(100% - 406px);
        width: 794px;
        overflow:hidden;
        height: 413px;
      }
      .map-content-wrapper .clinic-contacts {
        width: 406px;
        height: 413px;
        padding: 54px 86px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-top-right-radius: var(--section-border-radius);
        border-bottom-right-radius: var(--section-border-radius);
        background-color: #e5f7fd;
      }
      .contacts-single .map-content-wrapper .clinic-contacts {
        padding: 10px 50px;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 10px;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact:last-of-type {
        margin-bottom: 27px;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact:before {
        content: "";
        padding-right:66px;
        width: 66px;
        height: 66px;
        margin-right: 13px;
        background-color: #f2faff;
        border-radius: 50%;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact-phone:before {
        content: "";
        background: #f2faff url("/img/icon-phone.svg") no-repeat center;
        background-size: 35px 35px;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact-mail:before {
        content: "";
        background: #f2faff url("/img/icon-mail.svg") no-repeat center;
        background-size: 40px 40px;
      }
      .map-content-wrapper .clinic-contacts .clinic-contact-social:before {
        content: "";
        background: #f2faff url("/img/icon-chat.png") no-repeat center;
        background-size: 40px 40px;
      }
      .map-content-wrapper .clinic-contact-body .clinic-contact-label {
        margin-bottom: 2px;
        font-size: 12px;
        font-weight: 500;
        color: #6c6a6a;
      }
      .map-content-wrapper .clinic-contact-body .clinic-contact-value {
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: #333333;
      }
      .map-content-wrapper .clinic-contact-body .clinic-contact-value a {
        color: #333333;
      }
      .map-content-wrapper .clinic-contact-value:hover a {
        color: #3498db;
        text-decoration: none;
      }
      .map-content-wrapper .clinic-contact-social-list {
          padding-left:0;
        display: flex;
        justify-content: flex-start;
        gap:6px;
        margin-bottom: 0;
        list-style-type: none;
      }
      .map-content-wrapper .clinic-contact-social-list li {
        margin-right: 5px;
        padding-left: 0;
      }
      .map-content-wrapper .clinic-contact-social-list li:last-child {
        margin-right: 0;
      }
      .map-content-wrapper .clinic-contact-social-list li:before {
        display: none;
      }
      .map-content-wrapper .clinic-contact-social-list li a {
        display: block;
      }
      .map-content-wrapper .clinic-contact-social-list li a {
        width: 30px;
        height: 30px;
        transition: all 0.3s;
      }
      .map-content-wrapper .clinic-contact-social-list li a:hover {
        transform: translateY(4px);
      }
      @-webkit-keyframes clinic-contact-animation {
        0% {
          background-position: center;
        }
        25% {
          background-position: 50% 25%;
        }
        75% {
          background-position: 50% 75%;
        }
        100% {
          background-position: center;
        }
      }
      @keyframes clinic-contact-animation {
        0% {
          background-position: center;
        }
        25% {
          background-position: 50% 25%;
        }
        75% {
          background-position: 50% 75%;
        }
        100% {
          background-position: center;
        }
      }
      .map-content-wrapper .clinic-contacts .clinic-contact:hover:before {
        -webkit-animation: clinic-contact-animation 0.3s;
        animation: clinic-contact-animation 0.3s;
      }
      .map-content-wrapper .intec-ui-control-button {
        width: 100%;
      }
      .map-content-wrapper .clinic-contact-callback {
        display: flex;
      }
      @media (max-width: 991px) {
        .map-content-wrapper .map {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(100% - 320px);
          flex: 0 0 calc(100% - 320px);
          max-width: calc(100% - 320px);
        }
        .map-content-wrapper .clinic-contacts,
        .contacts-single .map-content-wrapper .clinic-contacts {
          width: 320px;
          padding: 10px;
          background-color: #fff;
        }
      }
      @media (max-width: 767px) {
        .map-content-wrapper {
          padding-top: 0;
          padding-bottom: 0;
          background-color: #fff;
        }
        .map-content-wrapper .map-content {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          height: auto;
          border-radius: 0;
        }
        .map-content-wrapper .container {
          padding-left: 0;
          padding-right: 0;
        }
        .map-content-wrapper .map {
          height: 413px;
        }
        .map-content-wrapper .clinic-contacts {
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          padding: 0;
          padding-bottom: 50px;
          height: auto;
        }
        .map-content-wrapper .map,
        .map-content-wrapper .clinic-contacts {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .map-content-wrapper .clinic-contact,
        .map-content-wrapper .intec-ui-control-button {
          width: 300px;
        }
        .map-content-wrapper .clinic-contacts .clinic-contact {
          justify-content: flex-start;
        }
        .contacts-single .map-content-wrapper .map {
          padding-left: 20px;
          padding-right: 20px;
          height: 300px;
        }
        .contacts-single .map-content-wrapper .clinic-contacts {
          padding-top: 10px;
          padding-bottom: 40px;
        }
      }
      @media (max-width: 575px) {
        .map-content-wrapper .clinic-contacts {
          padding-top: 0px;
          height: auto;
        }
      }
      .map-content-wrapper .clinic-contact-social-list li a {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
      }
      form-feedback {
    background: #fff;
    padding: 3rem 4rem;
    margin-top: 4rem;
    border-radius: 0.4rem;
}

.form-feedback h2 {
margin-bottom:3px !important;    
}

.form-feedback p {
    color: #898686;
    line-height: 1.3;
    font-size: 1rem;
}
.bgmy{background:#f2f2f2;}
.form-feedback input:not([type="checkbox"]),
.form-feedback textarea{
    border-radius:var(--real-border-radius);
    width: 100%;
    padding: 1.2rem 0 1.2rem 1rem;
    outline: none;
    border:none;
}

.form-feedback textarea {
    height: 150px;
    min-height: 140px;
}
.may-margin{margin-top:80px;}
/*speedbar*/
.over{padding-top:20px;font-size:16px;}
.speedbar,#speedbar{margin-top:10px;}
/*pagination*/
/* PAGINATION STYLE */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}
.page_next-prev i{display:none;}
.page_next-prev a i{display:block !important;}
.pagination a,
.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: #f0f0f0;
}

.pagination .nav_ext {
  pointer-events: none;
  opacity: 0.6;
}

/* Active page (current) */
.pagination span {
  border: 1px solid #1a1a1a;
  font-weight: 600;
}
/*otzivi*/

.review {
    margin-bottom:15px;
  border-radius: var(--section-border-radius);
  background-color: #F5F5F8;
  padding: 32px;
}
.review header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.review header time {
  color: var(--color-blue-dark);
  font-size: 13px;
  font-weight: 700;
}
.review header p {
    margin-bottom:0;
  font-weight: 700;
}
.review blockquote p {
  line-height: 141%;
}
@media (max-width: 768px) {
  .review {
    padding: 16px;
    border-radius: 32px;
  }
}
/*blog full*/
@media (max-width: 992px) {
    .leftAll_article h1 {
        font-size: 20px!important;
    }
}
@media (max-width: 768px) {
  .leftAll_article img {
        margin-bottom: 20px!important;
    }
}
.check_desc ul li::marker {
  content: "\2713";
}
/*blog inner*/
.extratexts_both {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 1.5rem;
}

.blog_filter_box {
    background: #fff;
    padding: 20px;
    margin-bottom: 45px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    position: sticky;
    top: 150px;
}

.blog_filter_box h3 {
    color: #0c4c93;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    font-size: 20px;
}

.blog_filter_box h3:before {
    position: absolute;
    content: "";
    width: 30px;
    border-bottom: 3px solid var(--color-blue-dark);
    bottom: 0;
    left: 0;
}

.blog_filter_box h3:after {
    position: absolute;
    content: "";
    width: 5px;
    border-bottom: 3px solid var(--color-blue-dark);
    bottom: 0;
    left: 35px;
}

.blog_filter_list {
    padding: 0 10px;
    max-height: 350px;
    height: 100%;
    overflow-y: auto;
}

.blog_filter_list li:not(:last-child) {
    border-bottom: 1px solid var(--color-blue-dark);
}
.blog_filter_list li {
    display: block;
    color: #0c4c93;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.blog_filter_list li a {
    color: var(--color-blue-dark);
    line-height: 28px;
    transition:.3s;
}
.blog_filter_list li:hover a{color:var(--color-blue-light);}

.left-full,
.left-full p {
    line-height: 28px;
}

.check_desc ul li::marker {
    content: "\2713";
}


.leftAll_article {
    width: 70%;
    min-width:70%;
}

.left-full img {
    width: 24rem;
    height: 18rem;
    border-radius:var(--section-border-radius);
    object-fit: cover;
}

.blog_full img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.left-full > div{
    line-height: 28px;
}

@media (max-width: 992px) {
    
    .leftAll_article {
        width: 100%;
    }
}

@media (max-width: 768px) {
    
    .blog_filter_box {
        margin-top: 20px;
    }
    
    .extratexts_both {
        grid-template-columns: repeat(1,1fr)
    }
    
    .blog_full img {
        margin: 0 !important;
    }
    
    .left-full img {
        width: 100%;
        height: 13rem;
    }
}

/*blog-inner end*/
/*analys */
.analyses__block {
  box-shadow: 0 1px 2px 0 rgba(67, 162, 150, 0.15), 0 0 16px 0 rgba(113, 180, 177, 0.16);
  background: #F5F5F8;
  border-radius: var(--real-border-radius);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px 16px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .analyses__block {
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 24px;
  }
}
.analyses__info {
  flex-basis: 1000px;
}
.analyses__info_top {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.analyses__info_top h2{font-size:16px; font-weight:500;}
.analyses__info_top span {
  color: var(--color-blue-dark);
}
.analyses__info p {
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 16px;
}
.analyses__info_bottom {
  display: flex;
  gap: 10px 40px;
}
@media (max-width: 768px) {
  .analyses__info_bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .analyses__info {
    flex-basis: 100%;
  }
}
.analyses__item {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  gap: 7px;
}
.analyses__item img {
  flex: 0 0 auto;
  min-width: 15px;
  max-width: 15px;
  height: auto;
}
.analyses__item_inner h3 {
  margin-bottom: 5px;
}
.analyses__item_inner span {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
}
.analyses__cost {
  flex-basis: 160px;
}
.analyses__cost span {
  color: var(--color-blue-light);
  display: block;
  font-weight:bold;
}
.analyses__cost span:first-child,.analyses__cost span p {
  font-size: clamp(18px, 1.8461538462vw, 24px);
  display:flex;
   font-weight:bold;
   gap:5px;
}
.analyses__cost p {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  margin-bottom: 5px;
}
/*analys end*/
/*special cards*/
.fa-binoculars {
  font-size: 35px;
  color: #fff;
}

.fa-sun {
  font-size: 18px;
  margin-right: 5px;
  color: #bbbbbb;
  cursor: pointer;
}

.card-container {
  padding: 20px 20px 15px;
}

.card-info h2 {
  display: -webkit-box;
  text-align: start;
  color: var(--color-blue-dark);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-info h3 {
  color: #979797;
  font-size: 11px;
  font-weight: inherit;
  text-align: start;
  height: 26px;
}

.card-info-p {
  margin-top: 15px;
  margin-bottom: 10px;
  color: #5a5a5a;
  text-align: start;
  overflow-y: auto;
  max-height: 90px;
  min-height: 90px;
}

.card-bottom-1 {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-bottom: 10px;
}

.card-bottom-1-left {
  margin-top: 15px;
  color: #4b4b4b;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.card-bottom-1-left i {
  margin-right: 5px;
}

.card-bottom-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.card.special-card {
  position: relative;
}

/* 8-guşəli ulduz (iki kvadratın üst-üstə düşməsi) */
.discount-star{
  position:absolute;
  top:12px; right:12px;
  width:62px; height:62px;
  z-index:10;
}
.discount-star::before,
.discount-star::after{
  content:"";
  position:absolute; inset:0;
  background: var(--color-blue-dark);
  border-radius: 6px;  
  z-index:-1;
  /* guşələri bir az yumşaq göstərmək üçün */
}
.discount-star::after{
  transform: rotate(45deg);      /* ikinci kvadratı 45° fırlat → 8 guşə */
}

/* Mətni mərkəzdə saxla */
.discount-star > span{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:14px; line-height:1;
  text-align:center;
  pointer-events:none;
}

/* (İstəyə görə) az kölgə və kiçik döndürmə */
.discount-star{ filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
 .discount-star{ transform: rotate(22.5deg); } 
.card-bottom-2-right {
  color: var(--color-blue-dark);
  display: block;
  font-weight: 600;
  font-size: 21px;
  border-radius: 13px;
}
.card-bottom-2-right del {
  font-size: 16px;
}
.card-bottom-2-left button{border:none;background:transparent;}
.card-bottom-2-left-button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 25px;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #e9e5e5;
  border-radius: 22px;
  color: #000;
  font-size: 14px;
}

.card-bottom-2-left-button:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 30px;
}

.img-div {
  background-color: var(--color-blue-dark);
  border-radius: 22px;
  padding: 8px 8px;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 10px 10px 10px;
  color: #fff;
  white-space: nowrap;
}

.card-img {
  display: flex;
  align-items: flex-end;
  background: url("https://spotonvacation.com/wp-content/uploads/2021/12/47693822-1-1.jpg")
    center/cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-right: 10px;
  align-self: flex-end;
  height: 200px;
  flex-wrap: wrap;
  align-content: flex-end;
}
.special-card {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 30px;
}
.card-img {
  position: relative;
}
.card-img::before {
  content: "";
  position: absolute;
  background-color: #2a41aa75;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
  z-index: 999;
}
.card-img:hover::before {
  opacity: 1;
}
.card-img:hover .orta {
  opacity: 1;
}
.orta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-color: var(--color-blue-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
/*special cards end*/
/*vakansii*/

.item-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}
.cards-list {
    font-size: 14px;
    margin-top: 20px;
}
.cards-list ul{padding:8px 8px 8px 16px;list-style:disc;}
.cards-list li{margin-bottom:10px; font-size:16px !important;list-style:disc;}
.item-card__title {
  display: -webkit-box;            /* Включаем flex-контейнер в виде вебкит-бокса */
  -webkit-box-orient: vertical;    /* Ориентация бокса — вертикальная */
  -webkit-line-clamp: 2;           /* Максимум 2 строки */
  overflow: hidden;                /* Скрываем переполнение */
  text-overflow: ellipsis;         /* Добавляем троеточие в конце обрезанной строки */
}

.cards-list {
    margin-top: 16px;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.cards-list li {
  -webkit-box-orient: vertical;    /* Ориентация бокса — вертикальная */
  -webkit-line-clamp: 1;           /* Максимум 2 строки */
  text-overflow: ellipsis;         /* Добавляем троеточие в конце обрезанной строки */
}

.cards-list li:nth-child(n+5) {
  display: none;
}
.vakansiya-cards{
    position:relative;background:#F5F5F8;border-radius:var(--real-border-radius);
}
.badge-zmant {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 16px 0 16px;
  background: var(--color-blue-dark);
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;

  display: inline-block;      /* нужен блочный контекст для обрезки */
  max-width: 12ch;              /* ограничиваем ширину под 5 символов */
  white-space: nowrap;         /* запрещаем перенос строки */
  overflow: hidden;            /* обрезаем избыточный текст */
  text-overflow: ellipsis;     /* добавляем троеточие */
}

.item-card__zoom {
    transition: all 0.2s ease-in-out;
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.item-card__header {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: flex-end;
    width: 100%;
    padding: 0 !important;
}

.item-card__title {
    transition: all 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 10px 3px 10px;
    color: #000000;
}

.item-card__body {
    padding: 0 10px 10px 10px;
}

.item-card__body .short_info {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
}

.buynow-label {
    color: #0093AC;
    border: 1px solid #0093AC;
}

.buynow-label {
    border-radius: 2px;
    background: transparent;
    line-height: 1;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 5.92px 3px 5.92px;
    position: relative;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    margin-bottom: 0;
}

.item-card:hover .item-card__zoom {
    transform: scale(1.1);
}

.item-card:hover .item-card__title {
    color: var(--color-red);
}


.karyera-ic-sehife {
    background-color: #eee;
    padding: 120px 0
}

.karyera-ic-sehife img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px
}

.karyera-ic-sehife-basliq {
    color: #000;
    font-weight: 700;
    line-height: 110%;
    font-size: 2.5rem;
    padding: 20px 0
}
.ban-im{height:450px;border-radius:var(--section-border-radius);object-fit:cover;margin-bottom:20px;}
.karyera-elanin-tesviri ul li,
.karyera-is-barede-melumat ul li,
.karyera-melumatlandirici-qeydler ul li,
.karyera-namizede-telebler ul li {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Red_check.svg/1024px-Red_check.svg.png') 0 0/16px no-repeat;
    padding-left: 25px;
    background-position-y: center;
    color: #000;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.5
}

.karyera-ic-sehife-content p {
    color: #000;
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.5
}

.karyera-ic-sehife-content {
    display: flex;
    justify-content: space-between;
    gap: 25px
}

.karyera-ic-sehife-content-left,
.karyera-ic-sehife-content-right {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 4rem rgb(82 85 90 / 10%)
}

.karyera-ic-sehife-content-left {
    height: fit-content;
    width: 35%
}

.karyera-ic-sehife-content-right {
    height: fit-content;
    width: 65%
}

.karyera-h2 {
    font-size: 20px;
    margin: 10px 0;
    padding: 0 0 13px;
    font-weight: 700;
    color: #000
}

    .product-page{
      margin:0 auto;
      display:flex;
      flex-wrap:wrap;
      gap:40px;
    }
    .product-image{
      position:relative;
      background: #f8f8f8;
          width: 50%;
    height: 520px;
    }
      .product-image img{
        width:100%;height:100%;object-fit:cover;
      }
      .zoom{
        position:absolute;top:20px;right:20px;
        width:46px;height:46px;
        border:2px solid #ddd;border-radius:50%;
        display:flex;align-items:center;justify-content:center;
        background:#fff;cursor:pointer;
      }

    .product-info{flex:1 1 400px;max-width:550px;}


    .add-to-cart{display:flex;gap:20px;margin-bottom:35px;}
      .add-to-cart button{
          color:white;
        flex:1;padding:12px 0;font-size:18px;font-weight:700;
        background:var(--color-blue-dark);border:none;cursor:pointer;
        transition:opacity .2s;
      }
      .add-to-cart button:hover{background:var(--color-blue-light);}

    .meta{color:var(--dark);font-size:16px;}

    @media (max-width:900px){
      .product-page{flex-direction:column;}
    }
/**/
/*pacientam*/

/* Typography */
.liii .page-title{
  font-size: clamp(24px, 2.5vw, 36px);
  margin: 8px 0 16px;
  letter-spacing: .2px;
}
.liii .lead{
  color: #5b5b66;
  margin: 0 0 24px;
}

/* Section card */
.liii section.section{
  background: #F5F5F8;
  border-radius: var(--section-border-radius);
  margin-bottom: 20px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid #e6e6ec;
}
.liii section.section h2{
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 26px);
}
.liii section.section h3{
  margin: 16px 0 8px;
  font-size: clamp(18px, 1.8vw, 22px);
}

/* Base spacing */
.liii p{ margin: 8px 0; }
.liii ul,
.liii ol{ margin: 8px 0 8px 16px; }

/* Grid helpers */
.liii .grid{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px){
  .liii .grid-2{ grid-template-columns: 1fr 1fr; }
}
.custom-badge{
    position:absolute;font-size:14px; left:0; top:0; border-radius: var(--real-border-radius) 0 var(--real-border-radius) 0; background:var(--color-blue-dark);padding: 10px 20px 10px 20px; color: #fff; font-weight: bold
}

/* Notes & badges */
.liii .note{
  background: #ffffff;
  border: 1px dashed #e6e6ec;
  padding: 12px 14px;
  border-radius: 12px;
}
.liii .badge{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ececf6;
  color: #333;
  font-size: 12px;
  border: 1px solid #e6e6ec;
}

/* Links */
.liii a{ color: var(--color-blue-light); text-decoration: none; }
.liii a:hover{ text-decoration: underline; }

/* Muted text */
.liii .muted{ color: #5b5b66; }

/* Split layout */
.liii .split{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  .liii .split{ grid-template-columns: 1.2fr .8fr; }
}

/* TOC */
.hovered-link{
    padding:10px 20px;
    border-radius:var(--real-border-radius);
    transition:.3s;
    margin-bottom:10px;
    font-weight:500;
    display:flex;
    width:100%;
    background:#F5F5F8;
    min-height:60px;
    align-items:center;
    font-size:15px;
}

.hovered-link:hover{background:var(--color-blue-dark);color:white;}
.liii .toc{
  background: #fff;
  border: 1px solid #e6e6ec;
  border-radius: var(--real-border-radius);
  padding: 12px 14px;
}
.liii .toc a{ display: block; padding: 6px 0; }
/**/
/*spravicnok bolezney*/
.b-about-text-card__text{
    line-height:1.7;
}
.b-about-text-card__item {
    min-height:500px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    position: relative;
    margin: 0 1% 30px;
    overflow: hidden;
    padding: 20px 30px;
    background: #f6f8f7;
}

.b-about-text-card__header {
    line-height:1.5;
    font-size: 16px;
    font-weight: 800;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin: 0 0 20px;
}
/*spravoya*/
.spravoya-inner{background:#f5f5f8;border-radius:var(--section-border-radius);padding:20px;}
.spravoya-img{border-radius:var(--section-border-radius);max-width:350px;float:left;margin:0 20px 20px 0;}
.spravoya-right{background:#fff;border-radius:var(--section-border-radius);padding:20px 15px;}
.soz-btn{font-size:13px;border-radius:var(--real-border-radius);padding:10px 20px;width:70%;margin-inline:auto;margin-bottom:15px;border:none;background:var(--color-blue-dark);color:#fff;transition:.4s;}
.soz-btn:hover{background:var(--color-blue-light);}
/**/
.weight-loss-section .wlp-btn {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top:20px;
  background: var(--color-blue-dark);
  color: #fff;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  box-shadow: 0 8px 20px rgba(32,59,108,.25);
}

.weight-loss-section .wlp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(32,59,108,.28);
}