@font-face {
    font-display: swap;
    font-family: 'Arsenal';
    src: url('../fonts/Arsenal-Regular.woff2') format('woff2'),
        url('../fonts/Arsenal-Regular.woff') format('woff'),
        url('../fonts/Arsenal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
.card-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.flex1 {
  flex:1;
}
.site-main {
  box-sizing: border-box;
}
.flex1 .doctors-modal__img {
   max-width: 100%;
   height: auto;
}
html {
    scroll-behavior: smooth;
    font-family: 'Arsenal', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

body, ul, li, p, h1, h2, h3, h4, h5 {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

:root {
    --color-white: #FFFFFF;
    --color-black: #000000;

    --color-charcoal: #202124;
    --color-iron: #32373E;
    --color-frost: #F1F3F4;
    --color-fog: #EEF1F2;
    --color-slate: #849AA1;
    --color-storm: #80868B;
    --color-silver: #BFC9CD;
    --color-ash: #A7A7A7;
    --color-gunmetal: #545457;

    --container-padding: 40px;
}

.color-white {
    color: var(--color-white);
}

.color-black {
    color: var(--color-black);
}

.color-charcoal {
    color: var(--color-charcoal);
}

.color-iron {
    color: var(--color-iron);
}

.color-frost {
    color: var(--color-frost);
}

.color-fog {
    color: var(--color-fog);
}

.color-slate {
    color: var(--color-slate);
}

.color-storm {
    color: var(--color-storm);
}

.color-silver {
    color: var(--color-silver);
}

.color-ash {
    color: var(--color-ash);
}

.color-gunmetal {
    color: var(--color-gunmetal);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-black {
    background-color: var(--color-black);
}

.bg-charcoal {
    background-color: var(--color-charcoal);
}

.bg-iron {
    background-color: var(--color-iron);
}

.bg-frost {
    background-color: var(--color-frost);
}

.bg-fog {
    background-color: var(--color-fog);
}

.bg-slate {
    background-color: var(--color-slate);
}

.bg-storm {
    background-color: var(--color-storm);
}

.bg-silver {
    background-color: var(--color-silver);
}

.bg-ash {
    background-color: var(--color-ash);
}

.bg-gunmetal {
    background-color: var(--color-gunmetal);
}

.container-wide {
    width: 100%;
    padding-inline: var(--container-padding);
    margin-inline: auto;
}

.container-narrow {
    width: 100%;
    max-width: 1368px;
    padding-inline: var(--container-padding);
    margin-inline: auto;
}

div {
    box-sizing: border-box;
}

.btn {
    padding: 14px 28px 15px;
    width: fit-content;
}

.btn-hover,
.btn-hover__first,
.btn-hover__second {
    max-height: 49px;
    height: 49px;
}

.btn-hover {
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
}

.btn-hover__first,
.btn-hover__second {
    border: 1px solid var(--color-iron);
}

.btn-hover:hover .btn-hover__first {
    margin-top: -49px;
    transition: all .4s;
}

.transition {
    transition: all .4s;
}

.font-size-14 {
    font-size: 14px;
    line-height: 120%;
}

.font-size-16 {
    font-size: 16px;
    line-height: 125%;
}

.font-size-18 {
    font-size: 18px;
    line-height: 120%;
}

.font-size-21 {
    font-size: 21px;
    line-height: 125%;
}

.font-size-24 {
    font-size: 24px;
    line-height: 125%;
}

.font-size-28 {
    font-size: 28px;
    line-height: 110%;
}

.font-size-32 {
    font-size: 32px;
    line-height: 120%;
}

.font-size-36 {
    font-size: 36px;
    line-height: 125%;
}

.font-size-50 {
    font-size: 50px;
    line-height: 125%;
}

.lh-110 {
    line-height: 110%;
}

.lh-120 {
    line-height: 120%;
}

.lh-125 {
    line-height: 125%;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.fw400 {
    font-weight: 400;
}

.mt120 {
    margin-top: 120px;
}

.mt4 {
    margin-top: 4px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.p30 {
    padding: 30px;
}

.flex {
    display: flex;
}

.direction-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-stretch {
    align-items: stretch;
}

.flex-wrap {
    flex-wrap: wrap;
}

.br14 {
    border-radius: 14px;
}

.br4 {
    border-radius: 4px;
}

.gap56 {
    gap: 56px;
}

.gap48 {
    gap: 48px;
}

.gap40 {
    gap: 40px;
}

.gap32 {
    gap: 32px;
}

.gap30 {
    gap: 30px;
}

.gap24 {
    gap: 24px;
}

.gap20 {
    gap: 20px;
}

.gap16 {
    gap: 16px;
}

.gap10 {
    gap: 10px;
}

.text-center {
    text-align: center;
}

.ls-2 {
    letter-spacing: -0.02em;
}

.uppercase {
    text-transform: uppercase;
}

a.link {
    width: fit-content;
}

a.link:after,
.header-right__nav .menu a:after,
.footer__nav .menu a:after,
a.smart-unit span:after {
    content: '';
    position: relative;
    top: 5px;
    display: block;
    border-bottom: solid 1px var(--color-iron);
    transform: scaleX(0);
    transition: transform .4s ease-in-out;
}

a.link:hover:after,
.header-right__nav .menu a:hover:after,
.footer__nav .menu a:hover:after,
a.smart-unit span:hover:after {
    transform: scaleX(1);
}

/* preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background-color: #B3B7C3;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 698px;
    height: auto;
}

.preloader__row img,
.preloader__row svg {
    width: 214px;
    min-width: 104px;
    height: 120px;
}

.preloader__text {
    max-width: 546px;
}

.preloader img {
    animation: color-change 1.8s infinite linear;
}

@keyframes color-change {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loaded .preloader {
    display: none;
}
/* preloader */

/* burger menu */
.burger-block {
    display: none;
}
body.burger {
    background-color: var(--color-frost);
}
body.burger #primary,
body.burger .header-select,
body.burger .header-right__btn {
    display: none;
}
body.burger .header-left,
body.burger .header-right {
    box-shadow: none;
}
body.burger .header {
    position: relative;
    width: 100%;
}
body.burger .burger-block {
    display: flex;
    margin-top: 36px;
    padding-bottom: 80px;
    padding-inline: 14px;
}
body.burger .header-right {
    justify-content: flex-end;
}
.burger-block__menu {
    padding-top: 14px;
    padding-bottom: 15px;
}
.burger-block__menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.burger-block__menu li {
    background-color: var(--color-white);
    text-align: center;
    border-radius: 4px
}
.burger-block__menu li a {
    display: inline-block;
    width: 100%;
    color: var(--color-charcoal);
    font-size: 21px;
    line-height: 125%;
    padding: 10px 20px 12px;
    box-sizing: border-box;
}


.burger-block__select-title {
    padding: 15px 20px;
}
.burger-block__select-arrow {
    width: 52px;
    min-width: 52px;
    height: 52px;
}
.burger-block__select {
    position: relative;
    transition: all .4s;
}
.burger-block__select svg {
    transition: all .4s;
}
.burger-block__select-gap {
    height: 0;
    padding: 0;
}
.burger-block__select-items {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 10px;
    margin-top: 140px;
    z-index: 1;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.03);
    transition: all .4s;
}
.burger-block__select-item {
    padding: 10px 22px;
    color: var(--color-iron);
    background-color: var(--color-fog);
    cursor: pointer;
}
.burger-block__select-item.active, .burger-block__select-item:hover {
    color: var(--color-white);
    background-color: var(--color-iron);
}

@media (min-width: 993px) {
	.burger-block__select:hover {
		margin-bottom: -10px;
		transition: all .4s;
	}
	.burger-block__select:hover .burger-block__select-gap {
		height: 10px;
		transition: all .4s;
	}
	.burger-block__select:hover svg {
		transform: rotate(180deg);
		transition: all .4s;
	}
	.burger-block__select:hover .burger-block__select-items {
		margin-top: 0;
		opacity: 1;
		transition: all .4s;
	}
}
@media (max-width: 992px) {
	.burger-block__select.active {
		margin-bottom: -10px;
		transition: all .4s;
	}
	.burger-block__select.active .burger-block__select-gap {
		height: 10px;
		transition: all .4s;
	}
	.burger-block__select.active svg {
		transform: rotate(180deg);
		transition: all .4s;
	}
	.burger-block__select.active .burger-block__select-items {
		margin-top: 0;
		opacity: 1;
		transition: all .4s;
	}
}
/* burger menu */

/* header */
.header-wrap {
    margin-top: 16px;
    margin-bottom: 16px;
    height: 78px;
}

.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1288px;
    width: calc(100% - 78px);
    z-index: 100;
}

.header-left {
    padding: 14px 20px;
    box-shadow: -4px 4px 13px 0px rgba(0, 0, 0, 0.03);
}

.header-left__logo-img {
	width: 80px;
	height: 45px;
	width: 122px;
    height: 60px;
	object-fit: cover;
}

.header-select {
    height: 44px;
    max-height: 44px;
    position: relative;
    z-index: 2;
}

.header-select svg {
    transition: all .4s;
}

.header-select:hover svg {
    transform: rotate(180deg);
    transition: all .4s;
}

.header-select__title-wrap {
    padding: 10px 20px;
    cursor: pointer;
}

.header-select__gap {
    height: 0;
    padding: 0;
}

.header-select__items {
    position: relative;
    margin-top: -200px;
    padding: 10px;
    z-index: 1;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.03);
}

.header-select:hover .header-select__gap {
    padding: 5px;
    transition: all .4s;
}

.header-select:hover .header-select__items {
    margin-top: 0;
    transition: all .4s;
}

.header-select__item {
    padding: 10px 22px;
    color: var(--color-iron);
    background-color: var(--color-fog);
    cursor: pointer;
}

.header-select__item.active,
.header-select__item:hover {
    color: var(--color-white);
    background-color: var(--color-iron);
}

.header-bridge__wrap {
    margin-left: -1px;
    margin-right: -1px;
}

.header-right {
    width: inherit;
    padding: 14px;
    box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.03);
}
@media (min-width: 768px) {
	.header-right {
		padding-right: 20px;
	}
}

.header-right__nav .menu {
    display: flex;
    padding: 0 20px;
}

.header-right__nav .menu a {
    color: var(--charcoal);
    padding: 10px 20px;
    display: inline-block;
}

.header-right__nav li.current-menu-item {
    background-color: var(--color-white);
    border-radius: 4px;
}

.header-mobile__menu-wrap {
	display: none;
}
.header-mobile__menu {
    display: none;
    padding: 15px 14px;
    position: relative;
    width: 44px;
    height: 44px;
    transition-duration: 0.4s;
}
.header-mobile__menu .icon-left {
    transition-duration: 0.4s;
    position: absolute;
    height: 2px;
    width: 9px;
    background-color: transparent;
    left: 14px;
    top: 50%;
    transform: translate(0px, -50%);
}
.header-mobile__menu .icon-left:before,
.header-mobile__menu .icon-left:after {
    transition-duration: 0.4s;
    position: absolute;
    width: 9px;
    height: 2px;
    background-color: var(--color-white);
    content: "";
    left: 0;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
.header-mobile__menu .icon-left:before {
    top: -8px;
}
.header-mobile__menu .icon-left:after {
    top: 8px;
}
.header-mobile__menu .icon-left:hover {
    cursor: pointer;
}
.header-mobile__menu .icon-right {
    transition-duration: 0.4s;
    position: absolute;
    height: 2px;
    width: 12px;
    right: 14px;
    background-color: var(--color-white);
    border-radius: 2px;
    top: 50%;
    transform: translate(0px, -50%);
}
.header-mobile__menu .icon-right:before,
.header-mobile__menu .icon-right:after {
    transition-duration: 0.4s;
    position: absolute;
    width: 8px;
    height: 2px;
    background-color: var(--color-white);
    content: "";
    right: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.header-mobile__menu .icon-right:before {
    top: -8px;
}
.header-mobile__menu .icon-right:after {
    top: 8px;
}
.header-mobile__menu.open .icon-left {
    transition-duration: 0.4s;
    background: transparent;
}
.header-mobile__menu.open .icon-left:before {
    transform: rotateZ(45deg) scaleX(1.4) translate(3px, 3px);
}
.header-mobile__menu.open .icon-left:after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(3px, -3px);
}
.header-mobile__menu.open .icon-right {
    transition-duration: 0.4s;
    background: transparent;
}
.header-mobile__menu.open .icon-right:before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-3px, 3px);
}
.header-mobile__menu.open .icon-right:after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-3px, -3px);
}
.header-mobile__menu:hover {
    cursor: pointer;
}
/* header */

/* footer */
.footer {
    margin-bottom: 40px;
    overflow: hidden;
}
.footer-wrap {
    position: relative;
}
.footer-index {
    position: relative;
    z-index: 1;
}
.footer-info {
    padding-top: 30px;
    gap: 120px;
}
.footer__nav .menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__nav .menu a {
    color: var(--charcoal);
    display: inline-block;
}
.footer-form {
    max-width: 416px;
}
.footer-line {
    height: 1px;
    margin-top: 34px;
    margin-bottom: 34px;
}
.smart-unit svg {
    position: relative;
    top: -4px;
}
.footer-logo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    z-index: 0;
    background-image: url(../img/logo-footer.png);
    height: 21.4vw;
    background-size: cover;
    background-repeat: no-repeat;
}
.footer-select__title {
    padding: 15px 20px;
}
.footer-select__arrow {
    width: 52px;
    min-width: 52px;
    height: 52px;
}
.footer-select {
    position: relative;
    transition: all .4s;
}
.footer-select svg {
    transition: all .4s;
}
.footer-select__gap {
    height: 0;
    padding: 0;
}
.footer-select__items {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 10px;
    z-index: 1;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.03);
    visibility: hidden;
    transition: all .4s;
}
.footer-select__item {
    padding: 10px 22px;
    color: var(--color-iron);
    background-color: var(--color-fog);
    cursor: pointer;
}
.footer-select__item.active, .footer-select__item:hover {
	color: var(--color-white);
	background-color: var(--color-iron);
}
@media (min-width: 993px) {
	.footer-select:hover {
		margin-bottom: -10px;
		transition: all .4s;
	}
	.footer-select:hover .footer-select__gap {
		height: 10px;
		transition: all .4s;
	}
	.footer-select:hover svg {
		transform: rotate(180deg);
		transition: all .4s;
	}
	.footer-select:hover .footer-select__items {
		visibility: visible;
		margin-top: 0;
		opacity: 1;
		transition: all .4s;
	}
}
@media (max-width: 992px) {
	.footer-select.active {
		margin-bottom: -10px;
		transition: all .4s;
	}
	.footer-select.active .footer-select__gap {
		height: 10px;
		transition: all .4s;
	}
	.footer-select.active svg {
		transform: rotate(180deg);
		transition: all .4s;
	}
	.footer-select.active .footer-select__items {
		visibility: visible;
		margin-top: 0;
		opacity: 1;
		transition: all .4s;
	}
}
/* footer */

/* cookie */
.cookie-wrap {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 100%;
    max-width: 416px;
    display: none;
    z-index: 5;
    /* box-shadow: 0px 0px 20px rgb(0 0 0/10%); */
}
.cookie-btn {
    width: calc((100% - 24px)/2);
}
/* cookie */

/* показываем контент */
.ussurijsk, 
.nahodka {
    display: none;
}
.ussurijsk.active, 
.nahodka.active {
    display: flex;
}
.ussurijsk.active.contents,
.nahodka.active.contents {
    display: contents;
}
/* показываем контент */

/* form */
.form-wrap,
.form-wrap > p {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-form__title {
    width: 110px;
}
.footer-form a {
    display: inline-block;
    width: fit-content;
    color: var(--color-storm);
}
.footer-form a:after {
    content: '';
    position: relative;
    top: 5px;
    display: block;
    border-bottom: solid 1px var(--color-storm);
    transform: scaleX(0);
    transition: transform .4s ease-in-out;
}
.footer-form a:hover:after  {
    transform: scaleX(1);
}
.form-input {
    padding: 14px;
    border: 1px solid var(--color-silver);
    width: 100%;
    box-sizing: border-box;
}
.form-input:focus-visible {
    outline: none;
}
.form-submit {
    padding: 14px;
    cursor: pointer;
}
.form-wrap .wpcf7-spinner {
    display: none;
}
.footer .wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
}
/* form */

/* 404 */
.not-found {
    max-width: 580px;
    margin-top: 200px;
}
.not-found .btn-hover {
    max-width: 390px;
}
/* 404 */

/* policy */
.policy {
    padding-top: 86px;
    padding-bottom: 86px;
}
.policy-text {
    padding: 56px;
    max-width: 1288px;
}
.policy h1 {
    padding-inline: 14px;
}
/* policy */


@media (max-width: 1400px) {
    .policy-text {
        width: calc(100% - 20px);
    }
}

@media (max-width: 1300px) {
    .footer-wrap {
        padding: 0;
    }
    .footer-info {
        gap: 48px;
    }
}

@media (max-width: 1210px) {
    .header .btn-hover .btn {
        padding: 14px 10px 15px;
    }
}

@media (max-width: 1190px) {
    :root {
        --container-padding: 20px;
    }
    .header {
        width: calc(100% - 40px);
    }
    .header-left {
        gap: 16px;
    }
    .header-select__title-wrap {
        padding: 10px 15px;
    }
    .header-right__nav .menu {
        padding-left: 0;
    }
    .footer {
        margin-bottom: 20px;
    }
    .footer-form {
        max-width: 37vw;
    }
    .footer-info {
        gap: 32px;
    }
    .cookie-wrap {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 1080px) {
    .header-right__nav .menu a {
        padding: 10px 10px;
    }
    .single-doctors .doctors-modal__info {
        flex-direction: column;
    }
   .flex1 {
      flex: unset;
      width: 100%;
   }
}

@media (max-width: 992px) {
    .font-size-28 {    
        font-size: 21px;
    }
    .header-right__nav {
        display: none;
    }
    .header-mobile__menu-wrap,
    .header-mobile__menu {
        display: block;
    }
    .footer-info {
        padding-top: 0;
        justify-content: space-between;
    }
    .footer-form {
        margin-inline: auto;
        max-width: 416px;
    }
    .footer-index__cont {
        flex-direction: column;
    }
    .not-found {
        margin-top: 160px;
    }
    .policy {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .policy-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 10px;
    }
    .footer {
        margin-bottom: 10px;
    }
    .font-size-50 {    
        font-size: 32px;
    }
    .font-size-36 {    
        font-size: 24px;
    }
    .font-size-32 {    
        font-size: 21px;
    }
    .gap56 {
        gap: 32px;
    }
    .gap48 {
        gap: 32px;
    }
    .gap32 {
        gap: 24px;
    }
    .gap24 {
        gap: 16px;
    }
    .gap20 {
        gap: 10px;
    }
    .m-gap40 {
        gap: 40px;
    }
    .mt120 {
        margin-top: 100px;
    }
    .header-wrap {
        margin-top: 10px;
        margin-bottom: 10px;
    }
	.burger .header-wrap {
        margin-top: 0;
        margin-bottom: 0;
    }
    .header {
        width: calc(100% - 20px);
        top: 10px;
    }
    .header-right__btn {
        display: none;
    }
    .header-left {
        width: inherit;
        justify-content: space-between;
    }
    .header-right {
        width: auto;
        justify-content: flex-end;
    }
    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .footer-logo {
        background-image: url(../img/logo-footer-mob.png);
        bottom: 0;
    }
    .footer-tel {
        align-items: center;
    }
    .cookie-wrap {
        right: 10px;
        bottom: 10px;
        max-width: calc(100vw - 20px);
    }
}

@media (max-width: 480px) {
    .header-select {
        display: none;
    }
    .footer-form {
        padding: 20px;
    }
    .cookie-btns {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}