html {
    box-sizing: border-box;
    /* scroll-behavior: smooth; */
}

  *,
  *::before,
  *::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%
}


  /* //......... fonts.........// */

@font-face {
    font-family: 'OpenSans';
    src: local('OpenSans-Bold'),
        url(../fonts/OpenSans-Bold.woff2) format("woff2"),
        url(../fonts/OpenSans-Bold.woff) format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: local('OpenSans-SemiBold'),
        url(../fonts/OpenSans-SemiBold.woff2) format("woff2"),
        url(../fonts/OpenSans-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: local('OpenSans-Regular'),
        url(../fonts/OpenSans-Regular.woff2) format("woff2"),
        url(../fonts/OpenSans-Regular.woff) format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-Regular'),
        url(/fonts/Montserrat-Regular.ttf) format("woff2");
    
}

/* //......... global.........// */

body {
    margin: 0;
    min-width: 320px;
    font-family: 'OpenSans', sans-serif;
    padding-top: 100px;
}

a {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.btn-reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.list-reset {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

:root {
    --main-color: #00417a;
}

/* //......... header.........// */

.header {
    /* padding-top: 10px; */
    /* box-shadow: 1px -8px 11px -11px rgba(0, 0, 0, 0.35) inset; */
    /* border-bottom: 2px solid var(--main-color); */
    /* margin-bottom: 8px; */
    position: fixed; /* Фиксируем позицию */
    top: 0; /* Располагаем его вверху */
    left: 0; /* Выравниваем по левому краю */
    right: 0; /* Выравниваем по правому краю */
    z-index: 1000; /* Устанавливаем высокий z-index, чтобы заголовок был над другими элементами */
    background-color: #00417a;
}
.header a{
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    font-size: 1rem;
}

.header__nav{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .4rem;
    padding-bottom: .4rem;
    
}

.logo {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    padding: 0rem !important;
    margin-right: 2rem !important;
}
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
    cursor: pointer;
}
.navbar-toggler-icon {
    background-image: url(../img/dashboard_white_24dp.svg) !important;
    outline: none !important;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* .header__top {
    box-shadow: 1px -8px 11px -11px rgba(0, 0, 0, 0.35) inset;
} */

.header__top-date {
    font-size: 11px;
    font-weight: bold;
    color: #435652;
}
.me-2 {
    margin-right: .5rem !important;
}
.header__search-input {
    margin: 0;
    padding-block: 1px;
    padding-inline: 2px;
    font-family: inherit;
    margin-right: .5rem !important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    /* -webkit-appearance: none;
    -moz-appearance: none; */
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.header__top_container {
    /* max-width: 1320px; */
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    display: flex;
    /* flex-wrap: inherit; */
    align-items: center;
    justify-content: space-between;
}


@media (min-width: 576px) {
    .header__top_container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .header__top_container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .header__top_container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .header__top_container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .header__top_container {
        max-width: 1320px;
    }
}

.header_menu{
    display: flex;
}

.navbar{
    display: flex !important;
    flex-grow: 1;
    flex-basis: auto;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
    }
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.navbar-collapse {
    display: flex;
    /* flex-basis: 100%; */
    flex-grow: 1;
    align-items: center;
    text-align: center;
    animation: identifier 0.5s;
}

@keyframes identifier {
    from {
        transform: translateY(-100%);
      }
    
      to {
        transform: translateY(0%);
      }
    }


@media (max-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}



.header__search_block {
    display: flex !important;
    
}



.header__list {
    margin-right: auto !important;
    display: flex;
    flex-direction: row;
    padding-left: 3rem !important;
}

.header__list li ul {
    list-style: none;
    position: absolute;   
    background-color: #00417a;
    padding: .5rem 0;
    margin: 2px 0px 0px;
    padding-top: 8px;
    padding-bottom: 8px;
    min-width: 8rem;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}
.header__list a{
    padding: 10px 15px;
}

.arrow{
    float: right;
    color: #cc1411;
    position: relative;
    top: -1.5rem;
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
@media (min-width: 768px) and (max-width: 991px) {
    span.arrow {
        right: 10rem;
    }
}
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(204, 20, 17, 1);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(204, 20, 17, 0);
    }
  }



.live {
    animation: pulse-animation 2s infinite;
    border-radius: 50%;
}
.color2 {
    color: #cc1411 !important;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.disp_none{
    display: none;
}
.disp {
    display: block;
    text-align: center;
}

.header__item a {
    font-size: 16px;
    color: #fff;
    display: block;
}

.menu_link{
    position: relative;
}
.menu_link:hover:before{
    transform: scaleX(1);
    transition: all 0.5s;
}

.menu_link::before{
    content: '';
    width: 70%;
    margin: auto;
    height: 3px;
    color: transparent;
    background-color: #cc1411;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    
    transform: scaleX(0);
    transition: all 0.5s;
}

.btn2{
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid #00417a !important;
    padding: 0rem 0.5rem;
    /* apadding: 0.55rem 1.55rem !important; */
    font-size: 1rem;
    border-radius: 0.45rem !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.material-icons{
    color: white !important;
    margin-top: 7px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    
}

.header__burger{
    display: none;
}
@media (max-width: 992px) {
    .header__top_container{
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }
    .nav-disp{
        display: none;
    }
    .navbar-collapse, .navbar-nav, .header__list {
        /* display: none; */
        /* display: flex; */
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }
    .navbar-collapse{
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }
    .navbar, .list-reset, .header__search_block, .header__item{
        width: 100%;
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }
    .header__list li ul {
        position: relative;
    }
    .header__list li {
        min-height: 45px;
    }
}
/* //......... main 1 section.........// */

.info {
    margin-bottom: 25px;
}

.info__list {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--main-color);
    height: 22px;
    padding-left: 10px;
    padding-right: 6px;
}

.special__container {
    padding: 0;
}

.info__container {
    border: 2px solid #00417a;
}

.info__item a {
    font-size: 12px;
    color: white;
    line-height: 22px;
}

.info__item:not(:last-child)::after {
    content: " ⇢";
    color: white;
}

.info__main_title {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    display: inline-block;
    line-height: 1.15em;
    margin-bottom: 18px;
    padding-top: 10px;
}

.info__small_description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info__small_description-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.info__author-name {
    display: flex;
    align-items: center;
    gap: 4px
}

.info__date {
    display: flex;
    align-items: center;
    gap: 4px
}

.info__medic_capture {
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    background-color: rgba(19, 184, 235, 0.1);
	
}

.info__medic {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.info__medic_img {
    max-width: 100%;
    background-color: #f5f5f5;
    max-height: 650px;
    border-radius: 10px;
}

.info__medic_capture figcaption {
    font-size: 14px;
    min-height: 30px;
    background-color: rgba(19, 184, 235, 0.1);
    width: 100%;
    text-align: center;
    padding: 3px;
    border-radius: 10px;
}

.info__text {
    margin: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    font-weight: 400;
    align-self: flex-start;
}

.info__quotes {
    display: flex;
    align-items: center;
    gap: 25px;
}

.quotes__img {
    width: 650px;
    height: 300px;
    border-radius: 35px;
}

.info__quotes_text {
    margin: 0;
    line-height: 1.25;
    font-size: 18px;
    background-color: var(--main-color);
    color: white;
    padding: 20px;
    border-radius: 20px;
}

.info__problems {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.meeting_photo {
    max-width: 1000px;
    max-height: 750px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.problems__double {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.problems__block {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.double__descr {
    background-color: var(--main-color);
    padding: 20px;
    border-radius: 15px;
    color: white;
}

.problems__block-photo {
    width: 480px;
    border-radius: 20px;
}

.problems__colors-block {
    margin-bottom: 15px;
}

.color-block-first {
    font-size: 18px;
}

.color-block-second {
    font-size: 18px;
}

.color-block-third {
    font-size: 18px;
}

.color-block-tofill-first {
    display: inline-block;
    margin-right: 10px;
    width: 45px;
    height: 22px;
    border-radius: 5px;
    background-color: #D64249;
}

.color-block-tofill-second {
    display: inline-block;
    margin-right: 10px;
    width: 45px;
    height: 22px;
    border-radius: 5px;
    background-color: #17AB25;
}

.color-block-tofill-third {
    display: inline-block;
    margin-right: 10px;
    width: 45px;
    height: 22px;
    border-radius: 5px;
    background-color: #F2DB28;
}

.problems__item {
    display: flex;
    align-items: center;
}

.quoute__medic {
    font-size: 18px;
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.image_bones_medics {
    width: 520px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.bones__photo {
    width: 634px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.group_medicament-photos {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}

.medicament__photo {
    width: calc(100% / 3);
	height: auto;
}

.attention__block {
    border: 2px solid red; /* Красная рамка */
    background-color: rgba(255, 0, 0, 0.1); /* Полупрозрачный красный фон */
    color: darkred; /* Цвет текста */
    padding: 20px; /* Отступы внутри блока */
    border-radius: 8px; /* Скругление углов */
    margin: 20px 0; /* Отступы сверху и снизу */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Легкая тень для объема */
}

.last__text {
    margin-bottom: 30px;
}

* a {
    transition: background-color 0.3s ease-in-out;
}

*svg {
    transition: fill 0.3s ease-in-out;
}

* button {
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.header__top_searchbtn {
    cursor: pointer;
}

.header__nav a:hover {
    background-color: var(--main-color);
    color: white;
}

.nav__item:hover {
    color: var(--main-color);
}

.middle__item a:hover {
    color: var(--main-color)
}

.info__small_description-right svg:hover,
.small_bottom svg:hover {
    fill: var(--main-color)
}

.reaction__button svg:hover,
.comment__btn-answer:hover {
    outline: 1px solid var(--main-color)
}


.after__button:hover {
    background-color:#17AB25;
}


.header__burger:hover {
    background-color: transparent;
}

.order__from {
    width: 400px;
    min-height: 500px;
    background-color: white; /* Цвет фона формы */
    border-radius: 8px; /* Скругление углов */
    padding: 20px; /* Отступы внутри формы */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Легкая тень */
    margin-bottom: 30px;
}

.plus {
    color: green;
}

.minus {
    color: red;
}

.order__from label {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 13px;
    color: #969696;
    margin-bottom: 10px;
}

.order__from input {
    height: 40px;
    padding: 5px;
    padding-left: 10px;
    font-size: 18px;
    border: none;
    border: 1px solid #ccc; /* Светло-серая рамка */
    border-radius: 4px; /* Скругление углов инпутов */
}

.first__label {
    margin-top: 10px;
}

.order__button {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #041e37 0, rgba(9, 70, 121, 1) 35%, #5181b0 100%);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 35px;
    animation: pulse 1.5s infinite;
}

.form__description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #2f3d57;
    font-weight: bold;
    font-style: italic;
}

.form_name_exp, 
.form_tel_exp {
    color: black;
    font-weight: 600;
}

.price {
    text-align: center;
    font-size: 32px;
}

.new__price {
    color: #3578E5;
}

.old__price {
    text-decoration: line-through;
    color: #bdb6b6;
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Начальный размер */
    }
    50% {
        transform: scale(1.05); /* Увеличение размера на 5% */
    }
    100% {
        transform: scale(1); /* Возвращение к начальному размеру */
    }
}

.small__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.small__top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 7px;
}

.small__top a {
    color: #0373ab;
}

.small__middle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: black;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.small_middle-list {
    display: flex;
    gap: 10px
}

.middle__item a {
    display: flex;
    align-items: center;
    background-color: rgba(19, 184, 235, 0.05);
    padding: 4px;
    color: #000;
    flex-shrink: 0;
    font-weight: 400;
    height: 38px;
}

.comments {
    border-bottom: 1px solid #ccc;
}

.comments__title {
    margin: 0;
    font-size: 34px;
    align-self: flex-start;
    margin-bottom: 20px;
}


.comment__top img {
    width: 36px;
    height: 36px;
    border-radius: 20px;
    margin-right: 15px;
}

.comment__top {
    display: flex;
    padding-top: 5px;
    border-top: 1px solid var(--main-color);
    align-items: center;
    margin-bottom: 10px;
    background-color: rgb(248 250 252)
}

.comment-list {
    border: 2px solid var(--main-color);
    padding: 10px;
    margin-bottom: 14px;
}

.comment__name {
    margin: 0;
    margin-right: auto;
    font-size: 18px;
}

.comment__date {
    font-size: 18px;
}

.comment__content img {
    margin-bottom: 20px;
	max-width: 100%;
}

.comment__bottom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment__bottom button {
    border: none;
    background-color: transparent;
}

.reaction__button {
    width: 30px;
    height: 30px;
}

.comment__btn-answer {
    border: none;
    background-color: transparent;
    width: 114px;
    min-height: 31px;
    font-size: 18px;
}

.comment__item {
    margin-bottom: 20px;
}

.after__button {
    max-width: 380px;
    height: 50px;
    display: inline-block;
    margin: 0 auto;
    background-color: var(--main-color);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 35px;
    animation: pulse 1.5s infinite;
}

.comments__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* new footer */
footer{
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    background-color: #00417a;
    color: #00417a;
}

.footer{
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
    background-color: #00417a !important;
    color: #FFFFFF !important;
    font-size: 0.8rem;
}

.footer_container{
    max-width: 1320px;
    padding-left: var(--bs-gutter-x, 1.5rem) !important;
    padding-right: var(--bs-gutter-x, 1.5rem) !important;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .footer_container {
        max-width: 1140px;
    }
}
@media (max-width: 992px) {
    .footer_container  {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .footer_container {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .footer_container {
        max-width: 540px;
    }
}

.footer_container_elems{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.kontakty{
    padding: 0em 3em;
}


.kontakty p{
    color: white !important;
    font-size: 0.80rem !important;
    margin-top: 0;
    margin-bottom: 1rem;
    
}


.kontakty a:hover{
    color: #c61c2f;
}

h4{
    font-weight: 600 !important;
    display: block;
    
    font-weight: bold;
}

.kontakty h4{
    margin-top: 0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gx-5{
    --bs-gutter-x: 3rem;
}

.pt-3{
    padding-top: 1rem !important;
}

.pt-4{
    padding-top: 1.5rem !important;
}

.col-lg-4{
    width: 33%;
}

@media (max-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33%;
    }
}
@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33%;
    }
}
@media (max-width: 576px) {
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.fa:not(.live) {
    padding: 20px;
    font-size: 20px !important;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}
.fa-brands {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 
.fa-youtube:before {
    content: "\f167";
} */


/*  */



/* .footer__top {
    display: flex;
    align-items: center;
    height: 72px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer__top nav a {
    color: #4c4c4c;
    font-size: 15px;
}

.footer__top nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.footer__svg_wrapper a img {
    width: 50px;
    height: 40px;
}

.footer__svg_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.footer__svg_wrapper a {
    display: flex;
    flex-direction: column;
    font-size: 12;
    color: #8D8D8D;
}

.footer-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.links__wrappers a {
    color: #4c4c4c;
    margin: 0 5px;
    font-size: 12px;
}

.sme-footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #b2b2b2;
    font-size: 12px;
    line-height: 18px;
}

.facebook {
    width: 34px;
} */
