*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
}

.header{
    background-color: #f1f1f1;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    gap: 1rem;
    z-index: 999;
    position: sticky;
}

.link{
    margin-right: 50px;
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    letter-spacing: 1px;
    font-weight: medium;
}

a{
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

a:hover{
    text-decoration: none;
    color: #fff;
}

#info-bar{
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-left: 20px;
    margin-right: 10px;
}

.dropdown.active > .link,
.link:hover{
    color: #fff;
}

.link:hover{
    color: #fff;
}

.dropdown{
    position: relative;
    float: none;            /* або просто видали цей рядок */
}


.dropdown-menu{
    position: absolute;
    display: block;
    right: 0;
    top: calc(100% + .7rem);
    background-color: #22272B;
    border: none;
    border-radius: 0;
    padding: .75rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown.active > .link + .dropdown-menu{
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}

.information-grid{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 2rem;
}

.dropdown-links{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.logo_img {
  float: left;
  height: 120px;
  display: block;
  margin-left: 50px;
}

.navigation-stuff{
    width: 100vw;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right{
    display: flex;
    width: 580px;
    height: 120px;
    align-items: center;
}

.left{
    display: flex;
    width: 800px;
    float: left;
    align-items: center;
    margin-right: 4vw;
}



#facebook{
    color: #22272B;
    margin-right: 20px;
    margin-left: 85px;
    font-size: 40px;
}

#instagram{
    background: #22272B;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 20px;
    font-size: 40px;
}

#linkedin{
    margin-right: 20px;
    font-size: 40px;
    color: #22272B;
}

.date-and-number{
    margin-right: 20px;
    font-weight: bold;
    font-size: 20px;
    font-weight: medium;
    color: #22272B;
}

#location{
    margin-left: 30px;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #22272B;
    height: 60px;
    z-index: 200;
    position: sticky;
}

.under-navigation{
    margin: 0 auto;
}

.under-navigation button:hover{
    background-color: #C4D600;
}

.features h1 {
    text-align: center;
    font-size: 50px;
}

#main-news{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 2em;
}

.alert-warning{
    align-self: center;
    clear: both;
    background-color: #fff;
    border: none;
    color: #000;
    width: 300px;
    height: 900px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: left;
    overflow: hidden
}

.alert-warning p{
    text-align: left;
}

.container{
    max-width: 1170px;
    margin: auto;
    margin-top: 20px;
}

ul{
 list-style: none;
}

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

.footer{
    margin-top: 10px;
    background-color: #22272B;
    padding: 0 0 0 0;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 30px;
    color: #fff;
    margin-bottom: -45px;
    margin-left: -50px;
    font-weight: 500;
    position: relative;
    width: 30px;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #C4D600;
    height: 0;
    box-sizing: border-box;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #fff;
    padding-left: 8px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #3b5998;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #fff;
}

.logo_footer{
    height: 30px;
    width: auto;
}

/*responsive*/
@media(max-width: 1235px){
    .footer-col{
        width: 50% !important;
        margin-bottom: 30px;
    }
    .footer{
        display: none;
    }
}

@media(min-width: 1236px){
    .mobile-footer{
        display: none;   
    }
}

@media(max-width: 574px){
    .footer-col{
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .footer-adresses{
        display: none;    
    }
    
    .phones-footer{
        display: none;    
    }
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 67%;
  margin: auto;
  margin-top: 50px;
}

td, th {
  border: 1px solid #f1f1f1;
  text-align: left;
  padding: 8px;
  letter-spacing: 1px;
}

.main-table-line{
    background: #22272B;
    color: #fff;
}

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

.find-analyse{
    width: 200px !important;
}

.find-analyse input{
    border-style: none;
}

.ordering-push{
    width: 70px;
    padding: 0px;
}

.time{
    text-align: center;
}

#slider{
    position: relative;
    width: 75vw;
    height: auto;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

#slider ul{
    position: relative;
    list-style: none;
    width: 10000%;
    padding: 0;
    margin: 0;
    transition: all 750ms ease-in-out;
    left: 0;
}

#slider ul li{
    position: relative;
    float: left;
}

#slider ul li img{
    width: 75vw;
    height: auto;
}

@media(max-width: 1323px){
    #slider{
        width: 100vw;
    }
    
    #slider ul li img{
        width: 100vw !important;
    }
}

.mobile-slider{
    display: none;
}

@media(max-width: 720px){
    .mobile-slider{
        display: block;
    }
    
    .desktop-slider{
        display: none;    
    }
}

#slider #prev,
#slider #next{
    width: 50px;
    line-height: 50px;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 150ms ease;
}

#slider #prev{
    left: 10px;
}

#slider #next{
    right: 10px;
}

#slider #prev:hover,
#slider #next:hover{
    background-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0;

}

iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
}

.submit-btn{
    height: 20px;
    width: 50px;
}

#full-form{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    left: 50%;
    bottom: 70%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 500;
}

.info-of-analyse{
    position: fixed;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    width: 900px;
    height: 700px;
    border-style: solid;
    border-color: #22272B;
    color: #22272B;
}

.info-of-analyse p,
.info-of-analyse h3
{
    color: #22272B;
}

.info-of-analyse h3{
    border-bottom-style: double;
    border-color: #C4D600;
    border-width: 9px;
}

.input-name{
    margin-top: 10px;
}

.submit-btn{
    width: 300px;
    height: 40px;
    margin-bottom: 10px;
    border-color: #C4D600;
    border-style: solid;
}

.confirm-btn{
    border-style: none;
    background-color: #22272B;
}

#analyse_info_form{
    width: 900px;
    height: 50px;
    text-align: center;
    margin-top: 0px;
    border: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #22272B;
    color: #fff;
    z-index: 1000 !important;
}

.upper-footer{
    padding: 0;
    margin: 0;
    border-bottom-style: solid;
    border-width: 3px;
    border-color: #fff;
}

.upper-footer h4{
    margin: 0;
}

.upper-footer li{
    display: inline-block;
     margin-top: 20px;
}

.upper-footer .social-links{
    width: 100vw;
    margin-bottom: 20px;
}


.social-networks{
    float: right;
    margin-right: 30px;
}

.footer h6{
    color: #000;
}

.under-footer{
    border-bottom: none;
    background-color: #fff;
}

.under-footer .social-links{
    margin-bottom: 0;
}

.footer-col .social-links #instagram-under{

}

.footer-col .social-links #linked-in-under{

}

#info-bar{
    width: 220px;
    height: 60px;
    border-right:solid #f1f1f1 2px;
    margin-left: 0;
    margin-right: 0;
}

#info-bar:hover{
    background-color: #f1f1f1;
}

.last{
    border: 0px solid black !important;
}

.social-links p{
    font-size: 12px;
}

.social-links img{
    margin-right: 75px;
    margin-left: 30px;
    height: 50px;
    width: auto;
}

.upper-footer .social-networks a{
    background-color: #22272B;
    font-size: 40px;
}

#min-text{
    font-size: 19px;
}

#info-bar:hover{
    background: #C4D600;
}

.features .left-align-headings{
    position: absolute;
    width: 360px;
}

#close-button{
    float: right;
    border: none;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    background-color: #f1f1f1;
    line-height: 16px;
    margin-right: 5px;
    margin-top: 5px;
}

.footer-email-ul{
    margin-bottom: 0px;
    margin-top: 0.8rem;
}

.medic{
    color: black;
}

.medic:hover{
    color: blue;
}

.burger-btn{
    border: none !important;
    display: none;
    float: right;
    font-size: 40px;
}

.burger-btn:hover{
    color: #fff;
}

.szirovaja-otkladina{
    display: none;
}

.szirovaja-otkladina li a{
    color: #fff;
    margin-left: 20px;
}

.szirovaja-otkladina li {
    background-color: #22272B;
    width: 100vw;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #fff;
    line-height: 36px;
}

.phones-footer{
    width: 220px;
}

@media(max-width: 991px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 661px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 1323px){
    .header{
        display: none !important;   
    }
    .under-navigation{
        display: none;
    }

    .navigation-stuff{
        display: none;
    }

    .burger-btn{
        display: block;
        float: right;
    }
    .nav{
        justify-content: right;
        align-items: center;
        background-color: #f1f1f1;
    }

    .szirovaja-otkladina{
        display: none;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .left-align-headings h2{
        font-size: 18px !important;
    }

    .under_logo_img{
        display: flex !important;
        width: 150px;
        float: left !important;
    }

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

@media(max-width: 928px){
    .info-of-analyse{
        width: 350px;
    }

    #full-form{
        width: 350px;
    }

    #analyse_info_form{
        width: 350px;
    }

    .responsive-input{
        width: 30vw;
    }
}

@media(max-width: 482px){
    #order-button{
        width: 40px;
    }

    .find-analyse input{
        width: 154px;
    }
}

.corporative{
    font-size: 14px !important;
}

.left-align-headings h2{
    font-size: 17px !important;
    font-weight: 600 !important;
}

.doctors-image{
    width: 280px;
    height: auto;
}

.title button{
    display: none;
}

.title p{
    display: none;
}

.title .name{
    font-size: 20px;
}

.title{
    width: 75%;
    background-color: #f1f1f1;
}

.order-button{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 5px;
    height: 40px;
    width: 90px;
}

#send-request-submit{
    height: 60px !important;
    background-color: #f1f1f1;
    border-style: none;
    font-weight: bold;
}

.find-analyse{
    display: inline;
}

input::placeholder{
    padding: 5px;
}

.corporative{
    text-align: left !important;
    font-size: 22px;
    margin-top: 56px !important;
}

.last-span{
    margin-bottom: 10px;
}

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

.cooperate-btn{
    width: 46vw;
    height: 5vh;

}

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

#left-paragraph{
    text-align: left;
}

.alert-warning h3::before{
    content: '';
    position: absolute;
    background-color: #C4D600;
    height: 27px;
    width: 2px;
    top: 17px;
    left: 20px;
    box-sizing: border-box;
}

.alert-warning h3{
    margin-left: 10px;
    color: #22272B;
    font-size: 30px;
}

.name{
    margin-top: 64px;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.name::before{
    top: 435px !important;
    height: 50px !important;
}

.sub-text{
    font-size: 14px !important;
    margin-left: 0 !important;
    margin-top: 22px !important;
}

.sub-text::before{
    width: 0px;
}

@media(max-width: 450px){
    .coprporate-heading{
        font-size: 14px !important;
    }
}

p{
    font-size: 14px;
    line-height: 24px;
}

/* news block */
.news-block{
    width: 100vw;
    margin-top: 42px;
}

.news-image{
    margin-left: 50px;
    width: 300px;
    border-radius: .25rem;
    vertical-align: text-bottom !important;
}

.coprporate-heading{
    margin-right: 20px;
    height: inherit;
    vertical-align: text-bottom !important;
    padding-bottom: 8px;
    background: none;
    color: #22272B;
    margin-left: 0;
    width: 25vw;
    font-weight: 600;
    font-size: 17px;
    text-align: right;
    border-bottom-style: solid;
    border-bottom-color: #C4D600;
    border-bottom-width: 2px;
    border-bottom-margin-top: 12px;
}

.news-block p{
    width: 50%;
    height: inherit;
    display: inline-block;
    text-align: left !important;
    vertical-align: top !important;
    margin: 0 !important;
}

td p{
    font-weight: 300;
}

.features h2{
    display: inline-block;
    height: inherit;
    vertical-align: top !important;
}

.text-corporate{
    height: inherit !important;
}

.news-block p{
    margin-left: 50px !important;
}

.under_logo_img{
    display: none;
}

.enlarged-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.enlarged-image {
  max-width: 80%;
  max-height: 80%;
}

@media(max-width: 675px){
    .enlarged-image {
        max-width: 60%;
        max-height: 60%;
    }
}

.doctors-card {
  display: flex;
  flex-direction: column;
}

.bold-text {
  font-weight: bold;
}

.normal-text {
  display: inline;
  font-weight: normal;
  margin-left: 5px;
}

#cooperate-btn{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 10px !important;
}

@media(max-width: 450px){
    .cooperate-btn{
        font-size: 14px !important;
    }
}

.cooperate-form{
    z-index: 1000 !important;
    height: 200px !important;
    margin-top: 5.15%;
    width: 46vw !important;
    height: 260px !important;
}

.cooperate-text-in-form{
    display: none;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);  /* Цвет фона с прозрачностью */
    backdrop-filter: blur(1px);  /* Размытие заднего фона */
    display: none;  /* По умолчанию скрыт */
}

.last-block{
    margin-bottom: 65px;
}

.grid-container {
  display: grid;
  grid: 40px / auto auto;
  grid-gap: 10px;
}

.grid-container > div {
  text-align: center;
  font-size: 14px;
  text-align: left;
}

@media(max-width: 500px){
    th{
        font-size: 12px;
        align-items: left;
        text-align: left;
    }
    .time{
        text-align: left;
        font-size: 12px;
    }
}

.no-txt{
    color: #fff !important;
}


@media(max-width: 500px){
    .under-footer p{
           font-size: 10px;
    }
}    
    
.footer-infos{
    margin-top: 25px !important;
}


.cookeis-and-confidence{
    margin-left: 70px;
}

.navbar-responsive-left{
    display: none;
}

@media(max-width: 1323px){
    .header{
        display: flex !important;
        background-color: #fff;

    }
    .right{
        display: none;
    }
    #location{
        display: none;
    }
    .left{
        width: 100%;
        height: 130px;
        margin: 0;
        justify-content: center;
    }
    .navigation-stuff{
        display: flex !important;
    }
    .logo_img{
        margin-left: 0 !important;
    }
    .nav{
        color: #fff;
        background-color: 5262ad;
    }
    .navbar-responsive-left{
        margin-left: 50px;
        display: block;
        font-size: 40px;
    }
}

h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
  }
h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 300;
    margin-bottom: 30px;
}  
.container-fluid {
    padding: 15px 25px;
}
footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C4D600;
}
@keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
}
@media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
}
@media screen and (max-width: 480px) {
    .logo {
      font-size: 150px;
    }
}
.bg-primary{
    color: #fff;
    background-color: #22272B !important;
}

.h2{
    color: #fff;
    font-weight: 300;
}

#cookies-rights{
    font-size: 11px;
    margin: 0;
    line-height: 12px;
}
#cooperate-btn{
    margin-top: 20px;    
}

/* ===== CSS, перенесений із HTML-сторінок ===== */

h2 {
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 400;
        margin-bottom: 16px;
      }
    h4 {
        font-size: 19px;
        line-height: 1.375em;
        color: #303030;
        font-weight: 300;
        margin-bottom: 30px;
    }  
    .container-fluid {
        padding: 15px 25px;
    }
    footer .glyphicon {
        font-size: 20px;
        margin-bottom: 20px;
        color: #C4D600;
    }
    @keyframes slide {
        0% {
          opacity: 0;
          transform: translateY(70%);
        } 
        100% {
          opacity: 1;
          transform: translateY(0%);
        }
    }
    @-webkit-keyframes slide {
        0% {
          opacity: 0;
          -webkit-transform: translateY(70%);
        } 
        100% {
          opacity: 1;
          -webkit-transform: translateY(0%);
        }
    }
    @media screen and (max-width: 768px) {
        .col-sm-4 {
          text-align: center;
          margin: 25px 0;
        }
        .btn-lg {
          width: 100%;
          margin-bottom: 35px;
        }
    }
    @media screen and (max-width: 480px) {
        .logo {
          font-size: 150px;
        }
    }
    .bg-primary{
        color: #fff;
        background-color: #22272B !important;
    }

    .h2{
        color: #fff;
        font-weight: 300;
    }

    #cookies-rights{
        font-size: 11px;
        margin: 0;
        line-height: 12px;
    }

/* --- новий блок --- */

.dropdown {
        position: relative;
        display: inline-block;
        }
        
        .dropdown-content {
        display: none;
        position: absolute;
        width: 220px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 12px 16px;
        z-index: 1;
        }
        
        .dropdown:hover .dropdown-content {
          display: block;
        }
        .dropdown-content:hover .dropdown  {
          background-color: #C4D600 !important;
        }
        .dropdown-content-link:hover  .dropdown  {
          background-color: #C4D600 !important;
        }
        .dropdown:active .dropdown-content {
            display: block;
        }
        
        .dropdown-content{
            background-color: #22272B;
            color:#fff
        }
        
        .dropdown-content-link{
            line-height: 30px;
            width: 220px;
            border-bottom: solid;
            border-bottom-width: 1px;
            border-bottom-color: #fff;
            font-size: 18px;
            font-weight: 500;
        }
        
        .dropdown-content-link-last{
            border: none;
        }
        
        .dropdown-btn{
            width: 100vw;
            text-align: left;
            border-style: none;
            background-color: #22272B;
            color: #fff;
            height: 35px;
        }
        .mobile-dropdown-content{
            display: none;
            background-color: #22272B;
            color: #fff;
        }
        .mobile-dropdown-content a{
            margin-left: 50px !important;
        }

        *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
}

.header{
    background-color: #f1f1f1;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    gap: 1rem;
    z-index: 999;
    position: sticky;
}

.link{
    margin-right: 50px;
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    letter-spacing: 1px;
    font-weight: medium;
}

a{
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

a:hover{
    text-decoration: none;
    color: #fff;
}

#info-bar{
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-left: 20px;
    margin-right: 10px;
}

.dropdown.active > .link,
.link:hover{
    color: #fff;
}

.link:hover{
    color: #fff;
}

.dropdown{
    position: relative;
    float: right;
}

.dropdown-menu{
    position: absolute;
    display: block;
    right: 0;
    top: calc(100% + .7rem);
    background-color: #22272B;
    border: none;
    border-radius: 0;
    padding: .75rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown.active > .link + .dropdown-menu{
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}

.information-grid{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 2rem;
}

.dropdown-links{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.logo_img {
  float: left;
  height: 120px;
  display: block;
  margin-left: 50px;
}

.navigation-stuff{
    width: 100vw;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right{
    display: flex;
    width: 600px;
    height: 120px;
    align-items: center;
}

.left{
    display: flex;
    width: 800px;
    float: left;
    align-items: center;
    margin-right: 4vw;
}



#facebook{
    color: #22272B;
    margin-right: 20px;
    margin-left: 85px;
    font-size: 40px;
}

#instagram{
    background: #22272B;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-right: 20px;
    font-size: 40px;
}

#linkedin{
    margin-right: 20px;
    font-size: 38px;
    color: #22272B;
}

.date-and-number{
    margin-right: 20px;
    font-weight: bold;
    font-size: 20px;
    font-weight: medium;
    color: #22272B;
}

#location{
    margin-left: 30px;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #22272B;
    height: 60px;
    z-index: 200;
    position: sticky;
}

.under-navigation{
    margin: 0 auto;
}

.under-navigation button:hover{
    background-color: #C4D600;
}

.features h1 {
    text-align: center;
    font-size: 50px;
}

#main-news{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 2em;
}

.alert-warning{
    align-self: center;
    clear: both;
    background-color: #fff;
    border: none;
    color: #000;
    width: 300px;
    height: 900px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: left;
    overflow: hidden
}

.alert-warning p{
    text-align: left;
}

.container{
    max-width: 1170px;
    margin: auto;
    margin-top: 20px;
}

ul{
 list-style: none;
}

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

.footer{
    margin-top: 10px;
    background-color: #22272B;
    padding: 0 0 0 0;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 30px;
    color: #fff;
    margin-bottom: -45px;
    margin-left: -50px;
    font-weight: 500;
    position: relative;
    width: 30px;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #C4D600;
    height: 0;
    box-sizing: border-box;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #fff;
    padding-left: 8px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #3b5998;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #fff;
}

.logo_footer{
    height: 30px;
    width: auto;
}

/*responsive*/
@media(max-width: 1235px){
    .footer-col{
        width: 50% !important;
        margin-bottom: 30px;
    }
    .footer{
        display: none;
    }
}

@media(min-width: 1236px){
    .mobile-footer{
        display: none;   
    }
}

@media(max-width: 574px){
    .footer-col{
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .footer-adresses{
        display: none;    
    }
    
    .phones-footer{
        display: none;    
    }
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 67%;
  margin: auto;
  margin-top: 50px;
}

td, th {
  border: 1px solid #f1f1f1;
  text-align: left;
  padding: 8px;
  letter-spacing: 1px;
}

.main-table-line{
    background: #22272B;
    color: #fff;
}

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

.find-analyse{
    width: 200px !important;
}

.find-analyse input{
    border-style: none;
}

.ordering-push{
    width: 70px;
    padding: 0px;
}

.time{
    text-align: center;
}

#slider{
    position: relative;
    width: 75vw;
    height: auto;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

#slider ul{
    position: relative;
    list-style: none;
    width: 10000%;
    padding: 0;
    margin: 0;
    transition: all 750ms ease-in-out;
    left: 0;
}

#slider ul li{
    position: relative;
    float: left;
}

#slider ul li img{
    width: 75vw;
    height: auto;
}

@media(max-width: 1323px){
    #slider{
        width: 100vw;
    }
    
    #slider ul li img{
        width: 100vw !important;
    }
}

.mobile-slider{
    display: none;
}

@media(max-width: 720px){
    .mobile-slider{
        display: block;
    }
    
    .desktop-slider{
        display: none;    
    }
}

#slider #prev,
#slider #next{
    width: 50px;
    line-height: 50px;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 150ms ease;
}

#slider #prev{
    left: 10px;
}

#slider #next{
    right: 10px;
}

#slider #prev:hover,
#slider #next:hover{
    background-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0;

}

iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
}

.submit-btn{
    height: 20px;
    width: 50px;
}

#full-form{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    left: 50%;
    bottom: 70%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 500;
}

.info-of-analyse{
    position: fixed;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    width: 900px;
    height: 700px;
    border-style: solid;
    border-color: #22272B;
    color: #22272B;
}

.info-of-analyse p,
.info-of-analyse h3
{
    color: #22272B;
}

.info-of-analyse h3{
    border-bottom-style: double;
    border-color: #C4D600;
    border-width: 9px;
}

.input-name{
    margin-top: 10px;
}

.submit-btn{
    width: 300px;
    height: 40px;
    margin-bottom: 10px;
    border-color: #C4D600;
    border-style: solid;
}

.confirm-btn{
    border-style: none;
    background-color: #22272B;
}

#analyse_info_form{
    width: 900px;
    height: 50px;
    text-align: center;
    margin-top: 0px;
    border: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #22272B;
    color: #fff;
    z-index: 1000 !important;
}

.upper-footer{
    padding: 0;
    margin: 0;
    border-bottom-style: solid;
    border-width: 3px;
    border-color: #fff;
}

.upper-footer h4{
    margin: 0;
}

.upper-footer li{
    display: inline-block;
     margin-top: 20px;
}

.upper-footer .social-links{
    width: 100vw;
    margin-bottom: 20px;
}


.social-networks{
    float: right;
    margin-right: 30px;
}

.footer h6{
    color: #000;
}

.under-footer{
    border-bottom: none;
    background-color: #fff;
}

.under-footer .social-links{
    margin-bottom: 0;
}

#info-bar{
    width: 220px;
    height: 60px;
    border-right:solid #f1f1f1 2px;
    margin-left: 0;
    margin-right: 0;
}

#info-bar:hover{
    background-color: #f1f1f1;
}

.last{
    border: 0px solid black !important;
}

.social-links p{
    font-size: 12px;
}

.social-links img{
    margin-right: 75px;
    margin-left: 30px;
    height: 50px;
    width: auto;
}

.upper-footer .social-networks a{
    background-color: #22272B;
    font-size: 40px;
}

#min-text{
    font-size: 19px;
}

#info-bar:hover{
    background: #C4D600;
}

.features .left-align-headings{
    position: absolute;
    width: 360px;
}

#close-button{
    float: right;
    border: none;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    background-color: #f1f1f1;
    line-height: 16px;
    margin-right: 5px;
    margin-top: 5px;
}

.footer-email-ul{
    margin-bottom: 0px;
    margin-top: 0.8rem;
}

.medic{
    color: black;
}

.medic:hover{
    color: blue;
}

.burger-btn{
    border: none !important;
    display: none;
    float: right;
    font-size: 40px;
}

.burger-btn:hover{
    color: #fff;
}

.szirovaja-otkladina{
    display: none;
}

.szirovaja-otkladina li a{
    color: #fff;
    margin-left: 20px;
}

.szirovaja-otkladina li {
    background-color: #22272B;
    width: 100vw;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #fff;
    line-height: 36px;
}

.phones-footer{
    width: 220px;
}

@media(max-width: 991px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 661px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 768px){
    .header{
        display: none !important;   
    }
    .under-navigation{
        display: none;
    }

    .navigation-stuff{
        display: none;
    }

    .burger-btn{
        display: block;
        float: right;
    }
    .nav{
        justify-content: right;
        align-items: center;
        background-color: #f1f1f1;
    }

    .szirovaja-otkladina{
        display: none;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .left-align-headings h2{
        font-size: 18px !important;
    }

    .under_logo_img{
        display: flex !important;
        width: 150px;
        float: left !important;
    }

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

@media(max-width: 928px){
    .info-of-analyse{
        width: 350px;
    }

    #full-form{
        width: 350px;
    }

    #analyse_info_form{
        width: 350px;
    }

    .responsive-input{
        width: 30vw;
    }
}

@media(max-width: 482px){
    #order-button{
        width: 40px;
    }

    .find-analyse input{
        width: 154px;
    }
}

.corporative{
    font-size: 14px !important;
}

.left-align-headings h2{
    font-size: 17px !important;
    font-weight: 600 !important;
}

.doctors-image{
    width: 280px;
    height: auto;
}

.title button{
    display: none;
}

.title p{
    display: none;
}

.title .name{
    font-size: 20px;
}

.title{
    width: 75%;
    background-color: #f1f1f1;
}

.order-button{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 5px;
    height: 40px;
    width: 90px;
}

#send-request-submit{
    height: 60px !important;
    background-color: #f1f1f1;
    border-style: none;
    font-weight: bold;
}

.find-analyse{
    display: inline;
}

input::placeholder{
    padding: 5px;
}

.corporative{
    text-align: left !important;
    font-size: 22px;
    margin-top: 56px !important;
}

.last-span{
    margin-bottom: 10px;
}

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

.cooperate-btn{
    width: 46vw;
    height: 5vh;

}

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

#left-paragraph{
    text-align: left;
}

.alert-warning h3::before{
    content: '';
    position: absolute;
    background-color: #C4D600;
    height: 27px;
    width: 2px;
    top: 17px;
    left: 20px;
    box-sizing: border-box;
}

.alert-warning h3{
    margin-left: 10px;
    color: #22272B;
    font-size: 30px;
}

.name{
    margin-top: 64px;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.name::before{
    top: 435px !important;
    height: 50px !important;
}

.sub-text{
    font-size: 14px !important;
    margin-left: 0 !important;
    margin-top: 22px !important;
}

.sub-text::before{
    width: 0px;
}

@media(max-width: 450px){
    .coprporate-heading{
        font-size: 14px !important;
    }
}

@media(max-width: 900px){
    iframe{
         width: 100vw !important;
    }
}

p{
    font-size: 14px;
    line-height: 24px;
}

/* news block */
.news-block{
    width: 100vw;
    margin-top: 42px;
}

.news-image{
    margin-left: 50px;
    width: 300px;
    border-radius: .25rem;
    vertical-align: text-bottom !important;
}

.coprporate-heading{
    margin-right: 20px;
    height: inherit;
    vertical-align: text-bottom !important;
    padding-bottom: 8px;
    background: none;
    color: #22272B;
    margin-left: 0;
    width: 25vw;
    font-weight: 600;
    font-size: 17px;
    text-align: right;
    border-bottom-style: solid;
    border-bottom-color: #C4D600;
    border-bottom-width: 2px; 
}

.news-block p{
    width: 50%;
    height: inherit;
    display: inline-block;
    text-align: left !important;
    vertical-align: top !important;
    margin: 0 !important;
}

td p{
    font-weight: 300;
}

.features h2{
    display: inline-block;
    height: inherit;
    vertical-align: top !important;
}

.text-corporate{
    height: inherit !important;
}

.news-block p{
    margin-left: 50px !important;
}

.under_logo_img{
    display: none;
}

.enlarged-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.enlarged-image {
  max-width: 80%;
  max-height: 80%;
}

@media(max-width: 675px){
    .enlarged-image {
        max-width: 60%;
        max-height: 60%;
    }
}

.doctors-card {
  display: flex;
  flex-direction: column;
}

.bold-text {
  font-weight: bold;
}

.normal-text {
  display: inline;
  font-weight: normal;
  margin-left: 5px;
}

#cooperate-btn{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 10px !important;
}

@media(max-width: 450px){
    .cooperate-btn{
        font-size: 14px !important;
    }
}

.cooperate-form{
    z-index: 1000 !important;
    height: 200px !important;
    margin-top: 5.15%;
    width: 46vw !important;
    height: 260px !important;
}

.cooperate-text-in-form{
    display: none;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);  /* Цвет фона с прозрачностью */
    backdrop-filter: blur(1px);  /* Размытие заднего фона */
    display: none;  /* По умолчанию скрыт */
}

.last-block{
    margin-bottom: 65px;
}

.grid-container {
  display: grid;
  grid: 40px / auto auto;
  grid-gap: 10px;
}

.grid-container > div {
  text-align: center;
  font-size: 14px;
  text-align: left;
}

@media(max-width: 500px){
    th{
        font-size: 12px;
        align-items: left;
        text-align: left;
    }
    .time{
        text-align: left;
        font-size: 12px;
    }
}

.no-txt{
    color: #fff !important;
}


@media(max-width: 500px){
    .under-footer p{
           font-size: 10px;
    }
}    
    
.footer-infos{
    margin-top: 25px !important;
}


.cookeis-and-confidence{
    margin-left: 70px;
}

.navbar-responsive-left{
    display: none;
}

@media(max-width: 1323px){
    .header{
        display: flex !important;
        background-color: #fff;

    }
    .right{
        display: none;
    }
    #location{
        display: none;
    }
    .left{
        width: 100%;
        height: 130px;
        margin: 0;
        justify-content: center;
    }
    .navigation-stuff{
        display: flex !important;
    }
    .logo_img{
        margin-left: 0 !important;
    }
    .nav{
        color: #fff;
        background-color: 5262ad;
    }
    .navbar-responsive-left{
        margin-left: 50px;
        display: block;
        font-size: 40px;
    }
}

h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
  }
h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 300;
    margin-bottom: 30px;
}  
.container-fluid {
    padding: 15px 25px;
}
footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C4D600;
}
@keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
}
@media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
}
@media screen and (max-width: 480px) {
    .logo {
      font-size: 150px;
    }
}
.bg-primary{
    color: #fff;
    background-color: #22272B !important;
}

.h2{
    color: #fff;
    font-weight: 300;
}

#cookies-rights{
    font-size: 11px;
    margin: 0;
    line-height: 12px;
}

/* --- новий блок --- */

.dropdown {
        position: relative;
        display: inline-block;
        }
        
        .dropdown-content {
        display: none;
        position: absolute;
        width: 220px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 12px 16px;
        z-index: 1;
        }
        
        .dropdown:hover .dropdown-content {
          display: block;
        }
        .dropdown-content:hover .dropdown  {
          background-color: #C4D600 !important;
        }
        .dropdown-content-link:hover  .dropdown  {
          background-color: #C4D600 !important;
        }
        .dropdown:active .dropdown-content {
            display: block;
        }
        
        .dropdown-content{
            background-color: #22272B;
            color:#fff
        }
        
        .dropdown-content-link{
            line-height: 30px;
            width: 220px;
            border-bottom: solid;
            border-bottom-width: 1px;
            border-bottom-color: #fff;
            font-size: 18px;
            font-weight: 500;
        }
        
        .dropdown-content-link-last{
            border: none;
        }
        
        .dropdown-btn{
            width: 100vw;
            text-align: left;
            border-style: none;
            background-color: #22272B;
            color: #fff;
            height: 35px;
        }
        .mobile-dropdown-content{
            display: none;
            background-color: #22272B;
            color: #fff;
        }
        .mobile-dropdown-content a{
            margin-left: 50px !important;
        }

        *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
}

.header{
    background-color: #f1f1f1;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    gap: 1rem;
    z-index: 999;
    position: sticky;
}

.link{
    margin-right: 50px;
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    letter-spacing: 1px;
    font-weight: medium;
}

a{
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

a:hover{
    text-decoration: none;
    color: #fff;
}

#info-bar{
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-left: 20px;
    margin-right: 10px;
}

.dropdown.active > .link,
.link:hover{
    color: #fff;
}

.link:hover{
    color: #fff;
}

.dropdown{
    position: relative;
    float: right;
}

.dropdown-menu{
    position: absolute;
    display: block;
    right: 0;
    top: calc(100% + .7rem);
    background-color: #22272B;
    border: none;
    border-radius: 0;
    padding: .75rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown.active > .link + .dropdown-menu{
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}

.information-grid{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 2rem;
}

.dropdown-links{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.logo_img {
  float: left;
  height: 120px;
  display: block;
  margin-left: 50px;
}

.navigation-stuff{
    width: 100vw;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right{
    display: flex;
    width: 600px;
    height: 120px;
    align-items: center;
}

.left{
    display: flex;
    width: 800px;
    float: left;
    align-items: center;
    margin-right: 4vw;
}



#facebook{
    color: #22272B;
    margin-right: 20px;
    margin-left: 85px;
    font-size: 40px;
}

#instagram{
    background: #22272B;
    margin-right: 20px;
    font-size: 40px;
}

#linkedin{
    margin-right: 20px;
    font-size: 38px;
    color: #22272B;
}

.date-and-number{
    margin-right: 20px;
    font-weight: bold;
    font-size: 20px;
    font-weight: medium;
    color: #22272B;
}

#location{
    margin-left: 30px;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #22272B;
    height: 60px;
    z-index: 200;
    position: sticky;
}

.under-navigation{
    margin: 0 auto;
    display: flex;          /* додаємо */
}


.under-navigation button:hover{
    background-color: #C4D600;
}

.features h1 {
    text-align: center;
    font-size: 50px;
}

#main-news{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 2em;
}

.alert-warning{
    align-self: center;
    clear: both;
    background-color: #fff;
    border: none;
    color: #000;
    width: 300px;
    height: 900px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: left;
    overflow: hidden
}

.alert-warning p{
    text-align: left;
}

.container{
    max-width: 1170px;
    margin: auto;
    margin-top: 20px;
}

ul{
 list-style: none;
}

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

.footer{
    margin-top: 10px;
    background-color: #22272B;
    padding: 0 0 0 0;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 30px;
    color: #fff;
    margin-bottom: -45px;
    margin-left: -50px;
    font-weight: 500;
    position: relative;
    width: 30px;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #C4D600;
    height: 0;
    box-sizing: border-box;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #fff;
    padding-left: 8px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #3b5998;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #fff;
}

.logo_footer{
    height: 30px;
    width: auto;
}

/*responsive*/
@media(max-width: 1235px){
    .footer-col{
        width: 50% !important;
        margin-bottom: 30px;
    }
    .footer{
        display: none;
    }
}

@media(min-width: 1236px){
    .mobile-footer{
        display: none;   
    }
}

@media(max-width: 574px){
    .footer-col{
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .footer-adresses{
        display: none;    
    }
    
    .phones-footer{
        display: none;    
    }
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 67%;
  margin: auto;
  margin-top: 50px;
}

td, th {
  border: 1px solid #f1f1f1;
  text-align: left;
  padding: 8px;
  letter-spacing: 1px;
}

.main-table-line{
    background: #22272B;
    color: #fff;
}

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

.find-analyse{
    width: 200px !important;
}

.find-analyse input{
    border-style: none;
}

.ordering-push{
    width: 70px;
    padding: 0px;
}

.time{
    text-align: center;
}

#slider{
    position: relative;
    width: 75vw;
    height: auto;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

#slider ul{
    position: relative;
    list-style: none;
    width: 10000%;
    padding: 0;
    margin: 0;
    transition: all 750ms ease-in-out;
    left: 0;
}

#slider ul li{
    position: relative;
    float: left;
}

#slider ul li img{
    width: 75vw;
    height: auto;
}

@media(max-width: 1323px){
    #slider{
        width: 100vw;
    }
    
    #slider ul li img{
        width: 100vw !important;
    }
}

.mobile-slider{
    display: none;
}

@media(max-width: 720px){
    .mobile-slider{
        display: block;
    }
    
    .desktop-slider{
        display: none;    
    }
}

#slider #prev,
#slider #next{
    width: 50px;
    line-height: 50px;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 150ms ease;
}

#slider #prev{
    left: 10px;
}

#slider #next{
    right: 10px;
}

#slider #prev:hover,
#slider #next:hover{
    background-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0;

}

iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
}

.submit-btn{
    height: 20px;
    width: 50px;
}

#full-form{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    left: 50%;
    bottom: 70%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 500;
}

.info-of-analyse{
    position: fixed;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    width: 900px;
    height: 700px;
    border-style: solid;
    border-color: #22272B;
    color: #22272B;
}

.info-of-analyse p,
.info-of-analyse h3
{
    color: #22272B;
}

.info-of-analyse h3{
    border-bottom-style: double;
    border-color: #C4D600;
    border-width: 9px;
}

.input-name{
    margin-top: 10px;
}

.submit-btn{
    width: 300px;
    height: 40px;
    margin-bottom: 10px;
    border-color: #C4D600;
    border-style: solid;
}

.confirm-btn{
    border-style: none;
    background-color: #22272B;
}

#analyse_info_form{
    width: 900px;
    height: 50px;
    text-align: center;
    margin-top: 0px;
    border: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #22272B;
    color: #fff;
    z-index: 1000 !important;
}

.upper-footer{
    padding: 0;
    margin: 0;
    border-bottom-style: solid;
    border-width: 3px;
    border-color: #fff;
}

.upper-footer h4{
    margin: 0;
}

.upper-footer li{
    display: inline-block;
     margin-top: 20px;
}

.upper-footer .social-links{
    width: 100vw;
    margin-bottom: 20px;
}


.social-networks{
    float: right;
    margin-right: 30px;
}

.footer h6{
    color: #000;
}

.under-footer{
    border-bottom: none;
    background-color: #fff;
}

.under-footer .social-links{
    margin-bottom: 0;
}

#info-bar{
    width: 220px;
    height: 60px;
    border-right:solid #f1f1f1 2px;
    margin-left: 0;
    margin-right: 0;
}

#info-bar:hover{
    background-color: #f1f1f1;
}

.last{
    border: 0px solid black !important;
}

.social-links p{
    font-size: 12px;
}

.social-links img{
    margin-right: 75px;
    margin-left: 30px;
    height: 50px;
    width: auto;
}

.upper-footer .social-networks a{
    background-color: #22272B;
    font-size: 40px;
}

#min-text{
    font-size: 19px;
}

#info-bar:hover{
    background: #C4D600;
}

.features .left-align-headings{
    position: absolute;
    width: 360px;
}

#close-button{
    float: right;
    border: none;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    background-color: #f1f1f1;
    line-height: 16px;
    margin-right: 5px;
    margin-top: 5px;
}

.footer-email-ul{
    margin-bottom: 0px;
    margin-top: 0.8rem;
}

.medic{
    color: black;
}

.medic:hover{
    color: blue;
}

.burger-btn{
    border: none !important;
    display: none;
    float: right;
    font-size: 40px;
}

.burger-btn:hover{
    color: #fff;
}

.szirovaja-otkladina{
    display: none;
}

.szirovaja-otkladina li a{
    color: #fff;
    margin-left: 20px;
}

.szirovaja-otkladina li {
    background-color: #22272B;
    width: 100vw;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #fff;
    line-height: 36px;
}

.phones-footer{
    width: 220px;
}

@media(max-width: 991px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 661px){
    #main-news{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 2em;
    }
}

@media(max-width: 1323px){
    .header{
        display: none !important;   
    }
    .under-navigation{
        display: none;
    }

    .navigation-stuff{
        display: none;
    }

    .burger-btn{
        display: block;
        float: right;
    }
    .nav{
        justify-content: right;
        align-items: center;
        background-color: #f1f1f1;
    }

    .szirovaja-otkladina{
        display: none;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .left-align-headings h2{
        font-size: 18px !important;
    }

    .under_logo_img{
        display: flex !important;
        width: 150px;
        float: left !important;
    }

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

@media(max-width: 928px){
    .info-of-analyse{
        width: 350px;
    }

    #full-form{
        width: 350px;
    }

    #analyse_info_form{
        width: 350px;
    }

    .responsive-input{
        width: 30vw;
    }
}

@media(max-width: 482px){
    #order-button{
        width: 40px;
    }

    .find-analyse input{
        width: 154px;
    }
}

.corporative{
    font-size: 14px !important;
}

.left-align-headings h2{
    font-size: 17px !important;
    font-weight: 600 !important;
}

.doctors-image{
    width: 280px;
    height: auto;
}

.title button{
    display: none;
}

.title p{
    display: none;
}

.title .name{
    font-size: 20px;
}

.title{
    width: 75%;
    background-color: #f1f1f1;
}

.order-button{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 5px;
    height: 40px;
    width: 90px;
}

#send-request-submit{
    height: 60px !important;
    background-color: #f1f1f1;
    border-style: none;
    font-weight: bold;
}

.find-analyse{
    display: inline;
}

input::placeholder{
    padding: 5px;
}

.corporative{
    text-align: left !important;
    font-size: 22px;
    margin-top: 56px !important;
}

.last-span{
    margin-bottom: 10px;
}

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

.cooperate-btn{
    width: 46vw;
    height: 5vh;

}

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

#left-paragraph{
    text-align: left;
}

.alert-warning h3::before{
    content: '';
    position: absolute;
    background-color: #C4D600;
    height: 27px;
    width: 2px;
    top: 17px;
    left: 20px;
    box-sizing: border-box;
}

.alert-warning h3{
    margin-left: 10px;
    color: #22272B;
    font-size: 30px;
}

.name{
    margin-top: 64px;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.name::before{
    top: 435px !important;
    height: 50px !important;
}

.sub-text{
    font-size: 14px !important;
    margin-left: 0 !important;
    margin-top: 22px !important;
}

.sub-text::before{
    width: 0px;
}

@media(max-width: 450px){
    .coprporate-heading{
        font-size: 14px !important;
    }
}

p{
    font-size: 14px;
    line-height: 24px;
}

/* news block */
.news-block{
    width: 100vw;
    margin-top: 42px;
}

.news-image{
    margin-left: 50px;
    width: 300px;
    border-radius: .25rem;
    vertical-align: text-bottom !important;
}

.coprporate-heading{
    margin-right: 20px;
    height: inherit;
    vertical-align: text-bottom !important;
    padding-bottom: 8px;
    background: none;
    color: #22272B;
    margin-left: 0;
    width: 25vw;
    font-weight: 600;
    font-size: 17px;
    text-align: right;
    border-bottom-style: solid;
    border-bottom-color: #C4D600;
    border-bottom-width: 2px; 
}

.news-block p{
    width: 50%;
    height: inherit;
    display: inline-block;
    text-align: left !important;
    vertical-align: top !important;
    margin: 0 !important;
}

td p{
    font-weight: 300;
}

.features h2{
    display: inline-block;
    height: inherit;
    vertical-align: top !important;
}

.text-corporate{
    height: inherit !important;
}

.news-block p{
    margin-left: 50px !important;
}

.under_logo_img{
    display: none;
}

.enlarged-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.enlarged-image {
  max-width: 80%;
  max-height: 80%;
}

@media(max-width: 675px){
    .enlarged-image {
        max-width: 60%;
        max-height: 60%;
    }
}

.doctors-card {
  display: flex;
  flex-direction: column;
}

.bold-text {
  font-weight: bold;
}

.normal-text {
  display: inline;
  font-weight: normal;
  margin-left: 5px;
}

#cooperate-btn{
    color: #fff;
    background-color: #22272B;
    border-style: none;
    border-radius: 10px !important;
}

@media(max-width: 450px){
    .cooperate-btn{
        font-size: 14px !important;
    }
}

.cooperate-form{
    z-index: 1000 !important;
    height: 200px !important;
    margin-top: 5.15%;
    width: 46vw !important;
    height: 260px !important;
}

.cooperate-text-in-form{
    display: none;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);  /* Цвет фона с прозрачностью */
    backdrop-filter: blur(1px);  /* Размытие заднего фона */
    display: none;  /* По умолчанию скрыт */
}

.last-block{
    margin-bottom: 65px;
}

.grid-container {
  display: grid;
  grid: 40px / auto auto;
  grid-gap: 10px;
}

.grid-container > div {
  text-align: center;
  font-size: 14px;
  text-align: left;
}

@media(max-width: 500px){
    th{
        font-size: 12px;
        align-items: left;
        text-align: left;
    }
    .time{
        text-align: left;
        font-size: 12px;
    }
}

.no-txt{
    color: #fff !important;
}


@media(max-width: 500px){
    .under-footer p{
           font-size: 10px;
    }
}    
    
.footer-infos{
    margin-top: 25px !important;
}


.cookeis-and-confidence{
    margin-left: 70px;
}

.navbar-responsive-left{
    display: none;
}

@media(max-width: 1323px){
    .header{
        display: flex !important;
        background-color: #fff;

    }
    .right{
        display: none;
    }
    #location{
        display: none;
    }
    .left{
        width: 100%;
        height: 130px;
        margin: 0;
        justify-content: center;
    }
    .navigation-stuff{
        display: flex !important;
    }
    .logo_img{
        margin-left: 0 !important;
    }
    .nav{
        color: #fff;
        background-color: 5262ad;
    }
    .navbar-responsive-left{
        margin-left: 50px;
        display: block;
        font-size: 40px;
    }
}

h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
  }
h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 300;
    margin-bottom: 30px;
}  
.container-fluid {
    padding: 15px 25px;
}
footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C4D600;
}
@keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
}
@media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
}
@media screen and (max-width: 480px) {
    .logo {
      font-size: 150px;
    }
}
.bg-primary{
    color: #fff;
    background-color: #22272B !important;
}

.h2{
    color: #fff;
    font-weight: 300;
}

#cookies-rights{
    font-size: 11px;
    margin: 0;
    line-height: 12px;
}

/* Simple IT-style logo inspired by squalio.com */
.logo-block{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:50px;
}

.logo-text{
  font-size:40px;
  font-weight:700;
  letter-spacing:0.03em;
  color:#22272B;
}

.logo-text span{
  color:#C4D600;
}

.logo-mark{
  width:14px;
  height:14px;
  border-radius:2px;
  background:#C4D600;
  display:inline-block;
}
