@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.eot');
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
        url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-SemiBold.eot');
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
        url('../fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('../fonts/OpenSans-SemiBold.woff') format('woff'),
        url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Bold.eot');
    src: local('Open Sans Bold'), local('OpenSans-Bold'),
        url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-ExtraBold.eot');
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'),
        url('../fonts/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('../fonts/OpenSans-ExtraBold.woff') format('woff'),
        url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
	
}
:root {
    --blue: #00AFFF;
    --white: #fff;
    --font-col-one: #243B53;
    --footer-font-col: #F3F2FF;
    --accent-col: #FF9800;
}
.d-b{
    display: block !important;
}
.d-n{
    display: none !important;
}

form br{
    display: none;
}
input:focus-visible{
    outline: none;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs{
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 19px;
}
.breadcrumbs a{
    color: #000;
    text-decoration: none;

} 

.breadcrumb_last{
    color: var(--accent-col);
    text-decoration: underline;
}
/*HEADER*/

.header{
    position: relative;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.header-logo{
    display: flex;
    align-items: center;
}
.header-logo-wrapper{
    margin-right: 10px;
    width: 245px;
}
.header-logo-wrapper img{
    width: 100%;
    height: 56px;
}
.logo-massagers img{
    width: 30px;
    height: 30px;
}
.logo-massagers{
    position: relative;
}
.logo-massagers:hover .logo-mes-options{
    display: flex;
}

.logo-mes-options{
    position: absolute;
    background-color: #fff;
    box-shadow: 3px 4px 11px -4px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: center;
    width: 54px;
    padding: 6px;
    z-index: 3;
}
.logo-mes-select{
    position: relative;
}
.logo-mes-select:after{
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 6px;
    background-image: url(../images/header-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: 14px;
    right: 3px;
}
.logo-mes-opt{
    display: block;
    margin-bottom: 5px;
}
.logo-content{
    text-decoration: none;
}
.logo-title{
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--blue);
   
}
.logo-sub-title{
    font-weight: 600;
    font-size: 9px;
    line-height: 9px;
    color: var(--font-col-one);
    max-width: 220px;
    margin-bottom: 7px;
}
.logo-text{
    font-weight: 400;
    font-size: 10px;
    line-height: 11px;
    color: var(--font-col-one);
}
.logo-mes-select,
.header-lang .pll-switcher-select{
    height: 36px;
    width: 54px;
    padding: 5px;
    text-transform: uppercase;
    border-radius: 10px;
   
}
.header-lang .pll-switcher-select{
    border: 1px solid var(--blue);
}
.logo-mes-select{
    border: 1px solid #853EF7;
    padding: 3px 5px;
}
.header-text{
    font-size: 15px;
    line-height: 20px;
    color: var(--font-col-one);
}
.header-text span{
    margin-left: 7px;
    color: red;
}
.header-button{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    padding: 18px 32px;
    background-color: var(--blue);
    text-decoration: none;
    border-radius: 50px;
}
.header-phones{
    display: flex;
    flex-direction: column;
}
.header-phone{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;   
    color: #00AFFF; 
    text-decoration: none;
}
.header-phone:not(:last-child){
    margin-bottom: 6px;
}


/*MENU*/

.main-navigation{
    background-color: var(--blue);
    padding-top: 13px;
    height: 56px;
	position: sticky;
    top: 0;
    z-index: 2;
	
}
.main-navigation .menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
}
.main-navigation .menu>.menu-item>a{
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    padding: 7px 34px 21px 18px;
    transition: all 0.3s ease;
    position: relative;
}
.main-navigation .menu>.menu-item>a:hover{
    background: #F3F2FF;
    border-radius: 0px 10px 0px 0px;
    color: var(--font-col-one);
    transition: all 0.3s ease;
}
#menu-mobile>.menu-item-has-children>a:after,
.main-navigation .menu>.menu-item-has-children>a:after{
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 6px;
    background-image: url(../images/nav-arrow-white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: calc(50% - 9px);
    right: 18px;
    transition: all 0.3s ease;
}
#menu-mobile>.menu-item-active.menu-item-has-children>a:after,
.main-navigation .menu>.menu-item-has-children>a:hover:after{
    transform: rotate(180deg);
    background-image: url(../images/header-arrow.svg);
    transition: all 0.3s ease;
}
.main-navigation .menu>li{
    position: relative;
}
.main-navigation .menu>li>.sub-menu{
    position: absolute;
    background: #F3F2FF;
    border: 12px solid var(--blue);
    border-top: none;
    left: -12px;
    top: 42px;
    list-style-type: none;
    min-width: 250px;
	min-height: 200px;
    display: none;
    z-index: 2;
}
.main-navigation .menu>li>.sub-menu>li:hover>a{
    background-color: var(--white);
    font-weight: 600;
}
.sub-menu a{
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    color: var(--font-col-one);
    padding: 8px 20px;
    display: block;
}
.main-navigation .menu>li>.sub-menu>.menu-item-has-children>a{
    position: relative;
}
.main-navigation .menu>li>.sub-menu>.menu-item-has-children>a:after{
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 6px;
    background-image: url(../images/header-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: calc(50% - 3px);
    right: 18px;
    transform: rotate(-90deg);
}

.sub-menu .sub-menu{
    position: absolute;
    left: 226px;
    top: 0;
    background: #f3f2ff;
    border: 12px solid var(--blue);
    border-top: none;
    border-left: none;
    width: auto;
    height: auto;
    list-style-type: none;
    padding-right: 8px;
    display: none;
}
.sub-menu .sub-menu li{
    background-color: var(--white);
    width: 304px;
}
.sub-menu .sub-menu li a{
    padding: 8px 10px;
}
.sub-menu .sub-menu li:first-child{
    border-radius: 10px 10px 0 0;
}
.sub-menu .sub-menu li:last-child{
    border-radius: 0 0 10px 10px;
}
.main-navigation .menu>.menu-item-has-children:hover>.sub-menu{
    display: block;
}
.sub-menu .menu-item-has-children:hover>.sub-menu{
    display: block;
}
.main-menu-mobile{
    display: none;
}

/*FOOTER*/

.site-footer{
    background-color: #001D32;
    padding: 130px 0;
}
#footer .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-logo{
    margin-bottom: 13px;
}
.footer-logo img{
    width: 44px;
    height: 44px;
    object-fit: cover;
    object-position: center left;
}
.footer-logo{
    display: flex;
    align-items: center;
}
.footer-title{
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    margin-left: 10px;
    text-transform: uppercase;
}
.footer-socials-text{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px; 
    color: var(--footer-font-col);
    margin-bottom: 4px;
}
.footer-socials-link{
    text-decoration: none;
}
.footer-socials-link:not(:last-child){
    margin-right: 10px;
}
.footer-socials-wrapper{
    margin-bottom: 10px;
}
.footer-license{
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    margin-bottom: 10px;
}
.footer-copywrite{
    font-size: 12px;
    line-height: 14px; 
    color: var(--footer-font-col);
    margin-bottom: 10px;
}
.office-adress-title{
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    margin-bottom: 5px;
}
.office-adress-text{
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    max-width: 300px;
}
.footer-menu-title{
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--footer-font-col);
    margin-bottom: 10px;
}
.footer-col .menu{
    list-style-type: none;
}
.footer-col .menu a{
    text-decoration: none;
    display: block;
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    margin-bottom: 7px;
}
.consut-text{
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: var(--footer-font-col);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.consult-links-wrapper{
    margin-bottom: 17px;
}
.footer-mes-link:not(:last-child){
    margin-right: 17px;
}
.footer-mes-link{
    text-decoration: none;
}
.footer-phones{
    margin-bottom: 15px;
}
.footer-phones a{
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: var(--footer-font-col);
}
.footer-col-consult{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-btn{
    font-weight: 700;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 18px 20px;
    background-color: var(--accent-col);
    text-decoration: none;
    border-radius: 50px;

}
.footer-col:first-child{
    flex-basis: 27%;
}
.footer-col:nth-child(2){
    flex-basis: 15%;
}
/*ERROR PAGE 404*/
.error-404{
    height: 85vh;
    background-image: url(../images/bg-first-screen.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 140px;
}
.sub-title{
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    color: var(--white);
}
.main-num-error{
    font-weight: 700;
    font-size: 250px;
    line-height: 250px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}
.error-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
    margin-bottom: 40px;
}
.error-link{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    padding: 18px 32px;
    background-color: var(--blue);
    text-decoration: none;
    border-radius: 50px;
}
.home-page{
    min-height: 50vh;
}

/*Home page*/
.home-first-screen-slider{
    position: relative;
}
.home-first-screen-slide{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 199px 0 120px;
}
.home-first-screen-sub-title{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 24px;
}
.home-first-screen-title{
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    color: var(--font-col-one);
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 530px;
}
.home-first-screen-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--font-col-one);
    margin-bottom: 44px;
    max-width: 430px;
}
.home-first-screen-btn-wrapper{
    display: flex;
    gap: 12px;
}
.home-first-screen-video-text,
.home-first-screen-btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    padding: 18px 32px;
    background-color: var(--accent-col);
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.home-first-screen-btn:hover {
    background-color: #E78739;
    transition: all .3s ease-in-out;
}
.home-first-screen-video-text {
    background-color: var(--blue);
    padding-right: 62px;
}
.home-first-screen-video-text span {
    position: relative;
}
.home-first-screen-video-text:hover {
    background-color: #029fe6;
    transition: all .3s ease-in-out;
}
.home-first-screen-video-text span::after {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    background-image: url('../images/video-icon-blue.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -10px;
    right: -54px;
}
.slick-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
    list-style-type: none;
	flex-wrap: wrap;
	width: 100%;
}
.slick-active .dot{
    background-color: var(--white);
}
.slick-dots .dot{
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--white);
}
.slick-dots li:not(:last-child) .dot{
    margin-right: 15px;
}
.section-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px; 
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--font-col-one);
}
.home-problems{
    margin: 130px 0 110px;
}
.home-problems-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.home-problem-item{
    position: relative;
    margin-bottom: 20px;
    max-width: 389px;
}
.home-problem-img{
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0 0;
}
.home-problem-text-wrapper{
    background-color: var(--blue);
    border-radius: 0 0 30px 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    height: 97px;
}
.home-problem-icon{
    margin-right: 15px;
    width: 40px;
    height: auto;
}
.home-problem-text{
    font-weight: 600;
    font-size: 22px;
    line-height: 35px;
    color: var(--white);
    max-width: 261px;
}

/*FEATURES SECTION*/

.features{
    padding: 130px 0;
    background: linear-gradient(315deg, rgb(112, 108, 254), rgb(53, 184, 254));
}
.features-title{
    color: var(--white);
    margin-bottom: 60px;
}
.features-inner{
    display: flex;
    align-items: flex-start;
}
.features-list{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: 68px;
    margin-bottom: 80px;
    flex-basis: 63%;
}
.features-item{
    flex-basis: 46%;
    display: flex;
    align-items: flex-start;
}
.features-item-icon{
    width: 24px;
    height: auto;
    margin-right: 10px;
}
.features-item-text{
    color: var(--white);
    margin-bottom: 10px;
}
.features-photo-wrapper{
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.features-photo{
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin-bottom: 32px;
}
.features-btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    color: #6C6CFA;
    background-color: var(--white);
    padding: 12px 30px; 
    border-radius: 50px;
}
.features-num-title{
    font-weight: 700;
    font-size: 36px;
    line-height: 43px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 51px;
}
.features-num-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.features-num-item{
    flex-basis: 30%;
}
.features-num-item-title{
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--white);
    color: var(--white);
}
.features-num-item-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--white);
    padding-top: 22px;
}
.map{
    padding: 130px 0 158px;
}
.btn_map{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    background-color: #6F72FF;
    border-radius: 100px;
    padding: 18px 32px;
    text-decoration: none;
}

/*OTHER COUNTRIES*/
.other-countries{
    padding: 130px 0 63px;
    background-color: #F7F8F9;
}
.other-countries-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.other-countries-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 25%;
}
.other-countries-text{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: var(--font-col-one);
}

/*STAGES*/

.home-stages{
    margin: 130px 0;
}
.home-stages-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.stages-item{
    flex-basis: 18%;
    position: relative;
}
.stages-num{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--accent-col);
    font-size: 30px;
    line-height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
    position: relative;
}
.stages-item:not(:first-child):before{
    content: '';
    position: absolute;
    display: block;
    width: 110%;
    height: 1px;
    background-color: var(--accent-col);
    top: 20px;
    left: 0;
    transform: translateX(-50%);
}
.stages-item-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: var(--font-col-one);
    margin-bottom: 7px;
    min-height: 51px;
}
.stages-item-list{
    min-height: 131px;
}
.stages-item-list li{
    margin-bottom: 6px;
}
.stages-item-list li:last-child{
    margin-bottom: 11px;
}
.stages-item-image{
    width: 160px;
    height: auto;
    border-radius: 45px;
}

/*CONSULTATION BLOCK*/

.consultation{
    margin: 130px 0;
}
.consultation-inner{
    border: 6px solid var(--blue);
}
.consultation-header{
    padding: 49px 59px 27px 49px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.consult-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: var(--font-col-one);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.consult-text{
    font-size: 16px;
    line-height: 19px;
    max-width: 425px;
}
.consultation-contacts-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative
}
.consultation-contacts-wrapper:before{
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../images/phone-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -42px;
}
.consult-phone{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #243B53;
    text-decoration: none;
    margin-bottom: 6px;
}
.consult-time{
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
}
.consultation-form{
    background-color:  var(--blue);
    padding: 31px 49px;
}
.consultation-form form{
    display: flex;
    
}
.consultation-form form>p{
    display: flex;
    flex-wrap: wrap;
}

.form-consult-block form input[type="text"],
.form-consult-block form input[type="tel"],
.consultation-form form input[type="text"],
.consultation-form form input[type="tel"]{
    width: 379px;
    height: 60px;
    border-radius: 15px;
    margin-right: 24px;
    border: none;
    padding-left: 20px;
}
.consultation-form form input[type="submit"]{
    width: 270px;
    height: 60px;
    border: none;
    background-color: var(--accent-col);
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
}
.wpcf7-list-item-label{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--white); 
}
.consultation-form form input[type="checkbox"]{
    width: 19px;
    height: 19px;
    margin-right: 10px;
}
.wpcf7-checkbox label{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.wpcf7-list-item{
    margin: 0;
}
.form-wrapper p{
    display: flex;
    flex-direction: column;
}
/*SPECIALISTS SECTIONS*/

.our-spec{
    padding: 130px 0;
    background: linear-gradient(315deg, rgb(112, 108, 254), rgb(53, 184, 254));
}
.spec-title{
    color: var(--white);
    margin-bottom: 60px;
    font-size: 38px;
    line-height: 46px;
    text-transform: uppercase;
}
.spec-content{
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    margin-bottom: 60px;
}
.spec-text{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    max-width: 965px;
}
.spec-btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #6C6CFA;
    background-color: var(--white);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
}
.spec-item-img{
    width: 284px;
	height: 300px;
	margin: 0 auto 20px;
}
.spec-item-img img{
    width: 100%;
    height: 100%;
	object-fit: cover;
    border-radius: 30px;
}
.spec-slider-wrapper{
    position: relative;
}
#spec-next,
#spec-prev{
    position: absolute;
    width: 62px;
    height: 62px;
    background-image: url(../images/arrow-slide-blue.svg);
    background-repeat: no-repeat;
    background-size: 17px 30px;
    background-position: center;
    cursor: pointer;
    top: 125px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #00AAF8;
    z-index: 1;
}
#spec-prev{
    left: 0;
    transform: rotate(180deg);
}
#spec-next{
    right: 15px;
}
.spec-item-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
    margin-bottom: 15px;
}
.spec-item-text{
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 20px;
    color: var(--white);
	padding-right: 20px;	
}
.spec-item-btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    background-color: var(--accent-col);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
}
.spec-item-btn-wrapper{
    display: flex;
    height: 62px;
}
.home-license{
    margin: 130px 0;
}
.video-slider-wrapper,
.license-slider-wrapper{
    position: relative;
}

.video-specz-section .video-slider-wrapper iframe{
    margin-bottom: 0;
    height: 400px;
    width: 100%;
}
.video-specz-section .video-slider-wrapper .video-slide {
    margin: 0 15px;
    box-sizing: border-box;
}
.video-specz-section .video-slider-wrapper .video-slider .slick-list {
    margin: 0 -15px;
}
.video-specz-section{
    margin-top: 30px;
}
.diplomas-section {
    margin: 60px 0;
}
.video-specz-section .video-wrapper iframe{
    width: 100%;
    height: 500px;
    border-radius: 30px;
}
.diplomas-section .special-title,
.video-specz-section .special-title{
    text-align: center;
    margin-bottom: 30px;
}
.license-slide{
    text-decoration: none;

}
.video-slider,
.license-slider{
    padding: 0 60px;
}
.license-slide-img-wrapper{
    position: relative;
    display: block;
    width: 178px;
    height: 269px;
	margin: 0 auto;
}
.license-slide-img-wrapper::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/license-plus.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.license-slide-img-wrapper:hover::before{
    opacity: 1;
    transition: all 0.3s ease;
}
.video-slide img,
.license-slide img{
    width: 100%;
    height: 100%;
	object-fit: cover;
	
}
#video-specz-next,
#video-specz-prev,
#license-next,
#license-prev{
    position: absolute;
    width: 62px;
    height: 62px;
    background-image: url(../images/arrow-slide-blue.svg);
    background-repeat: no-repeat;
    background-size: 17px 30px;
    background-position: center;
    cursor: pointer;
    top: 125px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #00AAF8;
    z-index: 1;
}

#video-specz-prev,
#license-prev{
    left: -50px;
    transform: rotate(180deg);
}
#video-specz-prev,
#video-specz-next{
    top:45%;
}
#video-specz-next,
#license-next{
    right: -50px;
}
.home-license-link-wrapper{
    display: flex;
    margin-top: 60px;
}
.home-license-link{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    text-decoration: none;
    background-color: #6F72FF;
    border-radius: 50px;
    padding: 18px 32px;
}
/*REVIEW HOMEPAGE*/

.home-review{
    padding: 130px 0;
    background-color: var(--blue);
    overflow: hidden;
}
.home-review-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    margin-bottom: 43px;
    color: var(--white);
}
.home-review-tabs{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.review-block .home-review-tabs {
    padding-left: 40px;
}
.home-review-tab {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: var(--white);
    margin-right: 66px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}
.review-block .home-review-tab {
    font-size: 22px;
    line-height: 26px;
}
.home-review-tab-active{
    border-bottom: 3px solid var(--white);
}

.home-review-slider-text-wrapper{
    width: 795px;
    margin: 0 auto;
    position: relative;
}
.home-review-slider-video-wrapper{
    width: 1065px;
    margin: 0 auto;
    position: relative;
}
.home-review-slide{
    background-color: var(--white);
    padding: 25px;
    margin: 0 20px;
}
.home-review-slide-header{
    display: flex;
    margin-bottom: 10px;
}
.home-review-date{
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-right: 40px;
}
.home-review-link{
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #E78739;
}
.home-review-name{
    font-size: 25px;
    line-height: 40px;
    color: var(--font-col-one);
    margin-bottom: 10px;
}
.home-star{
    width: 15px;
    height: 15px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.home-review-rating-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.home-review-text{
    font-size: 15px;
    line-height: 24px;
    color: var(--font-col-one);
    margin-bottom: 10px;
    position: relative;
}
.home-review-learn-more{
    font-weight: 700;
    font-size: 18px;
    line-height: 29px; 
    color: #00AAF8;
}
.home-review-slider-text .slick-list,
.home-review-slider-video .slick-list{
    overflow: inherit !important;
}
.home-review-slide-wrapper{
    opacity: .7;
    transition: all 0.3s ease;
}
.home-review-slide-wrapper.slick-active{
    opacity: 1;
    transition: all 0.3s ease;
}
.news-slider-wrapper,
.home-last-posts-rehab .home-last-posts-slider-wrapper{
    position: relative;
}
#news-next,
#news-prev,
#review_prev,
#review_next,
#home-last-post-prev-new,
#home-last-post-next-new,
#review_video_prev,
#review_video_next{
    position: absolute;
    width: 62px;
    height: 62px;
    background-image: url(../images/arrow-slide-blue.svg);
    background-size: 17px 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    top: calc(50% - 19px);
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #00AAF8;
}
#news-next,
#news-prev,
#home-last-post-prev-new,
#home-last-post-next-new{
    top: calc(50% - 60px);
    width: 55px;
    height: 55px;
    display: none;
}
#news-prev,
#home-last-post-prev-new,
#review_prev,
#review_video_prev{
    left: -15px;
    transform: rotate(180deg);
}
#news-next,
#home-last-post-next-new,
#review_next,
#review_video_next{
    right: -15px;
}
#news-prev,
#home-last-post-prev-new{
    left: 0;
}
#review_video_prev{
    left: 39px;
}
#news-next,
#home-last-post-next-new{
    right: 0;
}
#review_video_next{
    right: 39px;
}
.home-review-video-slide{
    padding: 0 20px;
}
.home-review-video-slide iframe{
    width: 100%;
    height: 564px;
    border-radius: 30px;
}
.home-review-slider-text-wrapper {
    display: none;
}
.home-review-link-wrapper{
    display: flex;
    margin-top: 60px;
}
.home-review-link-btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px; 
    color: #6C6CFA;
    padding: 18px 32px;
    background-color: var(--white);
    border-radius: 50px;
    text-decoration: none;
}
.text-photo{
    margin: 130px 0;
}
.text-photo-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.text-photo-content{
    flex-basis: 68%;
    font-size: 15px;
    line-height: 24px;
}
.text-photo-content li{
    margin-bottom: 10px;
}
.text-photo-link-wrapper{
    display: flex;
    margin-top: 60px;
}
.home-last-post-link,
.text-photo-link{
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #E78739;
    border-bottom: 2px solid #E78739;
    padding-bottom: 5px;
    position: relative;
}
.home-last-post-link:after,
.text-photo-link:after{
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 25px;
    background-image: url(../images/orange-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: -21px;
    top: 4px;
}
.home-faq{
    padding: 130px 0;
    background: linear-gradient(315deg, rgb(112, 108, 254), rgb(53, 184, 254));
}
.faq-title{
    color: var(--white);
}
.home-faq-inner{
    max-width: 1065px;
}
.faq-item{
    border-bottom: 2px solid var(--white);
    padding-bottom: 17px;
    margin-bottom: 17px;
}
.faq-question{
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: var(--white);
    position: relative;
    cursor:pointer;
    padding-right: 40px;
}

.faq-question:after{
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 26px;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: 10px;
    top: 0px;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}
.faq-question-active:after{
    transform: rotate(270deg);
    transition: all 0.3s ease;
}
.faq-answer{
    font-size: 15px;
    line-height: 24px;
    color: var(--white);
    padding-left: 25px;
    display: none;
    margin-top: 17px;
}
.faq-answer ul{
    padding-left: 25px;
    margin-top: 10px;
}
.home-last-posts{
    margin: 130px 0;
}
.home-last-posts-link-wrapper{
    display: flex;
    margin-top: 40px;
}
.home-lasts-posts-tabs{
    display: flex;
    height: 32px;
}
.last-posts-tab{
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--font-col-one);
    text-decoration: none;
    margin-right: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.last-post-tab-active{
    font-size: 30px;
    color: #5D54F6;
    transition: all 0.3s ease;
}
.home-last-posts-inner{
    display: flex;
    
    align-items: flex-start;
    margin-top: 40px;
}
.home-last-post-item{
    display: block;
    flex-basis: 23%;
    text-decoration: none;
}
.home-last-post-item:not(:last-child){
    margin-right: 20px;
}
.home-last-post-img-wrapper{
    width: 285px;
    height: 300px;
    margin-bottom: 15px;
}
.home-last-post-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.last-posts-item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--font-col-one);
}
.last-posts-time{
    font-size: 13px;
    line-height: 16px;
    color: #000;
    margin-top: 10px;
}

/*Gallery page*/
.gallery-page-header{
    padding-top: 40px;
    padding-bottom: 60px;
}
.gallery-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
}
.gallery-page-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-content: space-between;
}
.gallery-item{
    display: block;
    flex-basis: 32%;
    height: 291px;
    object-fit: cover;
    margin-bottom: 20px;
}

.gallery-item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.archive-spec-all-link,
.license-all-link,
.gallery-all-photo-link{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    padding: 18px 32px;
    background-color: #6F72FF;
    border-radius: 50px;
    text-decoration: none;
    display: none;
}
.gallery-all-photo-link-wrapper .container{
    display: flex;
    margin-top: 60px;
    margin-bottom: 130px;

}

/*LICENSE AND CERTIFICATE*/
.license-page{
    background-color: #F7F8F9;
    padding-bottom: 60px;
}
.license-inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.license-page-item{
    background-color: var(--white);
    width: 385px;
    height: 385px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.license-page-item-img-wrapper{
    width: 233px;
    height: 329px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.license-page-item-img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.archive-spec-all-photo-link-wrapper .container,
.certificate-all-photo-link-wrapper .container{
    display: flex;
    margin-top: 40px;
}

/*SINGLE SPECIALST*/

.page-single-specialist{
    padding-top: 40px;
    padding-bottom: 130px;
}
.single-spec-title-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}
.single-spec-title-wrapper h1{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-right: 60px;
}
.single-spec-soc-link{
    text-decoration: none;
    display: block;
    margin-right: 20px;
    
}
.single-spec-soc-link img{
    width: auto;
    height: 34px;
}
.single-spec-socials{
    display: flex;
    align-items: center;
}
.single-spec-position{
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 46px; 
}
.single-spec-body-inner{
    display: flex;
    justify-content: space-between;
}
.single-spec-body-left-img-wrapper{
    width: 389px;
    margin-bottom: 42px;
}
.single-spec-body-left-img{
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.single-spec-body-left{
    flex-basis: 32%;
}
.single-spec-body-right{
    flex-basis: 61.7%;
}
.single-spec-text{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 50px;
}
.single-spec-text p{
    margin-bottom: 18px;
}
.single-spec-list-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 8px;
}
.single-spec-list{
   margin-bottom: 30px; 
   
}
.single-spec-list ul{
    padding-left: 30px;
}
.single-spec-list a{
    font-size: 20px;
    line-height: 32px;
    color: #0B4E66;
    text-decoration: none;
}
.form-name-spec{
    display: none;
}
/*ARCHIVE PAGE*/
.archive-spec{
    padding-top: 40px;
    padding-bottom: 60px;
}
.archive-spec-title{
    margin-bottom: 60px;
}
.archive-spec-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.archive-spec-item{
    margin-right: 22px;
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}
.archive-spec-item:nth-child(3n){
    margin-right: 0;
}
.archive-spec-item-img-wrapper{
    width: 325px;
    height: 325px;
    margin-bottom: 20px;
}
.archive-spec-item-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}
.archive-spec-item-title{
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: var(--font-col-one);
    margin-bottom: 20px;
    text-align: center;
}
.archive-spec-item-pos{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 56px;
}
.archive-spec-item-link{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    background-color: var(--accent-col);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
}


/*ARCHIVE BLOG PAGE*/


.archive-blog{
    padding: 40px 0 130px;
    background-color: #F7F8F9;
}
.blog-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 60px;

}
.content-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.blog-posts_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 760px;
}
.blog-post-item{
    flex-basis: 48%;
    margin-bottom: 60px;
    text-decoration: none;
    color: #000;
}
.blog-post-img-wrapper{
    width: 350px;
    height: 300px;
    margin-bottom: 20px;
}
.blog-post-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.blog-item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}
.blog-sidebar{
    max-width: 360px;
}
.blog-all-category{
    padding: 30px;
    background-color: var(--white);
    border-radius: 30px;
    margin-bottom: 22px;
}
.blog-cat-link{
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--font-col-one);
}
.blog-cat-link:not(:last-child){
    margin-bottom: 20px;
}
.current-cat{
    color: var(--blue);
}
.pagination{
    display: flex;
    justify-content: center;
}
.page-numbers{
    border: 1px solid var(--font-col-one);
    border-radius: 5px;
    display: block;
    text-decoration: none;
    width: 23px;
    height: 23px;
    padding: 0 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: var(--font-col-one);
}
.page-numbers:not(:last-child){
    margin-right: 10px;
}
.pagination .current{
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}
.pagination .prev,
.pagination .next{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .next img{
    width: 9px;
    height: 15px;
}
.pagin-prev{
    width: 9px;
    height: 15px;
    transform: rotate(180deg);
}
.blog-consultation{
    border-radius: 30px;
    background-color: var(--white);
}
.blog-consult-img{
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0 0;
}
.blog-consult-img-wrapper{
    margin-bottom: 41px;
}
.blog-consult-content{
    padding: 0 23px 41px 25px;
}
.blog-consult-title{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.blog-consult-cotacts{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.blog-consult-phones{
    margin-right: 24px;
}
.blog-consult-phones a{
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--blue);
    text-decoration: none;
}
.blog-consult-phones a:not(:last-child){
    margin-bottom: 6px;
}
.blog-consult-messagers a{
    text-decoration: none;
}
.blog-consult-messagers a:not(:last-child){
    margin-right: 10px;
}
.blog-consult-btn{
    width: 100%;
    text-decoration: none;
    padding: 18px 5px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
    background-color: #E78739;
    display: block;
    border-radius: 50px;
}
/*SINGLE POST*/
.single-blog{
    padding: 40px 0 130px;
    background-color: #F7F8F9;
}
.single-post-inner{
    display: flex;
    justify-content: space-between;
}
.single-post-content{
    flex-basis: 68%;
}
.about-post{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;    
    color: #404040;
    margin-top: 10px;
    margin-bottom: 40px;
}
.check-author{
    color: #5D54F6;
    position: relative;
    text-decoration: none;
	margin-bottom: 20px;
}
.check-author span {
	position: relative;
	padding-left: 30px;
	display: inline-block;
}
.check-author span::before{
    content: '';
    display: block;
    width: 25.6px;
    height: 26px;
    background-image: url(../images/checkbox.svg);
    background-repeat: no-repeat;
    background-size: cover; 
    position: absolute;
    left: 0;
    top: -2px;
}

.title-and-text-content{
    margin-top: 20px;
    margin-bottom: 60px;
    line-height: 160%;
}
.title-and-text-content p{
    margin-bottom: 10px;
}
.blog-table-text-after ul,
.blog-table-text-after ol,
.title-and-text-content ul,
.title-and-text-content ol{
    padding-left: 30px;
    margin-bottom: 10px;
}
.table-of-content{
    margin-bottom: 20px;
}
.table-of-content-title{
    background-color: var(--blue);
    color: var(--white);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}
.table-of-content-title::after{
    content: '';
    display: block;
    position: absolute;
    width: 13px;
    height: 22px;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(270deg);
    top: 13px;
    right: 25px;
    transition: all 0.3s ease;
}
.table-of-content-title-active::after{
    transform: rotate(90deg);
    transition: all 0.3s ease;
}
.table-of-content-list{
    background-color: var(--white);
    border-radius: 10px;
    padding: 35px 22px 30px;
	display: none;
}
.table-of-content-link{
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #5D54F6;
}
.table-of-content-link:not(:last-child){
    margin-bottom: 10px;
}
.blog-comment-spec{
    background: linear-gradient(315deg, rgb(112, 108, 254), rgb(53, 184, 254));
    padding: 15px 43px 22px 16px;
    border-radius: 30px;
    margin-bottom: 60px;
}
.blog-comment-spec-inner{
    display: flex;
    align-items: center;
}
.blog-comment-spec-img-wrapper{
    width: 132px;
    height: 185px;
    margin-right: 34px;
}
.blog-comment-spec-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.blog-comment-spec-content{
    flex-basis: 77%;
}
.blog-comment-spec-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 35px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 5px;
}
.blog-comment-spec-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
	text-decoration: none;
	display: inline-block;
}
.blog-comment-spec-position{
    font-size: 14px;
    line-height: 26px;
    color: var(--white);
    margin-bottom: 10px;
}
.blog-comment-spec-text{
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: var(--white);
    position: relative;
    padding-right: 30px;
}
.blog-comment-spec-text::after{
    content: '';
    display: block;
    position: absolute;
    width: 48px;
    height: 37px;
    background-image: url(../images/quote-white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: -15px;
    bottom: 0;
}
.blog-interest-post{
    margin-bottom: 60px;
    padding-left: 27px;
    position: relative;
}
.blog-interest-post::before{
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 41px;
    background-image: url(../images/attntion-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 8px;
}

.blog-interest-link{
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--blue);
    text-decoration: none;
}
.blog-table{
    margin-bottom: 60px;
    max-width: 795px;
}
.blog-table-head{
    display: flex;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: var(--white);
}
.blog-td-head{
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    
}
.blog-td-head p{
    padding: 12px 30px;
}
.blog-td-head:last-child{
    flex-grow: 1;
}
.blog-td-head:not(:last-child){
    border-right: 1px solid var(--white);
}
.blog-table-row{
    display: flex;
    border: 1px solid var(--blue);
}
.blog-table-td {
    padding: 12px 11px;
    font-size: 18px;
    line-height: 18px;
    flex-basis: 50%;
    flex-grow: 1;
    background-color: var(--white);
	
}
.blog-table-td:last-child {
	display: flex;
	align-items: center;
	justify-content: center;	
}
.blog-table-td a {
	text-decoration: none;
	color: var(--blue);
}
.blog-table-td:not(:last-child){
    border-right: 1px solid var(--blue);
}

.blog-checked-spec{
    border: 1px solid var(--blue);
    background-color: var(--white);
    border-radius: 30px;
    padding: 17px;
    margin-bottom: 60px;
}
.blog-checked-spec-inner{
    display: flex;
    align-items: flex-start;
}
.blog-checked-spec-img-wrapper{
    width: 124px;
    height: 103px;
    margin-right: 17px;
}
.blog-checked-spec-img-wrapper img{
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    border-radius: 30px;
}
.blog-checked-spec-content{
    flex-basis: 77%;
}
.blog-checked-spec-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--blue);
    margin-bottom: 7px;
}
.blog-checked-spec-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 4px;
	color: #000;
	text-decoration: none;
	display: inline-block;
}
.blog-checked-spec-position{
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 13px;
}
/*.blog-checked-spec-text{
    position: relative;
}
.blog-checked-spec-text::after{
    content: '';
    display: block;
    position: absolute;
    width: 48px;
    height: 39px;
    background-image: url(../images/quote-blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: -20px;
    bottom: 0;
}*/
.blog-use-lit{
    margin-bottom: 60px;
}
.blog-use-lit-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 20px;
}
.blog-use-lit-list{
    padding-left: 25px;
}
.blog-use-lit-list li{
    padding-bottom: 7px;
}
.blog-attention{
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px 25px;
    margin-bottom: 40px;
}
.blog-attention-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
}
.blog-attention-title::after{
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 23px;
    background-image: url(../images/attend-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: -23px;
    bottom: 8px;
}
.blog-attantion-text{
    font-size: 16px;
    line-height: 26px;
}
.post-rating{
    margin: 40px 0 60px;
}
.blog-faq{
    margin: 60px 0;
    background-color: var(--white);
    padding: 60px 25px;
}
.blog-faq-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 45px;
}
.blog-faq-question{
    min-height: 40px;
    border-left: 2px solid var(--blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 18px;
    position: relative;
    padding-right: 40px;
    cursor: pointer;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: var(--font-col-one);
}
.blog-faq-question::after{
    content: '';
    display: block;
    position: absolute;
    width: 11px;
    height: 19px;
    background-image: url(../images/dark-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(90deg);
    right: 10px;
    transition: all 0.3s ease;
}
.blog-faq-answer{
    display: none;
    padding: 20px 35px;
}
.blog-faq-answer ul,
.blog-faq-answer ol{
    padding-left: 20px;
    margin: 10px 0;

}
.blog-faq-item{
    border-bottom: 2px solid #000;
    padding-bottom: 6px;
    margin-bottom: 16px;
}
.blog-faq-question-active::after{
    transform: rotate(270deg);
    transition: all 0.3s ease;
}

.blog-other-posts-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 20px;
}
.blog-other-posts{
    max-width: 790px;
    overflow: hidden;
}
.blog-post-slider-wrapper{
    position: relative;
}
#other_post_prev,
#other_post_next{
    width: 23px;
    height: 40px;
    background-image: url(../images/blue-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: 130px;
    cursor: pointer;
    z-index: 1;
    position: absolute;
}
#other_post_prev{
    left: 3px;
}
#other_post_next{
    right: 3px;
}
#other_post_prev{
    transform: rotate(180deg);
}
.single-post-services{
    margin-bottom: 75px;
}
.service-main-content {
    margin-bottom: 130px;
}

.single-post-service-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    border-bottom: 2px solid var(--font-col-one);
    color: var(--font-col-one);
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 18px;
}
.sigle-post-service-link{
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #0B4E66;
    text-decoration: none;
    display: block;
}
.sigle-post-service-link:not(:last-child){
    margin-bottom: 15px;
}

/*Service page*/
.service-page{
    padding-top: 40px;
    padding-bottom: 130px;
    background-color: rgba(247, 248, 249, 1);
}

.service-inner{
    display: flex;
    justify-content: space-between;
}
.service-sidebar{
    max-width: 360px;
}
.service-content{
    width: 66%;
	padding-top: 60px;
}
.service-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 20px;
}
.service-accord-list{
    background-color: var(--white);
    padding: 15px 32px;
    border-radius: 30px;
    margin-bottom: 18px;
    display: none;
}
.service-accord-link{
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: var(--font-col-one);
    position: relative;
}
.service-accord-link::before{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #5D54F6;
    position: absolute;
    left: -14px;
    top: 9px;
}
.service-accord-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--font-col-one);
    padding-bottom: 29px;
    border-bottom: 1px solid var(--font-col-one);
    margin-bottom: 22px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-accord-title::after{
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    background-image: url(../images/dark-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 7px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}
.service-accordeon{
    margin-bottom: 93px;
}
.service-accord-title-active{
    color: #6F72FF;
    border-bottom: 1px solid #5D54F6;
    padding-bottom: 9px;
    transition: all 0.3s ease;
}
.service-accord-title-active::after{
    background-image: url(../images/fiolet-arrow.svg);
    transform: rotate(90deg);
    transition: all 0.3s ease;
}
.service-posts{
    margin-top: 60px;
}
.service-posts-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
}
.service-post-link{
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: var(--font-col-one);
    display: block;
    margin-bottom: 10px;
}
.service-form-inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.service-form-content{
    background-image: url(../images/serv-form.webp);
    background-size: cover;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 68px 40px;
}
.service-form-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--font-col-one); 
}
.service-form-sub-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--font-col-one);
    margin-bottom: 32px;
}
.service-form-text{
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--font-col-one);
    margin-bottom: 32px;
}
.service-page-input{
    display: none;
}
.service-form-shortcode form > p {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}
.service-form-shortcode form span[data-name="serv-page"] {
    display: none;
}
.service-form-shortcode form span[data-name="usr-name"],
.service-form-shortcode form span[data-name="usr-phone"] {
    width: 47%;
}
.service-form-shortcode input[type="text"],
.service-form-shortcode input[type="tel"]{
    width: 100%;
    height: 60px;
    border-radius: 15px;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    padding-left: 12px;
}

.service-form-img-wrapper{
    width: 39%;
}
.service-form-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 30px 30px 0;
}
.service-form-submit{
    width: 311px;
    height: 60px;
    border: none;
    background-color: var(--accent-col);
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    border-radius: 50px;
}
.blog-table-text-after li::marker,
.service-content .title-and-text li::marker{
    color: var(--accent-col);
    
}
.video-section iframe{
    width: 100%;
    height: 450px;
    margin-bottom: 60px;
    border-radius: 30px;
}
.blog-image img{
    margin: 30px 0;
    width: 100%;
}
.title-and-text a{
    color: #5D54F6;
    font-weight: 700;
}
.service-stages{
    margin-bottom: 60px;
}
.stages-text-top{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}
.stages-text-top a{
    color: #5D54F6;
    text-decoration: underline
}
.stages-title{
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #0B4E66;
}
.stages-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.stages-name-list,
.stage-content-items{
    flex-basis: 49%;
}
.stages-name-item{
    border: 2px solid var(--blue);
    margin-bottom: 12px;
    padding: 5px 5px 20px 5px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: var(--font-col-one);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.stages-name-item span{
    text-decoration: underline;
}
.stages-name-item-active{
    background-color: var(--blue);
    color: var(--white);
    transition: all 0.3s ease;
}
.stage-content-items{
    border: 2px solid var(--blue);
    background-color: var(--white);
    border-radius: 30px;
    padding: 32px;
    min-height: 500px;
}
.stage-item-title{
    font-weight: 700;
    margin-bottom: 20px;
}
.stage-item-text{
    font-size: 15px;
    line-height: 24px;
}
.stage-content-item{
    display: none;
}
.review-block{
    padding-top: 60px;
    padding-bottom: 71px;
}
.review-block .home-review-title{
    font-size: 28px;
    text-align: center;
    line-height: 34px;
    margin: 0 auto 40px;
}

.review-block .home-review-tab-active{
    font-weight: 700;
}
.review-block .home-review-video-slide iframe {
    height: 400px;
}
.review-block .home-review-slider-video-wrapper{
    width: 100%;
}
.blog-table-text-before{
    margin-bottom: 20px;
}
.blog-table-text-before h2{
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 20px;
}
.blog-table-text-after{
    margin-top: 20px;
}
.blog-table-text-after p{
    margin-bottom: 7px;
}
.block-cta{
    background-color: var(--blue);
    margin: 60px 0;
    padding: 22px 25px 24px 49px;
    border-radius: 0 100px 0 0
}
.block-cta-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 45px;
    color: var(--white);
}
.block-cta-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 8px;
}
.block-cta-contacts-wrapper{
    display: flex;
    align-items: center;
}
.block-cta-mes{
    display: block;
    width: 30px;
    height: 30px;
    text-decoration: none;
    margin-right: 10px;
}
.block-cta-mes img{
    width: 100%;
    height: 100%;
}
.block-cta-phone{
    display: block;
    margin-left: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
}
.blog-other-post-item{
    display: flex;
    flex-direction: column;
    width: 285px;
    height: 450px;
    margin: 0 10px;
    text-decoration: none;
}

.service-filials{
    margin: 130px 0;
    background-image: url(../images/bg-serv.webp);
    background-size: cover;
    padding: 130px 0;
}
.service-filials-title{
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 50px;
}
.service-filials-regions{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 48px;
    gap: 12px;
}
.service-filials-region-item{
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-filials-region-item-active{
    background-color: var(--white);
    color: var(--font-col-one);
    transition: all 0.3s ease;
}
.service-filials-list{
    display: none;
    position: absolute;
}
.service-filials-list-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.service-filials-link {
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,.6);
    padding-bottom: 11px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
    padding-left: 28px;
    position: relative;
}
.service-filials-link::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/place-mark.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 3px;
}
.service-filials-list-wrapper{
    position: relative;
}
.form-consult-block{
    display: flex;

}
.form-consult-block-inner{
    display: flex;
}
.form-consult-block-img-wrapper{
    width: 50%;
    height: auto;
    position: relative;
}
.form-consult-block-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}
.form-rehab .form-consult-block-img-wrapper img{
    border-radius: 0 30px 30px 0;
}
.form-rehab .form-consult-block-content{
    border-radius: 30px 0 0 30px;
    padding: 40px;
}
.form-consult-block .form-rehab form input[type="submit"]{
    margin-top: 20px;
}
.form-rehab .benefits-list{
    list-style: none;
    padding: 0;
    margin: 4px 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.form-rehab .benefits-list li{
    border: 1px solid #FFFFFF99;
    border-radius: 100px;
    padding: 7px 12px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}
.form-rehab .services-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    right: 20px;
}
.form-rehab .service-item{
    display: flex;
    align-items: center;
    background: #FCFCFC;
    padding: 12px;
    border-radius: 6px;
    width: 274px;
    box-shadow: 0 2px 8px 0 #0000001F;
}
.rehab-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 24px;
}
.form-rehab .service-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 0 !important;
}
.form-rehab .service-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-align: left;
    text-transform: none;
    line-height: 1.32;
}
.form-consult-block-content{
    background-color: var(--blue);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 44px;
    border-radius: 0 30px 30px 0;
}
.form-consult-block-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.form-consult-block-text{
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    margin-bottom: 41px;
}
.form-consult-block form input[type="text"], 
.form-consult-block form input[type="tel"]{
   
    width: 100%;
} 
.form-consult-block form input[type="tel"],
.form-consult-block form input[type="submit"]{
    margin-top: 30px;
}
.form-consult-block form input[type="submit"]{
    width: 174px;
    height: 60px;
    border: none;
    background-color: var(--accent-col);
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
}

.review-page{
    padding: 40px 0 66px;
    background-color: #F7F8F9;
}
.review-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
}

.checkbox-front{
    width: 23px;
    height: 23px;
    background-image: url(../images/checkbox-null.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 9px;
}
input[name="filter-source"]:checked + label .checkbox-front,
input[name="filter-rating"]:checked + label .checkbox-front {
    background-image: url(../images/checkbox-checked.svg);
}
input[name="filter-source"],
input[name="filter-rating"]{
    display: none;
}
.review-filter{
    margin-top: 57px;
}
.review-filter-main-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.filter-review-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
}
.filter-rating-container{
    margin-top: 25px;
}
.filter-checkbox-item label{
    display: flex;
    align-items: center;
    margin-bottom: 11px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #E78739;
}

.review-main-content-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review-main-block{
    width: 100%;
}
.review-page-tabs{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 57px;
}
.review-page-tab{
    font-weight: 700;
    font-size: 25px;
    line-height: 36px;
    color: var(--accent-col);
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.review-page-tab:first-child{
    margin-right: 40px;
}
.review-page-tab-active{
    border-bottom: 2px solid #00AFFF;
	color: #00AFFF;
    transition: all 0.3s ease;
}
.review-page-item-header{
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}
.review-page-rating{
    margin-right: 25px;
    padding-top: 5px;
}
.review-page-item-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    margin-right: 25px;
}
.review-page-item-date{
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #727272;
    margin-right: 25px;
}
.review-page-item-link{
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: var(--accent-col);
    text-decoration: none;
}
.review-page-item-text{
    margin-bottom: 40px;
}
.review-main-list{
    background-color: var(--white);
    padding: 60px 30px;
}
.empty-reviews{
    display: none;
}
.review-filter{
    margin-right: 166px;
}
.review-video-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.review-page-item-video{
    width: 48%;
    margin-bottom: 60px;
}
.review-page-item-video iframe{
    width: 100%;
    height: 300px;
    border-radius: 30px;
}
.review-page-item-cat{
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #E78739;
}
.about-more-filials-btn,
.more-filials-btn,
.page-review-more-btn{
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    background-color: #6F72FF;
    padding: 18px 32px;
    border-radius: 50px;
}
.page-review-more-btn-wrapper{
    display: flex;
    margin-top: 60px;
}
.filialy-page{
    background-color: #F7F8F9; 
    padding-top: 40px;
    padding-bottom: 130px;
}
.filialy-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;   
    text-transform: uppercase;
    color: var(--font-col-one); 
    margin-bottom: 20px;
}
.filialy-inner{
    display: flex;
    flex-wrap: wrap;
}
.filialy-img-wrapper{
    width: 285px;
    height: 185px;
}
.filialy-item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
}
.filialy-item{
    margin-right: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}
.filialy-item:nth-child(4n){
    margin-right: 0;
}
.filialy-item-content{
    height: 77px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 30px 30px;
}
.filialy-item-content p{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px; 
    color: var(--white);
}
.filialy_text{
    margin-bottom: 20px;
}
.filials-other-country{
    margin-top: 130px;
}
.filials-other-country .filialy-title{
    margin-bottom: 60px;
}
.filialy-search-block{
   margin-bottom: 60px; 
}
.filialy-search-block input[type="text"]{
    width: 254px;
    height: 60px;
    padding: 0 12px;
    border: 2px solid var(--blue);
    border-radius: 15px 0 0 15px;
}
.filialy-search-block input[type="text"]:focus-visible {
    outline: none;
}
.filialy-search-block input[type="submit"]{
    height: 60px;
    margin-left: -5px;
    width: 140px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    border: 2px solid var(--blue);
    background-color: var(--blue);
    border-radius: 0 15px 15px 0;
    position: relative;
    padding-left: 25px;
}
.filialy-search-block form{
    position: relative;
    width: 389px;
}
.filialy-search-block form::before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: calc(50% - 12px);
    right: 100px;
    z-index: 2;
}
.filialy-search-block form{
    display: flex;
    align-items: flex-start;
}
.more-filials-btn-wrapper{
    display: none;
    margin-top: 60px;
}

/*SINGLE FILIALS PAGE*/

.single-filialy-main{
    background: #F7F8F9;
    padding-top: 40px;
    padding-bottom: 130px;
}
.filialy-title{
    margin-bottom: 60px;
}
.filialy-center-services{
    margin: 130px 0;
}
.filialy-center-services-section-title{
    font-weight: 700;
    font-size: 44px;
    line-height: 53px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 60px;
}
.filialy-center-services-inner{
    display: flex;
    align-items: flex-start;
}
.filialy-center-services-item{
    width: 388px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.filialy-center-services-item:hover{
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
}
.filialy-center-services-item:not(:last-child){
    margin-right: 18px;
}
.filialy-center-services-item-title{
    background-color: var(--blue);
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: var(--white);
    border-radius: 30px 30px 0 0;
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 27px 0;
	min-height: 98px;
}
.filialy-center-services-item-title img{
	margin-right: 10px;	
} 
.filialy-center-services-item-title p{
    max-width: 230px;
}
.filialy-center-services-item-list{
    padding: 24px;
	display: flex;
    flex-direction: column;
}
.filialy-center-services-item-list-item {
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    color: #243B53;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
a.filialy-center-services-item-list-item:hover {
	color: var(--blue);
	transition: all .3s ease-in-out;
}
.filialy-center-services-item-list-item span {
	position: relative;
}
a.filialy-center-services-item-list-item span::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 14px;
	background-image: url(../images/blue-arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 5px;
    right: -16px;
}
.filialy-center-services-item-list-item:not(:last-child) {
	margin-bottom: 8px;
}
.filialy-center-gallery{
    margin: 130px 0;
}
.filialy-center-gallery-slider-nav{
    max-width: 1126px;
    margin: 20px auto 0;
}
.center-gallery-img-wrapper-nav{
    width: 267px;
    height: 154px;
}
.center-gallery-img-wrapper-nav img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.center-gallery-img-wrapper{
    display: block;
    width: 1200px;
    height: 585px;
}
.center-gallery-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.filialy-center-gallery-slider-nav-wrapper{
    position: relative;
}
#filialy-center_prev,
#filialy-center_next{
    background-image: url('../images/orange-arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 34px;
    position: absolute;
}
#filialy-center_prev{
    transform: rotate(180deg);
    top: calc(50% - 16px);
    left: 0;
}
#filialy-center_next{
    top: calc(50% - 16px);
    right: 0;
}
.filialy-center-gallery-slider-nav .slick-current{
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.filialy-center-gallery-slider-nav .slick-current:before{
    content:'';
    display: block;
    width: calc(100% - 15px);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
}
.sertspec{
    margin: 130px 0;
}
.sertspec-inner{
    display: flex;
    border: 2px solid var(--blue);

}
.sert-spec-item{
    width: 50%;
    padding-top: 60px;
    padding-bottom: 116px;
}
.sert-spec-item:first-child{
    border-right: 2px solid var(--blue);
    background-color: var(--white);
}

/* Секція */
.diplomas-certificates-section {
    padding: 60px 0;
}

.diplomas-certificates-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.diplomas-certificates-slider-wrapper {
    position: relative;
}

.diplomas-certificates-slider-item {
    padding: 10px;
    text-align: center;
}

.diplomas-certificates-slider-item img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* Стрілки */
#diplomas-certificates-prev,
#diplomas-certificates-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

#diplomas-certificates-prev:hover,
#diplomas-certificates-next:hover {
    background: #eee;
    cursor: pointer;

}

#diplomas-certificates-prev {
    left: -50px;
}

#diplomas-certificates-next {
    right: -50px;
}

/* Адаптивність */
@media (max-width: 991px) {
    #diplomas-certificates-prev {
        left: -30px;
    }
    #diplomas-certificates-next {
        right: -30px;
    }
}


.sert-spec-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
    text-align: center;
    margin-bottom: 40px; 
}
.sertspec-slider-sert{
    width: 180px;
    margin: 0 auto;
}
.sertspec-slider-sert .sertspec-slider-item{
    width: 180px;
    height: 270px;
    text-decoration: none;
    display: block;
}
.sertspec-slider-sert .sertspec-slider-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sertspec-slider-wrapper{
    position: relative;
    margin: 0 auto;
}
#sertspec-slider-spec_prev,
#sertspec-slider-spec_next,
#sertspec-slider-sert_prev,
#sertspec-slider-sert_next{
    width: 20px;
    height: 34px;
    background-image: url(../images/dark-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: calc(50% - 16px);
}
#sertspec-slider-spec_prev,
#sertspec-slider-sert_prev{
    transform: rotate(180deg);
}
#sertspec-slider-sert_next{
    right: 0;
}
.sertspec-slider-img-wrapper{
    width: 132px;
    height: 141px;
    margin-bottom: 24px;
    position: absolute;
}
.sertspec-slider-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
}
.sertspec-wrapper-sertificate{
    width: 350px;
}
.sertspec-dot{
   display: block;
   width: 13px;
   height: 13px;
   background-color: #D9D9D9;
   border-radius: 50%;
}
.sertspec-slider-wrapper .slick-dots{
    margin: 0;
    bottom: -96px;
}
.sertspec-slider-wrapper .slick-dots li{
	margin-bottom: 10px;
}
.sertspec-slider-wrapper .slick-dots li:not(:last-child){
    margin-right: 10px;
}
.sertspec-slider-wrapper .slick-dots .slick-active a{
    background-color: var(--blue);
}
.sertspec-slider-spec .sertspec-slider-item{
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
}
.sertspec-wrapper-specialist{
    width: 470px;
    margin: 0 auto;
}
.sertspec-slider-item-content{
    background-color: var(--white);
    border-radius: 15px;
    padding: 135px 20px 38px 20px;
    margin-top: 30px;
    width: 100%;

}
.sert-spec-slider-item-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000;
    margin-bottom: 6px;
}
.sert-spec-slider-item-pos{
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: #000000;
}
#sertspec-slider-spec_prev{
    left: -32px;
}
#sertspec-slider-spec_next{
    right: -32px;
}
#filialy-center-gallery_prev,
#filialy-center-gallery_next{
    display: none;
}
/*Price page*/

.price-page-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.price-page{
    background-color: #F7F8F9;
    padding: 40px 0 130px;
}
.price-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--font-col-one);
    margin-bottom: 60px;    
}
.price-blocks-link{
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 30px;
    margin-bottom: 45px;
}
.price-blocks-link a{
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 10px;
}
.large-left-col .blog-table-head .blog-td-head:last-child,
.large-left-col .blog-table-row .blog-table-td:last-child{
    flex-basis: 25%;
    text-align: center;
}
.large-left-col .blog-table-head .blog-td-head:first-child,
.large-left-col .blog-table-row .blog-table-td:first-child{
    flex-basis: 75%;
    text-align: left;
}
.large-right-col .blog-table-head .blog-td-head:first-child,
.large-right-col .blog-table-row .blog-table-td:first-child{
    flex-basis: 25%;
    text-align: center;
}
.large-right-col .blog-table-head .blog-td-head:last-child,
.large-right-col .blog-table-row .blog-table-td:last-child{
    flex-basis: 75%;
    text-align: left;
}
.equal-both-col .blog-table-head .blog-td-head:last-child,
.equal-both-col .blog-table-row .blog-table-td:last-child{
    flex-basis: 50%;
    text-align: left;
}
.equal-both-col .blog-table-head .blog-td-head:first-child,
.equal-both-col .blog-table-row .blog-table-td:first-child{
    flex-basis: 50%;
    text-align: left;
}

.price-content{
    flex-basis: 66%;
}
.price-sidebar{
    flex-basis: 32%;
}

/*Страница О нас*/
.about-us-page{
    padding-top: 40px;
    padding-bottom: 130px;
    background-color: #F7F8F9;
}
.about-us-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;  
    color: #243B53;
    margin-bottom: 60px;
}
.first-screen-about-us{
    margin-bottom: 90px;
}
.first-screen-about-us-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.first-screen-about-us-img-wrapper{
    height: 419px;
    width: 590px;
}
.first-screen-about-us-content{
    flex-basis: 46%;
    font-size: 16px;
    line-height: 26px;
}
.first-screen-about-us-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-stat{
    background-color: #fff;
    padding: 60px 0;
    margin-bottom: 130px;
}
.about-stat-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-stat-item{
    display: flex;
    flex-basis: 33.3%;
    align-items: center;
    margin-bottom: 70px;
}
.about-stat-num{
    width: 139px;
    height: 139px;
    background-color: #00AAF8;
    border-radius: 50%;
    font-weight: 700;
    font-size: 30px;
    line-height: 48px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 10px;
}
.about-stat-name{
    flex-basis: 53%;
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;

}
.about-video{
    margin: 130px 0;
}
.about-video iframe{
    width: 100%;
    height: 635px;
    border-radius: 30px;
}
.about-filials{
    margin: 130px 0;
}
.about-filials-inner{
    display: flex;
    flex-wrap: wrap;
}
.about-more-filials-btn-wrapper{
    margin-top: 40px;
}
.about-our-partners-inner{
    display: flex;
    flex-wrap: wrap;
}
.about-our-partners-item{
    width: 285px;
    height: 262px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    
}
.about-our-partners-item:nth-child(4n){
    margin-right: 0;
}
.about-our-partners-img-wrapper{
    height: 182px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-our-partners-name{
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    padding: 0 10px;
    color: #000;
}
.header-call-mob-btn{
    display: none;
}
.home-review-learn-more{
    display: none;
}
.popup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0, .5);
    z-index: 9;
    display: none;
}
.popup-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}
.popup-wrapper{
    background-color: #00AFFF;
    padding: 25px 25px;
    border-radius: 30px;
    position: absolute;
    width: auto;
    height: auto;
    margin: auto;
    padding: 50px 25px 25px;
}
.popup-wrapper-video{
    display: none;
    background-color: #00AFFF;
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
}
.popups-btn-wrapper{
    position: fixed;
    bottom: 20px;
    left: 0;
}
.btn-show-calc{
    width: 79px;
    height: 74px;
    background-color: var(--accent-col);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 15px 15px 0px;
    
}
.btn-show-calc img{
    transform: rotate(-180deg);
    transition: all .3s ease-in-out;
}
.btn-show-calc-active img{
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}
.quiz-btn{
    display: block;
    width: 289px;
    height: 74px;
    background-color: var(--accent-col);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    text-align: center;
    padding: 23px 0px;
    padding-left: 40px;
    border-radius: 0px 15px 15px 0px;
    margin-bottom: 7px;
    transform: translate(0);
    transition: all .3s ease-in-out;
}
.quiz-btn-hide{
    transform: translate(-100%);
    transition: all .3s ease-in-out;
}
.quiz-btn span{
    position: relative;
}
.quiz-btn span::before{
    content: '';
    display: block;
    width: 31px;
    height: 37px;
    background-image: url(../images/calc-icon.svg);
    background-repeat:no-repeat;
    background-size: cover;
    position: absolute;
    left: -42px;
    top: -7px;
}
.calc-popup{
    background-color: #fff;
    border: 10px solid #00B0F3;
    border-radius: 22px;
    padding: 65px 22px;
    width: 350px;
    position: relative;
    display: none;
}

.calc-btn-prev,
.result-text{
    display: none;
}
.calc-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    color: #243B53;
    text-align: center;
    margin-bottom: 22px;
}
.quiz-user-phone input[name="usr-name"]{
    margin-bottom: 7px;
}
.quiz-user-city input[type="text"],
.quiz-user-phone input[type="tel"],
.quiz-user-phone input[name="usr-name"]{
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 27px;
    border-radius: 50px;
    border: 1px solid #777777; 
}
.calc-popup input[type="submit"]{
    display: none;
    width: 206px;
    height: 48px;
    text-align: center;
    text-decoration: none;
    background-color: #E78739;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    border: none;
    margin-top: 25px;
}
.quiz-user-phone{
    display: none;
}

.quiz-user-city{
    text-align: center;
}
.quiz-user-city input[type="text"]{
    margin-top: 7px;
}
.calc-progress{
    position: relative;
    width: 100%;
    height: 10px;
    border: 1px solid #777777;
    border-radius: 20px;
    margin-bottom: 22px;
    margin-top: 30px;

}
.progress-vis{
    position: absolute;
    background-color: var(--blue);
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 20px;
}
.progress-num{
    position: absolute;
    bottom: 12px;
    left: 24px;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #777777;
}
.calc-btn-next{
    display: block;
    width: 206px;
    height: 48px;
    text-align: center;
    text-decoration: none;
    background-color: #E78739;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    padding: 15px 10px;  
}
.calc-btn-prev{
    width: 206px;
    height: 48px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #E78739;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    line-height: 120%;
    color: #E78739;
    padding: 13px 10px;
    margin-bottom: 12px;
}
.calc-btn-wrapper{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}
.calc-text{
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 25px;
}
.calc-soc-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}
.calc-soc-btn{
  width: 136px;
  height: 42px;
  border-radius: 50px;
  padding: 12px 5px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
}
.calc-soc-btn span{
    position: relative;
    padding-left: 25px;
}
.calc-soc-btn:first-child span::before,
.calc-soc-btn:last-child span::before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -1px;
    left: -2px
}
.calc-soc-btn:first-child span::before{
    background-image: url(../images/calc-viber.svg);
}
.calc-soc-btn:last-child span::before{
    background-image: url(../images/calc-telegram.svg);
}
.calc-soc-btn:first-child{
    border: 1px solid #853EF7;
    color: #853EF7;
    margin-right: 10px;
}
.calc-soc-btn:last-child{
    border: 1px solid #00A1E9;
    color: #00A1E9;
}
.calc-btn-phone{
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #0B4E66;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
}
.calc-btn-phone::before{
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/call-icon-calc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0px
}
.calc-popup-content{
    position: relative;
}
.calc-quiz-item{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}
.calc-quiz-item-title{
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
}
.calc-popup .wpcf7-response-output{
    display: none;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
    position: absolute;
}
.result-text{
    margin-bottom: 10px;
}
.result-calc-thanks{
    margin-bottom: 10px;
    color: #1eab1d;
    display: none;
}
.contact-page{
    background-color: #F7F8F9;
    padding: 41px 0 130px;
}

.contact-title{
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    text-transform: uppercase;
    color: #243B53; 
    margin-bottom: 62px;
}
.central-office-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px;
}
.central-office-title::before{
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 21px;
    background-image: url(../images/contact-place.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}
.central-office-text{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}
.work-time-title{
    line-height: 26px;
    margin-bottom: 4px;
    position: relative;
    padding-left: 38px;
}
.work-time-title::before{
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/contact-time.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    top: 4px;
}
.work-time-block{
    margin-bottom: 25px;
}
.contact-phone-title{
    line-height: 26px;
    margin-bottom: 13px;
}
.contact-phone-link{
    color: #000;
    line-height: 26px;
    position: relative;
    padding-left: 26px;
}
.contact-phone-link::before{
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url(../images/contact-phone.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 4px;
}
.contact-phone-block{
    display: flex;
    flex-direction: column;
}
.contact-mail-block{
   margin-bottom: 28px; 
}
.contact-mail-block a{
    line-height: 26px;
    color: #000000;
    text-decoration: none;
    position: relative;
    padding-left: 31px;
}
.contact-mail-block a::before{
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/contact-mail.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 7px;
}
.contact-filials{
    margin: 130px 0;
}
.contact-first-screen-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 130px;
}

.contact-filials-row-header,
.contact-filials-row{
    display: flex;
}
.contact-filials-row-header::after{
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 30px;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(90deg);
    right: 170px;
    top: calc(50% - 15px);
    transition: all .3s ease-in-out;
}
.contact-filials-row-header-active::after{
    transform: rotate(270deg);
    transition: all .3s ease-in-out;
}
.contact-filial-th,
.contact-filial-td{
    flex-basis: 50%;
}
.contact-filial-th:first-child{
    padding-left: 50px;
}
.contact-filials-row-header{
    background-color: var(--blue);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #FFFFFF;
    padding-top: 18px;
    padding-bottom: 22px;
    position: relative;
}
.contact-filials-row{
    background-color: #fff;
    border: 1px solid #000;
    border-top: none;
    padding: 10px 0;
}
.contact-filial-td:first-child{
    padding-left: 50px;
    font-weight: 600;
	
}
.contact-filial-td:first-child a{
	color: #000;
	text-decoration: none;
}
.close-btn{
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(../images/close.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 20px;
    right: 20px;
}

.popup-title{
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.popup-text{
    color: #243B53;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}
.popup-text span{
    color: #EF1B00;
}
.form-popup{
    width: 500px;
}
.form-popup form p{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.form-popup input[type="text"],
.form-popup input[type="tel"]{
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #c4c4c4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.form-popup .wpcf7-form-control-wrap{
    width: 100%;
}
.form-popup input[type="submit"]{
    background-color: var(--accent-col);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    width: 172px;
    height: 50px;
    border: none;
    border-radius: 50px;
    margin-top: 20px;
}
.form-popup .wpcf7-not-valid-tip {
    font-size: 14px;
    position: absolute;
    bottom: 0;
}
.popup-attention,
.popup-attention a{
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    line-height: 120%;
}
.form-popup .wpcf7-response-output{
    max-width: 330px;
    margin: 0 auto !important;
}
.contact-filials-link{
    display: block;
    width: 262px;
    height: 62px;
    text-align: center;
    background-color: #6F72FF;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 35px;
    padding: 16px 0;
}
#map { 
    height: 594px; 
}
.map-mark{
    display: none;
}
.other-countries .btn_map{
    display: none;
}
.map-ukraine .rl{
    color: #fff;
}
.sub-menu-active .sub-menu{
    display: block !important;
}
.lang{
    display: none;
}
#menu-mobile>li>.sub-menu{
    position: relative;
}
.call-form-close,
.video-popup-close,
.simple-form-close,
.call-close,
.sub-menu-close{
    position: absolute;
    right: 29px;
    top: 8px;
    font-size: 12px;
    line-height: 16px;
    padding-right: 16px;
}
.call-form-close::after,
.video-popup-close::after,
.simple-form-close::after,
.call-close::after,
.sub-menu-close::after{
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-image: url(../images/close-menu.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: 5px;
    right: 0;
}
.post-main-img{
    width: 100%;
    height: auto;
    margin-top: 60px;
}
.post-cat{
    margin-top: -5px;
}
.post-cat-link{
    background-color: #00AAF8;
    color: #fff;
    padding: 4px 10px;
    text-decoration: none;
    line-height: 120%;
}
.popup-wrapper-simple-form{
    background-color: #00AFFF;
    width: 612px;
    height: 624px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.call-form-close,
.video-popup-close,
.simple-form-close{
    top: 26px;
    color: #fff;
    cursor: pointer;
}
.call-form-close:after,
.video-popup-close:after,
.simple-form-close:after{
    background-image: url(../images/close-popup-white.svg);
}
.popup-wrapper-call-form{
    width: 612px;
    height: 624px;
    background-color:#00AFFF;
    display: none;
    position: relative;
}
.popup-call-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.popup-call-title{
    color: #FFF;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.call-time-main-wrap{
    display: flex;
    margin-bottom: 20px;
}
.popup-call-content form{
    max-width: 305px;
}
.popup-call-content input[type="date"]{
    width: 145px;
    height: 60px;
    border-radius: 15px;
    border: none;
    padding: 17px 13px;
    margin-right: 17px;
    font-size: 16px;
}
.popup-call-time-wrap{
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.popup-call-time-wrap input{
    width: 48px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #00AAF8;
    padding: 5px;
    font-size: 16px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(../images/calendar.svg) no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}

.popup-call-time-wrap .wpcf7-form-control-wrap {
    position: relative;
  }
  
  .popup-call-time-wrap .wpcf7-form-control-wrap:after,
  .popup-call-time-wrap .wpcf7-form-control-wrap:before {
    position: absolute;
    right: 5px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    pointer-events: none;
    background: #FF9800;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
  }
  
  .popup-call-time-wrap .wpcf7-form-control-wrap:after {
    content: '';
    top: -4px;
    transform: rotate(-90deg);
  }
  
  .popup-call-time-wrap .wpcf7-form-control-wrap:before {
    content: '';
    margin-bottom: 5px;
    bottom: -9px;
    transform: rotate(90deg);
  }
  .popup-call-content input[type="tel"]{
    height: 60px;
    border: 0;
    padding-left: 22px;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 30px;
    width: 100%;
  }
  .popup-call-content .wpcf7-form-control-wrap{
    position: relative;
  }
  .popup-call-content .wpcf7-not-valid-tip{
    bottom: -39px;
    width: 235px; 
    left: 0;
  }
  .popup-call-btn{
    width: 100%;
    height: 55px;
    border-radius: 100px;
    background: #FF9800;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
  }
.thanks{
    background-image: url(../images/thanks-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}
.thank-content{
    border-radius: 60px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(50px);
    width: 769px;
    height: 392px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.thank-title{
    color: #243B53;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.thank-text{
    color: #243B53;
    text-align: center;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 33px;
}
.thank-link{
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    color: #00AAF8;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid #00AAF8;
    position: relative;
}
.thank-link::before{
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/arrow-slide-blue.svg);
    background-repeat:no-repeat;
    background-size: cover;
    transform: rotate(180deg);
    height: 22px;
    width: 13px;
    left: -16px;
    top: 4px;
}
.home-stages-link-wrapper{
	display: none;
}
.mobile-blog-all-category,
span[data-name="current-url"],
.filialy-center-btn-wrap{
	display: none;
}
.review-page-item-text-content{
	height: 86px;
	overflow: auto;
}
.text-photo-text-block{
	height: 250px;
	transition: height .3s ease-in-out;
    overflow: hidden;
}
.text-photo-text-block ul,
.text-photo-text-block ol{
	padding-left: 20px;	
}
.text-photo-text-block h2,
.text-photo-text-block h3{
	margin: 20px 0;
}
.price-mob-widget{
	display: none;
}
#menu-mobile>.menu-item>.sub-menu>.menu-item:first-child{
	margin-top: 20px;
}
.service-page .check-author{
	display: block;
}
.buttons-bar{
	display: none;
}
.popup-doctor{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #BED8E9;
	z-index: 2;
	width: 24px;
	transform: translatex(267px);
	transition: all .3s ease-in-out;
}
.popup-doctor-active{
	transform: translatex(0);
	transition: all .3s ease-in-out;
}
.popup-doctor-img{
	position: absolute;
	top: calc(50% - 113px);
	right: 0;
}
.popup-doctor-form{
	position: absolute;
	top: calc(50% - 270px);
	right: 40px;
	background-color: #fff;
	border-radius: 12px;
	padding: 20px 12px;	
	width: 240px;
}
.popup-doctor-title{
	color: #243B53;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 128%;
	margin-bottom: 16px;
}
.popup-doctor-btn-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-doctor-btn-true{
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 160%; 
	background-color: var(--accent-col);
	padding: 9px 20px;
	border-radius: 50px;
	margin-right: 8px;
	text-decoration: none;
}
.popup-doctor-btn-false{
	color: #00AAF8;
	font-size: 14px;
	font-weight: 700;
	line-height: 120%;
	border-radius: 50px;
	border: 1px solid #00AAF8;
	padding: 9px 20px;
	text-decoration: none;
}
.popup-doctor-form>svg{
	position: absolute;
	bottom: -18px;
	right: 25px;
}
.popup-doctor-plus{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background-color: #00AFFF;
	border-radius: 50%;
	left: -11px;
	top: -11px;
	cursor: pointer;
}
.popup-doctor-bg{
	position: fixed;
	background-color: rgba(0,0,0, .5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: none;
}
.mob-call-popup{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0, .5);
	z-index: 3;
	display: none;	
}
.mob-call-popup-wrap{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mob-call-contact{
	background-color: #fff;
	width: 290px;
	padding: 14px 0 50px;
	border-radius: 15px;
	position: relative;
 }
.call-close{
	position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    line-height: 16px;
    padding-right: 12px;
}

.mob-call-title{
	margin-top: 31px;
	color: #243B53;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 24px; 
}
.mob-call-title span{
	color: #FF9800;
}
.mob-call-phones{
	margin-bottom: 24x;
}
.mob-call-phones a{
	text-decoration: none;
	color: #00AFFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	display: block;
	width: 215px;
	margin: 0 auto 16px;
	padding-left: 35px;
	position: relative;
}
.mob-call-phones a::before{
	content:"";
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(../images/contact-phone.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.mob-call-mes-note{
	text-align: center;
	font-size: 14px;
	line-height: 120%;
	margin-bottom: 13px;
}
.mob-call-mes-wrap{
	display: flex;
	justify-content: center;
}
.mob-call-mes-wrap a{
	height: 36px;
	width: 54px;
	text-align: center;
}
.mob-call-mes-wrap a:first-child{
	border-radius: 10px;
	border: 2px solid #853EF7;
	margin-right: 16px;
}
.mob-call-mes-wrap a:last-child{
	border-radius: 10px;
	border: 2px solid #2AABEE; 
}
.mob-call-mes-wrap img{
	width: 30px;
}
.mob-call-btn{
	padding: 18px 32px;

}
.mob-call-btn{
	width: 272px;
	height: 58px;
	border-radius: 100px;
	background: #00AFFF;
	color: #FFF;
	font-size: 14px;
	text-align: center;
	font-weight: 700;
	line-height: 160%;
	display: block;
	text-decoration: none;
	margin: 0 auto;
	margin-top: 35px;
}
.three-col-table .blog-table-td, 
.three-col-table .blog-td-head {
	flex-basis: inherit !important;
	width: 263px;
}
.title-block-blog {
	margin-bottom: 20px;
}
.links-block {
    margin: 130px 0;
}
.links-block-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 48px;
}
.links-block-tab {
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    color: var(--font-col-one);
    cursor: pointer;
    position: relative;
}
.links-block-tab::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--font-col-one);
    position: absolute;
    bottom: -3px;
    transform: scale(0,1);
    transform-origin: left;
    transition: all .3s ease-in-out;
}
.links-block-tab.active{
    font-weight: bold;
}
.links-block-tab.active::after,
.links-block-tab:hover::after {
    transform: scale(1,1);
    transition: all .3s ease-in-out;
}
.links-block-list:not(:first-child) {
    display: none;
}
.links-block-list-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.links-block-item {
    background-color: var(--blue);
    padding: 19px 56px 19px 24px;
    color: var(--white);
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
}
.links-block-item::after {
    content: '';
    display: block;
    height: 14px;
    width: 8px;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: calc(50% - 7px);
    right: 32px;
}
.service-buttons-block {
    margin: 52px 0;
}
.service-buttons-inner {
    display: flex;
    gap: 4px;
}
.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 49px;
    width: 33%;
    background-color: var(--blue);
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
}
.service-button span {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
}
.service-filials-list-one  .service-filials-list-inner {
    gap: 20px;
}
.service-filials-list-one .service-filials-link {
    width: 285px;
    border: 1px solid var(--white);
    border-radius: 8px;
    padding: 12px 12px 12px 40px;
    font-size: 18px;
    line-height: 21px;
}
.service-filials-list-one .service-filials-link::before {
    background-image: url(../images/arrow-right.svg);
    width: 22px;
    top: 10px;
    left: 10px;
}

.form-once-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-once-messager {
    width: 48px;
    height: 48px;
}
.form-once-messager img {
    width: 100%;
    height: 100%;
}
.form-once-phone {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    background-color: #E78739;
    border-radius: 50px;
    color: #fff;
    width: 225px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.form-once-phone:hover {
    color: #fff;
    background-color: #cc7630;
    transition: all .3s ease-in-out;
}
.form-once-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
}
.form-once-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 32px;
}