:root {
    --thm-base: #c65299;
    --thm-base-bgc: #edd6e4;
    --thm-secondary: #22272b;
    --thm-border: #e1e1e1;
    --thm-b-text: #686a6f;
}

.table-price td {
    margin: auto;
    text-align: center;
    /*border-bottom: 1px solid #ff9dd9;*/
    vertical-align: middle;
    padding: 20px;
}

.table-price-headline td {
    text-align: center;
    background: #ff9dd9;
    vertical-align: middle;
    border: 1px solid #fff;
    color: #fff;
    height: 50px;
}

.table-shedule-headline td {
    text-align: center;
    background: #ff9dd9;
    vertical-align: middle;
    border: 1px solid #fff;
    color: #fff;
    height: 50px;
    padding: 20px !important;
}

.table-shedule tr:nth-child(2n+1){
   border-bottom: 1px solid #ff9dd9;
}

.table-shedule {
    margin: auto;
    margin-top: 20px;
}

.table-shedule-h1 {
    text-align: center;
    padding-top: 30px;
}

.table-shedule td {
    text-align: center;
    vertical-align: middle;
   /* border-bottom: 1px solid #ff9dd9;*/
    height: 50px;
    padding: 20px 3px 20px 3px;
}


.post-title a {
    color: #c65299;
}

.post-content a {
       color: #c65299; 
}

.widget_categories li a{
           color: #030303; 
}

.widget_categories li a:hover{
           color: #c65299; 
}

.widget_search .search-submit {
    background-color: #c65299;
    border-color: #c65299;
}

#search-2 label {
    width: 100%;
}

.fab {
  font-family: Font Awesome\ 5 Brands;
  margin-top: 8px;
 
}

.services-categories__link {
    height: 50px;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid transparent;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    color: #546272;
}

.services-categories__link i {
    margin-right: 10px;
}

.services-categories__link:hover {
    color: #c65299;
}

.services-categories__link:focus {
    color: #c65299;
}

@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Work+Sans:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");


.breadcrumbs-block {
    background-color: #f8f8f8;
    z-index: 1;
    position: relative;
}

.breadcrumbs {
    position: relative;
    z-index: 9;
    margin-left: 2%;
}

.breadcrumbs ul{
    display: inline-flex;
}

.breadcrumbs li{
    list-style-type: none;
}


.breadcrumbs li:before {
  content: '>'; 
  color:#000;
  margin-left: 5px;
  margin-right: 5px;
}


.breadcrumbs li:first-child:before {
  content: ''; 
}


.breadcrumbs a{
    color: var(--thm-base);
}

li {
    font-size: 14.5px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.8;
}

/* Начало «Вкладки на чистом CSS» */

.tabs {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: relative;
    display: flex;
}
.tabs:after {
	content: "";
	clear: both;
	display: block;
	height: 240px;
}
.tabs li {
	flex: auto;
}
.tabs li > input {
	display: none;
}
.tabs li > label {
	display: inline-block;
	border: 1px solid #f8f8f8;
    width: 100%;
	line-height: 30px;
	padding: 5px 20px;
	cursor: pointer;
    text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.tabs li:last-child > label {
	border-right-width: 1px;
}
.tabs .tab-content {
	display: none;
	position: absolute;
	left: 0;
	padding: 20px;
	width: 100%;
}
/* Функциональность: */
.tabs li > input:checked + label {
	background-color: var(--thm-base-bgc);
}
.tabs li > input:checked ~ .tab-content {
	display: block;
}

/* Конец «Вкладки на чистом CSS» */

/* Начало «Нумерованный список» */

.num {
    margin: 2em 7em;
    padding: 2em;
    background-color: var(--light);
}
.num ol {
    list-style-type: none;
    counter-reset: num;
    position: relative;
    margin: 0 0 0 60px;
    padding: 15px 0 5px 0;
    font-size: 16px;
}
.num ol > li {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 10px 0;
    line-height: 1.4;
}
.num ol > li:after {
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    position: absolute;
    top: 0;
    left: -45px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: var(--thm-base-bgc);
    color: var(--thm-base);
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    border: 1px solid var(--thm-base-bgc);
}
/* Вертикальная линия */
.num ol:before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: -31px;
    width: 1px;
    border-left: 1px solid var(--thm-base);
}
/* Скрытие линии у последнего li */
.num ol > li:last-child:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -31px;
    width: 1px;
    background: var(--light);
}

/* Конец «Нумерованный список» */

/* Начало «Карточки Медицинских услуг» */

.medical-services > div {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--thm-border);
    border-radius: 4px;
    margin: 3em auto;
}
.medical-services > div:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--thm-base);
}
.medical-services > div > div:first-child {
    width: 320px;
    margin: 0 auto;
}
.medical-services > div > div:not(:first-child) {
    flex: 320px;
    background-color: #f8f8f8;
    padding: 3em;
}
.medical-services > div > div:not(:first-child) > h3 {
    font-size: 3rem;
}

/* Конец «Карточки Медицинских услуг» */

/* Начало «Стили личных страниц сотрудников» */

.worker {
    padding: 24px;
    border: 1px solid #e8ebf1;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
}
.worker div:first-child {
    margin-right: 24px;
    flex: 0 260px;
}
.worker div:first-child > img {
    border-radius: 8px;
}
.worker div:not(:first-child) {
    flex: 1;
}
.worker div:not(:first-child) > p > span:first-child {
    color: var(--thm-base);
    background-color: #edd6e4;
    border-radius: 4px;
    padding: 4px 8px;
}
.worker div:not(:first-child) > p > span:not(:first-child) {
    color: #000;
    background-color: #f2f8fc;
    border-radius: 4px;
    padding: 4px 8px;
}
.worker div:not(:first-child) > ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.worker div:not(:first-child) > ul > li {
    position: relative;
    margin: 0 5px 5px 0;
    padding: 0;
    flex: 1 300px;
}
.worker div:not(:first-child) > ul > li > div:first-child > p > span {
    color: #000;
    background-color: #f2f8fc;
    border-radius: 4px;
    padding: 4px 8px;
}

/* Конец «Стили личных страниц сотрудников» */

/* Начало «Стили страницы сотрудников» */

.workers {
    display: flex;
    flex-wrap: wrap;
}
.workers div {
    flex: 1 280px;
    max-width: 280px;
    margin: 20px;
    padding: 0px;
    word-break: break-word;
}

/* Конец «Стили cтраницы сотрудников» */
/* Начала «Нумерованный список» */
.ol_bottom {
    max-width: 700px;
    margin: 0 auto;
}
.ol_bottom > li {
    font-size: 2.5rem;
}
.ol_bottom > li > a {
    color: var(--thm-secondary);
}
.ol_bottom > li > a:hover {
    color: var(--thm-base);
}
.ol_bottom > li::marker {
    color: var(--thm-base);
}
/* Конец «Нумерованный список» */
.table-rasp {
    flex-direction: row;
    display: flex;
    font-size: 2rem;
    overflow-x: auto;
}
.table-rasp div:first-child{
    background-color: #f4f5f8;
}
.table-rasp div div:first-child{
    color: var(--thm-base);
    background-color: var(--thm-base-bgc);
    text-align: center;
}
.table-rasp div:not(:first-child) > div:not(:first-child){
    text-align: center;
}
.table-rasp div:not(:first-child) > div:not(:first-child):hover{
    background-color: #f4f5f8;
}
.table-rasp div div{
    padding: .5em;
    /*white-space: nowrap;*/
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0 !important;
    text-decoration: none;
    color: #121521;
}

a {
    color: var(--thm-base);
}

a:hover {
  text-decoration: none;
  color: var(--thm-base);
}



p {
  color: #7d7d7d;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14.5px;
  font-family: 'Work Sans', sans-serif;
}

p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #121521;
}

#btn-poorvision-on {
   /*font-size: 24px;
    width: 40px;
    height: 40px; */
}

.fa-eye {
    padding-top: 5px;
}


.sticky{
    position: fixed !important;
    top: 0;
}

.top-header {
    background-color: #f8f8f8;
    padding: 0px 0px 0px 50px;
    height: auto;
    min-height: 70px;
    z-index: 99999;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.header-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.header-contact-info li {
    display: inline-block;
    margin-right: 20px;
    color: #121521;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
}

.header-contact-info li:hover i {
    background-color: var(--thm-base);
    color: #ffffff;
}

.header-contact-info li i {
    color: var(--thm-base);
    margin-right: 4px;
    width: 28px;
    height: 28px;
    display: inline-block;
    line-height: 28px;
    border-radius: 50%;
    background-color: rgba(0,178,255,0.1);
    text-align: center;
    font-size: 13px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #edd6e4;
}

.header-contact-info li a {
    color: #121521;
}

.header-right-content {
    text-align: right;
}

.header-left-content {
    text-align: left;
}

.header-left-content .top-header-social {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.header-left-content .top-header-social li {
    display: inline-block;
    margin-right: 4px;
}

.header-left-content .top-header-social li a {
    display: block;
    color: var(--thm-base);
    width: 30px;
    height: 30px;
    line-height: 31px;
    border-radius: 50%;
    background-color: rgba(0,178,255,0.1);
    text-align: center;
    font-size: 14px;
    background: #edd6e4;
}


.header-right-content .top-header-social li {
    display: inline-block;
    margin-right: 4px;
}

.header-right-content .top-header-social li a {
    display: block;
    color: var(--thm-base);
    width: 30px;
    height: 30px;
    line-height: 31px;
    border-radius: 50%;
    background-color: rgba(0,178,255,0.1);
    text-align: center;
    font-size: 14px;
    background: #edd6e4;
}

.header-left-content .top-header-social li a:hover {
    color: #ffffff;
    background-color: var(--thm-base);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.fab {
    font-family: Font Awesome\ 5 Brands;
    margin-top: 8px;
}



.header__services {
    max-width: 190px;
    padding: 40px 0;
}


.header__services {
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    background-color: var(--thm-base);
    padding: 15px 0;
    height: 70px;
}

.header__services:hover .title img {
    transform: scale(1.1);
    transition: transform 1.5s;
}

.header__services .title {
    font-size: 16px;
}

.header__services .button {
    margin-left: 8px;
    display: flex;
    flex-direction: column;
}


.header__consultation {
    max-width: 190px;
    color: #E5E5E5;
    background: #484848;
    order: 1;
    white-space: nowrap;
    align-self: stretch;
    border: none;
    margin: initial;
    height: 70px;
}

.header__consultation {
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 7px;
    flex-direction: column;
    align-self: normal;
    margin: 0;
}

.header__consultation:hover {
    opacity: 0.9;
}

.header__consultation span:first-child {
    width: 8px;
    height: 8px;
    background: #ffd800;
    border-radius: 50%;
}


.header__consultation span {
    max-width: initial;
    display: inline-block;
    font-size: 12px;
    white-space: nowrap;
}

.header__consultation span {
    display: flex;
    text-align: center;
    max-width: 50px;
}

.header__consultation span {
    max-width: initial;
    display: inline-block;
    font-size: 10px;
    white-space: nowrap;
    color: #E5E5E5;
}


.header__phone {
    font-size: 12px;
    letter-spacing: 1.6px;
    align-self: stretch;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e5e5e5;
    text-transform: uppercase;
    background-color: #484848;
    height: 70px;
}



.header__phone:hover .top-header {
    position: relative !important;
    
}

.header__phone:hover .header__phone_collapse {
    display: block !important;
}


.header__phone:hover {
    opacity: 0.9;

}

.header__phone a:hover  {
    transition: color 0.3s;
    color: #c65299;
    text-decoration: none;
}

.header__phone span {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.header__phone a {
    transition: color 0.3s;
    color: #E5E5E5;
}

.header__phone i {
    transform-origin: center;
    transition: transform 0.4s;
    font-size: 12px;
    color: #c75299;
}


.header__phone_collapse {
    position: absolute;
    top: 100%;
    z-index: 10;
    width: 100%;
    height: 125px;
    background-color: #484848;
    overflow: hidden;
}

.header__phone_collapse ul {
    display: flex;
    flex-flow: column;
    margin: 20px auto;
    text-align: center;
    font-size: 14px;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!  МЕНЮ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.navbar-area {
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    position: relative;
    z-index: 2;
    /*top: 70px;*/
}

.rehab-nav {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 0;
    padding-left: 0;
}


.rehab-nav .navbar2 {
    padding-right: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.rehab-nav .navbar2 .navbar-nav2 {
    font-family: 'Work Sans', sans-serif;
}

.rehab-nav .navbar2 ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.rehab-nav .navbar2 .navbar-nav2 .nav-item {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}


.navbar-nav2 li a {
        font-size: 17px;
    font-weight: 500;
    color: #121521;
    /* text-transform: capitalize; */
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.rehab-nav .navbar2 .navbar-nav2 .nav-item a {
    font-size: 17px;
    font-weight: 500;
    color: #121521;
    /* text-transform: capitalize; */
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-expand-md {
    text-align: center;
}

.rehab-nav .navbar2 .navbar-nav2 .nav-item.current a.nav-link:after {
    content: "";
    width: 33px;
    height: 3px;
    position: absolute;
    bottom: 10px;
    left: 15px;
    background: rgb(0,242,255);
    background: #edd6e4;
}

.sf-menu li.dropdown ul {
    min-width: 400px !important;
    min-width: 13.33333333em;
    background-color: var(--thm-base);
}

.dropdown-menu li a {
    color: #fff !important;
}



/*!!!!!!!!!!!!!!!!!!!!! FULL MENU !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

#op:checked~.overlay-hugeinc {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 999999;
    overflow: overlay;
    background: rgba(0, 0, 0, 0.91);
    padding-top: 50px;
}

.lower~.overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.9);
}

.div-backtomain {
    position: relative;
    margin-left: 3%;
    margin-top: 1%;
    width: 20%;
    height: 30px;
}

.backtomain-btn {
    font-size: 19px;
    color: white;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

.overlay label {
    width: 58px;
    height: 58px;
    position: absolute;
    right: 60px;
    top: 60px;
    z-index: 100;
    background: url(https://tympanus.net/Development/FullscreenOverlayStyles/img/cross.png);
    cursor: pointer;
}

.div-menu-btn:hover {
    transform: scale(1.1);
    transition: transform 1s;
    cursor: pointer;
}


.overlay ul li a {
    font-weight: 300;
    display: block;
    color: white;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    font-family: 'NotCourierSans';
    /* text-transform: uppercase; */
    font-size: 14px;
    text-align: center;
}


.div-menu-main-raz {
    font-size: 19px !important;
    color: #84aebf !important;
    font-weight: 500 !important;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif !important;
    padding-bottom: 20px;
}

#op:checked~.overlay-hugeinc nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}


.overlay-hugeinc nav ul {
    opacity: 0.4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}
.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.nav-overlay {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

.nav-overlay li {
    padding: 5px;
}

.div-menu-sub-raz:hover {
    color: #84aebf !important;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!  INTRO !!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.input-container {
    margin-top: 15px;
}


.home #content {
    display: -webkit-box;
}

.sigma_banner .banner-slider-inner {
    padding: 200px 0;
    position: relative;
    display: block;
    
}

.banner-slider-inner {
        padding: 200px 0;
    position: relative;
    display: block;
}

.slick-initialized .slick-slide {
    display: block;
}
.slick-slide {
    position: relative;
    outline: none;
}
.bg-center {
    background-position: center;
}
.bg-cover {
    background-size: cover;
}
.dark-overlay, .primary-overlay {
    position: relative;
    z-index: 1;
}

.sigma_banner-text {
    position: relative;
    z-index: 1000;
}

.sigma_banner-text .title {
    font-size: 63px;
    font-weight: 700;
    line-height: 1.2;
}

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

.sigma_banner .banner-links {
    margin-top: 50px;
}

button, input[type=reset], input[type="button"], input[type="submit"], .sigma_btn {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    background-color: var(--thm-base);
    border: 0;
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
    padding: 19px 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: uppercase !important;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.sigma_btn:hover {
    background: #fff;
    color: var(--thm-base);
    transition: color 2s;
    text-decoration: none;
}

input[type="number"], input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="search"], select, textarea, .form-control {
    position: relative;
    display: block;
    height: 60px;
    width: 100%;
    font-size: 16px;
    color: #686a6f;
    font-weight: 400;
    padding: 14px 30px;
    letter-spacing: 0.1em;
    background-color: #f4f5f8;
    border: 1px solid var(--thm-border);
    border-radius: 0;
    transition: all 300ms ease;
    font-family: var(--thm-b-font);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

.btn-block:hover{
    background: #fff;
    color: var(--thm-base);
    transition: color 2s;
}

/* video bg*/
#nubexDiv {
		top: 0; bottom: 0; left: 0; right: 0;
		position: absolute;
		overflow: hidden;
	}
	
#nubexVideo {
		top: 0; left: 0;
		position: absolute;
		width: auto; height: auto;
		min-width: 100%; 
		min-height: 100%; 
	}

/*intro modules*/
.intro-contact-module {
    position: relative;
    bottom: -350px;
    width: 100%;
    display: inline-flex;
}

.elementor-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 20px 10px;
    background-color: #fff;
    border-style: solid;
    border-width: 6px 6px 6px 6px;
    border-color: #f5f5f5;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
    text-align: center;
    height: 200px;
}

.ha-infobox-figure--icon {
    font-size: 36px;
    color: var(--thm-base);
}

.ha-infobox-title {
    color: var( --e-global-color-424501d );
    font-family: "Scada", Sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.ha-infobox-text {
    color: #8c8c8c;
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
}

.ha-infobox-text a {
    color: #8c8c8c;
}

.ha-infobox-text a:hover {
    color: var(--thm-base);
}



/*!!!!!!!!!!!!!!!!!!!!!!  ABOUT !!!!!!!!!!!!!!!!!!!!!!!!!!*/
article {
    padding: 2em;
}
.section {
    position: relative;
    padding: 200px 0;
}

.sigma_about {
    position: relative;
}

.sigma_about .sigma_about-image-1, .sigma_about .sigma_about-image-2 {
    /*border: 8px solid var(--thm-base);*/
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    position: relative;
}

.sigma_about.style-13 .sigma_about-author, .sigma_about.style-20 .sigma_about-author {
    font-size: 20px;
    display: flex;
    align-items: center;
}
.sigma_about.style-13 .sigma_about-author {
    top: 25px;
    right: -80px;
}
.sigma_about.style-13 .sigma_about-author {
    background-color: #fff !important;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 3%);
}
.sigma_about.style-7 .sigma_media, .sigma_about.style-9 .sigma_media, .sigma_about.style-14 .sigma_media, .sigma_about.style-13 .sigma_about-author, .sigma_about.style-20 .sigma_about-author {
    position: absolute;
    right: -80px;
    top: 30px;
    font-family: var(--thm-font);
    background-color: var(--thm-base);
    padding: 20px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    min-width: 300px;
    margin-top: 0;
}

.sigma_about.style-13 .sigma_about-author img, .sigma_about.style-20 .sigma_about-author img {
    border-radius: 50%;
    margin-right: 20px;
}

.secondary-color {
    color: var(--thm-secondary);
}

.primary-color {
    color: var(--thm-base);
}

.sigma_about.style-13 .sigma_about-author, .sigma_about.style-20 .sigma_about-author {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.section-title .subtitle {
    display: inline-flex;
    color: var(--thm-base);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
}

.section-title .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    position: relative;
    word-break: break-word;
}

.sigma_about.style-13 .sigma_tab-item .nav-tabs {
    margin-bottom: 12px;
}
.sigma_tab-item.style-5 .nav-tabs, .sigma_tab-item.style-6 .nav-tabs {
    justify-content: flex-start;
}
.sigma_tab-item .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.sigma_about.style-13 .sigma_tab-item .nav-tabs .nav-item {
    margin-bottom: 0;
}

.sigma_tab-item .nav-tabs .nav-item {
    margin-bottom: 30px;
    position: relative;
}

.sigma_about.style-13 .sigma_tab-item .nav-tabs .nav-link:hover, .sigma_about.style-13 .sigma_tab-item .nav-tabs .nav-link.active {
    color: var(--thm-secondary);
    opacity: 1;
    background-color: transparent;
    box-shadow: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: none;
}

.sigma_about.style-13 .sigma_tab-item .nav-tabs .nav-link {
    padding: 0;
    color: var(--thm-secondary);
    opacity: 0.2;
    font-size: 16px;
}
.sigma_tab-item.style-5 .nav-tabs .nav-link {
    border-color: transparent;
}
.sigma_tab-item .nav-tabs .nav-link.active, .sigma_tab-item .nav-tabs .nav-link:hover, .sigma_tab-item.style-10 .nav-tabs .nav-link.active, .sigma_tab-item.style-10 .nav-tabs .nav-link:hover, .sigma_tab-item.style-12 .nav-tabs .nav-link.active, .sigma_tab-item.style-12 .nav-tabs .nav-link:hover {
    color: #fff;
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    box-shadow: 0 2px 24px rgb(0 0 0 / 4%);
}
.sigma_tab-item .nav-tabs .nav-link {
    color: var(--thm-b-text);
    border: 1px solid var(--thm-border);
    font-weight: 500;
    border-radius: 6px;
    padding: 10px 35px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    position: relative;
}

.about-howwork{
    color:  var(--thm-secondary);
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    position: relative;
    font-size: 16px;
}

.about-howwork:hover {
    text-decoration: none;
    color:  var(--thm-base);
}

/* leftside-menu */
.nav-tabs {
    border: 0;
    justify-content: space-around;
    display: flex;
    flex-flow: column wrap;
    border: none !important;
}

.nav-tabs .nav-item {
    margin-bottom: 1px !important;
    text-align: left;
    margin: 2px;
    padding: 0px;
}

.aboutbtn {
    background: #edd6e4;
    margin-right: 15px !important;;
    border: 0;
    border-radius: 5px;
    font-size: 23px;
    padding: 15px 40px 15px 30px !important;;
    position: relative;
    box-shadow: 0px 0px 25px 2px rgb(196 206 213 / 20%);
    transition: .5s;
    color: #323232;
}

.aboutbtn.active{
    background-color: var(--thm-base) !important;
    color: #fff;
}

.aboutbtn:hover{
    opacity: 0.8;
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: #213162;
    color: #fff;
}

.nav-tabs .nav-link.active {
    /*
    background-color: #c65299 !important;
    color: #fff;
    */
}


.nav-tabs .nav-link.active, .nav-tabs .active i {
    color: #FFFFFF;
}

.nav-tabs .nav-link {
   /* background: #edd6e4;
    margin-right: 15px;
    border: 0;
    border-radius: 5px;
    font-size: 23px;
    padding: 15px 40px 15px 30px;
    position: relative;
    box-shadow: 0px 0px 25px 2px rgb(196 206 213 / 20%);
    transition: .5s;
    color: #323232;*/
}

.witr_taba_style1 .nav-tabs span {
    display: block;
    float: left;
    margin: 0 15px;
}

.nav-tabs .nav-link.active, .nav-tabs .active i {
   /* color: #FFFFFF !important;*/
}
.nav-tabs img, .witr_taba_style1 .nav-tabs i {
    position: relative;
    font-size: 40px;
}
.nav-tabs i {
     color: var(--thm-base);
     font-size: 40px;
}

.witr_tab_icona {
    margin: 0px 20px 0px 0px;
}

.aboutblock {
  display: none;
  width: 100%;
  height: 100px;
}

.aboutblock.active {display: block;}



/*!!!!!!!!!!!!!!!!!!!!! SERVICES !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.section-services {
    overflow:hidden;
}

.section.section-padding {
    padding: 100px 0 70px;
}

.bg-gray {
    background-color: #f8f8f8;
}

.section-title.centered {
    text-align: center;
    margin: 0 auto 50px;
}
.section-title {
    position: relative;
    max-width: 640px;
    text-align: center;
    margin: auto;
    margin-bottom: 60px;
}

.sigma_service:hover {
    background-color: var(--thm-base);
    transform: translateY(-3px);
}

.sigma_service.style-6 .sigma_service-body {
    padding-top: 25px;
    
}
.sigma_service.style-6, .sigma_service.style-7 {
    background-color: #fff;
    padding: 25px;
    margin: 10px;
    height: 700px;
}

.sigma_service.style-2 h5, .sigma_service.style-6 h5, .sigma_service.style-7 h5, .sigma_service.style-8 h5, .sigma_service.style-10 h5, .sigma_service.style-16 h5 {
    margin-bottom: 10px;
}

.sigma_service.style-6 .sigma_service-body h5 a, .sigma_service.style-7 .sigma_service-body h5 a, .sigma_service.style-8 .sigma_service-body h5 a, .sigma_service.style-10 .sigma_service-body h5 a, .sigma_service.style-16 .sigma_service-body h5 a {
    color: var(--thm-secondary);
    font-size: 24px;
    font-weight: 600;
}

.sigma_service.style-6 .sigma_service-body .btn-link, .sigma_service.style-8 .sigma_service-body .btn-link, .sigma_service.style-9 .sigma_service-body .btn-link, .sigma_service.style-10 .sigma_service-body .btn-link, .sigma_service.style-15 .sigma_service-body .btn-link, .sigma_service.style-16 .sigma_service-body .btn-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.sigma_service-body h5 {
    font-size: 24px;
    line-height: 1.3;
    word-break: break-word;
}

.sigma_service-body a {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-b-text);

}

.btn-link {
    transition: 0.3s;
    display: inline-flex !important;
    align-items: center;
    line-height: 1;
    font-weight: 500 !important;
}

.btn-link:hover {
    opacity: 0.9;
    text-decoration: none !important;
    color: var(--thm-base) !important;
}

.sigma_service-thumb {
    margin-bottom: 40px;
    height: 307px;
    overflow: hidden;
}

.sigma_service .sigma_service-thumb img {
    width: 100%;
}

/*rightside-menu*/
.aside-info-solo .aside-info-item li a {
    display: block;
    padding: 22px 30px;
    background: var(--thm-base);
}

.aside-info a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.aside-info-solo .aside-info-item li {
    list-style-type: none;
    border-bottom: 1px solid #fff;
}

.serviceblock.active {
    display: block;
}

.serviceblock {
  display: none;
  width: 100%;
  height: 100px;
}

.servicebtn{
    display: block;
    padding: 22px 30px;
    background: var(--thm-base);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #fff;
}

.servicebtn:hover {
    background: #fff;
    color: var(--thm-base);
    border: 1px solid var(--thm-base);
    transition: color 1s, background 1s, border 1s;
}


/*!!!!!!!!!!!!!!!!!!!!!!  DOCTORS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.doctor-area {
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.bg-fefefe {
    background-color: #fefefe;
}

.section-title span {
    display: block;
    margin-bottom: 5px;
    color: var(--thm-base);
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
}

.section-title p {
    max-width: 520px;
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 500;
}

.doctor-slides .single-doctor-box {
    margin-top: 30px;
}

.single-doctor-box {
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 10%);
    box-shadow: 0 10px 55px 5px rgb(137 173 255 / 10%);
    padding: 25px;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-doctor-box .doctor-image {
    position: relative;
    border-radius: 50%;
}

.single-doctor-box .doctor-image::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 0;
    background-color: var(--thm-base);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-doctor-box .doctor-image img {
    display: inline-block !important;
    width: auto !important;
    border-radius: 50%;
}

.single-doctor-box .doctor-image .details-btn {
    position: absolute;
    top: 50%;
    display: inline-block;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    line-height: 35px;
    border-radius: 50%;
    color: var(--thm-base);
    opacity: 0;
    visibility: hidden;
    margin-top: 25px;
}

.single-doctor-box .doctor-content {
    margin-top: 22px;
}

.single-doctor-box .doctor-content {
    margin-top: 22px;
    word-break: break-word;
}

.single-doctor-box .doctor-content h3 {
    display: inline-block;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    color: #121521;
    word-break: break-word;
}
.single-doctor-box .doctor-content h3 a {
    display: inline-block;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    color: #121521;
    word-break: break-word;
}

.single-doctor-box .doctor-content span {
    display: block;
       font-size: 14.5px;
    margin-top: 5px;
}

.single-doctor-box .doctor-content .social {
    padding-left: 0;
    list-style-type: none;
    margin-top: 18px;
    margin-bottom: 0;
}

.single-doctor-box .doctor-content .social li:first-child {
    margin-left: 0;
}
.single-doctor-box .doctor-content .social li {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
}

.single-doctor-box .doctor-content .social li a {
    display: block;
    color: var(--thm-base);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #edd6e4;
    text-align: center;
    font-size: 14px;
}

.rating-result {
    font-size: 0;
    display: inline-flex;
}

.rating-result span {
	padding: 0;
	font-size: 32px;
	margin: 0 3px;
	line-height: 1;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}
.rating-result > span:before {
	content: '★';
}
.rating-result > span.active {
	color: #c65299;
	text-shadow: 1px 1px #c60;
}

.rating-sub-title {
    display: block;
    margin-bottom: 5px;
    color: var(--thm-base);
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
}


.rating-area {
    overflow: hidden;
    width: auto;
    margin: 0 auto;
    display: inline;
}
.rating-area:not(:checked) > input {
	display: none;
}
.rating-area:not(:checked) > label {
	float: right;
	width: 20%;
	padding: 0;
	cursor: pointer;
	font-size: 32px;
	line-height: 32px;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
	margin-right: 0px;
}
.rating-area:not(:checked) > label:before {
	content: '★';
}
.rating-area > input:checked ~ label {
	color: var(--thm-base);
	text-shadow: 1px 1px #c60;
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
	color: var(--thm-base);
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
	color: var(--thm-base);
	text-shadow: 1px 1px goldenrod;
}
.rate-area > label:active {
	position: relative;
}

/*!!!!!!!!!!!!!!!!!!! FAQ !!!!!!!!!!!!!!!!!!!!!!*/
.faq-image {
    width: 100%;
    height: 100%;
}

.faq-accordion {
    max-width: 750px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
}

.faq-accordion .sub-title {
    display: block;
    margin-bottom: 5px;
    color: var(--thm-base);
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
}


element.style {
}
.faq-accordion h2 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 32px;
    font-weight: 500;
}

.faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
}

.faq-accordion .accordion .accordion-item {
    display: block;
    -webkit-box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
    box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
    background: #ffffff;
    margin-bottom: 10px;
    padding: 0px;
}

.faq-accordion .accordion .accordion-title.active {
    border-bottom-color: #eeeeee;
}

.faq-accordion .accordion .accordion-title {
    padding: 12px 20px 12px 51px;
    color: #121521;
    position: relative;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
}

.faq-accordion .accordion .accordion-title:hover {
    text-decoration: none;
    background: #f8f8f8;
}

.faq-accordion .accordion .accordion-title.active i {
    background-color: var(--thm-base);
    color: #ffffff;
}

.faq-accordion .accordion .accordion-title i::before {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-accordion .accordion .accordion-title i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    text-align: center;
    height: 100%;
    background: #f8f8f8;
    color: var(--thm-base);
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.faq-accordion .accordion .accordion-content.show {
    display: block;
}
.faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    padding: 15px;
    font-size: 14.5px;
}

.accordion-item:after {
    display: none;
}

.scene-div {
    position: absolute !important;
}

#scene {
    text-align: center;
    /*display: inline-flex;*/
    /*background: url(/templates/bubnovsk-kmv/images/faq-8.png) no-repeat;*/
    height: 100%;
    width: 100%;
    background-size: contain;
}

#scene1 {
    text-align: right;
}

#scene2 {

}

.faq1 {
    left: 22% !important;
    top: 5% !important;
}

.faq2 {
    left: 58% !important;
    top: 300px !important;
}

.faq3 {
    left: 50% !important;
    top: 100px !important;
}

.faq4 {
    left: 82% !important;
    top: -25px !important;
}

.faq5 {
    left: 17% !important;
    top: -150px !important;
}

.faq6 {
    left: 50% !important;
    bottom: 50px !important;
}

.faq7 {
    left: 65% !important;
    top: 25% !important;
}

.faq8 {

}


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!! NEWS !!!!!!!!!!!!!!!!!!!!!!!!*/

.news-block {
    width: 80%;
    margin: auto;
}

.news-block-div {
    display: flex;
    flex-flow: inherit;
}

.news-block-div .posted-on {
    font-family: var(--thm-font);
    color: var(--thm-b-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 15px;
}

.news-block-div .header {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    max-height: 60px;
    overflow: hidden;
    line-height: 1.3;
    margin-top: 15px;
}

.news-block-div .anons {
    height: auto;
    overflow: hidden;
    text-align: justify;
    position: absolute;
    display: flex;
    flex-flow: column;
}

.news-block-div .item {
    margin-bottom: 30px;
}

.news-block-div .more-btn {
    color: #000;
    font-weight: 700;
}

.newscard {
 /* width: 300px;
  height: 300px;*/
  position: relative;
  perspective: 1000px;
  border: 1px solid #fff;
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  backface-visibility: hidden;
  background-color: #fff;
 }

.back {
  transform: rotateY(180deg);
}
.newscard:hover .front {
	transform: rotateY(180deg);
}
	
.newscard:hover .back {
	transform: rotateY(360deg);
}


/*!!!!!!!!!!!!!!!!!!!!!!!!! PARTNERS   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.partner-area {
    padding-bottom: 90px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.bg-f4f9fd {
    background-color: #f8f8f8;
}

.customers-partner-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.partner-item {
    /*
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
    */
    padding-left: 5px;
    padding-right: 5px;
}


/*!!!!!!!!!!!!!!!!!! CONTACT LINE  !!!!!!!!!!!!!!!!!!!*/

.contactline-area {
    background-color: var(--thm-base);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 30px 50px 30px; 
    display: inline-flex;
    width: 100%;
}

.elementor-image-box-wrapper{
    text-align: left;
}

.elementor-image-box-content {
    
}

.elementor-image-box-title{
    color: #FFFFFF;
    font-family: "Scada", Sans-serif;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    line-height: 36px;
}

.elementor-image-box-description {
    color: rgba(255, 255, 255, 0.52);
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
}

.elementor-image-box-description a {
    color: rgba(255, 255, 255, 0.52);
}

.elementor-image-box-description a:hover {
    color: #fff;
}


/*!!!!!!!!!!!!!!!!!!!!!!!!!! CONTACT FEEDBACK !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.contact-area {
    overflow: hidden;
    padding: 100px 30px 150px 30px;
}

.contact-area h2 {
    color: #000;
    font-family: "Scada", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 20px;
}

.mapblock-contacts {
    display: inline-flex;
    padding: 15px;
}

.mapblock-contacts-block {
    margin: 10px;
}

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

.webform-btn {
    margin: 15px;
}

.webform-textarea {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #686a6f;
    font-weight: 400;
    padding: 14px 30px;
    letter-spacing: 0.1em;
    background-color: #f4f5f8;
    border: 1px solid var(--thm-border);
    border-radius: 0;
    transition: all 300ms ease;
    font-family: var(--thm-b-font);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    height: 135px;
}

.orange-color-btn:hover {
    color: var(--thm-base) !important;
    background: #fff;
    transition: color 1s, background 1s;
}

.elementor-text-editor a {
    color: #7d7d7d;
}

.elementor-text-editor a:hover {
    color: #000;
}

.mapblock.active {
    display: block;
}

.mapblock {
  display: none;
  width: 100%;
  height: 100px;
}

.mapbtn{
    display: block;
    padding: 22px 30px;
    background: var(--thm-base);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #fff;
}

/*!!!!!!!!!!!!!!!!!!!!!!! FOOTER  !!!!!!!!!!!!!!!!!!!!*/

.sigma_footer.style-7.has-no-bg {
    background-image: none;
}
.sigma_footer.style-6, .sigma_footer.style-7 {
    padding-bottom: 0;
}
.sigma_footer {
    background-color: #f7f7f7;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.sigma_footer-widget button:hover {
    background-color: #ffffff;
    color: var(--thm-base); 
    transition: background-color 1s, color 1s;
}

.sigma_footer .sigma_footer-widget {
    padding-bottom: 50px;
    height: 100%;
}

.sigma_footer.style-7 .sigma-call {
    background-color: #fff;
    padding: 16px 20px;
    display: block;
    width: 250px;
    position: relative;
}

.sigma_footer.style-7 .sigma-call p {
    color: var(--thm-secondary);
}

.sigma_footer.style-7 .sigma-call h5 {
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 700;
}

.sigma_footer.style-7 .sigma-call h5 a {
    color: var(--thm-base) ;
}

.sigma-call h5 {
    color: var(--thm-secondary);
    margin-bottom: 0;
    line-height: 1;
}

.sigma_footer.style-7 .sigma-call i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #999b9f;
    opacity: 0.1;
    font-size: 60px;
}
.sigma-call i {
    color: var(--thm-base);
    font-size: 32px;
    margin-right: 18px;
}

.sigma_footer .sigma_footer-widget .widget-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    word-break: break-word;
}

.sigma_footer .sigma_footer-widget a {
    color: #7d7d7d;
}

.sigma_footer .sigma_footer-widget a:hover {
    color: var(--thm-base);
}

.sigma_footer.style-7 .social-connect {
    margin-top: 20px;
}

.sigma_footer.style-7 .social-connect h6 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
}

.sigma_social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    list-style-type: none;
}

.sigma_footer.style-7 .social-connect ul li a {
    width: auto;
    height: auto;
    font-size: 18px;
    background-color: transparent;
    color: var(--thm-base);
}

.sigma_social-icons li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    background-color: #f4f5f8;
    font-size: 15px;
    border-radius: 50%;
    transition: 0.3s;
}

.sigma_social-icons li a:hover {
    background-color: var(--thm-base);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    text-decoration: none;
}

.sigma_footer.style-3 .sigma_footer-links, .sigma_footer.style-5 .sigma_footer-links, .sigma_footer.style-6 .sigma_footer-links, .sigma_footer.style-7 .sigma_footer-links {
    flex-direction: column;
    align-items: start;
    margin: 0;
    list-style-type: none;
}

.sigma_footer .sigma_footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.sigma_footer .sigma_footer-links li {
    position: relative;
}

.sigma_footer .sigma_footer-links li a {
    position: relative;
    color: var(--thm-b-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
}

.sigma_footer.style-7 .social-connect .sigma_social-icons li {
    margin-left: 18px;
}

.sigma_footer.style-7 form span {
    margin-top: 12px;
}
.sigma_footer form span {
    opacity: 0.5;
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

.sigma_footer .sigma_footer-bottom {
    border-top: 1px solid var(--thm-border);
    padding: 30px 0;
    margin-top: 30px;
    text-align: center;
}

.sigma_footer .sigma_footer-copyright {
    margin-top: 25px;
}

.sigma_footer .sigma_footer-copyright p a {
    color: var(--thm-secondary);
    font-weight: 600;
}



/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   MODAL !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.modal-dialog {
    max-width: 600px;
    margin: 0.5rem auto;
}

.modal-header, .modal-content {
    border: 0;
    border-radius: 0;
}

.modal-header {
    padding: 0 !important;
    height: 300px;
    overflow: hidden;
}

.sigma_close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.sigma_close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.sigma_close span {
    position: absolute;
    width: 24px;
    height: 2px;
    opacity: .5;
    transition: .3s;
    background-color: #fff
}

.sigma_close span:first-child {
    transform: rotate(45deg);
}

.sigma_close span:last-child {
    transform: rotate(135deg);
}

.sigma_close:hover span:first-child {
    transform: rotate(0deg);
}

.sigma_close:hover span:last-child {
    transform: rotate(180deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem !important;
    background-size: cover;
}
.modal-body {
    padding: 40px;
}

.sigma_newsletter-popup-text-wrapper {
    text-align: center;
}

.modal-body h3 {
    font-size: 30px;
    margin: 0 0 10px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.sigma_newsletter-popup-modal .sigma_newsletter-popup-dismiss {
    display: block;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.sigma_newsletter-popup-modal.modal-dialog {
    max-width: 600px;
    margin: 0.5rem auto;
}


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    SECOND PAGE             !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.widget_archive li a {
    font-size: 14px;
    color: #484848;
}

.widget_archive li a:hover {
    color: var(--thm-base);
}

.widget_archive li a:before {
    color: var(--thm-base);
}

.widget_archive {
    margin-top: 20px;
}

.widget_recent_entries ul li a {
    font-size: 14px;
    color: #484848;
}

.widget_recent_entries ul li a:hover {
    color: var(--thm-base);
}

.widget_recent_entries ul li a:after {
    border-bottom: 1px solid var(--thm-base);
}

.fancybox-container {
    z-index: 999999;
}


.t431__table, .t431__tbody, .t431__th, .t431__td {
    margin: 0;
    padding: 0;
    border: 0 solid #ccc;
    vertical-align: baseline;
    text-align: inherit;
    font-size: 18px;
    font-weight: 100;
}

.t431__thead .t431__th{
    border-width: 0px 0px 1px 0px;
    border-color: #000000;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.t431__tbody, .t431__th, .t431__td {
    margin: 0;
    padding: 0;
    border: 0 solid #ccc;
    vertical-align: baseline;
    text-align: inherit;
}

.t431__td {
    border-width: 1px 0px;
    vertical-align: top;
    border-color: #d9d9d9;
    color: #4d4c4c;
    padding: 20px;
}

.t431__th {
    padding: 20px;
}

.t431__evenrow {
    background: #f5f5f5;
}

.sub-title-second {
    display: block;
    margin-bottom: 5px;
    color: var(--thm-base);
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
}

.sub-page-banner {
    /* background: url(https://thumb.tildacdn.com/tild3663-3266-4766-b766-363061383637/-/format/webp/DSC_9341_compressed.jpg) no-repeat center; */
    /* background: url(/templates/bubnovsk-kmv/images/DSC_9341_compressed.webp) no-repeat center; */
    /* height: 316px; */
    height: 150px;
    background-color: #89479d;
    background-attachment: fixed;
    position: relative;
    background-size: cover;
    background-position: 64% 57%;
    overflow: hidden;
}

.sub-page-banner .overlay-second {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 217 0 / 0%);
}

.entry-title {
    color: #ffffff;
    padding: 50px 0 0;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 700;
    word-wrap: break-word;
    /* padding: 110px 0 0; */
    /* text-shadow: 2px 0 2px #000, 0 2px 1px #000, -2px 0 2px #000, 0 -2px 2px #000; */
}

.sub-page-banner p {
    font-size: 16px;
    color: #fff;
}


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  MEDIA !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media only screen and (max-width: 767px){

.entry-title {
    padding: 30px 0 0;
}

.sticky {
    position: relative !important;
}

.section {
        padding: 10px;
}

.rehab-nav {
    display: none;
}

.top-header {
    text-align: center;
    padding: 0px 0px 0px 0px;
    height: 500px;
    position: relative;
}

.header-contact-info {
    text-align: center;
    margin: 25px 5px 15px
}

.header-contact-info li {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
}

.header-left-content {
    text-align: center;
}

.header__services {
  max-width: none;
  margin-top: 20px;
}

.header__consultation {
    max-width: none;
}

.mobile-bar a {
    display: block;
    padding: 12px 10px;
    font-size: 25px;
    border-radius: 0;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.banner-slider-inner {
    display: none;
}

.nav-tabs .nav-link {
    margin-right: 0px;
}

.nav-tabs .nav-link {
    padding: 15px;
}

.aboutblock.active {
    height: 100%;
}

.sigma_about-author {
    display: none !important;
}

.section.section-padding {
    padding: 50px 0 10px;
}

.serviceblock.active {
    height: 100%;
}

.sigma_service-thumb {
    height: auto;
}

.sigma_service.style-6, .sigma_service.style-7 {
    height: auto !important;
}

.faq-accordion {
    padding-left: 20px;
    padding-right: 20px;
}

.partner-area {
   padding: 20px;
}

.elementor-image-box-content {
    padding-bottom: 20px;
}

.mapblock-contacts {
    display: block;
}

.contact-area {
    padding-bottom: 30px;
}

.faq-image {
    display: none;
}

.doctor-area {
    padding-bottom: 20px;
}

.lower {
    display: none;
}

.sf-menu {
    float: none !important;
}

.div-menu-main-raz {
    font-size: 19px !important;
    color: #84aebf !important;
    font-weight: 500 !important;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif !important;
    padding-bottom: 20px;
}

.div-menu-sub-raz {
    font-size: 14px !important;
    position: relative;
    color: white !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    line-height: 14px;
    width: 400px;
}

.pushy-submenu-open ul {
    display: block !important;
    position: relative !important;
}

#mobile-menu {
    background-color: var(--thm-base);
}

#mobile-menu-trigger i {
    color: #fff;
}

#mobile-menu li a {
    font-size: 15px !important;
    color: #ffffff !important;
    border-top: none;
    width: 99%;
}

.fa-bars:before {
    margin-right: 5px;
}


.modal-content {
    margin: 5px;
}


}






@media only screen and (min-width: 768px) and (max-width: 992px) {

.sticky {
    position: relative !important;
}

#mobile-menu-trigger {
    display: none;
}

.home #content {
    display: none;
}

}






@media only screen and (min-width: 768px) and (max-width: 1200px){




.banner-slider-inner {
   padding: 10px 0; 
}

#nubexVideo {
    bottom: 100px;
    top: auto;
}    
    
    
.sigma_banner-text {
    top: 100px;
}    

.intro-contact-module {
    bottom: -200px;
}
    
.aboutblock.active {
    display: flex;
    flex-flow: column;
    height: max-content;
}

.serviceblock.active {
    display: flex;
    flex-flow: column;
    height: max-content;
}
    
    

}


